From 69c3e2ebc94b97940b3b83f40bbc27be3a5f5dc6 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Mon, 14 Oct 2024 15:36:05 +0200 Subject: [PATCH] :book: doc: checklist to add dataset, add mapping Arbres Issy les Mx --- convert_to_osm_tags.ts | 12 +- docs/ajout_jeu_de_données.md | 8 + docs/arbres.md | 20 + .../{arbres_issy.geojson => arbres_issy.json} | 0 mappings/converters/configArbresIssy.ts | 88 + output/___MappingArbresIssy.geojson | 131794 +++ output/___mappingIRVE.geojson | 645607 +++++++++++++++ update_scripts/get_datasets.sh | 4 + 8 files changed, 777530 insertions(+), 3 deletions(-) create mode 100644 docs/arbres.md rename etalab_data/arbres/{arbres_issy.geojson => arbres_issy.json} (100%) create mode 100644 mappings/converters/configArbresIssy.ts create mode 100644 output/___MappingArbresIssy.geojson create mode 100644 output/___mappingIRVE.geojson diff --git a/convert_to_osm_tags.ts b/convert_to_osm_tags.ts index 9085a97..268afbd 100644 --- a/convert_to_osm_tags.ts +++ b/convert_to_osm_tags.ts @@ -14,9 +14,14 @@ import MappingConfigType, {BoundingBoxCoordinatesType, FeatureCollection} from " import utils from './mappings/utils' import mappingRouenParkingVelos from "./mappings/converters/configRouen_OpenData_velo_parkings"; import mappingFINESS from "./mappings/converters/configFINESS"; +import MappingArbresIssy from "./mappings/converters/configArbresIssy"; const limitWarningPercentageChangeInPoints = 5; // show a warning when more than N percent of the number of points changed -const allowed_configs = ['mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose', 'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE', 'mappingRouenParkingVelos','mappingFINESS']; +const allowed_configs = [ + 'mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose', + 'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE', + 'mappingRouenParkingVelos', 'mappingFINESS', 'MappingArbresIssy', +]; const minimist = require('minimist') @@ -378,8 +383,9 @@ function setMappingConfigFromName(engine_conf_choice: string) { Mapping_engine.setConfig(ConfigIRVE) } else if (engine_conf_choice == 'mappingRouenParkingVelos') { Mapping_engine.setConfig(mappingRouenParkingVelos) - } - else if (engine_conf_choice == 'mappingFINESS') { + } else if (engine_conf_choice == 'MappingArbresIssy') { + Mapping_engine.setConfig(MappingArbresIssy) + } else if (engine_conf_choice == 'mappingFINESS') { Mapping_engine.setConfig(mappingFINESS) } } else { diff --git a/docs/ajout_jeu_de_données.md b/docs/ajout_jeu_de_données.md index b08b092..6c1cd14 100644 --- a/docs/ajout_jeu_de_données.md +++ b/docs/ajout_jeu_de_données.md @@ -1,6 +1,14 @@ # Ajout d'un jeu de données Pour ajouter un jeu de données et sa conversion vous devrez faire un mapper et mettre le jeu de données dans le convertisseur. +Checklist: +- [] avoir un jeu de données de Points en Geojson à convertir, dans `etalab_data`, dans un dossier thématique (arbres, parking vélo, IRVE...). +- [] un convertisseur (Mapper) qui étend le type `MappingConfigType` +- [] une page de documentation markdown liée à ce jeu de données mentionnant une commande ts-node à lancer dans `docs`. +- [] noter l'url du jeu de données source dans `get_datasets.sh` +- [] ajouter l'import de ce Mapper dans `convert_to_osm_tags.ts` +- [] tester le rendu de la conversion en plaçant la sortie output dans JOSM. + ## Récupérer un jeu de données ## Créer un Mapper Créer un fichier ts dans mappings/converters qui expose un objet étendant `MappingConfigType`. Ici on fait un Mappeur qui ne changera qu'une seule clé en gardant toutes ses valeur, nom_amenageur sera converti en name. diff --git a/docs/arbres.md b/docs/arbres.md new file mode 100644 index 0000000..df812cb --- /dev/null +++ b/docs/arbres.md @@ -0,0 +1,20 @@ +# Arbres +Des jeux de données sont disponibles pour lister les abres, suivre leur évolution, et mettre en avant les arbres monumentaux, dignes d'intérêt touristique. + +## Issy les moulineaux + +- ID_ARBRE : ref:FR:issy_les_mx:id_arbre +- CADUC_PERS : leaf_cycle=evergreen pour persistant , deciduous pour caduque +- HAUTEUR est_height=* hauteur estimée +- FEUIL_CONI : feuillu leaf_type=broadleaved / conifère leaf_type=needleleaved +- GENESPVAR : nom d'espèce species=* +- AN_PLANT : date_start +- VERNACULAIRE : species:FR=* +- PARTICULAR : Majeur, Remarquable : historic=monument +- FORME: tree_shape = curtain / free / half_free <= Architecturé, rideau / Libre / Semi-libre + +# conversion + +```bash +ts-node convert_to_osm_tags.ts --source=etalab_data/arbres/arbres_issy.geojson --output-file=arbres_issy.geojson --engine-config=MappingArbresIssy +``` diff --git a/etalab_data/arbres/arbres_issy.geojson b/etalab_data/arbres/arbres_issy.json similarity index 100% rename from etalab_data/arbres/arbres_issy.geojson rename to etalab_data/arbres/arbres_issy.json diff --git a/mappings/converters/configArbresIssy.ts b/mappings/converters/configArbresIssy.ts new file mode 100644 index 0000000..1f43a76 --- /dev/null +++ b/mappings/converters/configArbresIssy.ts @@ -0,0 +1,88 @@ +import MappingConfigType from "../mapping-config.type"; + +const MappingArbresIssy: MappingConfigType = { + config_name: 'Mapping des arbres d\'Issy les Moulineaux', + config_author: 'tykayn ', + default_properties_of_point: {natural: 'tree'}, + tags: { + // ******* booléens + // ******* nombres + // - ID_ARBRE : ref:FR:issy_les_mx:id_arbre identifiant interne à Issy les Moulineaux + "id_arbre": "ref:FR:issy_les_mx:id_arbre", + "ordre": "ref:FR:issy_les_mx:ordre_arbre", + // - AN_PLANT : date de plantation + "an_plan": "date_start", + // ******* textes + +// - HAUTEUR est_height=* hauteur estimée en intervalle de mètres + "hauteur": "est_height", + // - VERNACULAIRE : species:FR=* + "vernaculaire": "species:FR", + // - GENESPVAR : nom d'espèce species=* + "genespvar": "species", +// - CADUC_PERS : leaf_cycle=evergreen pour persistant , deciduous pour caduque + "caduc_pers": { + key_converted: "leaf_cycle", + conditional_values: { + "Persistant": { + value_converted: "evergreen" + }, + "Caduque": { + value_converted: "deciduous" + }, + } + } , + // - FEUIL_CONI : feuillu leaf_type=broadleaved / connifère leaf_type=needleleaved + "feuil_coni": { + key_converted: "leaf_type", + conditional_values: { + "Feuillu": { + value_converted: "broadleaved" + }, + "Connifère": { + value_converted: "needleleaved" + }, + } + }, +// - PARTICULAR : Majeur, Remarquable : historic=monument + + "particular": { + key_converted: "historic", + conditional_values: { + "Majeur": { + value_converted: "monument" + }, + "Remarquable": { + value_converted: "monument" + }, + } + }, +// - FORME: tree_shape = curtain / free / half_free <= Architecturé, rideau / Libre / Semi-libre + "forme": { + key_converted: "tree_shape", + conditional_values: { + "Architecturé, rideau": { + value_converted: "curtain" + }, + "Semi-libre": { + value_converted: "half_free" + }, + "Libre": { + value_converted: "free" + }, + } + }, + + + + + + }, + add_not_mapped_tags_too: false, + source: { + geojson_path: 'https://data.issy.com/api/explore/v2.1/catalog/datasets/arbres-remarquables-issy-les-moulineaux/exports/geojson?lang=fr&timezone=Europe%2FBerlin', + url: 'https://www.data.gouv.fr/fr/datasets/arbres-remarquables' + }, + filters: {}, +} +export default MappingArbresIssy diff --git a/output/___MappingArbresIssy.geojson b/output/___MappingArbresIssy.geojson new file mode 100644 index 0000000..01ddf3a --- /dev/null +++ b/output/___MappingArbresIssy.geojson @@ -0,0 +1,131794 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574502883243697, + 48.81802690293533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21628", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26780725331265, + 48.82734820358237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30610", + "ref:FR:issy_les_mx:ordre_arbre": "16b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272358883331965, + 48.82094529400615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12403", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.242986639222463, + 48.820713350332994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10574", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271294072061132, + 48.82662272858494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30598", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695707223039134, + 48.81701288828633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20570", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660420033654622, + 48.831462698680646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11165", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2728056415571136, + 48.81642802755465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21738", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261465339851502, + 48.81627051851457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16035", + "ref:FR:issy_les_mx:ordre_arbre": "217", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258887605690663, + 48.81870938365323 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21428", + "ref:FR:issy_les_mx:ordre_arbre": "600", + "species": "Ulmus 'Lobel'", + "species:FR": "Orme 'Lobel'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618919473502515, + 48.814904409811966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15956", + "ref:FR:issy_les_mx:ordre_arbre": "374", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260836133474595, + 48.82357370386099 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22468", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620748157549384, + 48.82269354676174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10516", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793472542843345, + 48.823166164085706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21828", + "ref:FR:issy_les_mx:ordre_arbre": "129", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575047870854643, + 48.81825454030234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17226", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696056276638035, + 48.821041434171086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30800", + "ref:FR:issy_les_mx:ordre_arbre": "8a", + "species": "Fraxinus sp.", + "species:FR": "Frêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250306160019609, + 48.823299824304264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9427", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661447507211063, + 48.82363479552017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16385", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631693841395495, + 48.81526912347404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27770", + "ref:FR:issy_les_mx:ordre_arbre": "751", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609929773322555, + 48.81657775542682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15964", + "ref:FR:issy_les_mx:ordre_arbre": "251", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676233339525442, + 48.81687841998766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20354", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus cerasus 'Bigarreau Napoléon'", + "species:FR": "Cerisier 'Bigarreau Napoléon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25877584214589, + 48.8189087664536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13859", + "ref:FR:issy_les_mx:ordre_arbre": "664", + "species": "Mespilus germanica", + "species:FR": "Néflier d'Allemagne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662336499430413, + 48.824150460113096 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27174", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280652455777034, + 48.823815309641724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12749", + "ref:FR:issy_les_mx:ordre_arbre": "132", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562592803305392, + 48.82418843824729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27849", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632587550580006, + 48.81533468418655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15910", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254788534624819, + 48.81810178633978 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13177", + "ref:FR:issy_les_mx:ordre_arbre": "268", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514433115035484, + 48.82309914450837 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15688", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703135561359056, + 48.82112832564446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11351", + "ref:FR:issy_les_mx:ordre_arbre": "112", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616580845053926, + 48.81521662653901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22163", + "ref:FR:issy_les_mx:ordre_arbre": "128", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643804315283687, + 48.82020696553852 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15690", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26100777867562, + 48.82788691937921 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27962", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481945703982222, + 48.81854782681869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13316", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667695069591396, + 48.83211618046471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11723", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639924442837622, + 48.82007530801862 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29560", + "ref:FR:issy_les_mx:ordre_arbre": "497d", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590641687568396, + 48.8186497275175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21899", + "ref:FR:issy_les_mx:ordre_arbre": "572", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2504414439531644, + 48.823324372495925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9535", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262759333161776, + 48.81545199198107 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21926", + "ref:FR:issy_les_mx:ordre_arbre": "529", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2497820575437983, + 48.819118503006536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10213", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2572657116230923, + 48.817623423548326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29948", + "ref:FR:issy_les_mx:ordre_arbre": "8" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645681839331573, + 48.826095553715525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11274", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265727407736944, + 48.82922505227222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28022", + "ref:FR:issy_les_mx:ordre_arbre": "33b", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264173041911462, + 48.82022005202095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27813", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268820036833987, + 48.820741589972414 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13294", + "ref:FR:issy_les_mx:ordre_arbre": "89", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269200142985026, + 48.820916460074905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14527", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272160563993924, + 48.826459434720334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9871", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263932974487947, + 48.82386902848441 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11650", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282906484805646, + 48.82704890636272 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10782", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623077933001516, + 48.81483594195133 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15901", + "ref:FR:issy_les_mx:ordre_arbre": "519", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273481810604881, + 48.82609968333669 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26247", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718517517942374, + 48.82668128630172 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11879", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254508746802821, + 48.817581715604476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12730", + "ref:FR:issy_les_mx:ordre_arbre": "131", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268036510928548, + 48.816650182761364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30780", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250648218600248, + 48.82036672956769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10337", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25600028467731, + 48.822991342759124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12423", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595400324288546, + 48.818540987309646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29683", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2486289695235415, + 48.82053263848233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11457", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261137977835898, + 48.826938238520164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21737", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261268288354123, + 48.82747675392716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26272", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648852450277697, + 48.823914633070856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9979", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606427606874426, + 48.82510891276698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21266", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26528625815638, + 48.82483202805651 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9822", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593728832073907, + 48.81725721273128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29622", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671835413993766, + 48.8203087916515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27890", + "ref:FR:issy_les_mx:ordre_arbre": "65a", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626903613602236, + 48.81927756502715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10837", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2583234865192, + 48.81882184926756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12944", + "ref:FR:issy_les_mx:ordre_arbre": "685", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2722716033612684, + 48.821814071408745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13399", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259530527805776, + 48.81723352388239 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29651", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254675288219685, + 48.81766268126438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13126", + "ref:FR:issy_les_mx:ordre_arbre": "208", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246049427095357, + 48.8186058125652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11396", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609815993161195, + 48.81730735735778 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28582", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670205929492564, + 48.8297665383018 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29892", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2746326204348826, + 48.82189703666065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11491", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270187314118742, + 48.82628666320873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28025", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703168255754913, + 48.81658963252917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_347", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641737285827506, + 48.81963975345529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16443", + "ref:FR:issy_les_mx:ordre_arbre": "324", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260259167058987, + 48.81890177810417 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16995", + "ref:FR:issy_les_mx:ordre_arbre": "411", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25443196094203, + 48.8178174475407 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13357", + "ref:FR:issy_les_mx:ordre_arbre": "253", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653813480823466, + 48.82932059212378 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14626", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2736366556908156, + 48.82666412928721 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9650", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258075659267502, + 48.815707933964745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12518", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2797313720389494, + 48.823179729975266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14092", + "ref:FR:issy_les_mx:ordre_arbre": "97", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265448375306893, + 48.819692732170616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16335", + "ref:FR:issy_les_mx:ordre_arbre": "265", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673887962186208, + 48.82541307185173 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10051", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2760548835249925, + 48.826058384232276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12491", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637503763644666, + 48.82944533623854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10471", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266508374493687, + 48.83061148597839 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13412", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266377213155134, + 48.83127611398427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11632", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266191779399369, + 48.828719857591516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13063", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26616914367908, + 48.828700123855505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13037", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270141041180551, + 48.826313002317754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28036", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269359655096577, + 48.820776139291844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12334", + "ref:FR:issy_les_mx:ordre_arbre": "157", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646746882546975, + 48.81957235551346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13565", + "ref:FR:issy_les_mx:ordre_arbre": "278", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575785892667137, + 48.823514471765364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17080", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701262082837927, + 48.82627306918453 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28030", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662487020457114, + 48.82990708706224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12581", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266663808867302, + 48.831036430365806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21209", + "ref:FR:issy_les_mx:ordre_arbre": "4b", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267159519941059, + 48.819861187372624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14041", + "ref:FR:issy_les_mx:ordre_arbre": "229", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2748578112634634, + 48.822025612910885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11488", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273618003938227, + 48.82657645860042 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9507", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703307676020748, + 48.8166092550677 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_261", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597848273403827, + 48.81893847438049 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13474", + "ref:FR:issy_les_mx:ordre_arbre": "356", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279126275361978, + 48.823125033768676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22220", + "ref:FR:issy_les_mx:ordre_arbre": "132", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253856006300628, + 48.81753852306694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11329", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Prunus x subhirtella 'Autumnalis'", + "species:FR": "Cerisier à fleur d'automne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266394683315692, + 48.83053758344905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10996", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265386795945195, + 48.81968312326635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13925", + "ref:FR:issy_les_mx:ordre_arbre": "266", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700799978855093, + 48.826343568233995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28047", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265436706526914, + 48.83017840036132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10288", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270183702948815, + 48.82638890071725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28044", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716819474957552, + 48.82237228044441 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12340", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802609996637373, + 48.8232771380922 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14396", + "ref:FR:issy_les_mx:ordre_arbre": "104", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270183883553302, + 48.82633709750657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28038", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679717721236394, + 48.82011263122062 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12018", + "ref:FR:issy_les_mx:ordre_arbre": "182", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259669368611109, + 48.82466029047738 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29458", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2756016153818974, + 48.8223743535287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10626", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669099652867932, + 48.831455161196324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10007", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662008766741986, + 48.83137286941374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14622", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574602962514336, + 48.82346065975985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17154", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282707599699921, + 48.82695672550343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9357", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801165074437875, + 48.8232488124218 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13955", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700977079668947, + 48.82634340657291 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28046", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270142742900436, + 48.82626930281673 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28029", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2750824958956954, + 48.82207021471382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10599", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270190156604447, + 48.826346309490766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28039", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265440696296823, + 48.81957320690971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14438", + "ref:FR:issy_les_mx:ordre_arbre": "289", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266003690720476, + 48.82020158094009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14070", + "ref:FR:issy_les_mx:ordre_arbre": "389", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594433858808727, + 48.816436613654034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29866", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732583076555017, + 48.82548451076866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9527", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Pyrus calleryana 'Bradford'", + "species:FR": "Poirier à fleurs 'Bradford'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275653724423534, + 48.82641426496319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12390", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270169118441188, + 48.82628259482946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28027", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2747919154743954, + 48.8219908350399 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11489", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2738989615574057, + 48.823964266869844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9642", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2439686851016254, + 48.82133051937105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13770", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279032084899637, + 48.8229026329519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14143", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274650922888171, + 48.82726855794485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12631", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661312385649643, + 48.82998839640298 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12582", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2830546212684784, + 48.82963886439331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12320", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700634912228446, + 48.82628698633291 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28033", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267024641353086, + 48.8312928569106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21210", + "ref:FR:issy_les_mx:ordre_arbre": "0", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257697775699792, + 48.823568690323995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17159", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581368332346075, + 48.81799664913339 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12372", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663103623648038, + 48.81786177963552 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29437", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714140797506506, + 48.815766033423984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28740", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607104648401966, + 48.82513720162192 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28005", + "ref:FR:issy_les_mx:ordre_arbre": "41a", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606903856181018, + 48.825105541482564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15313", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601274189585925, + 48.824511566463244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15311", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2759229119297366, + 48.82784984485381 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11823", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594477632456056, + 48.82400657174312 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16680", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663294729378367, + 48.81578808723684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27796", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260740747127221, + 48.82516246550188 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16642", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660553900045945, + 48.81601592833348 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27800", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27636762393562, + 48.828037287521894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11756", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601337856945363, + 48.824576595273854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21267", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260525399226396, + 48.824909488867 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17075", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259883375539416, + 48.82433670754248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17123", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587451551885764, + 48.824051340569326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17200", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599399488056076, + 48.82438167534192 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22015", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26023750098463, + 48.824620070358876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16644", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259335568783467, + 48.82395126417141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16873", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2760039654451685, + 48.8278856454519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11416", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2506870399795855, + 48.81916098800247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10352", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268282732247064, + 48.82026443699432 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14047", + "ref:FR:issy_les_mx:ordre_arbre": "173", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599226800067407, + 48.824474730988236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17162", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700945517883167, + 48.82629643963746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28034", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774150321837685, + 48.826431946635886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10849", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609833417444376, + 48.82863543355507 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28981", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260921016908636, + 48.82846053529904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28979", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261077548488569, + 48.8288982992663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30092", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2435778177446277, + 48.81895707573102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11972", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618056923493053, + 48.815091352213905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27638", + "ref:FR:issy_les_mx:ordre_arbre": "619", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2550302951962764, + 48.822123250177135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11391", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26235616982401, + 48.82361679119853 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9355", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2465455511671286, + 48.8194251813511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10448", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714920855347773, + 48.820736007792284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16511", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659812438925417, + 48.82759098868247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11074", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255990170485008, + 48.82083407915633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10843", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280061215439893, + 48.82335880116738 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13666", + "ref:FR:issy_les_mx:ordre_arbre": "186", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618867502255706, + 48.81501243675153 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27718", + "ref:FR:issy_les_mx:ordre_arbre": "699", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574449948119937, + 48.82259846446148 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11041", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261507464539211, + 48.816155714570826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16004", + "ref:FR:issy_les_mx:ordre_arbre": "308", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707552906775472, + 48.81526082333511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22081", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2737902276568347, + 48.82306246913146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11127", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2423181918599315, + 48.82146854701384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16318", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247478970415928, + 48.823640297222084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10666", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544549833842282, + 48.817240313936914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12487", + "ref:FR:issy_les_mx:ordre_arbre": "187", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665267020174467, + 48.82941809167391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10695", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715172668915558, + 48.82602868585405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11583", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700438230662323, + 48.8170203811746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20711", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Prunus domestica 'Reine-Claude Hâtive'", + "species:FR": "Prunier 'Reine-Claude Hâtive'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2406288796083627, + 48.82144460989008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9760", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614868210548984, + 48.82188119828482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26094", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724436968195327, + 48.82444351333023 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11305", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795634521934924, + 48.8233195638218 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13287", + "ref:FR:issy_les_mx:ordre_arbre": "215", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795431756944193, + 48.824013978397076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13041", + "ref:FR:issy_les_mx:ordre_arbre": "115", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599797829494523, + 48.81585957661889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16120", + "ref:FR:issy_les_mx:ordre_arbre": "482", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260248441524008, + 48.81595350116667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27616", + "ref:FR:issy_les_mx:ordre_arbre": "597", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600833310526096, + 48.819202870170386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11813", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266385283510171, + 48.81698011992566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29434", + "ref:FR:issy_les_mx:ordre_arbre": "4b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782243968309652, + 48.82155208299082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14493", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785399162143536, + 48.82213864841854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10466", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699056966710836, + 48.82552307780474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28301", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626045631797034, + 48.815581505237375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29446", + "ref:FR:issy_les_mx:ordre_arbre": "529a", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663919964431885, + 48.820446212855835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12573", + "ref:FR:issy_les_mx:ordre_arbre": "530", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2736092497943075, + 48.82543352940169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12801", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26288755909927, + 48.814679218467845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16198", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706417101642886, + 48.82131414314801 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27891", + "ref:FR:issy_les_mx:ordre_arbre": "119a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657678880155525, + 48.820265130196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28298", + "ref:FR:issy_les_mx:ordre_arbre": "527", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610434627074536, + 48.81637888440448 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28390", + "ref:FR:issy_les_mx:ordre_arbre": "533", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262380075880421, + 48.82374755167294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10790", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258379010753837, + 48.816680403060495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29871", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592371638815134, + 48.81807761921247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29673", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544580341069564, + 48.81745254380268 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12186", + "ref:FR:issy_les_mx:ordre_arbre": "142", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2740188165340265, + 48.82445666542039 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21300", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Olea sp.", + "species:FR": "Olivier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631411395238357, + 48.81510292822784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16100", + "ref:FR:issy_les_mx:ordre_arbre": "166", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27128481676544, + 48.82229069145563 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12709", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2512395678745465, + 48.82319917674818 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15092", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531628067898946, + 48.8212545624187 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10784", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629786134540444, + 48.814958009157934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15869", + "ref:FR:issy_les_mx:ordre_arbre": "347", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2491506755952795, + 48.819226592630386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11431", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788000490783906, + 48.82375857710147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13689", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641281428678615, + 48.826423697015834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11105", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663067248533144, + 48.81598194581079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27802", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594736949211267, + 48.819036026310975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13469", + "ref:FR:issy_les_mx:ordre_arbre": "432", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640055540622823, + 48.82947527234671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10557", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278805067777167, + 48.82293839427981 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13953", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539367022577608, + 48.81805737064713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12362", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579726377226654, + 48.81865832124359 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11469", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533180483733775, + 48.82059527588222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26639", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278772326838883, + 48.82912632396919 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9655", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260735666671703, + 48.817481053321025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28586", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620097899506466, + 48.815288614184254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15536", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634033237812736, + 48.819973548260734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20821", + "ref:FR:issy_les_mx:ordre_arbre": "471", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608070572921966, + 48.825494359975345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10275", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269398696648592, + 48.820968522554914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29538", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642154541201407, + 48.820177592314664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15214", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258319057609568, + 48.81772030541801 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16611", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269126192052747, + 48.81716629518068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21573", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Prunus domestica 'Reine-Claude Diaphane'", + "species:FR": "Prunier 'Reine-Claude Diaphane'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675141594819257, + 48.816606848804284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20244", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251165699610601, + 48.81967768331595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11517", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538224079972626, + 48.82327097210069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10798", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677381385159294, + 48.821189275004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10976", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795786815257477, + 48.823022860398176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15898", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264839671688564, + 48.82579326630671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9629", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688809306620303, + 48.82075748049713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16542", + "ref:FR:issy_les_mx:ordre_arbre": "90", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655036240582773, + 48.82373804926651 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11830", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Cedrus atlantica 'Glauca Pyramidalis'", + "species:FR": "Cèdre bleu de l'Atlas Pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599137568114274, + 48.81745353452362 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28545", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628713045601416, + 48.819874697440454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13492", + "ref:FR:issy_les_mx:ordre_arbre": "478", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259505501991345, + 48.824051904041504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16875", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594671291168207, + 48.81868775903316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16989", + "ref:FR:issy_les_mx:ordre_arbre": "282", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674001035288773, + 48.81751221931175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20350", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Pyrus communis 'Marguerite Marillat'", + "species:FR": "Poirier 'Marguerite Marillat'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278604965427445, + 48.82180692403326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13280", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250577653639773, + 48.82328833929601 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8980", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725389859203116, + 48.82271367249788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30556", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2462820631702765, + 48.81972034311221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12470", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772376143090467, + 48.82868604308338 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21367", + "ref:FR:issy_les_mx:ordre_arbre": "131", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610752346936316, + 48.81634194688178 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15873", + "ref:FR:issy_les_mx:ordre_arbre": "259", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696110332038035, + 48.81660554906259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20513", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711407557798355, + 48.81546143631739 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10270", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257924199409559, + 48.81615008783117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30063", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2569321341983106, + 48.82013083366457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14502", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662083013206145, + 48.82852968460704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12610", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263879227256482, + 48.82396582722455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11649", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610040163356673, + 48.82679771940964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10707", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619980342195887, + 48.823859650559555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11302", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689435181434408, + 48.820771576284805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13628", + "ref:FR:issy_les_mx:ordre_arbre": "91", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611818602642453, + 48.81536643204462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27033", + "ref:FR:issy_les_mx:ordre_arbre": "386a", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685762805585123, + 48.82067726467268 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11970", + "ref:FR:issy_les_mx:ordre_arbre": "85", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269598389901526, + 48.81640958320659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6429", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664427156906024, + 48.83228896741305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13680", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671563041972234, + 48.817867415348374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20254", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2756747854314434, + 48.82241226980016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10468", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27018400797808, + 48.81748662013907 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29428", + "ref:FR:issy_les_mx:ordre_arbre": "14b", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269084325067802, + 48.81651369852079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20602", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618226100050625, + 48.81505071434345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27676", + "ref:FR:issy_les_mx:ordre_arbre": "657", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262450151883265, + 48.81538464905142 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16555", + "ref:FR:issy_les_mx:ordre_arbre": "335", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683791824845376, + 48.816036935655035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6615", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2582507320267426, + 48.81875950457843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12918", + "ref:FR:issy_les_mx:ordre_arbre": "680", + "species": "Quercus petraea", + "species:FR": "Chêne sessile" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680006477786856, + 48.8172062931266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20229", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601324230582263, + 48.816183154360374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16007", + "ref:FR:issy_les_mx:ordre_arbre": "406", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696418958258593, + 48.820958178519575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20962", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793221564137167, + 48.82330125554326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13709", + "ref:FR:issy_les_mx:ordre_arbre": "210", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685049790024605, + 48.81797458107073 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28264", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267817731168962, + 48.827320664000695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30609", + "ref:FR:issy_les_mx:ordre_arbre": "16a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258916228910647, + 48.8160419314446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29983", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622705482441403, + 48.81549671784525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15807", + "ref:FR:issy_les_mx:ordre_arbre": "330", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770504440727946, + 48.82882065426074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12114", + "ref:FR:issy_les_mx:ordre_arbre": "126", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254089750917724, + 48.82018068830748 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22124", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2768146006821937, + 48.82905081194619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13830", + "ref:FR:issy_les_mx:ordre_arbre": "110", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2856028427692996, + 48.82927740344833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30551", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279524741423626, + 48.82325736933852 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12119", + "ref:FR:issy_les_mx:ordre_arbre": "193", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257855368526787, + 48.822632651052444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11423", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266409391961965, + 48.82870626007654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26188", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632065539890083, + 48.819625926804704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11702", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673623873839834, + 48.820357917144506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13546", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663906411865344, + 48.81686071404927 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29431", + "ref:FR:issy_les_mx:ordre_arbre": "2a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488958357429265, + 48.819193418258486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30593", + "ref:FR:issy_les_mx:ordre_arbre": "11d", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260246333995699, + 48.8237516483904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11898", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263998236997314, + 48.81992550597679 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29551", + "ref:FR:issy_les_mx:ordre_arbre": "456d", + "species": "Trachycarpus fortunei", + "species:FR": "Palmier de Chine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2806184606719073, + 48.822759089342874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10297", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616234085522873, + 48.81560285585015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15819", + "ref:FR:issy_les_mx:ordre_arbre": "89", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662691060715225, + 48.82954076700506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10208", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608379131148175, + 48.81719084873181 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28569", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773258074672422, + 48.822091538833554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11438", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261250307875885, + 48.82355626862384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10334", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279672364633099, + 48.82291742386432 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15913", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253860184901199, + 48.82324965329909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28344", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279376549834735, + 48.82300900908736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14412", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2566012430327813, + 48.82042080756881 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13314", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774931642194813, + 48.82946155021921 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11858", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666984329458697, + 48.825604793676696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11481", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263407088345806, + 48.814945706736225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22189", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652426878145167, + 48.82723889354551 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12235", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274342395331729, + 48.82163240835402 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16415", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579495229748523, + 48.818393040012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13169", + "ref:FR:issy_les_mx:ordre_arbre": "159", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691962042896936, + 48.82266226569197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14301", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sequoiadendron giganteum", + "species:FR": "Séquoia géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260232601204291, + 48.815888950151816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15774", + "ref:FR:issy_les_mx:ordre_arbre": "276", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2569041155821723, + 48.82255323281072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10378", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802223192463833, + 48.82367365847793 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13766", + "ref:FR:issy_les_mx:ordre_arbre": "150", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264312306200151, + 48.82717427467269 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12629", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258319043366563, + 48.81559020901671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12436", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249059575186438, + 48.819158752311516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30591", + "ref:FR:issy_les_mx:ordre_arbre": "11b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594733319990223, + 48.82269503739555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11533", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794767416329127, + 48.822966693729164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16046", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580820931944077, + 48.818545583516986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13168", + "ref:FR:issy_les_mx:ordre_arbre": "156", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266481454097198, + 48.82729602835803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14989", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597368418688175, + 48.818212745546454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29779", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277615142304491, + 48.8288227517584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13581", + "ref:FR:issy_les_mx:ordre_arbre": "90", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631461568916156, + 48.819706325628715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11909", + "ref:FR:issy_les_mx:ordre_arbre": "347", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272040977581323, + 48.82258874950117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11169", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25620993728089, + 48.8207611460933 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13771", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585038624541616, + 48.82534250242708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16998", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790596136864063, + 48.82159557284641 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15051", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732164413084495, + 48.82488003576598 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27562", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594040347422837, + 48.81620337577809 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12463", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259090989773464, + 48.81724684744736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27071", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547898104577144, + 48.817334890971864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16529", + "ref:FR:issy_les_mx:ordre_arbre": "179", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276909142247912, + 48.8289800200925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13201", + "ref:FR:issy_les_mx:ordre_arbre": "107", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639596214228708, + 48.8196457856877 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13295", + "ref:FR:issy_les_mx:ordre_arbre": "329", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251977051467351, + 48.821973184119734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11672", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259895093285379, + 48.81820828169895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29773", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649731179953263, + 48.81953244271454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16333", + "ref:FR:issy_les_mx:ordre_arbre": "298", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261833866585413, + 48.81504439820614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27677", + "ref:FR:issy_les_mx:ordre_arbre": "658", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607270342347245, + 48.823904613738726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10654", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2761145487284944, + 48.82180387787001 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12408", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27723287941069, + 48.82209220094388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11561", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597524234857005, + 48.818218418266774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29768", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784167040117307, + 48.82740914429951 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9862", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565362428064986, + 48.820476525839496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13313", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260015748910619, + 48.81821185652706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29733", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590825783785085, + 48.81899807096925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13462", + "ref:FR:issy_les_mx:ordre_arbre": "530", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600957276025637, + 48.81590893533926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27594", + "ref:FR:issy_les_mx:ordre_arbre": "575", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2462573279847216, + 48.82122580990559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10734", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260411049744101, + 48.82400128159457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30623", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618536221778287, + 48.81500530682321 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27707", + "ref:FR:issy_les_mx:ordre_arbre": "688", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2764460541173897, + 48.8272887326229 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10848", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2807982495405463, + 48.823679373118814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29593", + "ref:FR:issy_les_mx:ordre_arbre": "165b", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258958335252504, + 48.81609768489301 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29984", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272252511677676, + 48.82474518016915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26216", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251815747504363, + 48.81914431927757 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15176", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685780238266577, + 48.81799441264606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20734", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Malus domestica 'Jonagold'", + "species:FR": "Pommier 'Jonagold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578394827292625, + 48.8183410124438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27037", + "ref:FR:issy_les_mx:ordre_arbre": "162a", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490910371426125, + 48.819252947734746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11499", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277137092296827, + 48.82209287446973 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11562", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.281233816512401, + 48.83143112621075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16261", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277116836901494, + 48.828770151023036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22252", + "ref:FR:issy_les_mx:ordre_arbre": "128", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684945004437944, + 48.817755259782835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20252", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255720815773061, + 48.821797892603406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16525", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775344040619143, + 48.8213148593105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13014", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26486475018707, + 48.819601523576075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13433", + "ref:FR:issy_les_mx:ordre_arbre": "275", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652544121677605, + 48.82942930494886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30528", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594298333474137, + 48.81871404906308 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13062", + "ref:FR:issy_les_mx:ordre_arbre": "265", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2810771403452055, + 48.83067240054435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15103", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261178638150486, + 48.81575498360687 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21564", + "ref:FR:issy_les_mx:ordre_arbre": "459", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786856757170235, + 48.82289245372024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29903", + "ref:FR:issy_les_mx:ordre_arbre": "34a", + "species": "Amelanchier canadensis", + "species:FR": "Amélanchier du Canada" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535943418637143, + 48.819728796677154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26747", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695661621274885, + 48.816531373871115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22271", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676958737074844, + 48.81729835799528 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20760", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Pyrus communis 'Duc de Bordeaux'", + "species:FR": "Poirier 'Duc de Bordeaux'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267618974151269, + 48.81645032126751 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20538", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus cerasus 'Bigarreau'", + "species:FR": "Cerisier 'Bigarreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259847042450719, + 48.81613746999282 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16060", + "ref:FR:issy_les_mx:ordre_arbre": "500", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739056278891128, + 48.81903683153734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10779", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259971684949085, + 48.81852601771214 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29710", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269922172377861, + 48.81702140264764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21611", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268687790602616, + 48.81594500577047 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29813", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2417230438243623, + 48.82142603143139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9100", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265910126195303, + 48.823875376804125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27180", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694016097170713, + 48.81747688118066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20349", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Malus domestica 'Reinette du Mans'", + "species:FR": "Pommier 'Reinette du Mans'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2470028900259846, + 48.8234949684362 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10123", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576244071515474, + 48.81791496395926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30736", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781716950610917, + 48.82170874759719 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15088", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278656741982744, + 48.822097181518636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16536", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262227062460819, + 48.823065525707506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10616", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278759628619994, + 48.8295575941128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16313", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270616662039662, + 48.821381354175166 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27892", + "ref:FR:issy_les_mx:ordre_arbre": "119b", + "species": "Prunus hillieri 'Spire'", + "species:FR": "Cerisier à fleurs 'Spire'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599616625052956, + 48.82596445098005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11826", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612382648081417, + 48.82143854528537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8857", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266155095475404, + 48.83139719800683 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11657", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629381817744285, + 48.81979223326603 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14518", + "ref:FR:issy_les_mx:ordre_arbre": "481", + "species": "Taxus baccata 'Fastigiata'", + "species:FR": "If d'Irlande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659757213573894, + 48.82368232332036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26085", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745946782425577, + 48.8233592679619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9623", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2425293284348657, + 48.82151993982314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9617", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261002596976381, + 48.821315501312775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10769", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259425317572586, + 48.82480186222314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17236", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584259940199387, + 48.815638573695885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12844", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2462800277552666, + 48.822715054830745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9588", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243243068179395, + 48.82176147750835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9810", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627102961669, + 48.814874734352344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15759", + "ref:FR:issy_les_mx:ordre_arbre": "159", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253622768734092, + 48.822473811484976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30849", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253676038334876, + 48.82249092036792 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30851", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253754547986098, + 48.82251972863169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30853", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25372510986144, + 48.82243851653036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15099", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537859286977984, + 48.822462132785255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14812", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537560990353303, + 48.822451260943915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15098", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25327520175306, + 48.822361441481995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30856", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533035493183133, + 48.82234484236057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30857", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253321804291633, + 48.82235352305306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30858", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533571561862, + 48.82237623213358 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30860", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253494082061216, + 48.82261632925854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30874", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253550931248538, + 48.82267290217577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30873", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450002251477543, + 48.821107745214256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15743", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253218171841053, + 48.820339023678876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15167", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244957942363942, + 48.82095614186047 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15748", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534530030932114, + 48.822402173742226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30862", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536176067932385, + 48.822703957025496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30871", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252957254940566, + 48.82024751461678 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30880", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer saccharum 'Legacy'", + "species:FR": "Érable à sucre ‘Legacy’" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253270427283619, + 48.82015183433903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30884", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244891867552541, + 48.820971180373256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30885", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sorbus torminalis", + "species:FR": "Alisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244914566328181, + 48.82094657535419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30887", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2449365803890946, + 48.82116825770889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30892", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2449659505509514, + 48.82125777484822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30893", + "ref:FR:issy_les_mx:ordre_arbre": "18" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609516433326498, + 48.828548506808005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28980", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625512108886836, + 48.819240944147396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11745", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590715868602946, + 48.81894934597234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16957", + "ref:FR:issy_les_mx:ordre_arbre": "519", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259246238954156, + 48.817448643324695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27079", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278424054065498, + 48.82382149934434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12030", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Corylus avellana", + "species:FR": "Noisetier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594030624149597, + 48.81871936313426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14673", + "ref:FR:issy_les_mx:ordre_arbre": "445", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592527747446054, + 48.818687456800426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14283", + "ref:FR:issy_les_mx:ordre_arbre": "590", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273518440851848, + 48.818796563883026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10926", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2729217897795477, + 48.81863453817061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11680", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590296703901314, + 48.81720131795316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27069", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259291195483802, + 48.817562694615546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27083", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273044169236531, + 48.818668240670554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11609", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258956661598982, + 48.81879166962304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14729", + "ref:FR:issy_les_mx:ordre_arbre": "614", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591722509131738, + 48.817317053839275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27074", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599082970284736, + 48.816650130700964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29701", + "ref:FR:issy_les_mx:ordre_arbre": "33f", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617310517726574, + 48.81903588556657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11327", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272666261018832, + 48.81864883316104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11035", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2727687425180765, + 48.81867550035868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11101", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259249064334422, + 48.81747024616132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27080", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591651233654897, + 48.81872996985928 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14344", + "ref:FR:issy_les_mx:ordre_arbre": "609", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664103262299458, + 48.81772627728655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19947", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273659595294879, + 48.81884376453958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11217", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262978333411692, + 48.819348643552345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11550", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272140444800915, + 48.818501695830115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11283", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272485963851808, + 48.8186013903399 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11281", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592745902870854, + 48.81752364817582 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27082", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259304678090603, + 48.81759146867039 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27084", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273731865804884, + 48.81896396241409 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11840", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616167057317296, + 48.819008350423395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11320", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669349983718203, + 48.82893106022336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30550", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514325474817434, + 48.81879101895357 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16407", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694177218830878, + 48.81735138379443 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18223", + "ref:FR:issy_les_mx:ordre_arbre": "74", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268959812894609, + 48.81651529960103 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21544", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269974598856119, + 48.81716354649085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20365", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680965948591623, + 48.816643960042754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20669", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Prunus cerasus 'Montmorency'", + "species:FR": "Cerisier acide 'Montmorency'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685821790126557, + 48.81652238931394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20218", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Prunus cerasus 'Montmorency'", + "species:FR": "Cerisier acide 'Montmorency'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264032992273384, + 48.82659756496747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11184", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263835029748024, + 48.819839443114255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16502", + "ref:FR:issy_les_mx:ordre_arbre": "459", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559046307246096, + 48.82103476354604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28360", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592780304574336, + 48.822753913210605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30666", + "ref:FR:issy_les_mx:ordre_arbre": "15a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263054738436998, + 48.819737858344936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13561", + "ref:FR:issy_les_mx:ordre_arbre": "343", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600834139238835, + 48.81889731918963 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16830", + "ref:FR:issy_les_mx:ordre_arbre": "410", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559339852136144, + 48.82174242463902 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14824", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28284955201279, + 48.827019416806436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28209", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Ulmus x hollandica", + "species:FR": "Orme de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665995489436117, + 48.81401190754947 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12056", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617738814238795, + 48.81609060526774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16019", + "ref:FR:issy_les_mx:ordre_arbre": "451", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269727675013277, + 48.8164933419013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6857", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247545680375351, + 48.82019381961421 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11095", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2405106334973053, + 48.82155769752607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9688", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261757498211684, + 48.82558326160154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9413", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715018155110958, + 48.82065084948858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12545", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790015822273895, + 48.82561943329748 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11205", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258686577600393, + 48.81663842116634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29519", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595158891771057, + 48.81767907386857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29656", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826069743991995, + 48.82973591040667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12055", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795021239980446, + 48.8233327747934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13713", + "ref:FR:issy_les_mx:ordre_arbre": "214", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771345436536197, + 48.82812254302826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9563", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799813175869263, + 48.82322319489515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14103", + "ref:FR:issy_les_mx:ordre_arbre": "100", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2734775977422963, + 48.826591432512565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_7911", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26793506909982, + 48.816711297201984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20311", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Prunus cerasus 'Reverchon'", + "species:FR": "Cerisier 'Reverchon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805315062199982, + 48.82344177798525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13324", + "ref:FR:issy_les_mx:ordre_arbre": "181", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276325939044753, + 48.828410091923935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9486", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673889855544456, + 48.81678138039227 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22272", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus cerasus 'Bigarreau'", + "species:FR": "Cerisier 'Bigarreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619047623280832, + 48.816380999050125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14260", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258876151517064, + 48.81888611960367 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30740", + "ref:FR:issy_les_mx:ordre_arbre": "672a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257055334781558, + 48.81761114333118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29943", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26555184286209, + 48.82380164145525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10175", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279328265065104, + 48.82945506471212 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9670", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672318271434504, + 48.82104770334318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11154", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248126415496251, + 48.8185359812131 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11869", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618957957012693, + 48.81549888273945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28381", + "ref:FR:issy_les_mx:ordre_arbre": "90a", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665147024994816, + 48.82952365811274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10235", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543354585657696, + 48.817545618590536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12768", + "ref:FR:issy_les_mx:ordre_arbre": "125", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688682349306517, + 48.821339589897725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11190", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618816884805777, + 48.816169575622894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15914", + "ref:FR:issy_les_mx:ordre_arbre": "448", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775428240018374, + 48.82901388393275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12854", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627279391080775, + 48.814785844038525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16226", + "ref:FR:issy_les_mx:ordre_arbre": "354", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591158993929508, + 48.81867779703227 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12913", + "ref:FR:issy_les_mx:ordre_arbre": "301", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266381020624219, + 48.82868192952902 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21627", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25639455787422, + 48.82431096653146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27867", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776399252522808, + 48.82828606547208 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9307", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278487099353285, + 48.826261761539676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10819", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642451547548204, + 48.81991092014657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13347", + "ref:FR:issy_les_mx:ordre_arbre": "453", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262911225041045, + 48.827987891048224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27980", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Betula utilis", + "species:FR": "Bouleau de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261157927155531, + 48.81652503865443 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15829", + "ref:FR:issy_les_mx:ordre_arbre": "237", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265132066610949, + 48.81451901461974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12064", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607179002998716, + 48.815701888019184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16263", + "ref:FR:issy_les_mx:ordre_arbre": "393", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256482067124845, + 48.82314138033161 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12799", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262102661650289, + 48.81443105510653 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29445", + "ref:FR:issy_les_mx:ordre_arbre": "517", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825785438338695, + 48.829561926213685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13198", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778842117172577, + 48.82412210667537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12820", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280200821266389, + 48.82926275083652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10034", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261390034982628, + 48.815957864262444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27774", + "ref:FR:issy_les_mx:ordre_arbre": "755", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538399670599967, + 48.817925916470145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12071", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259387623795803, + 48.817208759581185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29634", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611567367607943, + 48.815492776810586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15821", + "ref:FR:issy_les_mx:ordre_arbre": "91", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610004922509304, + 48.81637430161959 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28400", + "ref:FR:issy_les_mx:ordre_arbre": "543", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269656442964636, + 48.82226842028221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15107", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628340566419873, + 48.814944711330526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14848", + "ref:FR:issy_les_mx:ordre_arbre": "162", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584773978470327, + 48.8253636634945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17197", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254673906531749, + 48.817324429585234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29504", + "ref:FR:issy_les_mx:ordre_arbre": "181a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246066040057043, + 48.81973340401779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11271", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261169648030115, + 48.823798067508775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10555", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599085926966427, + 48.81882982143517 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16993", + "ref:FR:issy_les_mx:ordre_arbre": "391", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2484773515922494, + 48.81860107650443 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13534", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260977584989813, + 48.81549119865913 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15915", + "ref:FR:issy_les_mx:ordre_arbre": "388", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791117749939582, + 48.82291892659106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16218", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277644489083947, + 48.82208722278284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11317", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625453026254054, + 48.8198238981454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13016", + "ref:FR:issy_les_mx:ordre_arbre": "487", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263973564593991, + 48.82705847245318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28204", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2474085806445028, + 48.823620246527305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10665", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701929413090527, + 48.82532388964354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26781", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Ligustrum ibota", + "species:FR": "Troène à feuilles ovales" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666727627826875, + 48.81833654208406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30049", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25887729993726, + 48.818482086764526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12870", + "ref:FR:issy_les_mx:ordre_arbre": "182", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264568451591992, + 48.824079025923766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10256", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264049600035272, + 48.82079397507292 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14779", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567754311542014, + 48.82366020866326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16727", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598349402206703, + 48.816560367040914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29696", + "ref:FR:issy_les_mx:ordre_arbre": "33a", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610492817997456, + 48.827899587415445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27963", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599368647317983, + 48.817508563702724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28547", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787480615640443, + 48.82222298523831 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11392", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271428336977347, + 48.827496838559505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12342", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588894869537817, + 48.81682910541816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28501", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655640158104826, + 48.81997477173644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13722", + "ref:FR:issy_les_mx:ordre_arbre": "373", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598304141438574, + 48.81718389163095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28528", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681972964611683, + 48.82045330735377 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_2862", + "ref:FR:issy_les_mx:ordre_arbre": "606", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259787064480903, + 48.8188976587526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14114", + "ref:FR:issy_les_mx:ordre_arbre": "365", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279678131864539, + 48.82574311847335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10816", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254654235070298, + 48.818038829858565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12606", + "ref:FR:issy_les_mx:ordre_arbre": "263", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666187873849117, + 48.82341480483578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10129", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461478136044177, + 48.821712399563204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10868", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259077028765683, + 48.81858128020899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14707", + "ref:FR:issy_les_mx:ordre_arbre": "580", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651123481759203, + 48.827942464988084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9573", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614603638641464, + 48.82693052754699 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28086", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251609479981533, + 48.82237304498571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14358", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258276524371346, + 48.82259642288354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11212", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675890952896407, + 48.8254078427655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10147", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271709499494801, + 48.827086794516354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28354", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer x zoeschense 'Annae'", + "species:FR": "Erable zoeschense 'Annaea'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266328782391141, + 48.82779888163247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10973", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666996329143756, + 48.81847890006103 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30046", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279324473110837, + 48.82227714713612 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9944", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788264218269623, + 48.82314570665369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12429", + "ref:FR:issy_les_mx:ordre_arbre": "203", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654271837161115, + 48.826495638239294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11409", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268094415680155, + 48.820213192586515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27896", + "ref:FR:issy_les_mx:ordre_arbre": "176a", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2736958756417036, + 48.82477658124056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10497", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644450239992056, + 48.82017778050265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13157", + "ref:FR:issy_les_mx:ordre_arbre": "505", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721465008676467, + 48.820894915928676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12405", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673938686926665, + 48.83340786053749 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10577", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622294035367747, + 48.81454965782081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27731", + "ref:FR:issy_les_mx:ordre_arbre": "712", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588034628820126, + 48.816137916473004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29988", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256291020406479, + 48.824331367886955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27862", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278247630926812, + 48.82388607005709 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12123", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257326679021472, + 48.81792183547915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12287", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2447966870370086, + 48.82205003797932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9222", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802253964392767, + 48.823443447853165 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12466", + "ref:FR:issy_les_mx:ordre_arbre": "227", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259434806851268, + 48.818607959351176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14026", + "ref:FR:issy_les_mx:ordre_arbre": "322", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692566581484233, + 48.82768859663509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29916", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648261702719377, + 48.82000626364365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13974", + "ref:FR:issy_les_mx:ordre_arbre": "435", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2798031739505213, + 48.823966210717785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12953", + "ref:FR:issy_les_mx:ordre_arbre": "119", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695241390382956, + 48.817069711090085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20753", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785485638759417, + 48.82407319196975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13365", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788260678599683, + 48.821665255564206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15052", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597637242637196, + 48.81816110731931 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29787", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262758151611598, + 48.81978103350901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28294", + "ref:FR:issy_les_mx:ordre_arbre": "482", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804783430533098, + 48.823313952561406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14111", + "ref:FR:issy_les_mx:ordre_arbre": "107", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258682600929443, + 48.82521062219716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27788", + "ref:FR:issy_les_mx:ordre_arbre": "27a", + "species": "Acer buergerianum", + "species:FR": "Erable à écorce de dragon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257583816637097, + 48.81776072213284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12338", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655279115792686, + 48.8274089790331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10191", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576963379960384, + 48.81635229447836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30029", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596900354489193, + 48.81712343220307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28525", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245229278061515, + 48.82097333958703 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10072", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514711750775422, + 48.82308150850347 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15687", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612368067874624, + 48.81553719713174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15822", + "ref:FR:issy_les_mx:ordre_arbre": "93", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2809297952955983, + 48.82375233461237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11890", + "ref:FR:issy_les_mx:ordre_arbre": "172", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28242244040124, + 48.829665374433525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12963", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580496991158086, + 48.818161089256186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14323", + "ref:FR:issy_les_mx:ordre_arbre": "167", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716598824756185, + 48.815958813777854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30715", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269066861808549, + 48.820806143093385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13630", + "ref:FR:issy_les_mx:ordre_arbre": "93", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266068389878939, + 48.82365417511355 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27568", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660959706263575, + 48.827298172440294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16495", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2503293626696474, + 48.8232509713685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8952", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668020525275168, + 48.815641958850776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29842", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666806860744053, + 48.83128916977902 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10986", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784942776458528, + 48.82400475499868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13342", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Magnolia x soulangeana", + "species:FR": "Magnolia de Soulange" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546056350420063, + 48.817622163782474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13677", + "ref:FR:issy_les_mx:ordre_arbre": "166", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257712046947489, + 48.81781233951095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22325", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270140224482617, + 48.817520529472446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29427", + "ref:FR:issy_les_mx:ordre_arbre": "14a", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250726332460851, + 48.82377188383714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14289", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803872539238568, + 48.831339160214995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30722", + "ref:FR:issy_les_mx:ordre_arbre": "5b", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279286130612881, + 48.823400000011794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29578", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Magnolia x soulangeana", + "species:FR": "Magnolia de Soulange" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733444518249777, + 48.82610085124065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9790", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787968923510338, + 48.82210600576031 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14762", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678515838675106, + 48.820127216017426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13524", + "ref:FR:issy_les_mx:ordre_arbre": "189", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256318463481714, + 48.824298171527595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27863", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689485450644367, + 48.820850243860576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21298", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2736841696673733, + 48.82534599826941 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11705", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282642932971975, + 48.82693088587898 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10692", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567251586343047, + 48.81769093460823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29975", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685586585082893, + 48.820748639949855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13222", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264153546698787, + 48.819473555697634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14080", + "ref:FR:issy_les_mx:ordre_arbre": "360", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721086548529184, + 48.82653876591594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9990", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261093234476851, + 48.81570933588841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16317", + "ref:FR:issy_les_mx:ordre_arbre": "461", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277736980441101, + 48.82922719619916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13518", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280610967842046, + 48.82333676509873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14687", + "ref:FR:issy_les_mx:ordre_arbre": "109", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687769465718923, + 48.81759421447369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20763", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259304499701404, + 48.818818194870694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13703", + "ref:FR:issy_les_mx:ordre_arbre": "487", + "species": "Tilia x euchlora", + "species:FR": "Tilleul de Crimée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258594495805348, + 48.81883133213825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13006", + "ref:FR:issy_les_mx:ordre_arbre": "640", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790154530925206, + 48.823165999484836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12850", + "ref:FR:issy_les_mx:ordre_arbre": "199", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660103604038593, + 48.8141865286013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12341", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536958907089777, + 48.81951446920871 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26716", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259796831565304, + 48.81711729615303 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28526", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274679405417587, + 48.820386441446786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10544", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601804756654027, + 48.82381512214771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10800", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2765244006849428, + 48.82457304435407 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10857", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Populus alba 'Nivea'", + "species:FR": "Peuplier argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279410690816361, + 48.82340287901273 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21339", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258830521765917, + 48.81860954838496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14580", + "ref:FR:issy_les_mx:ordre_arbre": "563", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266560513004189, + 48.82351245121364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10496", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617121821752315, + 48.815107143439334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27658", + "ref:FR:issy_les_mx:ordre_arbre": "639", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2453062554167174, + 48.81949870157899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11806", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628164721384194, + 48.81479134046325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14859", + "ref:FR:issy_les_mx:ordre_arbre": "355", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260787193584505, + 48.81554456639416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14800", + "ref:FR:issy_les_mx:ordre_arbre": "465", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681624632097868, + 48.82075975832903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13056", + "ref:FR:issy_les_mx:ordre_arbre": "581", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608875262830024, + 48.82417613987579 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12378", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684095956751387, + 48.81708750497791 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28238", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267601613363804, + 48.81999297193289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27904", + "ref:FR:issy_les_mx:ordre_arbre": "223a", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2734290349936006, + 48.824882403089056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10478", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254011144305853, + 48.820282973294944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22090", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269714336619299, + 48.821608175592665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10877", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266897004345319, + 48.82032702856873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10856", + "ref:FR:issy_les_mx:ordre_arbre": "544", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589414467125097, + 48.81879822624879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14404", + "ref:FR:issy_les_mx:ordre_arbre": "615", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259682244439869, + 48.82451224728626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17158", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593668997674428, + 48.817167542574055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29633", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268863636659619, + 48.818197906380874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20426", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2504512098278697, + 48.81914835403849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10216", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256152947104983, + 48.82420432517027 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27835", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27960446545269, + 48.82286685065927 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22237", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261423812853272, + 48.816796879332955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15757", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597794200124213, + 48.818152988630196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29788", + "ref:FR:issy_les_mx:ordre_arbre": "85", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25830591318988, + 48.81679273280937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29872", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544238646827233, + 48.81752769762163 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12639", + "ref:FR:issy_les_mx:ordre_arbre": "135", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587708118764978, + 48.82504528539013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17034", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258300649937748, + 48.815339749608064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11932", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273623198359495, + 48.827145681530595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9155", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251692814737675, + 48.82238207316908 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20964", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794566687387148, + 48.82332671053861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13712", + "ref:FR:issy_les_mx:ordre_arbre": "213", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277856514706786, + 48.82126354185788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14354", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283035454943441, + 48.829787170864854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12013", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597694409441185, + 48.8173503352671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28540", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615998294894144, + 48.815970852812285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16020", + "ref:FR:issy_les_mx:ordre_arbre": "452", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619767608244197, + 48.81593604815254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15785", + "ref:FR:issy_les_mx:ordre_arbre": "106", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2750552489459652, + 48.82317669437093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9740", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707392787339287, + 48.8254159249543 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26756", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589223828312917, + 48.818184752609255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13276", + "ref:FR:issy_les_mx:ordre_arbre": "113", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268702186879354, + 48.81758103428033 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20360", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614828010858683, + 48.81566741219597 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14775", + "ref:FR:issy_les_mx:ordre_arbre": "98", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695479125942164, + 48.82104951946262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29572", + "ref:FR:issy_les_mx:ordre_arbre": "602b", + "species": "Fraxinus ornus 'Lerce'", + "species:FR": "Frêne à fleurs 'Lerce'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698721077286503, + 48.82164828524397 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10878", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2471455630660375, + 48.82354595126051 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10636", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597159282770356, + 48.81821810226607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29781", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690637016875095, + 48.82066242902001 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14741", + "ref:FR:issy_les_mx:ordre_arbre": "164", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248911218349331, + 48.82061916545565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16302", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259160492714665, + 48.81859180152363 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14278", + "ref:FR:issy_les_mx:ordre_arbre": "583", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546071276961643, + 48.822095098867436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13370", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660468620780723, + 48.820088564841846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20932", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537950908145388, + 48.81930831497621 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26675", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27325404656981, + 48.821383420194984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12456", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259995580407956, + 48.81853808526035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29708", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277451686034752, + 48.82943452862518 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14703", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276403370937538, + 48.821860847245205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9327", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2808588299027805, + 48.82369884501345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11915", + "ref:FR:issy_les_mx:ordre_arbre": "168", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261805795245204, + 48.82467065913965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12217", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628760468237497, + 48.81998757267695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27910", + "ref:FR:issy_les_mx:ordre_arbre": "492.1", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261982413191611, + 48.8299376499568 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28969", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266630897947092, + 48.81408063620249 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16421", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625447244752306, + 48.81539042667937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16050", + "ref:FR:issy_les_mx:ordre_arbre": "187", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254271769276193, + 48.81801049382903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12106", + "ref:FR:issy_les_mx:ordre_arbre": "248", + "species": "Cydonia oblonga", + "species:FR": "Cognassier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788103567219067, + 48.822821351777414 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14276", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262484382903704, + 48.81535639012936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15950", + "ref:FR:issy_les_mx:ordre_arbre": "336", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261855656335581, + 48.814927344052535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15777", + "ref:FR:issy_les_mx:ordre_arbre": "375", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698144384586336, + 48.82560058660175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28305", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629912898547557, + 48.820093747234424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16073", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685267465311374, + 48.820859306432226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13215", + "ref:FR:issy_les_mx:ordre_arbre": "588", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664452617667843, + 48.829968030186144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11003", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640933431269223, + 48.82714183155961 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9556", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256035848101411, + 48.824239661605716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27827", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2722156180960162, + 48.8263825464771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11831", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577497264676882, + 48.815420209724806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13372", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Ilex aquifolium", + "species:FR": "Houx commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598803183156435, + 48.82564979324779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16945", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250138187623501, + 48.81913453557141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10214", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248595492518572, + 48.81946260489591 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22255", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547701070540347, + 48.82345732488263 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10211", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259649668654904, + 48.818795058184875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17191", + "ref:FR:issy_les_mx:ordre_arbre": "370", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805667342902534, + 48.82350860096589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12035", + "ref:FR:issy_les_mx:ordre_arbre": "232", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261901195812049, + 48.815030963474484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27695", + "ref:FR:issy_les_mx:ordre_arbre": "676", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254360370053386, + 48.822710946954935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10183", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626654775953012, + 48.81485473599561 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15734", + "ref:FR:issy_les_mx:ordre_arbre": "158", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578145330706954, + 48.81625778324045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30005", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658022595023444, + 48.830673352278815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11924", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617816304014773, + 48.828079491846346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27976", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692410342996676, + 48.82149163274892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11062", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665952578275532, + 48.81841476284284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30054", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679032580732943, + 48.820578335130975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13536", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265089665654625, + 48.81700273859029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29894", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides 'Cleveland'", + "species:FR": "Erable plane pourpre 'Cleveland'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594012394348306, + 48.8184444171485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29680", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261506816293143, + 48.81657616150688 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15927", + "ref:FR:issy_les_mx:ordre_arbre": "230", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612862542889114, + 48.82164118736623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9431", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609845703723854, + 48.81645029148322 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28388", + "ref:FR:issy_les_mx:ordre_arbre": "531", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609433830475805, + 48.82707058089004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9843", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599794265937114, + 48.8166364471788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28556", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610844377948833, + 48.81687093805884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16028", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796265128060615, + 48.822880260233894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15911", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785329676072714, + 48.82037451729857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11557", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261829093190192, + 48.815979528165535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15968", + "ref:FR:issy_les_mx:ordre_arbre": "208", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263673202285243, + 48.820053814076054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13420", + "ref:FR:issy_les_mx:ordre_arbre": "497", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661371594805826, + 48.82434850260348 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28329", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609586703673132, + 48.816603956527075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15963", + "ref:FR:issy_les_mx:ordre_arbre": "250", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25964234145879, + 48.823465734094206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10841", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261198492758345, + 48.822841935681026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29880", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539764642047975, + 48.82252048896718 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28328", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648865890693908, + 48.822343337454974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11743", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Quercus coccinea", + "species:FR": "Chêne écarlate" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2582597309013597, + 48.82266644006969 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11088", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2757398731077494, + 48.82160835642901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10904", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280059235759105, + 48.82362871893144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13095", + "ref:FR:issy_les_mx:ordre_arbre": "154", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594629290189117, + 48.824780024415666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17198", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272808653196779, + 48.821967073343664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10362", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253535670069701, + 48.81789538772833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12683", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263321864017617, + 48.819965556074386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12101", + "ref:FR:issy_les_mx:ordre_arbre": "472", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2761439810940844, + 48.82172264303264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10205", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267131861139474, + 48.81668409812127 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20362", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Pyrus communis 'Beurré de l'Assomption'", + "species:FR": "Poirier 'Beurré de l'Assomption'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591441586188012, + 48.82274070881773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30667", + "ref:FR:issy_les_mx:ordre_arbre": "16a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250500439528831, + 48.82380348208371 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14079", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662483393793953, + 48.8140643040948 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12678", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261381642492846, + 48.81650610977499 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21972", + "ref:FR:issy_les_mx:ordre_arbre": "233", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597374707167033, + 48.8189452106649 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27920", + "ref:FR:issy_les_mx:ordre_arbre": "340e", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590983762224637, + 48.818721805153864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14341", + "ref:FR:issy_les_mx:ordre_arbre": "606", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600371590655715, + 48.81824068766098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29729", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260219480920105, + 48.81595017402706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27602", + "ref:FR:issy_les_mx:ordre_arbre": "583", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690772494807816, + 48.822414079160666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9594", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269438157675374, + 48.82020654389022 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27551", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600217814260897, + 48.8188747982711 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13927", + "ref:FR:issy_les_mx:ordre_arbre": "407", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2769821184747734, + 48.82216383193211 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10103", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714876752942033, + 48.82277497709072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10687", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256775121633096, + 48.82381056660495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17081", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267313132288732, + 48.81743585244615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20393", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Pyrus communis 'Marguerite Marillat'", + "species:FR": "Poirier 'Marguerite Marillat'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261877607033815, + 48.81507147021223 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27701", + "ref:FR:issy_les_mx:ordre_arbre": "682", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580622308363494, + 48.817861287663504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14719", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254182354281689, + 48.81757356415722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12381", + "ref:FR:issy_les_mx:ordre_arbre": "121", + "species": "Salix matsudana 'Tortuosa'", + "species:FR": "Saule matsudana tortueux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2502101780549255, + 48.822544894577874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11111", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2448209356762874, + 48.820874838652806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10356", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254969153833946, + 48.81782458233571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13245", + "ref:FR:issy_les_mx:ordre_arbre": "212", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269684700353634, + 48.822379280109686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28742", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus ornus 'Lerce'", + "species:FR": "Frêne à fleurs 'Lerce'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271878309131823, + 48.821764722729675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10491", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260918122847112, + 48.81619028443721 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16269", + "ref:FR:issy_les_mx:ordre_arbre": "294", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602827348767462, + 48.815848219537635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16088", + "ref:FR:issy_les_mx:ordre_arbre": "283", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488091768834857, + 48.818963336251706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11358", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254861526582004, + 48.81725175973195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29505", + "ref:FR:issy_les_mx:ordre_arbre": "196a", + "species": "Malus domestica 'Canada blanc'", + "species:FR": "Pommier 'Canada blanc'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269446611540302, + 48.817536716433935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20465", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2500553565808645, + 48.81873601499457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9540", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25563643214676, + 48.8223489716655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27531", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277041483244952, + 48.82924465575971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12883", + "ref:FR:issy_les_mx:ordre_arbre": "74", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608704534339616, + 48.81523954691816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27760", + "ref:FR:issy_les_mx:ordre_arbre": "741", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586666807844655, + 48.81882181562122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13039", + "ref:FR:issy_les_mx:ordre_arbre": "643", + "species": "Sorbus domestica", + "species:FR": "Sorbier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258161416445373, + 48.815482538666686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11917", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668003372576138, + 48.820208257189755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20820", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2442644761964865, + 48.81917314221497 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12654", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261315173860139, + 48.82811141602592 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27943", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658602536616477, + 48.82003943554397 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12926", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794535973929606, + 48.82364531426719 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21590", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665611070206015, + 48.83435739522037 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10426", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2459469821514815, + 48.818553733779574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11397", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670992540383703, + 48.82840469420511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28061", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2734634409300356, + 48.826005491087784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9656", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261633952096616, + 48.82998110452358 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28963", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596709293432533, + 48.81871110616175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16834", + "ref:FR:issy_les_mx:ordre_arbre": "456", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538586120579716, + 48.818013519103715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12361", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus avium 'Reverchon'", + "species:FR": "Cerisier bigarreau 'Reverchon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574393746189796, + 48.81659919936645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30074", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258005767291933, + 48.822573496988596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11214", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257349944101236, + 48.81619454794106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29995", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590716253568672, + 48.81848618503232 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16991", + "ref:FR:issy_les_mx:ordre_arbre": "548", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26652074935273, + 48.820252437244676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13529", + "ref:FR:issy_les_mx:ordre_arbre": "383", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271626903592588, + 48.82068017547634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12715", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277350247407644, + 48.82957565815262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11920", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635159461913563, + 48.81983450561746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14060", + "ref:FR:issy_les_mx:ordre_arbre": "469", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678677756466614, + 48.82027542512455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12827", + "ref:FR:issy_les_mx:ordre_arbre": "197", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262408970661166, + 48.81496792872874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14254", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587327896006952, + 48.81887314450546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13299", + "ref:FR:issy_les_mx:ordre_arbre": "657", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641475286611, + 48.820165302210974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15706", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2760781319467887, + 48.82745830870005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30566", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602398937896497, + 48.81624871782101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27581", + "ref:FR:issy_les_mx:ordre_arbre": "562", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541219556936802, + 48.81713000067487 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12635", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259718605168271, + 48.81737228743633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28537", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691093199709664, + 48.8163068040732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20318", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267993012115861, + 48.83302230751706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10751", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277323257128501, + 48.82809324021395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8044", + "ref:FR:issy_les_mx:ordre_arbre": "2b", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2521502357022336, + 48.81972122221579 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13624", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698434546528827, + 48.82573648046176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28310", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601332946563173, + 48.81622949629889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16017", + "ref:FR:issy_les_mx:ordre_arbre": "408", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267051316389293, + 48.81798123203398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20467", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus communis 'Henri Desportes'", + "species:FR": "Poirier 'Henri Desportes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585763574964144, + 48.81881466728436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13003", + "ref:FR:issy_les_mx:ordre_arbre": "637", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254754753233147, + 48.823646823795656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10180", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243780648373303, + 48.82074880690415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10469", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280855293800005, + 48.8234983749297 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12187", + "ref:FR:issy_les_mx:ordre_arbre": "177", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261913049603951, + 48.814982469617505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27716", + "ref:FR:issy_les_mx:ordre_arbre": "697", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.241595880191201, + 48.82142081666604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9101", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608539613179333, + 48.82787922293116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27954", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659516363434293, + 48.823777157429205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27162", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Robinia pseudoacacia 'Frisia'", + "species:FR": "Robinier faux acacia doré" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27904119694802, + 48.823231797992335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13218", + "ref:FR:issy_les_mx:ordre_arbre": "205", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2571856051869124, + 48.81763479758877 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29947", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683181789752203, + 48.817281493704506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20626", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777111735802853, + 48.82616484002955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21558", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247052012311271, + 48.82258052949584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28704", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537606861779103, + 48.8175373738716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12299", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546342477642307, + 48.81777604867193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14508", + "ref:FR:issy_les_mx:ordre_arbre": "225", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701448038477836, + 48.81660524501706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1170", + "ref:FR:issy_les_mx:ordre_arbre": "4" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679782508436346, + 48.81665492993284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20242", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718001761620576, + 48.82536160686325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28760", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661539447699606, + 48.82778461172551 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9835", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597062297001864, + 48.81870917529808 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13994", + "ref:FR:issy_les_mx:ordre_arbre": "457", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617951064305686, + 48.81509839200339 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27637", + "ref:FR:issy_les_mx:ordre_arbre": "618", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2571644857916544, + 48.81623673956344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14869", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266538960372534, + 48.83025179854571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13008", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450508357687546, + 48.820909172701775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10354", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2454780994934307, + 48.82281583098335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16133", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724919251024778, + 48.82577195107191 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12093", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2482243946735627, + 48.82386313755394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27991", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262974284053055, + 48.82008258530857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21595", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265221129947729, + 48.81438852470502 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12379", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615215391154777, + 48.82715252011733 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30706", + "ref:FR:issy_les_mx:ordre_arbre": "23b", + "species": "Liquidambar styraciflua 'Slender silhouette'", + "species:FR": "Copalme d'Amérique 'Slender silhouette'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604632933396283, + 48.81645740344302 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16107", + "ref:FR:issy_les_mx:ordre_arbre": "427", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259456087304634, + 48.818642361481835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14560", + "ref:FR:issy_les_mx:ordre_arbre": "312", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266364974178556, + 48.82022282487526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27914", + "ref:FR:issy_les_mx:ordre_arbre": "382c", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622309402866785, + 48.815496696373444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16103", + "ref:FR:issy_les_mx:ordre_arbre": "329", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261665367023776, + 48.81526339934359 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21512", + "ref:FR:issy_les_mx:ordre_arbre": "124", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25948002327722, + 48.81894874131787 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13622", + "ref:FR:issy_les_mx:ordre_arbre": "503", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531570684789117, + 48.82208909979556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10420", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26080613650168, + 48.81630816368436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28411", + "ref:FR:issy_les_mx:ordre_arbre": "554", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725426279739644, + 48.825886768827125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11187", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639745482267664, + 48.82670248029959 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11158", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267046675079871, + 48.82544240680024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11383", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250130944882622, + 48.82320719384056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9536", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538201434699165, + 48.820296122545955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22088", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739914985538987, + 48.8189889320864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10398", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625981714832486, + 48.82934690800773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8606", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591121434727177, + 48.817100018475585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29601", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267104518618131, + 48.828859849979345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12494", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2855626003978515, + 48.8287487888105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29855", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Arbutus sp.", + "species:FR": "Arbousier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273938480367191, + 48.821397046220376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11366", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640534165997273, + 48.823860019967405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12717", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719280515717286, + 48.82573307024813 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14865", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267546265477114, + 48.81684597620008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20540", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2500927680281553, + 48.823440126966396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13758", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260918275131514, + 48.81530531828814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27763", + "ref:FR:issy_les_mx:ordre_arbre": "744", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745310339818112, + 48.820406381423595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10480", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258938998033768, + 48.822724675305366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15172", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639320075534557, + 48.81982709557583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13600", + "ref:FR:issy_les_mx:ordre_arbre": "458", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265796302683526, + 48.83003066540438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11947", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791230008056402, + 48.82340697751844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21896", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592104568677933, + 48.816459093743454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29867", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259615205356497, + 48.82544731209596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16684", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247529209371069, + 48.82276435896796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9796", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547177007729573, + 48.82351490764595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11502", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263014525935041, + 48.8149322436629 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15870", + "ref:FR:issy_les_mx:ordre_arbre": "348", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27745592558081, + 48.82949237252449 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22379", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619705104110435, + 48.814855084104025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15955", + "ref:FR:issy_les_mx:ordre_arbre": "372", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784790823052963, + 48.82395654634872 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11606", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Magnolia x soulangeana", + "species:FR": "Magnolia de Soulange" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276826149847604, + 48.827958750727326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30542", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fraxinus americana 'Skyline'", + "species:FR": "Frêne blanc 'Skyline'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2515558921684886, + 48.819908572824815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12160", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261009726925513, + 48.82702553909213 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14059", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260928805237492, + 48.81663346605857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22158", + "ref:FR:issy_les_mx:ordre_arbre": "249", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732164246564794, + 48.821294767558086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27030", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686420380965675, + 48.81669397941945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20429", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260836503736893, + 48.81630835151764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28415", + "ref:FR:issy_les_mx:ordre_arbre": "558", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629987522992137, + 48.819633813850515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10706", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514685055323187, + 48.81954922034043 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13619", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616994944166193, + 48.8152380585219 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16438", + "ref:FR:issy_les_mx:ordre_arbre": "129", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544816824590295, + 48.81756146252074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12637", + "ref:FR:issy_les_mx:ordre_arbre": "133", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27124422579397, + 48.81564132636722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10033", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2419541876574636, + 48.82138762250719 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9696", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577621148520115, + 48.81724206668816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15123", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253861454659233, + 48.8230653485786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11443", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2764547645123736, + 48.82188828829968 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22467", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2540918797665483, + 48.82196878990377 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12206", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271676903658276, + 48.82713411822267 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11149", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2425869522154254, + 48.82078154222708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10758", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2512691649035124, + 48.82278148820978 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12513", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25673608509487, + 48.823698403645594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17231", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261478227213424, + 48.82760970615119 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11783", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680734940226266, + 48.8206230789561 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20963", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2735724852154533, + 48.82401381939258 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9751", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia henryana", + "species:FR": "Tilleul de Henry" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270335465486408, + 48.81668070866419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1733", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251125006149609, + 48.819426906632394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11501", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254240888862527, + 48.817178378166496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12658", + "ref:FR:issy_les_mx:ordre_arbre": "85", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2746778775929304, + 48.82138998060798 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10999", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255694885185635, + 48.82189329260534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16003", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2449331085316286, + 48.820886508222074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28316", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Salix fragilis", + "species:FR": "Saule cassant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784233212958163, + 48.82049256598708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11461", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661443877406473, + 48.82936509745788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14071", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272426830550385, + 48.82266531797936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10935", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254123009744717, + 48.81747586012165 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12728", + "ref:FR:issy_les_mx:ordre_arbre": "119", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686390408340062, + 48.82012354914351 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12556", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596113555155837, + 48.82278128634766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9909", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618115755580215, + 48.815724109348686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28382", + "ref:FR:issy_les_mx:ordre_arbre": "90b", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280347117688615, + 48.82340760118126 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13664", + "ref:FR:issy_les_mx:ordre_arbre": "184", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253939124990001, + 48.81766888855699 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22347", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Prunus armeniaca", + "species:FR": "Abricotier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773176298886018, + 48.82863329811106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13656", + "ref:FR:issy_les_mx:ordre_arbre": "133", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253636268262412, + 48.81992447015314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26668", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258036906174715, + 48.818696220234735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9475", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259609563023931, + 48.818790392834735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13876", + "ref:FR:issy_les_mx:ordre_arbre": "367", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700207197322544, + 48.82040969700972 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12479", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680443390447644, + 48.819899795361145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27555", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663058789248094, + 48.823586070465296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11136", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2426821953907985, + 48.82075464342271 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10756", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773514406624886, + 48.82416818344693 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16521", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261720500986698, + 48.81514478934058 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27625", + "ref:FR:issy_les_mx:ordre_arbre": "606", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259093335741704, + 48.82300558528976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15173", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2479961377108455, + 48.81847491597098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13112", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276491676774227, + 48.82243763111041 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12786", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795966512918406, + 48.823126211504196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29421", + "ref:FR:issy_les_mx:ordre_arbre": "4a", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2503808087217934, + 48.82345487963958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16406", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277439160288508, + 48.82622294531471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11259", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803944638249267, + 48.823861120701324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12113", + "ref:FR:issy_les_mx:ordre_arbre": "128", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260643060970335, + 48.8157655092329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15897", + "ref:FR:issy_les_mx:ordre_arbre": "395", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264504577780432, + 48.822826665302934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12649", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623789987565015, + 48.814990384080154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14255", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258615205285449, + 48.82477571246235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17115", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719458301278004, + 48.82255272343289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11168", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256255446587238, + 48.82060445584445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12188", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265987450152218, + 48.830559977298705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28323", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277766400622501, + 48.82852646637571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29512", + "ref:FR:issy_les_mx:ordre_arbre": "8a", + "species": "Sophora japonica 'Pendula'", + "species:FR": "Sophora du Japon pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731210136984403, + 48.821327359293875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11599", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646081355892003, + 48.829587561329596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28754", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Zelkova carpinifolia", + "species:FR": "Orme du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601553970043646, + 48.82282648392347 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29884", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276236934553902, + 48.82178366255241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10204", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615791018415794, + 48.829959653683744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28961", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264379275442261, + 48.81960324820531 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16202", + "ref:FR:issy_les_mx:ordre_arbre": "315", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633691803860523, + 48.82668077591183 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9533", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Malus 'Golden Hornet'", + "species:FR": "Pommier d'ornement à fleurs blanches" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551759322474174, + 48.823058173441666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10274", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617788388871096, + 48.82992768687455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28965", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279749832912011, + 48.82369700204749 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12548", + "ref:FR:issy_les_mx:ordre_arbre": "92", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270170886140408, + 48.81471978046258 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10801", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259374478503439, + 48.817097687251454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29636", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789022900033395, + 48.82562045586849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12398", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622000783581195, + 48.814821715959425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15902", + "ref:FR:issy_les_mx:ordre_arbre": "520", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272257798456388, + 48.82335718695484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11761", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688080714159904, + 48.817477538489115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20402", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Pyrus communis 'Marguerite Marillat'", + "species:FR": "Poirier 'Marguerite Marillat'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266848539210373, + 48.81746268563054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20392", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Pyrus communis 'Duc de Bordeaux'", + "species:FR": "Poirier 'Duc de Bordeaux'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685891072666626, + 48.81740906286951 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20739", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699799261801203, + 48.82603780262003 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21902", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2433300919186414, + 48.82071255462992 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9972", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280738025085342, + 48.83059358069953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15077", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2570104326370077, + 48.81718788165697 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29925", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710709275501384, + 48.82063899719197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27545", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2747461331003906, + 48.82147574007461 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10310", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599090926042704, + 48.81830141276082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29746", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561370459633125, + 48.81695178305019 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21454", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Cupressocyparis x Leylandii", + "species:FR": "Cyprès de Leyland" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2754115653436453, + 48.821541307680484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11322", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633174819098194, + 48.81519652669693 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16200", + "ref:FR:issy_les_mx:ordre_arbre": "170", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774689051989054, + 48.82215399558701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9869", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613346000567303, + 48.821556360288085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8856", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793214128966017, + 48.82198290451378 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16537", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660003665531177, + 48.829199564829665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14634", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer davidii", + "species:FR": "Erable du Père David" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593163416719078, + 48.818919986276654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13523", + "ref:FR:issy_les_mx:ordre_arbre": "497", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538852862879346, + 48.820192670767774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30620", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266207519200767, + 48.82772802159926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22060", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270180209874935, + 48.82044079508126 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12690", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265410969695035, + 48.82922539507976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26190", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605710004954878, + 48.82291566929259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11026", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273002661820595, + 48.82210022920052 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12351", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795849396154426, + 48.82315198285875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14561", + "ref:FR:issy_les_mx:ordre_arbre": "95", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254658702589254, + 48.817401071527684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14655", + "ref:FR:issy_les_mx:ordre_arbre": "158", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565654575464515, + 48.8159417552139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14364", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Cupressocyparis x Leylandii", + "species:FR": "Cyprès de Leyland" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597677857172767, + 48.81860069113006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29685", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558145876493865, + 48.816835173495356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14773", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538589739124153, + 48.81779796489626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12045", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610286041671506, + 48.81567497169606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14860", + "ref:FR:issy_les_mx:ordre_arbre": "462", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718652263543864, + 48.81599556399195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10168", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794518926473577, + 48.82786867080485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9953", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269813961307337, + 48.82577074657475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28311", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595819039911773, + 48.81873598391794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13918", + "ref:FR:issy_les_mx:ordre_arbre": "258", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2499013928413367, + 48.819054089606674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11821", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263266973996705, + 48.81517250920356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15697", + "ref:FR:issy_les_mx:ordre_arbre": "169", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696700690694933, + 48.81793322808773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20176", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610471715765503, + 48.82382487373066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10571", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577426346496994, + 48.818496878370354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17225", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2454918907969597, + 48.81955386305706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11719", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671105597718992, + 48.82414517205825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9905", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279130865392719, + 48.823186587293655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14710", + "ref:FR:issy_les_mx:ordre_arbre": "197", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2766901320506308, + 48.822671622317095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16179", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255160819186062, + 48.81733178239252 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29507", + "ref:FR:issy_les_mx:ordre_arbre": "198c", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685895437694867, + 48.81770872080341 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21571", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Malus domestica 'Reinette d'Anjou'", + "species:FR": "Pommier 'Reinette d'Anjou'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787605177990127, + 48.82300542622962 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16566", + "ref:FR:issy_les_mx:ordre_arbre": "149", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602934293583377, + 48.82283736014209 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10004", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262427837717748, + 48.81566771657003 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15733", + "ref:FR:issy_les_mx:ordre_arbre": "115", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610845204659618, + 48.82802742728092 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27968", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24438560579817, + 48.82158780743908 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14768", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619842787328364, + 48.81452044298979 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27733", + "ref:FR:issy_les_mx:ordre_arbre": "714", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248807766038118, + 48.818921842202464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11359", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716430679723167, + 48.81868324931824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14309", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267515705222427, + 48.82109217602008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11365", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664167624811973, + 48.829021261460696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10644", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258041578342294, + 48.81572067898327 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30606", + "ref:FR:issy_les_mx:ordre_arbre": "11a", + "species": "Ilex aquifolium", + "species:FR": "Houx commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253678492829253, + 48.82238533620314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9351", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660186785907666, + 48.82437836215464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28330", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244616619567766, + 48.82157218930774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10694", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2838578874456448, + 48.827674737477224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12644", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262559513957697, + 48.81587704727484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22259", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628871781556104, + 48.828619850965076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25840", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794581654306745, + 48.822897081063736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15839", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263082814712461, + 48.819578385886714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10634", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258824762061157, + 48.81839530189974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12832", + "ref:FR:issy_les_mx:ordre_arbre": "122", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596996763137427, + 48.81733697980482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28536", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259410715158336, + 48.81865313019659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21426", + "ref:FR:issy_les_mx:ordre_arbre": "307", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634461375442427, + 48.814965966050465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15815", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259571979585096, + 48.8188453697827 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17150", + "ref:FR:issy_les_mx:ordre_arbre": "331", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268365096233282, + 48.82253787039668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29913", + "ref:FR:issy_les_mx:ordre_arbre": "19a", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264786485994047, + 48.82576691555935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30578", + "ref:FR:issy_les_mx:ordre_arbre": "17a", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607848487096662, + 48.823714589875536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10148", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267803385015354, + 48.816809826991445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20290", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270229143827594, + 48.81681264723555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6422", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264015668982032, + 48.82080861137851 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14850", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261613031592714, + 48.81607255729684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10566", + "ref:FR:issy_les_mx:ordre_arbre": "311", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253753591451974, + 48.82181174370386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30675", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267548395578152, + 48.825378067562916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10567", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Araucaria araucana", + "species:FR": "Désespoir des singes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771823878645394, + 48.82902585562803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16287", + "ref:FR:issy_les_mx:ordre_arbre": "141", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258374900349694, + 48.82421589097233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17155", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265505962028589, + 48.82820193605241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9789", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669392455870248, + 48.8312336309102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28321", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271802612539476, + 48.82506967626761 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26771", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia stellata 'Royal Star'", + "species:FR": "Magnolia étoilé 'Royal Star'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250040999545506, + 48.823242802733795 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9395", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616020515010242, + 48.830052707527734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28964", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682899327377886, + 48.8160654268844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29815", + "ref:FR:issy_les_mx:ordre_arbre": "35a", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279010469510529, + 48.82304911627761 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13034", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660803580221915, + 48.82930270837411 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14131", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2524238292305574, + 48.82208790628965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10230", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689774345894125, + 48.81732544306531 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20434", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593426458963064, + 48.818844971310334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13705", + "ref:FR:issy_les_mx:ordre_arbre": "489", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2508520292857312, + 48.82030199139973 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10056", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26888782771363, + 48.818142137683644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20536", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261954126209048, + 48.8162201963444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22236", + "ref:FR:issy_les_mx:ordre_arbre": "446", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267173958500908, + 48.817815414894824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28242", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579679165423774, + 48.81714006430687 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15120", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621855600484917, + 48.82906543384935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8400", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273648928983573, + 48.82723456078554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9154", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634604032278745, + 48.815165541383216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15957", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662589296435605, + 48.82784398213884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22034", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638015156987787, + 48.82067592094678 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15191", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666727310883643, + 48.81655735395007 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20503", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689258834982096, + 48.82088748097836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14032", + "ref:FR:issy_les_mx:ordre_arbre": "593", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575593139004106, + 48.81762852349833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12226", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657496804120174, + 48.83063556394807 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11949", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607266558782526, + 48.81666738541058 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16106", + "ref:FR:issy_les_mx:ordre_arbre": "426", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604933014996895, + 48.82391067762876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13822", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263068974758843, + 48.81477255723878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15892", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533372043439184, + 48.82178484168438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30676", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Acer x freemanii 'Celebration'", + "species:FR": "Erable de freeman 'Celebration'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2508195728108094, + 48.82318995682268 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15115", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278901892717713, + 48.82280414758652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14227", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259030948130459, + 48.81840965846024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14418", + "ref:FR:issy_les_mx:ordre_arbre": "536", + "species": "Tilia x euchlora", + "species:FR": "Tilleul de Crimée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266582707847304, + 48.815957737497264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27804", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268248616200707, + 48.82058969588076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13578", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266291943174268, + 48.824229880897825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27163", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260909862240608, + 48.816340463738385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29448", + "ref:FR:issy_les_mx:ordre_arbre": "549a", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248632939754589, + 48.819797329810775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9941", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272548995221091, + 48.81640207234502 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10325", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268696107206209, + 48.81811861306558 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20359", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Malus domestica 'Jonagold'", + "species:FR": "Pommier 'Jonagold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268633841539425, + 48.820895326572874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13216", + "ref:FR:issy_les_mx:ordre_arbre": "589", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260171128701051, + 48.81856043995608 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29715", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Salix alba", + "species:FR": "Saule blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254577243093957, + 48.81733581553991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14590", + "ref:FR:issy_les_mx:ordre_arbre": "155", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2515148302635994, + 48.82306207458617 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15090", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267121862605893, + 48.819927939112986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14155", + "ref:FR:issy_les_mx:ordre_arbre": "230", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263223204928853, + 48.815366212572314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15909", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676854217492117, + 48.82057279140425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13591", + "ref:FR:issy_les_mx:ordre_arbre": "567", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704678236648212, + 48.82152220129248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12208", + "ref:FR:issy_les_mx:ordre_arbre": "130", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601356975191953, + 48.81825487850174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29725", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602985450287094, + 48.81604839021431 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16258", + "ref:FR:issy_les_mx:ordre_arbre": "401", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2477293638995577, + 48.82273794127078 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9690", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794086790903947, + 48.82305640598865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14619", + "ref:FR:issy_les_mx:ordre_arbre": "88", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802525044793134, + 48.82374838731252 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13643", + "ref:FR:issy_les_mx:ordre_arbre": "145", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653739691733863, + 48.82722632581705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9948", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586787106650363, + 48.82262998562491 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11114", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266615612907378, + 48.815884009657026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27806", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678381230516926, + 48.8168718583753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20313", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Prunus cerasus 'Géant d'Hedelfingen'", + "species:FR": "Cerisier 'Géant d'Hedelfingen'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265585529124, + 48.82084346758495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12416", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776467904975966, + 48.82935970148654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12307", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258737759526438, + 48.81853709309535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12902", + "ref:FR:issy_les_mx:ordre_arbre": "191", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614281429680574, + 48.81477738064676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27752", + "ref:FR:issy_les_mx:ordre_arbre": "733", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266399332104565, + 48.823484541659425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10006", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270774879122456, + 48.825683421122534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26751", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276779703624742, + 48.82907564307503 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13831", + "ref:FR:issy_les_mx:ordre_arbre": "111", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590323744514293, + 48.8186539292979 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14470", + "ref:FR:issy_les_mx:ordre_arbre": "571", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263055430457686, + 48.81989640102901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12088", + "ref:FR:issy_les_mx:ordre_arbre": "475", + "species": "Sophora japonica 'Pendula'", + "species:FR": "Sophora du Japon pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614991242682394, + 48.828117139545256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27971", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618633560166517, + 48.815068054443735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27700", + "ref:FR:issy_les_mx:ordre_arbre": "681", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265329109660689, + 48.82948070218336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11056", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer buergerianum", + "species:FR": "Erable à écorce de dragon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724942406738107, + 48.81628967705095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10141", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254718425798768, + 48.817270811344045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12385", + "ref:FR:issy_les_mx:ordre_arbre": "182", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695139798092088, + 48.8225555754368 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11115", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732876116654603, + 48.82503052309643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10111", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269739381435877, + 48.820919937893066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30794", + "ref:FR:issy_les_mx:ordre_arbre": "150", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276696407862794, + 48.829078735665036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14515", + "ref:FR:issy_les_mx:ordre_arbre": "116", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279411190533896, + 48.82348170116511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13171", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2484140970835003, + 48.82246159957939 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9189", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260951548999646, + 48.81627335009865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15921", + "ref:FR:issy_les_mx:ordre_arbre": "262", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588847756870645, + 48.818900655920224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13453", + "ref:FR:issy_les_mx:ordre_arbre": "676", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546638586074534, + 48.817412226427685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14714", + "ref:FR:issy_les_mx:ordre_arbre": "159", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693765935929617, + 48.822660888082765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28208", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561422896047754, + 48.82433071213787 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27856", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661096929143194, + 48.830643560555615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28322", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726645815223527, + 48.82552636827741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28752", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265313878458064, + 48.82025468180421 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12255", + "ref:FR:issy_les_mx:ordre_arbre": "519", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264387328084074, + 48.82623633611818 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11528", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620482306902074, + 48.816331576840966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15426", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260198834079074, + 48.81871534658237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16790", + "ref:FR:issy_les_mx:ordre_arbre": "231", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253783812097507, + 48.8179561801346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12072", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259438130471462, + 48.81894514410218 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13470", + "ref:FR:issy_les_mx:ordre_arbre": "501", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262901206429192, + 48.826632377693514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30540", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276203169380741, + 48.828516356576564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9582", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618775286066755, + 48.81501930509737 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27717", + "ref:FR:issy_les_mx:ordre_arbre": "698", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262544799304143, + 48.814540362211616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28385", + "ref:FR:issy_les_mx:ordre_arbre": "361a", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652813329518247, + 48.82585510020017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9420", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261547726125078, + 48.828186422250184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27940", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591922695465487, + 48.81847814952175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14416", + "ref:FR:issy_les_mx:ordre_arbre": "534", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535238372378776, + 48.8178863855868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12585", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674819887459274, + 48.816887806704486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20355", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733374537416657, + 48.824717335971876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9924", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270025787465786, + 48.826226677446925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28032", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607307996819017, + 48.8175836686017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28588", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267891618877634, + 48.82121399591866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10977", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263357979341895, + 48.82240255306007 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27576", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598306262843164, + 48.81596331305356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16581", + "ref:FR:issy_les_mx:ordre_arbre": "486", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617568138105577, + 48.81750934591377 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26497", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667617419311803, + 48.8284212413676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28054", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2743490921237903, + 48.82361212606534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26246", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659761784632804, + 48.81602209729737 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27799", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255558937043282, + 48.82288481547065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11850", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265749324214853, + 48.82012997157769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26219", + "ref:FR:issy_les_mx:ordre_arbre": "392", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626202875940327, + 48.8199573045042 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27909", + "ref:FR:issy_les_mx:ordre_arbre": "489a", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264547074239461, + 48.82014304379454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28297", + "ref:FR:issy_les_mx:ordre_arbre": "506", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779856239610594, + 48.82847339283559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25875", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681306850858727, + 48.820637357076485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13495", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266740993627021, + 48.81827859051874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30042", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2812585714037708, + 48.83144971585739 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10271", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602936740920976, + 48.82573239084668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17242", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257113129089345, + 48.816276893752615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14870", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2506286437997813, + 48.820757314835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10184", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260195364585974, + 48.81617789675918 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16039", + "ref:FR:issy_les_mx:ordre_arbre": "410", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587708818699626, + 48.81856275750169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14653", + "ref:FR:issy_les_mx:ordre_arbre": "556", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661353837364397, + 48.82846607264439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21625", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25916618547824, + 48.8186581189787 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14666", + "ref:FR:issy_les_mx:ordre_arbre": "413", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265468347413919, + 48.825786114102925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9608", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259847103430501, + 48.81822810469591 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29772", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2807985075177397, + 48.83112648221646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11563", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267562123781901, + 48.81690622897781 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20289", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus cerasus 'Tardif de Vignola'", + "species:FR": "Cerisier 'Tardif de Vignola'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269277622708592, + 48.81779418161031 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30775", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264783764355084, + 48.819950032185766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12073", + "ref:FR:issy_les_mx:ordre_arbre": "411", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278964007098115, + 48.82315830609547 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13270", + "ref:FR:issy_les_mx:ordre_arbre": "200", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2564268573100486, + 48.81755066304076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29972", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2743960997058656, + 48.82175498586464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16509", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619054081666308, + 48.81504124254006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27696", + "ref:FR:issy_les_mx:ordre_arbre": "677", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643812165160044, + 48.82412741706898 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10160", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2735169436261216, + 48.826752735322565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9179", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278334274134573, + 48.82298599700206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14149", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267972577541978, + 48.820646919651715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_3808", + "ref:FR:issy_les_mx:ordre_arbre": "610", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695147835707843, + 48.82092530440506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12439", + "ref:FR:issy_les_mx:ordre_arbre": "100", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593834866289444, + 48.81891052623084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13020", + "ref:FR:issy_les_mx:ordre_arbre": "200", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2511882604035724, + 48.822803299583896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15112", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259341566060884, + 48.818917990373656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13022", + "ref:FR:issy_les_mx:ordre_arbre": "203", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275353203405613, + 48.82231909776789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10879", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26544059234903, + 48.81983541960814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30789", + "ref:FR:issy_les_mx:ordre_arbre": "366a", + "species": "Halesia sp.", + "species:FR": "Halesia indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2519291646668536, + 48.821746433487306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11637", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2736266681014956, + 48.82768746262921 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9658", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Betula pendula 'Youngii'", + "species:FR": "Bouleau pleureur de Young" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732382406583524, + 48.82508445108934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10110", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2489991034594827, + 48.81915408943765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30592", + "ref:FR:issy_les_mx:ordre_arbre": "11c", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278554765498, + 48.82209669909119 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27808", + "ref:FR:issy_les_mx:ordre_arbre": "49a", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2763252439728676, + 48.827390641070345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10886", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268913031574934, + 48.82071659655999 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14034", + "ref:FR:issy_les_mx:ordre_arbre": "168", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262763751821503, + 48.81468432504747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15781", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698890574258104, + 48.821021694088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14697", + "ref:FR:issy_les_mx:ordre_arbre": "106", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688387796647556, + 48.82008174649554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12552", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631281656498494, + 48.82664976001955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9683", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Malus 'Golden Hornet'", + "species:FR": "Pommier d'ornement à fleurs blanches" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580275083924883, + 48.81793851661358 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12415", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2819802815833174, + 48.82848154000332 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10504", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801717268729895, + 48.82343399679536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13394", + "ref:FR:issy_les_mx:ordre_arbre": "225", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254400991089779, + 48.81801508473006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12280", + "ref:FR:issy_les_mx:ordre_arbre": "244", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25457190163749, + 48.81743581046318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12609", + "ref:FR:issy_les_mx:ordre_arbre": "146", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620404662851707, + 48.81572028857857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16057", + "ref:FR:issy_les_mx:ordre_arbre": "322", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259584540211257, + 48.81878798304477 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22382", + "ref:FR:issy_les_mx:ordre_arbre": "366", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267511513160226, + 48.81692434724153 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20356", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279814600586738, + 48.82168867177326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21561", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266927529511747, + 48.82024265647923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12859", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673204231913893, + 48.817057657742 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20431", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus cerasus 'Bigarreau Van'", + "species:FR": "Cerisier 'Bigarreau Van'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259698881573305, + 48.81809705058386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29795", + "ref:FR:issy_les_mx:ordre_arbre": "92", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801272417080902, + 48.82361417544146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29589", + "ref:FR:issy_les_mx:ordre_arbre": "154a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259077502030064, + 48.818659796081036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15724", + "ref:FR:issy_les_mx:ordre_arbre": "299", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615848079958165, + 48.81533656252803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16541", + "ref:FR:issy_les_mx:ordre_arbre": "525", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603879695022266, + 48.81557224917072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16116", + "ref:FR:issy_les_mx:ordre_arbre": "475", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2765672567518327, + 48.82224722603945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11926", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708273298423176, + 48.825362486706084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26790", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254454646776557, + 48.81744246930149 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12514", + "ref:FR:issy_les_mx:ordre_arbre": "143", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246783993310603, + 48.81885628154832 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11445", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662970719423443, + 48.82045266063217 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14117", + "ref:FR:issy_les_mx:ordre_arbre": "529", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277655154469393, + 48.82893201974639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13208", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700637435982007, + 48.8176038852669 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29425", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243600560636981, + 48.820706033734034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10124", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638356905582566, + 48.829510067437354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10582", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708477290416766, + 48.821647478110684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25499", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277678122638759, + 48.828776742464726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22217", + "ref:FR:issy_les_mx:ordre_arbre": "92", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664780786815135, + 48.82054536334071 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13190", + "ref:FR:issy_les_mx:ordre_arbre": "533", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245952716586476, + 48.81885107637672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11797", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731144059240305, + 48.82295549025423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12537", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2858971933670715, + 48.82831647624442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11051", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278455419037386, + 48.82045538945797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11560", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656702341387196, + 48.826131759161164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11811", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2520277084164264, + 48.81978066221449 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13603", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2465683641886054, + 48.82130357501058 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9470", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia mongolica", + "species:FR": "Tilleul de Mongolie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264546498720196, + 48.81942102112428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13551", + "ref:FR:issy_les_mx:ordre_arbre": "309", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248688128258873, + 48.81882254597017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30587", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771010669787706, + 48.82919414823701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11989", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282500961259809, + 48.82692534074692 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10596", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cedrus libani", + "species:FR": "Cèdre du Liban" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536796072750302, + 48.81724757008628 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11122", + "ref:FR:issy_les_mx:ordre_arbre": "106", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618927050593824, + 48.814995834813175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27714", + "ref:FR:issy_les_mx:ordre_arbre": "695", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270948410872362, + 48.820606391858576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27546", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267290224008458, + 48.81989665920637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13584", + "ref:FR:issy_les_mx:ordre_arbre": "225", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2503896049659757, + 48.819076258546275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12523", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277593619840012, + 48.821273700802784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13015", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269316449874456, + 48.82087329382599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13045", + "ref:FR:issy_les_mx:ordre_arbre": "97", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631967188575546, + 48.827902591305794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27983", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704133861579963, + 48.82149519144674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13493", + "ref:FR:issy_les_mx:ordre_arbre": "129", + "species": "Populus alba 'Nivea'", + "species:FR": "Peuplier argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2449083700017733, + 48.81929204340126 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11848", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724201405876157, + 48.82087241027577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27539", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258937584518984, + 48.818046441855905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21336", + "ref:FR:issy_les_mx:ordre_arbre": "103", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2819065368344336, + 48.828395511290694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10405", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617881617223814, + 48.81508872562858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27647", + "ref:FR:issy_les_mx:ordre_arbre": "628", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264192389464872, + 48.82924799665908 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11073", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588625774952336, + 48.818587631242764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14595", + "ref:FR:issy_les_mx:ordre_arbre": "423", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254497176023749, + 48.81741660196924 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16307", + "ref:FR:issy_les_mx:ordre_arbre": "145", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257427007186669, + 48.8164731180666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30072", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261794878514889, + 48.82381094538789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14292", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260112302194371, + 48.81589257912906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27606", + "ref:FR:issy_les_mx:ordre_arbre": "587", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272173627306887, + 48.82339326309022 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10314", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265849604711606, + 48.82379534132844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27181", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665296743282908, + 48.829644661488786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12789", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259804296985657, + 48.81829626679577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29754", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263054430286953, + 48.81505566302936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15762", + "ref:FR:issy_les_mx:ordre_arbre": "164", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262978065385759, + 48.81992006616876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13397", + "ref:FR:issy_les_mx:ordre_arbre": "477", + "species": "Sophora japonica 'Pendula'", + "species:FR": "Sophora du Japon pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259493057837416, + 48.818859251201616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14211", + "ref:FR:issy_les_mx:ordre_arbre": "476", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264058280750649, + 48.81952628201867 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14063", + "ref:FR:issy_les_mx:ordre_arbre": "357", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784042301790994, + 48.82382053603768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27876", + "ref:FR:issy_les_mx:ordre_arbre": "38e", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661240819414314, + 48.820108500856335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21824", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654877744054502, + 48.81434900334509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12143", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618488648983286, + 48.82749692894826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28076", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262796051318855, + 48.81538672043726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16294", + "ref:FR:issy_les_mx:ordre_arbre": "147", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271961094257358, + 48.81613447313307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10774", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268339262843025, + 48.81621733528374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21608", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2860560225315503, + 48.827826236203805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22056", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774646220275763, + 48.82920057621558 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12158", + "ref:FR:issy_les_mx:ordre_arbre": "147", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28564474566302, + 48.82854970795811 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29857", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733912909494443, + 48.825108098206805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10137", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270664773019207, + 48.815102531530584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10808", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777590480422387, + 48.82411930968744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13363", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Tilia sp.", + "species:FR": "Tilleul indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693422780217185, + 48.822528968979675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11116", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.241021161334862, + 48.821367036481384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9730", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612622952208086, + 48.81633900036668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15896", + "ref:FR:issy_les_mx:ordre_arbre": "301", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2520520387709775, + 48.81948985637084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13457", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262211754858054, + 48.82962486521795 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28989", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2797206435040187, + 48.82249799278451 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11578", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669248288335564, + 48.82100134696462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16387", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272896342076381, + 48.82286563664782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10913", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802893588258826, + 48.82577445744732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11139", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258706295352998, + 48.818859663839305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21898", + "ref:FR:issy_les_mx:ordre_arbre": "656", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259328749635663, + 48.81764180373238 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27086", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270181278414704, + 48.81704125456252 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20564", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600601783344283, + 48.81825009388266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29727", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258100533684192, + 48.81873083514419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13944", + "ref:FR:issy_les_mx:ordre_arbre": "678", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253520425266327, + 48.81789088010508 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12586", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262144699976806, + 48.81563653437713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16071", + "ref:FR:issy_les_mx:ordre_arbre": "325", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770341309471154, + 48.82169650138742 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12177", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279998174560033, + 48.823727489948865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11956", + "ref:FR:issy_les_mx:ordre_arbre": "152", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268564976265857, + 48.8164010338661 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20775", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Prunus cerasus 'Anglaise Hative'", + "species:FR": "Cerisier 'Anglaise Hative'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256563543305822, + 48.817582812150455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29978", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668847655944613, + 48.83119626674498 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10177", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270706015609119, + 48.82055718257809 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11264", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Zelkova carpinifolia", + "species:FR": "Orme du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2834151492236137, + 48.828357644729145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11375", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer ginnala", + "species:FR": "Erable du fleuve Amour" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800992003334164, + 48.82585654446107 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12744", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261841280594355, + 48.81542694558914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15564", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635232080897336, + 48.81579019484613 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11464", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617535444954764, + 48.816512544995255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14257", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Sorbus intermedia 'Brouwers'", + "species:FR": "Alisier de Suède 'Brouwers'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792992619724277, + 48.822804402129584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14004", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265144128315792, + 48.82573871408854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9511", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263860547755047, + 48.8296075089893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26092", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627915893347588, + 48.81473630706398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15976", + "ref:FR:issy_les_mx:ordre_arbre": "353", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26855987194865, + 48.81804343687249 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20437", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617356781920757, + 48.82627990556618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9414", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262581293330872, + 48.815359309505645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16296", + "ref:FR:issy_les_mx:ordre_arbre": "186", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656071882237017, + 48.81998275466886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26096", + "ref:FR:issy_les_mx:ordre_arbre": "374", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602522184116483, + 48.81599444677237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27586", + "ref:FR:issy_les_mx:ordre_arbre": "567", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259326289615902, + 48.8184060677485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29679", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.240485842463379, + 48.82148672945293 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9761", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2808314911002427, + 48.822821777649594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10294", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783537152045157, + 48.8302131984446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27792", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280184153584769, + 48.82587753500343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12745", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587191370639745, + 48.824848340994485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17119", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775712925918015, + 48.82215471346469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9868", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28296608205226, + 48.829610359977536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12321", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578146812588344, + 48.81629519876625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30006", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262430477525599, + 48.81440052093523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27724", + "ref:FR:issy_les_mx:ordre_arbre": "705", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2569218597332896, + 48.822482673984375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11196", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604956823693145, + 48.81643085783833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15975", + "ref:FR:issy_les_mx:ordre_arbre": "428", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770146640329614, + 48.82889815218544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13141", + "ref:FR:issy_les_mx:ordre_arbre": "104", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245865390930067, + 48.822301491976745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9625", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2493572932452524, + 48.81922267412012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10451", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243141370884225, + 48.82069783105948 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9978", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593460158906304, + 48.822758500488476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11284", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800704899616724, + 48.82343855306957 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25849", + "ref:FR:issy_les_mx:ordre_arbre": "224", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606788551245103, + 48.81629444579546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16083", + "ref:FR:issy_les_mx:ordre_arbre": "433", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581159095425694, + 48.81555930781543 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11893", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254686611694477, + 48.823618618715926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10054", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611561092512877, + 48.82802220372761 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27970", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692317729068314, + 48.82075625807311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30792", + "ref:FR:issy_les_mx:ordre_arbre": "159", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652847482908034, + 48.82034000372669 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12254", + "ref:FR:issy_les_mx:ordre_arbre": "517", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266505948764091, + 48.81402388765447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12168", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685219805242003, + 48.82076403418766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13191", + "ref:FR:issy_les_mx:ordre_arbre": "587", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26441618388525, + 48.82015752870436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13272", + "ref:FR:issy_les_mx:ordre_arbre": "504", + "species": "Thuja plicata", + "species:FR": "Thuya géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263568966371133, + 48.817122765914654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12534", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278153348119095, + 48.82079922571329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27564", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25181734309818, + 48.81944588586026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13455", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251054662301762, + 48.820042694588864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22083", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Fagus sylvatica 'Pendula'", + "species:FR": "Hêtre pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246042946261958, + 48.81964698814509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30560", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260261151359055, + 48.81595996550881 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27617", + "ref:FR:issy_les_mx:ordre_arbre": "598", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2828228271536175, + 48.82955746168583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26275", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253373731912435, + 48.82171604383742 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12575", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272325954138056, + 48.82621934398335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11576", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277212653246224, + 48.82924841875935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12080", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800950122241352, + 48.82329953940583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22084", + "ref:FR:issy_les_mx:ordre_arbre": "119", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649938368892535, + 48.814502095086766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12409", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485011137114603, + 48.81965229313821 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11440", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625918224454065, + 48.815852338950954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14763", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663704194542693, + 48.82574169381073 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11275", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254770061796814, + 48.82348430342494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10020", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575854008909984, + 48.817858895716576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12451", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595107655915303, + 48.81867473017471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16954", + "ref:FR:issy_les_mx:ordre_arbre": "297", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267864196135613, + 48.82011817351188 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13672", + "ref:FR:issy_les_mx:ordre_arbre": "185", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261183378552233, + 48.82742507955158 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10233", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26492977120956, + 48.81961160361265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13478", + "ref:FR:issy_les_mx:ordre_arbre": "274", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266305421896968, + 48.82025985934453 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14192", + "ref:FR:issy_les_mx:ordre_arbre": "386", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591963771143564, + 48.817574338570054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27088", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651482463914507, + 48.81441575797552 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28781", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269739175193477, + 48.816665271786626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20713", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607704581768764, + 48.81617515175393 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15923", + "ref:FR:issy_les_mx:ordre_arbre": "265", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596931955437483, + 48.81879866544995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14185", + "ref:FR:issy_les_mx:ordre_arbre": "372", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2412344517853264, + 48.821932265802225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10561", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263616981526211, + 48.82013120430896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14783", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544410625535627, + 48.81742222655103 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12515", + "ref:FR:issy_les_mx:ordre_arbre": "144", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270315883095072, + 48.81660763432531 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_348", + "ref:FR:issy_les_mx:ordre_arbre": "7" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257700535885304, + 48.81846627244565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12246", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803896842158817, + 48.82354713306204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27883", + "ref:FR:issy_les_mx:ordre_arbre": "159d", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635910883419466, + 48.819683487724284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12253", + "ref:FR:issy_les_mx:ordre_arbre": "335", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258456651535818, + 48.8156262750074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12970", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608844126795526, + 48.82330204772789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12747", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642665052239677, + 48.82018887911319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15182", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2483655002049363, + 48.81967483698178 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10217", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278823859083229, + 48.82951002867216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15095", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274174315244562, + 48.82373392129281 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9644", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670589208341854, + 48.81742543194285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28254", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634979824060624, + 48.82793511686847 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27987", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825684129092787, + 48.82883615890243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10807", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259213691503979, + 48.82274719896718 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11285", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803253088591062, + 48.823872152532495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8674", + "ref:FR:issy_les_mx:ordre_arbre": "127", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605988679045113, + 48.82619023334147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11386", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261872439581364, + 48.829968258469144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28968", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687721287109546, + 48.818184029281966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20676", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801434928104283, + 48.831443847562724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9876", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658254293817532, + 48.820162612854574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12881", + "ref:FR:issy_les_mx:ordre_arbre": "391", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259224961555609, + 48.817244742361865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29613", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645931438560134, + 48.82002185262888 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20929", + "ref:FR:issy_les_mx:ordre_arbre": "425", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267623247766954, + 48.83317608692168 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28320", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265674237756463, + 48.82740535332231 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12782", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700218137951524, + 48.817188593252304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20435", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270531351977011, + 48.82152610026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14157", + "ref:FR:issy_les_mx:ordre_arbre": "133", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641960731895177, + 48.82637235405223 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11104", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251039130830562, + 48.822756482126664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15110", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625203960701796, + 48.81590166140288 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15205", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596833387047672, + 48.81673462897897 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30040", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2470057093227807, + 48.81986778683189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10417", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2516036304511147, + 48.81880556686919 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22352", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784616371428306, + 48.82744283827577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10321", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677080547872555, + 48.823909826194836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14541", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696530345046546, + 48.821033876753845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13410", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2465064296521553, + 48.81978952317423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16528", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26445596795896, + 48.82088632086749 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11267", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257368066065184, + 48.81620347457617 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29994", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656862635461072, + 48.82750121027038 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9349", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598367291372776, + 48.82305551315139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11341", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271334879649345, + 48.82252430846411 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22031", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261025740931364, + 48.81637050043946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28391", + "ref:FR:issy_les_mx:ordre_arbre": "534", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643330820550625, + 48.81999353850121 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13479", + "ref:FR:issy_les_mx:ordre_arbre": "420", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775028081962017, + 48.828906954274565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12818", + "ref:FR:issy_les_mx:ordre_arbre": "87", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2491338657582274, + 48.819316349363255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13532", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28299610015816, + 48.82953926263859 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27887", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598203830871766, + 48.818266416813934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29761", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2509734953538234, + 48.820056900785694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10083", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627750563588327, + 48.82809992341333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27978", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2564599580348057, + 48.82396320410225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16768", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774082407481133, + 48.82829220004839 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9671", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246431518696705, + 48.82243435401768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8354", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578804540170587, + 48.824857025623665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16635", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257387931776407, + 48.8162238342927 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29993", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594714493617367, + 48.81884697018267 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13744", + "ref:FR:issy_les_mx:ordre_arbre": "326", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258855805895049, + 48.81859424291781 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14465", + "ref:FR:issy_les_mx:ordre_arbre": "425", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2798170294018485, + 48.82253121493035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11700", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664579894955352, + 48.82874857730989 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12733", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255825130881891, + 48.81706519677727 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15185", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261710138377703, + 48.81501923790724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16553", + "ref:FR:issy_les_mx:ordre_arbre": "378", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2757404137897823, + 48.821684711988176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12437", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259762433194372, + 48.82461958523257 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29457", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250013906463238, + 48.81912744290571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10831", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630491129002976, + 48.81996156847081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27908", + "ref:FR:issy_les_mx:ordre_arbre": "476a", + "species": "Sophora japonica 'Pendula'", + "species:FR": "Sophora du Japon pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704935626534124, + 48.817457931000874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27089", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773715197874003, + 48.82949501458415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11988", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674688791946345, + 48.81700951969604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20258", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus communis 'Williams'", + "species:FR": "Poirier 'Williams'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265523963590938, + 48.82006557222856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13117", + "ref:FR:issy_les_mx:ordre_arbre": "394", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485467693546743, + 48.81873495887554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26293", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262053701587649, + 48.815468109478395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16437", + "ref:FR:issy_les_mx:ordre_arbre": "118", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255163645004332, + 48.81747436843335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12542", + "ref:FR:issy_les_mx:ordre_arbre": "203", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254743920128019, + 48.817334857531314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12393", + "ref:FR:issy_les_mx:ordre_arbre": "180", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2451640220373275, + 48.82173298740296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11666", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691097616635245, + 48.822242338302395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11713", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fagus sylvatica 'Purpurea'", + "species:FR": "Hêtre pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782123410126767, + 48.82211213265701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11551", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268546837129435, + 48.8164703457409 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20226", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Prunus cerasus 'Géant d'Hedelfingen'", + "species:FR": "Cerisier 'Géant d'Hedelfingen'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262677094880538, + 48.82942370176018 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8449", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus serrulata 'Taihaku'", + "species:FR": "Cerisier des collines 'Taihaku'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596573919746414, + 48.81881070590423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27924", + "ref:FR:issy_les_mx:ordre_arbre": "366b", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597244682145106, + 48.82304709666226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12214", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257194559406315, + 48.81766588214862 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29945", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252126656565754, + 48.82147762708102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27995", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686173349116054, + 48.8223947321961 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13447", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613836493371844, + 48.824503089930005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11859", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271875647947008, + 48.82571854439842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26065", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603473973372523, + 48.816454316288755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21568", + "ref:FR:issy_les_mx:ordre_arbre": "421", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590688358372626, + 48.81890517079731 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13483", + "ref:FR:issy_les_mx:ordre_arbre": "517", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259186343966277, + 48.818998740317845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13729", + "ref:FR:issy_les_mx:ordre_arbre": "524", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618187575742437, + 48.824602531825036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10359", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269741636360095, + 48.81707012926915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20776", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784320032040863, + 48.8267681528998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14009", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2447412054302616, + 48.820858583865316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10358", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270706529460289, + 48.81761912843503 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9397", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2516882745495512, + 48.81985754942748 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12066", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659285011790886, + 48.827273663019085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16496", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268024499571705, + 48.81797626016471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27809", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598578642896796, + 48.817355882636804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28541", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261556525751271, + 48.82382059743937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10898", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2824822176091666, + 48.83008722702388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29472", + "ref:FR:issy_les_mx:ordre_arbre": "7a", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2722666044761124, + 48.82152828148789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10875", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609003197601028, + 48.8238681658845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16320", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261399385571208, + 48.81562320880843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15831", + "ref:FR:issy_les_mx:ordre_arbre": "96", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786648593608283, + 48.82221195132065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11393", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675725473643404, + 48.820541452254474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_2514", + "ref:FR:issy_les_mx:ordre_arbre": "608", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490267443508616, + 48.81847624486458 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12632", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267287365085119, + 48.820668049154975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13594", + "ref:FR:issy_les_mx:ordre_arbre": "564", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285990426228442, + 48.828032885645946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11448", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577182926506576, + 48.822621153779764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11424", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267954616897941, + 48.82020803369393 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13526", + "ref:FR:issy_les_mx:ordre_arbre": "181", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632408167007427, + 48.81997376881633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12102", + "ref:FR:issy_les_mx:ordre_arbre": "473", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561909975497825, + 48.823045212136456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16306", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682679113455526, + 48.83263083403011 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10328", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270271094067956, + 48.82616232183701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21753", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593663289375656, + 48.818938025694905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16958", + "ref:FR:issy_les_mx:ordre_arbre": "498", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800078758786455, + 48.83156246153412 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30724", + "ref:FR:issy_les_mx:ordre_arbre": "3a", + "species": "Acer davidii", + "species:FR": "Erable du Père David" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717173586474924, + 48.82286668846834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10074", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542223387375144, + 48.822001543910474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16181", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608070208163604, + 48.817264237529464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28577", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258927940477252, + 48.818588052765186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14656", + "ref:FR:issy_les_mx:ordre_arbre": "418", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665477336748574, + 48.82343776356945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10106", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260393529618191, + 48.81883269404208 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14577", + "ref:FR:issy_les_mx:ordre_arbre": "235", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2462947596905787, + 48.82327986631472 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10197", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668764657939042, + 48.81811681244289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28318", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2751877438714208, + 48.82149922637732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11339", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514170883415563, + 48.81917780014836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9943", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253529642616609, + 48.8201525623831 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26715", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Quercus robur 'Fastigiata Koster'", + "species:FR": "Chêne pédonculé fastigié 'Koster'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261845019327967, + 48.816139810486106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16018", + "ref:FR:issy_les_mx:ordre_arbre": "449", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267353610623286, + 48.82538057197829 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25830", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261864209343332, + 48.81499817709679 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27708", + "ref:FR:issy_les_mx:ordre_arbre": "689", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277988913292149, + 48.82903875173857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12026", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25881632470903, + 48.816602980560646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29514", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666688120173593, + 48.82039258063934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14347", + "ref:FR:issy_les_mx:ordre_arbre": "539", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2516226381909794, + 48.81998134380466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12816", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260186675434526, + 48.81592029108399 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27614", + "ref:FR:issy_les_mx:ordre_arbre": "595", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792470564832352, + 48.827063410939594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10122", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276980716072512, + 48.82683146157261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28787", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2564724235299827, + 48.82053232247141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13312", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588014225196793, + 48.82399657711466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17035", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248669057004948, + 48.81973125492059 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28777", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649052819258917, + 48.81949242370033 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14325", + "ref:FR:issy_les_mx:ordre_arbre": "299", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653600486937475, + 48.825866037557574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9386", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25874616730682, + 48.816923878247486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28497", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277313052778652, + 48.82765909432139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9471", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256388496398007, + 48.81757614686768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29973", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278913992673444, + 48.82291493187834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13116", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536560537121293, + 48.82030386965075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21904", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643930896951754, + 48.8240551446963 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9915", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588998876525177, + 48.81878132087775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14435", + "ref:FR:issy_les_mx:ordre_arbre": "622", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2486130127876316, + 48.81902122616559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12016", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666317171083805, + 48.8322089737207 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11928", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257200689384557, + 48.81764667333578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29946", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264516826304844, + 48.819967847034846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14682", + "ref:FR:issy_les_mx:ordre_arbre": "424", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646332191708693, + 48.81943798295614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13590", + "ref:FR:issy_les_mx:ordre_arbre": "308", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590745373211205, + 48.822737756257396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11286", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537264041184226, + 48.82029884069104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22087", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620785004399977, + 48.81544304102376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16439", + "ref:FR:issy_les_mx:ordre_arbre": "135", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690024466842886, + 48.81696676277873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20325", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593974244989368, + 48.81713137665543 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29640", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273429776462007, + 48.825684303814704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16284", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617521022413145, + 48.81512510804698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27628", + "ref:FR:issy_les_mx:ordre_arbre": "609", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253222302772445, + 48.817918394303476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11740", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603157984044424, + 48.82380126289379 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21808", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261865750269325, + 48.815023999113734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27689", + "ref:FR:issy_les_mx:ordre_arbre": "670", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641466925927385, + 48.82915075332877 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10872", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260822099411601, + 48.8163157273531 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28410", + "ref:FR:issy_les_mx:ordre_arbre": "553", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656814167745787, + 48.825968324881735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30585", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25469700764696, + 48.8178670103189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14499", + "ref:FR:issy_les_mx:ordre_arbre": "223", + "species": "Prunus domestica 'Reine-Claude'", + "species:FR": "Prunier 'Reine-Claude'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2525363910674567, + 48.821902182098945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28003", + "ref:FR:issy_les_mx:ordre_arbre": "29b", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719663039670674, + 48.82574429189263 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14889", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602260132293996, + 48.81773848198968 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28591", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254640627521398, + 48.81803315439179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12605", + "ref:FR:issy_les_mx:ordre_arbre": "262", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262299763526966, + 48.81443748848729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27726", + "ref:FR:issy_les_mx:ordre_arbre": "707", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265001488994838, + 48.82986291863763 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28738", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277791424718602, + 48.829258699395396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12174", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698283114461515, + 48.81737502249434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20384", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2563205463391847, + 48.820549240207235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12189", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616709293470745, + 48.81504463098306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16152", + "ref:FR:issy_les_mx:ordre_arbre": "379", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263193647775611, + 48.81956466827184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11069", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279095482196288, + 48.82326347161203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12828", + "ref:FR:issy_les_mx:ordre_arbre": "207", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608066080061615, + 48.82361585523583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10413", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267376905705434, + 48.81994275439874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13608", + "ref:FR:issy_les_mx:ordre_arbre": "224", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578005814620936, + 48.818341039772704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13917", + "ref:FR:issy_les_mx:ordre_arbre": "163", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2443583687837467, + 48.821631914730254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10392", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488222585488287, + 48.81988328357917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9940", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644292539131934, + 48.82734967746131 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16545", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264017488292091, + 48.82371395477816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11726", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254840457942182, + 48.820133577454804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21748", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262473486975752, + 48.82925377793658 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8490", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787569956709883, + 48.82214873392544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26014", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2768649049028, + 48.82895643519903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12554", + "ref:FR:issy_les_mx:ordre_arbre": "121", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259204604139566, + 48.817903805810786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29485", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2563409906820726, + 48.82309020904762 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22057", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2442424350786916, + 48.82192166908664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9502", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259760947513895, + 48.81871163768736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13205", + "ref:FR:issy_les_mx:ordre_arbre": "219", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826676294779293, + 48.829694601813905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12054", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694959294506933, + 48.81430616232013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9922", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263674119178799, + 48.82927836094498 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10488", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710393506093753, + 48.82522384798533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29536", + "ref:FR:issy_les_mx:ordre_arbre": "19a", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261002604087607, + 48.82783877055454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27961", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267321002239186, + 48.82322247056585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27028", + "ref:FR:issy_les_mx:ordre_arbre": "28b", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269628083285361, + 48.81707203275857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20286", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Prunus domestica 'Reine-Claude de Bavay'", + "species:FR": "Prunier 'Reine-Claude de Bavay'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579048270680855, + 48.818614292478976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11470", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261352240653616, + 48.82377223619207 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12806", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264520225828723, + 48.82600290296231 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9897", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581179539041014, + 48.8178852965017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12324", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259442263155492, + 48.8184902703223 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29682", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277043154002618, + 48.82209439193159 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11752", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610845338945373, + 48.81627746420876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15872", + "ref:FR:issy_les_mx:ordre_arbre": "298", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574285712671025, + 48.81691778583273 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30084", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261432337570418, + 48.81630049895761 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15960", + "ref:FR:issy_les_mx:ordre_arbre": "218", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243958150047704, + 48.821854425434935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9597", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637918584464862, + 48.82708669027101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9487", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267005417624922, + 48.828480835828806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28053", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544083944766027, + 48.82025686254544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22094", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266744905931843, + 48.818232835714646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30041", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627107507490507, + 48.819537363524766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11085", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541796527437707, + 48.817153693621655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12657", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616740189340656, + 48.82772693487555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10971", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596751090179485, + 48.818999731959835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16787", + "ref:FR:issy_les_mx:ordre_arbre": "216", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597135266854185, + 48.818207973773205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29780", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255009974118547, + 48.81784367630221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28743", + "ref:FR:issy_les_mx:ordre_arbre": "214", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2855723373408705, + 48.82917128441809 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29859", + "ref:FR:issy_les_mx:ordre_arbre": "0b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258810596369617, + 48.82508598543667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16769", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2830928156890575, + 48.827237228011796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12388", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642781787430803, + 48.82024956958335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27816", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2487597191990742, + 48.819473392090174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16160", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259432970551282, + 48.825311853175194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16910", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616864718521437, + 48.82472956735128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11037", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280067931542641, + 48.82392105236721 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12156", + "ref:FR:issy_les_mx:ordre_arbre": "123", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270471121030312, + 48.81661565848505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1739", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260618688219511, + 48.817253317698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28573", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772852570709414, + 48.82870962954874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13192", + "ref:FR:issy_les_mx:ordre_arbre": "97", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273981275585927, + 48.821511968671324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11421", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628747632213337, + 48.819557915318974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11086", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689235531412844, + 48.81763580511597 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20782", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780827593104522, + 48.829038306781555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21805", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254684550354767, + 48.8172517219044 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12460", + "ref:FR:issy_les_mx:ordre_arbre": "183", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699521052975946, + 48.82103835719928 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13232", + "ref:FR:issy_les_mx:ordre_arbre": "107", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267056188414045, + 48.817915826083365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20511", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus communis 'Henri Desportes'", + "species:FR": "Poirier 'Henri Desportes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279191027146448, + 48.82247132138754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14692", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707695394781564, + 48.82552349209338 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26753", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2819237889416426, + 48.82660460600633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15143", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253547376444445, + 48.819832117241106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26652", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus ornus 'Obelisk'", + "species:FR": "Frêne à fleurs 'Obelisk'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826147735162223, + 48.82969422433738 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12213", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260226301345816, + 48.816256458366894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29450", + "ref:FR:issy_les_mx:ordre_arbre": "562a", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258690721546559, + 48.818890590705955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13300", + "ref:FR:issy_les_mx:ordre_arbre": "659", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613574797560028, + 48.815602930279915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15830", + "ref:FR:issy_les_mx:ordre_arbre": "95", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676884368026378, + 48.820521443286644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28282", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267334507525934, + 48.81773465125893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28243", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771043332597762, + 48.829086446833905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11944", + "ref:FR:issy_les_mx:ordre_arbre": "142", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560893538370963, + 48.824317701365175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27840", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613914696985113, + 48.82461145900446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21556", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594909428745105, + 48.81866138185607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12915", + "ref:FR:issy_les_mx:ordre_arbre": "303", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539553998086745, + 48.81803265435527 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12763", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261208175711427, + 48.81944695692872 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11058", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616897837642207, + 48.82378621973681 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11181", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476917580917806, + 48.82016081974076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11078", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27925137076561, + 48.82225237979454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10617", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26130174762503, + 48.81528307212463 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15752", + "ref:FR:issy_les_mx:ordre_arbre": "384", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616923050633075, + 48.82751337308856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30711", + "ref:FR:issy_les_mx:ordre_arbre": "25a", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689888451971347, + 48.82072973084441 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16336", + "ref:FR:issy_les_mx:ordre_arbre": "167", + "species": "Prunus hillieri 'Spire'", + "species:FR": "Cerisier à fleurs 'Spire'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260536610964599, + 48.81585036095996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16257", + "ref:FR:issy_les_mx:ordre_arbre": "398", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664345565726927, + 48.82441671709265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27185", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260327927580336, + 48.81561084721474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16117", + "ref:FR:issy_les_mx:ordre_arbre": "476", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690447068614334, + 48.82633808311392 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27014", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692338973731205, + 48.82072111050571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12864", + "ref:FR:issy_les_mx:ordre_arbre": "160", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665344643018375, + 48.8204365330038 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13189", + "ref:FR:issy_les_mx:ordre_arbre": "532", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577624301770576, + 48.81708564603805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15121", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268078249123505, + 48.82124910428838 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10978", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614660323308984, + 48.824560314086625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12244", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271497487413041, + 48.825843445774034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28786", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260220318603587, + 48.815688393850365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16119", + "ref:FR:issy_les_mx:ordre_arbre": "479", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246740866084421, + 48.81986377226899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11401", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2857204983176933, + 48.82892013748687 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21588", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247421145522748, + 48.82015424579623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13678", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669258210437793, + 48.81742402285723 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28252", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712887536506656, + 48.82167060288996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11733", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264315279249515, + 48.82317313808064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12646", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637542674617843, + 48.82062255624636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28228", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717492407075435, + 48.82071017529626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11142", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266426046942462, + 48.8140349093841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14542", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684449298864866, + 48.83247824569191 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10344", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772176727350306, + 48.82817142690716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9659", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2457813877055264, + 48.821141260852635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28315", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Salix fragilis", + "species:FR": "Saule cassant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26479160574961, + 48.82251571194315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30596", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577319413657935, + 48.822550981325435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11300", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26684709815156, + 48.81741777035481 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20735", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263756447890318, + 48.820118974802156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14782", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618979516117936, + 48.815058105020064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27703", + "ref:FR:issy_les_mx:ordre_arbre": "684", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672633011353267, + 48.817725061620465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20251", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pyrus communis 'Doyenné Defays'", + "species:FR": "Poirier 'Doyenné Defays'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613478531390645, + 48.81592648466576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27777", + "ref:FR:issy_les_mx:ordre_arbre": "758", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600046720984746, + 48.81858148753914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29706", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660185432883697, + 48.83082208939526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11784", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595205811450443, + 48.8172120019389 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29652", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265000251564043, + 48.830107303507404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9893", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2492483920424413, + 48.81927159220863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10450", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268021435767304, + 48.81645809617407 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20539", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Prunus cerasus 'Géant d'Hedelfingen'", + "species:FR": "Cerisier 'Géant d'Hedelfingen'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2478533649356613, + 48.81838050265469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13111", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551704531272008, + 48.817474373091095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12541", + "ref:FR:issy_les_mx:ordre_arbre": "202", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745344725041376, + 48.82035886081367 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10481", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610493351246554, + 48.81499440014859 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27758", + "ref:FR:issy_les_mx:ordre_arbre": "739", + "species": "Thuja plicata", + "species:FR": "Thuya géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248577725980704, + 48.818821518189075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11809", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599917721809915, + 48.82434868127583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17038", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2517796655567848, + 48.81952853573432 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13427", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277958400722253, + 48.825866171103584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11171", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697680620923157, + 48.82090012790769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29543", + "ref:FR:issy_les_mx:ordre_arbre": "150a", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2583854812304716, + 48.815511658486365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11901", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647464079148505, + 48.82574212130594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26064", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278795474567682, + 48.828208992087184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12170", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275890208740358, + 48.82165380845999 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11280", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276976865773867, + 48.82929066379532 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12950", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248625275121148, + 48.818788864457076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12271", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767253111021524, + 48.82905519037661 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14516", + "ref:FR:issy_les_mx:ordre_arbre": "117", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661640919211905, + 48.82849035945571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12410", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488128142536516, + 48.82059006430443 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9949", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707599771646807, + 48.82166129058056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9961", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265845755056693, + 48.823643178965305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9888", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260569937409239, + 48.81637788010312 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16081", + "ref:FR:issy_les_mx:ordre_arbre": "430", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261978765409674, + 48.822874007778715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29875", + "ref:FR:issy_les_mx:ordre_arbre": "0b", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724572731573294, + 48.81635822551753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9880", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265891168758514, + 48.82012484765021 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13349", + "ref:FR:issy_les_mx:ordre_arbre": "380", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548131264157165, + 48.817643716508876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13124", + "ref:FR:issy_les_mx:ordre_arbre": "206", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675010961887034, + 48.82039346207958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28287", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599323073158, + 48.81876235954512 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14204", + "ref:FR:issy_les_mx:ordre_arbre": "439", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279439718250483, + 48.82298217103884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14218", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272796951636672, + 48.82554143791073 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16384", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257640323517691, + 48.817810476561554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12331", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2525090598013953, + 48.82189283922925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10834", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Cornus officinalis", + "species:FR": "Cornouiller officinale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277684918541367, + 48.82750209454876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9385", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675463941923106, + 48.81746939498246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20255", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Pyrus communis 'Conférence'", + "species:FR": "Poirier 'Conférence'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274844646553269, + 48.82149577174134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10090", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268204181033892, + 48.817022480673934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28237", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490602597000966, + 48.81855049043113 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11348", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692691588165186, + 48.82025893148894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10374", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260533094448856, + 48.81640466348869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16080", + "ref:FR:issy_les_mx:ordre_arbre": "429", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267837208034454, + 48.82010841802811 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13319", + "ref:FR:issy_les_mx:ordre_arbre": "186", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268011711794459, + 48.82116933147531 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11767", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265910588782663, + 48.8292097880466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14635", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245704805360563, + 48.82116700365807 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10551", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610872468141316, + 48.816582577165896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15997", + "ref:FR:issy_les_mx:ordre_arbre": "239", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577130451608736, + 48.81784103439998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12453", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2827984715263336, + 48.82960896405975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12322", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598670998683805, + 48.82442964971684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22016", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618952734052873, + 48.81497795281125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27711", + "ref:FR:issy_les_mx:ordre_arbre": "692", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261826060858617, + 48.81510514876437 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27635", + "ref:FR:issy_les_mx:ordre_arbre": "616", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280173275684102, + 48.83135907100433 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11202", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272650400180792, + 48.822758441953724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12047", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2506898621392675, + 48.82337130054181 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30618", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574161479493435, + 48.81780557799148 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12225", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Cupressocyparis x Leylandii", + "species:FR": "Cyprès de Leyland" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712504897272088, + 48.81743683478289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9396", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253406945822791, + 48.820129746589295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29460", + "ref:FR:issy_les_mx:ordre_arbre": "10" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254510261343953, + 48.817735491746966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13152", + "ref:FR:issy_les_mx:ordre_arbre": "234", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259975759302227, + 48.81856174143261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29707", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652714038862762, + 48.828046389389634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9220", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783883978562227, + 48.82680604221797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10693", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25646481011993, + 48.81761106827754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29974", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2728358546758414, + 48.82547938078304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22471", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692535543553363, + 48.820855992743375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14154", + "ref:FR:issy_les_mx:ordre_arbre": "96", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782493828549475, + 48.82171968740747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14491", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731261552682422, + 48.82497773513273 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9919", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701246841293354, + 48.82118738163757 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13115", + "ref:FR:issy_les_mx:ordre_arbre": "145", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2471123676249887, + 48.81900813752955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11651", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618222330630955, + 48.81755243498401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26495", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer japonicum", + "species:FR": "Erable du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546430555260857, + 48.82023841925307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22119", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245930870809691, + 48.82116601626327 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10381", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586482975885978, + 48.81669664399712 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29520", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616061441168696, + 48.81494019103066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27754", + "ref:FR:issy_les_mx:ordre_arbre": "735", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562099785067553, + 48.816431334061654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15620", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249794223936821, + 48.82340280506822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30616", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671990855865753, + 48.82039549958576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28285", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279416436143351, + 48.82301521517915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14228", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258878242706957, + 48.817315140957696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27066", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272153699946469, + 48.821543818833305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28727", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus ornus 'Lerce'", + "species:FR": "Frêne à fleurs 'Lerce'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2556155401034568, + 48.81679569358234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28783", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626308490191342, + 48.829376515683435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8453", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545084926850323, + 48.817734411340844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13151", + "ref:FR:issy_les_mx:ordre_arbre": "233", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595762668633377, + 48.819006829168366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13683", + "ref:FR:issy_les_mx:ordre_arbre": "513", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2568443416331343, + 48.820090575364716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11113", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266305698242936, + 48.82912743404748 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10672", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588305176491543, + 48.818941225372086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13451", + "ref:FR:issy_les_mx:ordre_arbre": "674", + "species": "Mespilus germanica", + "species:FR": "Néflier d'Allemagne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674774865398972, + 48.817058737507544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20459", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus communis 'Conférence'", + "species:FR": "Poirier 'Conférence'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272312189777162, + 48.824643884629864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10981", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767601180501735, + 48.82206120285877 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9993", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702925648405476, + 48.82046535712337 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11084", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273878359911203, + 48.82121677085402 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12798", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265164114762969, + 48.82797669256336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13829", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795293153500613, + 48.82393327158485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22472", + "ref:FR:issy_les_mx:ordre_arbre": "104", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267775422342975, + 48.8206806691903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13726", + "ref:FR:issy_les_mx:ordre_arbre": "574", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720238888611664, + 48.826658395153956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9911", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256784977097327, + 48.816762327852935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29952", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2511371895044183, + 48.81972166819333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10814", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273216410338034, + 48.82115182382971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10861", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599271988063117, + 48.81678901179135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28560", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558258444177737, + 48.821106773391605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11967", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591038874331546, + 48.81891088246182 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16956", + "ref:FR:issy_les_mx:ordre_arbre": "516", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2459887605156257, + 48.81875730958869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10319", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260934269256731, + 48.82648042723054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11512", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269257747406269, + 48.82093160898281 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14526", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279661984659572, + 48.82165412586791 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12792", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257363805724927, + 48.81816524637114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12075", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654806645213528, + 48.82729399075676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12784", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.241840878159652, + 48.821440575579686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9099", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651440859134815, + 48.820050260680055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11608", + "ref:FR:issy_les_mx:ordre_arbre": "445", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628381009837493, + 48.81541495805123 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16616", + "ref:FR:issy_les_mx:ordre_arbre": "146", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2758001995666555, + 48.82162854261589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10903", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247490786641164, + 48.81993311121593 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11029", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695182576863395, + 48.82262119182406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28372", + "ref:FR:issy_les_mx:ordre_arbre": "1c", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805857300573775, + 48.83121756676831 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30718", + "ref:FR:issy_les_mx:ordre_arbre": "7b", + "species": "Acer davidii", + "species:FR": "Erable du Père David" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267313522311598, + 48.81779293872213 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20358", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus communis 'Doyenné Defays'", + "species:FR": "Poirier 'Doyenné Defays'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26337143921624, + 48.81492769795566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15838", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776441452523106, + 48.829166977684416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11936", + "ref:FR:issy_les_mx:ordre_arbre": "149", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268646815057941, + 48.818009222948554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20784", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254347124574487, + 48.82203109204566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30672", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263309600434778, + 48.82795383223709 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27984", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269476206558185, + 48.81768815813358 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20781", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259878907994475, + 48.81750036031631 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28548", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263085348982303, + 48.81971182728648 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12032", + "ref:FR:issy_les_mx:ordre_arbre": "345", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278616095755822, + 48.82890061681621 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9546", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2766669679392693, + 48.828163774877126 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9604", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278514502982072, + 48.82574824876221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12395", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605618571167883, + 48.817026770730614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28566", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264710529850807, + 48.820023006607215 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12836", + "ref:FR:issy_les_mx:ordre_arbre": "436", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277738806640727, + 48.82398030035739 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13274", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276295338371, + 48.82304034915394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9722", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2564053156724673, + 48.82059131121367 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13311", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267432898253863, + 48.820023633129175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13606", + "ref:FR:issy_les_mx:ordre_arbre": "222", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682751836017743, + 48.81697057105582 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28236", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268720756479931, + 48.81748930424896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20422", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24815599864865, + 48.82384561902233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27990", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257671746031068, + 48.81786802124559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12452", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259568868077447, + 48.81871494562671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13184", + "ref:FR:issy_les_mx:ordre_arbre": "275", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254760632003058, + 48.82205466463482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12598", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590676799261358, + 48.81841949615537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12900", + "ref:FR:issy_les_mx:ordre_arbre": "187", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267271570895242, + 48.819894398909526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13585", + "ref:FR:issy_les_mx:ordre_arbre": "226", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2810012206844466, + 48.8307217684325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16293", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26170676177262, + 48.815124468181295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27654", + "ref:FR:issy_les_mx:ordre_arbre": "635", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672096526130856, + 48.81789129294276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28240", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2448534482347022, + 48.819354701229486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11211", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268448701709172, + 48.820779908599285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12332", + "ref:FR:issy_les_mx:ordre_arbre": "585", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650257377731915, + 48.82668543635503 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11681", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667941071261075, + 48.83136982913605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11295", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25366043937524, + 48.817551868382374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13781", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279838913388566, + 48.823397259519794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12989", + "ref:FR:issy_les_mx:ordre_arbre": "220", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253746104171824, + 48.823172596806344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26033", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254401350164005, + 48.817469959393165 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28235", + "ref:FR:issy_les_mx:ordre_arbre": "125", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597425860220275, + 48.81834981185079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29753", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585514113831717, + 48.818797868453615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21895", + "ref:FR:issy_les_mx:ordre_arbre": "634", + "species": "Crataegus sp.", + "species:FR": "Aubépine non identifée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600168326874517, + 48.81861008601243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29705", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268285491485485, + 48.82252004024148 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14411", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726376384849303, + 48.82487338310285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28011", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25367639222953, + 48.823133435819024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12780", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589148185805876, + 48.818453156781295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14444", + "ref:FR:issy_les_mx:ordre_arbre": "539", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612034396019314, + 48.826897937190694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9359", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266325140448471, + 48.82890581607649 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10645", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25605428437786, + 48.82359698689116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28017", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260231025262992, + 48.815981184493225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27587", + "ref:FR:issy_les_mx:ordre_arbre": "568", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268998360162442, + 48.82055152911606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15754", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773623294798475, + 48.82914634142909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13071", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610110148841205, + 48.8154622579623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16256", + "ref:FR:issy_les_mx:ordre_arbre": "387", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259404543821488, + 48.81847794161559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29681", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258824858614398, + 48.81887265965636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13388", + "ref:FR:issy_les_mx:ordre_arbre": "670", + "species": "Mespilus germanica", + "species:FR": "Néflier d'Allemagne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260780790528184, + 48.817154188887365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28568", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279678313950473, + 48.823657344492645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12549", + "ref:FR:issy_les_mx:ordre_arbre": "93", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664060182921677, + 48.82913063730401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10643", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617738086006582, + 48.81511175128904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27630", + "ref:FR:issy_les_mx:ordre_arbre": "611", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257579299603448, + 48.81723566698115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30089", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613981632971725, + 48.816324957092796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16045", + "ref:FR:issy_les_mx:ordre_arbre": "219", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2741046935726312, + 48.81903805791841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10514", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611212044959963, + 48.816553437363815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15893", + "ref:FR:issy_les_mx:ordre_arbre": "238", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653114596948134, + 48.814347674852264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12776", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259399658068813, + 48.81860881180879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13996", + "ref:FR:issy_les_mx:ordre_arbre": "444", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714517264570473, + 48.822278757908826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12559", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261775962096744, + 48.82551342712295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9434", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597771035620995, + 48.818889769688774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14242", + "ref:FR:issy_les_mx:ordre_arbre": "481", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278416333415814, + 48.825798913602284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12795", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2475817782254452, + 48.8199772153671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10399", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251358997168502, + 48.81949210773311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13646", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615652809012734, + 48.81594657886712 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16567", + "ref:FR:issy_les_mx:ordre_arbre": "453", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26804506089981, + 48.82014894400649 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27898", + "ref:FR:issy_les_mx:ordre_arbre": "181b", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267577029097221, + 48.82049216012729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28283", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538326117775735, + 48.817279156901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11053", + "ref:FR:issy_les_mx:ordre_arbre": "108", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602569812731086, + 48.815663926258104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16118", + "ref:FR:issy_les_mx:ordre_arbre": "478", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254312852564755, + 48.82026172843237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22093", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641654625650878, + 48.8241962039246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10210", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247856815383073, + 48.8193519897238 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9900", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265225263042066, + 48.8203219812778 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13582", + "ref:FR:issy_les_mx:ordre_arbre": "516", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28559534092257, + 48.82911296241088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29858", + "ref:FR:issy_les_mx:ordre_arbre": "0a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268729063089333, + 48.81802804138015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20256", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617975574381606, + 48.81510803061865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27632", + "ref:FR:issy_les_mx:ordre_arbre": "613", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783846416628166, + 48.82381516537938 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13746", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629317754451446, + 48.81507407257603 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16225", + "ref:FR:issy_les_mx:ordre_arbre": "177", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640908938386124, + 48.82064594496984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27817", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2518258555502206, + 48.81975309255121 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30687", + "ref:FR:issy_les_mx:ordre_arbre": "50a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272146699849589, + 48.8262625416058 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11602", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656138771798267, + 48.82909722403239 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13787", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255599675678446, + 48.81698372721023 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15186", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus x moerlandsii 'Profusion'", + "species:FR": "Pommier d'ornement 'Profusion'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259479395465801, + 48.82276877950524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9910", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269774894021768, + 48.82036097482228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12231", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246613365043146, + 48.81949176964353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11273", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606432770273215, + 48.81611099398702 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21539", + "ref:FR:issy_les_mx:ordre_arbre": "268", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790179517479507, + 48.82718329335312 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27559", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800159604161245, + 48.8314532585921 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11363", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27293468543494, + 48.82295885441871 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12592", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662694352531774, + 48.82930502757462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10631", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607133098013477, + 48.81626646758974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26154", + "ref:FR:issy_les_mx:ordre_arbre": "434", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640731353990398, + 48.829447195244256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10712", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245210191101966, + 48.82164595486883 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11667", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620761881637867, + 48.82899385343922 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8399", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer buergerianum", + "species:FR": "Erable à écorce de dragon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251717933731849, + 48.81941465641973 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13429", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778761219061456, + 48.82590398851539 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16164", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659177418186305, + 48.820272932845384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13612", + "ref:FR:issy_les_mx:ordre_arbre": "528", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278914410573958, + 48.823146788876464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13263", + "ref:FR:issy_les_mx:ordre_arbre": "201", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2510524028188126, + 48.81910634606801 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13026", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617650812377335, + 48.81507410286671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27667", + "ref:FR:issy_les_mx:ordre_arbre": "648", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2744888506703815, + 48.82036782684571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22037", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699765099171882, + 48.82519444922588 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26785", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266032705418111, + 48.82358818500008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9891", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662778762034312, + 48.82943336672057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10673", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686538467664135, + 48.82129453480074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11368", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683969980952945, + 48.81627526851632 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20699", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Prunus cerasus 'Bigarreau Napoléon'", + "species:FR": "Cerisier 'Bigarreau Napoléon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631269188449736, + 48.82720381215362 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10228", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264178995085813, + 48.82010795323966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12694", + "ref:FR:issy_les_mx:ordre_arbre": "499", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653897221352906, + 48.81982483414115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30790", + "ref:FR:issy_les_mx:ordre_arbre": "366", + "species": "Halesia sp.", + "species:FR": "Halesia indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637846755239504, + 48.8205524403953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14827", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575660747988344, + 48.81596128236698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14903", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2463566583338106, + 48.82330117633668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10099", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600114238626623, + 48.82359980019344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20812", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247585209737047, + 48.819225808350936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10179", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250904114141467, + 48.820331663971885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13617", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268530714174471, + 48.81765090516352 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28262", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278814156558104, + 48.82248365201699 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14550", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250962339346821, + 48.819173836504824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10431", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602142467674717, + 48.81597352575455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27588", + "ref:FR:issy_les_mx:ordre_arbre": "569", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2750232852557115, + 48.821540526895625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10089", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602655470537134, + 48.816408909453486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16009", + "ref:FR:issy_les_mx:ordre_arbre": "419", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261557939532847, + 48.82722889286004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30708", + "ref:FR:issy_les_mx:ordre_arbre": "23d", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617353819400527, + 48.82585591735382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16548", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671919581632363, + 48.8179461496063 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20709", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pyrus communis 'Henri Desportes'", + "species:FR": "Poirier 'Henri Desportes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476661237616473, + 48.81926523876156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10079", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278618820028911, + 48.8274148153522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10200", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616693762588973, + 48.822880984599934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12811", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264574277834496, + 48.82712635887069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12641", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461519223210136, + 48.82236800951336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9624", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268299765603175, + 48.82068235522059 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22289", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26623817151722, + 48.82353143549992 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10119", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595084854194236, + 48.81905945416548 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13142", + "ref:FR:issy_les_mx:ordre_arbre": "211", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2462870439456246, + 48.81917257795078 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10482", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27927292729885, + 48.82305454324728 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14029", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2583494442482266, + 48.81565308877529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12516", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2526213879605343, + 48.81879587200471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28230", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636356118643786, + 48.81998574537619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12824", + "ref:FR:issy_les_mx:ordre_arbre": "465", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546577778740664, + 48.82360758064332 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10053", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254604759817296, + 48.81750270689786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29495", + "ref:FR:issy_les_mx:ordre_arbre": "138a" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268187855370364, + 48.832701558300634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11201", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2734688120192263, + 48.82563868438022 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10835", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254753560991819, + 48.820234729273956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22121", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26187185497685, + 48.82773769019253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30713", + "ref:FR:issy_les_mx:ordre_arbre": "5a", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26083309058427, + 48.822883591487525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16322", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668895374916653, + 48.82414138371715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10167", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684582954455, + 48.82256580104403 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14403", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270655736171359, + 48.82568211764578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26780", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780076425494467, + 48.82909487541152 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12230", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630867013032674, + 48.82666588480567 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30539", + "ref:FR:issy_les_mx:ordre_arbre": "22a", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264348396865168, + 48.82332247409351 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30595", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589225472701933, + 48.816835497334104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28502", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650767750763947, + 48.83015706623169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9892", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2416967379297454, + 48.8213558175776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9698", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258332023248745, + 48.81880643547976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12943", + "ref:FR:issy_les_mx:ordre_arbre": "684", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622401362702402, + 48.82357446863275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9771", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2496794307602586, + 48.8200112798428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10432", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536757339514515, + 48.81752607139114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12204", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259414022331623, + 48.81865971711923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14556", + "ref:FR:issy_les_mx:ordre_arbre": "309", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279181705458806, + 48.82268895984935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14005", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667332168692798, + 48.82019242721998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12927", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650728178928103, + 48.81998843575398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13044", + "ref:FR:issy_les_mx:ordre_arbre": "442", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617808339712457, + 48.815077258106676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27672", + "ref:FR:issy_les_mx:ordre_arbre": "653", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254157144645868, + 48.81742084978256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11477", + "ref:FR:issy_les_mx:ordre_arbre": "115", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646476634513575, + 48.819989243592104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13990", + "ref:FR:issy_les_mx:ordre_arbre": "429", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261108818065239, + 48.82349580532945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9856", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265657758212836, + 48.820095476952694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13200", + "ref:FR:issy_les_mx:ordre_arbre": "393", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694866858192864, + 48.82084093764672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13254", + "ref:FR:issy_les_mx:ordre_arbre": "154", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279509890860423, + 48.823730301651786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14394", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25922872812783, + 48.824814327161484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17235", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2861098701647173, + 48.82768109693519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11780", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279315445999261, + 48.82322015736461 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14709", + "ref:FR:issy_les_mx:ordre_arbre": "196", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2522658891905953, + 48.82139727021952 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10486", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Salix matsudana 'Tortuosa'", + "species:FR": "Saule matsudana tortueux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265267789502697, + 48.81989262589247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13345", + "ref:FR:issy_les_mx:ordre_arbre": "368", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623802101808286, + 48.81555804062778 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16242", + "ref:FR:issy_les_mx:ordre_arbre": "193", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726745926750636, + 48.825704518294465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10345", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278587088391851, + 48.8290117514214 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9538", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280872260689071, + 48.823647062082394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14689", + "ref:FR:issy_les_mx:ordre_arbre": "166", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261010492005297, + 48.81636060280174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28392", + "ref:FR:issy_les_mx:ordre_arbre": "535", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667150490492087, + 48.81842862897876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30045", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245368282078846, + 48.821028604186196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10565", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671990855865753, + 48.82039549958576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28734", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598055907950148, + 48.82611511668508 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22469", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266000615272262, + 48.82855453638399 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14310", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264480908932737, + 48.8241023082704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27566", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663798442228047, + 48.82782893393347 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10972", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2521474390495686, + 48.821991370220374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11444", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260870567721561, + 48.82789929185957 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27953", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701307765191023, + 48.82636510370389 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30608", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2563421364346743, + 48.81635624805182 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15622", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626557217133136, + 48.81564261964385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29447", + "ref:FR:issy_les_mx:ordre_arbre": "529b", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561800273902057, + 48.824139288408 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27832", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2524727401988835, + 48.822073252742136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10229", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577916680799706, + 48.81542658068145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13593", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Ilex aquifolium", + "species:FR": "Houx commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594731641878685, + 48.81862034776177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14643", + "ref:FR:issy_les_mx:ordre_arbre": "323", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268254200427051, + 48.8270438905644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27007", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826769706733483, + 48.826942052692 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10324", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278479356845505, + 48.827511072291905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10107", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629488399049444, + 48.8200690797036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16095", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795976378480605, + 48.822882493834946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20930", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260966066469673, + 48.81637220001222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28404", + "ref:FR:issy_les_mx:ordre_arbre": "547", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826006446057274, + 48.828810980923805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10602", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268473121098078, + 48.82247216971643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16250", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609979745296283, + 48.81638858633842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28402", + "ref:FR:issy_les_mx:ordre_arbre": "545", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576148198344455, + 48.817285264086756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30090", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2740065753414656, + 48.82496209379705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11709", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276587232392134, + 48.82695306732717 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12369", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262459431439403, + 48.81513566254557 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16149", + "ref:FR:issy_les_mx:ordre_arbre": "153", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644475497970618, + 48.82293275370824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12648", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609938896967545, + 48.815655898621806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15991", + "ref:FR:issy_les_mx:ordre_arbre": "463", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26545574214706, + 48.82816763269833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9217", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276830822831722, + 48.828982226414276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16171", + "ref:FR:issy_les_mx:ordre_arbre": "120", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651517067983633, + 48.815393557398025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30605", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Ligustrum ibota", + "species:FR": "Troène à feuilles ovales" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672314526559685, + 48.821108923976844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11670", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256909400974004, + 48.82003676757638 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11209", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721772817183266, + 48.816140344504454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16413", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269256573196485, + 48.817905489687035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20710", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Prunus domestica 'Reine-Claude Diaphane'", + "species:FR": "Prunier 'Reine-Claude Diaphane'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801489677799314, + 48.82934455890065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21502", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279708124654517, + 48.82323185206929 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13973", + "ref:FR:issy_les_mx:ordre_arbre": "124", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268893301254621, + 48.82090761855546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14031", + "ref:FR:issy_les_mx:ordre_arbre": "592", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260165390897012, + 48.81593266083087 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27599", + "ref:FR:issy_les_mx:ordre_arbre": "580", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663771079219797, + 48.82943805718427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10668", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802154029266126, + 48.830902515541645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15109", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593135311842434, + 48.816128721363235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21261", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545102301911197, + 48.81775347662795 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13153", + "ref:FR:issy_les_mx:ordre_arbre": "235", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279071528777883, + 48.823176544838745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29598", + "ref:FR:issy_les_mx:ordre_arbre": "198", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27132851947483, + 48.82632802821459 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28336", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253440538631111, + 48.817862763555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11289", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26239030324315, + 48.816005819943044 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16497", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2504412635918936, + 48.82354393540424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9393", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674774085941234, + 48.82404115896931 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8881", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580055652534035, + 48.81542017511139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12281", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268514379198939, + 48.82242273218991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14304", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792588948687866, + 48.8228525760586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14539", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689217100992445, + 48.81654540287923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20765", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2442903966223686, + 48.82200514490009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_7908", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590614881370956, + 48.818499429523236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14482", + "ref:FR:issy_les_mx:ordre_arbre": "549", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777694277224283, + 48.82920257303932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12002", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278832426418982, + 48.8225616488091 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21399", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598051225899254, + 48.81891980828577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15725", + "ref:FR:issy_les_mx:ordre_arbre": "360", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700433558168136, + 48.825439196908334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27928", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780867096936963, + 48.82271878920373 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14537", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280025460429623, + 48.82252493120541 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12262", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616540941970005, + 48.8155714022151 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15818", + "ref:FR:issy_les_mx:ordre_arbre": "88", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250262473335486, + 48.82323533690064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9449", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273832777952062, + 48.82516873927184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11825", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261605248532076, + 48.814561182366376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27745", + "ref:FR:issy_les_mx:ordre_arbre": "726", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720174593133584, + 48.82173385182712 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16374", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604313534909157, + 48.8155451402419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16016", + "ref:FR:issy_les_mx:ordre_arbre": "474", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270924713767105, + 48.825244898494574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26777", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646506918612426, + 48.82747864764873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9646", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617353988324966, + 48.815121767052254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27643", + "ref:FR:issy_les_mx:ordre_arbre": "624", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25754151988613, + 48.81719172197467 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30088", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603580860954944, + 48.81806683501538 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29739", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269729390984206, + 48.825798650323854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27929", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615612800264033, + 48.82765750509625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10867", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794141088272735, + 48.82323654451338 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29597", + "ref:FR:issy_les_mx:ordre_arbre": "194a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267474582956966, + 48.816749021672706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20769", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276066455902254, + 48.82296497527376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9702", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620847924716365, + 48.81523244185587 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15430", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268462658042564, + 48.826862741721875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27004", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262331185746832, + 48.829159756546396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8677", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer pensylvanicum", + "species:FR": "Erable jaspé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267001047474722, + 48.82411366065354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10166", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26100582105619, + 48.82792890832193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27965", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254473791198456, + 48.822061900128034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30670", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Acer x freemanii 'Celebration'", + "species:FR": "Erable de freeman 'Celebration'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562911738001237, + 48.817457811272895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29969", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260153908079822, + 48.823693674042815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11899", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273225620038503, + 48.82299983793045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16477", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2549268456238263, + 48.817426918262925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27822", + "ref:FR:issy_les_mx:ordre_arbre": "200.1", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646689434868676, + 48.82252948956325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12673", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265372575194892, + 48.81440327764486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12142", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721697975019866, + 48.816227493727006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10773", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490471682929476, + 48.81990170802643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10520", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731463031262025, + 48.82519438009072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10109", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263450200807536, + 48.81996994013439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12940", + "ref:FR:issy_les_mx:ordre_arbre": "467", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253376632628324, + 48.81748430442512 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22284", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687659750836917, + 48.82046686758894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15844", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2821620720687807, + 48.8298274202739 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12282", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243458795230004, + 48.821737825032535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9601", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259575746621818, + 48.815802262440414 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15731", + "ref:FR:issy_les_mx:ordre_arbre": "492", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628366616071265, + 48.81515465763895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21569", + "ref:FR:issy_les_mx:ordre_arbre": "180", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679581924803385, + 48.8205135633326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11877", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2500339687229816, + 48.823424809351806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9804", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618083825909876, + 48.81510333072122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27634", + "ref:FR:issy_les_mx:ordre_arbre": "615", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269705681991422, + 48.82097424098836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16337", + "ref:FR:issy_les_mx:ordre_arbre": "103", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2499766646484516, + 48.82336209902684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9734", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711626633368813, + 48.82519729299512 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26760", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739300814074666, + 48.82148059923832 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11520", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer rubrum 'Red Sunset'", + "species:FR": "Erable rouge 'Red Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617210986887946, + 48.824591140529954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10360", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258235946953683, + 48.81862675584006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13107", + "ref:FR:issy_les_mx:ordre_arbre": "154", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2436379463912033, + 48.82185363070166 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9786", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2747167164271658, + 48.820423378073805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10525", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621770010440594, + 48.81560735075085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15996", + "ref:FR:issy_les_mx:ordre_arbre": "326", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577518960959986, + 48.81634319597627 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30030", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278950451760795, + 48.822177653498464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10618", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481460410889946, + 48.819650923292144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10916", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27465218178611, + 48.82145370160798 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10311", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708416157434224, + 48.81736418043004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27095", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Salix elaeagnos", + "species:FR": "Saule drapé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2506923516798136, + 48.82384310529261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26243", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264082089117157, + 48.820741208527245 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14829", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259772205002959, + 48.81822564595846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29766", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273349349125369, + 48.824681371875585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9923", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618923206250674, + 48.81750793984866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26456", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261893483211688, + 48.81507552558996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27706", + "ref:FR:issy_les_mx:ordre_arbre": "687", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591943680421496, + 48.81867709717406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14282", + "ref:FR:issy_les_mx:ordre_arbre": "588", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261806615235035, + 48.82238025658848 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9408", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265497484551793, + 48.82091099918012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11367", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248738734699885, + 48.819095484860426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11993", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603817958833408, + 48.82561776224735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17241", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619724117576747, + 48.815776905795595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16055", + "ref:FR:issy_les_mx:ordre_arbre": "320", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265651665543895, + 48.83056679351695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10035", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599205123725716, + 48.82568716412224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17243", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2811013793529678, + 48.83133543486377 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25831", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264459177883531, + 48.82677014710303 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11923", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263496101058134, + 48.81513337076921 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15958", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25581267796394, + 48.822391358179864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27530", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2462307929544814, + 48.818987959195695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10252", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261799071982726, + 48.82217285601817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10613", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589437876744207, + 48.81830846033682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12829", + "ref:FR:issy_les_mx:ordre_arbre": "118", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280517479554895, + 48.83121596160553 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28759", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fraxinus ornus 'Lerce'", + "species:FR": "Frêne à fleurs 'Lerce'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620924307567587, + 48.81549105282781 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15845", + "ref:FR:issy_les_mx:ordre_arbre": "117", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548753174791116, + 48.818078288605136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12425", + "ref:FR:issy_les_mx:ordre_arbre": "258", + "species": "Cydonia oblonga", + "species:FR": "Cognassier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264511441235712, + 48.8198188126006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13401", + "ref:FR:issy_les_mx:ordre_arbre": "413", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2798452572305723, + 48.82363762607782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12525", + "ref:FR:issy_les_mx:ordre_arbre": "91", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700041615068964, + 48.82558258869684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28303", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2819592096763546, + 48.828430338653874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10404", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274968201668065, + 48.82319057085249 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9739", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625084908654296, + 48.829276660957845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8489", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus serrulata 'Taihaku'", + "species:FR": "Cerisier des collines 'Taihaku'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254342294007269, + 48.81757113193205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29493", + "ref:FR:issy_les_mx:ordre_arbre": "124a", + "species": "Salix alba", + "species:FR": "Saule blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625719035676957, + 48.8152158618272 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16147", + "ref:FR:issy_les_mx:ordre_arbre": "150", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623801585947336, + 48.81564714554438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22159", + "ref:FR:issy_les_mx:ordre_arbre": "116", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593090505181626, + 48.81835122956265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29678", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567810651316256, + 48.81680745286378 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29954", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717158423442685, + 48.825213832841136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26765", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587430379683275, + 48.81661376836918 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29516", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247809631761483, + 48.82373869377358 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10396", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652375666472255, + 48.820101937649426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20928", + "ref:FR:issy_les_mx:ordre_arbre": "448", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258941093602011, + 48.81869336087425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16917", + "ref:FR:issy_les_mx:ordre_arbre": "195", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267634770466347, + 48.8203729433893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14067", + "ref:FR:issy_les_mx:ordre_arbre": "205", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258274596698545, + 48.81796472154632 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13067", + "ref:FR:issy_les_mx:ordre_arbre": "90", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2489723190479944, + 48.820557423382034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10777", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702235662754355, + 48.81654071554243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1163", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514452413996886, + 48.82311394787585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15091", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277272420539621, + 48.82151798854811 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12458", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714699972801466, + 48.82610465711659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28337", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Davidia involucrata", + "species:FR": "Arbre aux mouchoirs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539073104356437, + 48.820286705137704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22089", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272895027790232, + 48.82206799256671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12441", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2807468136258477, + 48.82189090430222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11776", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594259439150326, + 48.8186454943317 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12917", + "ref:FR:issy_les_mx:ordre_arbre": "306", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668476905061503, + 48.81729209711954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20770", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259440723005268, + 48.81721834604824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29648", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263892329312319, + 48.829430010915466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10556", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25966094559359, + 48.81715936514917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28522", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606887030285816, + 48.8245392600716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15852", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259855697899735, + 48.82360444178467 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9947", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705408449819924, + 48.821450405760025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12209", + "ref:FR:issy_les_mx:ordre_arbre": "132", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450238118722345, + 48.819327903733665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11847", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270005516707122, + 48.82032056410977 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16420", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245168089654854, + 48.82095568761573 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10026", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2484694841981727, + 48.82235885400966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9548", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266831175277438, + 48.823435626308964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10246", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2746961579221123, + 48.82341882307666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9637", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269364170914306, + 48.81800104730544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20630", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674439924850125, + 48.821143380954986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10127", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259167386183661, + 48.81840384884988 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29489", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259112673864535, + 48.82291621465018 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15161", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254174277811123, + 48.81735467623826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11759", + "ref:FR:issy_les_mx:ordre_arbre": "114", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607710084804467, + 48.824103613427205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12401", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261069285015876, + 48.82697930229903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9358", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260023350311189, + 48.818096129891074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29736", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259691954919073, + 48.81888265604618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13441", + "ref:FR:issy_les_mx:ordre_arbre": "340", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259456937706405, + 48.818695427916104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13214", + "ref:FR:issy_les_mx:ordre_arbre": "281", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2729639728937654, + 48.821428116323844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10933", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706107287387924, + 48.821270821392694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13047", + "ref:FR:issy_les_mx:ordre_arbre": "118", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262501504077169, + 48.814762409948464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15275", + "ref:FR:issy_les_mx:ordre_arbre": "157", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772251814457123, + 48.822158677270124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10223", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251126490487689, + 48.8199278900235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30694", + "ref:FR:issy_les_mx:ordre_arbre": "35a", + "species": "Prunus hillieri 'Spire'", + "species:FR": "Cerisier à fleurs 'Spire'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259909944852167, + 48.81734917555768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28542", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272800664685853, + 48.821372502256935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12499", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673125470301105, + 48.81756439475238 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28248", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274336403583108, + 48.821721249982666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11433", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257750415289866, + 48.81576921064029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13392", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612633366676276, + 48.81531035691637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16255", + "ref:FR:issy_les_mx:ordre_arbre": "385", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673363675529536, + 48.823292235476174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11819", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618725448023898, + 48.81503465388621 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27690", + "ref:FR:issy_les_mx:ordre_arbre": "671", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776187729053543, + 48.821320903207386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27820", + "ref:FR:issy_les_mx:ordre_arbre": "3a", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774098104697478, + 48.821409752836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12891", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541115547126975, + 48.817242311735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11746", + "ref:FR:issy_les_mx:ordre_arbre": "93", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2753272353773366, + 48.821525112017376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11323", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559742911625262, + 48.82164580096538 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15174", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658299000748667, + 48.830209598825014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21365", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264627718479028, + 48.823989637588596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9917", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684736673821644, + 48.8326000459296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10391", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270510425254094, + 48.82123490206043 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11874", + "ref:FR:issy_les_mx:ordre_arbre": "117", + "species": "Cupressus arizonica", + "species:FR": "Cyprès de l'Arizona" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561307605795724, + 48.82425095502247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27843", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621683822841856, + 48.81453120332246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27730", + "ref:FR:issy_les_mx:ordre_arbre": "711", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280395486789833, + 48.82341769388384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13663", + "ref:FR:issy_les_mx:ordre_arbre": "183", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26777769931811, + 48.82031907447761 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14191", + "ref:FR:issy_les_mx:ordre_arbre": "202", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584872906853892, + 48.815625126834455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12969", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246381776423975, + 48.82252707642256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9589", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641446260330156, + 48.82672507217526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11156", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621701168843593, + 48.81569691983634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16268", + "ref:FR:issy_les_mx:ordre_arbre": "199", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606096471492076, + 48.82382986115701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9997", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534908845854544, + 48.817240687431934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12761", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796604815034187, + 48.822947722587436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15900", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622098476050536, + 48.81434375650944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27728", + "ref:FR:issy_les_mx:ordre_arbre": "709", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514834871025355, + 48.8187195974175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22226", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627971795448074, + 48.815289132804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27767", + "ref:FR:issy_les_mx:ordre_arbre": "748", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265719865929934, + 48.83028832359747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26110", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573189458335716, + 48.816324676854805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30002", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259521618588258, + 48.81896330920025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13052", + "ref:FR:issy_les_mx:ordre_arbre": "206", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259598417377154, + 48.81673994890115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30038", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598688677921537, + 48.816546919946184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28554", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270589374057202, + 48.82044386503043 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12368", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695312465265847, + 48.818035219160784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19945", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640552800301985, + 48.819743911436184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29546", + "ref:FR:issy_les_mx:ordre_arbre": "326a", + "species": "Trachycarpus fortunei", + "species:FR": "Palmier de Chine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649290405880236, + 48.81454528997757 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12623", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696773106619323, + 48.81703235851454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28266", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2483058372916407, + 48.81869388139841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13422", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592503446652845, + 48.817854711127865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29484", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254100048085459, + 48.820275815953565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22091", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603296324328133, + 48.81606873975245 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15147", + "ref:FR:issy_les_mx:ordre_arbre": "414", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588373524779133, + 48.81694776406163 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28496", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282968368528435, + 48.829825640401005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12120", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259749752491888, + 48.81752204057984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28550", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2523432297318413, + 48.82206321583726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10232", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261322791064818, + 48.815772119515564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16064", + "ref:FR:issy_les_mx:ordre_arbre": "514", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271246424680966, + 48.81716572648366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27096", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707813433198525, + 48.817616015300345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9398", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271420693360846, + 48.82730395780579 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22058", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2438946191963436, + 48.82075564562796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10745", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646995068632316, + 48.81945933752844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14629", + "ref:FR:issy_les_mx:ordre_arbre": "304", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2550842468296715, + 48.82318643703826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22256", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278538688262598, + 48.82382311324915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13517", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267646009705058, + 48.81627375079012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6705", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700518444751316, + 48.81474434960987 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10427", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776092064338527, + 48.82194164040722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15681", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259684529221862, + 48.81827130441743 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29784", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262804811280261, + 48.814657163130875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16027", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676513791093074, + 48.82311904364586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10968", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259885182306347, + 48.816165533318475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16061", + "ref:FR:issy_les_mx:ordre_arbre": "501", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246359796769994, + 48.81910863246075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11506", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257039247336351, + 48.81632140662864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15570", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247970154980167, + 48.81940674000157 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9899", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2764671617254315, + 48.82250511450484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11605", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27220198945231, + 48.826181456482665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11603", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264623537631151, + 48.82019030486304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13158", + "ref:FR:issy_les_mx:ordre_arbre": "507", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773461521341547, + 48.82825163146147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9661", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2424627442010068, + 48.820787013837624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22224", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618078219479463, + 48.815046755616756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27678", + "ref:FR:issy_les_mx:ordre_arbre": "659", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596695240325317, + 48.82332297421217 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22251", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658383525454684, + 48.8261481263811 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10086", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773964152134307, + 48.829118211707176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12949", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803328768325994, + 48.823287494703486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14277", + "ref:FR:issy_les_mx:ordre_arbre": "105", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799966722230627, + 48.82334977649089 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29596", + "ref:FR:issy_les_mx:ordre_arbre": "187", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647740420271334, + 48.81987891368158 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30787", + "ref:FR:issy_les_mx:ordre_arbre": "410a", + "species": "Halesia sp.", + "species:FR": "Halesia indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617508435817637, + 48.825646098076355 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9515", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261799668247385, + 48.8150359125666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27684", + "ref:FR:issy_les_mx:ordre_arbre": "665", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652784374490285, + 48.81999638965846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12472", + "ref:FR:issy_les_mx:ordre_arbre": "398", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26029974188967, + 48.81609178327278 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22160", + "ref:FR:issy_les_mx:ordre_arbre": "413", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719038061965153, + 48.82314732480589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10121", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269999992640659, + 48.816998441791284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20259", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2727152715277885, + 48.821935635572736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10363", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.242335733987324, + 48.82154682302663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9710", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562867507803803, + 48.81739554604458 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29967", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604268680290667, + 48.81693072701534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28564", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260202050822902, + 48.81689558143073 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28563", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259439421648349, + 48.81863667751114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14557", + "ref:FR:issy_les_mx:ordre_arbre": "311", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2571819724020767, + 48.816332009974474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30004", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617107359044897, + 48.81515156437647 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27624", + "ref:FR:issy_les_mx:ordre_arbre": "605", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2764552253595642, + 48.82829889032554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9605", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26265938963313, + 48.82847707706621 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10651", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594082814638368, + 48.81892831327325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12939", + "ref:FR:issy_les_mx:ordre_arbre": "239", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27980028254441, + 48.82385599296854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12843", + "ref:FR:issy_les_mx:ordre_arbre": "101", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589060165039823, + 48.81847738296838 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21427", + "ref:FR:issy_les_mx:ordre_arbre": "541", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278220876550922, + 48.821488215386694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14492", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621989027448386, + 48.823361713176766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9534", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574098294381333, + 48.818121745649464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12136", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586227937111647, + 48.818842576449605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13538", + "ref:FR:issy_les_mx:ordre_arbre": "647", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2501200114240207, + 48.82255156983392 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11110", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268572532520433, + 48.81776643740908 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20460", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268195761264725, + 48.81609623351367 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6616", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2516838344872623, + 48.81995108487706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11891", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271622688833505, + 48.815820494049824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30716", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271881476527243, + 48.82301552181048 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11818", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691301470189877, + 48.822272655281026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12345", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264264394576825, + 48.824164094327315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27565", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601324105734144, + 48.81591509842794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27598", + "ref:FR:issy_les_mx:ordre_arbre": "579", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594352161594573, + 48.81719375861226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29646", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680122995197975, + 48.81615547777773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6701", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551533976777716, + 48.81749459477734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13307", + "ref:FR:issy_les_mx:ordre_arbre": "204", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609885689099474, + 48.81629755765277 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16381", + "ref:FR:issy_les_mx:ordre_arbre": "261", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256058370847355, + 48.82425536113081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27838", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597996945908103, + 48.818275102676964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29756", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660727218010845, + 48.82861828104895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14338", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770784702867175, + 48.8280887910873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9562", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711231035125254, + 48.817398578632584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9458", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674981405948484, + 48.81667248511863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20310", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Prunus cerasus 'Bigarreau Van'", + "species:FR": "Cerisier 'Bigarreau Van'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256577544250907, + 48.82385010687415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16681", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645674784607626, + 48.826833275505884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11922", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2494717609380457, + 48.82018357829328 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10992", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266071495182377, + 48.829185500013345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14056", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600082047704455, + 48.81558783290287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16072", + "ref:FR:issy_les_mx:ordre_arbre": "494", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269124437172239, + 48.82626007814468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27009", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604557203873976, + 48.817889214724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29803", + "ref:FR:issy_les_mx:ordre_arbre": "100", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545030526233107, + 48.81797469223728 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13315", + "ref:FR:issy_les_mx:ordre_arbre": "276", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627274574519354, + 48.81533347429917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16048", + "ref:FR:issy_les_mx:ordre_arbre": "149", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541918819641396, + 48.81798228874324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13354", + "ref:FR:issy_les_mx:ordre_arbre": "250", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249448508886987, + 48.820088452482935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10062", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697559900533166, + 48.82575708156331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28312", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548773931703217, + 48.81781219587896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12972", + "ref:FR:issy_les_mx:ordre_arbre": "218", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247330216791111, + 48.82012643163146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12785", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551627393959337, + 48.82309333899692 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11480", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612233195153455, + 48.82450293813195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10941", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636109048311925, + 48.82895904009808 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11198", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25630229610113, + 48.81727008810253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29962", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254924519309516, + 48.8181344383884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13334", + "ref:FR:issy_les_mx:ordre_arbre": "273", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260034400296106, + 48.82274391518031 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11530", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598926969302253, + 48.81731604139597 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28532", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593964571788008, + 48.81893597113149 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13798", + "ref:FR:issy_les_mx:ordre_arbre": "240", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269135109862486, + 48.82242760267976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11100", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Cupressocyparis x Leylandii", + "species:FR": "Cyprès de Leyland" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272257108161223, + 48.82609903830598 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11736", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2518952233562626, + 48.819691894477295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13329", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636221461549324, + 48.82013795184639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16403", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655561789303906, + 48.83021243666528 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29890", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262332551666002, + 48.8298303191873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28976", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651735476331747, + 48.8250358177468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9409", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719914981349656, + 48.82670921250315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11750", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661274351215437, + 48.820237151594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14194", + "ref:FR:issy_les_mx:ordre_arbre": "388", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244694032834392, + 48.820850011391656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9975", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608665758774613, + 48.81622917900428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15922", + "ref:FR:issy_les_mx:ordre_arbre": "264", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267786710902659, + 48.81776771772685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20673", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256538900478815, + 48.823887078496334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21269", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596385536549164, + 48.81898510721435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13681", + "ref:FR:issy_les_mx:ordre_arbre": "510", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26700030726974, + 48.817424062432835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28253", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715779972646737, + 48.82154380458151 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11836", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2528241140967626, + 48.82165817911868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9986", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560874722517044, + 48.82427775703485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27841", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266940696874523, + 48.82885462909562 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12493", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259744329846103, + 48.81896033677506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13942", + "ref:FR:issy_les_mx:ordre_arbre": "349", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586772870484064, + 48.82478174925887 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17114", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2566497348026444, + 48.81765089238895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29976", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2512027884824186, + 48.81927584178326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11508", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273551302499798, + 48.82472704067075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10564", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543993448729265, + 48.81794089379544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12277", + "ref:FR:issy_les_mx:ordre_arbre": "241", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613609685299663, + 48.81596200167828 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27775", + "ref:FR:issy_les_mx:ordre_arbre": "756", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609069066999843, + 48.816308786957926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28397", + "ref:FR:issy_les_mx:ordre_arbre": "540", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262442922298672, + 48.81493764535639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14229", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485617761159644, + 48.81864874522082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13339", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262969266242759, + 48.815043792000075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16049", + "ref:FR:issy_les_mx:ordre_arbre": "176", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602672355767908, + 48.81600146503008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27585", + "ref:FR:issy_les_mx:ordre_arbre": "566", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251704047335647, + 48.81945249574796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30689", + "ref:FR:issy_les_mx:ordre_arbre": "4a", + "species": "Liquidambar styraciflua 'Slender silhouette'", + "species:FR": "Copalme d'Amérique 'Slender silhouette'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698322942821307, + 48.825677502827546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28307", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646912829141157, + 48.82703023885522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12630", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2552464176004063, + 48.817355430160944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29506", + "ref:FR:issy_les_mx:ordre_arbre": "198b", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259742108266421, + 48.81720634203576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28520", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626350458930258, + 48.81460799294779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15941", + "ref:FR:issy_les_mx:ordre_arbre": "359", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803099420155295, + 48.823338919069776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13790", + "ref:FR:issy_les_mx:ordre_arbre": "116", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261330188440754, + 48.824839064757676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11207", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258310571217519, + 48.81766184736732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16232", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826382357891366, + 48.82959779277181 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13305", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538293112915198, + 48.82310588912357 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11442", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2797918797168006, + 48.82324716873306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13511", + "ref:FR:issy_les_mx:ordre_arbre": "123", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610509319632532, + 48.816607661427554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15998", + "ref:FR:issy_les_mx:ordre_arbre": "240", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2458389324019166, + 48.82165679618751 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11096", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671090321989418, + 48.82548874667389 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11132", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27972006646125, + 48.82288597305113 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15912", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260607482213879, + 48.81660087130892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16032", + "ref:FR:issy_les_mx:ordre_arbre": "423", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261472601682907, + 48.816182163320036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15982", + "ref:FR:issy_les_mx:ordre_arbre": "307", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618129874942015, + 48.81505704057365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27675", + "ref:FR:issy_les_mx:ordre_arbre": "656", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271800607021892, + 48.825579937827605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10187", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668189662151925, + 48.8255501483194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11482", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629496798878304, + 48.815310309748966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27768", + "ref:FR:issy_les_mx:ordre_arbre": "749", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25910508402676, + 48.81711760272967 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29603", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635117056295657, + 48.82889314119518 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11223", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770687518007553, + 48.82922218785226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12040", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589050891005242, + 48.81877029246581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14409", + "ref:FR:issy_les_mx:ordre_arbre": "618", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257062189658583, + 48.82001875211167 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14384", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606942979059204, + 48.816069539293025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16230", + "ref:FR:issy_les_mx:ordre_arbre": "291", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261862503594688, + 48.81504169704643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27691", + "ref:FR:issy_les_mx:ordre_arbre": "672", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2432467617289773, + 48.82070574119987 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9973", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586275232340878, + 48.82474580524854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16949", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258922881592909, + 48.816963999605136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29492", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678100998477033, + 48.833031593946025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11405", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476668774772683, + 48.81935332777148 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11844", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689568650399057, + 48.82253735977343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13449", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688970268683337, + 48.826470875483835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27012", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262589714642649, + 48.81527221688542 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15983", + "ref:FR:issy_les_mx:ordre_arbre": "339", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2470363747525957, + 48.81906187839119 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9882", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259955850498351, + 48.81801057046106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29800", + "ref:FR:issy_les_mx:ordre_arbre": "97", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631737207541334, + 48.814874183973416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21510", + "ref:FR:issy_les_mx:ordre_arbre": "171", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278107729942588, + 48.82132115950395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28197", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259173101724231, + 48.818641615819615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14462", + "ref:FR:issy_les_mx:ordre_arbre": "412", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260849717348882, + 48.81632732042101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28408", + "ref:FR:issy_les_mx:ordre_arbre": "551", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609344542584386, + 48.81633494967667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28398", + "ref:FR:issy_les_mx:ordre_arbre": "541", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26001294552864, + 48.8237046345586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9945", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266625065501695, + 48.8176183988138 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20629", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24548734490191, + 48.82228635266844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30524", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805146965131917, + 48.82356405927833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12005", + "ref:FR:issy_les_mx:ordre_arbre": "160", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622454987576224, + 48.828227361959996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10303", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274441136488553, + 48.82303782206616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11176", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621128351488062, + 48.816005377842124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15920", + "ref:FR:issy_les_mx:ordre_arbre": "108", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260574006088751, + 48.81582264291523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16297", + "ref:FR:issy_les_mx:ordre_arbre": "397", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775395069322064, + 48.82943374457902 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11857", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279393754799711, + 48.82323502685171 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14594", + "ref:FR:issy_les_mx:ordre_arbre": "195", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2454691176111297, + 48.82220999485731 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9666", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2723869387216595, + 48.82613687692093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11047", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249286933637965, + 48.818427973392346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12600", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267464405609052, + 48.82397443142925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10164", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616165928979344, + 48.82813297484974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27973", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639767705128455, + 48.8272049203117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9575", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2468143800346723, + 48.81968743214974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16409", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598104623695225, + 48.81873963471312 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12874", + "ref:FR:issy_les_mx:ordre_arbre": "222", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773036318757187, + 48.822157871858906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9870", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Acer x zoeschense 'Annae'", + "species:FR": "Erable zoeschense 'Annaea'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647278887603246, + 48.81979280491954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12567", + "ref:FR:issy_les_mx:ordre_arbre": "319", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612410508402356, + 48.823772306246994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10463", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2415383226579375, + 48.822019156022 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28775", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652528959079503, + 48.820253317579365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29562", + "ref:FR:issy_les_mx:ordre_arbre": "515a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606102688421896, + 48.82298361426144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11025", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2468706816406603, + 48.81998184895932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11888", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547424653828343, + 48.823488845022624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16533", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260693143879204, + 48.824152855099044 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12314", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663416370144573, + 48.82755642660476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15439", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546246440823317, + 48.817445539848016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29496", + "ref:FR:issy_les_mx:ordre_arbre": "159a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279148266459025, + 48.82325270600132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13219", + "ref:FR:issy_les_mx:ordre_arbre": "206", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2730560102236863, + 48.82141507029695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10934", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594488945002715, + 48.81878818766522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14146", + "ref:FR:issy_les_mx:ordre_arbre": "468", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672072923451347, + 48.82332794921285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11574", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279208122128198, + 48.82278716086407 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13980", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25022555503314, + 48.822551650992 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21557", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702176269768723, + 48.81700179464562 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28271", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618175806301513, + 48.81504043022805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27679", + "ref:FR:issy_les_mx:ordre_arbre": "660", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606748007193973, + 48.81527476192803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27765", + "ref:FR:issy_les_mx:ordre_arbre": "746", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579434448569717, + 48.81576087768232 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12467", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617889461663743, + 48.81504295151474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27683", + "ref:FR:issy_les_mx:ordre_arbre": "664", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666286117237746, + 48.81748280189329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20572", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258365004384765, + 48.815544198156296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12528", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.286017751242045, + 48.82795088531615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11450", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2509319337247455, + 48.820139785936775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10082", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633315352754875, + 48.82878295332916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10998", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261042973944155, + 48.816015367999206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15929", + "ref:FR:issy_les_mx:ordre_arbre": "440", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247453086082408, + 48.81925374158344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11846", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263748678032042, + 48.8293894860612 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10506", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246286559313846, + 48.82240016896969 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8355", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277563817412006, + 48.82137139969867 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13284", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667329322799703, + 48.816625669460116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20510", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263857734443009, + 48.82698732684028 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9662", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275010526217862, + 48.822026849685365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10114", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679581492056915, + 48.81659462692224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30781", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254124943310006, + 48.82257967603586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21158", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257373938701786, + 48.81682364006423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30082", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607155838785085, + 48.824726313560205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15854", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279541329655309, + 48.82305431598315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14924", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778646295968366, + 48.82920595070466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11985", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560107122316917, + 48.822363356603496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10911", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Quercus coccinea", + "species:FR": "Chêne écarlate" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285884199793711, + 48.8283619790676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11103", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791973725026824, + 48.82924782609308 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9639", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269236391662919, + 48.82142651501062 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11216", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592653874869257, + 48.81803705187524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29669", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266560091810497, + 48.83439186920511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30532", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559749720872486, + 48.81643380868975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15589", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488494258296683, + 48.82311774957199 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9675", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690767046377087, + 48.81798463394396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22273", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Malus domestica 'Reinette du Mans'", + "species:FR": "Pommier 'Reinette du Mans'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2753775462884906, + 48.82161400097933 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10194", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271877847115414, + 48.825039453127516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26772", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662904246816464, + 48.831021443452435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11010", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282630817021853, + 48.82950131886101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12861", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265317946243643, + 48.81981343750405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13669", + "ref:FR:issy_les_mx:ordre_arbre": "365", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724024247357058, + 48.82185461348875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13374", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273348971846867, + 48.824974442903404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10476", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2744491289908644, + 48.82744928838563 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11475", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685347942594896, + 48.820100025383795 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12557", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282512823413728, + 48.83011084039694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15141", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600940171909616, + 48.818255250025985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29726", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265571287871961, + 48.82927959376784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14093", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260137340346808, + 48.818574066958874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29714", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus americana 'Autumn Purple'", + "species:FR": "Frêne blanc 'Autumn Purple'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259552380291699, + 48.81869712194278 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13241", + "ref:FR:issy_les_mx:ordre_arbre": "291", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625231998515787, + 48.815723030268394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15811", + "ref:FR:issy_les_mx:ordre_arbre": "113", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256856129793473, + 48.81582348648784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14496", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Cupressocyparis x Leylandii", + "species:FR": "Cyprès de Leyland" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786227034622986, + 48.82297880469466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13757", + "ref:FR:issy_les_mx:ordre_arbre": "147", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2569685529467596, + 48.817536674055404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29941", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618883303821606, + 48.815064341325176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27702", + "ref:FR:issy_les_mx:ordre_arbre": "683", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282455174430688, + 48.83000976957382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15166", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593666796812233, + 48.81791491319374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29663", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259385907743179, + 48.81763394835312 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29481", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590425199763025, + 48.8242495179928 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9750", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793671795277106, + 48.823744322425256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29584", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794011827739515, + 48.82293225052412 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14217", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591241556378545, + 48.81901380808115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13460", + "ref:FR:issy_les_mx:ordre_arbre": "528", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680477346460224, + 48.816525432582544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20353", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266062904019039, + 48.83144804845442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11009", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280575256394674, + 48.830684778207406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15076", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691357776155754, + 48.82273275231267 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29909", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260818575982971, + 48.81629528942284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28413", + "ref:FR:issy_les_mx:ordre_arbre": "556", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2460407607167534, + 48.8188013884157 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14246", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682216264209956, + 48.820686938535516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12210", + "ref:FR:issy_les_mx:ordre_arbre": "570", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2744776823058044, + 48.82134607169745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12418", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561703082120634, + 48.824371718514236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27858", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649332950771712, + 48.820039965116315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14359", + "ref:FR:issy_les_mx:ordre_arbre": "437", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545517468968588, + 48.817354951995654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14701", + "ref:FR:issy_les_mx:ordre_arbre": "156", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261901330185455, + 48.82254835457885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9407", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712313770808863, + 48.82518457562858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26759", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602253248576467, + 48.8163861946261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15925", + "ref:FR:issy_les_mx:ordre_arbre": "418", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261373349188879, + 48.82292800552823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13408", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261763509248111, + 48.82778342457475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10947", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2570777602151515, + 48.81629826372743 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14871", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543602743125413, + 48.817934210408275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12279", + "ref:FR:issy_les_mx:ordre_arbre": "243", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2480514122003257, + 48.82369452553194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9613", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634991098784165, + 48.82674375079041 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9516", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Malus 'Golden Hornet'", + "species:FR": "Pommier d'ornement à fleurs blanches" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671174317126983, + 48.82029003070423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13734", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670892357204093, + 48.82328591035423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10439", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792496493627037, + 48.8230572359244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14028", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711299263910574, + 48.821608638135444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9964", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606696146564103, + 48.81527553929427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27766", + "ref:FR:issy_les_mx:ordre_arbre": "747", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269320565601559, + 48.82225627261695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29473", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Thuja plicata", + "species:FR": "Thuya géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261622655743471, + 48.821917154941744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10639", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259392950336615, + 48.81712037638535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29639", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280718846898699, + 48.823804281673915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12750", + "ref:FR:issy_les_mx:ordre_arbre": "133", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266303060678754, + 48.814123662588436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25855", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251273367269964, + 48.81946483880174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9350", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2487056494768973, + 48.82001751626457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14854", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267243620828693, + 48.81743447559981 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20499", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Pyrus communis 'Williams'", + "species:FR": "Poirier 'Williams'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254905647912598, + 48.82209206674314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30671", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548089238218734, + 48.818124282166096 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13179", + "ref:FR:issy_les_mx:ordre_arbre": "270", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263070154852017, + 48.81496159745275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15799", + "ref:FR:issy_les_mx:ordre_arbre": "174", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263934378722289, + 48.81992421330554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29552", + "ref:FR:issy_les_mx:ordre_arbre": "456e", + "species": "Trachycarpus fortunei", + "species:FR": "Palmier de Chine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481467692099173, + 48.8203822980364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11484", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2494582602131663, + 48.82079263119168 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9935", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672813711601734, + 48.815258431096815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29843", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cupressus arizonica", + "species:FR": "Cyprès de l'Arizona" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597720889334223, + 48.818205049258005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29770", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636039610167114, + 48.829430369813544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9932", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268252817641398, + 48.81721393981102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20677", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770879314001435, + 48.828794865588044 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12115", + "ref:FR:issy_les_mx:ordre_arbre": "127", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279615847252141, + 48.82375240319128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12155", + "ref:FR:issy_les_mx:ordre_arbre": "94", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253327759280222, + 48.81759390800316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10847", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531041057213748, + 48.82076527485791 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26630", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261821848514523, + 48.8150948696966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27636", + "ref:FR:issy_les_mx:ordre_arbre": "617", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617333778115647, + 48.82621296390059 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9415", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269215301774133, + 48.82224464934151 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11715", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593025942027296, + 48.81791809557822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29664", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25872912896075, + 48.81889965192933 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13301", + "ref:FR:issy_les_mx:ordre_arbre": "660", + "species": "Sorbus domestica", + "species:FR": "Sorbier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690391736545372, + 48.82095852741932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14033", + "ref:FR:issy_les_mx:ordre_arbre": "594", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629945520973793, + 48.82868882452684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10742", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278921532412645, + 48.8222488837351 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11186", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788331631395256, + 48.82223534905436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11543", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24466064258146, + 48.822019163946344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8951", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803929166926604, + 48.83122237530307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11203", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680942697883406, + 48.81629530504219 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20599", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267443323662599, + 48.82318290642101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11833", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265844970504509, + 48.82935136991405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14106", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595554098242925, + 48.81883312179528 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13291", + "ref:FR:issy_les_mx:ordre_arbre": "330", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26104517189071, + 48.81684834815233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15888", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618205460597998, + 48.815023360132294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27686", + "ref:FR:issy_les_mx:ordre_arbre": "667", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537595160512396, + 48.81726228753523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26347", + "ref:FR:issy_les_mx:ordre_arbre": "107", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258973541355972, + 48.81878296478863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14373", + "ref:FR:issy_les_mx:ordre_arbre": "613", + "species": "Ulmus 'Lobel'", + "species:FR": "Orme 'Lobel'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675190145298703, + 48.81978115860845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11152", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243572402946455, + 48.82126091494622 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21263", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731003590131653, + 48.825231404307246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27561", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697543482958356, + 48.82026961204149 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11728", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776926480564827, + 48.82890173403671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13269", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648523043514515, + 48.83070384667133 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21528", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.240758828409438, + 48.82141318346535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9759", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250193348411745, + 48.82243490120377 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12202", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261703706873302, + 48.815534182597155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15817", + "ref:FR:issy_les_mx:ordre_arbre": "87", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256676629832492, + 48.81690141906404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29929", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651675280475048, + 48.83058932366383 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11548", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606895660527413, + 48.81664694489213 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16105", + "ref:FR:issy_les_mx:ordre_arbre": "425", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693970029709374, + 48.81707652833222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20701", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619356175812064, + 48.81479283765082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27734", + "ref:FR:issy_les_mx:ordre_arbre": "715", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685222477502944, + 48.81737806547308 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20738", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621380151557564, + 48.823139426976105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9315", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635223559950903, + 48.82934495580205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10393", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607865546034307, + 48.82394463658613 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10681", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246601151456175, + 48.81934814132455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15937", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794127633368895, + 48.822793217359525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13791", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280072585437141, + 48.829438044211464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10259", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450232570612147, + 48.82151578325176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11953", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26860902749561, + 48.817484212606075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20604", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259538311849492, + 48.81873678230666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14392", + "ref:FR:issy_les_mx:ordre_arbre": "253", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609811048609516, + 48.816664366019275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16000", + "ref:FR:issy_les_mx:ordre_arbre": "242", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259475747414223, + 48.81866677036602 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13243", + "ref:FR:issy_les_mx:ordre_arbre": "295", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258549450255444, + 48.81881997941959 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12977", + "ref:FR:issy_les_mx:ordre_arbre": "633", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594941834642266, + 48.818672464401914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13244", + "ref:FR:issy_les_mx:ordre_arbre": "296", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265218422905462, + 48.82801162106616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9221", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597324862624095, + 48.81896916464937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13505", + "ref:FR:issy_les_mx:ordre_arbre": "350", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592693610864334, + 48.818698625669704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14284", + "ref:FR:issy_les_mx:ordre_arbre": "591", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266333308737983, + 48.8244377815356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27172", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262994519964742, + 48.819872154808735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12169", + "ref:FR:issy_les_mx:ordre_arbre": "476", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271569191247034, + 48.827099883486255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11714", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272083949719368, + 48.82331091269334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10315", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260890671892498, + 48.816330002075055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28407", + "ref:FR:issy_les_mx:ordre_arbre": "550", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686054293573825, + 48.82672745108746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27015", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.240930844630141, + 48.82184940752394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10380", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702575344384233, + 48.814786017234326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10459", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261281472533076, + 48.828096098164096 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27944", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676163541148004, + 48.820423801402676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28288", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24130586986379, + 48.82134271968433 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9729", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632928123380376, + 48.81530654358185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14774", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2856398476942945, + 48.82914451504087 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11774", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717310015937273, + 48.825170238666544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26768", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267720570434656, + 48.81982588088472 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11238", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280167598403036, + 48.82331309679069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13823", + "ref:FR:issy_les_mx:ordre_arbre": "118", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622159855598976, + 48.823423689020075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9436", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562535327822526, + 48.82424758190684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27846", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254640556278305, + 48.82265412671177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11018", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546760468354474, + 48.81720675248122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12078", + "ref:FR:issy_les_mx:ordre_arbre": "195", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655265585520326, + 48.82941177848706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13960", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588560993841442, + 48.81857436917078 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14681", + "ref:FR:issy_les_mx:ordre_arbre": "565", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267119782620054, + 48.819702562728686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11251", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574021877741846, + 48.8165232397102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30073", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251844225669872, + 48.81965138880935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13330", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261409392551404, + 48.81542598589866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15082", + "ref:FR:issy_les_mx:ordre_arbre": "527", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612675575697034, + 48.8281071644739 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27945", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545873265621723, + 48.817413340108445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12490", + "ref:FR:issy_les_mx:ordre_arbre": "147", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690782813224457, + 48.817709230501315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20712", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246959156541188, + 48.81969248705287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10754", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642258171526364, + 48.82915613123644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10945", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668918513697407, + 48.81814364111287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20743", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589635068720306, + 48.818136237404616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17023", + "ref:FR:issy_les_mx:ordre_arbre": "109", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258931579778354, + 48.81813935906959 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13162", + "ref:FR:issy_les_mx:ordre_arbre": "108", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2465285878287533, + 48.81882929622444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28768", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696621398305554, + 48.8177208603722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20497", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2483528629237917, + 48.823017157783596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9612", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713907816069927, + 48.82233005326956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12659", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648667610395026, + 48.82018704256614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13159", + "ref:FR:issy_les_mx:ordre_arbre": "509", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273207262675759, + 48.825569069556316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9519", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652639192745316, + 48.82903056363942 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10863", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277253408756196, + 48.82922371017228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13197", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283349379174543, + 48.827383400175755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11711", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595133198578456, + 48.81884283341726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14210", + "ref:FR:issy_les_mx:ordre_arbre": "475", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26536033359247, + 48.82934220454385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11252", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262612553632615, + 48.82008038275034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27787", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767917019478086, + 48.82900693575932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12459", + "ref:FR:issy_les_mx:ordre_arbre": "119", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260420525795203, + 48.81533884130802 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15565", + "ref:FR:issy_les_mx:ordre_arbre": "471", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268954254842654, + 48.81690703192441 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20221", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267640587201271, + 48.81980825387584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11151", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259825004035125, + 48.823130835894226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10931", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546644475941244, + 48.81803991615623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12607", + "ref:FR:issy_les_mx:ordre_arbre": "264", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657439031816553, + 48.82745368857668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11880", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640586007871617, + 48.81998136983029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29548", + "ref:FR:issy_les_mx:ordre_arbre": "456a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575453937866476, + 48.816393897912434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30070", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262694005945272, + 48.81473608366854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16326", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651849901113956, + 48.8200154847029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21975", + "ref:FR:issy_les_mx:ordre_arbre": "444", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594587263769155, + 48.81660300578288 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29931", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693890390041087, + 48.82152523654169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11063", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603006404836012, + 48.818730613386975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12909", + "ref:FR:issy_les_mx:ordre_arbre": "233", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276980578133187, + 48.8289272711189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13170", + "ref:FR:issy_les_mx:ordre_arbre": "105", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260857432990697, + 48.81668723530942 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15858", + "ref:FR:issy_les_mx:ordre_arbre": "247", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253987400692384, + 48.817220908384066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12636", + "ref:FR:issy_les_mx:ordre_arbre": "101", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267391008346475, + 48.8174357929426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20283", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Pyrus communis 'Ferdinand de Lesseps'", + "species:FR": "Poirier 'Ferdinand de Lesseps'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261873430960243, + 48.814991308751836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27709", + "ref:FR:issy_les_mx:ordre_arbre": "690", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699683878830688, + 48.817247222663056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20224", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707586201227694, + 48.82174669501054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12096", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772802815760285, + 48.8286568392539 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13564", + "ref:FR:issy_les_mx:ordre_arbre": "132", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606718075592807, + 48.82394579575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10655", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2510036905535045, + 48.81966480606755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10343", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261062482742626, + 48.816520869856895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16051", + "ref:FR:issy_les_mx:ordre_arbre": "253", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279544875381639, + 48.82570607297607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10495", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678236013224895, + 48.82031244842083 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13814", + "ref:FR:issy_les_mx:ordre_arbre": "200", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644587572063304, + 48.82705647398672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12622", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667709718466273, + 48.82486132327529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27164", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618382499404617, + 48.8162530611409 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15084", + "ref:FR:issy_les_mx:ordre_arbre": "530", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267444226241407, + 48.8166948668932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20257", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus cerasus 'Bigarreau'", + "species:FR": "Cerisier 'Bigarreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254042308014923, + 48.82254732747225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11516", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584041608470606, + 48.81549593434904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13777", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652851916984384, + 48.82892456410509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30530", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Punica granatum", + "species:FR": "Grenadier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2522083175512533, + 48.819521447676806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13773", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587999192684913, + 48.818754145596046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14469", + "ref:FR:issy_les_mx:ordre_arbre": "597", + "species": "Ulmus 'Lobel'", + "species:FR": "Orme 'Lobel'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268507635648764, + 48.82065905740055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13662", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24475444304964, + 48.81932313035849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11123", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678775935495175, + 48.82023930298998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16289", + "ref:FR:issy_les_mx:ordre_arbre": "196", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2491733254955557, + 48.82070059070729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11255", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2433600068954522, + 48.8217888199424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9787", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724261556378433, + 48.82193205370275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11568", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681305931656754, + 48.81673027300154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20216", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Prunus cerasus 'Reverchon'", + "species:FR": "Cerisier 'Reverchon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596428547601777, + 48.82627507107354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10839", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259959630729907, + 48.81853088970016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29709", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594579340836023, + 48.8186279836244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14669", + "ref:FR:issy_les_mx:ordre_arbre": "317", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271317044240161, + 48.82765743682729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13373", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711625149213925, + 48.82224516357624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12710", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732981583145495, + 48.824773428014204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9925", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534721393617962, + 48.817293459814465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12668", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259794049984644, + 48.81598886211196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16540", + "ref:FR:issy_les_mx:ordre_arbre": "487", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681035981984436, + 48.82329293223149 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_663", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266265963881081, + 48.82579507574827 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11016", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer buergerianum", + "species:FR": "Erable à écorce de dragon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2834832476547366, + 48.828304555288526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11496", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer ginnala", + "species:FR": "Erable du fleuve Amour" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276692063075868, + 48.827077467158006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11753", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245150654853936, + 48.819367809461426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16390", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252261478660511, + 48.8220180705965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9969", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673518489264763, + 48.81767931662469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30771", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625800061581267, + 48.827814215796764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9902", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584578827911153, + 48.81797085417723 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13128", + "ref:FR:issy_les_mx:ordre_arbre": "101", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668545089956607, + 48.81817702663212 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28319", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644402987433736, + 48.8197038712008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13001", + "ref:FR:issy_les_mx:ordre_arbre": "317", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263189543514055, + 48.81539245158864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16303", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260528094744794, + 48.81655395543488 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27053", + "ref:FR:issy_les_mx:ordre_arbre": "421a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719543689762554, + 48.82157103875529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12091", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601467301093603, + 48.8158420226321 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15775", + "ref:FR:issy_les_mx:ordre_arbre": "278", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653895592336157, + 48.83014497573642 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10289", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257895574649753, + 48.816505798505794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30013", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254574099005263, + 48.81717979060094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12258", + "ref:FR:issy_les_mx:ordre_arbre": "193", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263502666408078, + 48.819619993894605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13926", + "ref:FR:issy_les_mx:ordre_arbre": "354", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260974371404559, + 48.816070862411614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15978", + "ref:FR:issy_les_mx:ordre_arbre": "438", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794271597947935, + 48.82309056352831 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29906", + "ref:FR:issy_les_mx:ordre_arbre": "90a", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2458458953622893, + 48.82116486940233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10532", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27277331836491, + 48.82536176868537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12083", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685967012769512, + 48.81794646280175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30772", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260707053959247, + 48.822805571029626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29882", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661569959542422, + 48.824049086851936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27175", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276928493430756, + 48.82209397349131 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9967", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608386252208343, + 48.82339071720378 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11704", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278635266991214, + 48.82379578388976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21262", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804028632327786, + 48.82329994174296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14068", + "ref:FR:issy_les_mx:ordre_arbre": "106", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803724839405657, + 48.82357949718144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27882", + "ref:FR:issy_les_mx:ordre_arbre": "159c", + "species": "Magnolia sp.", + "species:FR": "Magnolia indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788806178949366, + 48.82294686274682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14600", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578440221995963, + 48.817186130635235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22233", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586011711724234, + 48.81559714916124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12184", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266519820030014, + 48.81598460301128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27803", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599342843140873, + 48.82354954528304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10994", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245030842671247, + 48.82198248585798 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10286", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272372865231358, + 48.82455250181418 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22356", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2563329697181764, + 48.82436976275723 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27869", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257508177643053, + 48.81657813145958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30023", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278508367312587, + 48.830131749130686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27790", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274212436223491, + 48.821363216040965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10243", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26477599294471, + 48.81474656555544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12061", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608568457585863, + 48.82281600488966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27526", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267747312039672, + 48.82053817284427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28281", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588683547702972, + 48.81876789714057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14578", + "ref:FR:issy_les_mx:ordre_arbre": "243", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277758584785158, + 48.82208957889135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11316", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272667484600327, + 48.821019978578875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12316", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686394830683665, + 48.820692069503295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21864", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258902599438952, + 48.82493937739196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17194", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726042110315556, + 48.82560766556575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12081", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262820915166146, + 48.82003968841889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16098", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263033487369198, + 48.826655978303485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16546", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Malus 'Golden Hornet'", + "species:FR": "Pommier d'ornement à fleurs blanches" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261592689211035, + 48.81509736537403 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21596", + "ref:FR:issy_les_mx:ordre_arbre": "381", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661416906851675, + 48.820464103748904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11353", + "ref:FR:issy_les_mx:ordre_arbre": "557", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616318092977954, + 48.81657487694959 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15841", + "ref:FR:issy_les_mx:ordre_arbre": "228", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2529713029856073, + 48.821076853855196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26673", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273464949110829, + 48.82470274962209 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10500", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245830924126594, + 48.8187309922746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11677", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538322013509653, + 48.822457373436556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10068", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263913331744838, + 48.82411573414717 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11052", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638223213050437, + 48.82407293319066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11721", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256118397004687, + 48.82071451879211 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12497", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603718484748194, + 48.81589660335252 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16052", + "ref:FR:issy_les_mx:ordre_arbre": "285", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26659811454341, + 48.824221810172006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10100", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597733204706003, + 48.81821423064212 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29767", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573734331985706, + 48.81808724560396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12284", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653040628793186, + 48.82659993995576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10348", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562068818100642, + 48.8242618616089 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27845", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533396578648626, + 48.81756361177951 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11234", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611936522350087, + 48.81649562824894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16023", + "ref:FR:issy_les_mx:ordre_arbre": "236", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246663507306028, + 48.821330539379936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16300", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pinus pinaster", + "species:FR": "Pin maritime" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251499190472503, + 48.81952343371679 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12988", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589167740912903, + 48.817076412321 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29475", + "ref:FR:issy_les_mx:ordre_arbre": "2" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259527863831262, + 48.816548751329734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30032", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277575505969288, + 48.82165529605771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16308", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2513193254873247, + 48.81979440685511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13543", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257686057929898, + 48.816175230754546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30075", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251875228375889, + 48.81905805181028 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27819", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636225800368743, + 48.82682747401183 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9631", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2496029570308145, + 48.820752365873254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16531", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776160287876404, + 48.82896113538264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12852", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602067000198685, + 48.81770018700357 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28590", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283243616955282, + 48.82993830668827 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13236", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795483587882766, + 48.822864573387314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15840", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259184248988502, + 48.81855357011969 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14279", + "ref:FR:issy_les_mx:ordre_arbre": "584", + "species": "Tilia x euchlora", + "species:FR": "Tilleul de Crimée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267600470262499, + 48.82116772039218 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10866", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562431052494034, + 48.824357871348354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27860", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538074929654432, + 48.81804495554251 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12360", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267658430481159, + 48.82039768746618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14066", + "ref:FR:issy_les_mx:ordre_arbre": "204", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578798180877544, + 48.8164263745141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30016", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656516104107656, + 48.829352039346794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14104", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599282446687092, + 48.826001426301076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11827", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576067030397255, + 48.816344362680766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30069", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265170920736335, + 48.81979079722197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14042", + "ref:FR:issy_les_mx:ordre_arbre": "363", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266803283930574, + 48.820349949183274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22152", + "ref:FR:issy_les_mx:ordre_arbre": "540", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639227127277826, + 48.829496619824496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10581", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276461438809047, + 48.82460673357862 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12751", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Populus alba 'Nivea'", + "species:FR": "Peuplier argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272304336808148, + 48.821442695600794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13359", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672797076485973, + 48.81767210104335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28244", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537418962434086, + 48.81941489211262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26674", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fraxinus ornus 'Obelisk'", + "species:FR": "Frêne à fleurs 'Obelisk'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260256529318753, + 48.816237668369965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29449", + "ref:FR:issy_les_mx:ordre_arbre": "561a", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577897063545764, + 48.81622237297862 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30066", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27183715757717, + 48.82072828856581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27541", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263766157588156, + 48.82416807380789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14382", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788988686725355, + 48.82295085010235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16429", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270073046015952, + 48.82519274899658 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26784", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669883658701626, + 48.817973953029735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20674", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus communis 'Général de Bonchamps'", + "species:FR": "Poirier 'Général de Bonchamps'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247614810668848, + 48.823680155137545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30558", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Ulmus x hollandica", + "species:FR": "Orme de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267069871779752, + 48.817001996181105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20774", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus cerasus 'Reverchon'", + "species:FR": "Cerisier 'Reverchon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651281750503154, + 48.82674487581327 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11525", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27197988959322, + 48.823106836681944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11698", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617445441362642, + 48.83001022146545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28962", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269329573018033, + 48.817745895456966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20400", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628691745769682, + 48.815126137974275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15906", + "ref:FR:issy_les_mx:ordre_arbre": "179", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267828841480848, + 48.81621471908379 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6704", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617787517009176, + 48.827436507267684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28079", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680345677787956, + 48.83283176849242 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11200", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2823096417458815, + 48.82997493898046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22232", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268715937549885, + 48.82091637358775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13166", + "ref:FR:issy_les_mx:ordre_arbre": "590", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261143630179504, + 48.82434681993333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11861", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2511855662865377, + 48.820161748279745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11884", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689616016546643, + 48.82063638431093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14374", + "ref:FR:issy_les_mx:ordre_arbre": "163", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588840870220217, + 48.81860656633114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14686", + "ref:FR:issy_les_mx:ordre_arbre": "426", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669197479325405, + 48.828276601065554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28057", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2458157956569598, + 48.82313142335054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30061", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26476311410212, + 48.82395027985057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9918", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260184482194599, + 48.815930890303775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27603", + "ref:FR:issy_les_mx:ordre_arbre": "584", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685530752312753, + 48.81687664841396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20322", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus coccinea", + "species:FR": "Chêne écarlate" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586906591384017, + 48.82482347541484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16907", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641608306779726, + 48.82035277564784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14368", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544850698023944, + 48.817571537020115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12489", + "ref:FR:issy_les_mx:ordre_arbre": "129", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278723410786867, + 48.825661415348826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12397", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733334749028233, + 48.82516310091953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10138", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272346768474758, + 48.81630870333391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9881", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263459212158176, + 48.826727195566654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30535", + "ref:FR:issy_les_mx:ordre_arbre": "16a", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267078404957198, + 48.82061288569396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13560", + "ref:FR:issy_les_mx:ordre_arbre": "562", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24460488625325, + 48.820901948788766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9191", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265245020471593, + 48.82489879290767 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9823", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259892711281772, + 48.81830409941519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29747", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274643290397065, + 48.82180965164798 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10117", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2444245746462057, + 48.8215518175232 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9982", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576134903393417, + 48.81641284838537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30027", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654064245876944, + 48.82918882449574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14083", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2503949090252506, + 48.82326196734343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8979", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677211817627705, + 48.81726657581093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20284", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Pyrus communis 'Général de Bonchamps'", + "species:FR": "Poirier 'Général de Bonchamps'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279459282517934, + 48.82285509653188 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14215", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605857696858993, + 48.824590038327784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15853", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598669238949673, + 48.817460027672034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28544", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2464620629970065, + 48.81985549414371 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13679", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271701208296704, + 48.81588171911854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10206", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646732995511143, + 48.81986782322183 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30788", + "ref:FR:issy_les_mx:ordre_arbre": "412a", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696286592879584, + 48.82582312754628 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27932", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681384393418567, + 48.81681861219995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20750", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Prunus cerasus 'Anglaise Hative'", + "species:FR": "Cerisier 'Anglaise Hative'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2582885865997473, + 48.817629252894385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16585", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254744417760689, + 48.81801758210646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12290", + "ref:FR:issy_les_mx:ordre_arbre": "259", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662207165214694, + 48.820248807492014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14193", + "ref:FR:issy_les_mx:ordre_arbre": "387", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278954288960328, + 48.82941975540527 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14895", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259489799191234, + 48.81862818916865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14677", + "ref:FR:issy_les_mx:ordre_arbre": "324", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259941438036513, + 48.81887428098599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14197", + "ref:FR:issy_les_mx:ordre_arbre": "405", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259560556730858, + 48.81870598839777 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13858", + "ref:FR:issy_les_mx:ordre_arbre": "287", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594499715429692, + 48.81871525851475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13061", + "ref:FR:issy_les_mx:ordre_arbre": "264", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261703373056671, + 48.81607869077873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16074", + "ref:FR:issy_les_mx:ordre_arbre": "210", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261067798303263, + 48.82747225977016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10281", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27237038193606, + 48.825936200781825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21591", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247169954032654, + 48.82260743648241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9800", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665913280550405, + 48.82766651590216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28215", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619717182226435, + 48.81632200971916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15400", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611940236570134, + 48.815513680713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16436", + "ref:FR:issy_les_mx:ordre_arbre": "92", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669435053661977, + 48.82829203621773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28056", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675905117167363, + 48.820341132514734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14043", + "ref:FR:issy_les_mx:ordre_arbre": "206", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243669227641046, + 48.821786834269545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9599", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604000898091092, + 48.81802638597727 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29741", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2480502229884776, + 48.81848964200889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11867", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649819348375377, + 48.826870983515356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11523", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268237139367605, + 48.8207711521105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13057", + "ref:FR:issy_les_mx:ordre_arbre": "582", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247953873990271, + 48.820241160416124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14381", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690521810648008, + 48.81634535764552 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20220", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276868005946291, + 48.82269739303569 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10410", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255321867443522, + 48.82305414159094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10755", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266902775107952, + 48.83212000807435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11600", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261897609102276, + 48.81592373053349 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16043", + "ref:FR:issy_les_mx:ordre_arbre": "206", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594734434036483, + 48.818822610939584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14179", + "ref:FR:issy_les_mx:ordre_arbre": "471", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269485668101109, + 48.821039875350124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29571", + "ref:FR:issy_les_mx:ordre_arbre": "602a", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598705691284677, + 48.82291204971427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16412", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271521722612583, + 48.822691253280176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10076", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251709716782519, + 48.81954662966572 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13332", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Fagus sylvatica 'Asplenifolia'", + "species:FR": "Hêtre commun lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625988874358347, + 48.81572019117276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15862", + "ref:FR:issy_les_mx:ordre_arbre": "141", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647623401643755, + 48.82236138468128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12674", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2728735638713653, + 48.81655270480657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11644", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680160080499845, + 48.820607981460576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13096", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254872925819472, + 48.81746858264466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11904", + "ref:FR:issy_les_mx:ordre_arbre": "169", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259798861034492, + 48.81823281369581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29771", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24627423102342, + 48.81862385847557 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11134", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264009823694778, + 48.82394111151169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12693", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244858976802413, + 48.82148836907314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13741", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615942081005116, + 48.82465481810391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12242", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260510113708869, + 48.81883728465476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16669", + "ref:FR:issy_les_mx:ordre_arbre": "236", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2443333269971997, + 48.8216813036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10765", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616359005769224, + 48.81459887634863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27742", + "ref:FR:issy_les_mx:ordre_arbre": "723", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680958201668977, + 48.820550696456046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13577", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636562312332296, + 48.81992237665972 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20894", + "ref:FR:issy_les_mx:ordre_arbre": "466", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276385295193098, + 48.82835878829336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13762", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259644614601883, + 48.81879610434133 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14002", + "ref:FR:issy_les_mx:ordre_arbre": "369", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277143589534704, + 48.829171778861685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12159", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2519165564529096, + 48.81916520905177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14917", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681422376628784, + 48.81601208809439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29826", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625448397466243, + 48.81446367232803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15942", + "ref:FR:issy_les_mx:ordre_arbre": "362", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686159164268074, + 48.81810730269646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20708", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2483283266166323, + 48.820354978068224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11373", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265731372808319, + 48.814189563459195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11473", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279409099627879, + 48.82714047904969 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9957", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285771272649193, + 48.82874802849925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10326", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268675887199842, + 48.81751520995128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20473", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265445415448126, + 48.8269116130734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21184", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641428605432306, + 48.824128550807885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10002", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Betula utilis", + "species:FR": "Bouleau de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279399729801913, + 48.82238026456887 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11580", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2540909031468614, + 48.82276905660505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10829", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265597086273488, + 48.83018107757791 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29889", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598303774366446, + 48.818276259556356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29755", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680694593669064, + 48.81658488840519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20361", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Prunus cerasus 'Tardif de Vignola'", + "species:FR": "Cerisier 'Tardif de Vignola'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256105025576348, + 48.824231278231146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27837", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268032779923369, + 48.82021149840286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13640", + "ref:FR:issy_les_mx:ordre_arbre": "180", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600132785515354, + 48.81888805385626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21397", + "ref:FR:issy_les_mx:ordre_arbre": "406", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612587916472093, + 48.82488717124836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11208", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615246637981854, + 48.815921059530694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15303", + "ref:FR:issy_les_mx:ordre_arbre": "454", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595006225170113, + 48.81720365785758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29653", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264244339097189, + 48.820234701269946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27814", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645677613440762, + 48.81996563141026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14314", + "ref:FR:issy_les_mx:ordre_arbre": "426", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262900412628061, + 48.827390082925234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10135", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674876989331327, + 48.82324787553193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10263", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2746036885031167, + 48.821376800451084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11000", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616390902703363, + 48.82994583386593 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28958", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264196777579078, + 48.82017882640786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16544", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250689129900441, + 48.82028914503574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28767", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus x warei 'Regal Prince'", + "species:FR": "Chêne colonnaire 'Regal Prince'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794918642573077, + 48.8231236587561 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14676", + "ref:FR:issy_les_mx:ordre_arbre": "92", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537427425031478, + 48.817115154247546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28234", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279290451109633, + 48.824039536875425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13326", + "ref:FR:issy_les_mx:ordre_arbre": "112", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718251424802456, + 48.825145275221686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26769", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus phellos", + "species:FR": "Chêne à feuilles de saule" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26061256118687, + 48.82390720366009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10097", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261735629716551, + 48.815076619093134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27662", + "ref:FR:issy_les_mx:ordre_arbre": "643", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514103879137672, + 48.81885934427074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29853", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686731173082206, + 48.82254915146193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14625", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267395655479502, + 48.82106931441746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11155", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590038975858175, + 48.818765443172936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14378", + "ref:FR:issy_les_mx:ordre_arbre": "610", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618815846692764, + 48.815002151797366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27713", + "ref:FR:issy_les_mx:ordre_arbre": "694", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697587930632928, + 48.82154487425515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11013", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258114636873483, + 48.81788860274716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12413", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705754942033423, + 48.82134960828006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_7854", + "ref:FR:issy_les_mx:ordre_arbre": "604", + "species": "Cedrus deodara 'Aurea'", + "species:FR": "Cèdre de l'Himalaya doré" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266283272229359, + 48.820386101429456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29564", + "ref:FR:issy_les_mx:ordre_arbre": "528b", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715860403778265, + 48.8272705814048 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9873", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253084023754522, + 48.82206793047934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10421", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2764567541993674, + 48.82708670238234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12481", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252042033884073, + 48.821978685831894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11515", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259073226267192, + 48.81712029855168 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29604", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261602706306469, + 48.81616087649013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16077", + "ref:FR:issy_les_mx:ordre_arbre": "213", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257652474035294, + 48.81842805751806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22285", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739762533056327, + 48.8238256694552 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16599", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595491474527507, + 48.817747694603966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29657", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261569740054647, + 48.81461636541285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27748", + "ref:FR:issy_les_mx:ordre_arbre": "729", + "species": "Pinus sp.", + "species:FR": "Pin indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595471469643593, + 48.81871030871527 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17149", + "ref:FR:issy_les_mx:ordre_arbre": "276", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259573514980509, + 48.81874150544739 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13029", + "ref:FR:issy_les_mx:ordre_arbre": "254", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628108147603494, + 48.81509825214198 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16210", + "ref:FR:issy_les_mx:ordre_arbre": "343", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588835277000716, + 48.82272100812474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30669", + "ref:FR:issy_les_mx:ordre_arbre": "18a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787162512836474, + 48.829091493570495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26158", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266064614902175, + 48.8276383412413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14623", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604105465761797, + 48.8159168120041 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16090", + "ref:FR:issy_les_mx:ordre_arbre": "286", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273761091749959, + 48.827673959551674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9765", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691045106761294, + 48.822396109807215 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12627", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656296027485463, + 48.825808825956095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9634", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265409748228936, + 48.81995222125725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13548", + "ref:FR:issy_les_mx:ordre_arbre": "371", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2555276613114477, + 48.82232197817319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12117", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258386724793778, + 48.82458535354423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17120", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2756733546354826, + 48.82250767578132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11487", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621502888325207, + 48.81465493768061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27732", + "ref:FR:issy_les_mx:ordre_arbre": "713", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628366626291148, + 48.82004544538955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16097", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2453631846971036, + 48.821060074823805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9928", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780870844214656, + 48.8238638597297 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27877", + "ref:FR:issy_les_mx:ordre_arbre": "45e", + "species": "Salix caprea", + "species:FR": "Saule marsault" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560622661479157, + 48.824221028932286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27828", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596649317400983, + 48.816515603638216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29703", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619398770122534, + 48.81580468757058 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16054", + "ref:FR:issy_les_mx:ordre_arbre": "319", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595969926316335, + 48.82450101114724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17030", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603620841122716, + 48.81596050660816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15800", + "ref:FR:issy_les_mx:ordre_arbre": "273", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2855960177113706, + 48.82866086306695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30554", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618381704974695, + 48.815889291828 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16053", + "ref:FR:issy_les_mx:ordre_arbre": "317", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258334321806357, + 48.81557223419405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12527", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248882573796453, + 48.81982665859007 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10658", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280851827365209, + 48.823729850432564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11916", + "ref:FR:issy_les_mx:ordre_arbre": "169", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718935516130037, + 48.82556070509629 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30611", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601127677458206, + 48.81828953655374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29724", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259753446283073, + 48.82555560853311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16639", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258616643901734, + 48.81880719327137 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13038", + "ref:FR:issy_les_mx:ordre_arbre": "642", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269371223070613, + 48.81640150310476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20702", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus domestica 'Reine-Claude Diaphane'", + "species:FR": "Prunier 'Reine-Claude Diaphane'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615152885891283, + 48.8144994679066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27747", + "ref:FR:issy_les_mx:ordre_arbre": "728", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244312557906613, + 48.821730029649196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10766", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476859724126905, + 48.82204276777523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14307", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266992782044659, + 48.8152884097263 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29838", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279524231969319, + 48.82311716607569 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15867", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279163082452448, + 48.824091291737645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13501", + "ref:FR:issy_les_mx:ordre_arbre": "109", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771817387415827, + 48.82801150787177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9579", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268947130598816, + 48.81719485814992 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20219", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782767562032795, + 48.823852133287325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13353", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681043017933797, + 48.820191308123206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14138", + "ref:FR:issy_les_mx:ordre_arbre": "176", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732015605050666, + 48.821327039707334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28009", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688201438869657, + 48.82051939932903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15843", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609538196632646, + 48.823439373012164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12746", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796577587346705, + 48.823338168465575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13725", + "ref:FR:issy_les_mx:ordre_arbre": "218", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590368504503853, + 48.81662917122844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29937", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266878905707676, + 48.81966079374484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11143", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247961028761286, + 48.81839351981786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13535", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774677200082665, + 48.82832703368141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9577", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272378786232135, + 48.821433194503186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13382", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26212713039413, + 48.815192370136565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15804", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264698074049528, + 48.82965164671424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11279", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653528728118557, + 48.820913814903825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10961", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270118086851725, + 48.81479609678223 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10428", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774696178412555, + 48.82906780161899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12948", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257173224154273, + 48.82257567248507 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10725", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683611759134963, + 48.82129918127536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11002", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670519678757426, + 48.82027464367849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12296", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275602698197512, + 48.822465587220584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11513", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260029354290388, + 48.81799420705221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29801", + "ref:FR:issy_les_mx:ordre_arbre": "98", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25918606593926, + 48.81901753488878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15726", + "ref:FR:issy_les_mx:ordre_arbre": "525", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607554517727664, + 48.815669949146674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16262", + "ref:FR:issy_les_mx:ordre_arbre": "392", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271095502528368, + 48.82521155683542 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26762", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588271172305614, + 48.81860952637129 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14679", + "ref:FR:issy_les_mx:ordre_arbre": "562", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634453311420404, + 48.82694467020522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11786", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259292903063979, + 48.81892100481578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16826", + "ref:FR:issy_les_mx:ordre_arbre": "496", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655988032297003, + 48.82590039608463 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22008", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274245442436666, + 48.827617930109255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12371", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589736846275894, + 48.81812856847543 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21430", + "ref:FR:issy_les_mx:ordre_arbre": "110", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258716109989493, + 48.81665902049278 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29518", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636997522161293, + 48.82674200282145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30534", + "ref:FR:issy_les_mx:ordre_arbre": "13a", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2492574036675137, + 48.81852407373236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11865", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689552829286677, + 48.820108268866946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16419", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2824842511904753, + 48.8298171519619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11987", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28227794708167, + 48.82985651842562 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11995", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260444250633363, + 48.82558483380432 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16952", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767429612561054, + 48.822680578802355 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10386", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251563658908538, + 48.81888787947552 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10254", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2465757206613075, + 48.81875967400808 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11570", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670380881510668, + 48.820233369393385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21806", + "ref:FR:issy_les_mx:ordre_arbre": "210", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2744667822013676, + 48.82170465825519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10261", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606451117135524, + 48.8166237777201 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16033", + "ref:FR:issy_les_mx:ordre_arbre": "424", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2487178851206457, + 48.82308684376049 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9788", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597081300670987, + 48.81882469089741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27926", + "ref:FR:issy_les_mx:ordre_arbre": "366d", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630808620664262, + 48.814875931810306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15953", + "ref:FR:issy_les_mx:ordre_arbre": "350", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246912282398616, + 48.81900292135935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9883", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788814758164637, + 48.82180495924782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14601", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620326440738423, + 48.815422067389825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15885", + "ref:FR:issy_les_mx:ordre_arbre": "134", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535647011420696, + 48.81787967146413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12684", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560936014972075, + 48.82421097100093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27829", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26002388191076, + 48.822815334011175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27527", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260172200450467, + 48.81591345604997 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27613", + "ref:FR:issy_les_mx:ordre_arbre": "594", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261901001985113, + 48.827816710737046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28067", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578225955114024, + 48.816198473599286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30065", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26190859267606, + 48.81499908080877 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27720", + "ref:FR:issy_les_mx:ordre_arbre": "701", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545400015971557, + 48.81721231927265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12488", + "ref:FR:issy_les_mx:ordre_arbre": "188", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714807012805136, + 48.82722022258923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10958", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer rubrum 'Red Sunset'", + "species:FR": "Erable rouge 'Red Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624993719176394, + 48.81468065659419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28384", + "ref:FR:issy_les_mx:ordre_arbre": "356a", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262287724062521, + 48.81564182168947 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16371", + "ref:FR:issy_les_mx:ordre_arbre": "196", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708623137515915, + 48.82173235742762 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11952", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651626866669785, + 48.820088401087574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11479", + "ref:FR:issy_les_mx:ordre_arbre": "447", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662366332723303, + 48.8206370916929 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11354", + "ref:FR:issy_les_mx:ordre_arbre": "558", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25952386290599, + 48.81904183601401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13054", + "ref:FR:issy_les_mx:ordre_arbre": "210", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597611785009852, + 48.81893492462076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27921", + "ref:FR:issy_les_mx:ordre_arbre": "340f", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595884449891637, + 48.81874492927758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13030", + "ref:FR:issy_les_mx:ordre_arbre": "255", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26766951850502, + 48.82043684090155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28289", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584392613859667, + 48.82459727975769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16904", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255240323638452, + 48.81738350798045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12589", + "ref:FR:issy_les_mx:ordre_arbre": "198", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256737116037868, + 48.82030583057782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13439", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615951895408926, + 48.83001331823902 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28959", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700911124746574, + 48.8175653787712 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29426", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531292078785876, + 48.82109257089114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26644", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus robur 'Fastigiata Koster'", + "species:FR": "Chêne pédonculé fastigié 'Koster'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2468107455891184, + 48.82344342096029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30559", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Ulmus x hollandica", + "species:FR": "Orme de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646043037506383, + 48.82285440527994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12664", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2798700854445273, + 48.82379768125361 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13176", + "ref:FR:issy_les_mx:ordre_arbre": "99", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260300233958601, + 48.81642811836252 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16183", + "ref:FR:issy_les_mx:ordre_arbre": "420", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2478706031386704, + 48.81985404910057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10057", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263854696088471, + 48.82712508151768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9391", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655465880692427, + 48.829209623245276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30621", + "ref:FR:issy_les_mx:ordre_arbre": "35a", + "species": "Prunus serrulata 'Accolade'", + "species:FR": "Cerisier du Japon 'Accolade'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653095580767717, + 48.83051316413846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10736", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790594900265577, + 48.82361930995597 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14509", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277342466492577, + 48.82951867693053 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16518", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647308382896125, + 48.82262606486764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12544", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28561334588292, + 48.82923663001848 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11660", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624112603115125, + 48.81550156442864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16240", + "ref:FR:issy_les_mx:ordre_arbre": "191", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2494709206957118, + 48.81917372355468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10452", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27419449755475, + 48.82767218519142 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28010", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643174723306334, + 48.82628524800863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11553", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584734720253947, + 48.817755221846866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16613", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666744471805984, + 48.82963598578304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12788", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614395239468443, + 48.8156460666409 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15832", + "ref:FR:issy_les_mx:ordre_arbre": "97", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679723626209682, + 48.82730623173982 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27016", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280478466010507, + 48.822724237362195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11043", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2568124961570026, + 48.81679991358615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29953", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26849094207609, + 48.81616665242589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20744", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Prunus cerasus 'Tardif de Vignola'", + "species:FR": "Cerisier 'Tardif de Vignola'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701364376661983, + 48.825230747349 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26783", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792397192242895, + 48.82414333974758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13138", + "ref:FR:issy_les_mx:ordre_arbre": "107", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792531154638143, + 48.82260232577856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12822", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661222681168813, + 48.82087389194118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11064", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263114258212054, + 48.81484608822096 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15954", + "ref:FR:issy_les_mx:ordre_arbre": "351", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585724689203412, + 48.818530325160545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14667", + "ref:FR:issy_les_mx:ordre_arbre": "429", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269454022367626, + 48.81704654055688 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20330", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Prunus domestica 'Reine-Claude de Chambourcy'", + "species:FR": "Prunier 'Reine-Claude de Chambourcy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578286932552847, + 48.81558905881945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13733", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer cappadocicum", + "species:FR": "Erable de Cappadoce" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676357788805293, + 48.817383520617405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28259", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259314163286316, + 48.82466059722565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17033", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2553364109202025, + 48.82282739845118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12431", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263089304271573, + 48.82002797424413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13418", + "ref:FR:issy_les_mx:ordre_arbre": "495", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2493281050175677, + 48.82074695323947 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11254", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261770621215196, + 48.81594539759401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16079", + "ref:FR:issy_les_mx:ordre_arbre": "315", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271420917322158, + 48.822600767927874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9863", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261390384148142, + 48.81593322314805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27772", + "ref:FR:issy_les_mx:ordre_arbre": "753", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558170972992224, + 48.82153337311701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15686", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636617103097634, + 48.82679944215289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22007", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263670685544236, + 48.819754168971535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12990", + "ref:FR:issy_les_mx:ordre_arbre": "336", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745377675321237, + 48.82143255605868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10312", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595019026986627, + 48.8187122651587 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13091", + "ref:FR:issy_les_mx:ordre_arbre": "269", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270801573966426, + 48.82173794526691 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11881", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266984041028818, + 48.81993351997872 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13065", + "ref:FR:issy_les_mx:ordre_arbre": "235", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248262788498282, + 48.819542648307916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10255", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245970078974502, + 48.82117279228626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21395", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279531383955359, + 48.822346969882425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11070", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592674438765177, + 48.817145905644516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29623", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2798821676356287, + 48.82326314797186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21858", + "ref:FR:issy_les_mx:ordre_arbre": "122", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804592390829197, + 48.82358010945276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27880", + "ref:FR:issy_les_mx:ordre_arbre": "159a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271651377216952, + 48.82697785373148 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11739", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2444005230397948, + 48.82195849210067 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9501", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263272208517552, + 48.82669843925973 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30537", + "ref:FR:issy_les_mx:ordre_arbre": "20a", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277728357831529, + 48.828881519560625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13268", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278797177437636, + 48.822847149283284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16311", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267893273520396, + 48.83295740036153 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11406", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256404687765866, + 48.81725264753477 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29961", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28063651240589, + 48.82351889438996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12036", + "ref:FR:issy_les_mx:ordre_arbre": "233", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691215693510864, + 48.81783872912351 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20367", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641980604631997, + 48.82010724858341 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12704", + "ref:FR:issy_les_mx:ordre_arbre": "500", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261596291654977, + 48.81456859196323 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27746", + "ref:FR:issy_les_mx:ordre_arbre": "727", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268132915658768, + 48.816362240384784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20328", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Prunus cerasus 'Tardif de Vignola'", + "species:FR": "Cerisier 'Tardif de Vignola'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789055970722005, + 48.823316579532666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13048", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539929861346675, + 48.817949589421126 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12765", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Cedrus libani", + "species:FR": "Cèdre du Liban" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2741378542178117, + 48.82151468704147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16276", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2532672711952233, + 48.82069980191008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26635", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27728926162959, + 48.829197920555494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13196", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258119862079784, + 48.82462732825068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16682", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658894836116703, + 48.829122399818665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14253", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271342742601545, + 48.82070028306241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12302", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278210659977361, + 48.8216014247542 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14494", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676892461888003, + 48.820273067673945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13576", + "ref:FR:issy_les_mx:ordre_arbre": "193", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688228475990515, + 48.82081666534511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14087", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2727155814778244, + 48.825645090204794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10346", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771776793190184, + 48.82914032242879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12124", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279468012745577, + 48.82384881614114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20895", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261884551349123, + 48.814984991768306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27710", + "ref:FR:issy_les_mx:ordre_arbre": "691", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788056310082303, + 48.82179625244858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22234", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620012490345016, + 48.81506079540177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16582", + "ref:FR:issy_les_mx:ordre_arbre": "522", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2468899917155087, + 48.82254149884029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28705", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660925573334274, + 48.816074796760155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29430", + "ref:FR:issy_les_mx:ordre_arbre": "0a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2524423972052072, + 48.821879990972846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11611", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721683830126214, + 48.82263819197685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11321", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715707165562353, + 48.82594490333794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21891", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2832085796700405, + 48.82730966934049 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11712", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274066098547427, + 48.8214721051794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10031", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2477863630237045, + 48.82282522650697 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9378", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259502065937287, + 48.81725840989027 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29650", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264650388215989, + 48.82276861960629 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12665", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2753785898885996, + 48.82300419926253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8984", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265136773566538, + 48.82384533098004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11653", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272056015568994, + 48.820784989749185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12095", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683558113141284, + 48.82069605421068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30821", + "ref:FR:issy_les_mx:ordre_arbre": "25a", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277474263715261, + 48.821359727552796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13013", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718153646586514, + 48.822956778748086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10073", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825044443060536, + 48.82960922575614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13651", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587858408566315, + 48.816649289913016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29515", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545118204510213, + 48.817780456515685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13657", + "ref:FR:issy_les_mx:ordre_arbre": "236", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2756435601762552, + 48.82308263613333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9756", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2860733483725832, + 48.82777560128596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10921", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265033098121448, + 48.82682765929293 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11524", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276122623362877, + 48.82737091208341 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11260", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633120842770236, + 48.826679829522725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9190", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Malus 'Golden Hornet'", + "species:FR": "Pommier d'ornement à fleurs blanches" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28043303867488, + 48.83131230797533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30721", + "ref:FR:issy_les_mx:ordre_arbre": "5a", + "species": "Acer davidii", + "species:FR": "Erable du Père David" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650032872239736, + 48.82534158146619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16547", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770125786812567, + 48.829268201112384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12951", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272091107746813, + 48.82634391445656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12195", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250224810592816, + 48.823471107245446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9806", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.286004090009425, + 48.82799134586346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11449", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567538284983835, + 48.81671185827161 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29951", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260172967809787, + 48.816778312645425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28559", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259136849652108, + 48.81836087027747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29488", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267895302641356, + 48.820495629292544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11876", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679965360328564, + 48.81670270412351 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30779", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2835464314804685, + 48.828254415987274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22470", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer ginnala", + "species:FR": "Erable du fleuve Amour" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26240225425273, + 48.82920650054112 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8517", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer capillipes", + "species:FR": "Erable à peau de serpent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669306940991123, + 48.82038824683752 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13975", + "ref:FR:issy_les_mx:ordre_arbre": "547", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264449716266948, + 48.82620123949101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11527", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715854171260745, + 48.815901396226735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10279", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781323225653187, + 48.82210628095282 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11552", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654965747946045, + 48.82453116428636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30612", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262479785392036, + 48.81544474119787 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16440", + "ref:FR:issy_les_mx:ordre_arbre": "189", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2457007976884715, + 48.81860616511961 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10513", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261831133233395, + 48.81501623040896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27687", + "ref:FR:issy_les_mx:ordre_arbre": "668", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613609870847204, + 48.821722861025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9430", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2499905525240433, + 48.82323326658346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9394", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2765869215510857, + 48.82185796514936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9955", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687876151291064, + 48.82139180240615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12265", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262800620050623, + 48.81518288840774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16565", + "ref:FR:issy_les_mx:ordre_arbre": "181", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260242727913684, + 48.8154348776361 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29442", + "ref:FR:issy_les_mx:ordre_arbre": "471a", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545516992871533, + 48.81738408740435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12588", + "ref:FR:issy_les_mx:ordre_arbre": "149", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589567388358365, + 48.81844569278465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14442", + "ref:FR:issy_les_mx:ordre_arbre": "538", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793726239447696, + 48.823823014278325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12872", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258240860944296, + 48.81797971631676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12443", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278850836017016, + 48.82328799413346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13195", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267456481241158, + 48.81719523388868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28261", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Pyrus communis 'Conférence'", + "species:FR": "Poirier 'Conférence'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661767833527597, + 48.82422840222551 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27187", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271362357381775, + 48.81709502201361 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27097", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649971431648255, + 48.81962302466696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13596", + "ref:FR:issy_les_mx:ordre_arbre": "273", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795157496308733, + 48.823034068680464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15718", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25434272074949, + 48.8175603419287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29494", + "ref:FR:issy_les_mx:ordre_arbre": "124b", + "species": "Salix alba", + "species:FR": "Saule blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245185651673925, + 48.82154315741305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10951", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263089746856448, + 48.81548097655134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15974", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780495562703784, + 48.822102246438334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11455", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488285727412234, + 48.81917858640655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12048", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551530220865077, + 48.81738182975903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29509", + "ref:FR:issy_les_mx:ordre_arbre": "198e", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2760363306534357, + 48.82168934964806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16188", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598410063696055, + 48.825626467172846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16640", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609118100386625, + 48.8167208831896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15933", + "ref:FR:issy_les_mx:ordre_arbre": "244", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575783650814993, + 48.8162399473839 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30076", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586425216458004, + 48.81887148282587 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13539", + "ref:FR:issy_les_mx:ordre_arbre": "650", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278725544525281, + 48.82392869254416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29583", + "ref:FR:issy_les_mx:ordre_arbre": "65g", + "species": "Sophora japonica 'Pendula'", + "species:FR": "Sophora du Japon pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618310386051457, + 48.815061379211905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27651", + "ref:FR:issy_les_mx:ordre_arbre": "632", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276371594970429, + 48.82579129210055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12240", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253364883186341, + 48.82048689110993 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26713", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587488198447696, + 48.816686025183294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29517", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643082122411915, + 48.823392409223366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30594", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258435420496574, + 48.82432013984244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17201", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2760084167535717, + 48.82260901404068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10013", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285810528672427, + 48.82861582166914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9865", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248870020117883, + 48.81907148785808 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16530", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2828833524942063, + 48.82975530906984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11962", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775813333184853, + 48.82824961570772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9706", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664881099036585, + 48.82569687506914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11276", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25867640789388, + 48.81883626795752 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21897", + "ref:FR:issy_les_mx:ordre_arbre": "644", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575640355433224, + 48.818232520828055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12007", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677397143279796, + 48.82070088084344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21311", + "ref:FR:issy_les_mx:ordre_arbre": "573", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261489451204968, + 48.81589665284625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21538", + "ref:FR:issy_les_mx:ordre_arbre": "455", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630295655086488, + 48.82788429270549 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27981", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Betula utilis", + "species:FR": "Bouleau de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658129034413625, + 48.82091212512436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11378", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262024374544089, + 48.81512947623925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15903", + "ref:FR:issy_les_mx:ordre_arbre": "523", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266273812435937, + 48.82776593359887 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10974", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606171272604274, + 48.817157036588405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28570", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24535981404797, + 48.821042086489726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10719", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624980978883897, + 48.81463604526173 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15967", + "ref:FR:issy_les_mx:ordre_arbre": "357", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588141342431767, + 48.81892565160417 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13386", + "ref:FR:issy_les_mx:ordre_arbre": "666", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695711398939395, + 48.82230624599886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15195", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264338067480607, + 48.81993878398783 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13317", + "ref:FR:issy_les_mx:ordre_arbre": "418", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264894867845196, + 48.82584299262318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10052", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691329947532353, + 48.82089842061203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14012", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25367062574364, + 48.81756761374225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12205", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589047092515218, + 48.818565779273605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14683", + "ref:FR:issy_les_mx:ordre_arbre": "417", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259576607259197, + 48.81780563873881 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29658", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251161389352277, + 48.81935772346851 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11507", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612581607078694, + 48.8264942177332 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12087", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26682412933128, + 48.82964174445509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12787", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617438012480267, + 48.82613822673881 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9416", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596111921342383, + 48.818803224594184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27923", + "ref:FR:issy_les_mx:ordre_arbre": "366a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260818672859378, + 48.82782216388445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27955", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261756414141272, + 48.815109125540296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27644", + "ref:FR:issy_les_mx:ordre_arbre": "625", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680362707136625, + 48.816313497901454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20761", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606286415104995, + 48.817190011958374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28571", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260163839218106, + 48.818892260685175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14018", + "ref:FR:issy_les_mx:ordre_arbre": "434", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250028219050594, + 48.81905940138468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11012", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266941991777485, + 48.818156635441994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20634", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545549220792926, + 48.81749299112676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12138", + "ref:FR:issy_les_mx:ordre_arbre": "139", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646158914833863, + 48.81993420893088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13873", + "ref:FR:issy_les_mx:ordre_arbre": "431", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561693494985247, + 48.81693274168817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14772", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461645858944363, + 48.81968431288526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12471", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27278953484828, + 48.82281864610274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12058", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621075097954133, + 48.81753589421825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10885", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608870991963097, + 48.81666311550406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15962", + "ref:FR:issy_les_mx:ordre_arbre": "248", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254639396941952, + 48.82014558332436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21749", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266118038196714, + 48.829190127086605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28020", + "ref:FR:issy_les_mx:ordre_arbre": "23.1", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607389984804667, + 48.8230295668435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10887", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598208269683377, + 48.818749497732696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12877", + "ref:FR:issy_les_mx:ordre_arbre": "225", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258804424505875, + 48.817976183300104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29463", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280146098747336, + 48.823563248202206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13341", + "ref:FR:issy_les_mx:ordre_arbre": "158", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280110724021271, + 48.8217610061676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28342", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268320359666375, + 48.82122813363609 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21562", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792791875520235, + 48.82326973661094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12561", + "ref:FR:issy_les_mx:ordre_arbre": "209", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619207445113703, + 48.82288345276807 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29876", + "ref:FR:issy_les_mx:ordre_arbre": "0c", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617867591059055, + 48.81648180040097 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14258", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Sorbus intermedia 'Brouwers'", + "species:FR": "Alisier de Suède 'Brouwers'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251537716876687, + 48.81974295914956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30684", + "ref:FR:issy_les_mx:ordre_arbre": "27c", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2760032636633514, + 48.82092965734095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17982", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244871655801745, + 48.8219948693496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11546", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653109397447055, + 48.8199295177611 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13520", + "ref:FR:issy_les_mx:ordre_arbre": "369", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626255328182667, + 48.81573565330459 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21513", + "ref:FR:issy_les_mx:ordre_arbre": "142", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260410714709893, + 48.82284739460542 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10003", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2501851067353598, + 48.82340708011106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9737", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261397326725399, + 48.81949305224398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11673", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651652215672518, + 48.81956296024462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14671", + "ref:FR:issy_les_mx:ordre_arbre": "295", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265127789644851, + 48.828912991910705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11239", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246403529695449, + 48.818768261265774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28771", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259815559927409, + 48.81611062159196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16298", + "ref:FR:issy_les_mx:ordre_arbre": "499", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647368187908157, + 48.819459362029136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14628", + "ref:FR:issy_les_mx:ordre_arbre": "303", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250567051129513, + 48.81915733600183 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10351", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259112559323339, + 48.819005998762776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13461", + "ref:FR:issy_les_mx:ordre_arbre": "529", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610614364432156, + 48.81638870894741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28389", + "ref:FR:issy_les_mx:ordre_arbre": "532", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2448896437015344, + 48.82214371267687 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9809", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2463736532455183, + 48.81866687186284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11760", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697349969653646, + 48.821055264912744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13318", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668242799273326, + 48.81695056825797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20357", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pyrus communis 'Doyenné Defays'", + "species:FR": "Poirier 'Doyenné Defays'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2749803947971032, + 48.82316080600417 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9741", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695089695459933, + 48.82739270780641 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29914", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256740578900781, + 48.81663820581944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29949", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796416196381477, + 48.82300607594988 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15899", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714134476300396, + 48.82619151724753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11312", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691161125144514, + 48.82257579036631 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13951", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627431613741837, + 48.82951554909758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8532", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2856713168861478, + 48.82906177786128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14748", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283617625966375, + 48.82753314576727 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12739", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598424546482394, + 48.81732584025873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28533", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257897774598497, + 48.816303449542026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30007", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648394610214106, + 48.82023081952636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12131", + "ref:FR:issy_les_mx:ordre_arbre": "510", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779400139961314, + 48.82102227037519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28352", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611105409060563, + 48.815968068675474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15930", + "ref:FR:issy_les_mx:ordre_arbre": "441", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254822829010916, + 48.82344729180251 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10212", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2515290718098413, + 48.818954393858796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16388", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615838720882895, + 48.81585869027844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29440", + "ref:FR:issy_les_mx:ordre_arbre": "105a", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606869542689316, + 48.81528203223886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27764", + "ref:FR:issy_les_mx:ordre_arbre": "745", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268613526783315, + 48.81657024336149 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20427", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Prunus cerasus 'Tardif de Vignola'", + "species:FR": "Cerisier 'Tardif de Vignola'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262074303290929, + 48.81569151469487 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16069", + "ref:FR:issy_les_mx:ordre_arbre": "323", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270164653060888, + 48.825307346371396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26782", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538671567908657, + 48.817952914091286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12478", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269952729449533, + 48.8174454374884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20509", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2768125121582727, + 48.827950079147904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30547", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Ligustrum ibota", + "species:FR": "Troène à feuilles ovales" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259764330168917, + 48.81872259878838 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27021", + "ref:FR:issy_les_mx:ordre_arbre": "459a", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2722843184022032, + 48.82084079199143 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27540", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260883950804656, + 48.82353880220626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10528", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259055528947221, + 48.816598977623734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29936", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260648299318627, + 48.824641506489556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9693", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260928983516653, + 48.81631737775282 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28396", + "ref:FR:issy_les_mx:ordre_arbre": "539", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267082361335003, + 48.8203658218073 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28286", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603756909148567, + 48.81808944485825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29738", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279524238226505, + 48.8231115899435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15868", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656351855580255, + 48.81429669329313 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12737", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262654082677223, + 48.81770206422229 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14746", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25666902308046, + 48.82391243921736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17224", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2549670316658963, + 48.818118732087314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13701", + "ref:FR:issy_les_mx:ordre_arbre": "275", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268606836699317, + 48.816178748051094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20533", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Prunus cerasus 'Géant d'Hedelfingen'", + "species:FR": "Cerisier 'Géant d'Hedelfingen'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257210275831105, + 48.816314557864885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30003", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255184725695205, + 48.823226961732345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12800", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640213492539263, + 48.82709685276017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9557", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639675543225093, + 48.82008252969672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29558", + "ref:FR:issy_les_mx:ordre_arbre": "497b", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2518627243912723, + 48.8217305499697 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11638", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2807683680692934, + 48.823722633435985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29594", + "ref:FR:issy_les_mx:ordre_arbre": "165c", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2506584003474583, + 48.82299442120064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15436", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269075053050538, + 48.82088275603171 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14013", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26464229547646, + 48.825773961961545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10298", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262294788234556, + 48.829136216416806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8678", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619815992519574, + 48.8243658854857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9529", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784208008831976, + 48.82747716117658 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10108", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248572867779341, + 48.819685159144086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13508", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2742435752175396, + 48.82369410982129 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9645", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268579171969849, + 48.81613805497456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22463", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Prunus cerasus 'Anglaise Hative'", + "species:FR": "Cerisier 'Anglaise Hative'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2458648025461163, + 48.819671809707266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10894", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257909195100774, + 48.81839110234978 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13223", + "ref:FR:issy_les_mx:ordre_arbre": "161", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680527924668343, + 48.82050790910627 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14035", + "ref:FR:issy_les_mx:ordre_arbre": "169", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274275117648177, + 48.82159422751661 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30581", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787992250649465, + 48.82352883941779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14078", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264173375354072, + 48.82951804123222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10619", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658048751813338, + 48.82444239540047 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30614", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617010261095785, + 48.814808297069966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27738", + "ref:FR:issy_les_mx:ordre_arbre": "719", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2513280479229705, + 48.81953818734571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30690", + "ref:FR:issy_les_mx:ordre_arbre": "33a", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268377796506508, + 48.820624260473245 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13553", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682596822204433, + 48.820389183626915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16203", + "ref:FR:issy_les_mx:ordre_arbre": "171", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629488004512854, + 48.820094888243084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15719", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258931014854, + 48.824198888421684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9747", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279304459806635, + 48.822614575608775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13776", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258651838847956, + 48.81683067494026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29830", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786439202066395, + 48.82243627224944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12971", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591799004007695, + 48.81898323001491 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13728", + "ref:FR:issy_les_mx:ordre_arbre": "523", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2511850092168557, + 48.82324742598718 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15114", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26272984856589, + 48.81470947959118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21970", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260027106402253, + 48.81829960816656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29722", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604670464201484, + 48.81551701775673 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16015", + "ref:FR:issy_les_mx:ordre_arbre": "473", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2751497786750488, + 48.8205717264442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17975", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258490124873034, + 48.81853108780473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18497", + "ref:FR:issy_les_mx:ordre_arbre": "178", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721682992860606, + 48.82327853866528 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11697", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265882061680358, + 48.82918171681912 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14174", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2464576867758783, + 48.81870632279149 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11571", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625144237066754, + 48.81541551434064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14766", + "ref:FR:issy_les_mx:ordre_arbre": "188", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801903833464183, + 48.82575016184977 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16286", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261796039071891, + 48.82544846915585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9435", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635252488169386, + 48.815105698098506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15959", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655797645540727, + 48.82636020636737 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11410", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2583191230879485, + 48.817678759477666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16586", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656420521241896, + 48.824488511029706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30613", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619201173722874, + 48.816194520996255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15987", + "ref:FR:issy_les_mx:ordre_arbre": "447", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26899504342324, + 48.816383912096754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20745", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247348873501228, + 48.8236023757174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10664", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258214709692268, + 48.81697572843534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22230", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559265267212534, + 48.82088533287869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10939", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625561481366048, + 48.81470905986236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15966", + "ref:FR:issy_les_mx:ordre_arbre": "356", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717491145180158, + 48.82151870859833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11510", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256515228546849, + 48.81737043572216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29981", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277595745232599, + 48.829332696770635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11986", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277654680175298, + 48.82123221164755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13375", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774671752990563, + 48.827655105594545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9481", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644906400391123, + 48.827390497647585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9648", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607637488128174, + 48.81510056068351 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27759", + "ref:FR:issy_les_mx:ordre_arbre": "740", + "species": "Thuja plicata", + "species:FR": "Thuya géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533702907614335, + 48.81749291782522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11236", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278069828541441, + 48.822886735976596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14349", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2829670233538413, + 48.829960429088324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28277", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269153413283115, + 48.81627340513191 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20249", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248535529541004, + 48.81858842368787 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13533", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593080876987504, + 48.81711193581863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29628", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269423598752165, + 48.822611259641796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28378", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601128220891566, + 48.81848574910364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29716", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus americana 'Autumn Purple'", + "species:FR": "Frêne blanc 'Autumn Purple'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274638341050721, + 48.823477153297084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9755", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2735671854032624, + 48.82694219734233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28205", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus calleryana 'Bradford'", + "species:FR": "Poirier à fleurs 'Bradford'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614095941778563, + 48.81584598866745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15946", + "ref:FR:issy_les_mx:ordre_arbre": "457", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544696799696484, + 48.81757269476133 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12740", + "ref:FR:issy_les_mx:ordre_arbre": "128", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706316218564178, + 48.82584401914195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26779", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cornus controversa", + "species:FR": "Cornouiller discuté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560099371952003, + 48.820934260705016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22286", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259050284037256, + 48.81846509248817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14451", + "ref:FR:issy_les_mx:ordre_arbre": "546", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266964347073334, + 48.814059954524105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12476", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2459834420307474, + 48.81970816954379 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11272", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265091744443595, + 48.82092602491354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10959", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265544793923549, + 48.825796655156914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9609", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251581068254604, + 48.82296714561015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14825", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683892280513374, + 48.82075289485903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21624", + "ref:FR:issy_les_mx:ordre_arbre": "584", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615077239164347, + 48.8229402994494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27523", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2763793922352313, + 48.82194759060164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12041", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267229905551206, + 48.817833954362804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28241", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618203165231345, + 48.81506841816267 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27650", + "ref:FR:issy_les_mx:ordre_arbre": "631", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705061594766507, + 48.8150827319635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11614", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599329905882986, + 48.817598693500486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28551", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537515261682657, + 48.822419333903596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10069", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607737324488038, + 48.8166913800204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15935", + "ref:FR:issy_les_mx:ordre_arbre": "246", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27029177900935, + 48.81650607752171 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1069", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260687843484654, + 48.81572890411734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16264", + "ref:FR:issy_les_mx:ordre_arbre": "394", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619592821798213, + 48.82451270231283 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9432", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578298799176513, + 48.82473492527344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16906", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2504662778230298, + 48.82387627446353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14410", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270142276077515, + 48.81700159619643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28270", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770897007575215, + 48.82165215165588 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27563", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2552518122745293, + 48.822804451462545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11951", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609553117940973, + 48.81621168965262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16270", + "ref:FR:issy_les_mx:ordre_arbre": "295", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800230913437516, + 48.82583516553871 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11180", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2503711786460507, + 48.82331209770484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9428", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271924522889921, + 48.82512716632644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26770", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254019886415218, + 48.817094045466405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12714", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266745682615212, + 48.820155671161984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12021", + "ref:FR:issy_les_mx:ordre_arbre": "211", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658994838704642, + 48.82753855456764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11314", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664286873771995, + 48.83023879317361 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10850", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266393396324398, + 48.82451633096886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27171", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710717294702705, + 48.82170101060215 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30574", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261223894251801, + 48.81533469791094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16295", + "ref:FR:issy_les_mx:ordre_arbre": "386", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2460329752636454, + 48.82118408336013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22223", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254663769744522, + 48.81746501370644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12349", + "ref:FR:issy_les_mx:ordre_arbre": "161", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603249510643186, + 48.825661671751455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21268", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780528084595644, + 48.82582859957865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11710", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265764762198624, + 48.820071965201116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13321", + "ref:FR:issy_les_mx:ordre_arbre": "377", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796578122308744, + 48.823166472244246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21424", + "ref:FR:issy_les_mx:ordre_arbre": "96", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664319014570733, + 48.828725000077576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12732", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247372186115357, + 48.819215707865645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11206", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2829623661070624, + 48.82973508663269 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11963", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258055786435588, + 48.824518919115526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17082", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261106966265375, + 48.815223201613534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27762", + "ref:FR:issy_les_mx:ordre_arbre": "743", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597410704370695, + 48.8229768928457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12215", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782318782111166, + 48.825754194301965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12346", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682241627097066, + 48.81605513088295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29816", + "ref:FR:issy_les_mx:ordre_arbre": "35b", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2759445187714955, + 48.82256934639584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10014", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278536196147644, + 48.828855611776795 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9547", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278305799644017, + 48.82395492542213 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13207", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597171583035123, + 48.8171484170524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28524", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277467093064587, + 48.82893157560203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16608", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262261405328404, + 48.81465472701934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16014", + "ref:FR:issy_les_mx:ordre_arbre": "368", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282077673236399, + 48.82683904252692 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15010", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595587673867685, + 48.81905752983006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13145", + "ref:FR:issy_les_mx:ordre_arbre": "215", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26019934926334, + 48.81580301537998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15300", + "ref:FR:issy_les_mx:ordre_arbre": "281", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620119907636815, + 48.81544616940942 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15846", + "ref:FR:issy_les_mx:ordre_arbre": "119", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547237075102293, + 48.81720678709554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12562", + "ref:FR:issy_les_mx:ordre_arbre": "196", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26140621021787, + 48.81624165862782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16347", + "ref:FR:issy_les_mx:ordre_arbre": "305", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260729988309569, + 48.816155973757624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15924", + "ref:FR:issy_les_mx:ordre_arbre": "266", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261569594126845, + 48.81571805893493 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15834", + "ref:FR:issy_les_mx:ordre_arbre": "100", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271541646371762, + 48.81575914651845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10267", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773921173232057, + 48.82898432235035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12432", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256308981036808, + 48.8175269951425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29971", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255214660726785, + 48.82319391243272 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10731", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667827382446246, + 48.820433028884814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10853", + "ref:FR:issy_les_mx:ordre_arbre": "541", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272003943420277, + 48.82528073647513 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10091", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692885681837787, + 48.82074925376676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12912", + "ref:FR:issy_les_mx:ordre_arbre": "158", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699097863336983, + 48.820386635474115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12480", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2499172807521974, + 48.819123786667554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10460", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259740335729896, + 48.81888953295439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14243", + "ref:FR:issy_les_mx:ordre_arbre": "482", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261883701870303, + 48.815054599322835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27698", + "ref:FR:issy_les_mx:ordre_arbre": "679", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264860032979438, + 48.814589769336806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12742", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2734663295772295, + 48.82500598354196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10521", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2465145699291864, + 48.81926318610595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11504", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267461914580845, + 48.816333203480156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6737", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558940221905446, + 48.82296609385449 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12424", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794782004712535, + 48.824023341398856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13328", + "ref:FR:issy_les_mx:ordre_arbre": "114", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539073382235206, + 48.81729827678057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11054", + "ref:FR:issy_les_mx:ordre_arbre": "109", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263046755155666, + 48.8285934110749 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21733", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616234398515167, + 48.81453638164986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27743", + "ref:FR:issy_les_mx:ordre_arbre": "724", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2530813769120765, + 48.82171964219478 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9984", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660211581398317, + 48.82402183156922 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27179", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683262662623216, + 48.83272858641008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10367", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642801086049347, + 48.82019004212034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15181", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264870435654517, + 48.823992428535426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27567", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258110541965033, + 48.81861596363089 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13915", + "ref:FR:issy_les_mx:ordre_arbre": "157", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598271567893233, + 48.8165810047834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29698", + "ref:FR:issy_les_mx:ordre_arbre": "33c", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266194276133342, + 48.829427118183204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9369", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258867486753347, + 48.81680517294696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28500", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257652596730031, + 48.81553138171082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21393", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285976760224933, + 48.82807667385656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10889", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259445332104624, + 48.82527885318779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17160", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259455695419163, + 48.81866888918646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14324", + "ref:FR:issy_les_mx:ordre_arbre": "189", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261571938563053, + 48.81618569749354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16034", + "ref:FR:issy_les_mx:ordre_arbre": "214", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268093274560525, + 48.81780948617595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20679", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2813461652380287, + 48.831515617221186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10272", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260979447486976, + 48.82282832732894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27525", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651243506632577, + 48.81964224885656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12723", + "ref:FR:issy_les_mx:ordre_arbre": "270", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592973627751114, + 48.817262876708085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29615", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263139668883781, + 48.82865703218442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16323", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2735810189509085, + 48.82306608679135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10494", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692258445991667, + 48.820975761680415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13255", + "ref:FR:issy_les_mx:ordre_arbre": "597", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258201988330109, + 48.81876800344024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16955", + "ref:FR:issy_les_mx:ordre_arbre": "679", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795660175719696, + 48.82312530734451 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29422", + "ref:FR:issy_les_mx:ordre_arbre": "4b", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258476866304371, + 48.81726294551585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14842", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597062801379675, + 48.81881637719339 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14187", + "ref:FR:issy_les_mx:ordre_arbre": "374", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276542114515336, + 48.82231231690164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11925", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2502511039174005, + 48.82342225483311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9365", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602628312017297, + 48.816120368538826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16041", + "ref:FR:issy_les_mx:ordre_arbre": "412", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649931397888943, + 48.820931627888335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10881", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2408071201488875, + 48.821483956304405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15453", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607295503842986, + 48.81724396907199 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28575", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600675602539777, + 48.818420843376956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29717", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271760252318573, + 48.82701455348761 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11747", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533726156185243, + 48.81784697676465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11334", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2480722813046716, + 48.81945132668719 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11082", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2555624160194516, + 48.81694354784315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15940", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265981066810598, + 48.820072090529486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14315", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702739505552234, + 48.81742547139583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19959", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2525552056819067, + 48.821493832060085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10412", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715676216660636, + 48.81717110241822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27101", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259446230526539, + 48.81896839848722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16827", + "ref:FR:issy_les_mx:ordre_arbre": "430", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600302890836583, + 48.81668124231407 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28557", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613058647059394, + 48.816466986548974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16022", + "ref:FR:issy_les_mx:ordre_arbre": "235", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558726125231088, + 48.81639138842042 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15696", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577245458464414, + 48.81717222065072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26191", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675104248644837, + 48.81679749894693 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20742", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus cerasus 'Bigarreau Van'", + "species:FR": "Cerisier 'Bigarreau Van'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262767198416045, + 48.82854338776589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10764", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271315938383841, + 48.822618954711146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10578", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268110876267639, + 48.816688140921784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20640", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551004292950867, + 48.82276685812985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11689", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514495574245963, + 48.81973407867489 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30682", + "ref:FR:issy_les_mx:ordre_arbre": "27e", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2808642080846875, + 48.82367569311341 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22086", + "ref:FR:issy_les_mx:ordre_arbre": "167", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25095608842406, + 48.819759858083906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16161", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2728796858883373, + 48.821441026858345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10932", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia henryana", + "species:FR": "Tilleul de Henry" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633819249101754, + 48.827896537797635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27986", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596856766752973, + 48.82446086881606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17239", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712245150585866, + 48.82242689335788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11837", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260814669655839, + 48.82316539304546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12772", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243921132867846, + 48.82191826984023 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16340", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2746363119493287, + 48.82035671335618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10545", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635491515490465, + 48.82006349338638 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29557", + "ref:FR:issy_les_mx:ordre_arbre": "496c", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2743996178569534, + 48.82355950417377 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9374", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24802586585322, + 48.8197046781909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28761", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Fraxinus ornus 'Lerce'", + "species:FR": "Frêne à fleurs 'Lerce'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268053895953159, + 48.81637625996437 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20643", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Prunus cerasus 'Bigarreau Van'", + "species:FR": "Cerisier 'Bigarreau Van'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278906847721184, + 48.82356788790899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28720", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680592619036717, + 48.81718491213325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28773", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Malus communis 'Belle de Boskoop'", + "species:FR": "Pommier 'Belle de Boskoop'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282899258737686, + 48.829782071915645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11961", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259832674257133, + 48.81825406250067 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29762", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602747695310663, + 48.826029754232465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11787", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597782440182073, + 48.81809770046823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29797", + "ref:FR:issy_les_mx:ordre_arbre": "94", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668391696343115, + 48.81750535986277 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28251", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280317235356584, + 48.82371190246331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13765", + "ref:FR:issy_les_mx:ordre_arbre": "149", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245741390222286, + 48.819630978451144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16389", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280809223064472, + 48.8236441833897 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29592", + "ref:FR:issy_les_mx:ordre_arbre": "165a", + "species": "Magnolia sp.", + "species:FR": "Magnolia indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613503306799183, + 48.81594385819716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27776", + "ref:FR:issy_les_mx:ordre_arbre": "757", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561436958699708, + 48.82082093692822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12328", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253571994391859, + 48.817511426298815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10844", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Taxus baccata 'Fastigiata'", + "species:FR": "If d'Irlande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575354341559, + 48.81765930601159 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14511", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261003375762631, + 48.81945256562596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11057", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599229760786708, + 48.81748457644742 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28546", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608346447401964, + 48.81629538881372 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28414", + "ref:FR:issy_les_mx:ordre_arbre": "557", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280410253012145, + 48.8227024717398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10010", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269081080449924, + 48.82145300727992 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29865", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657909893739308, + 48.82452259346369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29850", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256242682487826, + 48.81629095581182 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15619", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264408608824178, + 48.82616964847281 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10285", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277965839042279, + 48.822162037143094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30582", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247449952937023, + 48.820033874203965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11788", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270341600618987, + 48.81647456586878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1068", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253475227102092, + 48.81748105028682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10846", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Morus kagayamae 'Pendula'", + "species:FR": "Mûrier platane pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248791325064213, + 48.818897618166304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12269", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265153306846245, + 48.81951574115285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21893", + "ref:FR:issy_les_mx:ordre_arbre": "297", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683238850420224, + 48.8206109540991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13459", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268518286577127, + 48.817924099870666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20312", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277212803809016, + 48.82890678206633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13547", + "ref:FR:issy_les_mx:ordre_arbre": "139", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254473189807066, + 48.81750983858442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12301", + "ref:FR:issy_les_mx:ordre_arbre": "137", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650859551504747, + 48.820225401288056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16365", + "ref:FR:issy_les_mx:ordre_arbre": "512", + "species": "Araucaria araucana", + "species:FR": "Désespoir des singes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249324834463413, + 48.81851500605909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12633", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794636900102483, + 48.822402893728906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11579", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652053829387815, + 48.82003905887663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11973", + "ref:FR:issy_les_mx:ordre_arbre": "404", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2446202138351423, + 48.81928101988894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11124", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280521044275312, + 48.82383900069987 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12181", + "ref:FR:issy_les_mx:ordre_arbre": "130", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612146502403223, + 48.81491843446965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27757", + "ref:FR:issy_les_mx:ordre_arbre": "738" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602985523380092, + 48.82569339506156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17202", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.240902915688201, + 48.82138477960118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13760", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605987154864446, + 48.81608591311975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14849", + "ref:FR:issy_les_mx:ordre_arbre": "269", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603360477673253, + 48.81601781015671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16441", + "ref:FR:issy_les_mx:ordre_arbre": "400", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685333260461698, + 48.81659775944521 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20697", + "ref:FR:issy_les_mx:ordre_arbre": "74", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539229099655755, + 48.81718830765404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11801", + "ref:FR:issy_les_mx:ordre_arbre": "100", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253582242276367, + 48.820039106775525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26737", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.281882595274264, + 48.82658540589398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27807", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26905093975481, + 48.81626906931192 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20512", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus domestica 'Reine-Claude de Chambourcy'", + "species:FR": "Prunier 'Reine-Claude de Chambourcy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701190099682838, + 48.81661271789108 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1165", + "ref:FR:issy_les_mx:ordre_arbre": "5" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592260191581, + 48.818691690762826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14725", + "ref:FR:issy_les_mx:ordre_arbre": "589", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271183968883001, + 48.82168613846359 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11732", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer rubrum 'Red Sunset'", + "species:FR": "Erable rouge 'Red Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282256127372571, + 48.82692735495099 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15215", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258818679398643, + 48.81861828534129 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14678", + "ref:FR:issy_les_mx:ordre_arbre": "561", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611276337063635, + 48.816893848149135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21566", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618392960826768, + 48.82763393539677 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28073", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577552034873554, + 48.818004567592865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27915", + "ref:FR:issy_les_mx:ordre_arbre": "165a", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2583377512225984, + 48.817696667686235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15802", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713740514399174, + 48.82061975685079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30561", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800985211278144, + 48.82572309305516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12791", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597317898735736, + 48.81717617917893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28523", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674692645833994, + 48.83333590401162 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11379", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2468494514564417, + 48.81989841389139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11400", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665494392361287, + 48.820559360439454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12574", + "ref:FR:issy_les_mx:ordre_arbre": "535", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655141290672822, + 48.826263609764965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11810", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2553905920536987, + 48.82297372590869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10641", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617423435352975, + 48.81513143342986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27627", + "ref:FR:issy_les_mx:ordre_arbre": "608", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2467555916578594, + 48.81949774858304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10430", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597769545353263, + 48.82343254779544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22228", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271592771243063, + 48.82569187735498 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11369", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706255874422423, + 48.81733713965929 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27092", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Salix elaeagnos", + "species:FR": "Saule drapé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259811546852927, + 48.82438266549105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16733", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2549171091316365, + 48.82350917710708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14118", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546866545518975, + 48.81751868715732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29498", + "ref:FR:issy_les_mx:ordre_arbre": "162a" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800484183456318, + 48.82260730635501 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11643", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25407633438161, + 48.81794407478285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12764", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548955407637896, + 48.818118680311315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13700", + "ref:FR:issy_les_mx:ordre_arbre": "274", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649956510482787, + 48.82214556449907 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11624", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268068692170267, + 48.81673767449894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22270", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Prunus cerasus 'Anglaise Hative'", + "species:FR": "Cerisier 'Anglaise Hative'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653413104482536, + 48.82002565545063 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13325", + "ref:FR:issy_les_mx:ordre_arbre": "399", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.286091996092561, + 48.82772880021296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10922", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264438606892534, + 48.8199105136467 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13497", + "ref:FR:issy_les_mx:ordre_arbre": "416", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266556694420547, + 48.820354473690536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14051", + "ref:FR:issy_les_mx:ordre_arbre": "537", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277081503647153, + 48.82934717862176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12147", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24992586562152, + 48.82334956838917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9703", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611461457953688, + 48.815941443837104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15931", + "ref:FR:issy_les_mx:ordre_arbre": "442", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2502911885963544, + 48.82348509624614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9807", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616535549625096, + 48.814660054046435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27740", + "ref:FR:issy_les_mx:ordre_arbre": "721", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267238463487439, + 48.819725005239796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11250", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597273573453993, + 48.81882301122348 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27927", + "ref:FR:issy_les_mx:ordre_arbre": "366e", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264213912487607, + 48.81969519439966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10852", + "ref:FR:issy_les_mx:ordre_arbre": "322", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676959060068977, + 48.82397935947366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8880", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279697409338013, + 48.823845145253124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12895", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685106899997933, + 48.8167157771329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29526", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598529428352676, + 48.81860295617705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29687", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261675585408442, + 48.82767078815721 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28091", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617632226734665, + 48.81511879107559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27629", + "ref:FR:issy_les_mx:ordre_arbre": "610", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605267023979074, + 48.82497642357228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16679", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268496611803026, + 48.82132767448436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12263", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267388240240861, + 48.823199507768535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11447", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663903163307464, + 48.82356090689672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11610", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594098232824646, + 48.81715016077826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29642", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262431235626805, + 48.82977268531886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28972", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595016414806324, + 48.81872998057376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17146", + "ref:FR:issy_les_mx:ordre_arbre": "251", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278110686189436, + 48.82395896800367 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13230", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262067282139773, + 48.815782089339706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16353", + "ref:FR:issy_les_mx:ordre_arbre": "202", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799489811114646, + 48.82360185933939 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29588", + "ref:FR:issy_les_mx:ordre_arbre": "153a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277648697239637, + 48.82392270170224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13086", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258472507785527, + 48.818772837313205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12930", + "ref:FR:issy_les_mx:ordre_arbre": "197", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283045459290893, + 48.83006934549592 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13234", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260245475515841, + 48.82386116458386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9965", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261808001118915, + 48.829707125340235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28992", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584323653765845, + 48.82416180786686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17079", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280437009160974, + 48.82362161699366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27881", + "ref:FR:issy_les_mx:ordre_arbre": "159b", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253690253160827, + 48.81699047780045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13782", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262649368393781, + 48.82939047586134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8450", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780469888795776, + 48.82130186056505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28195", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259149277215181, + 48.81900956311312 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13730", + "ref:FR:issy_les_mx:ordre_arbre": "526", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2744447814320345, + 48.8217877302822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10182", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260093941191459, + 48.81621467264744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16008", + "ref:FR:issy_les_mx:ordre_arbre": "407", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266153879433163, + 48.81408114075081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16510", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271201332139629, + 48.827628668003705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11807", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700806098372612, + 48.821151384411024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12224", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260921001345668, + 48.826823743248696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13828", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715503420074437, + 48.825763439724554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11328", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542774404555863, + 48.82256063880793 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10418", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698522782686172, + 48.82096469933072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30795", + "ref:FR:issy_les_mx:ordre_arbre": "149a", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256055599603232, + 48.820776439178374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28361", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617538259163035, + 48.8150803290662 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27666", + "ref:FR:issy_les_mx:ordre_arbre": "647", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653794594160184, + 48.82915327361985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10864", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259259088219147, + 48.8160826733369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12804", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678111226906665, + 48.81984718632418 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11237", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577155838019363, + 48.815443227104815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13371", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609953830862093, + 48.81635043621098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28393", + "ref:FR:issy_les_mx:ordre_arbre": "536", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782702079830055, + 48.821673172941765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15307", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2832934995398246, + 48.829858348137456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13147", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259880249385538, + 48.81753115468824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28549", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274436430259813, + 48.82351871762394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9404", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283513900854511, + 48.8274780621755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12620", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673958023438807, + 48.81705817832461 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28275", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770571927912036, + 48.82887119694579 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13051", + "ref:FR:issy_les_mx:ordre_arbre": "103", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587388894382867, + 48.81891185599792 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16996", + "ref:FR:issy_les_mx:ordre_arbre": "661", + "species": "Sorbus domestica", + "species:FR": "Sorbier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2861563084735197, + 48.82750882320422 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10065", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256647588778595, + 48.81677001753924 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29956", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560995997792515, + 48.81736865869773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29965", + "ref:FR:issy_les_mx:ordre_arbre": "5" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791054128381294, + 48.825622067916335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11231", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266354711656488, + 48.81707184972343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29436", + "ref:FR:issy_les_mx:ordre_arbre": "4d", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662205496524765, + 48.82918804571387 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14123", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2758412206781835, + 48.82170402912329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16281", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778442722774774, + 48.829145329283946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12001", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2459462370483902, + 48.82117843840993 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10382", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264109768875802, + 48.823755515978256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12599", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2513780140752697, + 48.81892811555009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11388", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574000140398662, + 48.8181039649138 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12137", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265138452555496, + 48.81993783517448 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11976", + "ref:FR:issy_les_mx:ordre_arbre": "407", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2486622202439057, + 48.81907072397144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11992", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601037793226424, + 48.815819588554966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14207", + "ref:FR:issy_les_mx:ordre_arbre": "279", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543593363300394, + 48.817517578928225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12370", + "ref:FR:issy_les_mx:ordre_arbre": "126", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272535580923014, + 48.82098871001124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12778", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2492765641381687, + 48.8200953743729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9912", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2487100357813716, + 48.82047827201616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11769", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250464805563289, + 48.82072858721708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10353", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262380543067156, + 48.81552989717999 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16241", + "ref:FR:issy_les_mx:ordre_arbre": "192", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276532631660218, + 48.82797735889265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28347", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626337806553236, + 48.82005290256596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27785", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26711495387467, + 48.817990894097456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21574", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pyrus communis 'Ferdinand de Lesseps'", + "species:FR": "Poirier 'Ferdinand de Lesseps'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267468315680197, + 48.82532804965047 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11133", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258005684337718, + 48.824736676957365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17156", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611610747500785, + 48.816422406338994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15995", + "ref:FR:issy_les_mx:ordre_arbre": "256", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271887446009624, + 48.82169595663189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13616", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2730151610174723, + 48.821340648710304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12501", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257735348788024, + 48.816271501791654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30067", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259333564714071, + 48.81888808112566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21859", + "ref:FR:issy_les_mx:ordre_arbre": "494", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694814313677263, + 48.821481691911636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11873", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266648017167752, + 48.82101460998868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10983", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2736692845368407, + 48.82731396388074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9063", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596305521401567, + 48.81895519708851 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13653", + "ref:FR:issy_les_mx:ordre_arbre": "508", + "species": "Quercus petraea", + "species:FR": "Chêne sessile" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269229073978729, + 48.8177743032871 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20475", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254377265525545, + 48.81795211801692 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12278", + "ref:FR:issy_les_mx:ordre_arbre": "242", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609652250092913, + 48.81736336534577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28583", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252767657661337, + 48.82195861487281 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10444", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267132000062794, + 48.82474505477288 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21929", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641975119681823, + 48.82338719396449 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12625", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643660461107973, + 48.81968087285145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13000", + "ref:FR:issy_les_mx:ordre_arbre": "316", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630327202741394, + 48.81970861752913 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16397", + "ref:FR:issy_les_mx:ordre_arbre": "342", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254128447713385, + 48.82190301043128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30673", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618787176321624, + 48.82969305057645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28991", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668320115535048, + 48.8168924639455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28274", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277769851995893, + 48.822154805492936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10762", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26066913638795, + 48.823791125778946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9996", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258936098809002, + 48.81859808835593 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14684", + "ref:FR:issy_les_mx:ordre_arbre": "419", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588732584910316, + 48.81854678073974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18526", + "ref:FR:issy_les_mx:ordre_arbre": "422", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270382203716796, + 48.821309689228585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13557", + "ref:FR:issy_les_mx:ordre_arbre": "126", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262738948996109, + 48.82003196612562 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27784", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717478776654945, + 48.816019873510754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10776", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2508005589074465, + 48.819096939271205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12295", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804751074934226, + 48.822259236308156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11521", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725281193322147, + 48.82196133864978 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11567", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2798158360255507, + 48.827903118659236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6242", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2540541860704133, + 48.81799684576772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21260", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596925994886505, + 48.82454443648051 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16677", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714271790281426, + 48.817056383794856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27098", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267683628347072, + 48.82068627833437 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13641", + "ref:FR:issy_les_mx:ordre_arbre": "572", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260485637261067, + 48.82551274989426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16726", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790580566736445, + 48.827630209972774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10674", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575778787077154, + 48.81643664085152 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30026", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266998432806585, + 48.82553868292832 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11131", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28200283538817, + 48.82689736920471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15011", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665022921236804, + 48.824506901952276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27168", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263344832215265, + 48.827025449287476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11129", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668477242613148, + 48.81733462398622 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20639", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Pyrus communis 'Beurré de l'Assomption'", + "species:FR": "Poirier 'Beurré de l'Assomption'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617342449490985, + 48.815510641759424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15816", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2820084841163326, + 48.82845734077813 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10810", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594729849017647, + 48.818632487483214 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14664", + "ref:FR:issy_les_mx:ordre_arbre": "318", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597414623483862, + 48.81881327638372 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17152", + "ref:FR:issy_les_mx:ordre_arbre": "379", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608176250185017, + 48.81630472712811 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28412", + "ref:FR:issy_les_mx:ordre_arbre": "555", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548109314757814, + 48.81789964724015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14498", + "ref:FR:issy_les_mx:ordre_arbre": "222", + "species": "Prunus cerasus 'Montmorency'", + "species:FR": "Cerisier acide 'Montmorency'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248769235399669, + 48.81977623167137 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11544", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257598670178174, + 48.82253908303332 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11301", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666775452700967, + 48.81651389535588 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20530", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259611993668018, + 48.82468814241305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21272", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601965418556618, + 48.81596397256025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27589", + "ref:FR:issy_les_mx:ordre_arbre": "570", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579144804054514, + 48.818361951831236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21337", + "ref:FR:issy_les_mx:ordre_arbre": "160", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260267366809042, + 48.81607023586415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16343", + "ref:FR:issy_les_mx:ordre_arbre": "402", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266587498323106, + 48.82022913638233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12127", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774952714709413, + 48.82940791239879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14312", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261918215164606, + 48.814992754570476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27721", + "ref:FR:issy_les_mx:ordre_arbre": "702", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268185856287947, + 48.82065260942642 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13494", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26190349298735, + 48.81583308952447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16554", + "ref:FR:issy_les_mx:ordre_arbre": "318", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247676411488489, + 48.82369838849237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10394", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551379911714853, + 48.817356733063015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29511", + "ref:FR:issy_les_mx:ordre_arbre": "198a", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610271718599173, + 48.81654805139998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15965", + "ref:FR:issy_les_mx:ordre_arbre": "252", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590627464610336, + 48.81874594776748 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14464", + "ref:FR:issy_les_mx:ordre_arbre": "605", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597365216936622, + 48.81869606009735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14053", + "ref:FR:issy_les_mx:ordre_arbre": "448", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245443081707552, + 48.82108253151607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10718", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2813056061768, + 48.831487177946165 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21504", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260067298102682, + 48.81586819684059 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27608", + "ref:FR:issy_les_mx:ordre_arbre": "589", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244531845201474, + 48.819175355190566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10893", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777627592422265, + 48.82744846099522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9384", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263539423659959, + 48.81972135730497 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30785", + "ref:FR:issy_les_mx:ordre_arbre": "337", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26170159624065, + 48.81511418322041 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27657", + "ref:FR:issy_les_mx:ordre_arbre": "638", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258511516649237, + 48.82465442243722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17117", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791206427583797, + 48.829329481905056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9654", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2472129229902866, + 48.82356357807453 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10637", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25942901764111, + 48.818658734375575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14555", + "ref:FR:issy_les_mx:ordre_arbre": "308", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535437989424496, + 48.81711276055708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11167", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28094447078994, + 48.82364863516244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16170", + "ref:FR:issy_les_mx:ordre_arbre": "174", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681073678566834, + 48.820367426575814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27895", + "ref:FR:issy_les_mx:ordre_arbre": "170a", + "species": "Sequoia sempervirens", + "species:FR": "Séquoia toujours vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259871936994029, + 48.818724628726514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18531", + "ref:FR:issy_les_mx:ordre_arbre": "226", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680278909213425, + 48.82053275950566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20931", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265062922930731, + 48.81963290603576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13595", + "ref:FR:issy_les_mx:ordre_arbre": "272", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642991634510206, + 48.819647238712975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14072", + "ref:FR:issy_les_mx:ordre_arbre": "361", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264470437370399, + 48.8149723145824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16418", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775419363501834, + 48.8288755003065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13555", + "ref:FR:issy_les_mx:ordre_arbre": "88", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788511631930066, + 48.82216589218953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10815", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262170208655328, + 48.815165414280536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15429", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260910445170715, + 48.81625152134251 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21537", + "ref:FR:issy_les_mx:ordre_arbre": "263", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262023967101712, + 48.81596116732383 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15786", + "ref:FR:issy_les_mx:ordre_arbre": "107", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2820193445468084, + 48.828505119804156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10526", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794092514136, + 48.8232966605076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13711", + "ref:FR:issy_les_mx:ordre_arbre": "212", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684771433194526, + 48.81600082769497 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29814", + "ref:FR:issy_les_mx:ordre_arbre": "34a", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613779476168188, + 48.81523326812436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16153", + "ref:FR:issy_les_mx:ordre_arbre": "382", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259406176276144, + 48.824652600787374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17238", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26850937490068, + 48.82126781851038 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11537", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595023445577755, + 48.81868241003101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14579", + "ref:FR:issy_les_mx:ordre_arbre": "293", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588661147427196, + 48.81840543453402 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17107", + "ref:FR:issy_les_mx:ordre_arbre": "126", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275504329292914, + 48.82155894845606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10905", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461729372316768, + 48.81893051908592 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10101", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285913008551721, + 48.82827500959387 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11815", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261756927541788, + 48.815063259813876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27664", + "ref:FR:issy_les_mx:ordre_arbre": "645", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611888411977503, + 48.823520569889595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9855", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562302105506755, + 48.82429744248796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27854", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26261311826947, + 48.82974821028917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28971", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613733952289166, + 48.81594040319897 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27773", + "ref:FR:issy_les_mx:ordre_arbre": "754", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246260714037065, + 48.821235974542745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10735", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253974532660262, + 48.819219460523506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26671", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25892003611737, + 48.81691067877534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28495", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663683002718793, + 48.82954310537027 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10667", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790617765103156, + 48.82957540602801 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29470", + "ref:FR:issy_les_mx:ordre_arbre": "14" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252575449293224, + 48.821912291726974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10284", + "ref:FR:issy_les_mx:ordre_arbre": "29c", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616199903796743, + 48.82732636432081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30709", + "ref:FR:issy_les_mx:ordre_arbre": "24a", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24640952445188, + 48.81929231690654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16410", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261372714776626, + 48.81626742056987 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16378", + "ref:FR:issy_les_mx:ordre_arbre": "304", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586564225633454, + 48.81883398005917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13040", + "ref:FR:issy_les_mx:ordre_arbre": "645", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701593897380645, + 48.816933018954664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20779", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Prunus domestica 'Reine-Claude Diaphane'", + "species:FR": "Prunier 'Reine-Claude Diaphane'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623640010411026, + 48.8145873277578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16012", + "ref:FR:issy_les_mx:ordre_arbre": "366", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609588101018234, + 48.823830029472255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10570", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658541888525865, + 48.82048073943475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14020", + "ref:FR:issy_les_mx:ordre_arbre": "552", + "species": "Salix babylonica", + "species:FR": "Saule pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270224943370492, + 48.816654216852676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29535", + "ref:FR:issy_les_mx:ordre_arbre": "6b", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250912292963062, + 48.82265999715304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12512", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266737064412989, + 48.818335227801576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30043", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2528690963121023, + 48.82198177954669 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10443", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274207583948894, + 48.823046527440255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11079", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253868702087364, + 48.817033233800686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12616", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672468514051083, + 48.81778099710199 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20282", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus communis 'Général de Bonchamps'", + "species:FR": "Poirier 'Général de Bonchamps'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661282326463876, + 48.82767692762081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10975", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585580878822453, + 48.8252755110631 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16902", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259955549551324, + 48.81852097116459 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29711", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269603147592409, + 48.820870370414184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30793", + "ref:FR:issy_les_mx:ordre_arbre": "152", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705854532790744, + 48.81514664632171 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11613", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259883025737522, + 48.81729198851283 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28531", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2499319579467856, + 48.82314762101037 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30617", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259646596346677, + 48.81888996499004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27918", + "ref:FR:issy_les_mx:ordre_arbre": "340c", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596002538727915, + 48.81873835056894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16988", + "ref:FR:issy_les_mx:ordre_arbre": "257", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265032440420284, + 48.82581843024233 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9728", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278690591403865, + 48.82245184614058 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14575", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262207121303233, + 48.81566931399155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21947", + "ref:FR:issy_les_mx:ordre_arbre": "198", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264615716037787, + 48.82088192740907 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11325", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269721555655041, + 48.82592037862199 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28007", + "ref:FR:issy_les_mx:ordre_arbre": "0b", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2530086871843245, + 48.822044928236245 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10422", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2729130388067453, + 48.821078908318775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10699", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622701416129254, + 48.815079066522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15427", + "ref:FR:issy_les_mx:ordre_arbre": "74", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720207115510216, + 48.820864348669375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11965", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643668177000307, + 48.82020470882534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15069", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562425301740774, + 48.81748808776275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29970", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266668403070339, + 48.824725885628794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27169", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657490284989743, + 48.820311160908226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13463", + "ref:FR:issy_les_mx:ordre_arbre": "553", + "species": "Cupressus arizonica", + "species:FR": "Cyprès de l'Arizona" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602215821780147, + 48.82598591206519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11635", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618061889822862, + 48.81591656073226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15947", + "ref:FR:issy_les_mx:ordre_arbre": "316", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2456784003207604, + 48.82162867109615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10948", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655508629538854, + 48.829179353045724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14000", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656335680164355, + 48.82020326629916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11594", + "ref:FR:issy_les_mx:ordre_arbre": "523", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267878617282951, + 48.817695660654145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20430", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581988651426097, + 48.818608305880495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13167", + "ref:FR:issy_les_mx:ordre_arbre": "155", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271437552881558, + 48.82514296178442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26774", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617173489823346, + 48.815117338468674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27655", + "ref:FR:issy_les_mx:ordre_arbre": "636", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707691931590803, + 48.817342512976985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27094", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2456529210037863, + 48.82285124966311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16131", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612318225241483, + 48.824401795742034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11860", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2582802824095993, + 48.815667134310274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12611", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531455674864653, + 48.8206709976593 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26704", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244386390159731, + 48.819210640511244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12317", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772060170567583, + 48.826426057323665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11161", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538501435137452, + 48.819477590643594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26662", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260471092553486, + 48.81590797964837 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27052", + "ref:FR:issy_les_mx:ordre_arbre": "399a", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277429602029432, + 48.82896078200307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12817", + "ref:FR:issy_les_mx:ordre_arbre": "85", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584262400217505, + 48.815483630100005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12897", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652248846722656, + 48.820918436092825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10960", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25992587150183, + 48.8165933954493 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28555", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595770278428398, + 48.81872489034263 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21338", + "ref:FR:issy_les_mx:ordre_arbre": "273", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257371882559144, + 48.81808165976165 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12286", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2822097250052833, + 48.826779845247735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15117", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256742403949398, + 48.81589782161887 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14495", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277721611228737, + 48.824052774744516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12819", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2763080221345127, + 48.82182037056605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10203", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276817810453544, + 48.8280858759954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9508", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592424034379146, + 48.81714354693122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29624", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2527637328726966, + 48.82154428654244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9857", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801949107819866, + 48.823898481824614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12228", + "ref:FR:issy_les_mx:ordre_arbre": "125", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253501887346482, + 48.82031285131469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21954", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779927840562664, + 48.82097020456167 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11842", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805905248429434, + 48.82345259845982 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12306", + "ref:FR:issy_les_mx:ordre_arbre": "180", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259738539001566, + 48.81890058338953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13444", + "ref:FR:issy_les_mx:ordre_arbre": "345", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264527729327736, + 48.81957923180123 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14062", + "ref:FR:issy_les_mx:ordre_arbre": "314", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259158594617056, + 48.81717594503939 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29608", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261897870617347, + 48.815006119766906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27719", + "ref:FR:issy_les_mx:ordre_arbre": "700", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691613413306264, + 48.820969957450124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26135", + "ref:FR:issy_les_mx:ordre_arbre": "595", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26432579844388, + 48.81954242000405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14140", + "ref:FR:issy_les_mx:ordre_arbre": "313", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262518459936862, + 48.815332852043646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15878", + "ref:FR:issy_les_mx:ordre_arbre": "337", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771320299173445, + 48.8288206980077 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12961", + "ref:FR:issy_les_mx:ordre_arbre": "101", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538737168115968, + 48.81712873977667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11773", + "ref:FR:issy_les_mx:ordre_arbre": "97", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278104893381926, + 48.82085806305143 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10873", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279149848834523, + 48.823922082320244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16366", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450063532005573, + 48.821745092856446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11669", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264255664615152, + 48.82632600974155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11554", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266045405313288, + 48.827721243231 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9836", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253765625011662, + 48.819645716038174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26658", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559109193276825, + 48.821834775621234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16527", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27885809727773, + 48.82689965951204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9958", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596006719059076, + 48.8185651077409 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29684", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246883291322781, + 48.818903331969715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11618", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619034271166765, + 48.81498879585544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27715", + "ref:FR:issy_les_mx:ordre_arbre": "696", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2515432605757124, + 48.82301512037257 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15139", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258305783254632, + 48.81536565242871 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11931", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261745176158365, + 48.81526239852596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15882", + "ref:FR:issy_les_mx:ordre_arbre": "130", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599465456284245, + 48.818611436066526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29704", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus americana 'Autumn Purple'", + "species:FR": "Frêne blanc 'Autumn Purple'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2555035321210966, + 48.82223840721437 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10943", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279236115194263, + 48.82258208337922 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13826", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588488645099183, + 48.81664194604638 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29513", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277806781299959, + 48.82917453579775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12003", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270582262108751, + 48.815036407572585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10809", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2554809463477206, + 48.82286581493273 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11851", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592900770201942, + 48.81727722176854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29617", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804264871665914, + 48.823484097524066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12033", + "ref:FR:issy_les_mx:ordre_arbre": "230", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547958349937542, + 48.8226913689814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11017", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659107163180927, + 48.820185640284954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11336", + "ref:FR:issy_les_mx:ordre_arbre": "390", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673852107107613, + 48.817572803407764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20783", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Pyrus communis 'Jeanne d'Arc'", + "species:FR": "Poirier 'Jeanne d'Arc'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260057814899633, + 48.81835767210573 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29721", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266589097955128, + 48.81849441073364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30056", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258960441593037, + 48.81876624219534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14371", + "ref:FR:issy_les_mx:ordre_arbre": "612", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262751023443239, + 48.814899476018 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15760", + "ref:FR:issy_les_mx:ordre_arbre": "160", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675580439761442, + 48.82040815900069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13525", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245073391694261, + 48.82190402506074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11703", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271787205820753, + 48.82304352265232 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11664", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461471835255664, + 48.8197599603527 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11270", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689641822314273, + 48.82056873035782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15755", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595221160126076, + 48.81869917570229 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13237", + "ref:FR:issy_les_mx:ordre_arbre": "285", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269890092029223, + 48.820296992149636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12394", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262472409582671, + 48.829763600232745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28973", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777557108179245, + 48.82928224155633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12175", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739738722934493, + 48.824791108032755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15402", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Cedrus libani", + "species:FR": "Cèdre du Liban" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628928500906, + 48.819623788215466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10705", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266755776268731, + 48.823377967489364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10130", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585442232184154, + 48.82261910884196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11022", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595961217556044, + 48.819018019138035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13948", + "ref:FR:issy_les_mx:ordre_arbre": "512", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271494492467784, + 48.815827703681244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10280", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271583231536367, + 48.82240724495482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12594", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259137761597244, + 48.81899626803509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13731", + "ref:FR:issy_les_mx:ordre_arbre": "527", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269648678412556, + 48.81736280748045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20756", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699242014200647, + 48.82514734569586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26786", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Ligustrum ibota", + "species:FR": "Troène à feuilles ovales" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544459683620137, + 48.81750190523924 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12640", + "ref:FR:issy_les_mx:ordre_arbre": "136", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270185036908762, + 48.816675162734604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1203", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597274774450358, + 48.818037247537205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29799", + "ref:FR:issy_les_mx:ordre_arbre": "96", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618906099183853, + 48.81503800327284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27694", + "ref:FR:issy_les_mx:ordre_arbre": "675", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268243938172634, + 48.820667371419646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13466", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254300805243165, + 48.822778137108024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11414", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2831186081794885, + 48.82983588069239 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28279", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700096740361606, + 48.81713645443787 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20768", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Prunus domestica 'Reine-Claude de Chambourcy'", + "species:FR": "Prunier 'Reine-Claude de Chambourcy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261476629000571, + 48.81648876929689 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16084", + "ref:FR:issy_les_mx:ordre_arbre": "224", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24974559565223, + 48.82079734931784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12109", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279980844441656, + 48.82258672612245 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11577", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688883595654366, + 48.82097133852413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_2861", + "ref:FR:issy_les_mx:ordre_arbre": "605", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269095034421618, + 48.8162356712987 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20228", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539921431186634, + 48.82312250272524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10140", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256272010924872, + 48.82426991165904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27853", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592125814485424, + 48.818229864525144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29676", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2764625492123507, + 48.82572017920828 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12241", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684440676137867, + 48.82064264485946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13554", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264522639502011, + 48.81944016073745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13552", + "ref:FR:issy_les_mx:ordre_arbre": "310", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673708828752988, + 48.82043954168469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28284", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25497728986611, + 48.81809185126284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12303", + "ref:FR:issy_les_mx:ordre_arbre": "255", + "species": "Cydonia oblonga", + "species:FR": "Cognassier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601613042706976, + 48.8161598447109 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16006", + "ref:FR:issy_les_mx:ordre_arbre": "405", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786875044389667, + 48.82961024192926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15094", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805477735701523, + 48.82274446619363 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14538", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606425749184225, + 48.816320352195575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26343", + "ref:FR:issy_les_mx:ordre_arbre": "432", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2797792062200286, + 48.82376843976958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13175", + "ref:FR:issy_les_mx:ordre_arbre": "98", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784297457071654, + 48.83036304209922 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16462", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Sophora japonica 'Pendula'", + "species:FR": "Sophora du Japon pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777606685378617, + 48.82885572727958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13267", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536662971528645, + 48.8170657284971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12809", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587492937881835, + 48.81888979919885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13383", + "ref:FR:issy_les_mx:ordre_arbre": "662", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248122690767703, + 48.82346794680105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9572", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2856215336872676, + 48.82919164895408 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11374", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578653123247854, + 48.81617301634067 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30064", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588675225872588, + 48.81676644727512 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29940", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650422286599268, + 48.81995361408741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11977", + "ref:FR:issy_les_mx:ordre_arbre": "408", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767868458656726, + 48.827980709581354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30543", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Fraxinus americana 'Skyline'", + "species:FR": "Frêne blanc 'Skyline'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577592795312573, + 48.82480235248262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16728", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596913927320657, + 48.81869028349384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22154", + "ref:FR:issy_les_mx:ordre_arbre": "450", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2449128264405114, + 48.82191896494949 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21593", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258092770219061, + 48.81699759201123 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14734", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285698229981759, + 48.828969656321554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16163", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259429088679128, + 48.81718409718179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29645", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671387327180246, + 48.817046015430456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20243", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus cerasus 'Bigarreau Napoléon'", + "species:FR": "Cerisier 'Bigarreau Napoléon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264419800258495, + 48.82001274892607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26133", + "ref:FR:issy_les_mx:ordre_arbre": "422", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256407237736902, + 48.824281455709674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27865", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450861140170284, + 48.82119420528387 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26083", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268044752792298, + 48.817719248451624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20665", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767420744206994, + 48.829104365457376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13832", + "ref:FR:issy_les_mx:ordre_arbre": "112", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254788240737551, + 48.817367144064406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29503", + "ref:FR:issy_les_mx:ordre_arbre": "178a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260147339951908, + 48.81859304658177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29713", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus americana 'Autumn Purple'", + "species:FR": "Frêne blanc 'Autumn Purple'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799815120455253, + 48.82365278045653 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29587", + "ref:FR:issy_les_mx:ordre_arbre": "153", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2709655390001564, + 48.82171712830638 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28745", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267339220710687, + 48.83346597059152 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29831", + "ref:FR:issy_les_mx:ordre_arbre": "0a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2428992060110016, + 48.82160677725813 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9521", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266259825318682, + 48.82014232380167 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26153", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264038028327589, + 48.82074383232923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28226", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701650505862427, + 48.82637853388637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29907", + "ref:FR:issy_les_mx:ordre_arbre": "22a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261775668429334, + 48.81506697314858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27668", + "ref:FR:issy_les_mx:ordre_arbre": "649", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279774362361456, + 48.8279310669686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6245", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662327618548512, + 48.83097807498777 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29836", + "ref:FR:issy_les_mx:ordre_arbre": "6a", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279965823823243, + 48.82352835539991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16506", + "ref:FR:issy_les_mx:ordre_arbre": "157", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602976999043185, + 48.81563165906841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21735", + "ref:FR:issy_les_mx:ordre_arbre": "477", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262721220040149, + 48.82948493112391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8538", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588405924152863, + 48.81860079954037 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14650", + "ref:FR:issy_les_mx:ordre_arbre": "427", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260771506217448, + 48.81724389583234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28576", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645139164695904, + 48.82614120874684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11429", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251894971206874, + 48.8198378454693 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12151", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277115585833596, + 48.82932246749593 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12146", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243992928156668, + 48.820908511299386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10239", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261807195968886, + 48.81611269410407 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13804", + "ref:FR:issy_les_mx:ordre_arbre": "450", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558459390735828, + 48.82145202340093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16523", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263944139919426, + 48.82083212599591 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15692", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656682003143414, + 48.83166302434536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27574", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261548133150688, + 48.82730215426715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28088", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266586906273166, + 48.83440750116345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30531", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255355717648795, + 48.822999300278575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10640", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719226357355526, + 48.82149584219874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12097", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617370004317827, + 48.81485483792428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27737", + "ref:FR:issy_les_mx:ordre_arbre": "718", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615602055211705, + 48.81653305362986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21598", + "ref:FR:issy_les_mx:ordre_arbre": "226", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605515320152727, + 48.82394905393682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9998", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2489409460860976, + 48.81923058836136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11894", + "ref:FR:issy_les_mx:ordre_arbre": "11b", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276823027259382, + 48.822143860018826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10475", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259320857269135, + 48.81798597136684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29667", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275163989222449, + 48.82211415100448 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10598", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265973964438373, + 48.823604848674535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9890", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669906206188895, + 48.82025824307482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11978", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267760637439721, + 48.82034721154452 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13185", + "ref:FR:issy_les_mx:ordre_arbre": "203", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675997449437517, + 48.8174411385159 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20737", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Pyrus communis 'Conférence'", + "species:FR": "Poirier 'Conférence'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565444342767713, + 48.81603590656888 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15219", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800094956078345, + 48.82569844082328 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26317", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658017432106483, + 48.81416619526039 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12677", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693096837374553, + 48.81639422134099 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20279", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673330379690664, + 48.819702370122364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11145", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262695426652931, + 48.828153574899424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27977", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562487895258765, + 48.822422922469585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10910", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785347529619897, + 48.82301935579805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13985", + "ref:FR:issy_les_mx:ordre_arbre": "141", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279252548402361, + 48.8227576799124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29905", + "ref:FR:issy_les_mx:ordre_arbre": "69" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266168044722693, + 48.83068324228014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29833", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701875621434775, + 48.82639539982069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28043", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784220986494006, + 48.82294186214399 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14241", + "ref:FR:issy_les_mx:ordre_arbre": "144", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265191123290712, + 48.81965261743122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16423", + "ref:FR:issy_les_mx:ordre_arbre": "269", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790281211426984, + 48.82275082025403 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29902", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Euodia daniellii", + "species:FR": "Arbre à miel" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679275329110595, + 48.82009911498634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12019", + "ref:FR:issy_les_mx:ordre_arbre": "183", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669849723972666, + 48.831265814024924 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10332", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485149778836115, + 48.8189020335134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13426", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Fagus sylvatica 'Purpurea'", + "species:FR": "Hêtre pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278665868956697, + 48.82304212722203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13983", + "ref:FR:issy_les_mx:ordre_arbre": "139", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2748787984538765, + 48.82302075835685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11439", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273595800204948, + 48.826489343718336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9531", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266140202888366, + 48.82867454771172 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14339", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662815123414686, + 48.82916476538907 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14201", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270147665249667, + 48.826277697113376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28028", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584862792521143, + 48.81856092181637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12839", + "ref:FR:issy_les_mx:ordre_arbre": "175", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804465981356743, + 48.82243607578846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12865", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585591170608046, + 48.82518210849573 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16725", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772082765268986, + 48.82156542806079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28351", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258574107689249, + 48.818467970883646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17028", + "ref:FR:issy_les_mx:ordre_arbre": "181", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270175676481606, + 48.82629090917462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28026", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279094362555739, + 48.82282045700061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29904", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785556765579527, + 48.82296712455523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14081", + "ref:FR:issy_les_mx:ordre_arbre": "146", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702301449614994, + 48.82630185444437 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28024", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654728601524354, + 48.81964957451748 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14562", + "ref:FR:issy_les_mx:ordre_arbre": "291", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543397676280885, + 48.8179823967117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11913", + "ref:FR:issy_les_mx:ordre_arbre": "246", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653965998408654, + 48.82932530146945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14627", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Laurus nobilis", + "species:FR": "Laurier-sauce" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789304128201944, + 48.82308992484443 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25848", + "ref:FR:issy_les_mx:ordre_arbre": "135", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251019423511399, + 48.82039879559657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30703", + "ref:FR:issy_les_mx:ordre_arbre": "37e", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2738805749619755, + 48.82756171985895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9472", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2747559312924786, + 48.827181890601274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22406", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267254561135446, + 48.81988539609649 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13586", + "ref:FR:issy_les_mx:ordre_arbre": "227", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792081748016546, + 48.823142627680454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12992", + "ref:FR:issy_les_mx:ordre_arbre": "131", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257486533581495, + 48.81791846315098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12329", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274206706156023, + 48.82155394598824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9887", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662213327088683, + 48.82874527739235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13064", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2757552596726014, + 48.826328605434604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12391", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248064975558134, + 48.818528910401135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11868", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273413090209272, + 48.82581553263951 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9657", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717708886829033, + 48.82240550241163 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11178", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267121060167403, + 48.82976982819309 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29891", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701196262830057, + 48.826097236960265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21752", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2761605474205155, + 48.8259675248465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12239", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666795384309806, + 48.82347770630832 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10245", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia sp.", + "species:FR": "Tilleul indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275853149151758, + 48.827811626721704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11822", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266792323126899, + 48.82975711943849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12580", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664127476625255, + 48.83032143989041 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21531", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275168384581574, + 48.82683770783846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10900", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274573961788289, + 48.82186154440789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11839", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2754509401160328, + 48.82659265370793 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12165", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275266477741941, + 48.826750006069524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11121", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265921407328935, + 48.83050937027707 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11227", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786871765399193, + 48.8312388623456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11403", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26284780805458, + 48.82804137280375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27979", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270284961834325, + 48.826326832151345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28023", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2827144043810774, + 48.826961225460636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10778", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584934131706635, + 48.81864937318685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13228", + "ref:FR:issy_les_mx:ordre_arbre": "169", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603074199406286, + 48.82468332497547 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17161", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604330960180037, + 48.82481736151525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16643", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260930138987885, + 48.82532536726392 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17199", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260469458143571, + 48.82484542779496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17076", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260667853673376, + 48.82506117858074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16716", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606523430136374, + 48.825041807971864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17073", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666033400588876, + 48.81592386721384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27805", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26034910933297, + 48.82479304593241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22239", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2762888217546386, + 48.82799961391265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11023", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264955484126616, + 48.819952389873194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12297", + "ref:FR:issy_les_mx:ordre_arbre": "409", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2827431469333677, + 48.82945134906226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13778", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257489712915425, + 48.81831393306726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13795", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610275445956884, + 48.82875612654561 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28983", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650705898500583, + 48.81608578442826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29899", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26232272597811, + 48.81461181340732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16013", + "ref:FR:issy_les_mx:ordre_arbre": "367", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262741402732065, + 48.81515256080565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16209", + "ref:FR:issy_les_mx:ordre_arbre": "341", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663946490532907, + 48.827584847710725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22183", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262642545307615, + 48.815308293625534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16265", + "ref:FR:issy_les_mx:ordre_arbre": "184", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261153718885329, + 48.816386689287945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15764", + "ref:FR:issy_les_mx:ordre_arbre": "257", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279352795455677, + 48.82328641521364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13710", + "ref:FR:issy_les_mx:ordre_arbre": "211", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273801167024302, + 48.821406890327665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10085", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276984827503535, + 48.822711399883985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10397", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712143461838226, + 48.822184640839446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11192", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252138927319426, + 48.821398154977985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10487", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278560571241346, + 48.82380747378401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12905", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2532217450672025, + 48.820796005419844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26738", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2755376419658604, + 48.822428049264865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11514", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652450165397386, + 48.82953280431794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11055", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer buergerianum", + "species:FR": "Erable à écorce de dragon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578686989715515, + 48.82256214743309 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11299", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262475372873292, + 48.814908440072465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16404", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695867623728, + 48.820823651558534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29545", + "ref:FR:issy_les_mx:ordre_arbre": "153a", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269534762592023, + 48.82031229682257 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12232", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280819069558219, + 48.82386458664096 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11852", + "ref:FR:issy_les_mx:ordre_arbre": "137", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264970703034622, + 48.82540558974237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9831", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263232014486065, + 48.82871720689169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9886", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275834827657396, + 48.827757727469304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11791", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243184785479534, + 48.82167342546665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9627", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587343389684618, + 48.81566449864523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29989", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268148076787687, + 48.820012376311816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13414", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2459433468119814, + 48.81870899120515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15823", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643873765331657, + 48.82011488508912 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12995", + "ref:FR:issy_les_mx:ordre_arbre": "503", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2455795345098046, + 48.8228365096117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16132", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252045847621041, + 48.82177690915616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21632", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Cornus officinalis", + "species:FR": "Cornouiller officinale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271640247074867, + 48.8216963093958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10493", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273856815974077, + 48.821439937254965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26318", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261743789877588, + 48.8257842202207 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9513", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280428631643147, + 48.821834185990674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28340", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Davidia involucrata", + "species:FR": "Arbre aux mouchoirs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258840189362736, + 48.81842839341588 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16915", + "ref:FR:issy_les_mx:ordre_arbre": "124", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655374499784737, + 48.82929170463872 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14115", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485894629741625, + 48.820440762350536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11371", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2438792808819126, + 48.81897551867631 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16301", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626980639805225, + 48.82945476973177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8539", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Cercidiphyllum japonicum", + "species:FR": "Arbre à caramel" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2729145084847793, + 48.81648087607089 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9968", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775616646294012, + 48.82935740804157 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14337", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261965404337453, + 48.82391764815487 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10984", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625540505613704, + 48.8195756423286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10610", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546419215294655, + 48.81725618772256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12461", + "ref:FR:issy_les_mx:ordre_arbre": "184", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609780787808846, + 48.816341425247785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28394", + "ref:FR:issy_les_mx:ordre_arbre": "537", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258849149715359, + 48.81859312057477 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14720", + "ref:FR:issy_les_mx:ordre_arbre": "424", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259608581838493, + 48.81874613869409 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13031", + "ref:FR:issy_les_mx:ordre_arbre": "256", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273746159658468, + 48.81887861479697 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16417", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703876270010217, + 48.817283848178064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20179", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274314053050629, + 48.823770098464266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9652", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597792267353265, + 48.81737293275821 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28539", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2513416125129853, + 48.81899710082284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26186", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262877862333153, + 48.814967103846335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15761", + "ref:FR:issy_les_mx:ordre_arbre": "163", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599248375973673, + 48.81839984572124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29743", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260727337899551, + 48.823753000281634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10149", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805798477665475, + 48.82207757361823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11495", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650664610416538, + 48.814462848957845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11866", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26756240501874, + 48.820485308924205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12869", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282708911136737, + 48.829551044601835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13304", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772021811428393, + 48.82662307922843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11257", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658821961448785, + 48.81422040203288 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12756", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648719057691133, + 48.82093373508422 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10880", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783243568533504, + 48.823870901217056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12052", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268838140955247, + 48.81755239592025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22275", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611067930065203, + 48.822834713355526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29881", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679475065482833, + 48.81613698968119 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29820", + "ref:FR:issy_les_mx:ordre_arbre": "37a", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2563404257480166, + 48.82064852843532 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13310", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26913288933158, + 48.81723267228886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20700", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus domestica 'Reine-Claude de Bavay'", + "species:FR": "Prunier 'Reine-Claude de Bavay'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271862522666069, + 48.82252344914208 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12595", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2483532791119494, + 48.81874564279661 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30589", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2759558474087664, + 48.82741516947176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30569", + "ref:FR:issy_les_mx:ordre_arbre": "1d", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260951128274764, + 48.81563152423491 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15992", + "ref:FR:issy_les_mx:ordre_arbre": "464", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273248518016385, + 48.825728516206404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9517", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278344070778675, + 48.8288072220347 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12196", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565995407326227, + 48.816796790275085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29957", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2491251959756986, + 48.81854214559384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11347", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259225153052247, + 48.81804254687753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29672", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269365267354352, + 48.821023152782615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13699", + "ref:FR:issy_les_mx:ordre_arbre": "601", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261006034536021, + 48.816823801957106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15887", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270970946581972, + 48.820528672268765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12366", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588567788258276, + 48.817000711947 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29474", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25080822129366, + 48.820384311985976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10028", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26636604565639, + 48.820970524688185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10982", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606636236788487, + 48.81547689544187 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14803", + "ref:FR:issy_les_mx:ordre_arbre": "468", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778221010108166, + 48.82923398547674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12173", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.242617595596856, + 48.82154157544267 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9616", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2768393474090085, + 48.829028273067784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13203", + "ref:FR:issy_les_mx:ordre_arbre": "109", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263121572571321, + 48.81545078961632 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15801", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2858347405758437, + 48.82853052099127 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10016", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773206817640057, + 48.82903707246682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12076", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652967605811343, + 48.82718428189998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9988", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596649187170814, + 48.822851523686616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14760", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus orientalis", + "species:FR": "Platane d'Orient" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.241061147376554, + 48.82188127825691 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10759", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579906553196594, + 48.81573035592849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12519", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615028275213565, + 48.81624365608175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21567", + "ref:FR:issy_les_mx:ordre_arbre": "216", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263814587417828, + 48.82072977482815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28225", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279193228104113, + 48.82936880242628 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28371", + "ref:FR:issy_les_mx:ordre_arbre": "1b", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795140852817943, + 48.82305987721478 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15813", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269450703641569, + 48.820908053748816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20855", + "ref:FR:issy_les_mx:ordre_arbre": "99", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593638322334497, + 48.8180769652735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29671", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27281492853949, + 48.822913457075444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12593", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645712531992195, + 48.82955620062913 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27999", + "ref:FR:issy_les_mx:ordre_arbre": "16a", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2754659275299254, + 48.82238477871221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16157", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676736774943116, + 48.817237670688435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28260", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674880432123956, + 48.823170274363356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12454", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2518584598079534, + 48.81908985262288 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15207", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274537633249736, + 48.8234083283903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9405", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780059398655315, + 48.82287575621515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16444", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262846811103209, + 48.81507176950367 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21565", + "ref:FR:issy_les_mx:ordre_arbre": "344", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543458819292077, + 48.81741990858637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12766", + "ref:FR:issy_les_mx:ordre_arbre": "123", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611354637600245, + 48.8164616619253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15994", + "ref:FR:issy_les_mx:ordre_arbre": "255", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271797641400306, + 48.821675189530616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28008", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681698223552202, + 48.82057029754303 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21368", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260160857148714, + 48.81594504433945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27590", + "ref:FR:issy_les_mx:ordre_arbre": "571", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710823914383047, + 48.82241641042915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10669", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677623222525027, + 48.82031124195181 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14190", + "ref:FR:issy_les_mx:ordre_arbre": "201", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260776197025583, + 48.82309836055664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28755", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268153836426411, + 48.827144876344285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27010", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675328250967555, + 48.81711296893257 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22274", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Prunus cerasus 'Anglaise Hative'", + "species:FR": "Cerisier 'Anglaise Hative'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261237531129835, + 48.822916357285585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27524", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265397134192786, + 48.820314266135036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12017", + "ref:FR:issy_les_mx:ordre_arbre": "521", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713170489674757, + 48.82746684127578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11068", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259532734958326, + 48.82538612078878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21600", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265343392011451, + 48.82920062457704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11342", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702120816137485, + 48.81668768548772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29534", + "ref:FR:issy_les_mx:ordre_arbre": "6a", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2709931593045747, + 48.81544673128892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11588", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248220537514653, + 48.820402575587174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11483", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257272803310607, + 48.816447156753284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30080", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273999048364947, + 48.82143483034142 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10128", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616020774169523, + 48.824584316453624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12207", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644946196846893, + 48.81997457718315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13481", + "ref:FR:issy_les_mx:ordre_arbre": "423", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767049032863143, + 48.82912972153045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14387", + "ref:FR:issy_les_mx:ordre_arbre": "113", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771478983506643, + 48.82929550620786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12145", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704628126891198, + 48.821252385067446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11957", + "ref:FR:issy_les_mx:ordre_arbre": "114", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25349497608622, + 48.81788186845669 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11137", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593455313847466, + 48.81787612372746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29661", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784915369283216, + 48.820413616152194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11586", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590203002371303, + 48.81833773225705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12831", + "ref:FR:issy_les_mx:ordre_arbre": "121", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651373190635455, + 48.820021030400696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11466", + "ref:FR:issy_les_mx:ordre_arbre": "443", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614584300953156, + 48.81676761130698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15758", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249049663123063, + 48.82066447954129 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11361", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649433430264994, + 48.82224053795389 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11744", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Quercus coccinea", + "species:FR": "Chêne écarlate" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266554076907753, + 48.82733684808473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14988", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261487498074589, + 48.816738790150445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9692", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2512379112449388, + 48.823212664333944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22231", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793924150060825, + 48.822869911829734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14216", + "ref:FR:issy_les_mx:ordre_arbre": "74", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265936953383794, + 48.81412932885335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11474", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584625933476645, + 48.81720044836819 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14844", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780539671630575, + 48.829058303222894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12140", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279423833374766, + 48.82324003158886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12079", + "ref:FR:issy_les_mx:ordre_arbre": "194", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601566968908053, + 48.81630531400515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27584", + "ref:FR:issy_les_mx:ordre_arbre": "565", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263509451485279, + 48.829018130186775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10713", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268542169232857, + 48.81745321523106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20500", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707164443245658, + 48.825593949422334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26754", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689927002544064, + 48.817159089440224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21572", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271885820649773, + 48.826857934210146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11748", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640566745389807, + 48.819507215927906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14641", + "ref:FR:issy_les_mx:ordre_arbre": "356", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617717301917653, + 48.81548476764208 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15794", + "ref:FR:issy_les_mx:ordre_arbre": "85", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260095089638228, + 48.823634484854175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12288", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254516262010648, + 48.81715834544592 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12681", + "ref:FR:issy_les_mx:ordre_arbre": "189", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270544346582589, + 48.82126045556019 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11959", + "ref:FR:issy_les_mx:ordre_arbre": "116", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279031417625045, + 48.82936256157604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15097", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598809779111098, + 48.8182000575206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29774", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258914821787874, + 48.81879364785411 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14545", + "ref:FR:issy_les_mx:ordre_arbre": "623", + "species": "Ulmus 'Lobel'", + "species:FR": "Orme 'Lobel'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585074116155184, + 48.818605305505216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13857", + "ref:FR:issy_les_mx:ordre_arbre": "172", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534743947848495, + 48.82181741192622 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30674", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261039637728297, + 48.823660525107044 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10464", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2861197845627252, + 48.82763879814251 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11781", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257228001382586, + 48.81648510235004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30081", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254790915910425, + 48.81765260337884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13125", + "ref:FR:issy_les_mx:ordre_arbre": "207", + "species": "Ficus carica", + "species:FR": "Figuier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545174846603264, + 48.817486219940285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12053", + "ref:FR:issy_les_mx:ordre_arbre": "140", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681970994684035, + 48.81993314112701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27554", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2469915159448286, + 48.81895159336551 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11652", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705110437922733, + 48.81755487476067 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9451", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271195534700667, + 48.82066587976875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27544", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258741955062382, + 48.81679525837909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29829", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666371662832643, + 48.83436809494328 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10425", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684840728474622, + 48.81759102355567 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20401", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2743031461949075, + 48.82365139922953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9347", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250014454546196, + 48.818764040482996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9541", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599452016864863, + 48.81875357053475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14203", + "ref:FR:issy_les_mx:ordre_arbre": "438", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256800794001983, + 48.820245577356914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14500", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667685992465088, + 48.82892389413093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12923", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259563584772289, + 48.818731458924184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17147", + "ref:FR:issy_les_mx:ordre_arbre": "259", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685143626798867, + 48.81769993951788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20390", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Malus domestica 'Jonagold'", + "species:FR": "Pommier 'Jonagold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620271901062177, + 48.81499081935675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27620", + "ref:FR:issy_les_mx:ordre_arbre": "601", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2469516724604737, + 48.82000780748243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11887", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618091961087576, + 48.81507473513971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27649", + "ref:FR:issy_les_mx:ordre_arbre": "630", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2507358638944055, + 48.823380155574085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30619", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646502426890995, + 48.82961550594369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27998", + "ref:FR:issy_les_mx:ordre_arbre": "15a", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2477697410216386, + 48.819897538251844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21734", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613310661441686, + 48.81687869910228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16030", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671081063495766, + 48.8296509130496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12389", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255995019146291, + 48.821554628887064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16549", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596688600799437, + 48.817189727175226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28521", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278019584253011, + 48.829017454468996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16519", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562046789194787, + 48.82355727077856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28019", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249728974820888, + 48.82087722923028 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10172", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2487321480143407, + 48.819046559012286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12050", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789474601886806, + 48.819697537228414 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11559", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260848389024063, + 48.81631535032799 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27578", + "ref:FR:issy_les_mx:ordre_arbre": "559", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261171372368237, + 48.81691786332993 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27049", + "ref:FR:issy_les_mx:ordre_arbre": "5a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639139581128376, + 48.81998539418667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13465", + "ref:FR:issy_les_mx:ordre_arbre": "463", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280524659916853, + 48.82337660173391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14015", + "ref:FR:issy_les_mx:ordre_arbre": "113", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267007325885673, + 48.81968216480379 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11639", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793940069849037, + 48.82395926461511 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12999", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246677972368064, + 48.818809174274016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11446", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790133004363073, + 48.82226691598203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11306", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485128122295857, + 48.81885783654599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13425", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25872544912414, + 48.824816255093275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17113", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796503569247304, + 48.82287020045706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8515", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272596462384426, + 48.82421668640805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11536", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265974218238052, + 48.831496623348976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29885", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668724915281255, + 48.82833387149175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28055", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246122050691697, + 48.81901338163824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10483", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2765751801642438, + 48.8271780631606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10375", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669668741861084, + 48.815368206535815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29839", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657762220112256, + 48.83041091228829 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28325", + "ref:FR:issy_les_mx:ordre_arbre": "9b", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589772116731774, + 48.81717437077621 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27067", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594448197614607, + 48.82459608648048 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22383", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732772767969793, + 48.82522934581024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10710", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263661939502169, + 48.81500779370304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16047", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589054005231897, + 48.81863881023648 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14715", + "ref:FR:issy_les_mx:ordre_arbre": "569", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623068417885377, + 48.823348267225164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9382", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2727165327937944, + 48.82138425611314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12104", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618994989041665, + 48.828076712181684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27933", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260083112100254, + 48.815633625975835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15951", + "ref:FR:issy_les_mx:ordre_arbre": "496", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694593453868177, + 48.822587464608965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28379", + "ref:FR:issy_les_mx:ordre_arbre": "1b", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593103017181027, + 48.817272400484136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29618", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271869431036458, + 48.82244827489804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22227", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263096953710476, + 48.828754466610334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10741", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676463170535257, + 48.8172872868404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21606", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Pyrus communis 'Duc de Bordeaux'", + "species:FR": "Poirier 'Duc de Bordeaux'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699248769549585, + 48.81453282536379 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11519", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2466226521094677, + 48.81982608748023 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11402", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2737407616856586, + 48.827580489464275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9766", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266878007480043, + 48.82037805199743 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16507", + "ref:FR:issy_les_mx:ordre_arbre": "545", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592558302921035, + 48.817278487194514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29616", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278214428345384, + 48.82291137192467 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14691", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672551081376318, + 48.82894672325559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12753", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697805063350627, + 48.8256600082621 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28308", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256897316096539, + 48.82354405114343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17232", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664470882989765, + 48.82458690226618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27170", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562810259035384, + 48.824363593555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27870", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597494149655932, + 48.81731287580553 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28535", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603195334902324, + 48.81593740324455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16137", + "ref:FR:issy_les_mx:ordre_arbre": "274", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255380258344881, + 48.82220943273288 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11802", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640098376505025, + 48.82014719512769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15709", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567156544159075, + 48.82020073959984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11219", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2504600709565143, + 48.8232762076498 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13655", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27974188555001, + 48.82360137774953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12540", + "ref:FR:issy_les_mx:ordre_arbre": "90", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280550804419462, + 48.83112105950209 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12526", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634175730262758, + 48.81964566679241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22218", + "ref:FR:issy_les_mx:ordre_arbre": "353", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260365804310861, + 48.81603894920721 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26063", + "ref:FR:issy_les_mx:ordre_arbre": "415", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617543499486246, + 48.82815900840203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27936", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622662010259553, + 48.823215350998986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9383", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590862710356654, + 48.81661113010094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29935", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pinus griffithii", + "species:FR": "Pin griffithii" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624215077229746, + 48.815412001684145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15949", + "ref:FR:issy_les_mx:ordre_arbre": "334", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253786244565668, + 48.823037479276024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11426", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280889263983518, + 48.82152087294419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11494", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598727980985736, + 48.81876258461054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22153", + "ref:FR:issy_les_mx:ordre_arbre": "442", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601797699591626, + 48.81636114973099 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21971", + "ref:FR:issy_les_mx:ordre_arbre": "417", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781882489354253, + 48.8216584002573 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16535", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691251161105592, + 48.81803247343295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20740", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Prunus domestica 'Reine-Claude Diaphane'", + "species:FR": "Prunier 'Reine-Claude Diaphane'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279194592724294, + 48.82353348557726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14481", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259468136294928, + 48.81713143351011 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29655", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2456163598889862, + 48.819593829739034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28729", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263647055445141, + 48.82051305297769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14826", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719643543089774, + 48.82320392936053 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10316", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2540008795535362, + 48.82018568731506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22123", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691552716997716, + 48.817351594911855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20287", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251340655258531, + 48.82004036908411 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30696", + "ref:FR:issy_les_mx:ordre_arbre": "42a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514467790387878, + 48.81995180922719 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12161", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687422600071754, + 48.82239256462753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13448", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713749755352577, + 48.8262472403762 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30729", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258649471426201, + 48.81885273143866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13446", + "ref:FR:issy_les_mx:ordre_arbre": "648", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251944457845726, + 48.81972781210329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12892", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2746956527872526, + 48.82325242615904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9379", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25718330810923, + 48.81553349407017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22304", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Fagus sylvatica 'Purpurea'", + "species:FR": "Hêtre pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646586090063314, + 48.81948961736252 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13545", + "ref:FR:issy_les_mx:ordre_arbre": "306", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595381871177036, + 48.81897564622246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16707", + "ref:FR:issy_les_mx:ordre_arbre": "208", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561499827083074, + 48.81628480532306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15590", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer negundo 'Flamingo'", + "species:FR": "Érable à feuilles de frêne flamingo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615875663382434, + 48.82376059170008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11182", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271343293418924, + 48.82223795287759 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27031", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261438373637931, + 48.81499725487666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27755", + "ref:FR:issy_les_mx:ordre_arbre": "736", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650893017185463, + 48.82026470164088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12133", + "ref:FR:issy_les_mx:ordre_arbre": "513", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2467936277151788, + 48.82259102873075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30704", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788700596571925, + 48.82349189481452 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14077", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Platanus orientalis", + "species:FR": "Platane d'Orient" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25902992728238, + 48.8184391232682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17029", + "ref:FR:issy_les_mx:ordre_arbre": "188", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280268274374122, + 48.82307830153084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15855", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2806169385936337, + 48.831158528907345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11015", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263557827735548, + 48.82054831582098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27818", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262020188679581, + 48.82284395432305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29874", + "ref:FR:issy_les_mx:ordre_arbre": "0a", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628790973924264, + 48.82008967181662 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29456", + "ref:FR:issy_les_mx:ordre_arbre": "4b", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580058595251757, + 48.81833916660813 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14329", + "ref:FR:issy_les_mx:ordre_arbre": "150", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664369344185578, + 48.82041684854522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12449", + "ref:FR:issy_les_mx:ordre_arbre": "531", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581808152464005, + 48.81871816916139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14636", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675862037317205, + 48.820585572548715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29567", + "ref:FR:issy_les_mx:ordre_arbre": "566a", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267855427739431, + 48.820105083200815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12219", + "ref:FR:issy_les_mx:ordre_arbre": "184", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654655220229527, + 48.826303847954925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26159", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259410515550812, + 48.82276330086721 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30665", + "ref:FR:issy_les_mx:ordre_arbre": "14a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2478224073644806, + 48.81979513268754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10890", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791540066844385, + 48.82270296346211 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14443", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259831497798389, + 48.818195062567945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29776", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259866952139764, + 48.81667339007174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28558", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2493182037748745, + 48.81915572008747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11820", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670772937495016, + 48.81739360736198 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28258", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559840548172794, + 48.82106699554658 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11966", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Morus nigra", + "species:FR": "Mûrier noir" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602020819484276, + 48.815928660845245 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27615", + "ref:FR:issy_les_mx:ordre_arbre": "596", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788197466367834, + 48.82295650198275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13954", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713850474085113, + 48.815636951509475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30717", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274535677127735, + 48.820324665418646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10384", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805461574326826, + 48.82332429897462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21863", + "ref:FR:issy_les_mx:ordre_arbre": "108", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548135884705407, + 48.81736629300934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12503", + "ref:FR:issy_les_mx:ordre_arbre": "178", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607852931014074, + 48.82386802022105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26291", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254836607915858, + 48.817771699333875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14474", + "ref:FR:issy_les_mx:ordre_arbre": "221", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261607887711529, + 48.82818013850965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27939", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282087772088174, + 48.82694228354356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15012", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2635462116500964, + 48.821979782885684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27577", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258456073673141, + 48.81665309014555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29870", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629347955866335, + 48.82852525019615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12724", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259048127884859, + 48.818721481034466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12968", + "ref:FR:issy_les_mx:ordre_arbre": "248", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264346293073932, + 48.820270971552034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14731", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703471312142063, + 48.81664277984262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_300", + "ref:FR:issy_les_mx:ordre_arbre": "16" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264065574759256, + 48.82362628311699 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11727", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705764094612144, + 48.817583234804545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9705", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261827456463744, + 48.81531192625926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15883", + "ref:FR:issy_les_mx:ordre_arbre": "132", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790439409114462, + 48.822961460226324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14134", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27798068441635, + 48.82128833710448 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14356", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586211237430973, + 48.81834201279841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30739", + "ref:FR:issy_les_mx:ordre_arbre": "128a", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621624253631487, + 48.814461373832515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27729", + "ref:FR:issy_les_mx:ordre_arbre": "710", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269734448497192, + 48.8169938046589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20276", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725370214071527, + 48.82372133527144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11376", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26090636910693, + 48.8161247379965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15977", + "ref:FR:issy_les_mx:ordre_arbre": "436", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263266556873039, + 48.82709050559093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10826", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2860449422908826, + 48.82786672566734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11248", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2451943769691476, + 48.822143622082024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9667", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261516232148683, + 48.82712012491741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30705", + "ref:FR:issy_les_mx:ordre_arbre": "23a", + "species": "Liquidambar styraciflua 'Slender silhouette'", + "species:FR": "Copalme d'Amérique 'Slender silhouette'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670483784597515, + 48.82465621818345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15128", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258540540632474, + 48.81688976324259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28499", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278284071984143, + 48.821504778739026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14608", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594752722356573, + 48.818698873756354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16670", + "ref:FR:issy_les_mx:ordre_arbre": "280", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258479413060663, + 48.817776832337515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16614", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575783156220575, + 48.82261099909674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27529", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664462185494325, + 48.82761578899488 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16603", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250163479413556, + 48.82345548600907 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9805", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269657291589025, + 48.82033662215625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14247", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594854316178297, + 48.81869336320331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16672", + "ref:FR:issy_les_mx:ordre_arbre": "283", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268662710505547, + 48.8179669671788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20348", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595134364468366, + 48.81883501036892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17189", + "ref:FR:issy_les_mx:ordre_arbre": "474", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796100724346524, + 48.82333348126713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13028", + "ref:FR:issy_les_mx:ordre_arbre": "216", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264600928942187, + 48.825853993423344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10299", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259171125228564, + 48.81719158124398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29609", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253916034645789, + 48.817228679682216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14316", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670285608826046, + 48.823304637565876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10763", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266140931639888, + 48.81415627367151 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16282", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537467025196323, + 48.82310027474346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10066", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285592168641618, + 48.82915199079905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30553", + "ref:FR:issy_les_mx:ordre_arbre": "3a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610146588026865, + 48.82779558490317 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27959", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268349601939106, + 48.832560201550905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11228", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825612325597153, + 48.829648910763 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13306", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773982314310532, + 48.82924874215941 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11945", + "ref:FR:issy_les_mx:ordre_arbre": "144", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266424412176187, + 48.824270468318815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10009", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745553601574073, + 48.82735908419746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22025", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591468689020715, + 48.818610509771815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22155", + "ref:FR:issy_les_mx:ordre_arbre": "582", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261869448310398, + 48.815051363417346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27692", + "ref:FR:issy_les_mx:ordre_arbre": "673", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277844958352274, + 48.821119611974034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13376", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603246289292267, + 48.815872382830705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16089", + "ref:FR:issy_les_mx:ordre_arbre": "284", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2505269547235356, + 48.823740331706844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12957", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2478835705502047, + 48.81945452644012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10162", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598357468852024, + 48.818161600177426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29789", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2516127102991024, + 48.81969302352144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13133", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Cedrus libani", + "species:FR": "Cèdre du Liban" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265371883137718, + 48.82007171746028 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13625", + "ref:FR:issy_les_mx:ordre_arbre": "401", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265242551809774, + 48.8238109737344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11800", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640774455811212, + 48.820682017457756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28227", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270748079202975, + 48.81516244370088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10455", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259525128703473, + 48.81872572539977 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13059", + "ref:FR:issy_les_mx:ordre_arbre": "260", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256976965860326, + 48.81755795193366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29942", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262205540313083, + 48.81513405843319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16177", + "ref:FR:issy_les_mx:ordre_arbre": "76", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601971117019444, + 48.816278852341256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29451", + "ref:FR:issy_les_mx:ordre_arbre": "563a", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272889648927009, + 48.825397359834874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22408", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249226369388627, + 48.819986476030614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10518", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2857802130294136, + 48.828706165546535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10327", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629920265920167, + 48.82001458061861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13417", + "ref:FR:issy_les_mx:ordre_arbre": "494", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264052409818813, + 48.82008993976329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28296", + "ref:FR:issy_les_mx:ordre_arbre": "498", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514900069801875, + 48.819028937800304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26119", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701827416142413, + 48.821054953737466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30797", + "ref:FR:issy_les_mx:ordre_arbre": "143", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538510393972424, + 48.81919277011974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26676", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626649615187993, + 48.82775354069111 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30579", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678584500778016, + 48.83313919455618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10750", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639303183937316, + 48.820800010159076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27811", + "ref:FR:issy_les_mx:ordre_arbre": "22a", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616566099329827, + 48.8160116177051 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16078", + "ref:FR:issy_les_mx:ordre_arbre": "313", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596800051432675, + 48.816643320338024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30035", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259658177607129, + 48.81890123500624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21371", + "ref:FR:issy_les_mx:ordre_arbre": "341", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267227004639639, + 48.82411065543021 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9904", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589795231424654, + 48.81826786050751 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13277", + "ref:FR:issy_les_mx:ordre_arbre": "114", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609631411941704, + 48.82289622532854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10227", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607394434908485, + 48.81759559309771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28589", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687288869535345, + 48.81608688401472 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20364", + "ref:FR:issy_les_mx:ordre_arbre": "87", + "species": "Prunus cerasus 'Reverchon'", + "species:FR": "Cerisier 'Reverchon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269982209186118, + 48.81468477676637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10429", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2517097439980893, + 48.819772599120626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22360", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270001836863613, + 48.821003096606255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29542", + "ref:FR:issy_les_mx:ordre_arbre": "146b", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25976442875705, + 48.81825112871448 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29764", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275172776743631, + 48.82157091453243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10064", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27744949236141, + 48.82816710306806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9678", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261098797132188, + 48.81648841599301 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15993", + "ref:FR:issy_les_mx:ordre_arbre": "254", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618160046461497, + 48.81508440067229 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27639", + "ref:FR:issy_les_mx:ordre_arbre": "620", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703585985922246, + 48.82121270209431 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28291", + "ref:FR:issy_les_mx:ordre_arbre": "122", + "species": "Prunus hillieri 'Spire'", + "species:FR": "Cerisier à fleurs 'Spire'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260633385051737, + 48.81729773319033 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28579", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596410791043238, + 48.81869436621765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14554", + "ref:FR:issy_les_mx:ordre_arbre": "455", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688853042250097, + 48.820834170829485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13931", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678163370715976, + 48.82744121822663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27003", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720361677550476, + 48.826422082259505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12194", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262292864398129, + 48.81489842217359 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21973", + "ref:FR:issy_les_mx:ordre_arbre": "521", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279869583886058, + 48.823956312957705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22287", + "ref:FR:issy_les_mx:ordre_arbre": "120", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601327245915903, + 48.81589297538676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27611", + "ref:FR:issy_les_mx:ordre_arbre": "592", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644026371055226, + 48.819848855190216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13402", + "ref:FR:issy_les_mx:ordre_arbre": "414", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263178753871056, + 48.826680729980275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30538", + "ref:FR:issy_les_mx:ordre_arbre": "21a", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618022654106413, + 48.81506407952286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27674", + "ref:FR:issy_les_mx:ordre_arbre": "655", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2819651933985474, + 48.82662739229596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28217", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773865644055036, + 48.8295455884852 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11919", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579504484104387, + 48.824789678226935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16636", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263975864499525, + 48.82009202442905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29559", + "ref:FR:issy_les_mx:ordre_arbre": "497c", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780518961328773, + 48.82899157308137 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12121", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276294829093127, + 48.82720312702662 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11287", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27447499467451, + 48.82347643073474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21479", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675490724815734, + 48.825355006174085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10512", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Araucaria araucana", + "species:FR": "Désespoir des singes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617135562862716, + 48.81513512296184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27641", + "ref:FR:issy_les_mx:ordre_arbre": "622", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548682694826483, + 48.822159625764996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15569", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2722775406349576, + 48.82348679397642 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11226", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685283839227033, + 48.81621644872072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20432", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585610287301585, + 48.81847287414837 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12842", + "ref:FR:issy_les_mx:ordre_arbre": "180", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262387365600325, + 48.82981556408456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28975", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261809426928548, + 48.8150295871785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27685", + "ref:FR:issy_les_mx:ordre_arbre": "666", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784676914375868, + 48.82300889496345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14036", + "ref:FR:issy_les_mx:ordre_arbre": "142", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269318933500844, + 48.81679459563184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20786", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269661406415272, + 48.81669751268021 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20502", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266329218920056, + 48.832351361185154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13109", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2751084853973484, + 48.823015665330644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8983", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606108948598513, + 48.81579144738304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21536", + "ref:FR:issy_les_mx:ordre_arbre": "396", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2466609049082424, + 48.81991915621227 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12814", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266596285843898, + 48.83438138331948 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30533", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595304133106198, + 48.818709121273756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13211", + "ref:FR:issy_les_mx:ordre_arbre": "277", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578647964666185, + 48.81858142130954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11471", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26626309984804, + 48.82937930971783 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10632", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264795627459333, + 48.81993996818568 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16520", + "ref:FR:issy_les_mx:ordre_arbre": "410", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593928361333213, + 48.81807732489647 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29670", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271299184509589, + 48.825171502837634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26761", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269390486587323, + 48.817768008762826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20469", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258743000776526, + 48.81687495073331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29828", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267885932845092, + 48.82737645928384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27006", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618972106470765, + 48.823835220381945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11303", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258670846164152, + 48.81887166572466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13569", + "ref:FR:issy_les_mx:ordre_arbre": "651", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660094650973166, + 48.82385506816396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27176", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258143632571661, + 48.81569224338068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16330", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594516378532967, + 48.816574721037064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29930", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2858213846563973, + 48.82857432630817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9991", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279246259121019, + 48.82217338584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14754", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697510830646146, + 48.82107658958191 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30798", + "ref:FR:issy_les_mx:ordre_arbre": "6a", + "species": "Prunus 'Umineko'", + "species:FR": "Cerisier 'Umineko'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260650608613496, + 48.816047869828246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16229", + "ref:FR:issy_les_mx:ordre_arbre": "290", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2727698664976628, + 48.8165032757109 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11645", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615298662892442, + 48.8217894104314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14058", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661822158454314, + 48.82441390712101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29847", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542021740066605, + 48.817935174647246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13355", + "ref:FR:issy_les_mx:ordre_arbre": "251", + "species": "Cydonia oblonga", + "species:FR": "Cognassier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648738828444306, + 48.81997257204071 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14389", + "ref:FR:issy_les_mx:ordre_arbre": "439", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280683841454766, + 48.822000876014165 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11777", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2743713944330275, + 48.82132118441364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12419", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537018370101163, + 48.81714659867841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12735", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255974197366921, + 48.82366358239705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28015", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2516503583714016, + 48.818711214171344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10435", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490925085153326, + 48.819198937039864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30590", + "ref:FR:issy_les_mx:ordre_arbre": "11a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243834218893378, + 48.81904023148434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12656", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269671368703711, + 48.82105611365789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30799", + "ref:FR:issy_les_mx:ordre_arbre": "7a", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662900687355236, + 48.8275261814007 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14799", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278445951219879, + 48.8289218413259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22011", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2570905518175732, + 48.81723289949459 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29920", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264000257823451, + 48.82082424852171 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15170", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593102352003047, + 48.82478478932431 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17032", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250533675646375, + 48.823994043350986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21862", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775053355163846, + 48.829040841926705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12855", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261641381785175, + 48.82744452574858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30710", + "ref:FR:issy_les_mx:ordre_arbre": "24b", + "species": "Fraxinus americana", + "species:FR": "Frêne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713405453605504, + 48.82607953795044 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30732", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2750015262579057, + 48.82145569542179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11340", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280212800893788, + 48.83144376398279 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30725", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Acer davidii", + "species:FR": "Erable du Père David" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666270325051294, + 48.8273739679593 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15438", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273052901001246, + 48.82300794052659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11332", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265196231282948, + 48.83024381892751 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10038", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27920773739341, + 48.82346084802143 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14596", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265373173733104, + 48.81992217370151 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13521", + "ref:FR:issy_les_mx:ordre_arbre": "370", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610284722578045, + 48.8278204931956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27960", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714111077036594, + 48.82514850445574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26775", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Gleditsia triacanthos 'Inermis Skyline'", + "species:FR": "Févier d'Amérique inerme" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780845509550125, + 48.82204874576239 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15685", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263157920672096, + 48.81542187621193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15908", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2765515469271835, + 48.82190419608481 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9954", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262834537893658, + 48.8146555891009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16026", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624538166625006, + 48.8159560700924 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27050", + "ref:FR:issy_les_mx:ordre_arbre": "26a", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254740641034404, + 48.82212870598051 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13369", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591339993690656, + 48.817162481612534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29606", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260399358468916, + 48.82385744643623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12402", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601310990184036, + 48.81590195921903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27605", + "ref:FR:issy_les_mx:ordre_arbre": "586", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626558256648686, + 48.81466896672715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16212", + "ref:FR:issy_les_mx:ordre_arbre": "360", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2566097694474676, + 48.817626540178054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29977", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587354728360207, + 48.82509741747908 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17129", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2709401236257203, + 48.82163437293315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9962", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2549101393767037, + 48.81755713554836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29501", + "ref:FR:issy_les_mx:ordre_arbre": "166c", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642083254755363, + 48.820374119088854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14367", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266907745212657, + 48.818100635475304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28317", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277358463052059, + 48.82865688115003 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13648", + "ref:FR:issy_les_mx:ordre_arbre": "95", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268180824406387, + 48.8201991786724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14049", + "ref:FR:issy_les_mx:ordre_arbre": "175", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596330985088544, + 48.81867219094606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14552", + "ref:FR:issy_les_mx:ordre_arbre": "452", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259326026915184, + 48.81713127683479 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29631", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613794870882407, + 48.82371470284318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11119", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625899556776385, + 48.81963612097395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14109", + "ref:FR:issy_les_mx:ordre_arbre": "484", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270074984683796, + 48.826331935610476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28048", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593098550482185, + 48.81714090709023 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29630", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277357892829641, + 48.82889839664442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13659", + "ref:FR:issy_les_mx:ordre_arbre": "137", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264147441923017, + 48.823690147828444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12352", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666990143278687, + 48.81666866346376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20607", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617271064150217, + 48.81511110301892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27656", + "ref:FR:issy_les_mx:ordre_arbre": "637", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784427169423593, + 48.82877813631227 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12172", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia liliiflora", + "species:FR": "Magnolia à fleur de lis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269298377543503, + 48.820992495727 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13674", + "ref:FR:issy_les_mx:ordre_arbre": "599", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271973494056542, + 48.826508682282444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12193", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706720234923723, + 48.81757429924626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9457", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770828283796534, + 48.82216470916383 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10102", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260432632062453, + 48.81802885022844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29742", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269756028364728, + 48.825686300513404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28309", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279694866631309, + 48.82240646014436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10723", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595697287682746, + 48.82541401316415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16638", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656656968977593, + 48.82456012662024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29851", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620212522815444, + 48.81514089090408 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28386", + "ref:FR:issy_les_mx:ordre_arbre": "523a", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246216404922758, + 48.82283739720802 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9491", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800325758197832, + 48.82384762163602 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13642", + "ref:FR:issy_les_mx:ordre_arbre": "144", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266665499671726, + 48.82427039906654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9906", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804875532570645, + 48.83127979813061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30720", + "ref:FR:issy_les_mx:ordre_arbre": "6a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773466713996244, + 48.82860858431029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16503", + "ref:FR:issy_les_mx:ordre_arbre": "134", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600119522503577, + 48.8181832414791 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29734", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264424856524904, + 48.820001510740155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13480", + "ref:FR:issy_les_mx:ordre_arbre": "421", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267248701304805, + 48.82885820400596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12495", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681622268364765, + 48.81627488329418 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20230", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Prunus cerasus 'Géant d'Hedelfingen'", + "species:FR": "Cerisier 'Géant d'Hedelfingen'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2557846211560166, + 48.821628010195255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16524", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802597543000758, + 48.82322114855538 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20853", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259745812690034, + 48.82616944865405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10838", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542581127023036, + 48.81803404454037 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12107", + "ref:FR:issy_les_mx:ordre_arbre": "249", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535677371921867, + 48.817048749444446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11210", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589682667392728, + 48.823781115711434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28004", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244175120010859, + 48.820773860687694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22206", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2467844522145413, + 48.8199568691756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11889", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269143901935024, + 48.81773218846771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30776", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615865191905224, + 48.815631934529115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15820", + "ref:FR:issy_les_mx:ordre_arbre": "90", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264150122995745, + 48.81948704250232 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14065", + "ref:FR:issy_les_mx:ordre_arbre": "359", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707881539666075, + 48.825359282436196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26789", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600570901950054, + 48.81824198476909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29730", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264438497663488, + 48.819500570024644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14139", + "ref:FR:issy_les_mx:ordre_arbre": "311", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260233485515614, + 48.81614503161733 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16040", + "ref:FR:issy_les_mx:ordre_arbre": "411", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278513999614732, + 48.82896675060461 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16598", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712206946223175, + 48.82658658749758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30597", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271984898426747, + 48.81605022583227 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16328", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652704481237356, + 48.82085830450628 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11243", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258492329458058, + 48.8242660838418 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16633", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665583555572426, + 48.8289736799492 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22353", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256938401043727, + 48.817282499205355 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29917", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265163655929974, + 48.82958326024013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27570", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248720337913793, + 48.819838119646285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14525", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252561877504647, + 48.821910525899604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28002", + "ref:FR:issy_les_mx:ordre_arbre": "29a", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537161411695545, + 48.82020146565738 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22118", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261177674979629, + 48.81591498266169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16211", + "ref:FR:issy_les_mx:ordre_arbre": "443", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621671597007214, + 48.81557544709571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16102", + "ref:FR:issy_les_mx:ordre_arbre": "327", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243949394617692, + 48.81907801407753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12655", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677194998273857, + 48.82309993093392 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10969", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708891254938313, + 48.82525135301168 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26764", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24959083230666, + 48.8208320320656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9920", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720408308387476, + 48.825211983109824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25888", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2568149048741457, + 48.823622608953464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16911", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27009280593119, + 48.8146624504496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10772", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636196821427306, + 48.8150268333268 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15814", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279157929783944, + 48.82249100712177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14407", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259567767438249, + 48.81866961147744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14052", + "ref:FR:issy_les_mx:ordre_arbre": "454", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246741390299144, + 48.823421757492945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11805", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485694510198067, + 48.819555425268135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10018", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26234995153375, + 48.81546860381051 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16104", + "ref:FR:issy_les_mx:ordre_arbre": "332", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264290383545165, + 48.8296014071581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10241", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277931023471752, + 48.8291543668876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11983", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613164051382086, + 48.81557656710573 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15742", + "ref:FR:issy_les_mx:ordre_arbre": "94", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260937002825813, + 48.81635691053525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28405", + "ref:FR:issy_les_mx:ordre_arbre": "548", + "species": "Salix alba", + "species:FR": "Saule blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592178048274225, + 48.8172069812361 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29611", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461688913943645, + 48.823237962511655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10171", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2512327484388965, + 48.82320483702327 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15305", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280288920041944, + 48.82590269380223 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12344", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261830692528421, + 48.817449780698645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26139", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597838257820593, + 48.82333398911574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11020", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25913948260261, + 48.81717425172879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29607", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628706710486837, + 48.82007010766323 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16096", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679138737519686, + 48.81987104422919 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27556", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2737003494866554, + 48.82770603196782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9764", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula 'Youngii'", + "species:FR": "Bouleau pleureur de Young" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264256289993813, + 48.82018890616457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15183", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271175566661249, + 48.81744768137701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9697", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576269584056745, + 48.81733183789064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30091", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2572614023635706, + 48.817218581916265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29921", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597951511754224, + 48.823275021007845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10906", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649435486583327, + 48.820011914276385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14388", + "ref:FR:issy_les_mx:ordre_arbre": "438", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771644771026494, + 48.82879490581106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12847", + "ref:FR:issy_les_mx:ordre_arbre": "100", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662511440765516, + 48.82975329492277 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15148", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258955927180586, + 48.81818187481586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17026", + "ref:FR:issy_les_mx:ordre_arbre": "112", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2515583158955588, + 48.81939711177698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12105", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280874260626321, + 48.83118252390134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11564", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663879073693236, + 48.8169581909594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29433", + "ref:FR:issy_les_mx:ordre_arbre": "4a", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685073836552347, + 48.81749395503246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20478", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607270378597377, + 48.82398213609519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10680", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546164408965765, + 48.81726624046086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12485", + "ref:FR:issy_les_mx:ordre_arbre": "185", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266750177467958, + 48.81400218581952 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12057", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600641718729464, + 48.81680794937251 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29691", + "ref:FR:issy_les_mx:ordre_arbre": "31d", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273191189930875, + 48.82207852971144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22362", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282344947732658, + 48.82965655577797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16516", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260971646054668, + 48.81680387199907 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21535", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672338197566444, + 48.81705439081026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20315", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665927793224645, + 48.81845539992827 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30770", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620051495786724, + 48.814941216782 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27623", + "ref:FR:issy_les_mx:ordre_arbre": "604", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2808931731321658, + 48.82283685100082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9995", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280239901120012, + 48.82332617485222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14717", + "ref:FR:issy_les_mx:ordre_arbre": "117", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2507651467186953, + 48.82013534795891 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10980", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672297316774634, + 48.820591666264576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13613", + "ref:FR:issy_les_mx:ordre_arbre": "565", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461574640307926, + 48.81865499632457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11395", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621925642911775, + 48.81605398114826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15809", + "ref:FR:issy_les_mx:ordre_arbre": "110", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267671782169166, + 48.82051661406451 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13717", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278226666695457, + 48.82250879401012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14740", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645510508489517, + 48.82295320766856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12643", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261865205479993, + 48.822294124663536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10612", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250054311832802, + 48.82337809975107 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9735", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574020404503914, + 48.81686815457457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30083", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257844275443068, + 48.815814424907686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13649", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619362662620404, + 48.814997093193035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27723", + "ref:FR:issy_les_mx:ordre_arbre": "704", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250747468453148, + 48.82260375702617 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12511", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490283362338492, + 48.8199788434746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9938", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716016804229393, + 48.82287424974637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26152", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259833608483469, + 48.82449325532758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28211", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697013417374654, + 48.82234039711315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28730", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266310757383826, + 48.83131482809264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28348", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707777496708617, + 48.82048557146111 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12367", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259623546183937, + 48.818106095814535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29793", + "ref:FR:issy_les_mx:ordre_arbre": "90", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710062457418503, + 48.82234218485293 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16383", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589827107728486, + 48.81827336653864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18528", + "ref:FR:issy_les_mx:ordre_arbre": "116", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2524262366588985, + 48.81896571501197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28231", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259486036088201, + 48.818652446616376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14662", + "ref:FR:issy_les_mx:ordre_arbre": "313", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261915068004091, + 48.8278869087617 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11126", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259973357664499, + 48.8155598106769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15732", + "ref:FR:issy_les_mx:ordre_arbre": "493", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680702019557253, + 48.820230585011146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13639", + "ref:FR:issy_les_mx:ordre_arbre": "179", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598147866186484, + 48.81860248601892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29686", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2453240980723295, + 48.8221750644573 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13761", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629499806456925, + 48.81549755646612 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15863", + "ref:FR:issy_les_mx:ordre_arbre": "143", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26223233106605, + 48.81434281605086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27727", + "ref:FR:issy_les_mx:ordre_arbre": "708", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631728699638582, + 48.82716904028397 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10828", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597148479048004, + 48.818688186614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14054", + "ref:FR:issy_les_mx:ordre_arbre": "449", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596844181993863, + 48.81881608977197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27925", + "ref:FR:issy_les_mx:ordre_arbre": "366c", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261715953979672, + 48.82592494809937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9512", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669487171877707, + 48.81734589137661 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20758", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Pyrus communis 'Duc de Bordeaux'", + "species:FR": "Poirier 'Duc de Bordeaux'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2552884338095875, + 48.82310022368484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10732", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258573696061676, + 48.815689224636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29991", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794891892673137, + 48.8224524082833 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14405", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567361125056355, + 48.81705648395478 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29927", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700815840272472, + 48.82624977253391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28031", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269830402408502, + 48.821079378437744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14749", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668909452165247, + 48.82333958267605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22095", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257727731952907, + 48.81557058515877 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13732", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596796865158155, + 48.815880824123056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15729", + "ref:FR:issy_les_mx:ordre_arbre": "489", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796064980642625, + 48.8240019018566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21335", + "ref:FR:issy_les_mx:ordre_arbre": "116", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261988976694134, + 48.81496773885436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27621", + "ref:FR:issy_les_mx:ordre_arbre": "602", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277098309633287, + 48.82898274542934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13661", + "ref:FR:issy_les_mx:ordre_arbre": "140", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536715184207283, + 48.82315324490617 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12781", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266337829555266, + 48.81404682076996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12167", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267928095946851, + 48.81764734736625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20636", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280415827304258, + 48.83078633931767 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16550", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266595839911863, + 48.81837339460814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30053", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684452183820674, + 48.81725211137477 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20498", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711321021985156, + 48.82233992063797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11838", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2550646558329954, + 48.81771574996259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13123", + "ref:FR:issy_les_mx:ordre_arbre": "205", + "species": "Salix caprea", + "species:FR": "Saule marsault" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595088528659666, + 48.82454079972906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22384", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263714365924196, + 48.81984494062619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13482", + "ref:FR:issy_les_mx:ordre_arbre": "460", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623816177832574, + 48.81488931957802 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21945", + "ref:FR:issy_les_mx:ordre_arbre": "518", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783119777798237, + 48.8302366899973 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27791", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771968553123614, + 48.82871515770645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13687", + "ref:FR:issy_les_mx:ordre_arbre": "130", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595029157116215, + 48.81864374170599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14647", + "ref:FR:issy_les_mx:ordre_arbre": "320", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25943801539758, + 48.818621200230695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21993", + "ref:FR:issy_les_mx:ordre_arbre": "316", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254957345742338, + 48.817252260905356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12563", + "ref:FR:issy_les_mx:ordre_arbre": "197", + "species": "Magnolia x soulangeana", + "species:FR": "Magnolia de Soulange" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671445468234084, + 48.828148019286346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28058", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266730478750007, + 48.83132593147803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10985", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270720014405428, + 48.82208762095575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10749", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274755747993095, + 48.82335932359614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9738", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265379914772025, + 48.82015201363242 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30791", + "ref:FR:issy_les_mx:ordre_arbre": "524", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254989589844131, + 48.81781893206369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13221", + "ref:FR:issy_les_mx:ordre_arbre": "211", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25328750964872, + 48.81784466514129 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12406", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2509238919581214, + 48.81910224618731 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11872", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640757662196767, + 48.82020290435878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27812", + "ref:FR:issy_les_mx:ordre_arbre": "74", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637474739890884, + 48.82927830735276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26292", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282382290238592, + 48.829825721597146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11964", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25908522612909, + 48.81892955856882 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22368", + "ref:FR:issy_les_mx:ordre_arbre": "518", + "species": "Tilia x euchlora", + "species:FR": "Tilleul de Crimée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245861639537768, + 48.818625133783534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10416", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2445609470390955, + 48.82083370707793 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8876", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261670882627771, + 48.81610428183609 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16075", + "ref:FR:issy_les_mx:ordre_arbre": "211", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587951672300153, + 48.81840832766079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12833", + "ref:FR:issy_les_mx:ordre_arbre": "123", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25946656415137, + 48.81785367225999 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29659", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260274841236112, + 48.81591320554212 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15773", + "ref:FR:issy_les_mx:ordre_arbre": "275", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259664465275297, + 48.81823266204343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29785", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699050950105164, + 48.82600414220421 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21750", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639148658821218, + 48.82702446785196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9559", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262593086671632, + 48.815761530896054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16564", + "ref:FR:issy_les_mx:ordre_arbre": "111", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279294941015378, + 48.82266053692011 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12922", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259395082962823, + 48.81891833552363 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13021", + "ref:FR:issy_les_mx:ordre_arbre": "201", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265452646006064, + 48.827363291185215 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12243", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257572741603426, + 48.81656782984991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30022", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2563462051001224, + 48.82429177864118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27864", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.241424416652345, + 48.821411042213974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9102", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789862371875484, + 48.823907452692495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13135", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259582553443176, + 48.8188921764533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27916", + "ref:FR:issy_les_mx:ordre_arbre": "340a", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262350245633186, + 48.81603504298004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15803", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250917664433715, + 48.81983444268389 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28739", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259811761146429, + 48.82319841992633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10907", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261964948474549, + 48.81542200548501 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15805", + "ref:FR:issy_les_mx:ordre_arbre": "120", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715246808664578, + 48.82715750708461 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11315", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer rubrum 'Red Sunset'", + "species:FR": "Erable rouge 'Red Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.242758910609755, + 48.82157240787258 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9615", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274609861929948, + 48.82302472233868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11177", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706799253604117, + 48.82582933830831 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26778", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Quercus myrsinifolia", + "species:FR": "Chêne à feuilles de myrsine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273676597898882, + 48.82480629027629 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30586", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703520727372695, + 48.82126488411554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13556", + "ref:FR:issy_les_mx:ordre_arbre": "125", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259436064934764, + 48.81725824734057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29649", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270081319483748, + 48.821072119681006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13685", + "ref:FR:issy_les_mx:ordre_arbre": "109", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716353314125826, + 48.8258403609747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11584", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600379621141906, + 48.81821290155001 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29732", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266630404228145, + 48.82768717158551 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28214", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254873444194421, + 48.8181400667039 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13180", + "ref:FR:issy_les_mx:ordre_arbre": "271", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25611615117812, + 48.82302145405683 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10892", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2494822292185006, + 48.820715223100095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12889", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667429302323625, + 48.82418162031808 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26316", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261350745739776, + 48.816001061934095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29454", + "ref:FR:issy_les_mx:ordre_arbre": "760a", + "species": "Cotinus coggygria", + "species:FR": "Arbre à perruque" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263299334327765, + 48.820046394324365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29555", + "ref:FR:issy_les_mx:ordre_arbre": "496a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269190153418823, + 48.82083802299176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14126", + "ref:FR:issy_les_mx:ordre_arbre": "95", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2856142817091616, + 48.82859053569423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30555", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265110208281541, + 48.8258297351796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9419", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279756465755697, + 48.82349951798132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12422", + "ref:FR:issy_les_mx:ordre_arbre": "88", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789597834681046, + 48.82295814645984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13032", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658762549815266, + 48.820133268726416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13348", + "ref:FR:issy_les_mx:ordre_arbre": "379", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585483545853093, + 48.81878354922776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16793", + "ref:FR:issy_les_mx:ordre_arbre": "635", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258781962678765, + 48.82486538809444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17163", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586313443309285, + 48.81882608436182 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13537", + "ref:FR:issy_les_mx:ordre_arbre": "646", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640012617684593, + 48.82014494151687 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16312", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667456928284055, + 48.820134905308265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12022", + "ref:FR:issy_les_mx:ordre_arbre": "212", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274115700594295, + 48.82449050401136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21301", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Olea sp.", + "species:FR": "Olivier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279933251269585, + 48.823943703191105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12201", + "ref:FR:issy_les_mx:ordre_arbre": "121", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692458684073946, + 48.816838287242284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20703", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609793084499525, + 48.816379566954694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28403", + "ref:FR:issy_les_mx:ordre_arbre": "546", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263187476794573, + 48.81512775469543 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15795", + "ref:FR:issy_les_mx:ordre_arbre": "167", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246889559936461, + 48.81962282802058 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14222", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596952779305544, + 48.82443201582503 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16772", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785687170765447, + 48.823801228181175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12904", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777148167327175, + 48.82930919791864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12465", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706765964049955, + 48.82549402157812 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26752", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481948395724243, + 48.81971169431228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11897", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2513216378815293, + 48.81993968047889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12182", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607213013277216, + 48.81729082834849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28580", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2455314212641087, + 48.82110625292441 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14769", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260394373032942, + 48.818058114280824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29740", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280211135599786, + 48.82364838954925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13764", + "ref:FR:issy_les_mx:ordre_arbre": "148", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561182462555234, + 48.82418297369032 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27830", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2402435448951232, + 48.82157689720688 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9429", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261758991455228, + 48.81509061402509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27670", + "ref:FR:issy_les_mx:ordre_arbre": "651", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796704646367374, + 48.82399101005316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13093", + "ref:FR:issy_les_mx:ordre_arbre": "117", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283014058066028, + 48.82985897825622 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28278", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592859156577747, + 48.81795071194387 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29666", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26115642787693, + 48.82148651535135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10786", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687304150641627, + 48.8200565302507 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27553", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257654516400439, + 48.818374736503486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14551", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579954867346386, + 48.81642322538413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30008", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597369300687893, + 48.818053104739064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29798", + "ref:FR:issy_les_mx:ordre_arbre": "95", + "species": "Salix alba", + "species:FR": "Saule blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2738749946308143, + 48.82511833092354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30679", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593117654339134, + 48.81729810868658 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29620", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259466688599325, + 48.81871761416896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14393", + "ref:FR:issy_les_mx:ordre_arbre": "263", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2583980162086803, + 48.82267786238061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10989", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270404680546119, + 48.82158399656856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28292", + "ref:FR:issy_les_mx:ordre_arbre": "142", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252386368947297, + 48.82186679008741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21638", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2437137117659027, + 48.81900128990476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11741", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611016368691566, + 48.82290499622002 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10226", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599700723760963, + 48.81848045644321 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29712", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26160421103298, + 48.81475940162399 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27739", + "ref:FR:issy_les_mx:ordre_arbre": "720", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262004270886295, + 48.81574778424544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16056", + "ref:FR:issy_les_mx:ordre_arbre": "321", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794226072769135, + 48.82318143304551 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22364", + "ref:FR:issy_les_mx:ordre_arbre": "128", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588147351768852, + 48.81876530264842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12967", + "ref:FR:issy_les_mx:ordre_arbre": "247", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275453087079634, + 48.82228566708583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21527", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718080228877997, + 48.82569961325791 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14864", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250238715514274, + 48.823287650771306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9426", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800868467235142, + 48.83140855487829 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11364", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598854260037458, + 48.82562007961811 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17203", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268434699261342, + 48.81592960608817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29823", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261991832506242, + 48.81539731058045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15884", + "ref:FR:issy_les_mx:ordre_arbre": "133", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269370822224546, + 48.82145507662344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11629", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267831435461624, + 48.8199393656054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20590", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246282647172269, + 48.81871215147602 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11834", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677471572644166, + 48.82024837372656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13575", + "ref:FR:issy_les_mx:ordre_arbre": "192", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26158466583782, + 48.82812702158444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27972", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254202804627728, + 48.81755901105777 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12380", + "ref:FR:issy_les_mx:ordre_arbre": "120", + "species": "Salix matsudana 'Tortuosa'", + "species:FR": "Saule matsudana tortueux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490076479164176, + 48.8191162168358 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11895", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602841852466273, + 48.81621778317722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27579", + "ref:FR:issy_les_mx:ordre_arbre": "560", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775819509880115, + 48.828983599138276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12853", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683901456351947, + 48.82006673601179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14096", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26801659135238, + 48.82726235564766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27005", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619046036161135, + 48.815069208605074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27705", + "ref:FR:issy_les_mx:ordre_arbre": "686", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279979832286445, + 48.82319149621765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15856", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26357313475496, + 48.82672802974289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9633", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Pinus radiata", + "species:FR": "Pin de Monterey" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261582102774026, + 48.81521730108558 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15880", + "ref:FR:issy_les_mx:ordre_arbre": "126", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279798585519544, + 48.82353327827271 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12517", + "ref:FR:issy_les_mx:ordre_arbre": "89", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668637903671995, + 48.8202243425349 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12858", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2557306557103303, + 48.82292482288745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12803", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257490879281685, + 48.817151924175896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30087", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595162448057735, + 48.818644907157314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14424", + "ref:FR:issy_les_mx:ordre_arbre": "321", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694037293838987, + 48.8202857446607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10899", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792718443107858, + 48.824165274222764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13137", + "ref:FR:issy_les_mx:ordre_arbre": "106", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258947451584166, + 48.81862244401702 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14685", + "ref:FR:issy_les_mx:ordre_arbre": "420", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272268897094838, + 48.82630312733248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11832", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594817658521267, + 48.818711056623556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17148", + "ref:FR:issy_les_mx:ordre_arbre": "268", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259832145018617, + 48.81890676275101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16959", + "ref:FR:issy_les_mx:ordre_arbre": "363", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600445280971786, + 48.8156105839405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15917", + "ref:FR:issy_les_mx:ordre_arbre": "495", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699835579140824, + 48.825614300945425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28304", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271762095950099, + 48.82523368700662 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26767", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Gleditsia triacanthos 'Sunburst'", + "species:FR": "Févier doré" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268103734882833, + 48.82072914517333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13165", + "ref:FR:issy_les_mx:ordre_arbre": "579", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263131307181486, + 48.81971317823248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11908", + "ref:FR:issy_les_mx:ordre_arbre": "346", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266084557956746, + 48.829433462408886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13962", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Salix caprea", + "species:FR": "Saule marsault" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271372563951436, + 48.82738521385957 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10883", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer rubrum 'Red Sunset'", + "species:FR": "Erable rouge 'Red Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279478733477208, + 48.82310044928322 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14675", + "ref:FR:issy_les_mx:ordre_arbre": "91", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260785675067792, + 48.81564348088927 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16236", + "ref:FR:issy_les_mx:ordre_arbre": "391", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261551187779861, + 48.81554411744353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15083", + "ref:FR:issy_les_mx:ordre_arbre": "528", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803778623739066, + 48.823472098404594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25850", + "ref:FR:issy_les_mx:ordre_arbre": "229", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279821837461599, + 48.82245531171878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10721", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262506406809267, + 48.81448335934543 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15943", + "ref:FR:issy_les_mx:ordre_arbre": "363", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778882729898733, + 48.821075257954206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13377", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788731304214394, + 48.82341978830052 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14713", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577992766174724, + 48.81784503981274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12576", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Sequoiadendron giganteum", + "species:FR": "Séquoia géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772474740071025, + 48.8290920683614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12051", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789098866590956, + 48.82207702681102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14761", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Sequoiadendron giganteum", + "species:FR": "Séquoia géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2526760633508496, + 48.82193795350009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10445", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259239253383185, + 48.8172310379265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29612", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713686010874152, + 48.82266722730334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10688", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278866903627596, + 48.82815848947029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22257", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476946142262086, + 48.822803783290844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9795", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259834623188488, + 48.825588699471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16773", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265978258227818, + 48.83079668194155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12407", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537438278382584, + 48.817521624630736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21560", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Salix sp.", + "species:FR": "Saule indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641202853244904, + 48.82352873471686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12624", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2840302784489768, + 48.82777785866563 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12504", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27855046379163, + 48.82381580220545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13516", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26404685497612, + 48.819837371437224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28724", + "ref:FR:issy_les_mx:ordre_arbre": "457", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786557936522835, + 48.82241487564454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14576", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696299133279143, + 48.825879436453626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28006", + "ref:FR:issy_les_mx:ordre_arbre": "0a", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791675240286957, + 48.8223000504619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11678", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545024918296006, + 48.81733126512893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11195", + "ref:FR:issy_les_mx:ordre_arbre": "151", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254500146834504, + 48.81767604291494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13132", + "ref:FR:issy_les_mx:ordre_arbre": "230", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600932116745813, + 48.816815324285365 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29692", + "ref:FR:issy_les_mx:ordre_arbre": "31e", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680548267535503, + 48.81669587594611 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20225", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251629787285613, + 48.81973044783786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30686", + "ref:FR:issy_les_mx:ordre_arbre": "27a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667639784381923, + 48.832210500098846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11981", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256654593970743, + 48.82377620977772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17195", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593294132694157, + 48.81727336256121 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29621", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260562902020737, + 48.816000780163854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16129", + "ref:FR:issy_les_mx:ordre_arbre": "288", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252010850624664, + 48.81968523694198 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21369", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259094152490794, + 48.81706267224082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29600", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254660319254865, + 48.817493068408886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12758", + "ref:FR:issy_les_mx:ordre_arbre": "162", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2444453628788517, + 48.82081562724549 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8877", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636288095328387, + 48.82937810441573 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10507", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2512848055673276, + 48.82004001921147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30697", + "ref:FR:issy_les_mx:ordre_arbre": "42b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795530468032617, + 48.82295020936126 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27048", + "ref:FR:issy_les_mx:ordre_arbre": "14b", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615575381145545, + 48.81668134638771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16316", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639553800064633, + 48.82013708881822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21894", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274961872540763, + 48.82701611626705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12166", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653366335843432, + 48.82729705833156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10192", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651903231169452, + 48.826543362236904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11803", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272290162648136, + 48.82188935132168 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11362", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266312863139415, + 48.82902122363948 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10671", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597854437823184, + 48.81825243977657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29763", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271493002244676, + 48.821556074859295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11835", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267367362195142, + 48.81762575516313 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28246", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26170847843567, + 48.81636860447124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27054", + "ref:FR:issy_les_mx:ordre_arbre": "530a", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2489924908723307, + 48.82314904783325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9674", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261113558200276, + 48.82801618466378 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27969", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546257759302684, + 48.81779285936976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14507", + "ref:FR:issy_les_mx:ordre_arbre": "224", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2752901385328346, + 48.821594538955665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9966", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259421506684737, + 48.817171368815714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29644", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25777557967534, + 48.816411067101775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30018", + "ref:FR:issy_les_mx:ordre_arbre": "14" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25728431210085, + 48.81625116136025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30000", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597492175147753, + 48.822904063516575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12216", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279676421387553, + 48.825619413710406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11408", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268890406222255, + 48.82018072312639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12653", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Zelkova carpinifolia", + "species:FR": "Orme du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593846171902667, + 48.817112589999184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29638", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248454800841823, + 48.81873744927285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30588", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580186444539465, + 48.8155957381304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14305", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259013101022088, + 48.82273228126415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30668", + "ref:FR:issy_les_mx:ordre_arbre": "17a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252447682444556, + 48.821482075530156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10485", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2495481157938175, + 48.820133485229846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10061", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268099257213851, + 48.816487329865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20772", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Prunus cerasus 'Bigarreau Van'", + "species:FR": "Cerisier 'Bigarreau Van'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258983794473129, + 48.81843030923412 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14449", + "ref:FR:issy_les_mx:ordre_arbre": "537", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659255979678563, + 48.82929679886098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14040", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567203670588682, + 48.823216851290844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11592", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251310366059226, + 48.81939270586328 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9942", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2824808130743324, + 48.82970099211373 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12962", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271942783470406, + 48.82537909979474 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28339", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279914113098905, + 48.831495041650186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10273", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256167319036489, + 48.8242471353247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27844", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2505769404190503, + 48.82365515866765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12849", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257730693193382, + 48.81650279584725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30020", + "ref:FR:issy_les_mx:ordre_arbre": "16" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795630379907816, + 48.8232052741408 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13981", + "ref:FR:issy_les_mx:ordre_arbre": "126", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680352286270575, + 48.817662050228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20715", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269150565208281, + 48.8168971054241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30777", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618139787457876, + 48.81495348371216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15778", + "ref:FR:issy_les_mx:ordre_arbre": "376", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705415772302433, + 48.81741361446865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27090", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2510940561829464, + 48.819179944080275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10408", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682258719859782, + 48.821274104582464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13756", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542411205747843, + 48.822843412589805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11384", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782882290175777, + 48.82162092955267 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14467", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652979735060503, + 48.83007915038035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25839", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656412672473567, + 48.83014738311762 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12112", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687066777565317, + 48.81807061360051 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21577", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268224297819022, + 48.81625290819568 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20762", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264269676047027, + 48.8203270362011 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14704", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259996895227219, + 48.824425694774966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17039", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275852959666902, + 48.822978130473956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9701", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608802959344034, + 48.82779925101603 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27956", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608568559664577, + 48.81751525928121 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28587", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268092296426535, + 48.820674474350966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29569", + "ref:FR:issy_les_mx:ordre_arbre": "569a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258941984005235, + 48.81831069672264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17027", + "ref:FR:issy_les_mx:ordre_arbre": "119", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2456349904585062, + 48.822900309487395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29465", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272490097084216, + 48.82596876400147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11147", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2407596235500926, + 48.8218079410823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28741", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2458095837410834, + 48.822344910236446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21155", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254563532636564, + 48.81739201018432 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12587", + "ref:FR:issy_les_mx:ordre_arbre": "148", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27575012222008, + 48.820812182121266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17974", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267381946257107, + 48.825288553667356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10300", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248835661125223, + 48.818975449291386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11356", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792757045712353, + 48.82315372408575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12991", + "ref:FR:issy_les_mx:ordre_arbre": "130", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514343062910758, + 48.81958556084116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30822", + "ref:FR:issy_les_mx:ordre_arbre": "31a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2517157380666535, + 48.81968930481635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30823", + "ref:FR:issy_les_mx:ordre_arbre": "27f", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2784041503889276, + 48.82408207574524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29582", + "ref:FR:issy_les_mx:ordre_arbre": "63a", + "species": "Acer pseudoplatanus 'Globosum'", + "species:FR": "Erable sycomore boule" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770219519720634, + 48.82655637763759 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30565", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Cercis sp.", + "species:FR": "Arbre de Judée indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599191611798495, + 48.81619449453533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16062", + "ref:FR:issy_les_mx:ordre_arbre": "502", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2723625758245642, + 48.818484852122914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10747", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274113338673924, + 48.81912767667423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10423", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663922341487273, + 48.8168317167548 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20180", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594603115270586, + 48.818808136672025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13800", + "ref:FR:issy_les_mx:ordre_arbre": "470", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594113528093804, + 48.818720495573324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14674", + "ref:FR:issy_les_mx:ordre_arbre": "446", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2730798668092724, + 48.81875809784401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11097", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266372921373952, + 48.81786463700482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19946", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2727603423982665, + 48.818590652395024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10627", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613754545745794, + 48.81894940407283 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11539", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259259682593682, + 48.817489738768295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27081", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265078376958525, + 48.816711896879234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29896", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273385850346206, + 48.818761687251325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16156", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266384614774964, + 48.81679704622664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19960", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664278575513004, + 48.81787853879712 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20181", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597822543101738, + 48.81608671638417 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16038", + "ref:FR:issy_les_mx:ordre_arbre": "498", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650651636987833, + 48.816364381759385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29897", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593430378534505, + 48.81881844271098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13704", + "ref:FR:issy_les_mx:ordre_arbre": "488", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650814019679637, + 48.81685473837911 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29895", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266391525877672, + 48.81691271491796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19958", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2738414364927038, + 48.81891463856433 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11582", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721977288177913, + 48.818437636034815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10748", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590510593821653, + 48.81721997797639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27070", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725762910106746, + 48.81862709781766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11036", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591507691190738, + 48.817295335343125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27073", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26646546975156, + 48.81688175768051 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19961", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584901938344757, + 48.818254550764514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30737", + "ref:FR:issy_les_mx:ordre_arbre": "129a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586021350258902, + 48.81879542201905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30742", + "ref:FR:issy_les_mx:ordre_arbre": "627a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702044489913007, + 48.81695882146115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20319", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622553318587024, + 48.82364276086958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9770", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592345231312394, + 48.822926652702144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26111", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26968185187614, + 48.822341599213274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28728", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634186708527726, + 48.82671781971709 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9532", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Malus 'Golden Hornet'", + "species:FR": "Pommier d'ornement à fleurs blanches" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271132238051156, + 48.82640203940851 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10092", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides 'Globosum'", + "species:FR": "Erable plane boule" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260882230283488, + 48.8252368452206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15312", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278295835919053, + 48.822183453409906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10155", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277341803574669, + 48.826507086878124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11258", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2798030886730714, + 48.82319143591221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14101", + "ref:FR:issy_les_mx:ordre_arbre": "98", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654045980506883, + 48.82694372462246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21181", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272417900336811, + 48.824758543697655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28013", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246226606046034, + 48.82245584867923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9433", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604272475972333, + 48.82487396034159 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17072", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244589102143393, + 48.82207468418764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9773", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246087766427928, + 48.81853787806462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11081", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251734645316536, + 48.81854858481764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10437", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670356181820064, + 48.81663439406143 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20606", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Pyrus communis 'Beurré de l'Assomption'", + "species:FR": "Poirier 'Beurré de l'Assomption'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670994231275428, + 48.81405346919253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12502", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259215940741093, + 48.82301691483643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15160", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724559480251183, + 48.824726037820504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28014", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792652152323827, + 48.821590644051334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26244", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278474359701471, + 48.82219694460314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11419", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262461428621474, + 48.81474070316218 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16065", + "ref:FR:issy_les_mx:ordre_arbre": "156", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601803045620756, + 48.81571582126114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15566", + "ref:FR:issy_les_mx:ordre_arbre": "480", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481870098918026, + 48.82291921127618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9377", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267553702447078, + 48.81647334850412 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20644", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619440136245226, + 48.82242025805238 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10531", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2432757799613183, + 48.821695246949574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9626", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2768469684249197, + 48.82208313822164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9992", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24353578923545, + 48.821754516629575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9600", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280156646265141, + 48.82263628611808 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11620", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261295689920271, + 48.81690404555967 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16029", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534185905456128, + 48.82036803631126 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26695", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Quercus robur 'Fastigiata Koster'", + "species:FR": "Chêne pédonculé fastigié 'Koster'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783048752946193, + 48.82156970225486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14609", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262230288519694, + 48.823500091795346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9360", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26050663221581, + 48.815490668663394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15208", + "ref:FR:issy_les_mx:ordre_arbre": "472", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514799310926787, + 48.82309103745947 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15089", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697331387381703, + 48.81735393132027 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20601", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279760474888203, + 48.82242791908676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10722", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253457063219891, + 48.82245647609074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30848", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253646781459716, + 48.82247039178226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30850", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537070214559605, + 48.822478977537905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30852", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253687853047697, + 48.82242079444772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30855", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25376305609181, + 48.82246554704316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14810", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534251017086846, + 48.822387721718066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30861", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253471768121909, + 48.82241299903294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30864", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535034338614763, + 48.82242890188197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30865", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535469865841633, + 48.822407400690736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30866", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535903783782745, + 48.822686534082514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30872", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Malus domestica 'Fuji Rosso'", + "species:FR": "Pommier 'Fuji Rosso'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450599848690187, + 48.820980127370085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16086", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244977273092182, + 48.821149643854525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15720", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245117848701485, + 48.820992225369224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16024", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253445323806504, + 48.82240997830505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30863", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253375705339272, + 48.82257811064762 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30867", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536692025118237, + 48.822687026330286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30870", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536599824629393, + 48.82267031124863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30869", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus communis 'Belle de Juin'", + "species:FR": "Poirier 'Belle de Juin'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535976502981763, + 48.822650587914815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30868", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531487234190823, + 48.82031474606339 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30878", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2529318431226355, + 48.820083315697424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30882", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2530365645160915, + 48.820104684044715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30883", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2449579679770815, + 48.820985399079774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30886", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Sorbus torminalis", + "species:FR": "Alisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2449994561723754, + 48.82096667511968 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30888", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245127679909963, + 48.821111163924876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30889", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733136650878487, + 48.8256681861303 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9673", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Pyrus calleryana 'Bradford'", + "species:FR": "Poirier à fleurs 'Bradford'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619696086543204, + 48.824438609280534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9555", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606058265738715, + 48.81634930371801 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16082", + "ref:FR:issy_les_mx:ordre_arbre": "431", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260920245782911, + 48.816347723070336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28406", + "ref:FR:issy_les_mx:ordre_arbre": "549", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591802670950396, + 48.81815827530015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29675", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259072077325137, + 48.81822780451562 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29486", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273599910647171, + 48.827052663774346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9156", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266546811022304, + 48.829079935449855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10696", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26863083581993, + 48.81805754546798 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30774", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561466314626473, + 48.81736544383382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29964", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647858185434186, + 48.820874212149604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11326", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660346536957374, + 48.82036853428728 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22288", + "ref:FR:issy_les_mx:ordre_arbre": "554", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253356155486931, + 48.81751459472598 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11235", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Pinus wallichiana", + "species:FR": "Pin pleureur de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779566024386453, + 48.829063374885294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21621", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624234071765192, + 48.81597919008437 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16498", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590902656655585, + 48.81827907895772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29487", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250173284227864, + 48.823271686332724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8360", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592862580554685, + 48.817248867356014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29614", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26103978980978, + 48.8279829911939 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27966", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639187572435144, + 48.82716770195571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9390", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590194698904282, + 48.81873460619258 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14345", + "ref:FR:issy_les_mx:ordre_arbre": "604", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649312170568776, + 48.82547731362571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9832", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280278898592298, + 48.82180090028682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28341", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2768246195683353, + 48.82696678129575 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10376", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27607613225262, + 48.82304692806889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9721", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25824389224468, + 48.8180184034253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12444", + "ref:FR:issy_les_mx:ordre_arbre": "87", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26106833531044, + 48.82800646160945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27967", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581667240234893, + 48.81697940677121 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14735", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280762078645393, + 48.82348719320767 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12212", + "ref:FR:issy_les_mx:ordre_arbre": "179", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251986580296632, + 48.82176345037244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21633", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Prunus x subhirtella 'Autumnalis'", + "species:FR": "Cerisier à fleur d'automne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716292069915305, + 48.82076923490714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12734", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258541507275296, + 48.82421632387164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17128", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710357106785, + 48.821620784400785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9963", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650340410660865, + 48.81968409866456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14321", + "ref:FR:issy_les_mx:ordre_arbre": "362", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696216768326978, + 48.81656790006534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20514", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545324406818716, + 48.81766365651895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13432", + "ref:FR:issy_les_mx:ordre_arbre": "228", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653098820528634, + 48.825762904734695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30575", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Ulmus x hollandica", + "species:FR": "Orme de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642656629700757, + 48.824093254159706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9914", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265981223527066, + 48.82943474895905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13961", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Salix caprea", + "species:FR": "Saule marsault" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261709456169106, + 48.81528249327232 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15849", + "ref:FR:issy_les_mx:ordre_arbre": "123", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610735092210423, + 48.824398835741476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11631", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260227203143106, + 48.824209401471705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9999", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251202084757006, + 48.823217133769695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15113", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267966508248422, + 48.83289566515599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11407", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279948237868557, + 48.8232738286799 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13381", + "ref:FR:issy_les_mx:ordre_arbre": "121", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605335513910942, + 48.817102611917974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28567", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2563323222739777, + 48.824233771975685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27851", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267109779005293, + 48.82108880874524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11790", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28081371333846, + 48.82389048717734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11853", + "ref:FR:issy_les_mx:ordre_arbre": "138", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593549862346958, + 48.81656216018896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29933", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618635586463296, + 48.815950345408794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16044", + "ref:FR:issy_les_mx:ordre_arbre": "207", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260738534191054, + 48.81609278155962 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16254", + "ref:FR:issy_les_mx:ordre_arbre": "292", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269999992640659, + 48.816998441791284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28267", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267428323964843, + 48.82045305809982 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13558", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25625829490243, + 48.817337718130766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29963", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685687675794286, + 48.81754985893893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20472", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260846262730802, + 48.823224350574925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12771", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25824984439909, + 48.81801807791542 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16666", + "ref:FR:issy_les_mx:ordre_arbre": "88", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270279418369898, + 48.814915165610564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11615", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265593295122359, + 48.83052643958439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10036", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2522182411606337, + 48.81969096784522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13601", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264052405477331, + 48.81991855453095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29550", + "ref:FR:issy_les_mx:ordre_arbre": "456c", + "species": "Trachycarpus fortunei", + "species:FR": "Palmier de Chine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248908523464673, + 48.81911007795785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11896", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264170093155463, + 48.81993806916789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13396", + "ref:FR:issy_les_mx:ordre_arbre": "455", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244541575874966, + 48.82155907050415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26066", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627359882641787, + 48.81524237736006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16087", + "ref:FR:issy_les_mx:ordre_arbre": "183", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2809990397968445, + 48.822866748443055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9994", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643107047898328, + 48.820193468257706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15938", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2549913671189463, + 48.82219012773494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27532", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Fraxinus sp.", + "species:FR": "Frêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655065103921057, + 48.829410933993856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13959", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2820245824277143, + 48.82699147505061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15013", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718505254516357, + 48.821585329602925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12090", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718486872761834, + 48.81608168669652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10775", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261839353177307, + 48.827524121428155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28075", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648679863906236, + 48.82216546694481 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12551", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690314976489745, + 48.82265198220536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29910", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602776421921003, + 48.81596870172784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27618", + "ref:FR:issy_les_mx:ordre_arbre": "599", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617372397307616, + 48.814636017710896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27741", + "ref:FR:issy_les_mx:ordre_arbre": "722", + "species": "Thuja orientalis", + "species:FR": "Thuya d'Orient" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578715793661135, + 48.8183644492487 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13224", + "ref:FR:issy_les_mx:ordre_arbre": "162", + "species": "Acer platanoides 'Drummondii'", + "species:FR": "Erable plane panaché" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643695940086856, + 48.81937150127286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11812", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27905941081461, + 48.82351357364266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29579", + "ref:FR:issy_les_mx:ordre_arbre": "17a", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26173793267835, + 48.815808925551195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15836", + "ref:FR:issy_les_mx:ordre_arbre": "104", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795622907719797, + 48.82247933398671 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14386", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259826354807027, + 48.81663748145248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29700", + "ref:FR:issy_les_mx:ordre_arbre": "33e", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262391095280804, + 48.81559193386195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16369", + "ref:FR:issy_les_mx:ordre_arbre": "194", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262254339919995, + 48.814298432086076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29452", + "ref:FR:issy_les_mx:ordre_arbre": "707a", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2505750817998775, + 48.82297862093842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16490", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694377649423756, + 48.820806881995665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13188", + "ref:FR:issy_les_mx:ordre_arbre": "156", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2821693269182566, + 48.82699459918376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28216", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267432989250514, + 48.81995843631368 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13691", + "ref:FR:issy_les_mx:ordre_arbre": "218", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772353474548677, + 48.82803880981 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9580", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590779171783106, + 48.82427658581469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9715", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799119945434825, + 48.823146977314394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15857", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658498911178744, + 48.82085402091529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10965", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252953629134231, + 48.82168959303771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27536", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265480716384787, + 48.81994817581182 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28717", + "ref:FR:issy_les_mx:ordre_arbre": "372", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273421997048278, + 48.82505982531885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10522", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767319762529983, + 48.8268318588296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11221", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283117368950378, + 48.829680089535195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12000", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686891089617105, + 48.82078183321447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20822", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259442476042926, + 48.81865108663868 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12916", + "ref:FR:issy_les_mx:ordre_arbre": "305", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255590977127313, + 48.81686167447458 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14770", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282726247768278, + 48.82696680702928 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21529", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2517767204535666, + 48.81846675118553 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10438", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546848020567705, + 48.818082646228916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12608", + "ref:FR:issy_les_mx:ordre_arbre": "265", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271542799585059, + 48.826747985064706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30601", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261610879591412, + 48.81519127876578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15881", + "ref:FR:issy_les_mx:ordre_arbre": "127", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717550281814343, + 48.82544022459249 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30735", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26047236053053, + 48.81696078910448 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28565", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2577102779643754, + 48.81806785821277 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14461", + "ref:FR:issy_les_mx:ordre_arbre": "165", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574816392689723, + 48.81643343469495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30071", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273647239981833, + 48.82538636650527 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12399", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262045368659324, + 48.81526107962179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22235", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2741087318362183, + 48.82134363349075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10244", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599271151005236, + 48.825653652665494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16944", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826604983726746, + 48.82981987366616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13366", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545670738726993, + 48.81730999900401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11294", + "ref:FR:issy_les_mx:ordre_arbre": "154", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27581513145621, + 48.82746535943718 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30571", + "ref:FR:issy_les_mx:ordre_arbre": "1b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598741485051086, + 48.818306952434874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29749", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2715412770570595, + 48.82733596150778 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9872", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264782981061703, + 48.81463887149572 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12741", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584980968720894, + 48.81569990801086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29992", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619633606929077, + 48.81586848060469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16042", + "ref:FR:issy_les_mx:ordre_arbre": "205", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562324824745605, + 48.82423369034832 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27847", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615247913704106, + 48.81465539101923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27749", + "ref:FR:issy_les_mx:ordre_arbre": "730", + "species": "Pinus pinaster", + "species:FR": "Pin maritime" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659766949037574, + 48.82989831641589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26156", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269314366385995, + 48.820945936994974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14505", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667761066997274, + 48.82884845263022 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12716", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260843576308029, + 48.823905766245744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10682", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593008320750414, + 48.81713374599492 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29629", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594135136040707, + 48.81715881777919 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29643", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2807136779120194, + 48.823652586938344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14688", + "ref:FR:issy_les_mx:ordre_arbre": "165", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562222307394078, + 48.82416941057861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27833", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261475162367047, + 48.82474506140874 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10993", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269215285653883, + 48.82225696990171 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11716", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2515694913628335, + 48.822989015405234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15138", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666004608787995, + 48.82564971563507 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11277", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538495425320044, + 48.81733303618499 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21533", + "ref:FR:issy_les_mx:ordre_arbre": "111", + "species": "Salix babylonica", + "species:FR": "Saule pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277573544849795, + 48.82912086801173 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11935", + "ref:FR:issy_les_mx:ordre_arbre": "148", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786177189008026, + 48.82965778366086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15093", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594637980416237, + 48.81891320222203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13623", + "ref:FR:issy_les_mx:ordre_arbre": "504", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691083901450435, + 48.82262529467684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14432", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Ligustrum japonicum", + "species:FR": "Troène du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253050541503988, + 48.82087757924402 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26685", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269571705239136, + 48.822558921392144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28373", + "ref:FR:issy_les_mx:ordre_arbre": "2a", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825969288659604, + 48.82690902556654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22205", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629132113949018, + 48.815013449806855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16002", + "ref:FR:issy_les_mx:ordre_arbre": "346", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261854493697247, + 48.81503031525412 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27688", + "ref:FR:issy_les_mx:ordre_arbre": "669", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795825316739893, + 48.82347290474469 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12421", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542573022565797, + 48.82280320673603 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11413", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628994659454, + 48.81509986116674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15905", + "ref:FR:issy_les_mx:ordre_arbre": "178", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271487410851111, + 48.81710252982489 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27099", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686030730536615, + 48.81816314079141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22165", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246538785375056, + 48.82336081252875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10113", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254927899784023, + 48.81814909880772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13333", + "ref:FR:issy_les_mx:ordre_arbre": "272", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698283114461515, + 48.81737502249434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28273", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576391995075227, + 48.81638629622617 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30028", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661749338091903, + 48.81790429859923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29439", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Liquidambar styraciflua 'Slender silhouette'", + "species:FR": "Copalme d'Amérique 'Slender silhouette'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488317996125344, + 48.81902159241422 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12233", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721703004772746, + 48.82257579185125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22254", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618493600118224, + 48.81751326599937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26455", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer davidii", + "species:FR": "Erable du Père David" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669805974603716, + 48.81748693376278 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28250", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643962739757475, + 48.82675661823241 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11979", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28028006902101, + 48.82267189040087 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10011", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269186385172697, + 48.82225839138891 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15196", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Fagus sylvatica 'Purpurea'", + "species:FR": "Hêtre pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261211812264182, + 48.81588495533263 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15932", + "ref:FR:issy_les_mx:ordre_arbre": "444", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626955285123658, + 48.82008015448388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15792", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Salix sp.", + "species:FR": "Saule indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689145333351024, + 48.816872793857726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20470", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653760900599047, + 48.82926840215016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14084", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562052889838924, + 48.82248885097347 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10930", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2454008794341314, + 48.82300199111045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30057", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27151680060813, + 48.82165986225048 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26276", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633975347408786, + 48.815044603242804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28380", + "ref:FR:issy_les_mx:ordre_arbre": "50a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609301330332547, + 48.827810171869615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27957", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278189307699055, + 48.828836367230124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16494", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618007784758865, + 48.81944214930866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11059", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2769074389584456, + 48.82892498405576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12555", + "ref:FR:issy_les_mx:ordre_arbre": "122", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259692532156004, + 48.81893521891599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27919", + "ref:FR:issy_les_mx:ordre_arbre": "340d", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593737737281248, + 48.81760026121336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29480", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659050450924028, + 48.8291083130903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14252", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257724953301371, + 48.816446818174406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30019", + "ref:FR:issy_les_mx:ordre_arbre": "15" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767079558734364, + 48.82781979655466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10901", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267461750693846, + 48.81742914661458 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20736", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Pyrus communis 'Louise Bonne d'Avranches'", + "species:FR": "Poirier 'Louise Bonne d'Avranches'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267361645071887, + 48.83344074565602 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29832", + "ref:FR:issy_les_mx:ordre_arbre": "0b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2797886775093903, + 48.825647520395016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11398", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695787688296605, + 48.82094105247521 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14531", + "ref:FR:issy_les_mx:ordre_arbre": "101", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772443618611797, + 48.82873874426311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12845", + "ref:FR:issy_les_mx:ordre_arbre": "98", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698868100144973, + 48.81731829217093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20716", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278137868031362, + 48.822949298776024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14585", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592336337418777, + 48.81826985409027 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29677", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2486204193426693, + 48.81863764133768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13340", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617988850865176, + 48.815081596749685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27648", + "ref:FR:issy_les_mx:ordre_arbre": "629", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787529358756493, + 48.823583225420585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29581", + "ref:FR:issy_les_mx:ordre_arbre": "21d", + "species": "Magnolia x soulangeana", + "species:FR": "Magnolia de Soulange" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560199096799693, + 48.82362915073952 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28016", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2466855413435036, + 48.81942842112996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10088", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254468973800791, + 48.81799597952813 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12435", + "ref:FR:issy_les_mx:ordre_arbre": "245", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266246329640063, + 48.82039810626579 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29565", + "ref:FR:issy_les_mx:ordre_arbre": "528c", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618794895189223, + 48.8150443202566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27693", + "ref:FR:issy_les_mx:ordre_arbre": "674", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279145002811809, + 48.82161356742777 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15047", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598923836642073, + 48.818126711124705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29791", + "ref:FR:issy_les_mx:ordre_arbre": "88", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2740016028757317, + 48.82391259312873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9651", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616411790728965, + 48.82811864671484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27974", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690283152155377, + 48.822717777825396 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14303", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273077142138002, + 48.82212450780585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12350", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24908969911846, + 48.82059252832011 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11189", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695204920001855, + 48.82084860917535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13253", + "ref:FR:issy_les_mx:ordre_arbre": "153", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803122402453027, + 48.831265898736866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30727", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2423870228077116, + 48.820847614844226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13893", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265930992889727, + 48.830137783818444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13344", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280199513019192, + 48.8238354781823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29585", + "ref:FR:issy_les_mx:ordre_arbre": "143", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272059282598682, + 48.826607123009595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9989", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601043308447335, + 48.81587849929648 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27610", + "ref:FR:issy_les_mx:ordre_arbre": "591", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2489639538490813, + 48.81986147896153 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28736", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655789741719845, + 48.82735250684129 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12783", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253318135863426, + 48.81785260113369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11333", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248916189659337, + 48.81992837742524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9939", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279987205344265, + 48.83154112075839 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9874", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262418149728122, + 48.81511102529069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27051", + "ref:FR:issy_les_mx:ordre_arbre": "154", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617380703787893, + 48.8297211176757 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28993", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790635365662064, + 48.82347132757663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29580", + "ref:FR:issy_les_mx:ordre_arbre": "17b", + "species": "Celtis australis", + "species:FR": "Micocoulier de Provence" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2474870912560814, + 48.819177534697 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26185", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268109439878178, + 48.83276778668737 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14120", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633935229532094, + 48.82006028580646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29556", + "ref:FR:issy_les_mx:ordre_arbre": "496b", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258653282175648, + 48.816910936375066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28498", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679115131396728, + 48.81684816840797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20352", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698108610818704, + 48.818350720462796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29423", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252933995695662, + 48.8220279531612 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16408", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268639571347156, + 48.81756911825099 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20389", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256116598179663, + 48.81696525723331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14771", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258746338516637, + 48.816036920458764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29986", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265753991391705, + 48.81425800844792 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12755", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265702719871319, + 48.82000672570516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13438", + "ref:FR:issy_les_mx:ordre_arbre": "376", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592884678088088, + 48.81711176924413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29627", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2857965231523814, + 48.82866110257428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9864", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718858308052234, + 48.82082989990539 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12584", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257854923477006, + 48.816615721253626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30011", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26721193716358, + 48.82047300557827 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13992", + "ref:FR:issy_les_mx:ordre_arbre": "551", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257488024995039, + 48.81820354518725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12247", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609514063389757, + 48.82801023558162 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27950", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600507456483507, + 48.816794375406815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29690", + "ref:FR:issy_les_mx:ordre_arbre": "31c", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579101458871236, + 48.816486731996434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30014", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2723143613423447, + 48.82601689931068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11737", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244440185359577, + 48.82204069761183 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9774", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272782807861819, + 48.82104770236778 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25841", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266651273701649, + 48.824855278045504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27183", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677109832627496, + 48.81684018178412 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20641", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Prunus cerasus 'Tardif de Vignola'", + "species:FR": "Cerisier 'Tardif de Vignola'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597567064947564, + 48.82552266997199 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16774", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256355727848266, + 48.82432124772468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27868", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264322539022259, + 48.820194530430875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15180", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266119561442123, + 48.82041687783604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22151", + "ref:FR:issy_les_mx:ordre_arbre": "556", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25378225584135, + 48.82311210328489 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11799", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655892031944282, + 48.81423466125539 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11472", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2721267829331224, + 48.82494493794803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11049", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774355372042296, + 48.82909134456747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14519", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594911394826678, + 48.817170017722404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29654", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276938108941784, + 48.8289047663071 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11906", + "ref:FR:issy_les_mx:ordre_arbre": "123", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476880840976943, + 48.81993337480646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10400", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249207156612113, + 48.820061598078254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9936", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2566148176138796, + 48.82381438405322 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17078", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732965565446097, + 48.822109973424205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12535", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24406796369299, + 48.82076370072664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9933", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704287122506384, + 48.821440165338124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11467", + "ref:FR:issy_les_mx:ordre_arbre": "128", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273333892762201, + 48.82219875194366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11900", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268027630872447, + 48.8206636769235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29568", + "ref:FR:issy_les_mx:ordre_arbre": "569", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2735207427542106, + 48.82494980976657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14202", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593828335804944, + 48.81884415099519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13706", + "ref:FR:issy_les_mx:ordre_arbre": "490", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244135648409255, + 48.819056148083135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10043", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277032756511584, + 48.822719054869076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10510", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271174762648081, + 48.82633006768655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28774", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716412596693276, + 48.825625437890054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11107", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280023311942252, + 48.82355659335595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13087", + "ref:FR:issy_les_mx:ordre_arbre": "155", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2490902232656915, + 48.81846421328847 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12696", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621081778747336, + 48.81566364312092 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16070", + "ref:FR:issy_les_mx:ordre_arbre": "324", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547238710334874, + 48.81809049870343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12426", + "ref:FR:issy_les_mx:ordre_arbre": "266", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607293544930767, + 48.82383063133353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10049", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2523950453491244, + 48.82204242959482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10231", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616743425512738, + 48.815371306046956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15904", + "ref:FR:issy_les_mx:ordre_arbre": "524", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2459421237607042, + 48.8196157377822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11816", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678179241507146, + 48.820718032817645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29570", + "ref:FR:issy_les_mx:ordre_arbre": "574a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260273163346349, + 48.81597721820483 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27601", + "ref:FR:issy_les_mx:ordre_arbre": "582", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265629893267456, + 48.82631889103052 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30584", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270057311059083, + 48.81708827830614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21610", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267960713253771, + 48.820171271776495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27897", + "ref:FR:issy_les_mx:ordre_arbre": "181a", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249364902761876, + 48.82068033024659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12890", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678358955603017, + 48.82013165370955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13500", + "ref:FR:issy_les_mx:ordre_arbre": "188", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278200037291657, + 48.820744049875586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13821", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262552452784468, + 48.81530072695287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15961", + "ref:FR:issy_les_mx:ordre_arbre": "338", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680304396768296, + 48.82071679562468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14648", + "ref:FR:issy_les_mx:ordre_arbre": "578", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642604126432175, + 48.823269538922624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12626", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514891072124295, + 48.81974027493353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30683", + "ref:FR:issy_les_mx:ordre_arbre": "27d", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266070312106641, + 48.820383214494186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13618", + "ref:FR:issy_les_mx:ordre_arbre": "555", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643005073304927, + 48.82019223628203 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21457", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2552430890231197, + 48.82297082371184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10126", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279164460895568, + 48.82303480151276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14135", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652085126391728, + 48.82496782448189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9824", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260163994594528, + 48.81842018126675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29718", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617137871892123, + 48.81508997500331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27660", + "ref:FR:issy_les_mx:ordre_arbre": "641", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2568569263335116, + 48.82358276132197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16908", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659500527089014, + 48.82914495677232 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14633", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2806244907533246, + 48.82356192400565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13978", + "ref:FR:issy_les_mx:ordre_arbre": "161", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262451108914118, + 48.81564184715135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15859", + "ref:FR:issy_les_mx:ordre_arbre": "138", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245605375370136, + 48.82305490677012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30058", + "ref:FR:issy_les_mx:ordre_arbre": "1b", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269257535967938, + 48.82254422067144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14300", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615819680931106, + 48.81661085034225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15926", + "ref:FR:issy_les_mx:ordre_arbre": "229", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805901835623574, + 48.82382465803758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12038", + "ref:FR:issy_les_mx:ordre_arbre": "131", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251586411968302, + 48.819739694433494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30685", + "ref:FR:issy_les_mx:ordre_arbre": "27b", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268860512126384, + 48.82257372964081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29912", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589395088320523, + 48.81714409740081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27793", + "ref:FR:issy_les_mx:ordre_arbre": "13a", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605185782101525, + 48.815977766632344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16128", + "ref:FR:issy_les_mx:ordre_arbre": "287", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775430587838965, + 48.8276036503451 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9480", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616858762494916, + 48.8151375601814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27652", + "ref:FR:issy_les_mx:ordre_arbre": "633", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2744566763832728, + 48.82041059513608 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10385", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725975687038313, + 48.8163368322956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10401", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255088835586057, + 48.81742269634773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12590", + "ref:FR:issy_les_mx:ordre_arbre": "199", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654581988543545, + 48.82036934030294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21804", + "ref:FR:issy_les_mx:ordre_arbre": "525", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265751813376791, + 48.829204156736765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28021", + "ref:FR:issy_les_mx:ordre_arbre": "33a", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631053583868015, + 48.814931934998235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15798", + "ref:FR:issy_les_mx:ordre_arbre": "173", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2766539349045676, + 48.822113575292605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30583", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278784145283809, + 48.822873928002004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14428", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255447639287545, + 48.822856147719214 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29837", + "ref:FR:issy_les_mx:ordre_arbre": "9a", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604681908581292, + 48.816016607951966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15970", + "ref:FR:issy_les_mx:ordre_arbre": "272", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622372786312175, + 48.81953240630314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9866", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2504516939732135, + 48.82251252604567 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12510", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673011090225006, + 48.82033902402809 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13527", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561045346526396, + 48.82355952554109 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28018", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702851282356766, + 48.82638304444475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28041", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259793475564072, + 48.81880479804564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16961", + "ref:FR:issy_les_mx:ordre_arbre": "384", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659061953814845, + 48.824489218126274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29849", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261004360721, + 48.82800307025849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30549", + "ref:FR:issy_les_mx:ordre_arbre": "19a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612472492042346, + 48.81585902645139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15986", + "ref:FR:issy_les_mx:ordre_arbre": "445", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615365509131307, + 48.814709696935815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27750", + "ref:FR:issy_les_mx:ordre_arbre": "731", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671616671469943, + 48.82326907105426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11422", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262532311845645, + 48.814611169711505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15837", + "ref:FR:issy_les_mx:ordre_arbre": "358", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629223139896997, + 48.820077077139004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29455", + "ref:FR:issy_les_mx:ordre_arbre": "4a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2455127907530463, + 48.821601396032214 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10949", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26176700006752, + 48.81510208575433 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27645", + "ref:FR:issy_les_mx:ordre_arbre": "626", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261479420681159, + 48.81488760306114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27753", + "ref:FR:issy_les_mx:ordre_arbre": "734", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633930586895326, + 48.82798582488506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27985", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26379423303628, + 48.81989220342666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13491", + "ref:FR:issy_les_mx:ordre_arbre": "461", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254757550384872, + 48.823512174671535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11503", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651394445009982, + 48.82509436199454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21472", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617778257536316, + 48.81504926848899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27682", + "ref:FR:issy_les_mx:ordre_arbre": "663", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251522967571036, + 48.81955492628589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12987", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2550957705565935, + 48.81737589670275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29508", + "ref:FR:issy_les_mx:ordre_arbre": "198d", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2511313962159467, + 48.82014117804754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11914", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2460859449599466, + 48.8224229136614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9459", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536455938942654, + 48.81961962626014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26714", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789947500529992, + 48.829605310747596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29471", + "ref:FR:issy_les_mx:ordre_arbre": "15" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280477329138879, + 48.82235857392274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12236", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262533898385743, + 48.81519247340041 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16148", + "ref:FR:issy_les_mx:ordre_arbre": "151", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589536923024647, + 48.81811845680457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16668", + "ref:FR:issy_les_mx:ordre_arbre": "105", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791589456581547, + 48.82768852979398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10501", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258497519803966, + 48.815615062274595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11902", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2533016320122066, + 48.82035277873268 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29459", + "ref:FR:issy_les_mx:ordre_arbre": "9" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265746942151176, + 48.830067684585764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12111", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782899728951946, + 48.82292475765621 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14148", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670773933173938, + 48.82336663651489 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11572", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254775924029991, + 48.817496569368274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12660", + "ref:FR:issy_les_mx:ordre_arbre": "174", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280807692223236, + 48.82349355111512 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12211", + "ref:FR:issy_les_mx:ordre_arbre": "178", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266115000425539, + 48.82093164360149 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16386", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252565663410511, + 48.82159373198625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11164", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542001983567235, + 48.82288268069529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11452", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279182201139022, + 48.82406810946636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13598", + "ref:FR:issy_les_mx:ordre_arbre": "110", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690047939076714, + 48.820206030924936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27558", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24738242801467, + 48.81997714643354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11075", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690028395447617, + 48.82079033695881 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13629", + "ref:FR:issy_les_mx:ordre_arbre": "92", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259782838790286, + 48.81827283974471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29757", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2819276039243293, + 48.82845120951128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10407", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575529152318126, + 48.81800478423459 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12700", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2482988178635326, + 48.823122170040456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30557", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279607666946625, + 48.823556385784535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12597", + "ref:FR:issy_les_mx:ordre_arbre": "85", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273004455158455, + 48.816528049368394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10265", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681113476743366, + 48.81611703746864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29818", + "ref:FR:issy_les_mx:ordre_arbre": "36b", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270098745458744, + 48.81704762362523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28269", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731188664046766, + 48.81657672138516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10264", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558849556128098, + 48.82233375920848 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12793", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647579393256554, + 48.82594875944589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10042", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775760219124583, + 48.828847461364084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13580", + "ref:FR:issy_les_mx:ordre_arbre": "89", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630473307954233, + 48.81490030356586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15952", + "ref:FR:issy_les_mx:ordre_arbre": "349", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620209623285636, + 48.81635395074153 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15401", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536493815392067, + 48.81805266349718 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12068", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615751122182814, + 48.82471936842806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11067", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261646535404856, + 48.816043110537606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15301", + "ref:FR:issy_les_mx:ordre_arbre": "312", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596448580332407, + 48.81811402373904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29794", + "ref:FR:issy_les_mx:ordre_arbre": "91", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2444992726468973, + 48.82163444509889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29810", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601455393219037, + 48.81899718593067 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12937", + "ref:FR:issy_les_mx:ordre_arbre": "237", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618708126052876, + 48.82809200436763 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27934", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603051317737646, + 48.82276655840123 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13793", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282061162939646, + 48.82848650294941 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10603", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274661955359678, + 48.82328874288284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28207", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643163385659273, + 48.826747663976576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11911", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704085695832883, + 48.816577326928744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_677", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672357372701852, + 48.820323375947595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29540", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773857487151736, + 48.82812408537747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9677", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776458183994404, + 48.828796958621616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14380", + "ref:FR:issy_les_mx:ordre_arbre": "91", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248127501854619, + 48.81858199267353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11870", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2460788539308494, + 48.821192033756255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10825", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597532226218657, + 48.81881002419316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14189", + "ref:FR:issy_les_mx:ordre_arbre": "378", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773941741445785, + 48.82863558662452 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13647", + "ref:FR:issy_les_mx:ordre_arbre": "94", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2443399909392796, + 48.82079755610862 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10715", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257590546615335, + 48.81816885775305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12074", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547318567817434, + 48.823638538902465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10055", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256353881927885, + 48.817405857073624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29968", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450880201493657, + 48.81943284252692 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11172", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658153962958254, + 48.8315849758478 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29888", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus x subhirtella 'Autumnalis'", + "species:FR": "Cerisier à fleur d'automne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534464268276664, + 48.81735971727797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12666", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272722670657982, + 48.81639003793675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10780", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264307460458915, + 48.820100265610506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12706", + "ref:FR:issy_les_mx:ordre_arbre": "502", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590364938279097, + 48.81667341896343 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29938", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268764117750503, + 48.81751506811601 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20535", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Malus domestica 'Reinette du Mans'", + "species:FR": "Pommier 'Reinette du Mans'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724351630860298, + 48.82142428036231 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13336", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269466184370608, + 48.8209860638838 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12273", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268042136793578, + 48.820143799599684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27899", + "ref:FR:issy_les_mx:ordre_arbre": "181c", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254665435583472, + 48.8174459498563 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14095", + "ref:FR:issy_les_mx:ordre_arbre": "160", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624437946923273, + 48.81547358465216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14767", + "ref:FR:issy_les_mx:ordre_arbre": "190", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545148926503478, + 48.82199661560538 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27043", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279912655824505, + 48.82385878810906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13264", + "ref:FR:issy_les_mx:ordre_arbre": "100", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774298915498794, + 48.828608627843444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13587", + "ref:FR:issy_les_mx:ordre_arbre": "93", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712298490835976, + 48.82624911128184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30730", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264620456202158, + 48.8199701620946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13987", + "ref:FR:issy_les_mx:ordre_arbre": "428", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695586333526645, + 48.8178171430508 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20320", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251655690662461, + 48.81943723704522 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13335", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2478914999571677, + 48.8198884949435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15572", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669606750786313, + 48.821066247004865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11789", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278833998313927, + 48.82356212941269 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27875", + "ref:FR:issy_les_mx:ordre_arbre": "21e", + "species": "Acer ginnala", + "species:FR": "Erable du fleuve Amour" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276711367595018, + 48.82801897110994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30544", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus americana 'Skyline'", + "species:FR": "Frêne blanc 'Skyline'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278661981672558, + 48.82389584125473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27879", + "ref:FR:issy_les_mx:ordre_arbre": "65f", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2569904180563833, + 48.817263935458456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29918", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652449855592933, + 48.81980271077717 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13668", + "ref:FR:issy_les_mx:ordre_arbre": "364", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724424114484902, + 48.826053761094364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11146", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632059510355726, + 48.81980567983885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16194", + "ref:FR:issy_les_mx:ordre_arbre": "479", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602870622649402, + 48.81875765126946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12910", + "ref:FR:issy_les_mx:ordre_arbre": "234", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2769007953543663, + 48.82804253695502 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9482", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2805334181109296, + 48.831247235298385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30719", + "ref:FR:issy_les_mx:ordre_arbre": "7a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601173760277105, + 48.816254704761505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29441", + "ref:FR:issy_les_mx:ordre_arbre": "407a", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2857579861583472, + 48.82878904614672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10301", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261086798454797, + 48.82141085041065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10768", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628773627210497, + 48.81503806624314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15302", + "ref:FR:issy_les_mx:ordre_arbre": "345", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276045614248744, + 48.82734848912501 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30567", + "ref:FR:issy_les_mx:ordre_arbre": "1f", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788277893957947, + 48.828179781894505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12171", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262017961880087, + 48.822556430870144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16201", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639551472156487, + 48.824038322770164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12692", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2495385918119197, + 48.820214146324275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28779", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254125821216273, + 48.822730280800464 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10830", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275130238826762, + 48.82313239233477 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9402", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266809083209095, + 48.8210408556388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11080", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259945249962015, + 48.815879152939935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16121", + "ref:FR:issy_les_mx:ordre_arbre": "483", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683578114755747, + 48.819972876944085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12770", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246942833012868, + 48.822628543349424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_7913", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733657397675895, + 48.8252600668884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27560", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2464766525914874, + 48.82334099050822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10112", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674370332911664, + 48.816821189559946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20440", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Prunus cerasus 'Bigarreau Napoléon'", + "species:FR": "Cerisier 'Bigarreau Napoléon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279148938764377, + 48.823658374509264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27873", + "ref:FR:issy_les_mx:ordre_arbre": "13e", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261465776720843, + 48.816549860685356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16208", + "ref:FR:issy_les_mx:ordre_arbre": "231", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662606145358866, + 48.82963389315944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10234", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781677814748673, + 48.82267402733667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16216", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Thuja plicata", + "species:FR": "Thuya géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541487014732557, + 48.81733999957834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11758", + "ref:FR:issy_les_mx:ordre_arbre": "113", + "species": "Magnolia x soulangeana", + "species:FR": "Magnolia de Soulange" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545589117003755, + 48.81714155997014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11969", + "ref:FR:issy_les_mx:ordre_arbre": "191", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271280017766952, + 48.826170025254704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29852", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261868047674356, + 48.82782559097138 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28065", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277415233191718, + 48.82946546359394 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14250", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606884142083232, + 48.81613265172447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15865", + "ref:FR:issy_les_mx:ordre_arbre": "267", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713674555729426, + 48.827584075985996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13998", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680659107062757, + 48.816103807985606 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29819", + "ref:FR:issy_les_mx:ordre_arbre": "36c", + "species": "Tilia sp.", + "species:FR": "Tilleul indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775196283703156, + 48.82146435190299 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14899", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2453709758160465, + 48.8194363464607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26122", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260875873222837, + 48.823458644162 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12807", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273811093542738, + 48.82400232370266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9641", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262956375775306, + 48.81969923380367 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13566", + "ref:FR:issy_les_mx:ordre_arbre": "341", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279735532875892, + 48.823979149025654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12952", + "ref:FR:issy_les_mx:ordre_arbre": "118", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261338575900909, + 48.81629524262326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16377", + "ref:FR:issy_les_mx:ordre_arbre": "303", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268872316982542, + 48.816571155082855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20317", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659316761593065, + 48.82590919889533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9628", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592103308009315, + 48.81813466565293 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29674", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer saccharinum 'Pyramidalis'", + "species:FR": "Erable argenté pyramidale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485033499018776, + 48.8186993938523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14723", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259955616110596, + 48.81872760045806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12880", + "ref:FR:issy_les_mx:ordre_arbre": "230", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678508041266556, + 48.82023944466681 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13360", + "ref:FR:issy_les_mx:ordre_arbre": "195", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250315009391846, + 48.82343655029076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9614", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617955926034896, + 48.82473704789923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10954", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619092081846066, + 48.815051788875714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27704", + "ref:FR:issy_les_mx:ordre_arbre": "685", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259459161038288, + 48.818655601525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16792", + "ref:FR:issy_les_mx:ordre_arbre": "304", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613410079265495, + 48.81525869939869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15751", + "ref:FR:issy_les_mx:ordre_arbre": "383", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268798453731358, + 48.81813041509951 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28265", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283078457396371, + 48.82989878870419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13148", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611116761693353, + 48.824984504091915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11308", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253906505126688, + 48.8231952841769 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10151", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781496705800235, + 48.825789948256144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12558", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793642601247113, + 48.823067812149596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14621", + "ref:FR:issy_les_mx:ordre_arbre": "90", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259240803360661, + 48.81849090418421 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29491", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773853784894107, + 48.82760370536195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9621", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661802196628305, + 48.82915536743341 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14124", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250657598656155, + 48.82391782139623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14291", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539145621545447, + 48.81705125247712 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12617", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Populus alba 'Nivea'", + "species:FR": "Peuplier argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272170312089949, + 48.8218544853891 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10489", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631826317958845, + 48.81970275690118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16290", + "ref:FR:issy_les_mx:ordre_arbre": "349", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2508561336436816, + 48.81995285976599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28725", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Quercus bimundorum 'Fastigiata'", + "species:FR": "Chène colonnaire fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650179393562526, + 48.82026798355047 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12132", + "ref:FR:issy_les_mx:ordre_arbre": "511", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594296785962724, + 48.81906551068581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13143", + "ref:FR:issy_les_mx:ordre_arbre": "213", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617527792424648, + 48.82571349710659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9514", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660939332412915, + 48.82013625873643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27912", + "ref:FR:issy_les_mx:ordre_arbre": "382a", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267588130588354, + 48.823942694989164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10136", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596690250675158, + 48.818959852316034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21370", + "ref:FR:issy_les_mx:ordre_arbre": "509", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594369884931984, + 48.81720321317635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29647", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546074370992124, + 48.81760309988585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13676", + "ref:FR:issy_les_mx:ordre_arbre": "165", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710910642500703, + 48.82213432218318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12560", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267802398078056, + 48.82055317032572 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27889", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622817939539375, + 48.8296108022234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28988", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594937442272562, + 48.81870223050672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13213", + "ref:FR:issy_les_mx:ordre_arbre": "279", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679608146104586, + 48.81770688308562 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20666", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666352203833955, + 48.81721249722752 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20628", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2730931338524716, + 48.82112107512823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11174", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2454536082918803, + 48.822859963903404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15715", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254198662589471, + 48.82263897293309 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10797", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus hillieri 'Spire'", + "species:FR": "Cerisier à fleurs 'Spire'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26101769981895, + 48.81663557173347 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15999", + "ref:FR:issy_les_mx:ordre_arbre": "241", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628423992056397, + 48.81566416407997 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14765", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626198197802045, + 48.82006738648382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27786", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280028836923053, + 48.82328778338495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13378", + "ref:FR:issy_les_mx:ordre_arbre": "120", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278433137988213, + 48.82208281494547 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14776", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254478295116976, + 48.81755138802113 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12638", + "ref:FR:issy_les_mx:ordre_arbre": "134", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2486112480205698, + 48.819017897227084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12015", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614713903887926, + 48.81601188073905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27780", + "ref:FR:issy_les_mx:ordre_arbre": "761", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260803958503579, + 48.82422587068814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22369", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254695003007443, + 48.81748726061307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29497", + "ref:FR:issy_les_mx:ordre_arbre": "161a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692609650083906, + 48.82100763296971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13256", + "ref:FR:issy_les_mx:ordre_arbre": "598", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259918865128493, + 48.81837090601271 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29744", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Fraxinus sp.", + "species:FR": "Frêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790686376188782, + 48.8230027163733 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13036", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622212614316624, + 48.82908906595094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8793", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276461884342244, + 48.82802550968706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28346", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246938751193204, + 48.819805436700015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10442", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542561866110744, + 48.817150332641326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12547", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595353034168717, + 48.818719135672694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16953", + "ref:FR:issy_les_mx:ordre_arbre": "271", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263168007401795, + 48.8200349108016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13419", + "ref:FR:issy_les_mx:ordre_arbre": "496", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279486307331401, + 48.82161071042164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12779", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622288892622127, + 48.81467942140415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15850", + "ref:FR:issy_les_mx:ordre_arbre": "369", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591216707844493, + 48.82385151083029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16943", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2794269450277955, + 48.822822569669334 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13792", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.283156005744622, + 48.82996994299834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13235", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771520192321466, + 48.82216168212772 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10224", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258658135862821, + 48.81791043002914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29461", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25954058800723, + 48.81870253244546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13238", + "ref:FR:issy_les_mx:ordre_arbre": "286", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259694603493069, + 48.82551048273968 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16946", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268619638675603, + 48.817877361150124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20394", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Malus domestica 'Jonagold'", + "species:FR": "Pommier 'Jonagold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624011319122848, + 48.814563907475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16011", + "ref:FR:issy_les_mx:ordre_arbre": "365", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257959170515539, + 48.817469333773275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14724", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268666523518254, + 48.81669397637016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29523", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697457518960906, + 48.82583643434702 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27930", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262551038096403, + 48.82976490739319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28974", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661329949695013, + 48.82356251907207 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16600", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712608821953175, + 48.82754412068472 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10698", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278200650584833, + 48.822176659347605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10156", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Acer x zoeschense 'Annae'", + "species:FR": "Erable zoeschense 'Annaea'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595178512151843, + 48.81865597957714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14586", + "ref:FR:issy_les_mx:ordre_arbre": "315", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28051406064543, + 48.82350030636725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12034", + "ref:FR:issy_les_mx:ordre_arbre": "231", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268980824885537, + 48.81767596415047 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20638", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602324269717524, + 48.815968781594066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27600", + "ref:FR:issy_les_mx:ordre_arbre": "581", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247596834558732, + 48.82270656570056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9691", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558593589809326, + 48.820949585035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10938", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669097043978272, + 48.81694129887797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20773", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pyrus communis 'Beurré de l'Assomption'", + "species:FR": "Poirier 'Beurré de l'Assomption'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537840638521565, + 48.82308428671842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11441", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261288935720205, + 48.82362971449106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10678", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2723415032743985, + 48.82343576661564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11556", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2557547141419594, + 48.82230195454229 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12392", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2570947182826266, + 48.82350600043173 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16683", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277284687755677, + 48.8289510551008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13660", + "ref:FR:issy_les_mx:ordre_arbre": "138", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276879918521564, + 48.82789567883601 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29864", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775578398985905, + 48.82208798964998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11318", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280131850540018, + 48.82371439432839 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29586", + "ref:FR:issy_les_mx:ordre_arbre": "151", + "species": "Acer ginnala", + "species:FR": "Erable du fleuve Amour" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259121701581274, + 48.81711743593512 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29602", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560032189109873, + 48.82425447819958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27826", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661356795626855, + 48.82940211007431 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13963", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Salix caprea", + "species:FR": "Saule marsault" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777207595485334, + 48.82911090309773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13343", + "ref:FR:issy_les_mx:ordre_arbre": "150", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623309469375186, + 48.82348149597934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9356", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693706900220003, + 48.82602727615619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27018", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541130366367184, + 48.82279673749544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10078", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609079100300837, + 48.81745099535903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28584", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595051446429437, + 48.818723348611556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13060", + "ref:FR:issy_les_mx:ordre_arbre": "261", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282680821726827, + 48.82963350897564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12092", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767385616688554, + 48.82799309865711 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30545", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276829611293368, + 48.82799290038954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9669", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268288169321235, + 48.81623392826097 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20213", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Prunus cerasus 'Reverchon'", + "species:FR": "Cerisier 'Reverchon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250821822482296, + 48.81916738221768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30573", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2488501006604853, + 48.820521704215544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10795", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258832645494113, + 48.81857637685086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14680", + "ref:FR:issy_les_mx:ordre_arbre": "564", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276414563965207, + 48.82817253333642 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9603", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546541737604318, + 48.81807587978189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13178", + "ref:FR:issy_les_mx:ordre_arbre": "269", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686258385322158, + 48.81761138726731 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20506", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592241036393976, + 48.81857233375839 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14281", + "ref:FR:issy_les_mx:ordre_arbre": "586", + "species": "Tilia x euchlora", + "species:FR": "Tilleul de Crimée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259671497931624, + 48.82545246708744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16909", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791000277313693, + 48.82228602489322 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11679", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659280670508317, + 48.83076178546626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12725", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596764237978593, + 48.818680203967865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14559", + "ref:FR:issy_les_mx:ordre_arbre": "451", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25920405431046, + 48.81857436261446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14335", + "ref:FR:issy_les_mx:ordre_arbre": "587", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607009925704116, + 48.82296123669903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10888", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770956263871724, + 48.82671544864642 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11256", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690696379887183, + 48.82265739232003 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29911", + "ref:FR:issy_les_mx:ordre_arbre": "9a", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804398157203076, + 48.83126053214417 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10920", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256698094491975, + 48.81593151238612 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15571", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264685658962722, + 48.82600380661399 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10822", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260818683814333, + 48.81561803537098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16607", + "ref:FR:issy_les_mx:ordre_arbre": "390", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602510000429246, + 48.81872574533371 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12908", + "ref:FR:issy_les_mx:ordre_arbre": "232", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257581734449578, + 48.815661274814815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13767", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548228885092967, + 48.817429957583116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29502", + "ref:FR:issy_les_mx:ordre_arbre": "174a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614429965618923, + 48.81621364066017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15981", + "ref:FR:issy_les_mx:ordre_arbre": "306", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672544310421783, + 48.81997748071529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12446", + "ref:FR:issy_les_mx:ordre_arbre": "232", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262148972013922, + 48.82904169733147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8798", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271070967931045, + 48.81551409259068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10283", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267344828045596, + 48.821128337058326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11671", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2800584365303163, + 48.831497298730866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9875", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262334228223208, + 48.81563907871586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16370", + "ref:FR:issy_les_mx:ordre_arbre": "195", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265216960186558, + 48.82886658983206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30529", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Punica granatum", + "species:FR": "Grenadier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696965782368093, + 48.814355819081406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11616", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777012640949112, + 48.829253076711225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12110", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266564502725254, + 48.829972645418266 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13010", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274064251773934, + 48.82125931137611 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12797", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254502608920293, + 48.81726166124276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12486", + "ref:FR:issy_les_mx:ordre_arbre": "186", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262258263433581, + 48.829811189609046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28977", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562797558464873, + 48.82425215206271 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27852", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278162208952666, + 48.82260246307317 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14630", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271911253970495, + 48.825053892945846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26773", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256969800385259, + 48.823627327843546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16767", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266642089988494, + 48.81707745219106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20321", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598737710429275, + 48.81891917217189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13477", + "ref:FR:issy_les_mx:ordre_arbre": "362", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656475401331018, + 48.82000223149491 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13723", + "ref:FR:issy_les_mx:ordre_arbre": "375", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2545137836223463, + 48.8176648118731 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13131", + "ref:FR:issy_les_mx:ordre_arbre": "229", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578910982649956, + 48.81579927675699 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13697", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801890760882104, + 48.823441643502306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13650", + "ref:FR:issy_les_mx:ordre_arbre": "226", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2468899693198083, + 48.81975680700446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21526", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792767930823543, + 48.8294924310706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29467", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770215359244483, + 48.82884761723755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11912", + "ref:FR:issy_les_mx:ordre_arbre": "125", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598405924422496, + 48.81832408031274 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29751", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273628629718035, + 48.823986872473384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9752", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261721723567939, + 48.82599670491473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28706", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596797314885704, + 48.81879741014333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14003", + "ref:FR:issy_les_mx:ordre_arbre": "371", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668824861685426, + 48.8182029432213 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673023704253668, + 48.81762274848893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28247", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251972130278813, + 48.81947405946088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21364", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279309023708111, + 48.82234766362684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11581", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667181516485617, + 48.82479215063541 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27186", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2414325059602214, + 48.82134327078807 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9510", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285573904417162, + 48.82922231813302 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30552", + "ref:FR:issy_les_mx:ordre_arbre": "2a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691816530744298, + 48.81787117141882 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20436", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Malus domestica 'Belchard'", + "species:FR": "Pommier 'Belchard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615503934535135, + 48.822874509640705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29877", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Alnus x spaethii", + "species:FR": "Aulne de Spaeth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263085152376357, + 48.82784506271335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27982", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267251711607895, + 48.8249084302829 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15105", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660314220233087, + 48.83006345358505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12583", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703660355660356, + 48.8261994378875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21754", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261938326385214, + 48.81634980057901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15826", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257061100870714, + 48.817177943626234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29924", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785627363655556, + 48.82220373512146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11394", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256704452611769, + 48.81675535143265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29955", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704188592545402, + 48.81490967182053 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10433", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543947270010474, + 48.82015946453439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21747", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261184929539305, + 48.824935934294366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11307", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590233269980358, + 48.818473732156235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14450", + "ref:FR:issy_les_mx:ordre_arbre": "545", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280806290756249, + 48.82391876313649 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11854", + "ref:FR:issy_les_mx:ordre_arbre": "139", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259495966002632, + 48.82531700301428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17121", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645631935732786, + 48.81990846890324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13302", + "ref:FR:issy_les_mx:ordre_arbre": "432", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258408942767883, + 48.82260806509765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11338", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2540607057793696, + 48.81711313976821 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12634", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2460686173946374, + 48.82120434564174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10554", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543190834061697, + 48.81715937094262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12356", + "ref:FR:issy_les_mx:ordre_arbre": "87", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776081704443785, + 48.82755521481243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9479", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246014608547505, + 48.81891258211652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11796", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514942369823845, + 48.82306276225949 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15003", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260607993415566, + 48.82398444411084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10656", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616602334654856, + 48.823845162642456 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10897", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274321432353352, + 48.82138639938781 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10242", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592441302039976, + 48.818940565484915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17153", + "ref:FR:issy_les_mx:ordre_arbre": "199", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2571921833419224, + 48.82250422178893 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11032", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562832227653398, + 48.816390518718855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15621", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593974856561023, + 48.81886636942293 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21637", + "ref:FR:issy_les_mx:ordre_arbre": "491", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251257013202291, + 48.82005299683331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12266", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Fagus sylvatica 'Pendula'", + "species:FR": "Hêtre pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265631047534397, + 48.82938472413753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14121", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614766848620538, + 48.81471544282947 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27751", + "ref:FR:issy_les_mx:ordre_arbre": "732", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2532130635639285, + 48.82054421200416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26669", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Capital'", + "species:FR": "Poirier de Chine 'Capital'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265979129730676, + 48.82586328192381 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9520", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244495394328252, + 48.81924108950894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11150", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686476018370647, + 48.821360255089964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12264", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2413846038375618, + 48.8219778878976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28776", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2428743762988073, + 48.82073915583148 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10575", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275087021964597, + 48.82216235881473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11050", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2727159701103585, + 48.82286993007853 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11170", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263486246587933, + 48.82690647831155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11106", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679556560015213, + 48.82070763512712 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14024", + "ref:FR:issy_les_mx:ordre_arbre": "576", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544156678097296, + 48.817380661151375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11194", + "ref:FR:issy_les_mx:ordre_arbre": "150", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259695383859472, + 48.82318798398519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11856", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257057425357963, + 48.82249144124814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11033", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613561741357042, + 48.816420079588816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22162", + "ref:FR:issy_les_mx:ordre_arbre": "221", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26172530969702, + 48.829979428471525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28970", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632355799364996, + 48.81987394873691 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28300", + "ref:FR:issy_les_mx:ordre_arbre": "608", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592044358619794, + 48.81845035021498 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29490", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674072990593346, + 48.82002136984932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13605", + "ref:FR:issy_les_mx:ordre_arbre": "221", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770285136039683, + 48.829030998506845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26032", + "ref:FR:issy_les_mx:ordre_arbre": "143", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613515267352815, + 48.816489417147615 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16021", + "ref:FR:issy_les_mx:ordre_arbre": "234", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803822851077173, + 48.82335193882788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13789", + "ref:FR:issy_les_mx:ordre_arbre": "115", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269173068362585, + 48.81643946881017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20778", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus domestica 'Reine-Claude Diaphane'", + "species:FR": "Prunier 'Reine-Claude Diaphane'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615194946210315, + 48.81569061206488 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15833", + "ref:FR:issy_les_mx:ordre_arbre": "99", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2521966531424518, + 48.822033808973664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14524", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719082142435423, + 48.82542980767151 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10302", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256249674319483, + 48.82432706338069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27861", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272406440174149, + 48.82274048481054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14543", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617701118791818, + 48.81508429705286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27671", + "ref:FR:issy_les_mx:ordre_arbre": "652", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259882499429353, + 48.81829432278533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29748", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2484397542777916, + 48.8224100948249 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9681", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581168847835005, + 48.822581297321584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11213", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266633070198514, + 48.81734721954859 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20508", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257541484416757, + 48.81626678988301 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30077", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591876306719234, + 48.81720917397385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29610", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625567877881787, + 48.815697595944826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15861", + "ref:FR:issy_les_mx:ordre_arbre": "140", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271861240765316, + 48.81441078806532 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9879", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26860929736296, + 48.817661134588754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20733", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261008161824649, + 48.816044375693735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15907", + "ref:FR:issy_les_mx:ordre_arbre": "439", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597620542060706, + 48.822720178485966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29883", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627844383829445, + 48.819607463892275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10611", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2513675107564852, + 48.81941995193237 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13620", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618564265462773, + 48.82784158123212 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10946", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804554947433395, + 48.82385042935255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12027", + "ref:FR:issy_les_mx:ordre_arbre": "129", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585820453010994, + 48.81822916610259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12982", + "ref:FR:issy_les_mx:ordre_arbre": "129", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265622405842827, + 48.83168816208818 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28350", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695301144233055, + 48.82100235397043 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11934", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609428608202027, + 48.81551546620634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16606", + "ref:FR:issy_les_mx:ordre_arbre": "389", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620171385395618, + 48.82421489170043 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9554", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277286006202467, + 48.82885628214244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13658", + "ref:FR:issy_les_mx:ordre_arbre": "136", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251119306469461, + 48.81975648204648 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10813", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268206421352116, + 48.81718913479887 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28239", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2753975823491555, + 48.823109317334406 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9403", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243175852811046, + 48.82119126523009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11991", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2505383596367485, + 48.81908349530696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12619", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662168170346297, + 48.81599335565854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27801", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2525954224018423, + 48.82191730119558 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28327", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544950129438868, + 48.817733232696774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14240", + "ref:FR:issy_les_mx:ordre_arbre": "232", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271452592102677, + 48.82591561903839 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30734", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601935814077136, + 48.822757539660905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11529", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776093004549085, + 48.82938665949632 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16517", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271669803630082, + 48.82153036787975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11509", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607634744473164, + 48.82326004233732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10963", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265503542234365, + 48.82908996263089 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22253", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270466314050681, + 48.82131488038411 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28290", + "ref:FR:issy_les_mx:ordre_arbre": "115", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666587283964925, + 48.82013747728956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27903", + "ref:FR:issy_les_mx:ordre_arbre": "212b", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251672510724407, + 48.819647933048806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13404", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785700124921133, + 48.82625901346774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9956", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266124554798075, + 48.82911769427319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14125", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661818369236704, + 48.82922354395892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14233", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Salix caprea", + "species:FR": "Saule marsault" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602047849462292, + 48.816126733948614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16345", + "ref:FR:issy_les_mx:ordre_arbre": "404", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792521670507457, + 48.82308447361094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14030", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260023245041225, + 48.8158286288317 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15209", + "ref:FR:issy_les_mx:ordre_arbre": "481", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645398385806685, + 48.81491177387561 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28778", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246585697750068, + 48.819894392360915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30714", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573701173891596, + 48.81809046189726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12285", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260047886812783, + 48.815882916578964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27596", + "ref:FR:issy_les_mx:ordre_arbre": "577", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594550286206334, + 48.816243843232805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12462", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654445568677803, + 48.82697252552861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21182", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588648515239225, + 48.81877452908375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22156", + "ref:FR:issy_les_mx:ordre_arbre": "620", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267992969609241, + 48.816106758204135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26195", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Prunus cerasus 'Bigarreau'", + "species:FR": "Cerisier 'Bigarreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584927446402396, + 48.818584166133746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12837", + "ref:FR:issy_les_mx:ordre_arbre": "173", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2723586793091517, + 48.823560611049416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16285", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593114836096775, + 48.81890781443879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13522", + "ref:FR:issy_les_mx:ordre_arbre": "495", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2456847720506805, + 48.823083918403626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30059", + "ref:FR:issy_les_mx:ordre_arbre": "1c", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25936971129568, + 48.81893031282489 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13467", + "ref:FR:issy_les_mx:ordre_arbre": "499", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539653332356573, + 48.82316516496541 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10152", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261748520355718, + 48.81499617902289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16552", + "ref:FR:issy_les_mx:ordre_arbre": "377", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255882821185642, + 48.82192317933728 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16526", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595120955095265, + 48.818815125599386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14180", + "ref:FR:issy_les_mx:ordre_arbre": "472", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562984128441954, + 48.824214224240094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27850", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271831566508137, + 48.82150702523192 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11511", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261638127592833, + 48.816132591002614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16076", + "ref:FR:issy_les_mx:ordre_arbre": "212", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624845402604334, + 48.815930864548065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15204", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279125482847064, + 48.82250709294303 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14522", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27369793908909, + 48.8274108176879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9767", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2507667474140756, + 48.82369697925139 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14288", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2810275100010826, + 48.83128777065501 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11566", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644125191026347, + 48.82724346919495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12059", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2556654492395665, + 48.82111459393216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11140", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567845685026806, + 48.822470655352774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11197", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262629295378608, + 48.82764207725221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9901", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280128779172721, + 48.823910229670695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9116", + "ref:FR:issy_les_mx:ordre_arbre": "124", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686559655006797, + 48.817440060219475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20642", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250284638457356, + 48.81907063279248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12522", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601546081370745, + 48.81577929849982 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15184", + "ref:FR:issy_les_mx:ordre_arbre": "280", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586117147265696, + 48.825145551096526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16771", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782828235599855, + 48.82888353767944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12197", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sophora japonica 'Pendula'", + "species:FR": "Sophora du Japon pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685024502636413, + 48.81664379272069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20363", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262263219072614, + 48.81499893219383 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28383", + "ref:FR:issy_les_mx:ordre_arbre": "153b", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261516682719532, + 48.815333481159804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28387", + "ref:FR:issy_les_mx:ordre_arbre": "525a", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258598145251152, + 48.81881480784802 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13007", + "ref:FR:issy_les_mx:ordre_arbre": "641", + "species": "Crataegus sp.", + "species:FR": "Aubépine non identifée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2823800663452123, + 48.829729921031664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28280", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276019634633778, + 48.82175203448183 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12754", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279172217261312, + 48.82283718832217 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14144", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671356129999523, + 48.81793034541688 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20366", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733409004771477, + 48.82137297312778 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28763", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276884095360866, + 48.82669485309523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11222", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601472106992313, + 48.81593740498134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27591", + "ref:FR:issy_les_mx:ordre_arbre": "572", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27394041487958, + 48.82394286427998 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28206", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27089100407315, + 48.81527370325176 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10454", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243498410530449, + 48.82182109185903 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16532", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248589222513724, + 48.8189988158313 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12154", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269902485143158, + 48.8209441223386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16288", + "ref:FR:issy_les_mx:ordre_arbre": "149", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716795392207803, + 48.825198250195676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26757", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280276042961548, + 48.83140559575611 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30723", + "ref:FR:issy_les_mx:ordre_arbre": "4a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2765221674889147, + 48.82237099602382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12420", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774176293168247, + 48.82146204980901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14898", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fagus sylvatica 'Pendula'", + "species:FR": "Hêtre pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265529833565532, + 48.82017847043131 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11468", + "ref:FR:issy_les_mx:ordre_arbre": "522", + "species": "Crataegus sp.", + "species:FR": "Aubépine non identifée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2809355375082223, + 48.82370062413706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26123", + "ref:FR:issy_les_mx:ordre_arbre": "173", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595579789631626, + 48.81667215423659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30036", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614108599929925, + 48.82285938950009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29878", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539235603061405, + 48.81777436073997 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12046", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258982943854037, + 48.818598390521494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14352", + "ref:FR:issy_les_mx:ordre_arbre": "415", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826501783405626, + 48.82951378170534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13199", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671515285115436, + 48.823343715248576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11573", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259643134155776, + 48.81585271839354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15730", + "ref:FR:issy_les_mx:ordre_arbre": "490", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708563132237116, + 48.825346010581896 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26788", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590149719925083, + 48.81869806407117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14475", + "ref:FR:issy_les_mx:ordre_arbre": "603", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251603510578855, + 48.82295938504651 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15137", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677351439039484, + 48.820455103010566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28750", + "ref:FR:issy_les_mx:ordre_arbre": "74", + "species": "Acer platanoides 'Farlake's Green'", + "species:FR": "Erable plane 'Farlake's Green'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247577723356327, + 48.81931173462328 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28762", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263620996116825, + 48.82697812758817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9571", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620159007064515, + 48.81496097982279 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27622", + "ref:FR:issy_les_mx:ordre_arbre": "603", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2451188164769915, + 48.821818278491484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11814", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269956068719157, + 48.82111177119991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12251", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264480731750783, + 48.81488244613424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10331", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273882360626444, + 48.82386884590373 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9768", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629128867120833, + 48.81546681048387 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15864", + "ref:FR:issy_les_mx:ordre_arbre": "144", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575629152097387, + 48.81780843884682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12337", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720123144534696, + 48.814670314517784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11693", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781761182773397, + 48.82390719006401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13204", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258420605716513, + 48.825328920559386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17233", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265718845691481, + 48.8260915649808 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11109", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697906225249143, + 48.81703473728952 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20277", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2861288595432194, + 48.82759681990888 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11782", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620053221261935, + 48.824284266382755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9530", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270018594279041, + 48.821055946076115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13233", + "ref:FR:issy_les_mx:ordre_arbre": "108", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652008883665906, + 48.81957080634048 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14670", + "ref:FR:issy_les_mx:ordre_arbre": "294", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264561200979917, + 48.825928519042755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9896", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253948773464927, + 48.817923748302356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12450", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Ficus carica", + "species:FR": "Figuier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268080926574503, + 48.81644919235076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20245", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258530206970008, + 48.81721984049929 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14843", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597997085833996, + 48.81562721206881 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29443", + "ref:FR:issy_les_mx:ordre_arbre": "492a", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247041320274307, + 48.81977251421224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10729", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266940034722592, + 48.823404309286865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10247", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279891838486764, + 48.82340853468577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12985", + "ref:FR:issy_les_mx:ordre_arbre": "222", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782650171109, + 48.82588767806429 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11731", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2861471344277353, + 48.827545108687076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10039", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260964116391697, + 48.827406003549015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14221", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282668531536938, + 48.82693764275427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10323", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613299571805845, + 48.81500782715253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27756", + "ref:FR:issy_les_mx:ordre_arbre": "737" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261845939717777, + 48.82749187435388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28078", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2428809300841364, + 48.82113763665517 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12245", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254726866295241, + 48.81735390996423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12411", + "ref:FR:issy_les_mx:ordre_arbre": "181", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609149551577743, + 48.81726831558053 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28578", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259316298745237, + 48.816572443265436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29934", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Sorbus sp.", + "species:FR": "Sorbier ou alizier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595639889772174, + 48.82537411878902 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16947", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244682188923834, + 48.82084775282793 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8875", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588291572237504, + 48.818299511078074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12830", + "ref:FR:issy_les_mx:ordre_arbre": "120", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585379317850562, + 48.81847679068719 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17025", + "ref:FR:issy_les_mx:ordre_arbre": "179", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260937892015247, + 48.81609940828054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21563", + "ref:FR:issy_les_mx:ordre_arbre": "437", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687729326966095, + 48.82015364703179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12679", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Zelkova carpinifolia", + "species:FR": "Orme du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2572186268085446, + 48.8170664992061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29922", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262383040776111, + 48.81543837000623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15948", + "ref:FR:issy_les_mx:ordre_arbre": "333", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2439335025310485, + 48.82086242043025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10240", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274585427160027, + 48.82032567522067 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10546", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716203236283325, + 48.82278199312097 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10075", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259403428346845, + 48.825285732841664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16732", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251692560322615, + 48.81862806017205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10436", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268738396745356, + 48.82045819066247 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15717", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624707891745905, + 48.81569497683909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15812", + "ref:FR:issy_les_mx:ordre_arbre": "114", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589184968963187, + 48.81812155730039 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13161", + "ref:FR:issy_les_mx:ordre_arbre": "107", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795883694273273, + 48.82294691469142 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27047", + "ref:FR:issy_les_mx:ordre_arbre": "14a", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606703589924884, + 48.823867879516385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16321", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598598706096102, + 48.823499180387124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11019", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266601070519509, + 48.82478705496862 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27166", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615791488062142, + 48.816097701723876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15806", + "ref:FR:issy_les_mx:ordre_arbre": "310", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265230811969983, + 48.820064883693995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11360", + "ref:FR:issy_les_mx:ordre_arbre": "403", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632120069051616, + 48.82713768181115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10827", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271514848274332, + 48.82237855963286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12651", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733505508745018, + 48.82556603477546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30677", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer platanoides 'Emerald Queen'", + "species:FR": "Erable plane 'Emerald Queen'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2484699801093524, + 48.81972032670983 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28735", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658600515408955, + 48.82760480262928 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9837", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258729744703311, + 48.81884285403742 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30741", + "ref:FR:issy_les_mx:ordre_arbre": "654a", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257141875910196, + 48.81766429553415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29944", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2424871783991587, + 48.82158279523194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9709", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2478554791183796, + 48.8199118546912 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_473", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263084368307499, + 48.82724200372904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10159", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2632829988582293, + 48.81488276695444 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15890", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269559518727801, + 48.826042693577854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29908", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611379304507797, + 48.81573290104032 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15990", + "ref:FR:issy_les_mx:ordre_arbre": "460", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2479379709634273, + 48.8184424291783 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22366", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253916214560312, + 48.819335382774234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26706", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Fraxinus ornus 'Obelisk'", + "species:FR": "Frêne à fleurs 'Obelisk'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271126890530796, + 48.82520457748593 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26776", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2513848185041305, + 48.81772858708928 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10783", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261388362147606, + 48.81644459172162 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16068", + "ref:FR:issy_les_mx:ordre_arbre": "222", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561713471874922, + 48.82416531650644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27831", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267252865530266, + 48.82040795304834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20927", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257552242058179, + 48.818298052518976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12248", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542044076474155, + 48.817576997146375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12382", + "ref:FR:issy_les_mx:ordre_arbre": "122", + "species": "Salix matsudana 'Tortuosa'", + "species:FR": "Saule matsudana tortueux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26353319627768, + 48.81993142094932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13046", + "ref:FR:issy_les_mx:ordre_arbre": "468", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701273722698367, + 48.81708917210652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20278", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2738207234706893, + 48.8190031471996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11654", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258753824268043, + 48.81653522865422 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29869", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278775922555543, + 48.82280877298025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14736", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25182681268432, + 48.81987826177137 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12150", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693586920247686, + 48.81743460929931 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20605", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618121300183396, + 48.82812851653458 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27935", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2737854728491147, + 48.82391366523764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9753", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680587613117034, + 48.816806143463516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20217", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Prunus cerasus 'Montmorency'", + "species:FR": "Cerisier acide 'Montmorency'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258176204062814, + 48.824573151972736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16942", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257914946218912, + 48.81551820896895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27886", + "ref:FR:issy_les_mx:ordre_arbre": "31a", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254566428117706, + 48.81769740403009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13431", + "ref:FR:issy_les_mx:ordre_arbre": "227", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789672974196025, + 48.82181573541217 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14602", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254020609470241, + 48.819109899641084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26659", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Quercus robur 'Fastigiata Koster'", + "species:FR": "Chêne pédonculé fastigié 'Koster'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27264895486659, + 48.82486283926954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28012", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263773052191056, + 48.82066188517705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28229", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675867024436474, + 48.81998793393166 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27905", + "ref:FR:issy_les_mx:ordre_arbre": "223b", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771571985870085, + 48.82777231092216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9668", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638107760667627, + 48.81998637392583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12823", + "ref:FR:issy_les_mx:ordre_arbre": "464", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605573880979093, + 48.8254851142095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16678", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592212402196132, + 48.822675119630965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10104", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661094909514508, + 48.82980748431066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12790", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700015445790016, + 48.826294522552146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28050", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604949156632665, + 48.81788005506668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29804", + "ref:FR:issy_les_mx:ordre_arbre": "101", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261643945876053, + 48.8281637227321 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27938", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699709947784297, + 48.81707276005314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20534", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Prunus domestica 'Reine-Claude de Bavay'", + "species:FR": "Prunier 'Reine-Claude de Bavay'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548817693149794, + 48.81754103948425 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29500", + "ref:FR:issy_les_mx:ordre_arbre": "166b", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2482597159198963, + 48.81862932818707 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12200", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277707451047927, + 48.82400432312219 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13271", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588448507674714, + 48.818773231346654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14434", + "ref:FR:issy_les_mx:ordre_arbre": "621", + "species": "Ulmus 'Lobel'", + "species:FR": "Orme 'Lobel'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264923727915634, + 48.826766447611675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11004", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25563374094652, + 48.82227152235811 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12400", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795846409158522, + 48.82326868039046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12118", + "ref:FR:issy_les_mx:ordre_arbre": "192", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259522988781898, + 48.81887050541727 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14212", + "ref:FR:issy_les_mx:ordre_arbre": "477", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253635713241163, + 48.82020651891663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22028", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264048948473653, + 48.819657084367954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11997", + "ref:FR:issy_les_mx:ordre_arbre": "327", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629908737705113, + 48.81473428770001 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16305", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271777073020138, + 48.81594493988643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10169", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783469661383804, + 48.820571226493634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16185", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629568592085465, + 48.81471636981717 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16583", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280261342341852, + 48.82388286391063 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12229", + "ref:FR:issy_les_mx:ordre_arbre": "126", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2482458430430317, + 48.82322709635926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9610", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674262931539477, + 48.82326638800953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11701", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262369689540601, + 48.81464881462463 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16231", + "ref:FR:issy_les_mx:ordre_arbre": "361", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2506110790333254, + 48.82043887935223 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10336", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252203865521888, + 48.821814781769326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11612", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779122954920856, + 48.82909707402215 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12025", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2557975453835217, + 48.82100466077857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10937", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264621881522011, + 48.82261043415861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12672", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2512109385298285, + 48.82003955642838 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30698", + "ref:FR:issy_les_mx:ordre_arbre": "42c", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2521301781374214, + 48.819505652049436 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13458", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263255945997727, + 48.82263536556917 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27575", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268621365534431, + 48.82076517756941 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14090", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268477587900901, + 48.81780583764015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28263", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262548439894579, + 48.814854622689445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15783", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261829560806027, + 48.81749016883223 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26496", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267467543122922, + 48.816635463114665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20403", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2775735863842645, + 48.829410201600034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12309", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266571265953365, + 48.824597964965655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27167", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652848205787794, + 48.820289464991085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20857", + "ref:FR:issy_les_mx:ordre_arbre": "518", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245756921046326, + 48.818662601620545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10320", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796400644517676, + 48.823378357731194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20858", + "ref:FR:issy_les_mx:ordre_arbre": "217", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576598753386827, + 48.81630197198734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30068", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618944963628436, + 48.827766305282566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28069", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263995230898846, + 48.820816421691475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15169", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546404058931917, + 48.81718541433669 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12259", + "ref:FR:issy_les_mx:ordre_arbre": "194", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263071596269787, + 48.81534667746745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29453", + "ref:FR:issy_les_mx:ordre_arbre": "749a", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259740369698387, + 48.818167740444785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29786", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692256271147713, + 48.81737737889438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20215", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561662944833034, + 48.82429983281118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27855", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2466487086315174, + 48.81888170087119 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9885", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641678803948944, + 48.82017082383393 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15684", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633159226919903, + 48.82704899137017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11229", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264410928364406, + 48.81494253283904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10330", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2433905549739492, + 48.821229137942765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11990", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618287010362894, + 48.81503411325003 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27680", + "ref:FR:issy_les_mx:ordre_arbre": "661", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279997550631172, + 48.82954322049234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10258", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660771159842974, + 48.824097985960734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27178", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271544801817452, + 48.822316704528866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11193", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669356705041683, + 48.817383341005254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28256", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658517872431196, + 48.83070736784289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12727", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277458379265804, + 48.82755581316305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9620", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267047935259676, + 48.828528044141656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28052", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258964183930876, + 48.81862372057171 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12901", + "ref:FR:issy_les_mx:ordre_arbre": "190", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2553786314453097, + 48.82284076643506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12430", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2723864641977545, + 48.81623730695732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10132", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26538091991702, + 48.82377180804932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11829", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261979843737372, + 48.815320387269644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15563", + "ref:FR:issy_les_mx:ordre_arbre": "82", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259602640288116, + 48.81811091292961 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29792", + "ref:FR:issy_les_mx:ordre_arbre": "89", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259428576966744, + 48.81879911883228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14145", + "ref:FR:issy_les_mx:ordre_arbre": "467", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26016475496765, + 48.816202371218104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15916", + "ref:FR:issy_les_mx:ordre_arbre": "409", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.281958412056717, + 48.82703880219115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15014", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780716196487614, + 48.822938161796515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14472", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258853189917949, + 48.81877112633189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21264", + "ref:FR:issy_les_mx:ordre_arbre": "246", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27452251826068, + 48.82174079567175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16416", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer rubrum 'Red Sunset'", + "species:FR": "Erable rouge 'Red Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248097387974134, + 48.819755872542565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22035", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602914473729356, + 48.825942433961174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11547", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259782051676578, + 48.823552401547076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22354", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591146996026983, + 48.818971747174636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13484", + "ref:FR:issy_les_mx:ordre_arbre": "520", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258528379622599, + 48.81675912707847 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29521", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.241309258948331, + 48.82141090033938 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9103", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614010849788753, + 48.81591808960295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27771", + "ref:FR:issy_les_mx:ordre_arbre": "752", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623517256345806, + 48.82959672233619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28987", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244145949471435, + 48.82093327694569 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22055", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598320506179945, + 48.8173031409095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28534", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24504745063495, + 48.82166847921633 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11668", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267499224417436, + 48.82054273329015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13614", + "ref:FR:issy_les_mx:ordre_arbre": "566", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24897056080944, + 48.81938557621943 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9332", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274638612395611, + 48.8204253126067 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10527", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2808301149497052, + 48.83053787702563 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15100", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261016310297788, + 48.82802493701286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27948", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261153157124501, + 48.82445487221558 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11630", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682388627264247, + 48.82032400810311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14046", + "ref:FR:issy_les_mx:ordre_arbre": "172", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476975974905953, + 48.819845433215605 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11130", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265433297575482, + 48.81429061013602 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11601", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675524155529807, + 48.819975761971286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27906", + "ref:FR:issy_les_mx:ordre_arbre": "223c", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598851548484897, + 48.82603989585244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11828", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2729772697607817, + 48.8165965576554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14220", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594634313181574, + 48.818707610784344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13090", + "ref:FR:issy_les_mx:ordre_arbre": "267", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279852337350299, + 48.82579095938479 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10373", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25701576982141, + 48.81568987280967 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14699", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595334427737863, + 48.81884512202461 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13289", + "ref:FR:issy_les_mx:ordre_arbre": "328", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258860617203088, + 48.8183831720718 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12834", + "ref:FR:issy_les_mx:ordre_arbre": "125", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280556312027847, + 48.82365994285544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13979", + "ref:FR:issy_les_mx:ordre_arbre": "162", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560752585650863, + 48.82088102794116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14037", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678340744323457, + 48.82012012771862 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13499", + "ref:FR:issy_les_mx:ordre_arbre": "187", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263657720514663, + 48.8196757273604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13667", + "ref:FR:issy_les_mx:ordre_arbre": "334", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259745424066175, + 48.81872094193145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13206", + "ref:FR:issy_les_mx:ordre_arbre": "220", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254070776501011, + 48.82283726534124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10077", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623831824265395, + 48.81761807419184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10884", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259485102941227, + 48.82534596686878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16948", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259516968876416, + 48.81871568984172 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13801", + "ref:FR:issy_les_mx:ordre_arbre": "270", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609219662912543, + 48.82796781866493 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30548", + "ref:FR:issy_les_mx:ordre_arbre": "20a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261758706022501, + 48.81531058238612 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15848", + "ref:FR:issy_les_mx:ordre_arbre": "122", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617782613571955, + 48.82296290844409 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12612", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258154665357596, + 48.818108573556714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13227", + "ref:FR:issy_les_mx:ordre_arbre": "168", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253386090394958, + 48.81785040397581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12383", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Picea abies", + "species:FR": "Epicéa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547414935845786, + 48.82013959064775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21751", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259911028817166, + 48.81590573113187 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16130", + "ref:FR:issy_les_mx:ordre_arbre": "484", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2511055509535414, + 48.82021892639841 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11883", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610273218297032, + 48.82732304695226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10257", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259595591639242, + 48.81871286901984 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16791", + "ref:FR:issy_les_mx:ordre_arbre": "288", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785690671175254, + 48.82033524414503 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11558", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251112842042293, + 48.82277924247024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15111", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626707943796136, + 48.81977086485492 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13632", + "ref:FR:issy_les_mx:ordre_arbre": "483", + "species": "Picea pungens", + "species:FR": "Sapin bleu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265944293466787, + 48.83151332987901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29886", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250268218959581, + 48.822452854043114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12203", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601498911503315, + 48.81590207556355 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27612", + "ref:FR:issy_les_mx:ordre_arbre": "593", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251093402545654, + 48.819815481424726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16283", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617626877854757, + 48.82386927391864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10896", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616335837195862, + 48.81506816662626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15808", + "ref:FR:issy_les_mx:ordre_arbre": "380", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258895257808313, + 48.818753680971504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18524", + "ref:FR:issy_les_mx:ordre_arbre": "245", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2510695700763232, + 48.8203480228786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30699", + "ref:FR:issy_les_mx:ordre_arbre": "37a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535945327480356, + 48.82184551888948 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27535", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263047922288313, + 48.81974235012045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13562", + "ref:FR:issy_les_mx:ordre_arbre": "344", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594884109859734, + 48.81872216116414 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16918", + "ref:FR:issy_les_mx:ordre_arbre": "262", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262545966160638, + 48.82930077337722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8485", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Cercidiphyllum japonicum", + "species:FR": "Arbre à caramel" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2737188532145494, + 48.82749687146766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21423", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252155289383308, + 48.82180971917384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21631", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661290225674597, + 48.82416257456779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27177", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258479777432076, + 48.82463084607086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17118", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624166857612944, + 48.814716812614364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16150", + "ref:FR:issy_les_mx:ordre_arbre": "155", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247898487999276, + 48.82030398933774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11486", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278090293813102, + 48.830384074943716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16488", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2758617618434585, + 48.8230620989032 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9757", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25429750070497, + 48.820167647631145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22125", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270738213133385, + 48.821334249583366 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13163", + "ref:FR:issy_les_mx:ordre_arbre": "119", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605534571865467, + 48.816062430635824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15299", + "ref:FR:issy_les_mx:ordre_arbre": "270", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2672799682755613, + 48.825340143932216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21505", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802252602939888, + 48.82265750208161 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11619", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771475567590165, + 48.82161108138683 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12179", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543130694377433, + 48.82273451612202 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11415", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270077284860296, + 48.81713961324726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20386", + "ref:FR:issy_les_mx:ordre_arbre": "63", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26964809795384, + 48.825796804530476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27931", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269769415178491, + 48.817331130465206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20496", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259255553218032, + 48.81713823210716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29625", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244529702680658, + 48.82198869976549 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9622", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648746339822994, + 48.82681699485099 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11159", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826036307296462, + 48.829494326726156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12860", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546146301646215, + 48.8173718138385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14702", + "ref:FR:issy_les_mx:ordre_arbre": "157", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24065596143455, + 48.82151167206242 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30526", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Acer platanoides 'Royal Red'", + "species:FR": "Erable plane 'Royal Red'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595037814801495, + 48.81869572986923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14694", + "ref:FR:issy_les_mx:ordre_arbre": "284", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261776098141291, + 48.81582783085158 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16615", + "ref:FR:issy_les_mx:ordre_arbre": "105", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589924360128104, + 48.817109349430865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29477", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Populus alba", + "species:FR": "Peuplier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274189086602122, + 48.8245241998265 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15403", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Olea sp.", + "species:FR": "Olivier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285858638206426, + 48.82844637862161 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11199", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637920490503625, + 48.82017178481037 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14785", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593553334188483, + 48.8226863466654 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11425", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263737092778809, + 48.82690822792788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9630", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531269273075476, + 48.820993764464994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26643", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Fraxinus ornus 'Obelisk'", + "species:FR": "Frêne à fleurs 'Obelisk'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259056025733397, + 48.81863861276592 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14350", + "ref:FR:issy_les_mx:ordre_arbre": "573", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2749062505089674, + 48.82143300696021 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11098", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285553747295072, + 48.82879838151557 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29854", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622558272680298, + 48.82911266225239 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8679", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596132306394403, + 48.81899375713514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13682", + "ref:FR:issy_les_mx:ordre_arbre": "511", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790024568813716, + 48.82258722871961 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13121", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670777621395777, + 48.828344393960336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28060", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2583752402941477, + 48.815529636697775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12529", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Prunus padus", + "species:FR": "Cerisier à grappes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277528524648627, + 48.82750459124618 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9619", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802232866793757, + 48.8313950162148 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30726", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273384717710086, + 48.824925093521486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10477", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256191977355166, + 48.824351797122915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27859", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25801726982553, + 48.8182694197655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13914", + "ref:FR:issy_les_mx:ordre_arbre": "151", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660805511353606, + 48.82394729300495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27182", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562747876850215, + 48.82070461853002 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13309", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605089504454314, + 48.816039060711525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15969", + "ref:FR:issy_les_mx:ordre_arbre": "271", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642830867963006, + 48.81984928309482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13012", + "ref:FR:issy_les_mx:ordre_arbre": "451", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621408805729915, + 48.829639128074135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28990", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653912142497963, + 48.825774619032785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30576", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Ulmus x hollandica", + "species:FR": "Orme de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2440126925997377, + 48.81901699345418 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10045", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621384525508423, + 48.81572469984543 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15827", + "ref:FR:issy_les_mx:ordre_arbre": "200", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261864006571255, + 48.823893168536785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10895", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258777263541821, + 48.81892316546732 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13385", + "ref:FR:issy_les_mx:ordre_arbre": "665", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.28091369704801, + 48.83077865000169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15020", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650952465316765, + 48.82085867170107 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28772", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251364853130505, + 48.819741236068865 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27036", + "ref:FR:issy_les_mx:ordre_arbre": "33a", + "species": "Morus alba", + "species:FR": "Mûrier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2734597354550203, + 48.82483862615586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10479", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27920625010903, + 48.82563194778814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11232", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2771836099546876, + 48.82927421265723 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12122", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263356442819961, + 48.82042302782711 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14890", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691702503433073, + 48.82621944905338 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27011", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2526902566830493, + 48.8216244192891 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27537", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651975109510207, + 48.81955281943397 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16426", + "ref:FR:issy_les_mx:ordre_arbre": "296", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265400148120133, + 48.82000012020538 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13120", + "ref:FR:issy_les_mx:ordre_arbre": "397", + "species": "Celtis occidentalis", + "species:FR": "Micocoulier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681030247922416, + 48.82078824751364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13139", + "ref:FR:issy_les_mx:ordre_arbre": "580", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259456357944522, + 48.81907566550158 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13144", + "ref:FR:issy_les_mx:ordre_arbre": "214", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248162312497829, + 48.81949409867699 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28757", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2752609628750844, + 48.82226401604386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10465", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272292618696262, + 48.82261353371663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11191", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711598239002035, + 48.8155761149879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10282", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648695440231013, + 48.81468227796855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12062", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617741043321753, + 48.81472546498657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29444", + "ref:FR:issy_les_mx:ordre_arbre": "516", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574467953001216, + 48.81696736546826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30085", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615326178871773, + 48.81621775068967 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15828", + "ref:FR:issy_les_mx:ordre_arbre": "215", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2742060177523977, + 48.821646317527964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16329", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689341201097903, + 48.82142362850287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11060", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2735032129290413, + 48.826178794312156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9785", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256132238607274, + 48.82428100362476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27842", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2456018437148706, + 48.82224058889079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9665", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27356613402986, + 48.824889964717784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10499", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279898166025118, + 48.822480447103636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10700", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731534700279172, + 48.821399556889524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11031", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671616786354183, + 48.82539145242088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11385", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2743468305063224, + 48.827534959195766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12757", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282160974318969, + 48.82688620533254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15716", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246416319163208, + 48.8233214496155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10098", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259729963815786, + 48.81890943150899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13443", + "ref:FR:issy_les_mx:ordre_arbre": "344", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25494609450293, + 48.822729774140846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11690", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782320141542933, + 48.82278958301117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21829", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543417840806392, + 48.82256668300213 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28001", + "ref:FR:issy_les_mx:ordre_arbre": "19a", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278941583823157, + 48.8226097300796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13261", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781866251728133, + 48.82406848836766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13181", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450588898065096, + 48.82211420453525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9104", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257589398271908, + 48.81834624320957 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12249", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606470271282584, + 48.82304924755799 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16411", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640733627582583, + 48.82956295474588 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10096", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551738667195917, + 48.81746880016783 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12509", + "ref:FR:issy_les_mx:ordre_arbre": "201", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265164996678455, + 48.82670256689292 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11526", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773563996282316, + 48.82901128201017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12077", + "ref:FR:issy_les_mx:ordre_arbre": "83", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272444230302801, + 48.82363635441685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11225", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262496214488569, + 48.81516332005479 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16199", + "ref:FR:issy_les_mx:ordre_arbre": "152", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253209449128882, + 48.82175262883569 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9959", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561880922330873, + 48.8174185859564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29966", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548574604342058, + 48.82022658921172 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22052", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602394083240225, + 48.81582327838339 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15776", + "ref:FR:issy_les_mx:ordre_arbre": "282", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264147342187767, + 48.8197435312651 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13156", + "ref:FR:issy_les_mx:ordre_arbre": "323", + "species": "Picea pungens", + "species:FR": "Sapin bleu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249189312724138, + 48.818531977908506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10366", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279473721767636, + 48.82232966529937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10832", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277527194207549, + 48.82836528399065 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9578", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26049993832219, + 48.815882923078924 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16227", + "ref:FR:issy_les_mx:ordre_arbre": "399", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26070767951721, + 48.81549899709122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14802", + "ref:FR:issy_les_mx:ordre_arbre": "467", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625635441603102, + 48.81574446345701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15810", + "ref:FR:issy_les_mx:ordre_arbre": "112", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2647868340255073, + 48.82017916783721 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22365", + "ref:FR:issy_les_mx:ordre_arbre": "508", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726887418455095, + 48.82374919694428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11683", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666501236061145, + 48.828827604710455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11476", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663982456069607, + 48.82017930817468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20893", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278891487450809, + 48.82946103839579 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15096", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2824170753298803, + 48.830044800010995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28374", + "ref:FR:issy_les_mx:ordre_arbre": "7b", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253421872425567, + 48.817869494891696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12384", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677762413442717, + 48.817228337533145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27823", + "ref:FR:issy_les_mx:ordre_arbre": "54a", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696265460882707, + 48.82024410156689 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27550", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725979170558945, + 48.82190751175304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11324", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610250249759365, + 48.82777541294047 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27958", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732641859275264, + 48.82482053071307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9926", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781183472385536, + 48.82875577084674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25970", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267813396852608, + 48.82030569717375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14219", + "ref:FR:issy_les_mx:ordre_arbre": "199", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660529638893507, + 48.82860139530481 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28357", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260062089422331, + 48.81588974994188 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27595", + "ref:FR:issy_les_mx:ordre_arbre": "576", + "species": "Castanea sativa", + "species:FR": "Châtaignier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2459186530054005, + 48.82315815452473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30062", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2458952708565056, + 48.8187961120288 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11798", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2454634508895728, + 48.82111402173349 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10717", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268016321541131, + 48.816590498901775 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20541", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24841899996975, + 48.82391283827197 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27994", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2535182299821526, + 48.817174521097016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11141", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2564253161610432, + 48.82429361991924 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27866", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263800466310003, + 48.82694656135359 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9569", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279870978475916, + 48.823379358960466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21857", + "ref:FR:issy_les_mx:ordre_arbre": "219", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783182873497263, + 48.83055816526275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27789", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777815948354965, + 48.823969592763 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11943", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615028215416704, + 48.827068035375945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28087", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261794545955887, + 48.81600717424946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16182", + "ref:FR:issy_les_mx:ordre_arbre": "209", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26187236305142, + 48.815009020142895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27712", + "ref:FR:issy_les_mx:ordre_arbre": "693", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279218131610338, + 48.8240490874892 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12893", + "ref:FR:issy_les_mx:ordre_arbre": "111", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258567587265557, + 48.8188367351076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13004", + "ref:FR:issy_les_mx:ordre_arbre": "638", + "species": "Sorbus domestica", + "species:FR": "Sorbier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270145214763714, + 48.82109033030931 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13398", + "ref:FR:issy_les_mx:ordre_arbre": "110", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664570865288503, + 48.820261612374196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13530", + "ref:FR:issy_les_mx:ordre_arbre": "384", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26146364006674, + 48.82814111361639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27941", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263493860365944, + 48.819725792903014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29547", + "ref:FR:issy_les_mx:ordre_arbre": "338", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25897671218328, + 48.8166730482853 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29939", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541942262581016, + 48.8227008508033 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10005", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602032074255214, + 48.819258918301486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10919", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24667088551345, + 48.82340037454261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11428", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2791748708124655, + 48.82363102331817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13085", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276586363468959, + 48.8280726989581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30541", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261707328410307, + 48.82221466831586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9363", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257863153969611, + 48.81649678315817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30012", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264624582378194, + 48.826045987769234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10823", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608176328914693, + 48.816135247149504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16243", + "ref:FR:issy_les_mx:ordre_arbre": "293", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607527164321657, + 48.816240875507 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16580", + "ref:FR:issy_les_mx:ordre_arbre": "435", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280329132847279, + 48.82346640330156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12571", + "ref:FR:issy_les_mx:ordre_arbre": "228", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261650324515268, + 48.81576109618853 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15919", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27375179902527, + 48.82526395847537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11706", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678512559296577, + 48.816173364909055 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29821", + "ref:FR:issy_les_mx:ordre_arbre": "37b", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272051986416096, + 48.822522281975225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12777", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578828410637817, + 48.81664449520212 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30010", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643251427298807, + 48.81979787854758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13011", + "ref:FR:issy_les_mx:ordre_arbre": "450", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783536437865997, + 48.82683074429789 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10015", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265609553609381, + 48.82029199962822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13610", + "ref:FR:issy_les_mx:ordre_arbre": "526", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259021235706847, + 48.81861518567094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14353", + "ref:FR:issy_les_mx:ordre_arbre": "574", + "species": "Mespilus germanica", + "species:FR": "Néflier d'Allemagne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.242755316143178, + 48.82075920075207 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16299", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Alnus glutinosa 'Imperialis'", + "species:FR": "Aulne glutineux 'Imperialis'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674547005249868, + 48.81757631518434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28249", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278175849367205, + 48.82592457268889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21809", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245074234173357, + 48.82093696585996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10027", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275728335169033, + 48.82748684492234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30570", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269191457338854, + 48.82225353785075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11808", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263780041114624, + 48.82006104858968 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27911", + "ref:FR:issy_les_mx:ordre_arbre": "497a", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259478938002708, + 48.818681180336135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13242", + "ref:FR:issy_les_mx:ordre_arbre": "294", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649647735432383, + 48.81461840985244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12063", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793958087437294, + 48.82230045307528 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10833", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633964082376026, + 48.819650377741716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14006", + "ref:FR:issy_les_mx:ordre_arbre": "352", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271655685116038, + 48.826793885742354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30602", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621909929618447, + 48.81470591462006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16304", + "ref:FR:issy_les_mx:ordre_arbre": "370", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595897023721854, + 48.81865977047077 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14553", + "ref:FR:issy_les_mx:ordre_arbre": "453", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662567337404327, + 48.82916098699084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10604", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278373552847068, + 48.82744557484468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10472", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259898132026959, + 48.81876293846861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14206", + "ref:FR:issy_les_mx:ordre_arbre": "441", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269576477817391, + 48.818090387016674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19957", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279193920379109, + 48.82952556804901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29469", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648395043195326, + 48.82243124413847 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11742", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587928039042358, + 48.822639834595776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10105", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251760623362078, + 48.819802942823316 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21622", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640933106776555, + 48.819687741512084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22258", + "ref:FR:issy_les_mx:ordre_arbre": "326", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660422965634055, + 48.82734377329985 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16094", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778734328313557, + 48.82215943364672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10415", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638220896217347, + 48.82070005138086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27810", + "ref:FR:issy_les_mx:ordre_arbre": "16a", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282470864987024, + 48.82994761431866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15132", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481737401368065, + 48.82336906220354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9583", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26180898181275, + 48.81545298127934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15918", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253865106780182, + 48.82328603893913 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10467", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2803595945291595, + 48.83130788249424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30728", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767540870077747, + 48.82803752117193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28358", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698978356820265, + 48.82157812495834 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22358", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639490080576463, + 48.8196987022701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14235", + "ref:FR:issy_les_mx:ordre_arbre": "328", + "species": "Sequoia sempervirens", + "species:FR": "Séquoia toujours vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2444733998029336, + 48.82154677753385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9981", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243767059191633, + 48.818937945373555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10046", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271610987267124, + 48.81720599316578 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27102", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573205799207536, + 48.81621954836577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29997", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787523704904937, + 48.82336817976793 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29577", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592352809024057, + 48.817127145598725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29626", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719116637383294, + 48.826594569699154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12192", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2808988797971463, + 48.82350360986545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29595", + "ref:FR:issy_les_mx:ordre_arbre": "176a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259984408010271, + 48.81757300159131 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28552", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677408862173274, + 48.82020517199207 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12293", + "ref:FR:issy_les_mx:ordre_arbre": "191", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652180483584745, + 48.83056325009292 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10440", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637309159073262, + 48.82016383177824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14784", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610574603620583, + 48.82599202709441 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12085", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622401698489933, + 48.81510862342214 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15428", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665607920039506, + 48.8300390399042 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13009", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254939107813409, + 48.817549474383746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13094", + "ref:FR:issy_les_mx:ordre_arbre": "167", + "species": "Ficus carica", + "species:FR": "Figuier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2802656858829735, + 48.83094073511164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15108", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617316214268834, + 48.815138472372205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27626", + "ref:FR:issy_les_mx:ordre_arbre": "607", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598909629867006, + 48.81818743798974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29775", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613984274648615, + 48.824793285197764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11014", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786222939502676, + 48.825698500819314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12396", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2765904259770897, + 48.82218248207995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11927", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247832740345082, + 48.820202478140665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11077", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584637367471387, + 48.81545218176273 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11930", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726676105219976, + 48.82199807754554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12442", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2548423887240787, + 48.8174067805046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12661", + "ref:FR:issy_les_mx:ordre_arbre": "175", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263392848313249, + 48.81736927489109 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16453", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279898850558431, + 48.82256221140968 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11699", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer opalus", + "species:FR": "Erable d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257882512352011, + 48.81747318472032 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15308", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248643216859929, + 48.8188097810101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27884", + "ref:FR:issy_les_mx:ordre_arbre": "12a", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597033492574297, + 48.8167065121243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30039", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720808985503025, + 48.82319750712669 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22359", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618782759119145, + 48.82768049419537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28072", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726197445710348, + 48.823686359914795 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11675", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267995266625826, + 48.81638802371069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20751", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Prunus cerasus 'Moreau'", + "species:FR": "Cerisier 'Moreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259721141152439, + 48.8159060875577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15728", + "ref:FR:issy_les_mx:ordre_arbre": "488", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595968733794964, + 48.818967121175234 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13652", + "ref:FR:issy_les_mx:ordre_arbre": "507", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256196031262229, + 48.824191822058275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27834", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2557369568957126, + 48.82106301878153 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10936", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2694246013272426, + 48.81773311782906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20678", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266981498680428, + 48.81811953431202 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20600", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2447877412583264, + 48.820868052582945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10357", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617185385696774, + 48.816540721550254 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14256", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Sorbus intermedia 'Brouwers'", + "species:FR": "Alisier de Suède 'Brouwers'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259521610199422, + 48.8187334374318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14581", + "ref:FR:issy_les_mx:ordre_arbre": "252", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641576969095425, + 48.820168602607524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15705", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258998385378787, + 48.81857636672735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16986", + "ref:FR:issy_les_mx:ordre_arbre": "414", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613507313004835, + 48.82812071950363 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27942", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593210634010727, + 48.82484702445249 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17157", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260191395731576, + 48.815866265189165 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16224", + "ref:FR:issy_les_mx:ordre_arbre": "277", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485082390972093, + 48.82049774316342 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11458", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2644352469679925, + 48.819880206140276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16504", + "ref:FR:issy_les_mx:ordre_arbre": "415", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704213916851073, + 48.8204938177187 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11864", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618459483478603, + 48.81485479142969 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27736", + "ref:FR:issy_les_mx:ordre_arbre": "717", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2770912746776304, + 48.82884540566327 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13058", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280504475788506, + 48.823677604954845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29591", + "ref:FR:issy_les_mx:ordre_arbre": "161b", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245043175666597, + 48.82218164646457 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26138", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660817822289374, + 48.83087420717302 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11011", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271687361229336, + 48.82577150036235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11682", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280366510716027, + 48.82578965834339 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10915", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274738304494298, + 48.82313153096032 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8982", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259138433096566, + 48.81872979810768 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14342", + "ref:FR:issy_les_mx:ordre_arbre": "608", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261857904294731, + 48.827608867670136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28074", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537165745592604, + 48.82187736287331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10249", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792057318152956, + 48.82372365150243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14198", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Populus x canadensis 'Robusta'", + "species:FR": "Peuplier du Canada 'Robusta'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250565064580929, + 48.82053082923198 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10335", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277086777946913, + 48.82272572858497 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10592", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243028341544814, + 48.821636246088815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9509", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2491160336136193, + 48.82002197329843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9937", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263905091061668, + 48.82080737094698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13282", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591251151334086, + 48.81871865038161 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14463", + "ref:FR:issy_les_mx:ordre_arbre": "607", + "species": "Tilia x euchlora", + "species:FR": "Tilleul de Crimée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259803118745431, + 48.81826415135417 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29760", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599499240419645, + 48.82430230270697 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26076", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602203820041082, + 48.82577021222193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28345", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2748143320191683, + 48.82141620457561 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10902", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660328032749426, + 48.82858147617698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28356", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275892925950976, + 48.82744322486487 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30572", + "ref:FR:issy_les_mx:ordre_arbre": "1c", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597549707250866, + 48.818802301188995 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14188", + "ref:FR:issy_les_mx:ordre_arbre": "377", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546487213564426, + 48.82203024457921 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27534", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653612021614205, + 48.83048525009169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10642", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27109573441809, + 48.82055722081755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27543", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267434837223411, + 48.81763163437877 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28245", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2703423360030572, + 48.817354837333255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29429", + "ref:FR:issy_les_mx:ordre_arbre": "15a", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597544274030867, + 48.81823075229264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29765", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2518174714077084, + 48.818386168387086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10453", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790850737824053, + 48.82251813015993 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14523", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700476882062053, + 48.82161618307572 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11042", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680331346194316, + 48.820144733788716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27900", + "ref:FR:issy_les_mx:ordre_arbre": "181d", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265378845903007, + 48.82811395732305 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9218", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26432495051732, + 48.820892982041805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11266", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259752618898736, + 48.81820465884315 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29769", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259041300130252, + 48.817063423823676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29599", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Populus sp.", + "species:FR": "Peuplier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2547839825714844, + 48.817531615738694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29499", + "ref:FR:issy_les_mx:ordre_arbre": "166a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2472810472167857, + 48.81917191197915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11125", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279864474641482, + 48.827865218711395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_2863", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773806141905384, + 48.82858504054502 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13322", + "ref:FR:issy_les_mx:ordre_arbre": "135", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26787790958624, + 48.82070577742825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13727", + "ref:FR:issy_les_mx:ordre_arbre": "575", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273225451250904, + 48.82564875736899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9518", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617149599530544, + 48.828218304045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27937", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659800985703598, + 48.82934150439291 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14184", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272681905622575, + 48.81646401364647 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11646", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2501575511363736, + 48.819064533583415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13409", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606576279625843, + 48.82468953816439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_2606", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2511648393018455, + 48.819110488993566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12906", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251426577187508, + 48.819658954609565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30680", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2436752802028725, + 48.82072965593773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10470", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701748572392066, + 48.817605193463386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29424", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541710066261738, + 48.81727490879509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12387", + "ref:FR:issy_les_mx:ordre_arbre": "92", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2684857577138082, + 48.82079833087723 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12333", + "ref:FR:issy_les_mx:ordre_arbre": "586", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260152861061775, + 48.81591351619884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27604", + "ref:FR:issy_les_mx:ordre_arbre": "585", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2568660708400796, + 48.82019143368095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14501", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263425020348402, + 48.82884137751448 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28326", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248609276792605, + 48.81872676453354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11596", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279177588387147, + 48.82280701135773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14540", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269308822505374, + 48.81805175362408 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27989", + "ref:FR:issy_les_mx:ordre_arbre": "18a", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265492635822915, + 48.82693665151384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21183", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667214931677586, + 48.81838684701951 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30044", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266383418885204, + 48.820264668693824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13531", + "ref:FR:issy_les_mx:ordre_arbre": "385", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661896663922505, + 48.82851285704291 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12712", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25874084055414, + 48.81794619906016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29462", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2689222746952136, + 48.816605743599744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30778", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258896879433489, + 48.818763674228634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12966", + "ref:FR:issy_les_mx:ordre_arbre": "244", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262879887282734, + 48.8156361320027 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15971", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2797633771933143, + 48.825767293984974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10817", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276643999773288, + 48.825557897846664 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11792", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259347972779051, + 48.8179470852911 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29665", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278055359008613, + 48.82281646705248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14544", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613427857158297, + 48.8153287180079 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15081", + "ref:FR:issy_les_mx:ordre_arbre": "526", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599183285250932, + 48.81875419288319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14205", + "ref:FR:issy_les_mx:ordre_arbre": "440", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2487711526835974, + 48.81906944629447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12049", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2580623139912275, + 48.82468259426008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16951", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259537843891683, + 48.818998847387434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13743", + "ref:FR:issy_les_mx:ordre_arbre": "514", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712642422312768, + 48.825179497548085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26787", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675472544345294, + 48.83326789899462 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11380", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587908572551396, + 48.818575027623694 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14654", + "ref:FR:issy_les_mx:ordre_arbre": "558", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268442451439537, + 48.82252898043102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14377", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544726916219577, + 48.81715732715099 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27035", + "ref:FR:issy_les_mx:ordre_arbre": "187b", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282408042419391, + 48.82952504636909 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12223", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273191335993175, + 48.81669658738729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28748", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia × europaea 'Pallida'", + "species:FR": "Tilleul d'Europe 'Pallida'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259776234933108, + 48.81680067994127 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29694", + "ref:FR:issy_les_mx:ordre_arbre": "32b", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258640294928405, + 48.81567938476843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29990", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676734717926954, + 48.82111735519328 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11765", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700191438568393, + 48.821128344501965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12250", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261106701661222, + 48.82381484130665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10661", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271530975362134, + 48.81713292487829 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27100", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278956566099281, + 48.82252822487141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12802", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600213879634503, + 48.81680939329977 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29688", + "ref:FR:issy_les_mx:ordre_arbre": "31a", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587691058779757, + 48.81608311042713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29987", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264929944202776, + 48.829815719115956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27997", + "ref:FR:issy_les_mx:ordre_arbre": "14a", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573546906962303, + 48.818111406319794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14398", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270030110984182, + 48.82099733336564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29541", + "ref:FR:issy_les_mx:ordre_arbre": "146a", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268497227343647, + 48.81753193876156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20537", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651719898018454, + 48.82947962124592 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30527", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266246864821465, + 48.82062468902966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11355", + "ref:FR:issy_les_mx:ordre_arbre": "559", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26217327552077, + 48.82329003689222 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9313", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826009649926777, + 48.8298195694317 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26029", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26095077763047, + 48.82375618810259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30625", + "ref:FR:issy_les_mx:ordre_arbre": "16a", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565643943306433, + 48.8240129376192 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17077", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264115781829022, + 48.819915297775026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13572", + "ref:FR:issy_les_mx:ordre_arbre": "456", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692613148755023, + 48.81641163454434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20747", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Prunus domestica 'Reine-Claude Hâtive'", + "species:FR": "Prunier 'Reine-Claude Hâtive'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790406273595156, + 48.82364063293962 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27874", + "ref:FR:issy_les_mx:ordre_arbre": "13f", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617274514021832, + 48.82992662211133 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28960", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626747806533856, + 48.81959507919019 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16327", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263249123361625, + 48.8148625116009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15891", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270813220157335, + 48.825625983138174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26755", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259869324649566, + 48.81725968935915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28530", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2828878318141115, + 48.829477815254926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27888", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269024224533951, + 48.816990084911 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27825", + "ref:FR:issy_les_mx:ordre_arbre": "27b", + "species": "Pyrus communis", + "species:FR": "Poirier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261673092195063, + 48.82764841686424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30712", + "ref:FR:issy_les_mx:ordre_arbre": "26a", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276928214203649, + 48.822704524268715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10411", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253956026944154, + 48.82313514658124 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10139", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273177354701147, + 48.82305734056141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12711", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562503280033455, + 48.82438624686632 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27871", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268240367545419, + 48.81598732625364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29825", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627774312594555, + 48.81512486690932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15985", + "ref:FR:issy_les_mx:ordre_arbre": "342", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562343926184973, + 48.82420483202912 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27848", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2501194946793905, + 48.82339363548628 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9736", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267886715554156, + 48.81778135174386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20664", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660696661916737, + 48.814096689380385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22363", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2566886471595846, + 48.81696598001178 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29928", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276270039093295, + 48.828463816891116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9581", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260948137577486, + 48.816694626247276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16001", + "ref:FR:issy_les_mx:ordre_arbre": "243", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2551104523769907, + 48.823130244945226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11454", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2475448202184927, + 48.82365923193679 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10685", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261303002135219, + 48.824556932216026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10940", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260276213917325, + 48.82465811191659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27040", + "ref:FR:issy_les_mx:ordre_arbre": "33.1", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674084122834235, + 48.81717376943108 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20424", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Pyrus communis 'Louise Bonne d'Avranches'", + "species:FR": "Poirier 'Louise Bonne d'Avranches'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654397594424216, + 48.82587751071356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9387", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271803217926502, + 48.82675034181279 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11641", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2603487026986895, + 48.82599035838348 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11387", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247281187658063, + 48.82358505181991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10663", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588811717665793, + 48.816122569164115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29985", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598706573106098, + 48.815934236388564 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16122", + "ref:FR:issy_les_mx:ordre_arbre": "485", + "species": "Gleditsia triacanthos 'Inermis'", + "species:FR": "Févier d'Amérique sans épines" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739678633711247, + 48.8250079240517 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11708", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607959049823583, + 48.82366098125806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10414", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274139027130299, + 48.82160572081345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11435", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667134718720243, + 48.82883116726639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11288", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594166594336627, + 48.818932773987335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21265", + "ref:FR:issy_les_mx:ordre_arbre": "202", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609733465299127, + 48.815205556757476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27761", + "ref:FR:issy_les_mx:ordre_arbre": "742", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664704605101456, + 48.82433228668595 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9907", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597839325449507, + 48.818262953253516 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29759", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665025908957115, + 48.820207182035624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12128", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254354043456429, + 48.817588347592554 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12767", + "ref:FR:issy_les_mx:ordre_arbre": "124", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657075550768866, + 48.820835498741765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12417", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2777913420530904, + 48.828833261788816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12294", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261871310281586, + 48.81476599837958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27735", + "ref:FR:issy_les_mx:ordre_arbre": "716", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245297234215407, + 48.82101620540434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9929", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264638898656317, + 48.82687132612648 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26348", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704820822627103, + 48.821401758237364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27893", + "ref:FR:issy_les_mx:ordre_arbre": "119c", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2713619757956716, + 48.82666359577653 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30599", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638654809024894, + 48.829377290384045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10572", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700978662461333, + 48.81697571039336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28268", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573119369581067, + 48.82258564170933 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10724", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer rubrum 'October Glory'", + "species:FR": "Erable rouge 'October Glory'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611684837673582, + 48.81632572283857 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15895", + "ref:FR:issy_les_mx:ordre_arbre": "300", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2755333802633184, + 48.822334072966946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10484", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629583686203585, + 48.82734299890899 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10134", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26092592689947, + 48.81677067072695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15934", + "ref:FR:issy_les_mx:ordre_arbre": "245", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2623158706678863, + 48.815495576592106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22164", + "ref:FR:issy_les_mx:ordre_arbre": "331", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666651950171564, + 48.818380745492895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30050", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2550308213324457, + 48.81751786510287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29510", + "ref:FR:issy_les_mx:ordre_arbre": "204a", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627190962305326, + 48.81995998989331 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16508", + "ref:FR:issy_les_mx:ordre_arbre": "491", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790823522846066, + 48.82334517682806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13049", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598190345485256, + 48.81716726790147 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28527", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255565516131455, + 48.81694513838762 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28063", + "ref:FR:issy_les_mx:ordre_arbre": "3a", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26684701755596, + 48.81737857363726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28255", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Malus domestica", + "species:FR": "Pommier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275870409197324, + 48.822622255090174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11390", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261787219095252, + 48.815285967741005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21511", + "ref:FR:issy_les_mx:ordre_arbre": "131", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660236728432266, + 48.83058025584405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29834", + "ref:FR:issy_les_mx:ordre_arbre": "6a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608388972361095, + 48.81632203703879 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28409", + "ref:FR:issy_les_mx:ordre_arbre": "552", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267593389811759, + 48.81702023367626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20231", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Prunus cerasus 'Anglaise Hative'", + "species:FR": "Cerisier 'Anglaise Hative'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26733557353019, + 48.81679359221479 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20542", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560298559126264, + 48.824277758160534 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27839", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825232174796524, + 48.83005779371076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28212", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2818749311942086, + 48.82841746138889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10406", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280688651709259, + 48.82352899797277 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12148", + "ref:FR:issy_les_mx:ordre_arbre": "234", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652944851072077, + 48.83031120798353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10037", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574119876593377, + 48.81703028629294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30086", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277682504500624, + 48.8293361593599 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14249", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272186220539307, + 48.82484304833024 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10988", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271332487972375, + 48.81570026280037 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10032", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251754282392461, + 48.819569061507636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13331", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772798500904172, + 48.828212556413895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9660", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262428994900739, + 48.81438980903553 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27725", + "ref:FR:issy_les_mx:ordre_arbre": "706", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259410649821938, + 48.81865753679057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14423", + "ref:FR:issy_les_mx:ordre_arbre": "310", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262766866825209, + 48.8152143602937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16066", + "ref:FR:issy_les_mx:ordre_arbre": "182", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618739431935735, + 48.815060924716846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27699", + "ref:FR:issy_les_mx:ordre_arbre": "680", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2403644038575243, + 48.82153138029353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9636", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586183822198778, + 48.82523747245889 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17234", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2857273180045103, + 48.82888104364455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11587", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642290244892505, + 48.820181093527715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15116", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618392869374246, + 48.81502707345716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27681", + "ref:FR:issy_les_mx:ordre_arbre": "662", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781082633980025, + 48.82901907293326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13724", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653450136800877, + 48.82929411325287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27042", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265323614397905, + 48.82807996577157 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9219", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279071054963443, + 48.82385949756383 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13136", + "ref:FR:issy_les_mx:ordre_arbre": "68", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2810875700280904, + 48.830614121645695 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15102", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269321759865597, + 48.82018363906758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11730", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825258311022036, + 48.82974428762651 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22082", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2501066278349047, + 48.82325728179876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8359", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745798203858865, + 48.8217745106328 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10118", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267577774475067, + 48.82536831842797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10198", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Araucaria araucana", + "species:FR": "Désespoir des singes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793679397193545, + 48.82301368162759 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14073", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260182675383899, + 48.81628847637559 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27583", + "ref:FR:issy_les_mx:ordre_arbre": "564", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266223816171361, + 48.81790504844272 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29438", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674284005983694, + 48.82037231354478 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13597", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265727646322805, + 48.82922784181131 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14183", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485936170462697, + 48.818577507892996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12311", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265784880342859, + 48.82619039260287 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11319", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679932697883265, + 48.81779585323129 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20507", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2766254442987384, + 48.8226612386644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10503", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602910278048554, + 48.81597553000555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27619", + "ref:FR:issy_les_mx:ordre_arbre": "600", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26541146611449, + 48.82917365508181 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14231", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774316937332197, + 48.82208783953192 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11437", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268564422588394, + 48.816263855731286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20567", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Prunus cerasus 'Tardif de Vignola'", + "species:FR": "Cerisier 'Tardif de Vignola'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624814019902395, + 48.81989096409008 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13017", + "ref:FR:issy_les_mx:ordre_arbre": "488", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279315745798273, + 48.82353761315473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28726", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576894266546663, + 48.8178913424818 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13797", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268834218707592, + 48.82652794370429 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27019", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264544280221477, + 48.819726501131676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28293", + "ref:FR:issy_les_mx:ordre_arbre": "318", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26005028051792, + 48.8167791728535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29689", + "ref:FR:issy_les_mx:ordre_arbre": "31b", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2796816940698053, + 48.82378214778589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13174", + "ref:FR:issy_les_mx:ordre_arbre": "97", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278687410992376, + 48.82894669601686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28203", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2549925246229607, + 48.81810193394438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13358", + "ref:FR:issy_les_mx:ordre_arbre": "254", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262672640553462, + 48.81520741936648 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15984", + "ref:FR:issy_les_mx:ordre_arbre": "340", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274924507881067, + 48.8219766926779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16414", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2742432213757247, + 48.823792584625835 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13654", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2437776802264224, + 48.821884083156604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30525", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596486841293437, + 48.82547536074848 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16806", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244395752083247, + 48.81913446214224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10990", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581243584714397, + 48.8226551552977 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11089", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257835510016021, + 48.8180987322172 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13226", + "ref:FR:issy_les_mx:ordre_arbre": "166", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278745621140116, + 48.82290561910356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13952", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776637728440687, + 48.82928219323881 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12010", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574173388655634, + 48.81824756453728 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22345", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263535692908395, + 48.82789811490525 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27988", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Betula utilis", + "species:FR": "Bouleau de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641518935187217, + 48.81948704440996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14064", + "ref:FR:issy_les_mx:ordre_arbre": "358", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2549033288990072, + 48.8175280464261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11903", + "ref:FR:issy_les_mx:ordre_arbre": "168", + "species": "Prunus persica", + "species:FR": "Pêcher" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2465156806308006, + 48.8212933712103 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10662", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia mongolica", + "species:FR": "Tilleul de Mongolie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633753364667895, + 48.819887210068714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14061", + "ref:FR:issy_les_mx:ordre_arbre": "470", + "species": "Cedrus atlantica 'Glauca Pendula'", + "species:FR": "Cèdre bleu de l'Atlas pleureur" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277631459240181, + 48.829309154658645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12009", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624719148973167, + 48.814510367429 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15944", + "ref:FR:issy_les_mx:ordre_arbre": "364", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696867370871363, + 48.8173415033309 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20247", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256879867166573, + 48.823254669294066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25711", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683261899728158, + 48.81595646307301 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29824", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587630504221314, + 48.81853060078872 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14651", + "ref:FR:issy_les_mx:ordre_arbre": "555", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589948998254097, + 48.81847130113345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14448", + "ref:FR:issy_les_mx:ordre_arbre": "544", + "species": "Quercus petraea", + "species:FR": "Chêne sessile" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254193853168525, + 48.82026869003185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22092", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648202507782513, + 48.825899072384544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10041", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264922952086498, + 48.82086980867094 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11241", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573379415675334, + 48.81623404649584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29998", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481658893853966, + 48.81996323278583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14861", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia x euchlora", + "species:FR": "Tilleul de Crimée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268259166039702, + 48.82003703146481 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21997", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248663160338834, + 48.81879623569009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27885", + "ref:FR:issy_les_mx:ordre_arbre": "12b", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650141136711888, + 48.820076934071075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14390", + "ref:FR:issy_les_mx:ordre_arbre": "440", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573457253702243, + 48.81640461912904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30079", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2461813694879984, + 48.81858046457226 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11135", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2483864830123474, + 48.81880318134001 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13424", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Salix alba", + "species:FR": "Saule blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646051950567276, + 48.826947666836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12621", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596000413996418, + 48.826315239360184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10840", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745948586250018, + 48.82041278842437 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10505", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259687298761354, + 48.81721178918172 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28519", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724941800982617, + 48.82187939606123 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11921", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274062244908509, + 48.82156327930736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11436", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538143872315426, + 48.81702312191077 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12718", + "ref:FR:issy_les_mx:ordre_arbre": "77" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258104939344798, + 48.81544968409813 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11918", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680971784100605, + 48.820417020141306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14132", + "ref:FR:issy_les_mx:ordre_arbre": "170", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279565675413271, + 48.827938332708776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10040", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2514869991114748, + 48.81936764638846 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11938", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268889990585964, + 48.81723341251248 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20433", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Prunus domestica 'Reine-Claude Hâtive'", + "species:FR": "Prunier 'Reine-Claude Hâtive'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2558985550857997, + 48.822411065063385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10957", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593798246745154, + 48.81710482555497 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29637", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616700983155136, + 48.82762542550332 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28090", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2760040580188368, + 48.82738226542382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30568", + "ref:FR:issy_les_mx:ordre_arbre": "1e", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25910904672268, + 48.817148005951076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29605", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656939333206703, + 48.830598415374645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11950", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279522283874138, + 48.8235605703749 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12596", + "ref:FR:issy_les_mx:ordre_arbre": "84", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2717531744055965, + 48.82521982534707 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26766", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Magnolia kobus", + "species:FR": "Magnolia de Kobé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639315543696124, + 48.8201336557225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14780", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546577060708395, + 48.8179995338413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12474", + "ref:FR:issy_les_mx:ordre_arbre": "260", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266673410871325, + 48.81823239702463 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30047", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660543428252793, + 48.82017807268537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16505", + "ref:FR:issy_les_mx:ordre_arbre": "382", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266807128092061, + 48.81406787148391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12475", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782602488403807, + 48.82402398998734 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13182", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258687624955601, + 48.81692866051753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29827", + "ref:FR:issy_les_mx:ordre_arbre": "2a", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261034692471828, + 48.81631786507514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15874", + "ref:FR:issy_les_mx:ordre_arbre": "260", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617049688232984, + 48.827269756110866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28080", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246175552538867, + 48.81906543664934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13626", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25735449289897, + 48.81812471513556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12134", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595103237373073, + 48.818704585302655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13212", + "ref:FR:issy_les_mx:ordre_arbre": "278", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265262512798035, + 48.83054060187971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10737", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586209146319502, + 48.818859112622086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21366", + "ref:FR:issy_les_mx:ordre_arbre": "649", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671132762321684, + 48.819932430155504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14156", + "ref:FR:issy_les_mx:ordre_arbre": "231", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561314142049373, + 48.82422424740483 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27836", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254853707417497, + 48.823571206288115 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10181", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595027684450724, + 48.818653723994956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14668", + "ref:FR:issy_les_mx:ordre_arbre": "314", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2569986325315603, + 48.82007324476168 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13780", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485455342137914, + 48.81975743925042 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9468", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279249014725227, + 48.82393242248285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12998", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261000832325454, + 48.81623350793239 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21534", + "ref:FR:issy_les_mx:ordre_arbre": "296", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258149994751309, + 48.81877642544727 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9474", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539841029447714, + 48.81715795663883 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11771", + "ref:FR:issy_les_mx:ordre_arbre": "95", + "species": "Juglans regia", + "species:FR": "Noyer commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692138620408326, + 48.820161721467535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12645", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653169902900823, + 48.82643505770132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11804", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725461941505976, + 48.82568954465291 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12094", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2860296441697043, + 48.827909343943475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11451", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258908896238337, + 48.818104921144986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13160", + "ref:FR:issy_les_mx:ordre_arbre": "106", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261701092857641, + 48.8246615735137 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12218", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2575204569439173, + 48.81649051728717 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30024", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254883758165921, + 48.8180793737299 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12543", + "ref:FR:issy_les_mx:ordre_arbre": "257", + "species": "Cydonia oblonga", + "species:FR": "Cognassier commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268981563218501, + 48.818167412762335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20752", + "ref:FR:issy_les_mx:ordre_arbre": "70", + "species": "Malus domestica 'Jonagold'", + "species:FR": "Pommier 'Jonagold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259603355623693, + 48.82320069062204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14759", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Platanus orientalis", + "species:FR": "Platane d'Orient" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279340243403842, + 48.82195036055948 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14756", + "ref:FR:issy_les_mx:ordre_arbre": "56", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.243757697490178, + 48.82129200296401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12925", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598616793988726, + 48.81831227153822 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29750", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247105634395193, + 48.819830938892736 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10728", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266666226922082, + 48.818423562650636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30051", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277216800104861, + 48.82911453370704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12125", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285871937185038, + 48.82840572977068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11102", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2496301221320185, + 48.82017122308075 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10060", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269005775783633, + 48.81693467139154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27824", + "ref:FR:issy_les_mx:ordre_arbre": "27a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254835433836809, + 48.81749544386387 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12315", + "ref:FR:issy_les_mx:ordre_arbre": "171", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278655007154872, + 48.829051084591185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9680", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267578887560046, + 48.82401150676894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14251", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246476240006466, + 48.81936212446588 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10449", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631950960268634, + 48.81969306101397 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14743", + "ref:FR:issy_les_mx:ordre_arbre": "350", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595995159758977, + 48.818877351713745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27917", + "ref:FR:issy_les_mx:ordre_arbre": "340b", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613336128983534, + 48.81493340721545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15979", + "ref:FR:issy_les_mx:ordre_arbre": "515", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272429372643875, + 48.82350748319251 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11555", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258566757346281, + 48.82472329809786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17196", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260129230909167, + 48.81592802995271 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27592", + "ref:FR:issy_les_mx:ordre_arbre": "573", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640545015784106, + 48.81995337368069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29549", + "ref:FR:issy_les_mx:ordre_arbre": "456b", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262611866729725, + 48.81533516157243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16266", + "ref:FR:issy_les_mx:ordre_arbre": "185", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695071240313918, + 48.82083062970764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13187", + "ref:FR:issy_les_mx:ordre_arbre": "155", + "species": "Cedrus deodara", + "species:FR": "Cèdre de l'Himalaya" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271419303830536, + 48.82597236580848 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30733", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792932537794774, + 48.82297964384427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14027", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26649364943136, + 48.82764162875869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16578", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2415577671978224, + 48.82134713806641 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9699", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270098745458744, + 48.81704762362523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20293", + "ref:FR:issy_les_mx:ordre_arbre": "57", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2419757848470367, + 48.821463026476806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9074", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278530226928486, + 48.82628992963278 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10818", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2636241724440906, + 48.8267517002088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9632", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271886725361725, + 48.81449731264713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11695", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278628552837286, + 48.82399843881623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27878", + "ref:FR:issy_les_mx:ordre_arbre": "65e", + "species": "Cedrus libani", + "species:FR": "Cèdre du Liban" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2806601331745826, + 48.83064409670303 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15220", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25463298941709, + 48.81755033202701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12759", + "ref:FR:issy_les_mx:ordre_arbre": "163", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269311080347881, + 48.821018475673455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13675", + "ref:FR:issy_les_mx:ordre_arbre": "600", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587881254945663, + 48.818870174375824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16997", + "ref:FR:issy_les_mx:ordre_arbre": "669", + "species": "Sorbus domestica", + "species:FR": "Sorbier domestique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276252178171501, + 48.8218749856338 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16190", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253006679507174, + 48.82097252492558 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26651", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258523130231046, + 48.8187855449637 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12974", + "ref:FR:issy_les_mx:ordre_arbre": "629", + "species": "Crataegus sp.", + "species:FR": "Aubépine non identifée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246603676389842, + 48.82338129406392 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10293", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631000457642605, + 48.81964460243414 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10730", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639660348156525, + 48.82665512404544 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11183", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269625442913983, + 48.82232091673958 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30615", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2566435740883346, + 48.81596402797485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15162", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2732251249565945, + 48.82216388971346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12084", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2711476391405876, + 48.82770835298376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11824", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2661886822576385, + 48.82012404947901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12888", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282721498997584, + 48.82983194602493 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26030", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25640037689953, + 48.81631226515432 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21930", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280496354554619, + 48.83073738087122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16551", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779812605383003, + 48.82292179671416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14473", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267939003385279, + 48.82080941906658 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14089", + "ref:FR:issy_les_mx:ordre_arbre": "577", + "species": "Populus nigra 'Italica'", + "species:FR": "Peuplier noir d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602058375645107, + 48.81626856338194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27582", + "ref:FR:issy_les_mx:ordre_arbre": "563", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270846890333378, + 48.82219887988416 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10383", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271227686213893, + 48.820584033037306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27542", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693319591275722, + 48.81781885575686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20501", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Malus domestica 'Reinette du Mans'", + "species:FR": "Pommier 'Reinette du Mans'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258838129153966, + 48.818887044914945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13389", + "ref:FR:issy_les_mx:ordre_arbre": "671", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639782963349506, + 48.82075687881665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14828", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259374534205584, + 48.817659265801446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29482", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731755153021975, + 48.82493279912873 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10048", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2475740998031677, + 48.82012426813869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11185", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642263159433824, + 48.81987744233751 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12312", + "ref:FR:issy_les_mx:ordre_arbre": "452", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2457383137212124, + 48.82227244036023 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9664", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615179957162472, + 48.8165107208937 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16085", + "ref:FR:issy_les_mx:ordre_arbre": "225", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279115002859256, + 48.82263612622548 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12920", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248029963377826, + 48.82034381227895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11485", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687509751653874, + 48.82088354637066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12440", + "ref:FR:issy_les_mx:ordre_arbre": "591", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278428297343613, + 48.82212482288794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10253", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2801875352086376, + 48.82326178930108 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14110", + "ref:FR:issy_les_mx:ordre_arbre": "103", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676003262656304, + 48.82065700103187 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13265", + "ref:FR:issy_les_mx:ordre_arbre": "571", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261747587128415, + 48.82606530579624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22009", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251185429525171, + 48.81918536523238 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10409", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708219386079724, + 48.82058161209604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27547", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267475112208219, + 48.82033338216117 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26134", + "ref:FR:issy_les_mx:ordre_arbre": "207", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263894590907236, + 48.81989676451401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13464", + "ref:FR:issy_les_mx:ordre_arbre": "462", + "species": "Juglans nigra", + "species:FR": "Noyer noir" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257391172148711, + 48.81636919578405 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30078", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702425531458936, + 48.8263593106777 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28040", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Olea europaea", + "species:FR": "Olivier d'Europe" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793515879641473, + 48.8278104060309 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26095", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25704398072357, + 48.81725158708098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29919", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270371958103487, + 48.81664455212257 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_301", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277538627817324, + 48.829245518454705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12157", + "ref:FR:issy_les_mx:ordre_arbre": "146", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601262133067594, + 48.818719615198454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16831", + "ref:FR:issy_les_mx:ordre_arbre": "436", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654996174232376, + 48.8199797129246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13118", + "ref:FR:issy_les_mx:ordre_arbre": "395", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574114134758703, + 48.81812508322829 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12135", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26784022344334, + 48.82113896198271 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11766", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634058188828816, + 48.81579794268625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10329", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248846038470803, + 48.819356534864355 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11497", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692182558946206, + 48.82249751024798 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11099", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609430740289858, + 48.82799264615312 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27952", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2709152136846043, + 48.825345722337914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26791", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer palmatum", + "species:FR": "Erable palmé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602779798519146, + 48.81685138869459 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28561", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618017101569046, + 48.81533321227392 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15847", + "ref:FR:issy_les_mx:ordre_arbre": "121", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262028613717619, + 48.82413940899526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9769", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2795437080873797, + 48.82314208664461 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14318", + "ref:FR:issy_les_mx:ordre_arbre": "94", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266930177738484, + 48.81543075881556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29840", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258943176616217, + 48.817068121791685 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29476", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Populus alba", + "species:FR": "Peuplier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2567758938422395, + 48.820144458277966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11112", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259785872111605, + 48.81709420122156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28529", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270499706338244, + 48.81497749368446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16592", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268473970773385, + 48.81635488411851 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20463", + "ref:FR:issy_les_mx:ordre_arbre": "73", + "species": "Prunus cerasus 'Bigarreau Van'", + "species:FR": "Cerisier 'Bigarreau Van'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2581381725516523, + 48.817881020408116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16630", + "ref:FR:issy_les_mx:ordre_arbre": "78", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586385577030526, + 48.81827499603635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12981", + "ref:FR:issy_les_mx:ordre_arbre": "128", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261128334377983, + 48.81630265260692 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15894", + "ref:FR:issy_les_mx:ordre_arbre": "299", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783473069922837, + 48.82151848675353 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15682", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262763848823368, + 48.81536159518728 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16617", + "ref:FR:issy_les_mx:ordre_arbre": "148", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24396598090272, + 48.82075462478029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9934", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261484784345266, + 48.823735210114904 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11118", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245209204485363, + 48.820952110498546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10025", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266663570876047, + 48.82770911668415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28375", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599136682807046, + 48.8183149660901 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29745", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586913266435227, + 48.818849674130895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14665", + "ref:FR:issy_les_mx:ordre_arbre": "653", + "species": "Sorbus aucuparia", + "species:FR": "Sorbier des oiseleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2683075333832385, + 48.820742773104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13250", + "ref:FR:issy_les_mx:ordre_arbre": "583", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681564215066157, + 48.83287644368133 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10752", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261926643774885, + 48.81500341943276 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27722", + "ref:FR:issy_les_mx:ordre_arbre": "703", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725286543418557, + 48.82359622701966 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11676", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260943737807142, + 48.825740725656 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10276", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617838498338516, + 48.81510470813673 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27631", + "ref:FR:issy_les_mx:ordre_arbre": "612", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638939899360935, + 48.81964972009803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13296", + "ref:FR:issy_les_mx:ordre_arbre": "330", + "species": "Prunus cerasifera 'Nigra'", + "species:FR": "Prunier myrobolan pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245269310084738, + 48.81940375280584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28355", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630393203851926, + 48.81498786645965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15753", + "ref:FR:issy_les_mx:ordre_arbre": "175", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2718431835084485, + 48.82551710385016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28338", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650194839761504, + 48.82394847679164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10266", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668333969721335, + 48.816838410214224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20532", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus communis 'Beurré de l'Assomption'", + "species:FR": "Poirier 'Beurré de l'Assomption'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2666554168786077, + 48.81847557082717 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30052", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253805125787797, + 48.82314647124842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28343", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25908639356363, + 48.81845585750076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12899", + "ref:FR:issy_les_mx:ordre_arbre": "186", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246225908394322, + 48.819783302254756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11245", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266871683174098, + 48.82030624943169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29539", + "ref:FR:issy_les_mx:ordre_arbre": "46a", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2768054404801243, + 48.82268875543253 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10387", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262033701075265, + 48.81580951841381 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16376", + "ref:FR:issy_les_mx:ordre_arbre": "203", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653284317339537, + 48.8247688214999 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9821", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280140693785196, + 48.82337304404159 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13665", + "ref:FR:issy_les_mx:ordre_arbre": "185", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2587816302054775, + 48.818437686958795 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30738", + "ref:FR:issy_les_mx:ordre_arbre": "123a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274785525541528, + 48.8204697533019 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16273", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658247468875983, + 48.82922684276742 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14175", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617248128980805, + 48.81512880683533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27642", + "ref:FR:issy_les_mx:ordre_arbre": "623", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26643956773978, + 48.830033631837885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10882", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265509866113399, + 48.81426307196158 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11738", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261692860992448, + 48.81578369083738 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26062", + "ref:FR:issy_les_mx:ordre_arbre": "103", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659734948691446, + 48.82395906863116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27184", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer platanoides 'Pacific Sunset'", + "species:FR": "Erable plane 'Pacific Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266729499221943, + 48.82097189270021 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11173", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263737926656493, + 48.82705119409256 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9488", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257674575325332, + 48.818163947424914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13225", + "ref:FR:issy_les_mx:ordre_arbre": "164", + "species": "Abies pinsapo", + "species:FR": "Sapin d'Espagne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265857809978965, + 48.82584542697517 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9635", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259407674579061, + 48.81722470678487 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29635", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595552721464127, + 48.818722591625864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13092", + "ref:FR:issy_les_mx:ordre_arbre": "272", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265044559157115, + 48.82527031012993 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9412", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673694230408636, + 48.82399512413344 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10165", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579275032677035, + 48.81643458525571 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30015", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263854951147608, + 48.82018081807713 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14786", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274755219239969, + 48.82318717137842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8981", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer campestre 'Louisa Red Shine'", + "species:FR": "Erable champêtre 'Louisa Red Shine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269031249762365, + 48.8181200644555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20764", + "ref:FR:issy_les_mx:ordre_arbre": "71", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663042151044235, + 48.82089756204652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11065", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591265161905136, + 48.81650084467431 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29868", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2776434104216605, + 48.8283840908813 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25971", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Taxus baccata 'Fastigiata'", + "species:FR": "If d'Irlande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2586182872064833, + 48.81864244826087 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12928", + "ref:FR:issy_les_mx:ordre_arbre": "193", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539751109766395, + 48.82193791908022 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22351", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608017708201866, + 48.82332520031379 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10962", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261434513732259, + 48.82167561924002 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8855", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261998894074577, + 48.81583840591205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22266", + "ref:FR:issy_les_mx:ordre_arbre": "204", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268551254903735, + 48.817819844114815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20241", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2642439975501185, + 48.82351283258465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27032", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261323005385179, + 48.81594045149403 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27778", + "ref:FR:issy_les_mx:ordre_arbre": "759", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628450515125205, + 48.820081331373586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16099", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Salix sp.", + "species:FR": "Saule indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541013279904156, + 48.817250128352626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11770", + "ref:FR:issy_les_mx:ordre_arbre": "94", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671769459928592, + 48.820651075278576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13599", + "ref:FR:issy_les_mx:ordre_arbre": "563", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792485762240577, + 48.82941500442601 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28370", + "ref:FR:issy_les_mx:ordre_arbre": "1a", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2508796229096943, + 48.820383213515626 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11882", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2591825756777113, + 48.81846144896006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21425", + "ref:FR:issy_les_mx:ordre_arbre": "533", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593262218600514, + 48.81893336024179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16706", + "ref:FR:issy_les_mx:ordre_arbre": "204", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258992872563071, + 48.81860843708551 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14413", + "ref:FR:issy_les_mx:ordre_arbre": "575", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276660689625397, + 48.82910452592261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14514", + "ref:FR:issy_les_mx:ordre_arbre": "115", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259300031540581, + 48.81728591759806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29619", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261602601719457, + 48.816557228551446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15824", + "ref:FR:issy_les_mx:ordre_arbre": "227", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260267168004163, + 48.81622694155177 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27580", + "ref:FR:issy_les_mx:ordre_arbre": "561", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595146868072655, + 48.81661351564039 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30033", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2470443953922055, + 48.82339557359045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9550", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2599024786610165, + 48.81742918478858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28543", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628717742283704, + 48.815437973389415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16233", + "ref:FR:issy_les_mx:ordre_arbre": "145", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561152751359725, + 48.82433387172291 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27857", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Alnus glutinosa", + "species:FR": "Aulne glutineux" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273573643118989, + 48.82547610823665 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9960", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2561191551999284, + 48.81634101326127 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20824", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer negundo 'Flamingo'", + "species:FR": "Érable à feuilles de frêne flamingo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2600079147966756, + 48.81813906732788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29735", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2824899287326623, + 48.82955726436589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13740", + "ref:FR:issy_les_mx:ordre_arbre": "51", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576779148615547, + 48.81571758321914 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13393", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267596407214462, + 48.82321766322583 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9927", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639654268406773, + 48.81989562417039 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29553", + "ref:FR:issy_les_mx:ordre_arbre": "456f", + "species": "Trachycarpus fortunei", + "species:FR": "Palmier de Chine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565331737168965, + 48.816799795089494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29958", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260691410989618, + 48.81722029866528 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28574", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248594252688708, + 48.81900331651799 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12014", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799370353538815, + 48.82581473394701 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11179", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2709908334478754, + 48.8220921880933 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12339", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254558603908923, + 48.81732573044856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14385", + "ref:FR:issy_les_mx:ordre_arbre": "153", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24534620843047, + 48.82157076528003 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10950", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266217721565953, + 48.82039856019007 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29563", + "ref:FR:issy_les_mx:ordre_arbre": "528a", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720544511713747, + 48.81617607374699 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16274", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778982731561364, + 48.82203716598974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14777", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Prunus serrulata 'Kanzan'", + "species:FR": "Cerisier du Japon 'Kanzan'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690825720194803, + 48.817315065953814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20771", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Malus domestica 'Melrose'", + "species:FR": "Pommier 'Melrose'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719495114401247, + 48.81458943383727 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11694", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597048756286364, + 48.81891142833753 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18493", + "ref:FR:issy_les_mx:ordre_arbre": "343", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2745108666923692, + 48.8218237344639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11453", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261978942326503, + 48.822721083912285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9316", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264191537668704, + 48.82011701263009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12705", + "ref:FR:issy_les_mx:ordre_arbre": "501", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584097573156336, + 48.82461286197923 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16950", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271645743662605, + 48.82718201367975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11148", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264512732867129, + 48.82402102362916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9916", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618948209980156, + 48.81504837226986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27697", + "ref:FR:issy_les_mx:ordre_arbre": "678", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252097488230728, + 48.81974816065684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13602", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594248168383126, + 48.81872175091021 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12996", + "ref:FR:issy_les_mx:ordre_arbre": "249", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685365035739133, + 48.817870435205236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20476", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262636331968717, + 48.81987121531336 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28295", + "ref:FR:issy_les_mx:ordre_arbre": "490", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272494497620753, + 48.82437294408095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11389", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Zelkova serrata 'Fastigiata'", + "species:FR": "Zelcova du Japon fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625365558349326, + 48.827713978039185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30580", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640358702340406, + 48.819893539710215 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29554", + "ref:FR:issy_les_mx:ordre_arbre": "456g", + "species": "Trachycarpus fortunei", + "species:FR": "Palmier de Chine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248304262250156, + 48.82042774722217 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11459", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2564394466978133, + 48.81738417457945 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29980", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262527640582171, + 48.81973264714398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14375", + "ref:FR:issy_les_mx:ordre_arbre": "486", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2438527011972753, + 48.82182903600132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9598", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2573630310694934, + 48.81810921237614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13796", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476526844756006, + 48.82022647008413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10350", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662514367354034, + 48.83134805299608 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27572", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260054161925677, + 48.8187202303867 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13839", + "ref:FR:issy_les_mx:ordre_arbre": "437", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687569212479044, + 48.82079969981422 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14088", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252336815843599, + 48.821854344694415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21629", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Prunus x yedoensis", + "species:FR": "Cerisier à fleur yedoensis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261164929911668, + 48.8262395222019 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12086", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259351305582121, + 48.81713747649755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29632", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774688318437946, + 48.82929377177796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11946", + "ref:FR:issy_les_mx:ordre_arbre": "145", + "species": "Malus trilobata", + "species:FR": "Pommier à feuilles trilobées" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267007592804533, + 48.81738634002418 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28257", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246115808111168, + 48.81887369960922 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10029", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618819904578245, + 48.82781254612581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28066", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643977471070635, + 48.8296770832823 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9895", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273502264343136, + 48.82669132907716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9180", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280954624206202, + 48.83123379779819 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11565", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259710831734169, + 48.81823796605401 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29783", + "ref:FR:issy_les_mx:ordre_arbre": "80", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614545537147026, + 48.823796587896936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12805", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279917963678223, + 48.82782841912411 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6239", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2480055353737622, + 48.81951015030104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10131", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685410892390925, + 48.818098882455104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30773", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Prunus cerasus", + "species:FR": "Cerisier acide" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266495724764099, + 48.82465260293308 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27165", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre 'Élégant'", + "species:FR": "Erable champêtre 'Élégant'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278947201066872, + 48.822694974180706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13262", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2582615637764385, + 48.815344218916046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16514", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Malus 'Perpetu Evereste'", + "species:FR": "Pommier d'ornement 'Perpetu Evereste'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262152648746628, + 48.81473191489014 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21712", + "ref:FR:issy_les_mx:ordre_arbre": "371", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588003228971187, + 48.81860719536817 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21456", + "ref:FR:issy_les_mx:ordre_arbre": "428", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2767576158589313, + 48.82903497447359 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21807", + "ref:FR:issy_les_mx:ordre_arbre": "118", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258875839867013, + 48.81599949959569 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29982", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259424934469973, + 48.81904560483042 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16786", + "ref:FR:issy_les_mx:ordre_arbre": "212", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663121863151363, + 48.820392934391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29566", + "ref:FR:issy_les_mx:ordre_arbre": "528d", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593977501349616, + 48.8178782317318 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29660", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257341991175848, + 48.81620789942369 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29996", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2722631512174902, + 48.816271200520845 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12313", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2568880592068825, + 48.81643673517706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14901", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592594961987245, + 48.818011436763776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29668", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675730008346093, + 48.82314871067783 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12455", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245992294949136, + 48.82168351056195 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10869", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264374400140773, + 48.82306365397647 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12647", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588974294932496, + 48.818045103690125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13129", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696841586061196, + 48.82087128459705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29544", + "ref:FR:issy_les_mx:ordre_arbre": "151a", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2503016974784904, + 48.81914104046663 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10215", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267063441690154, + 48.82101766563907 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11153", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630265165462253, + 48.81475571334307 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16025", + "ref:FR:issy_les_mx:ordre_arbre": "58", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659939182694333, + 48.820864364402674 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10966", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726801965682295, + 48.820935230489546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27538", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279609445302795, + 48.82291847104975 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16092", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594020616748707, + 48.81714048921911 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29641", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Thuja sp.", + "species:FR": "Thuya indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2710715086765307, + 48.817351861837686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9713", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690574729010926, + 48.8213840393 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11215", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2471559945793578, + 48.81911839405693 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10120", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537144383445553, + 48.81975528354087 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26742", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Fraxinus ornus 'Obelisk'", + "species:FR": "Frêne à fleurs 'Obelisk'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2759466626911724, + 48.821727554589174 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12343", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594862473974864, + 48.818638148563494 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14587", + "ref:FR:issy_les_mx:ordre_arbre": "319", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278655088511688, + 48.822142054353556 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10441", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2540350727546263, + 48.82283386137876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11427", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277518576181242, + 48.82821226114439 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9679", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258305045039645, + 48.81684417247666 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29873", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688628516648266, + 48.822541915666996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14239", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Alnus glutinosa 'Imperialis'", + "species:FR": "Aulne glutineux 'Imperialis'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26946153784077, + 48.81790763589495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20327", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2789021694214204, + 48.82279586324463 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13638", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271761573647435, + 48.82172511042244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10492", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260113721421835, + 48.81591732113136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27593", + "ref:FR:issy_les_mx:ordre_arbre": "574", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541885792427103, + 48.820174674804505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21905", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Tilia x vulgaris", + "species:FR": "Tilleul de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597106932774156, + 48.823116075035934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11910", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270258131022697, + 48.82037178259802 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27549", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249138317181044, + 48.819944906293095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10519", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260373360452548, + 48.81689829218086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28562", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267725738751042, + 48.81620875127741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29822", + "ref:FR:issy_les_mx:ordre_arbre": "38a", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597485103091395, + 48.81809569683408 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29796", + "ref:FR:issy_les_mx:ordre_arbre": "93", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276788602159629, + 48.82796507102063 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30546", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651664766636035, + 48.82023893570856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29561", + "ref:FR:issy_les_mx:ordre_arbre": "514a" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26215896686053, + 48.81554436396735 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21597", + "ref:FR:issy_les_mx:ordre_arbre": "328", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259148063750293, + 48.81841922731778 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21002", + "ref:FR:issy_les_mx:ordre_arbre": "531", + "species": "Quercus petraea", + "species:FR": "Chêne sessile" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261364404383093, + 48.81684925951077 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16031", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268671980760434, + 48.81675006953646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20663", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250173071926324, + 48.82242589256435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12376", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2640681007354084, + 48.8267127022136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11157", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25088961419208, + 48.820219389850486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10081", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691414169082083, + 48.820233509902145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27557", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660270170022514, + 48.824452467605035 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29848", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Ulmus x hollandica", + "species:FR": "Orme de Hollande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251753618421929, + 48.81991633508061 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12149", + "ref:FR:issy_les_mx:ordre_arbre": "46", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2446942719655856, + 48.821584904536756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10146", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673313743271963, + 48.817505856609884 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20388", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Pyrus communis 'Ferdinand de Lesseps'", + "species:FR": "Poirier 'Ferdinand de Lesseps'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606053249352054, + 48.81602320091137 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16228", + "ref:FR:issy_les_mx:ordre_arbre": "289", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261819242430378, + 48.81645528110643 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16405", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Sorbus intermedia 'Brouwers'", + "species:FR": "Alisier de Suède 'Brouwers'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257991483712276, + 48.824583755769766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16676", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265432736109326, + 48.82085033882323 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10912", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2502052469708245, + 48.82248320089029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12144", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596107672295314, + 48.81582688705759 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21946", + "ref:FR:issy_les_mx:ordre_arbre": "491", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276577369554083, + 48.82562694203895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11640", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258797940161926, + 48.81888795407843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13387", + "ref:FR:issy_les_mx:ordre_arbre": "668", + "species": "Mespilus germanica", + "species:FR": "Néflier d'Allemagne" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269546243017491, + 48.81665024298876 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20637", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2702929389490016, + 48.81712511181101 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20292", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2542182588365116, + 48.81743780062447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12538", + "ref:FR:issy_les_mx:ordre_arbre": "116", + "species": "Taxus baccata 'Fastigiata'", + "species:FR": "If d'Irlande" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685626366995986, + 48.81597768268535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6614", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785299914225687, + 48.823834428936166 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12011", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2486816548398094, + 48.81950811508631 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10019", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280847899624515, + 48.823757652767036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11929", + "ref:FR:issy_les_mx:ordre_arbre": "170", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266326751493232, + 48.82016235747492 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12152", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265036940645077, + 48.820031038485766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13186", + "ref:FR:issy_les_mx:ordre_arbre": "441", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594642385869377, + 48.81899396633192 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13468", + "ref:FR:issy_les_mx:ordre_arbre": "431", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260309952232265, + 48.82390175168333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10087", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259679827669962, + 48.823266618790555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11855", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650068799424594, + 48.82388169385584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9980", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2681614754073856, + 48.821193366432944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11768", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2478018825046897, + 48.819414999576395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11071", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258952048007486, + 48.818101628952434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13130", + "ref:FR:issy_les_mx:ordre_arbre": "104", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260689722049027, + 48.81742146882657 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28585", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607628201209597, + 48.8172789371415 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28581", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244945505699927, + 48.81938470635761 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11268", + "ref:FR:issy_les_mx:ordre_arbre": "41", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280188821623159, + 48.82360365841682 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13435", + "ref:FR:issy_les_mx:ordre_arbre": "159", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259802979118726, + 48.81656691450046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29699", + "ref:FR:issy_les_mx:ordre_arbre": "33d", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258429262662823, + 48.817760211644604 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16612", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278977661186814, + 48.823736662329395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13154", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2649171723814323, + 48.82781390097031 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28703", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2426320699053037, + 48.8216177660722 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9708", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279135828814903, + 48.822573372399766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13260", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Abies alba", + "species:FR": "Sapin pectiné" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278849710331679, + 48.82364556094568 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14334", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785500943273367, + 48.82970498673707 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15070", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266361196304251, + 48.82790660951311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10287", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659118401291463, + 48.83153207864659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29887", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2725322933472913, + 48.8243166030169 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11382", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597222571264073, + 48.81739218474557 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28538", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Betula utilis 'Jacquemontii'", + "species:FR": "Bouleau de l'Himalaya 'Jacquemontii'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539164546474413, + 48.81795070267952 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12477", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Cedrus atlantica", + "species:FR": "Cèdre de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668187288433845, + 48.824924521712056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27173", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Robinia pseudoacacia 'Frisia'", + "species:FR": "Robinier faux acacia doré" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663174827177723, + 48.823506514821965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26248", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2601830367584794, + 48.82415341940799 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10024", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278052450684907, + 48.820911290202204 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11843", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605646824769297, + 48.81657829175073 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16010", + "ref:FR:issy_les_mx:ordre_arbre": "422", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662204760091145, + 48.832266536391565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27045", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626185270608903, + 48.82936000532269 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8605", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250818397123557, + 48.82003161639228 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11687", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2522630660438905, + 48.82183299957486 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21630", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Cornus officinalis", + "species:FR": "Cornouiller officinale" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639878996399325, + 48.823769920155925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11725", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24829580001751, + 48.82387977558831 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27992", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer saccharinum 'Laciniatum Wieri'", + "species:FR": "Erable argenté lacinié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668969987508714, + 48.83221598374322 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11980", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280947085244607, + 48.82362400603435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12067", + "ref:FR:issy_les_mx:ordre_arbre": "175", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613056169768133, + 48.81632350276757 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14837", + "ref:FR:issy_les_mx:ordre_arbre": "302", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602576464481103, + 48.818174148882136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29737", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617174908657494, + 48.822045419252994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10638", + "ref:FR:issy_les_mx:ordre_arbre": "59", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597207030635906, + 48.81822712572151 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29782", + "ref:FR:issy_les_mx:ordre_arbre": "79", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665827974004986, + 48.82053543014851 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13273", + "ref:FR:issy_les_mx:ordre_arbre": "534", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605267301941336, + 48.82407766967136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30622", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629556039356524, + 48.82664161611849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9684", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Malus 'Golden Hornet'", + "species:FR": "Pommier d'ornement à fleurs blanches" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618139974158793, + 48.81511074040442 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27633", + "ref:FR:issy_les_mx:ordre_arbre": "614", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260972707732855, + 48.816355242626706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28399", + "ref:FR:issy_les_mx:ordre_arbre": "542", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628117221534683, + 48.81568995371152 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14764", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270430058620105, + 48.820408441630455 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27548", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695389340612038, + 48.82156595683929 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10876", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2464769759221603, + 48.819225023677866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11505", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263951117252603, + 48.82071756387906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15309", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2578969021952195, + 48.81562415389905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11892", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250357148110057, + 48.82350024728766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9392", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279208911628984, + 48.8294758329563 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29468", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus armeniaca", + "species:FR": "Abricotier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26072508527743, + 48.82318798999362 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10987", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266507625959534, + 48.83440224984077 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10511", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2643020127483418, + 48.82028551096085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14732", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2688436824169926, + 48.82062236374864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_2823", + "ref:FR:issy_les_mx:ordre_arbre": "607", + "species": "Malus domestica 'Elstar'", + "species:FR": "Pommier 'Elstar'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686554982970706, + 48.81611057540069 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20757", + "ref:FR:issy_les_mx:ordre_arbre": "86", + "species": "Prunus cerasus 'Bigarreau Van'", + "species:FR": "Cerisier 'Bigarreau Van'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260084157828708, + 48.81831821088236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29723", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244219052644513, + 48.820947994540774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10771", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27335996969639, + 48.82552775593082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9775", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Pyrus calleryana 'Bradford'", + "species:FR": "Poirier à fleurs 'Bradford'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665336392092823, + 48.83032295073325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12894", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275358198137358, + 48.82665948559561 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12675", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2510028022507447, + 48.820398196767925 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30702", + "ref:FR:issy_les_mx:ordre_arbre": "37d", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27840449236593, + 48.82299659029333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13783", + "ref:FR:issy_les_mx:ordre_arbre": "143", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2637502955455484, + 48.829514787547616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10583", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2827696759954055, + 48.829510645880774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11878", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265568124118408, + 48.831718339936714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11175", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2671950621509103, + 48.81987744585993 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13609", + "ref:FR:issy_les_mx:ordre_arbre": "228", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275062742104283, + 48.826923935519034 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10952", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254312640315333, + 48.817999282553565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12139", + "ref:FR:issy_les_mx:ordre_arbre": "247", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2677161607286913, + 48.82012355684407 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16422", + "ref:FR:issy_les_mx:ordre_arbre": "190", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646541590412577, + 48.81993322932537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13991", + "ref:FR:issy_les_mx:ordre_arbre": "430", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700543044446926, + 48.82632047712082 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28049", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273305018466823, + 48.82550650853432 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9528", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Pyrus calleryana 'Bradford'", + "species:FR": "Poirier à fleurs 'Bradford'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2481281951884586, + 48.818655343969965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11871", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2758478140097917, + 48.82251444405504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10000", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266849943711068, + 48.83141264018767 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11269", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26536911781343, + 48.829280800401875 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14512", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2733940003390947, + 48.825751029929066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16272", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667157748161935, + 48.83107623901207 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10178", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2759477301889666, + 48.826141418883076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12484", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274938718797495, + 48.82207707814029 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10918", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266388380618403, + 48.83060973779125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10995", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670283787574177, + 48.81987734286053 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12448", + "ref:FR:issy_les_mx:ordre_arbre": "234", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278488884572724, + 48.82295392404102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22221", + "ref:FR:issy_les_mx:ordre_arbre": "145", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266523484657046, + 48.82979513532693 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22061", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664308396190607, + 48.830785832928264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13411", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265229746777836, + 48.819578648340745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22182", + "ref:FR:issy_les_mx:ordre_arbre": "293", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2584829007600455, + 48.8252195905068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17000", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679889863940192, + 48.82039937081994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13528", + "ref:FR:issy_les_mx:ordre_arbre": "208", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675382425194193, + 48.820082296385934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16486", + "ref:FR:issy_les_mx:ordre_arbre": "214", + "species": "Paulownia tomentosa", + "species:FR": "Paulownia impérialis" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2662799773472337, + 48.829182648203144 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10605", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701723758098202, + 48.82634179395538 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28037", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274861495340885, + 48.827101373790185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16401", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585842050548015, + 48.8186091006867 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18496", + "ref:FR:issy_les_mx:ordre_arbre": "170", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2755512656091472, + 48.8265020584275 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12676", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2792037840435655, + 48.822629188727724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29901", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer sp.", + "species:FR": "Erable non identifié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244088329872999, + 48.82079627133718 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10716", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2704592673555375, + 48.816594336277 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_671", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787304557669708, + 48.823053863623755 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13982", + "ref:FR:issy_les_mx:ordre_arbre": "138", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267050435306535, + 48.819880773483646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12447", + "ref:FR:issy_les_mx:ordre_arbre": "233", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652739970737614, + 48.8195843418921 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22386", + "ref:FR:issy_les_mx:ordre_arbre": "292", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2518326666217474, + 48.819484116721505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13456", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249223895875518, + 48.82063642686071 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10193", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265261840102243, + 48.81966308936291 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12721", + "ref:FR:issy_les_mx:ordre_arbre": "267", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266891059644956, + 48.829761616664776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12176", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251627289296763, + 48.81939277605286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13769", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826905837325224, + 48.826948804184475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10537", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257050798904865, + 48.81709810378244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29923", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826990229968684, + 48.826953304059224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9845", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279918933571043, + 48.82321179262499 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14102", + "ref:FR:issy_les_mx:ordre_arbre": "99", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246606172139921, + 48.822549287636285 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21418", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698352198198632, + 48.82597608817724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21906", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2438181269477275, + 48.82073319054382 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13510", + "ref:FR:issy_les_mx:ordre_arbre": "52", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258891281568302, + 48.81868179794936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12929", + "ref:FR:issy_les_mx:ordre_arbre": "194", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653476112639495, + 48.83011505824349 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28753", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2510142827975455, + 48.82038878917943 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30701", + "ref:FR:issy_les_mx:ordre_arbre": "37c", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654434133697863, + 48.82004703278691 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13119", + "ref:FR:issy_les_mx:ordre_arbre": "396", + "species": "Prunus cerasifera", + "species:FR": "Prunier myrobolan" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653231314862463, + 48.819673220903766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12722", + "ref:FR:issy_les_mx:ordre_arbre": "268", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2653967743960277, + 48.82929832748299 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14513", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Laurus nobilis", + "species:FR": "Laurier-sauce" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270432660458387, + 48.816524067431935 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_1061", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701991141655924, + 48.826397269118 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28042", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Cupressus sempervirens", + "species:FR": "Cyprès d'Italie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257649388645642, + 48.817759016806086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12336", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278600796586146, + 48.82303034288514 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13984", + "ref:FR:issy_les_mx:ordre_arbre": "140", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266513284720285, + 48.830539144110084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13413", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266062740372498, + 48.81579373442156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27798", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25909031892048, + 48.82382609237388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17036", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608298510424802, + 48.825169084722496 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21601", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260757326020152, + 48.82526219080855 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16675", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589157300767218, + 48.82388830765797 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16632", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598765349209757, + 48.82424742840251 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16810", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276104166663524, + 48.827927273015796 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11417", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282790668535752, + 48.82889267852634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11492", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer ginnala", + "species:FR": "Erable du fleuve Amour" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24743903499754, + 48.82277812111095 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9549", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266598290605392, + 48.815789107733764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27794", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597563171401216, + 48.82424311424428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16878", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602366903874964, + 48.824677176141286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16807", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593691450691606, + 48.82398502463319 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16874", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266222689209067, + 48.81578905050471 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27797", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259595620399943, + 48.82412646898936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17062", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605718394448755, + 48.82494534765705 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15314", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2761835656474374, + 48.82795609058527 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11418", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2757837034275212, + 48.82247676266818 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10001", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259626026602196, + 48.82270848123979 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11532", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer ginnala", + "species:FR": "Erable du fleuve Amour" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588573380207384, + 48.82394231330565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16631", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260996617643642, + 48.82866896535512 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28982", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261090641240726, + 48.828931979212186 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28985", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608909989394466, + 48.82838297515842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28978", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2492197978218136, + 48.81919745860616 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11432", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276902922925535, + 48.82215570894391 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16275", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270344184432942, + 48.8148511755806 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10458", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691519984040958, + 48.82069884008489 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14742", + "ref:FR:issy_les_mx:ordre_arbre": "165", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2729616706980464, + 48.82200870679803 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10361", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2744316621908296, + 48.82140882654724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10313", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267772145382077, + 48.827491838915016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27002", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265212962704112, + 48.827132525487826 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21501", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268946946865105, + 48.81709454199786 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20250", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799982959784537, + 48.82393284648812 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22215", + "ref:FR:issy_les_mx:ordre_arbre": "122", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2766707544491074, + 48.82807321868623 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28359", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596074922662575, + 48.825406811009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16637", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779667397397123, + 48.82912857714221 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11982", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2656790736364782, + 48.820908246798886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11377", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700231701192886, + 48.82168555032812 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11265", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269013210813238, + 48.82086523282043 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14014", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2708251773019374, + 48.81532094675017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11590", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680843375712962, + 48.82720307147236 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27008", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701162439451754, + 48.81690897023155 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20464", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Prunus domestica 'Reine-Claude d'Oullins'", + "species:FR": "Prunier 'Reine-Claude d'Oullins'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.241105820568475, + 48.821424995438235 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9791", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669427967977214, + 48.81964617670548 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30562", + "ref:FR:issy_les_mx:ordre_arbre": "44a", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2788863030957525, + 48.82905908525752 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9640", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260167819906071, + 48.81837136819793 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29719", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280518192778699, + 48.82362129629611 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29590", + "ref:FR:issy_les_mx:ordre_arbre": "161a", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2764474181476646, + 48.822570024862536 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11604", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279676964611012, + 48.82328597525983 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12031", + "ref:FR:issy_les_mx:ordre_arbre": "191", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277286596071688, + 48.82906628052317 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22085", + "ref:FR:issy_les_mx:ordre_arbre": "81", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720049659381947, + 48.82180198140836 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10490", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26170392737775, + 48.81514189883849 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27640", + "ref:FR:issy_les_mx:ordre_arbre": "621", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624393699302696, + 48.82923022044641 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8514", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Acer buergerianum", + "species:FR": "Erable à écorce de dragon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613619906512006, + 48.81635415703741 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16067", + "ref:FR:issy_les_mx:ordre_arbre": "220", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254220675044643, + 48.82265950204311 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10796", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.242757258009601, + 48.82164780917262 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9707", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651242819571804, + 48.81542194437246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30603", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides 'Globosum'", + "species:FR": "Erable plane boule" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25883261689357, + 48.81863384304489 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14663", + "ref:FR:issy_les_mx:ordre_arbre": "192", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2691665750895362, + 48.82074211499541 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16445", + "ref:FR:issy_les_mx:ordre_arbre": "161", + "species": "Prunus hillieri 'Spire'", + "species:FR": "Cerisier à fleurs 'Spire'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274697974951354, + 48.82193379537878 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11490", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565283964928327, + 48.81753573535289 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29979", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2709041675149844, + 48.81538500472842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11589", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645353719485644, + 48.82977464120429 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9894", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2783899424705805, + 48.82052733881132 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11460", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720542026166117, + 48.82147912812696 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12098", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282734850471317, + 48.82964873407681 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12377", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268143774644874, + 48.81607721325942 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29817", + "ref:FR:issy_les_mx:ordre_arbre": "36a", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2557531019287644, + 48.82171562182123 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22346", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2476044100834556, + 48.81988391418189 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11030", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621048237892785, + 48.815751270628354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16352", + "ref:FR:issy_les_mx:ordre_arbre": "201", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2570371177084803, + 48.822564792935566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10726", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Fraxinus angustifolia", + "species:FR": "Frêne à feuilles étroites" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2682065340549022, + 48.827089993254724 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27017", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265768679241615, + 48.82755223833413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9838", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618815194295543, + 48.829899168535974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28967", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2693896375992373, + 48.82089150141746 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20891", + "ref:FR:issy_les_mx:ordre_arbre": "98", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695934604064494, + 48.82101863055962 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13405", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782001478394784, + 48.822960504387375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14584", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259937966787465, + 48.823655096352304 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9946", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2646760119251836, + 48.81956425748872 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27907", + "ref:FR:issy_les_mx:ordre_arbre": "278a", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608763625884754, + 48.827120195414146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9842", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Ginkgo biloba", + "species:FR": "Arbre aux quarante écus" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278429345815685, + 48.82630841627576 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10820", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2614341737362547, + 48.81646752147501 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16184", + "ref:FR:issy_les_mx:ordre_arbre": "223", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.257505798335578, + 48.817628177527844 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17228", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716925218312634, + 48.822959176274324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11665", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266212367319354, + 48.82919865221897 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13627", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pinus strobus", + "species:FR": "Pin de Weymouth" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2474478075556545, + 48.82008115048725 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11094", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26160729937652, + 48.826952660750706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28084", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712518345130865, + 48.822561436821815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10579", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585324835125773, + 48.822688919078715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27528", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Fraxinus ornus 'Lerce'", + "species:FR": "Frêne à fleurs 'Lerce'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246116153348554, + 48.82119988774691 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10824", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597626903792096, + 48.818272265252325 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29758", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2673596513671805, + 48.81974903153017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11249", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2705168653301593, + 48.82157049358427 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14158", + "ref:FR:issy_les_mx:ordre_arbre": "134", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2612423369803807, + 48.82807975738764 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27946", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259748348419769, + 48.81890954988346 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_18494", + "ref:FR:issy_les_mx:ordre_arbre": "346", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267119122062785, + 48.81966391565758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30564", + "ref:FR:issy_les_mx:ordre_arbre": "42a", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785122442513397, + 48.82741254329963 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10322", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26868650774631, + 48.81817447101908 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20428", + "ref:FR:issy_les_mx:ordre_arbre": "65", + "species": "Malus domestica 'Jonagold'", + "species:FR": "Pommier 'Jonagold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285742684279785, + 48.82883508196435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10292", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266891347527104, + 48.8154997735946 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29841", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739282026579293, + 48.825054876352766 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11707", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659934596139966, + 48.82013252262569 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13350", + "ref:FR:issy_les_mx:ordre_arbre": "381", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2827434791173262, + 48.82958348930224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11862", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262801478849003, + 48.81996945957926 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12572", + "ref:FR:issy_les_mx:ordre_arbre": "492", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264138980680321, + 48.82016300111447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15707", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2720219012400746, + 48.82156132395959 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28747", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus serrulata 'Sunset boulevard'", + "species:FR": "Cerisier à grappes 'Sunset boulevard'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278834588349873, + 48.82288734178869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14480", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2781643687908693, + 48.822680770083096 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14340", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Thuja plicata", + "species:FR": "Thuya géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278085159786382, + 48.825961679302054 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11220", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2572486401804714, + 48.816174433973 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14753", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Cedrus atlantica 'Glauca'", + "species:FR": "Cèdre bleu de l'Atlas" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678754691286893, + 48.81672116262906 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20477", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Prunus avium 'Noir d'Ecully'", + "species:FR": "Cerisier Bigarreau 'Noir d'Ecully'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618714991281723, + 48.82777425768708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28068", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2532468758696904, + 48.82045507911413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26660", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265348155135899, + 48.82898383433911 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11634", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259551614910798, + 48.81897015771428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13053", + "ref:FR:issy_les_mx:ordre_arbre": "207", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2441543004024105, + 48.8219772109533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_7909", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267018281100977, + 48.81965972755717 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30563", + "ref:FR:issy_les_mx:ordre_arbre": "43a", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627925883451954, + 48.81492267318702 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13803", + "ref:FR:issy_les_mx:ordre_arbre": "161", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252079642524783, + 48.81919680537668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21509", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2457522840084865, + 48.82310592971681 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30060", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260889569518492, + 48.819453773042206 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11692", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261221183786877, + 48.81577807044749 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15886", + "ref:FR:issy_les_mx:ordre_arbre": "458", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260688779766443, + 48.82312057425393 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11024", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270135316667388, + 48.8167568958708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_6851", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621339979908437, + 48.82282130810018 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10515", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2799424459431683, + 48.82172162293468 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10347", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2769448666840466, + 48.828948564615686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11954", + "ref:FR:issy_les_mx:ordre_arbre": "106", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2469653578665003, + 48.819932376636395 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22062", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2730665518025734, + 48.82504505647068 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10199", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Albizia julibrissin", + "species:FR": "Acacia de Constantinople" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793896008295524, + 48.82402515642122 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13327", + "ref:FR:issy_les_mx:ordre_arbre": "113", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274625326820834, + 48.82332798908309 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9719", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679849045353335, + 48.81682447750404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20791", + "ref:FR:issy_les_mx:ordre_arbre": "39", + "species": "Prunus cerasus 'Reverchon'", + "species:FR": "Cerisier 'Reverchon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633242811884906, + 48.81527875396156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22161", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2579868784474684, + 48.82264391035086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11090", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2463472103404443, + 48.819820840525495 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11779", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277876577989046, + 48.82912403383484 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12024", + "ref:FR:issy_les_mx:ordre_arbre": "45", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261390440583668, + 48.82755665069519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10291", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261454131792947, + 48.815872194225385 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15945", + "ref:FR:issy_les_mx:ordre_arbre": "456", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674878679042094, + 48.82536901039529 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10568", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2729028508372595, + 48.82135844063723 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12500", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2453790093871637, + 48.819520582611354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11720", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245586102325603, + 48.8195043528954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11817", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804528218988374, + 48.82336428572194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14311", + "ref:FR:issy_les_mx:ordre_arbre": "114", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272654881884381, + 48.821470109385004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16485", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698257207621255, + 48.82100610664157 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14533", + "ref:FR:issy_les_mx:ordre_arbre": "105", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2825463053425694, + 48.829902599178965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15131", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Catalpa bignonioides", + "species:FR": "Catalpa commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268701552888075, + 48.82070946299454 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13971", + "ref:FR:issy_les_mx:ordre_arbre": "87", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617770425733092, + 48.81509495267136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27646", + "ref:FR:issy_les_mx:ordre_arbre": "627", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273788112883461, + 48.825221731938136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30678", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618779612901734, + 48.82770270694087 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28071", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2483749217992393, + 48.819963113974815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14862", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268682919663491, + 48.816142700293504 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20329", + "ref:FR:issy_les_mx:ordre_arbre": "85", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277326614130136, + 48.82917096180981 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12851", + "ref:FR:issy_les_mx:ordre_arbre": "64", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277167945950493, + 48.82874319996672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11941", + "ref:FR:issy_les_mx:ordre_arbre": "129", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2696087915739462, + 48.814296478631476 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11794", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2657236054721595, + 48.82582567239928 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13759", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616402459181177, + 48.82295165990473 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12613", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2709579343587043, + 48.82523778556779 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26763", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260122920890081, + 48.81565788436112 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16037", + "ref:FR:issy_les_mx:ordre_arbre": "497", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2453392179531924, + 48.822250978162934 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9073", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265894973177155, + 48.830738716456594 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12726", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2697653644284395, + 48.82099050229533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14532", + "ref:FR:issy_les_mx:ordre_arbre": "104", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667428247734662, + 48.820133046668886 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27902", + "ref:FR:issy_les_mx:ordre_arbre": "212a", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2658256071330225, + 48.830444492597074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28324", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Crataegus laevigata 'Paul's Scarlet'", + "species:FR": "Aubépine à deux styles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598525870037665, + 48.822983044558804 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10953", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267680652577685, + 48.82319115119046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21506", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631012209382546, + 48.81772375430971 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12533", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282934428301526, + 48.829802199601794 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11960", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Cupressus arizonica", + "species:FR": "Cyprès de l'Arizona" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276626611319911, + 48.829126989402596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14506", + "ref:FR:issy_les_mx:ordre_arbre": "114", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2602330961089265, + 48.81610146008295 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16344", + "ref:FR:issy_les_mx:ordre_arbre": "403", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26152233211938, + 48.81671036347388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14925", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Sorbus x thuringiaca 'Fastigiata'", + "species:FR": "Sorbier à feuilles de chêne fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2468799491838642, + 48.82346484059689 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11685", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fagus sylvatica 'Purpurea'", + "species:FR": "Hêtre pourpre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2856892365475425, + 48.829011406519676 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11420", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2778987165344007, + 48.829176832433625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11984", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2769772336083274, + 48.828876730136805 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12268", + "ref:FR:issy_les_mx:ordre_arbre": "124", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263344233443762, + 48.814909695343964 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15889", + "ref:FR:issy_les_mx:ordre_arbre": "54", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650646316112706, + 48.825727150311955 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30577", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.285652200667346, + 48.829108608394954 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11775", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651924056788317, + 48.82896923698519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27571", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249157510224619, + 48.81845312028185 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12695", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248361170000197, + 48.82389934359268 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27993", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699551221172336, + 48.817114456743624 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20780", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Prunus cerasus 'Queen Victoria'", + "species:FR": "Prunier de la 'Reine Victoria'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633786718178315, + 48.828930286904296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10738", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Pyrus calleryana", + "species:FR": "Poirier de Chine" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2780866707721206, + 48.822169855113856 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10157", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616068725634584, + 48.81573842931246 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15835", + "ref:FR:issy_les_mx:ordre_arbre": "101", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266340415388901, + 48.83220440620533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27044", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2790894525449237, + 48.82305962713167 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13035", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2742678066379285, + 48.82167959940598 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11434", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2633570950455537, + 48.82671038459172 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30536", + "ref:FR:issy_les_mx:ordre_arbre": "19a", + "species": "Cornus mas", + "species:FR": "Cornouiller mâle" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27308777139601, + 48.82204628650885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12536", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259609001108078, + 48.81671393219088 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30037", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262784111749124, + 48.81968053162931 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_25968", + "ref:FR:issy_les_mx:ordre_arbre": "339", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2735399463915527, + 48.82683627282581 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9178", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Zelkova serrata", + "species:FR": "Zelkova du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2858498247360655, + 48.828487934760524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10017", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2804503859368492, + 48.831183750417715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_2824", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650678661907926, + 48.82664874255013 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11778", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706933661663835, + 48.81732082470326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27093", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Alnus cordata", + "species:FR": "Aulne de Corse" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.252935819063853, + 48.821173652433814 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26672", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278122511865445, + 48.82266267531848 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14536", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2719327701178744, + 48.82679191612026 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11749", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2605036626567006, + 48.81538464548537 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14918", + "ref:FR:issy_les_mx:ordre_arbre": "469", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2560756045680086, + 48.82245777053807 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10956", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263223101393116, + 48.815148564076466 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15796", + "ref:FR:issy_les_mx:ordre_arbre": "168", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263098647222089, + 48.81508019045102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15763", + "ref:FR:issy_les_mx:ordre_arbre": "165", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265976566233405, + 48.82723180875589 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16470", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2470353867823296, + 48.820032294622244 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11886", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258987126395915, + 48.817131544002194 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29479", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2722806784114953, + 48.822683129936905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22361", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576428713048253, + 48.81653966493154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30021", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263682118403364, + 48.82701460077634 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9570", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593551605241484, + 48.81616354381435 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12464", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279372917242413, + 48.82262896480515 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13775", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538436179598222, + 48.82190625199729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10225", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631270752551242, + 48.81979200133851 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14517", + "ref:FR:issy_les_mx:ordre_arbre": "480", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265101562562499, + 48.82007487351859 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11345", + "ref:FR:issy_les_mx:ordre_arbre": "446", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256186575854237, + 48.82066316637359 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12498", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610410443577016, + 48.81625618646243 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15871", + "ref:FR:issy_les_mx:ordre_arbre": "297", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27041425028564, + 48.817364061613056 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20178", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Pterocarya fraxinifolia", + "species:FR": "Noyer du Caucase" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731870265953726, + 48.82549174724708 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9526", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Magnolia 'Galaxy'", + "species:FR": "Magnolia 'Galaxy'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2618480035747126, + 48.827711605675354 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28070", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280012666227402, + 48.823405826993714 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16367", + "ref:FR:issy_les_mx:ordre_arbre": "223", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676807527340936, + 48.82030894338225 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12153", + "ref:FR:issy_les_mx:ordre_arbre": "194", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272610336850921, + 48.82580936110076 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11188", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779880791544502, + 48.824119701471574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13217", + "ref:FR:issy_les_mx:ordre_arbre": "53", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610210545986855, + 48.81638405223743 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28401", + "ref:FR:issy_les_mx:ordre_arbre": "544", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597735806782846, + 48.816814963785006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29695", + "ref:FR:issy_les_mx:ordre_arbre": "32c", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593466801876647, + 48.81879310525758 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13875", + "ref:FR:issy_les_mx:ordre_arbre": "486", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2706745386300122, + 48.81519987807609 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11591", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2525034038842717, + 48.822108560131205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9352", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2467844537989206, + 48.818944389441306 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9884", + "ref:FR:issy_les_mx:ordre_arbre": "26", + "species": "Acer rubrum 'Red Sunset'", + "species:FR": "Erable rouge 'Red Sunset'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2598831048077046, + 48.818159421059526 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29790", + "ref:FR:issy_les_mx:ordre_arbre": "87", + "species": "Betula pendula 'Zwitsers Glorie'", + "species:FR": "Bouleau commun 'Zwitsers Glorie'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270211588361321, + 48.82110819268506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13686", + "ref:FR:issy_les_mx:ordre_arbre": "111", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2759431311488205, + 48.82266599377451 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11463", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261619124272167, + 48.814543010474885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27744", + "ref:FR:issy_les_mx:ordre_arbre": "725", + "species": "Chamaecyparis lawsoniana", + "species:FR": "Cyprès de Lawson" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2751558946398966, + 48.82220170814815 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11785", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2613173277097585, + 48.81595669534897 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27779", + "ref:FR:issy_les_mx:ordre_arbre": "760", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485037948642463, + 48.818659936881005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13338", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26863071983711, + 48.81783150624771 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20569", + "ref:FR:issy_les_mx:ordre_arbre": "50", + "species": "Malus domestica 'Reinette Grise de Lorient'", + "species:FR": "Pommier 'Reinette Grise de Lorient'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2655202609498506, + 48.825888258377866 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9388", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261745670948035, + 48.815069575943824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27663", + "ref:FR:issy_les_mx:ordre_arbre": "644", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276593357249758, + 48.827920575422915 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11290", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2620044927968506, + 48.829881152428264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28966", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Quercus palustris", + "species:FR": "Chêne des marais" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595190282192927, + 48.818686924001135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14695", + "ref:FR:issy_les_mx:ordre_arbre": "292", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2562574209850017, + 48.82441417188398 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27872", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251084992968077, + 48.81950425865632 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11500", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698917731243142, + 48.821094624695384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12252", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261742164734174, + 48.82808644313193 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27975", + "ref:FR:issy_les_mx:ordre_arbre": "43", + "species": "Acer rubrum", + "species:FR": "Erable rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279895429563091, + 48.82567374378652 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11399", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739352985313053, + 48.82442734189898 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15404", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Olea sp.", + "species:FR": "Olivier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2698542860785818, + 48.8256147704402 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28306", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259519763304639, + 48.81863719512482 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14672", + "ref:FR:issy_les_mx:ordre_arbre": "325", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2546056911050774, + 48.81758853058943 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21827", + "ref:FR:issy_les_mx:ordre_arbre": "164", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250725030544468, + 48.82378854216388 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14290", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259767228676512, + 48.816456697762284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29702", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262123625401225, + 48.81546642858264 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15750", + "ref:FR:issy_les_mx:ordre_arbre": "136", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2665293817163747, + 48.82038008425744 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14050", + "ref:FR:issy_les_mx:ordre_arbre": "536", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630785635265407, + 48.82919741429175 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11344", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26559518706665, + 48.82914008330864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13999", + "ref:FR:issy_les_mx:ordre_arbre": "34", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2541654314004527, + 48.82268446779933 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11304", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2634059890005815, + 48.82698189325364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11128", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2596700049591405, + 48.81900410554017 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13146", + "ref:FR:issy_les_mx:ordre_arbre": "217", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2585097455677103, + 48.82530898567016 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16901", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686016976746166, + 48.81662603557338 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29524", + "ref:FR:issy_les_mx:ordre_arbre": "11a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26945259020537, + 48.82744201527773 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29915", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263827137786996, + 48.81970343428179 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13297", + "ref:FR:issy_les_mx:ordre_arbre": "332", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2648155671939243, + 48.82226106203335 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12550", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2668950054379455, + 48.82039496937951 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21532", + "ref:FR:issy_les_mx:ordre_arbre": "546", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676202572886117, + 48.817340481525086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20285", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Pyrus communis 'Doyenné Defays'", + "species:FR": "Poirier 'Doyenné Defays'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268438735113017, + 48.81631450082885 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22269", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Prunus cerasus 'Bigarreau'", + "species:FR": "Cerisier 'Bigarreau'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2652430509180825, + 48.814463426712116 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12141", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2574220738326525, + 48.81630319273533 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29999", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269703411498887, + 48.822390397505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14336", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687615218937465, + 48.820724962085684 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16334", + "ref:FR:issy_les_mx:ordre_arbre": "88", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2630520252863375, + 48.815237910480434 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27769", + "ref:FR:issy_les_mx:ordre_arbre": "750", + "species": "Acer monspessulanum", + "species:FR": "Erable de Montpellier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277263835585653, + 48.82636763518513 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11162", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2569500418865767, + 48.8172015366485 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29926", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2692659696308124, + 48.82250634073357 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11117", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2627365389269904, + 48.81972862604816 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30784", + "ref:FR:issy_les_mx:ordre_arbre": "482a", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24629353842666, + 48.81904453701912 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10251", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617203447734684, + 48.827261306971025 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28081", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631619484461307, + 48.81971319806948 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11933", + "ref:FR:issy_les_mx:ordre_arbre": "348", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.248222980004562, + 48.820323511437216 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11076", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2716946841914836, + 48.82553093451716 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11204", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides 'Globosum'", + "species:FR": "Erable plane boule" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280771050185266, + 48.822805895995224 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10295", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255251955504253, + 48.82314681113672 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22036", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2622360507524593, + 48.81564279870942 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16267", + "ref:FR:issy_les_mx:ordre_arbre": "197", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2651284699991963, + 48.8203006067333 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12060", + "ref:FR:issy_les_mx:ordre_arbre": "514", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24498454624346, + 48.82206755053807 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11381", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2680310048976184, + 48.82014121314105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27901", + "ref:FR:issy_les_mx:ordre_arbre": "181e", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2786750311482145, + 48.82380288167145 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12903", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24888598203476, + 48.81901876441545 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12257", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.282901308643347, + 48.82704890408781 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10761", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2553451634397383, + 48.82227640443252 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13368", + "ref:FR:issy_les_mx:ordre_arbre": "40", + "species": "Koelreuteria paniculata", + "species:FR": "Savonnier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2739979691805043, + 48.823052511438114 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11575", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2485756251300812, + 48.81877565685944 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12272", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2594615359130166, + 48.81872531517376 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12997", + "ref:FR:issy_les_mx:ordre_arbre": "250", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595404742484457, + 48.818820884830004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14181", + "ref:FR:issy_les_mx:ordre_arbre": "473", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604013947019426, + 48.8179026553546 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29802", + "ref:FR:issy_les_mx:ordre_arbre": "99", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.270116583972889, + 48.8263086258807 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28035", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258647552575785, + 48.817931385776916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16036", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia x vulgaris 'Hayne'", + "species:FR": "Tilleul de Hollande 'Hayne'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256671088887238, + 48.82253329058905 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10379", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2576189415105534, + 48.81647952700631 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30025", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690965296633085, + 48.82077247618358 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13257", + "ref:FR:issy_les_mx:ordre_arbre": "166", + "species": "Fraxinus ornus", + "species:FR": "Frêne à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2685119537128675, + 48.81670578996614 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29525", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660458086788133, + 48.829311371299646 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21400", + "ref:FR:issy_les_mx:ordre_arbre": "49", + "species": "Prunus avium", + "species:FR": "Merisier des bois" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269031840069805, + 48.817750114109636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20471", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Malus domestica 'Reinette d'Anjou'", + "species:FR": "Pommier 'Reinette d'Anjou'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253837410847998, + 48.81742178499861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11331", + "ref:FR:issy_les_mx:ordre_arbre": "62", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2489503720998107, + 48.81931395790412 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11498", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Platanus x acerifolia", + "species:FR": "Platane commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26555485082764, + 48.829148279735364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14319", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539323701488807, + 48.81763632988493 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12774", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621481576853477, + 48.816029451344164 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15787", + "ref:FR:issy_les_mx:ordre_arbre": "109", + "species": "Quercus cerris", + "species:FR": "Chêne chevelu" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611187103227275, + 48.816365652878446 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15851", + "ref:FR:issy_les_mx:ordre_arbre": "258", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2510367981033585, + 48.82037161348572 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30700", + "ref:FR:issy_les_mx:ordre_arbre": "37b", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2559486500990196, + 48.82099377917321 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12729", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus subhirtella", + "species:FR": "Cerisier à fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.249385665708003, + 48.820144443986756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11696", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258212995721906, + 48.81567984685678 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12492", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597374726503996, + 48.81819710010508 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29778", + "ref:FR:issy_les_mx:ordre_arbre": "75", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277395502130579, + 48.82771049135086 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21473", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279091989875825, + 48.8271516392994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10220", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263502633565048, + 48.82046799602667 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14891", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2827983424322955, + 48.829521048302134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11863", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Ailanthus altissima", + "species:FR": "Ailante" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2442589137611675, + 48.819090780616584 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10991", + "ref:FR:issy_les_mx:ordre_arbre": "38", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266526757289803, + 48.82901958730447 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10697", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.254919422476824, + 48.818087312839296 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12304", + "ref:FR:issy_les_mx:ordre_arbre": "256", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260143616372615, + 48.81633868041281 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16058", + "ref:FR:issy_les_mx:ordre_arbre": "416", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2779244535013357, + 48.821277066268465 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28196", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663615902707885, + 48.81701855823098 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29435", + "ref:FR:issy_les_mx:ordre_arbre": "4c", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2615437641935237, + 48.81612493603532 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16005", + "ref:FR:issy_les_mx:ordre_arbre": "309", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617040284851253, + 48.81509630038324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27659", + "ref:FR:issy_les_mx:ordre_arbre": "640", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2505337514312, + 48.82372660115653 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12958", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262496608667089, + 48.81566466126745 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15860", + "ref:FR:issy_les_mx:ordre_arbre": "139", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259441676911616, + 48.818705222116066 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13089", + "ref:FR:issy_les_mx:ordre_arbre": "266", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2700557993963697, + 48.81695202709507 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20248", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Prunus domestica 'Reine-Claude Diaphane'", + "species:FR": "Prunier 'Reine-Claude Diaphane'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27260325216267, + 48.822826325550686 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12591", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2787392223402123, + 48.82179413656842 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15080", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2471286774576127, + 48.82006336798506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11885", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2669686409410907, + 48.82964408237404 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12762", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Pyrus sp.", + "species:FR": "Poirier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826513262316803, + 48.82883763506314 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10615", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2463320592979654, + 48.821243855204635 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9860", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Quercus robur", + "species:FR": "Chêne pédonculé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.264116554475507, + 48.82922564432345 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10871", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2660199146554727, + 48.82939529248726 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14007", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Prunus sargentii", + "species:FR": "Cerisier de Sargent" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2624135314988294, + 48.815621606502184 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16584", + "ref:FR:issy_les_mx:ordre_arbre": "137", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261427121038887, + 48.816527365506936 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15928", + "ref:FR:issy_les_mx:ordre_arbre": "232", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699274601549835, + 48.81728046583598 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28272", + "ref:FR:issy_les_mx:ordre_arbre": "66", + "species": "Prunus cerasus 'Methley'", + "species:FR": "Prunier japonais 'Methley'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2451923403456804, + 48.82221634526092 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9808", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.247960505578466, + 48.822792553172036 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9689", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Fraxinus angustifolia 'Raywood'", + "species:FR": "Frêne à feuilles étroites 'Raywood'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2492213434210067, + 48.81844012671752 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12601", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2782938224080773, + 48.822117386058146 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10186", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250726064255448, + 48.82021325428059 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11617", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.256585773083259, + 48.816004453950015 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28362", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Ulmus sp.", + "species:FR": "Orme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2638701709907085, + 48.820728768126585 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28224", + "ref:FR:issy_les_mx:ordre_arbre": "18a", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2467540868075226, + 48.81962882848413 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21592", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714443300090457, + 48.8267021721509 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30600", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265179098064412, + 48.8153675499953 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30604", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer platanoides 'Globosum'", + "species:FR": "Erable plane boule" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260533472637307, + 48.81787047952723 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29805", + "ref:FR:issy_les_mx:ordre_arbre": "102", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2695442106432484, + 48.82102678107601 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30801", + "ref:FR:issy_les_mx:ordre_arbre": "9a", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27732437884202, + 48.82868384078976 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_21334", + "ref:FR:issy_les_mx:ordre_arbre": "96", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699143496416005, + 48.82555685745298 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28302", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Parrotia persica", + "species:FR": "Arbre de fer" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2659636406288377, + 48.83053851584255 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29835", + "ref:FR:issy_les_mx:ordre_arbre": "7a", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2707969090964086, + 48.817662513271706 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9704", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2621583825029754, + 48.82321924440519 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9314", + "ref:FR:issy_les_mx:ordre_arbre": "30", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606653335677853, + 48.82402395347106 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10679", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Sophora japonica", + "species:FR": "Sophora du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.245616464799458, + 48.822966297378535 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29466", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Prunus cerasifera 'Pissardii'", + "species:FR": "Prunier myrobolan de Pissard" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263012776444087, + 48.82730031883597 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10133", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Fagus sylvatica", + "species:FR": "Hêtre commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2773472747907446, + 48.826295827761825 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11163", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.280714836734181, + 48.82279033654858 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10296", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.281039908313053, + 48.830582279465524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15101", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265397508302199, + 48.82005599631636 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13579", + "ref:FR:issy_les_mx:ordre_arbre": "400", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272622323905216, + 48.82139518950009 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27029", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261855093489865, + 48.82748995224774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28077", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617382718376184, + 48.81596988419379 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13811", + "ref:FR:issy_les_mx:ordre_arbre": "314", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2597943371903026, + 48.81895923357922 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27922", + "ref:FR:issy_les_mx:ordre_arbre": "340g", + "species": "Quercus sp.", + "species:FR": "Chêne indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258880148418007, + 48.81876239677381 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12965", + "ref:FR:issy_les_mx:ordre_arbre": "242", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714684069476703, + 48.82513772928659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26758", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Gleditsia triacanthos", + "species:FR": "Févier d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269211793590862, + 48.81631113894375 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20227", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus domestica 'Sainte-Catherine'", + "species:FR": "Prunier 'Sainte-Catherine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261564515613633, + 48.827171822824894 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30707", + "ref:FR:issy_les_mx:ordre_arbre": "23c", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592889446996463, + 48.8178008153045 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29483", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25810361369573, + 48.81787748892911 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12323", + "ref:FR:issy_les_mx:ordre_arbre": "77", + "species": "Ulmus minor sp.", + "species:FR": "Orme champêtre indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267973366995485, + 48.816334634067644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20670", + "ref:FR:issy_les_mx:ordre_arbre": "60", + "species": "Prunus cerasus 'Bigarreau Summit'", + "species:FR": "Cerisier 'Bigarreau Summit'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2686009335882287, + 48.81683228670709 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20323", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.262341314921292, + 48.82828916420074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10652", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Cercis siliquastrum", + "species:FR": "Arbre de Judée" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826162645977233, + 48.828861771679136 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10529", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Aesculus x carnea", + "species:FR": "Marronnier rouge" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2616245495730403, + 48.815242059150286 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15772", + "ref:FR:issy_les_mx:ordre_arbre": "125", + "species": "Prunus avium 'Plena'", + "species:FR": "Meurisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2629022853593432, + 48.8147881858994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14838", + "ref:FR:issy_les_mx:ordre_arbre": "352", + "species": "Quercus ilex", + "species:FR": "Chêne vert" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261695505159559, + 48.815130784306135 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27653", + "ref:FR:issy_les_mx:ordre_arbre": "634", + "species": "Prunus serrula", + "species:FR": "Cerisier du Tibet" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2539258953415726, + 48.817437586576105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11330", + "ref:FR:issy_les_mx:ordre_arbre": "61", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2678797254050935, + 48.82030007223843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12919", + "ref:FR:issy_les_mx:ordre_arbre": "198", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2609479244675628, + 48.816326218967134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28395", + "ref:FR:issy_les_mx:ordre_arbre": "538", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276025989536477, + 48.822714145928586 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11462", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer pseudoplatanus 'Atropurpureum'", + "species:FR": "Erable sycomore 'Atropurpureum'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269127641111367, + 48.820822732511864 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16451", + "ref:FR:issy_les_mx:ordre_arbre": "94", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2701877251961213, + 48.81485450035138 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11493", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269171833690283, + 48.81709051127607 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20326", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Quercus coccinea", + "species:FR": "Chêne écarlate" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2526598402233575, + 48.82151925998141 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9858", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2641244717291724, + 48.81961274379218 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11996", + "ref:FR:issy_les_mx:ordre_arbre": "325", + "species": "Abies concolor", + "species:FR": "Sapin du Colorado" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2826255601669514, + 48.829486479070596 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12862", + "ref:FR:issy_les_mx:ordre_arbre": "47", + "species": "Acer negundo", + "species:FR": "Erable negundo" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.263923742577908, + 48.82081187932057 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14366", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Robinia pseudoacacia", + "species:FR": "Robinier faux acacia" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269067103205975, + 48.820131922222956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27552", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Zelkova sp.", + "species:FR": "Zelkova indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276868250563769, + 48.829005806996996 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13202", + "ref:FR:issy_les_mx:ordre_arbre": "108", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2654679920764504, + 48.82941925668173 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10927", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Quercus rubra", + "species:FR": "Chêne rouge d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2687811629021795, + 48.82252505072374 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14624", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2607725140410335, + 48.81945331887133 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11691", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Quercus robur 'Fastigiata'", + "species:FR": "Chêne pédonculé fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277855234654003, + 48.82209426770644 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11456", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251745981093494, + 48.819449249790715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13430", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Betula pendula", + "species:FR": "Bouleau commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.276648770545071, + 48.82787142247743 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11291", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593555818223607, + 48.81887275440965 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13708", + "ref:FR:issy_les_mx:ordre_arbre": "493", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2772086429085037, + 48.82876570297729 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12846", + "ref:FR:issy_les_mx:ordre_arbre": "99", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259430088186994, + 48.81658654937167 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29932", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pinus nigra", + "species:FR": "Pin noir d'Autriche" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645950181750534, + 48.819951080684675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13986", + "ref:FR:issy_les_mx:ordre_arbre": "427", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258706033863668, + 48.81887737924991 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13450", + "ref:FR:issy_les_mx:ordre_arbre": "658", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2670768752951744, + 48.82045482912259 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28299", + "ref:FR:issy_les_mx:ordre_arbre": "550", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2756316852339022, + 48.82299290920417 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9700", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Liquidambar styraciflua", + "species:FR": "Copalme d'Amérique" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2543866149436833, + 48.82259530050821 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10248", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2521050979028643, + 48.82179155769072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11636", + "ref:FR:issy_les_mx:ordre_arbre": "37", + "species": "Carpinus betulus", + "species:FR": "Charme commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604756467995393, + 48.82555647269134 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17240", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Pinus sylvestris", + "species:FR": "Pin sylvestre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266227981862147, + 48.82018250082005 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27913", + "ref:FR:issy_les_mx:ordre_arbre": "382b", + "species": "Liriodendron tulipifera", + "species:FR": "Tulipier de Virginie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273395705138072, + 48.82623379265012 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_7912", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Prunus serrulata", + "species:FR": "Cerisier du Japon" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2626651229980252, + 48.81476071154566 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15782", + "ref:FR:issy_les_mx:ordre_arbre": "67", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2699601943957117, + 48.82628059941074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30607", + "ref:FR:issy_les_mx:ordre_arbre": "29", + "species": "Lagerstroemia indica", + "species:FR": "Lilas des Indes" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267905175896254, + 48.820381778120364 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12020", + "ref:FR:issy_les_mx:ordre_arbre": "209", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274801154299219, + 48.821903994458424 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10116", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2531730050342147, + 48.82089910690083 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26740", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer x freemanii 'Autumn Blaze'", + "species:FR": "Erable de freeman 'Autumn Blaze'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266274066591788, + 48.82925018582428 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10630", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Malus 'Evereste Saphir'", + "species:FR": "Pommier d'ornement 'Evereste Saphir'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.268981693879143, + 48.8165586373711 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20385", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2565131563778715, + 48.822448288607916 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10979", + "ref:FR:issy_les_mx:ordre_arbre": "33", + "species": "Quercus castaneifolia", + "species:FR": "Chêne à feuilles de châtaignier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26900148666783, + 48.81706668071156 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20675", + "ref:FR:issy_les_mx:ordre_arbre": "28", + "species": "Prunus sp.", + "species:FR": "Cerisier ou prunier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2611508547351935, + 48.82806615092329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27947", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Ulmus resista 'Sapporo Autumn Gold'", + "species:FR": "Orme résistant 'Sapporo Autumn Gold'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2664395438389864, + 48.81578579496799 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27795", + "ref:FR:issy_les_mx:ordre_arbre": "2", + "species": "Amelanchier sp.", + "species:FR": "Amélanchier indeterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2748623999466395, + 48.82194034501619 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10115", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.275015257899834, + 48.822119281943756 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10917", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273202347146432, + 48.8187132933639 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11585", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2619798323612352, + 48.81909859935196 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_26140", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259121660072033, + 48.81727365949645 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27072", + "ref:FR:issy_les_mx:ordre_arbre": "19", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675681196671618, + 48.817214957302006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20214", + "ref:FR:issy_les_mx:ordre_arbre": "55", + "species": "Pyrus communis 'Bergamote Esperen'", + "species:FR": "Poirier 'Bergamote Esperen'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2793923450797884, + 48.82163048166824 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15216", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus domestica 'Reine des Reinettes'", + "species:FR": "Pommier 'Reine des Reinettes'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2606152111762348, + 48.817212905545205 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28572", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer campestre 'Elsrijk'", + "species:FR": "Erable champêtre fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246700851675734, + 48.822496440236854 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_8353", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Malus toringo 'Brouwers Beauty'", + "species:FR": "Pommier d'ornement 'Brouwers Beauty'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277674724342081, + 48.82215407859861 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9867", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2834171241980203, + 48.82742190132143 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28733", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Carpinus betulus 'Frans Fontaine'", + "species:FR": "Charme commun 'Frans Fontaine'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2690366542830107, + 48.81619793742754 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20568", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus domestica 'Reine-Claude Hâtive'", + "species:FR": "Prunier 'Reine-Claude Hâtive'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2604608811202738, + 48.81536133656776 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14804", + "ref:FR:issy_les_mx:ordre_arbre": "470", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2617933818400506, + 48.82289047551956 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11346", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Acer rubrum 'October Glory'", + "species:FR": "Erable rouge 'October Glory'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279605044517921, + 48.82560111822895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11793", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Prunus subhirtella 'Autumnalis Rosea'", + "species:FR": "Cerisier à fleur d'automne rose" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2447362876155137, + 48.82211113924261 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9772", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Fraxinus pensylvanica 'Cimmaron'", + "species:FR": "Frêne rouge de Pennsylvanie" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266392156565443, + 48.81688851445128 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29432", + "ref:FR:issy_les_mx:ordre_arbre": "2b", + "species": "Liquidambar styraciflua 'Slender silhouette'", + "species:FR": "Copalme d'Amérique 'Slender silhouette'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251202697139819, + 48.81960290981332 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11518", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Acer platanoides 'Crimson King'", + "species:FR": "Erable plane pourpre 'Crimson King'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2473165406407656, + 48.8226410694785 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9799", + "ref:FR:issy_les_mx:ordre_arbre": "4", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26175655205824, + 48.82229237880081 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9503", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Carpinus betulus 'Fastigiata'", + "species:FR": "Charme commun fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2674943637116547, + 48.81657036788932 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20397", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Prunus cerasus 'Bigarreau Napoléon'", + "species:FR": "Cerisier 'Bigarreau Napoléon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2473249882868465, + 48.822716974143475 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9797", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Cedrus atlantica 'Fastigiata'", + "species:FR": "Cèdre de l'Atlas fastigié" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.260744774410805, + 48.8155211357084 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14801", + "ref:FR:issy_les_mx:ordre_arbre": "466", + "species": "Pyrus calleryana 'Chanticleer'", + "species:FR": "Poirier à fleurs 'Chanticleer'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.24711400996996, + 48.82266726555869 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9798", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Prunus 'Pandora'", + "species:FR": "Cerisier à fleurs 'Pandora'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714879739153737, + 48.82741208029555 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11034", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer x zoeschense 'Annae'", + "species:FR": "Erable zoeschense 'Annaea'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2785512982657212, + 48.82175896873698 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13281", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2625093180072886, + 48.81488265359121 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15784", + "ref:FR:issy_les_mx:ordre_arbre": "69", + "species": "Sophora japonica 'Regent'", + "species:FR": "Sophora du Japon 'Regent'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253236440149118, + 48.822386206700294 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30846", + "ref:FR:issy_les_mx:ordre_arbre": "18", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253319670527787, + 48.82241242753974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30847", + "ref:FR:issy_les_mx:ordre_arbre": "17", + "species": "Parrotia persica 'Vanessa'", + "species:FR": "Parrotie de Perse 'Vanessa'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538138972685995, + 48.822540206734324 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30854", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2538004086065135, + 48.82247487663837 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22260", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253737009936189, + 48.82245459718997 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14811", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Betula papyrifera", + "species:FR": "Bouleau à papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253313018055534, + 48.82236310597152 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30859", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244872282246043, + 48.820938633728524 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15747", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253419651977836, + 48.82259206751788 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30876", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2534409572201635, + 48.82261421214843 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30875", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Amelanchier lamarckii", + "species:FR": "Amélanchier de Lamarck" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2536068745865108, + 48.82266700533183 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30877", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Morus kagayamae", + "species:FR": "Mûrier platane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.253051456649532, + 48.82027487455977 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30879", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Acer davidii", + "species:FR": "Erable du Père David" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2529095077584382, + 48.82026006658974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30881", + "ref:FR:issy_les_mx:ordre_arbre": "5", + "species": "Acer rubrum 'Autumn Flame'", + "species:FR": "Erable rouge 'Autumn Flame'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2450197444571987, + 48.8209995913342 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30890", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Acer x freemanii", + "species:FR": "Erable de freeman" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244932161992378, + 48.8211249207219 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30891", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Acer griseum", + "species:FR": "Erable à écorce de papier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.244994204711183, + 48.82127258816102 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30894", + "ref:FR:issy_les_mx:ordre_arbre": "17" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2667278157639594, + 48.820268192503384 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12126", + "ref:FR:issy_les_mx:ordre_arbre": "48", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2595953623905074, + 48.81872833616438 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13183", + "ref:FR:issy_les_mx:ordre_arbre": "274", + "species": "Acer campestre", + "species:FR": "Erable champêtre" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279357631820377, + 48.82303731550085 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14620", + "ref:FR:issy_les_mx:ordre_arbre": "89", + "species": "Acer pseudoplatanus", + "species:FR": "Erable sycomore" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.250196398747835, + 48.82322243444064 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_9537", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Tilia cordata", + "species:FR": "Tilleul à petites feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.266463873148257, + 48.814097885767154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12719", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2645636867871035, + 48.822719415071774 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12650", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631376757672257, + 48.814905670620284 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15797", + "ref:FR:issy_les_mx:ordre_arbre": "172", + "species": "Taxus baccata", + "species:FR": "If commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2714600238394667, + 48.81569965802577 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10268", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2537834329746356, + 48.81721059698792 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22357", + "ref:FR:issy_les_mx:ordre_arbre": "105", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2608892553929913, + 48.82372344425097 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_30624", + "ref:FR:issy_les_mx:ordre_arbre": "15a", + "species": "Magnolia grandiflora", + "species:FR": "Magnolia à grandes fleurs" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261476261002762, + 48.82688529698356 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28085", + "ref:FR:issy_les_mx:ordre_arbre": "21", + "species": "Malus sp.", + "species:FR": "Pommier indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.255219303217065, + 48.823018592895004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10125", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Alnus incana", + "species:FR": "Aulne blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.25896657008943, + 48.8184623042784 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14447", + "ref:FR:issy_les_mx:ordre_arbre": "543", + "species": "Quercus petraea", + "species:FR": "Chêne sessile" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269073854232131, + 48.818076599535715 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20439", + "ref:FR:issy_les_mx:ordre_arbre": "72", + "species": "Malus domestica 'Pomme de Jeu'", + "species:FR": "Pommier 'Pomme de Jeu'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267312663026863, + 48.82042290589565 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13673", + "ref:FR:issy_les_mx:ordre_arbre": "42", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.277529349585588, + 48.82938544867668 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14313", + "ref:FR:issy_les_mx:ordre_arbre": "35", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2679602185031706, + 48.82059273603632 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13550", + "ref:FR:issy_les_mx:ordre_arbre": "31", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2676488915396367, + 48.816981144640046 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20398", + "ref:FR:issy_les_mx:ordre_arbre": "36", + "species": "Prunus cerasus 'Anglaise Hative'", + "species:FR": "Cerisier 'Anglaise Hative'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.279441074010827, + 48.82295543517867 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13812", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.278160954778747, + 48.822688592080574 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14415", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Thuja plicata", + "species:FR": "Thuya géant" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2544848597287164, + 48.81769734400882 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13150", + "ref:FR:issy_les_mx:ordre_arbre": "231", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2484268649183217, + 48.820386529503004 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11372", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261928795183092, + 48.8148789849898 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_15936", + "ref:FR:issy_les_mx:ordre_arbre": "373", + "species": "Ostrya carpinifolia", + "species:FR": "Ostrier" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261303268342936, + 48.82284914881608 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29879", + "ref:FR:issy_les_mx:ordre_arbre": "4a", + "species": "Acer saccharinum", + "species:FR": "Erable argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2639978607802957, + 48.81958834084505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16512", + "ref:FR:issy_les_mx:ordre_arbre": "331", + "species": "Aesculus hippocastanum", + "species:FR": "Marronnier d'Inde" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2712664187922686, + 48.82641994131419 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10970", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Sorbus aria", + "species:FR": "Alisier blanc" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.251028716838009, + 48.8199536824329 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10084", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Acer platanoides", + "species:FR": "Erable plane" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.26663941629993, + 48.83211163201423 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11724", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Malus tschonoskii", + "species:FR": "Pommier d'ornement pyramidal" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2774150457833318, + 48.829526527483104 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12037", + "ref:FR:issy_les_mx:ordre_arbre": "27", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2440710711455982, + 48.820921974742326 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10580", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Fraxinus excelsior", + "species:FR": "Frêne commun" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.265668848932488, + 48.823768979811895 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27569", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Liquidambar styraciflua 'Worplesdon'", + "species:FR": "Copalme d'Amérique 'Worplesdon'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.246390401708129, + 48.81975590727357 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_12469", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Tilia platyphyllos", + "species:FR": "Tilleul à grandes feuilles" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.271687484603957, + 48.822449249247704 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14308", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Tilia tomentosa", + "species:FR": "Tilleul argenté" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2610389838212037, + 48.8287868103397 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_28984", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Liquidambar sp.", + "species:FR": "Copalme indéterminé" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272235933961504, + 48.818529213095154 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11282", + "ref:FR:issy_les_mx:ordre_arbre": "16", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259209723040462, + 48.81854463251994 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14280", + "ref:FR:issy_les_mx:ordre_arbre": "585", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2592358885295694, + 48.81741988867426 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27078", + "ref:FR:issy_les_mx:ordre_arbre": "25", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259316749639784, + 48.817614118136625 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29464", + "ref:FR:issy_les_mx:ordre_arbre": "32", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2734792685055383, + 48.81886614509863 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11296", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588929686607666, + 48.81879791394125 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_14439", + "ref:FR:issy_les_mx:ordre_arbre": "624", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2724390785419084, + 48.81850620794655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10746", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259223787664097, + 48.81739930760747 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27077", + "ref:FR:issy_les_mx:ordre_arbre": "24", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2588546000611633, + 48.81890594695602 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13391", + "ref:FR:issy_les_mx:ordre_arbre": "673", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.274185088904082, + 48.819162595811655 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_22225", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2663993794160504, + 48.817828152976986 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_19955", + "ref:FR:issy_les_mx:ordre_arbre": "6", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261142263746028, + 48.81888528432105 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11540", + "ref:FR:issy_les_mx:ordre_arbre": "11", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2631064335233275, + 48.81938545751445 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11549", + "ref:FR:issy_les_mx:ordre_arbre": "1", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2593932298219883, + 48.81859222234187 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13995", + "ref:FR:issy_les_mx:ordre_arbre": "443", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2589041074627985, + 48.81894718688675 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13452", + "ref:FR:issy_les_mx:ordre_arbre": "675", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.272530961437974, + 48.81853323893659 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10720", + "ref:FR:issy_les_mx:ordre_arbre": "13", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.27058954516169, + 48.817372625365074 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27091", + "ref:FR:issy_les_mx:ordre_arbre": "20", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259953685168065, + 48.8162214184027 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16063", + "ref:FR:issy_les_mx:ordre_arbre": "503", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273290593616893, + 48.818815500228006 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11297", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258671942666624, + 48.8186870381687 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_17022", + "ref:FR:issy_les_mx:ordre_arbre": "196", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.261477398920346, + 48.818975176461386 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11538", + "ref:FR:issy_les_mx:ordre_arbre": "9", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2736605669136707, + 48.81893148937072 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10908", + "ref:FR:issy_les_mx:ordre_arbre": "7", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.258856463709826, + 48.818890490849505 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_13390", + "ref:FR:issy_les_mx:ordre_arbre": "672", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2650800340079638, + 48.81712562573902 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_29893", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2590049530484184, + 48.817186864415355 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27068", + "ref:FR:issy_les_mx:ordre_arbre": "15", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.273964641082097, + 48.81906362302093 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10424", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259196743992353, + 48.81733771173142 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27075", + "ref:FR:issy_les_mx:ordre_arbre": "22", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.259210197091789, + 48.817368554214 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_27076", + "ref:FR:issy_les_mx:ordre_arbre": "23", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2628426953954284, + 48.81931661985765 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_16158", + "ref:FR:issy_les_mx:ordre_arbre": "3", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2726635480274204, + 48.818570364071974 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_10628", + "ref:FR:issy_les_mx:ordre_arbre": "12", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2731784252794656, + 48.81878396195506 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_11298", + "ref:FR:issy_les_mx:ordre_arbre": "10", + "species": "Corylus colurna", + "species:FR": "Noisetier de Byzance" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.269879106105747, + 48.81708443396249 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20466", + "ref:FR:issy_les_mx:ordre_arbre": "44", + "species": "Prunus domestica 'Quetsche d'Alsace'", + "species:FR": "Prunier 'Quetsche d'Alsace'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.2675279402392965, + 48.81696961250421 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20246", + "ref:FR:issy_les_mx:ordre_arbre": "14", + "species": "Prunus cerasus 'Montmorency'", + "species:FR": "Cerisier acide 'Montmorency'" + } + }, + { + "type": "Feature", + "geometry": { + "coordinates": [ + 2.267231163459336, + 48.81710209605523 + ], + "type": "Point" + }, + "properties": { + "natural": "tree", + "ref:FR:issy_les_mx:id_arbre": "92040_20253", + "ref:FR:issy_les_mx:ordre_arbre": "8", + "species": "Prunus cerasus 'Montmorency'", + "species:FR": "Cerisier acide 'Montmorency'" + } + } + ] +} \ No newline at end of file diff --git a/output/___mappingIRVE.geojson b/output/___mappingIRVE.geojson new file mode 100644 index 0000000..e31be8c --- /dev/null +++ b/output/___mappingIRVE.geojson @@ -0,0 +1,645607 @@ +{ + "type": "FeatureCollection", + "generator": "JOSM", + "bbox": [ + 1.20206950000, + 49.97023320000, + 1.20944020000, + 49.97242930000 + ], + "features": [ + { + "type": "Feature", + "properties": { + "description": "HENIN BEAUMONT - Parking de le Gare SNCF ", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2021-10-13", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH21E62427002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95000000000, + 50.41700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-27", + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Loireauxence - Deux Provinces", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS44P44213B", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02821500000, + 47.46865500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref": "518444", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63426A", + "description": "SIEG63 - ePremium - Tauves - Aurlandeix;SIEG 63/FR*S63*P63426*A", + "start_date": "2023-05-04", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62393400000, + 45.56010800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH03E59153001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CONDÉ-SUR-L'ESCAUT - Place Verte ", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59119600000, + 50.44939000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FRONTIGNAN - Avenue des Jardiniers - Parking ancienne Caserne", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34108001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75698055556, + 43.45081670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-14;2022-06-16;2022-06-23", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94038004", + "network": "SIPPEREC", + "description": "L'HAY LES ROSES - Avenue Henri Barbusse", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32687280000, + 48.77695470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-03-20", + "ref:EU:EVSE": "FRLMSP90198991", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Maurepas", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92196800000, + 48.76104900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "81f59ef6-f11a-550b-b6c3-06fc2747525d", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Cenac | Route de St Martial D46" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20397500000, + 44.79859500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE45411;FRSIGPSIGE45412", + "opening_hours": "24/7", + "description": "SIGEIF - 45 RUE DE SAINT-CLOUD - VILLE-DAVRAY", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*454*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19217770000, + 48.82868680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "Allego Carrefour Vernon", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Vernon", + "ref:EU:EVSE": "FRALLEGO9990112;FRALLEGO9990111;FRALLEGO9990091;FRALLEGO9004381;FRALLEGO9004382;FRALLEGO9990092", + "start_date": "2024-05-27", + "ref": "FRALLEGO9990112;FRALLEGO9990111;FRALLEGO9990091;FRALLEGO9004381;FRALLEGO9004382;FRALLEGO9990092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47178300000, + 49.09016000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR2485EVCP02;LFR2485EVCP01;LFR2485EVCP03", + "description": "LE GRAU DU ROI", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR2485EVCP02;LFR2485EVCP01;LFR2485EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13853800000, + 43.54081900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "f5932531-3343-5362-b629-40fa59a5c85e", + "operator": "202__TE64", + "description": "MOBIVE | Cambo | Place Sorhainde", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40039700000, + 43.36076400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AIZENAY - Espace Villeneuve", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85003002", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-06-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61386000000, + 46.74352000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2024-01-10", + "operator": "Allego", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000186", + "charging_station:output": "300 kW;22 kW", + "description": "PATRIMONIA CHOLET", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83903000000, + 47.07611000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LA TALAUDIERE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4094EVCP01", + "ref:EU:EVSE": "LFR4094EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43919000000, + 45.48271800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "description": "KFC - Arles", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PKFCARL", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-07-01;2023-06-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63242960000, + 43.66611270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLMYDZA6WOH", + "ref": "LMYDZA6WOH", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Le Poët, Place de la Bascule" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89593426000, + 44.29475516000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "psasupport@evbox.com", + "network": "EVBOX", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-12-02", + "owner:ref:FR:SIREN": "752933184", + "opening_hours": "24/7", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVBEMVTUEDQDQTRYSNM6KDSEQSFTK4", + "description": "LP Automobile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34888548864, + 48.38603775039 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-16;2023-06-13", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Auchan Hypermarché - Les Hunaudières", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PDSJRAD", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24060396343, + 47.94399113457 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2024-09-27", + "opening_hours": "24/7", + "description": "Carrefour Market - Le Mesnil-Esnard", + "ref:EU:EVSE": "FRDRVPCRFMKT762401", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15132000000, + 49.40693100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "ref:EU:EVSE": "FRESEPS42218BG", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEPS42218BG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SEMOB Desjoyaux", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39273200000, + 45.44614800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;7 kW;7.36 kW", + "operator:email": "sav@izivia.com", + "start_date": "2021-02-10;2021-02-09", + "description": "CNPE FLAMANVILLE - HDF - RA", + "ref": "FR*SOD*S*IZIG*75*3*_*_;FR*SOD*S*IZIG*75*20*_*_;FR*SOD*S*IZIG*75*16*_*_;FR*SOD*S*IZIG*75*11*_*_;FR*SOD*S*IZIG*75*1*_*_;FR*SOD*S*IZIG*75*10*_*_;FR*SOD*S*IZIG*75*12*_*_;FR*SOD*S*IZIG*75*13*_*_;FR*SOD*S*IZIG*75*14*_*_;FR*SOD*S*IZIG*75*15*_*_;FR*SOD*S*IZIG*75*17*_*_;FR*SOD*S*IZIG*75*18*_*_;FR*SOD*S*IZIG*75*19*_*_;FR*SOD*S*IZIG*75*2*_*_;FR*SOD*S*IZIG*75*4*_*_;FR*SOD*S*IZIG*75*5*_*_;FR*SOD*S*IZIG*75*6*_*_;FR*SOD*S*IZIG*75*7*_*_;FR*SOD*S*IZIG*75*8*_*_;FR*SOD*S*IZIG*75*9*_*_", + "ref:EU:EVSE": "FROTHPIZIG7591;FROTHPIZIG7581;FROTHPIZIG7551;FROTHPIZIG75181;FROTHPIZIG75171;FROTHPIZIG75161;FROTHPIZIG75151;FROTHPIZIG75101;FROTHPIZIG7511;FROTHPIZIG75111;FROTHPIZIG75121;FROTHPIZIG75131;FROTHPIZIG75141;FROTHPIZIG75191;FROTHPIZIG75201;FROTHPIZIG7521;FROTHPIZIG7531;FROTHPIZIG7541;FROTHPIZIG7561;FROTHPIZIG7571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87755786508, + 49.53566382429 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6896655;FRCPIE6896595;FRCPIE6896615", + "network": "KB 0200 GLOS STATION 10", + "amenity": "charging_station", + "description": "KB 0200 GLOS STATION 10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-03-06", + "ref": "FRCPIE6896655;FRCPIE6896595;FRCPIE6896615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28263200000, + 49.14548200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8555802743926973979", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/CPPOLYGCLA", + "opening_hours": "24/7", + "ref": "368803", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62029800000, + 44.85705000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "300 kW;72 kW", + "ref:EU:EVSE": "FRVIAP104104", + "start_date": "2024-01-26;2023-12-19", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A50 Baie de la Ciotat", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "50 kW;300 kW;72 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67108100000, + 43.19389100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/C1GNC8FCNX", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4932397998394237240", + "charging_station:output": "22 kW", + "ref": "477609", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60349400000, + 50.56336700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volkswagen - Vannes", + "start_date": "2023-07-12", + "ref:EU:EVSE": "FRSSDPDMD564501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69627500000, + 47.64558800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6919974013417900773", + "network": "Freshmile France", + "description": "Freshmile France/TQFRQ15WCK", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "491928", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40254600000, + 43.50792900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VIERZON - Pkg. Gaucherie", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS18E109669", + "network": "MODULO - VIERZON - Pkg. Gaucherie", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E109669" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06496170000, + 47.22265878000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P505259121780776202", + "ref": "461658", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/BJLVQM5TAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41778100000, + 49.16581000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128018", + "ref:EU:EVSE": "FRWA9P7414157482496446333", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LYQSNLSYK", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01857000000, + 50.41240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50220001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2016-11-02", + "description": "DUCEY LES CHERIS - Place des Plats d'Etain", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29114090000, + 48.61985760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-01-24", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8119200122;FRS81E8119200111;FRS81E8119200112;FRS81E8119200121", + "owner:ref:FR:SIREN": "258100072", + "description": "MURAT/VEBRE - Avenue Du Languedoc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85974005276, + 43.68309010721 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2023-01-20", + "socket:type2_combo:output": "175 kW", + "ref:EU:EVSE": "FRHPCPNF059903", + "amenity": "charging_station", + "ref": "FRHPCPNF059903", + "owner:ref:FR:SIREN": "531681149;531681148;531681150;531681151", + "capacity": "4", + "description": "REL. BIDART OUEST", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59840500000, + 43.42295800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "BEAUPREAU - Rue de la Garenne;OuestCharge - Diva Sp - Beaupreau - Garenne", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E0490046;FRS49P49023B;FRS49E49023002", + "start_date": "2024-04-17;2024-04-29;2021-04-22", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99246200000, + 47.20283600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS59E59136001", + "network": "pass pass électrique", + "charging_station:output": "25 kW;22 kW", + "start_date": "2024-04-05", + "description": "LE CATEAU-CAMBRESIS - Place du 3 Septembre 1944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54395100000, + 50.10632100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRAS - Rue Albert 1er de Belgique", + "ref:EU:EVSE": "FRH06E62041005", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77458400000, + 50.29198100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30006001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Reveo", + "description": "AIMARGUES - Avenue Des Anciens Combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20820200000, + 43.68318800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "description": "Mobilité électrique 56/CHQQTM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PCHQQTM", + "network": "Mobilité électrique 56", + "ref": "134758" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34054000000, + 48.09950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2023-02-23", + "capacity": "1", + "description": "CHAUNAY-1-2;CHAUNAY-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B157", + "ref:EU:EVSE": "FRLMSE12346052662;FRLMSE12346052661;FRLMSE12346052651;FRLMSE12346052652", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16326300000, + 46.20655200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-23", + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Neuilly-Plaisance - République", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP93049A", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376000, + 48.86155006000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "network": "AlterBase", + "description": "Réseau AlterBase - St Maixent l'Ecole - Les Halles", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB79270P0024A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20264200000, + 46.41212700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "operator:email": "operations.france@atlante.energy", + "ref": "1188799", + "capacity": "3", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00982", + "ref:EU:EVSE": "FRATLP4551932134851776843", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13541300000, + 43.39573300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Epinal - ZA de Reffye 1", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89397435", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43286400000, + 48.18106100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "owner:ref:FR:SIREN": "330187931", + "charging_station:output": "22 kW", + "network": "Ligue Occitanie Basketball", + "operator:email": "maximilien.kauffmann@wallbox.com", + "description": "Ligue Occitanie Basketball", + "ref:EU:EVSE": "FRMAPP000000006777", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48088449292, + 43.61371705391 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-08-20", + "network": "MODULO - VITTEL - Rue Robert de Flers", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - VITTEL - Rue Robert de Flers", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E145773;FRS88E145771", + "ref": "FRS88E145773;FRS88E145771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94496900000, + 48.20249800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9006542;FRALLEGO9006541;FRALLEGO9005882;FRALLEGO9005881;FRALLEGO9004733;FRALLEGO9000672;FRALLEGO9000671;FRALLEGO9001411;FRALLEGO9001412;FRALLEGO9004731;FRALLEGO9004732;FRALLEGO9005931;FRALLEGO9005932", + "capacity": "13", + "amenity": "charging_station", + "start_date": "2024-03-21", + "charging_station:output": "0 kW", + "network": "Allego Carrefour Evreux", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego Carrefour Evreux", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9006542;FRALLEGO9006541;FRALLEGO9005882;FRALLEGO9005881;FRALLEGO9004733;FRALLEGO9001412;FRALLEGO9000672;FRALLEGO9000671;FRALLEGO9001411;FRALLEGO9004731;FRALLEGO9004732;FRALLEGO9005931;FRALLEGO9005932" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17445643000, + 49.01502268000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3552EVCP01;LFR3552EVCP02;LFR3552EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "JOIGNY Isle", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3552EVCP01;LFR3552EVCP02;LFR3552EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38119000000, + 47.97936700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PUEYLQLJOZZ", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-11E, Traverse des Migauds", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50964000000, + 43.30106000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPX0NHNPY2ZZ", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Saint-Pierre-En-Faucigny, Place des Arcades;Réseau eborn/X0NHNPY2ZZ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "X0NHNPY2ZZ;30536" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37506000000, + 46.05770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P309406016603792805", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLNOAFDISGHSA5", + "operator": "Freshmile | FR*FR1", + "ref": "971915" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70484600000, + 46.71606900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "start_date": "2023-09-13", + "ref:EU:EVSE": "FRPD1PIBSRDN", + "description": "Ibis Budget - Redon", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06436109074, + 47.67417449103 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "347012;ZSP1FHHFPM", + "ref:EU:EVSE": "FREBNP3909443396393844908;FREBNPZSP1FHHFPM", + "description": "Réseau eborn/ZSP1FHHFPM;Chambéry, Avenue des Follaz, Fontanettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90476600000, + 45.57837100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP34336A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP34336A", + "start_date": "2024-02-07", + "description": "e-Totem - The Originals City Béziers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28795900000, + 43.33028300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "HYPER U - LES HERBIERS", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR23481;FROTHPOTHR23471;FROTHPOTHR23461;FROTHPOTHR23451;FROTHPOTHR23431;FROTHPOTHR23421;FROTHPOTHR23411;FROTHPOTHR23441", + "ref": "FR*SOD*S*OTHR*234*8*_*_;FR*SOD*S*OTHR*234*6*_*_;FR*SOD*S*OTHR*234*4*_*_;FR*SOD*S*OTHR*234*3*_*_;FR*SOD*S*OTHR*234*2*_*_;FR*SOD*S*OTHR*234*1*_*_;FR*SOD*S*OTHR*234*5*_*_;FR*SOD*S*OTHR*234*7*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02671400000, + 46.87413000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6596825", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED ST-ETIENNE 1", + "ref": "FRCPIE6596825", + "charging_station:output": "22 kW", + "description": "CGED ST-ETIENNE 1", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40152500000, + 45.45920400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "477618", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6680291003398339932", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CJWNPZGMIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06400800000, + 44.85983900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLZ1BXASBN", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA1P5929828947001058782", + "ref": "781632", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73580000000, + 43.42474900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "694247", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/KPINYLE999", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3638748000654709784" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35587100000, + 48.35348300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALFEN 2x22 Plan B", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000133495", + "start_date": "2023-09-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000133495", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86705200000, + 45.91725700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "626129", + "charging_station:output": "22 kW", + "description": "Freshmile France/JYQST9D00N", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3748229538191459113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83278300000, + 45.13686800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPLOC316201", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "start_date": "2023-08-30", + "charging_station:output": "22.08 kW", + "description": "Loc+ - Toulouse Nord", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35724600000, + 43.77694400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E171616", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E171616", + "network": "MODULO - LA SAUCELLE - Pl. de l'église", + "description": "MODULO - LA SAUCELLE - Pl. de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02924500000, + 48.62959300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ramsaygds.fr", + "owner:ref:FR:SIREN": "419992706", + "start_date": "2022-07-01", + "ref": "SDFRRAMSAYVIC", + "capacity": "2", + "amenity": "charging_station", + "network": "Clinique de la victoire", + "opening_hours": "Mo-Fr 07:00-20:00,Sa 09:00-18:00,Su 10:30-17:30", + "description": "Clinique de la Victoire", + "ref:EU:EVSE": "Non concerné", + "operator": "Ramsay Pole Lille métropole", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15722900000, + 50.71648700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/MMCTUADDCP", + "operator:email": "roaming@freshmile.com", + "ref": "39830", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7237481947700595932" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55790400000, + 48.58952300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "ref:EU:EVSE": "FRZP1P2091166186320570678;FRZP1P1790393211306310578;FRZP1P3727785962949264724;FRZP1P5693654009263009599", + "operator": "Zephyre | FR*ZP1", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP009E6B;Zephyre/LP009E7E;Zephyre/LP009E5D;Zephyre/LP003B2C", + "opening_hours": "24/7", + "ref": "576107;675737;675728;576341", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14899100000, + 43.68497000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE541", + "description": "Kyriad_Lisieux", + "amenity": "charging_station", + "start_date": "2023-03-13", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26679800000, + 49.14589200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDE82/CGXFXH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PCGXFXH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "34009", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06601000000, + 43.97770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - SETE", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST11222;FRIZFPFAST11221;FRIZFPFAST11211;FRIZFPFAST11212;FRIZFPFAST11213;FRIZFPFAST11223", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*112*2*_*_;FR*SOD*S*FAST*112*1*_*_", + "network": "IZIVIA FAST", + "start_date": "2024-04-02", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70770670000, + 43.40976710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-05-27;2024-04-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49130001;FRS49P49130A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "ECUILLE - Rue des Écoles;OuestCharge - Diva Sp - Ecuille - Ecoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56228800000, + 47.61527000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PBEAUVVERD", + "description": "Mouv'Oise/Beauvverd", + "opening_hours": "24/7", + "ref": "48967", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08837000000, + 49.43440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*33*2*_*_;FR*SOD*S*LYON*33*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "LY904 - ANDREI SAKHAROV", + "start_date": "2020-11-24", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON3311;FRGLYPLYON3312;FRGLYPLYON3321;FRGLYPLYON3322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79765600000, + 45.78660900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROCHEFORT DU GARD - Route D'Avignon", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-25", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30217001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69589800000, + 43.97433900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-07-13", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PHWGLVR", + "description": "Plouhinec - Rue des Roseaux", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25155900000, + 47.69636600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AVIA LOCATION", + "start_date": "2023-06-19", + "opening_hours": "Mo-FR 8:00-17:00", + "amenity": "charging_station", + "operator:email": "mrichecoeur@parnasstransport.com", + "charging_station:output": "60 kW", + "network": "AVIA LOCATION", + "capacity": "20", + "operator": "AVIA LOCATION", + "socket:type2_combo:output": "60 kW", + "ref": "FRLMSE1897688", + "owner:ref:FR:SIREN": "528294812", + "ref:EU:EVSE": "FRLMSE1897688" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45000000000, + 49.01000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "operator:email": "contact@mobilygreen.fr", + "ref": "951452", + "capacity": "2", + "amenity": "charging_station", + "description": "Mobilygreen CPO/6f8b1412-7605-4385-8d69-f906ff9181dd", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P1395073439929465545", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54351000000, + 47.38090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-07-19", + "description": "SIGEIF - 20 RESIDENCE PIERRE MENDES FRANCE - LIVRY-GARGAN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE16611;FRSIGPSIGE16612", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*166*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51822700000, + 48.92395900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "50 kW;22 kW;2 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001409;FRCG0E001408;FRCG0E001407;FRCG0E001402;FRCG0E001401;FRCG0E001403;FRCG0E001404;FRCG0E001405", + "opening_hours": "24/7", + "ref": "FRCG0E001409;FRCG0E001408;FRCG0E001407;FRCG0E001402;FRCG0E001401;FRCG0E001403;FRCG0E001404;FRCG0E001405", + "socket:type2_combo:output": "50 kW;150 kW", + "start_date": "2024-03-08", + "description": "BMW Aravis Automobiles - Annecy - 7 (public)", + "operator:email": "info@chargeguru.com", + "network": "BMW Aravis Automobiles - Annecy - 7 (public)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08436600000, + 45.92422100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Hôtel Campanile Troyes Sud", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-09-28", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89834170", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10265800000, + 48.24723100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "33b6f521-a6fd-542b-b653-6ec73f9d4108", + "charging_station:output": "3.7 kW;36 kW", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Sainte Marie de Gosse | Place Salle Isidore", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23762000000, + 43.55627000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MEAUX - Place Colbert", + "start_date": "2023-08-29", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MXDA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90526300000, + 48.95011700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "network": "Carrefour Energies;Allego Carrefour Laval", + "socket:type2_combo:output": "0 kW;150 kW", + "opening_hours": "24/7", + "charging_station:output": "0 kW;150 kW;22 kW", + "ref": "FRALLEGO9003472;FRALLEGO9003471;FRALLEGO9003701;FRALLEGO9003702;FRALLEGO9005401;FRALLEGO9005402;FRALLEGO9005521;FRALLEGO9005522", + "ref:EU:EVSE": "FRALLEGO9005521;FRALLEGO9003472;FRALLPEVCARSLAVAL;FRALLEGO9003471;FRALLEGO9003701;FRALLEGO9003702;FRALLEGO9005401;FRALLEGO9005402;FRALLEGO9005522", + "description": "LAVAL;Allego Carrefour Laval", + "start_date": "2022-12-12;2022-09-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80143100000, + 48.07937800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARQUISE Ferber", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3455EVCP01", + "ref": "LFR3455EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70672300000, + 50.82323200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE CRES - Route De Nimes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34090001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93600700000, + 43.63910020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP6092212485157802175", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "492138", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/SAYQDHUGKA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94768000000, + 45.86309400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPMRYEET1ZYLS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3242620461277741573", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1002888" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17227900000, + 49.12335500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "31", + "description": "SAINT-GERMAIN-EN-LAYE - Château", + "start_date": "2023-02-20;2024-03-05;2022-02-03", + "ref:EU:EVSE": "FRP07E785510012;FRP07E78551001;FRP07E785510011;FRP07E785510013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09506000000, + 48.89759800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Toulon, Parking Stade de Bon Rencontre", + "capacity": "2", + "amenity": "charging_station", + "ref": "LLRURJLL3JIOW4", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLRURJLL3JIOW4", + "start_date": "2024-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90259083800, + 43.12726700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2024-07-31", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPPIEIB", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "description": "Pierrelaye - Ibis Budget Cergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14098800000, + 49.02266600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E76351001", + "start_date": "2023-08-08;2023-11-17", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking le Havre Hôtel de Ville - EFFIA", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10646808952, + 49.49382657455 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6629455", + "network": "CGED OLORON-STE-MARI", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED OLORON-STE-MARI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6629455", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56324500000, + 43.17860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "capacity": "12", + "operator": "Easy Charge | FR*ECH", + "socket:type2_combo:output": "90 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP6676034865416945818", + "ref": "998775", + "charging_station:output": "22 kW;90 kW", + "description": "Easy Charge/LLP9I2USP1IJQM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42356100000, + 44.46108200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1620", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Avenue Henri Martin 70", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref": "FR*V75*PPX16*20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27540000000, + 48.86460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/XBWVSQ", + "ref:EU:EVSE": "FRFR1P558918180574313557", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454470", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80403000000, + 48.68740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "B&B HOTEL HONFLEUR - la riviere Saint-Sauveur", + "start_date": "2022-12-07", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRTCBP01003", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref": "FRTCBP01003", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "812941052", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427704, + 49.41454809091 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "454449", + "ref:EU:EVSE": "FRFR1P8805256448174354342", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/MJLMPN", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95799000000, + 48.75630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPSIMAHYUNDAI594101", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-05-05", + "description": "Hyundai - Valenciennes", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51503500000, + 50.37353100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Landrevarzec-Venelle du Four À Pain", + "ref:EU:EVSE": "FRS29E2910600", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05751820000, + 48.09240680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11076001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "CASTELNAUDARY - Place De La République", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95270000000, + 43.31888890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "12eebd1d-8d7d-40f4-b805-71d8a3f28f55", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hôtel Oasis - 22 kW AC", + "owner:ref:FR:SIREN": "444789630", + "ref:EU:EVSE": "FRZP1PEAC81689;FRZP1PEAC81618", + "network": "Logis Hôtel Oasis", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28567236000, + 48.35373804000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS08E57694;FRS08E57693", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "description": "MODULO - ROCROI - Rue Noël Champagne", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS08E57694;FRS08E57693", + "network": "MODULO - ROCROI - Rue Noël Champagne", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52098800000, + 49.92451800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/WJLBKW", + "ref": "64637", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PWJLBKW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44312000000, + 49.94220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-03", + "ref": "FR*SOD*S*FAST*256*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST25613;FRIZFPFAST25612;FRIZFPFAST25611", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - LANGRES SUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33188390000, + 47.84437000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - La Chapelle-Heulin - Ripoche;LA CHAPELLE-HEULIN - Rue André Ripoche", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44P44032A;FRS44E44032001", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-17;2024-05-28;2021-04-14", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34088600000, + 47.17824200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Chatillon-la-Borde;CHATILLON-LA-BORDE - Rue De La Justice", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61XXBXBM3V6MWHM2SB", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77103A;FRS77E77103001", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-06-05;2016-02-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83501700000, + 48.52964800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "operator": "GREENSPOT", + "ref:EU:EVSE": "FRGSPP1000056008;FRGSPP1000056006;FRGSPP1000056007", + "operator:email": "compta@greenspot.fr", + "description": "THALAZUR ARCACHON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "THALAZUR ARCACHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19211273064, + 44.65208667037 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E219940;FRS37E219939", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - SAVIGNY EN VERON - Rue du Stade", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - SAVIGNY EN VERON - Rue du Stade", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219940;FRS37E219939" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14284648000, + 47.20235927000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "45f7af07-cb46-5dc5-ae80-ddeb067ece4e", + "operator": "44__CCCPH", + "description": "CCCPH - Mont-Bonvillers", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83402300000, + 49.32776300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "1", + "description": "LPA Parking Morand - N1 - Zone 2", + "network": "LPA Parking Morand - N1 - Zone 2", + "ref:EU:EVSE": "FRG10P69386AB", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P69386AB", + "start_date": "2024-06-26", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84158962000, + 45.76773989000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | SAINT LAURENT DE GOSSE - Parking Ecole", + "capacity": "2", + "amenity": "charging_station", + "ref": "0d0968e8-fa73-5dc6-bc6f-74df3b6d8d32", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26973500000, + 43.53376600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*285*1*_*_", + "operator": "IZIVIA", + "description": "SIGEIF - RUELLE DES PATISSIERS - VILLERS-LE-BEL", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2022-08-16", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE28512;FRSIGPSIGE28511", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38874800000, + 49.00607400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6499395", + "start_date": "2021-09-07", + "description": "ARTEMIS BORNE 3", + "ref": "FRCPIE6499395", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "ARTEMIS BORNE 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30853000000, + 48.86621800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521432", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P4430859196970344864", + "description": "Leclerc/VE2SNJRWXL", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143900000, + 45.83580500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Notre Dame de Sanilhac | Place de la Mairie", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "4414afc1-03f7-53c4-a22e-5cc1e48c0c6e", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72498200000, + 45.17600600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Plaine et Vallées / St Jouin de Marnes - Centre", + "ref:EU:EVSE": "FRSEOPAB24056A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2015-07-02", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05538500000, + 46.88153200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-26", + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "ref:EU:EVSE": "FRAGXP01419A", + "description": "Pays de Gex - ePremium - Thoiry - Salle des fetes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98089700000, + 46.23490800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2018EVCP02;LFR2018EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2018EVCP02;LFR2018EVCP01", + "description": "HAUBOURDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97262200000, + 50.61175300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P728806082660300218", + "ref": "414765", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/NMFVTC5INF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83399900000, + 47.88678200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ13712;FRA16PWIIZ13711", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOUGINS - PARKING SCENE 55", + "ref": "FR*SOD*S*WIIZ*137*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2022-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99792100000, + 43.58370800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "735150", + "description": "Freshmile France/JFFCKZAJSW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1647517843937547541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66379100000, + 48.93055000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-18;2024-09-26", + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRPD1PAUBPTL", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Au Bureau Pontarlier", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33906582646, + 46.90766539897 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPP4BGHJXHOT", + "ref": "48403;P4BGHJXHOT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/P4BGHJXHOT;Saint-Paul-Trois-Châteaux, Espace Gare", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76394100000, + 44.34578700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator:email": "help@electra.com", + "description": "Tain-l'Hermitage - Intermarché", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPTLHIM", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86549700000, + 45.06871200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E06128001;FRP07E061280011;FRP07E061280012", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "24", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-07-28;2024-01-17", + "description": "SAINT PAUL DE VENCE - Saint Paul" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12184127773, + 43.69971046864 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "3C CLIM TOURS", + "ref:EU:EVSE": "FRCPIE6689415", + "capacity": "2", + "description": "3C CLIM TOURS", + "amenity": "charging_station", + "start_date": "2023-02-16", + "charging_station:output": "22 kW", + "ref": "FRCPIE6689415", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70061400000, + 47.43723600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "description": "Easy Charge/LLUWSNQ3519ITX;Bourg-les-Valence, Hôtel Kyriad avenue de Lyon", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP374885367050905662;FRECHPLLUWSNQ3519ITX", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "capacity": "4;6", + "start_date": "2024-04-12", + "socket:type2_combo:output": "120 kW", + "ref": "LLUWSNQ3519ITX;1091985", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88866000000, + 44.95877400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP143023", + "description": "ENGIE Vianeo - Thaon Les Vosges - La Rotonde", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-10-30", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42673200000, + 48.24635800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3583947068247585235", + "description": "Freshmile France/BLXZFV", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "705899", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051000000, + 49.43420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Rue de Bellechasse 5", + "network": "Belib'", + "start_date": "2021-07-07", + "amenity": "charging_station", + "ref": "FR*V75*PPX07*06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0706", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32450480000, + 48.85987690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "294437", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FDDVWW", + "ref:EU:EVSE": "FRFR1PFDDVWW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00748500000, + 49.07437700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "opening_hours": "Mo 08:30-12:30, Mo 13:30-19:00, Tu 08:30-12:30, Tu 13:30-19:00, We 08:30-12:30, We 13:30-19:00, Th 08:30-12:30, Th 13:30-19:00, Fr 08:30-12:30, Fr 13:30-19:00, Sa 08:30-12:30, Sa 13:30-18:00", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2021-04-12", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "description": "James Lefebvre - Amiens", + "ref:EU:EVSE": "FRSSDPJAMESLEFEBVRE803301", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36773700000, + 49.87468700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22387001", + "description": "Le Vieux Marche-Place Angela Duval", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44931800000, + 48.60748300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E179307;FRS18E179308", + "start_date": "2023-05-11", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS18E179307;FRS18E179308", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - St FLORENT SUR CHER - La Vigonnière", + "network": "MODULO - St FLORENT SUR CHER - La Vigonnière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26596700000, + 47.00417000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DiosHotel - Toulouse Nord", + "description": "DiosHotel - Toulouse Nord", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "toulouse-nord@dioshotel.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39638407482, + 43.72058133930 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Proviridis/64887183b4e64d28ce32e1c4", + "ref:EU:EVSE": "FRPVDP9021610746305303123", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "capacity": "3", + "network": "Proviridis", + "ref": "917322", + "opening_hours": "24/7", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05278200000, + 43.62667700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2018-03-26", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8101000121;FRS81E8101000111;FRS81E8101000112;FRS81E8101000122", + "description": "AMBIALET - Rd 172", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37749321119, + 43.94470547995 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Chartres Bois Paris", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE126500", + "start_date": "2018-10-26", + "ref": "FRIONE126500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57867400000, + 48.46726100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAINT-AIGNAN-GRANDLIEU - Place Milenia;OuestCharge - Diva Sp - Saint-Aignan-Grand-Lieu - Milenia", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44150A;FRS44E44150001", + "start_date": "2022-05-04;2024-06-01;2024-06-11", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63226600000, + 47.12344100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "ORLY-SUR-MORIN - Rue De L'Hêtre;Orly-sur-Morin", + "ref": "01F5ZAKH615QZ24N94SBS0KBQ3", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77345A;FRS77E77345001", + "start_date": "2023-06-30;2016-09-02", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22953400000, + 48.90444200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH01E62765007", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SAINT-OMER - Rue Carnot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26287200000, + 50.75158300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - TOURS - Av. Marcel Dassault", + "amenity": "charging_station", + "network": "MODULO - TOURS - Av. Marcel Dassault", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E254877;FRS37E254858", + "ref": "FRS37E254877;FRS37E254858", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67760780000, + 47.36370564000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/JZDKPB", + "ref": "257176", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PJZDKPB", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76380000000, + 47.65880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON15521;FRGLYPLYON15512;FRGLYPLYON15511;FRGLYPLYON15522", + "ref": "FR*SOD*S*LYON*155*1*_*_;FR*SOD*S*LYON*155*2*_*_", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "SGL01 - PARKING DU 11 NOVEMBRE 1918", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2022-05-19", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79422600000, + 45.69245500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5948001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "FR*MEL*P59480*01", + "opening_hours": "24/7", + "description": "ILLIES - Rue de la Mairie", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83121215000, + 50.56101525000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "charging_station:output": "3.68 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPINGEOVITO202901", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-06-06", + "description": "IN-GEO Vito - Porticcio", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.82367000000, + 41.90750100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED ARRAS _", + "network": "CGED ARRAS _", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6586635", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6586635", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80801700000, + 50.30778000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446846", + "description": "Leclerc/VRAPXJYUMM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5305675999656502843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98099900000, + 44.48613300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Pineuilh | Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bf5575e2-e032-59c5-8c7d-631f0ffafc27", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22637100000, + 44.83022300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95019002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-22", + "description": "ARNOUVILLE - Rue Jean Jaurès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41752473564, + 48.99128224720 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "description": "CASINO TOURS LA RICHE", + "ref:EU:EVSE": "FRALLPCAS011", + "network": "CASINO TOURS LA RICHE", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "start_date": "2022-02-10", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65691061000, + 47.37653739000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR0505EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "ECHIROLLES", + "ref:EU:EVSE": "LFR0505EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70871500000, + 45.15755300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PMXWCZENI8P", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Saint-Esteve-Jeanson, Parking Nord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40301600000, + 43.68034700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E244007;FRS88E244009", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - GIRONCOURT SUR VRAINE - Pl. de la gare", + "ref:EU:EVSE": "FRS88E244007;FRS88E244009", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - GIRONCOURT SUR VRAINE - Pl. de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92185400000, + 48.30995800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MANDELIEU-LA NAPOULE - PARKING ROBINSON THEATRE DE VERDURE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-05-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*27*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ2712;FRA16PWIIZ2711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94519200000, + 43.53425600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "ref:EU:EVSE": "FRFR1P7756039098089608086", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "626171", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MB38BL4MQ9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47057400000, + 43.48590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PMRCMEB", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "12", + "description": "Mercure - Marcq-en-Barœul", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10981570000, + 50.67910790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDFTEM0U8ZB;FREBNDFTEM0U8ZB", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "La Roque-Esclapon, Quartier Notre Dame;Réseau eborn/DFTEM0U8ZB", + "ref": "DFTEM0U8ZB;79210", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62798500000, + 43.72332100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "1166898", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP340109097393711565", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "description": "EVzen/37FD6B71-71B6-428C-ADA5-AF1EECD0F8CE", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97735800000, + 46.78945400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-23", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*593*1*_*_;FR*SOD*S*OTHR*593*2*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR59312;FROTHPOTHR59311;FROTHPOTHR59321;FROTHPOTHR59322", + "operator:email": "sav@izivia.com", + "description": "BRICOMARCHE - MORTAGNE AU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56063600000, + 48.50875200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "79213;FU4PDVWWQ4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/FU4PDVWWQ4;Le Lavandou, Boulevard Des Acacias", + "ref:EU:EVSE": "FREBNFU4PDVWWQ4;FREBNPFU4PDVWWQ4", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42553600000, + 43.15209400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Montélimar, Rond-Point Charles Trenet;Réseau eborn/HT6OIBP1HQ", + "ref:EU:EVSE": "FREBNPHT6OIBP1HQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "230908;HT6OIBP1HQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75110700000, + 44.56166800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Tarbes Bastillac", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-08-01", + "ref:EU:EVSE": "FRVIAP121036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04315000000, + 43.22184900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "749388", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/V8YS06G7V9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5751752316773584193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.81724100000, + -17.48854800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX13*20", + "description": "Paris | Rue du Docteur Leray 10", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1320", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35429600000, + 48.82325000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Freshmile France/CRWPFJ", + "ref:EU:EVSE": "FRFR1P5612730198224571425", + "operator": "Freshmile | FR*FR1", + "ref": "346388" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95608000000, + 45.05240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-31;2022-04-04", + "description": "Les Charmettes (Camping Siblu) - Les Mathes", + "network": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW;24 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSIBLU175701", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16236700000, + 45.71678200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-07-26", + "capacity": "2", + "description": "900046", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PGIVERNYTOURISTIQUE1", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53010287000, + 49.07475620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Calorguen-Parking de la Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22026001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02880000000, + 48.40900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78620002", + "description": "TOUSSUS-LE-NOBLE - City Stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-05-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11714000000, + 48.74710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE146", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-12-03", + "description": "Bricomarche", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83174900000, + 50.20918400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWATLYTTAEE5Z", + "ref:EU:EVSE": "FRWATP5836549138795164809", + "ref": "1131300", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26720500000, + 48.85310700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-12-18;2022-05-13", + "network": "Saint-Rambert Ouest;IONITY GMBH", + "capacity": "7;9", + "description": "IONITY Saint-Witz;Saint-Rambert Ouest", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "owner:ref:FR:SIREN": "838436145", + "ref:EU:EVSE": "FRIOYE413053;FRIOYE413052;FRIOYE413051;FRIOYE413003;FRIONE439600;FRIOYE413001;FRIOYE413002;FRIOYE413004;FRIOYE413005;FRIOYE413006", + "opening_hours": "24/7", + "ref": "FRIOYE413053;FRIOYE413052;FRIOYE413051;FRIOYE413006;FRIOYE413005;FRIONE449000;FRIOYE413001;FRIOYE413002;FRIOYE413003;FRIOYE413004", + "operator": "IONITY", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82557100000, + 45.27556300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS51E44711;FRS51E44708", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - GUEUX - Pl. des Lacs", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E44711;FRS51E44708", + "start_date": "2020-12-11", + "network": "MODULO - GUEUX - Pl. des Lacs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91029200000, + 49.25057100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65210001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GRUST - Salle des Fêtes", + "start_date": "2024-02-19", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03110000000, + 42.88974100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF088576", + "socket:type2_combo:output": "300 kW;150 kW", + "start_date": "2023-02-02", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681237;531681236;531681228;531681227;531681226;531681225;531681223;531681221;531681220;531681222;531681224;531681229;531681230;531681231;531681232;531681233;531681234;531681235;531681238;531681239", + "description": "RELAIS AGEN PORTE D'AQUITAINE", + "opening_hours": "24/7", + "capacity": "20", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF088576" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50755700000, + 44.19967800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34176001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "MUDAISON - Avenue Des Saladelles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04151400000, + 43.64482000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PFZXXAW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/FZXXAW", + "ref": "21894" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52617000000, + 47.77240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2328898996568026493", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "446600", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YKVA6WUBXU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75126500000, + 48.65379200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS30E30336001", + "description": "VALLABREGUES - Boulevard Emile Jamais", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62773200000, + 43.85156200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD834801", + "start_date": "2021-03-30;2021-03-17;2021-10-05", + "capacity": "11", + "charging_station:output": "22.08 kW", + "description": "Ford - Puget sur Argens", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69433800000, + 43.44906900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC2P006901", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRC2P006901", + "description": "AB DIEPPE", + "opening_hours": "24/7", + "network": "AB DIEPPE", + "start_date": "2023-06-09", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07746800000, + 49.90517400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "opening_hours": "Mo-Sa 08:00-18:00", + "operator:email": "secretariat@lumi-in.fr", + "charging_station:output": "47 kW", + "ref": "e6094930-1815-11ef-9262-0242ac120002", + "start_date": "2024-05-02", + "description": "KIA BALBI ORANGE", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEKIAORANGE1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80452370000, + 44.14421500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "d83b3172-b756-5dc8-9edb-2ec053e4dfb1", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | Saint-Estephe | Grand etang", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67403700000, + 45.58996800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Leclerc - LE VERDON SUR MER", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE33VABA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06330700000, + 45.54524100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "description": "BornEco/6602d2f2e96920ad9b915ae7", + "ref:EU:EVSE": "FRBHMP1688637332677501511", + "amenity": "charging_station", + "capacity": "1", + "ref": "1040277", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51473700000, + 49.00857200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P1449195477448947348", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "446804", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/QWRHODBYDL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35404500000, + 46.56548300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PSOK7YPDWPC", + "capacity": "2", + "amenity": "charging_station", + "description": "Saint-Chamas, Avenue Marx Dormoy", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03184000000, + 43.54726000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "43 kW", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P6746792978916052973", + "socket:type2_combo:output": "43 kW", + "ref": "402548", + "description": "SDEY/L4SV657FSZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24322800000, + 47.93862000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363732", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "start_date": "2023-06-20", + "description": "R3 - Norauto St Dié" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93534200000, + 48.29387600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1079110214656499372", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLMTM4TSXD", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "682175", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32346300000, + 47.10387800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-31;2023-07-10", + "network": "Power Dot France", + "description": "Super U - Fonbeauzard", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PSYUFON", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44935350000, + 43.68077580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "KQBUJVHM6Y;346790", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPKQBUJVHM6Y;FREBNP5396091459225631903", + "description": "Réseau eborn/KQBUJVHM6Y;La Rochette, Rue du 8 mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11795200000, + 45.45828800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARF - Bornes Publiques/1e51511b-9531-42b9-a289-d22cf5984e15", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP9163511160602338800", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "674339" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42744000000, + 43.74529200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*796*1*_*_;FR*SOD*S*OTHR*796*2*_*_;FR*SOD*S*OTHR*796*3*_*_;FR*SOD*S*OTHR*796*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "F1 - LAVAL", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-16", + "ref:EU:EVSE": "FROTHPOTHR79641;FROTHPOTHR79621;FROTHPOTHR79611;FROTHPOTHR79631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74755976058, + 48.08663818559 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346670;ED9WZC9LMX", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/ED9WZC9LMX;Dunieres, Rue de St Régis", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPED9WZC9LMX;FREBNP950592374015567492", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34412000000, + 45.21375000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "THXUW7AKVF;30347", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/THXUW7AKVF;Sarras, Place Jean Moulin", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPTHXUW7AKVF", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79981500000, + 45.18772100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-11", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "description": "CAMPING CLUB FAMILLE LOU PIGNADA - MESSANGES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*399*1*_*_", + "network": "CAMPING RESASOL", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR39911;FROTHPOTHR39912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38211300000, + 43.79719400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521222", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/C9ASIEEJ39", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5561985894409971478", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75442700000, + 46.91209800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Niort, France - Chauray", + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP34043", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38412600000, + 46.34023100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/REGTQN", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PREGTQN", + "charging_station:output": "22 kW", + "ref": "120809", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23131000000, + 47.88820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "AMP | Ste Marguerite", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "FR*TCB*P02573", + "ref:EU:EVSE": "FRTCBP02573", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40220110622, + 43.26953159747 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PKLLHKZ", + "network": "Freshmile France", + "description": "Freshmile France/KLLHKZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "79618" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35048000000, + 48.60580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/H1P1PYTVJZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P804279289398129493", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28334300000, + 49.29293800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mazda - Etampes - 22kW AC ", + "ref:EU:EVSE": "FRZMAE22AC57150;FRZMAE22AC60380", + "amenity": "charging_station", + "capacity": "1", + "network": "Mazda ETAMPES - GARAGE ST PIERRE;Mazda - Etampes - 22kW AC ", + "start_date": "2021-04-01;2021-05-05", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "306092701", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 08:00-18:00", + "ref": "57150;60380", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17263850000, + 48.42705860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE366", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Kiloutou_Coudekerque", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38090900000, + 51.00642800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-23;2021-03-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LES MUREAUX - Rue Carnot", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78440001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90962700000, + 48.99295000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "ref": "FRSHEE217;FRIOYE459306;FRIOYE459305;FRIOYE459304;FRIOYE459303;FRIOYE459301;FRIOYE459302", + "amenity": "charging_station", + "start_date": "2023-06-27;2023-12-28", + "network": "Shell AIRE DES PLAINES DE BEAUCE;Plaines de Beauce", + "opening_hours": "24/7", + "operator:email": "customerservice@shellrecharge.com;info@ionity.eu", + "description": "Shell AIRE DES PLAINES DE BEAUCE;Plaines de Beauce", + "capacity": "2;6", + "charging_station:output": "50 kW;350 kW;44 kW", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRSHEE217;FRIOYE459306;FRIOYE459305;FRIOYE459304;FRIOYE459303;FRIOYE459301;FRIOYE459302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85562900000, + 48.27528200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "start_date": "2021-04-16;2024-05-31;2024-05-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53P53137A;FRS53E53137001", + "description": "OuestCharge - Diva Sp - Loiron - Ramé;LOIRON - Rue Du Docteur Ramé", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93592990000, + 48.06010200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LATOUR DE FRANCE - D79", + "start_date": "2017-07-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS66E66096001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65619600000, + 42.76842200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.21865930000, + 49.97076070000 + ], + [ + 1.21859640000, + 49.97082320000 + ], + [ + 1.21837200000, + 49.97093960000 + ], + [ + 1.21801410000, + 49.97105940000 + ], + [ + 1.21724770000, + 49.97125380000 + ], + [ + 1.21715300000, + 49.97126950000 + ], + [ + 1.21511630000, + 49.97179980000 + ], + [ + 1.21393450000, + 49.97209440000 + ], + [ + 1.21378490000, + 49.97210420000 + ], + [ + 1.21362000000, + 49.97209440000 + ], + [ + 1.21272530000, + 49.97192550000 + ], + [ + 1.21214510000, + 49.97178210000 + ], + [ + 1.21173900000, + 49.97169370000 + ], + [ + 1.21066100000, + 49.97148360000 + ], + [ + 1.21053440000, + 49.97148770000 + ], + [ + 1.21042290000, + 49.97149140000 + ], + [ + 1.21030070000, + 49.97150910000 + ], + [ + 1.21010220000, + 49.97159160000 + ], + [ + 1.20918000000, + 49.97212190000 + ], + [ + 1.20891180000, + 49.97233090000 + ], + [ + 1.20885230000, + 49.97251440000 + ], + [ + 1.20867210000, + 49.97255650000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Virandeville", + "network": "Virandeville", + "start_date": "2024-01-08", + "ref": "FRIENE012002;FRIENE012001", + "ref:EU:EVSE": "FRIENE012002;FRIENE012001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74060237000, + 49.56126517000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2023-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35115005B1", + "description": "FOUGERES - Allée des fêtes (Parking du Nancon) ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20266600000, + 48.35615300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61457A", + "start_date": "2019-02-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "SE61-STSY-001", + "description": "SAINT-SYMPHORIEN-DES-BRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58346870000, + 48.78822640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VXSL0B2ANU", + "ref:EU:EVSE": "FRFR1P7307172262782078507", + "ref": "529736" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03987100000, + 48.91240400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PWUKNSS", + "ref": "WUKNSS;64886", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "start_date": "2017-11-16", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "description": "Nailloux;Roulez Électrique En Haute-Garonne/WUKNSS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62286000000, + 43.35770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92050012", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "NANTERRE - Rue Lavoisier", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17434800000, + 48.89520300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "description": "Domaine des Chênes", + "ref:EU:EVSE": "FRCG0E000544;FRCG0E000543;FRCG0E000542", + "amenity": "charging_station", + "ref": "FRCG0E000544;FRCG0E000543;FRCG0E000542", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "network": "Domaine des Chênes", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16751400000, + 44.40737400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-13", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "SAINT-MARTIN-DU-VAR - PARKING GYMNASE", + "ref": "FR*SOD*S*NICE*185*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE18511;FRM06PNICE18512", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19342873472, + 43.82092173337 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Port Sainte Marie | Parking Rue Pasteur", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "fb3e4395-9d81-5fd0-8a30-0e02940ec964", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39916700000, + 44.24972200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*324*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 1 ALLEE DES CASTORS - EMPLACEMENT 2 - BIEVRES", + "ref:EU:EVSE": "FRSIGPSIGE32411;FRSIGPSIGE32412", + "start_date": "2023-02-09", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21967400000, + 48.75573400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS264557;FRBMPS264559;FRBMPS264558;FRBMPS264560", + "ref": "264557;264559;264558;264560", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "Bump - SAGS -LES ARCS 2000 - MONT BLANC", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83443960000, + 45.57359780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROSNY SOUS BOIS", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR2683EVCP02;LFR2683EVCP01", + "ref": "LFR2683EVCP02;LFR2683EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48537100000, + 48.88442900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "ref": "3742fc02-98ae-503f-af5f-b97d9d7d1bbf", + "description": "MOBIVE | Brax | 4 Centre Commercial les Vergers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55351000000, + 44.19983000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Grigny - Résidence des Aiglons", + "ref": "6a394db5-98a1-555b-9b2f-683b783e0695" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38369400000, + 48.65980500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "RABOURDIN - VELIZY", + "ref:EU:EVSE": "FR55CP78140VLZRAB0URD1N", + "ref": "FR*55C*P78140*VLZ*RAB0URD1N", + "start_date": "2023-07-17", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19560500000, + 48.78126100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3645EVCP02;LFR3645EVCP01", + "description": "TOURS - Rond Point Robert Pinget", + "ref:EU:EVSE": "LFR3645EVCP02;LFR3645EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71571600000, + 47.41971700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Bergerac", + "ref:EU:EVSE": "FRPD1PITMBER", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47782578826, + 44.83310795739 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref:EU:EVSE": "FREBNP8137176161195906264;FREBNPJY0TJDEVXN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "JY0TJDEVXN;591332", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Saint-Forgeux-Lespinasse, Place de Verdun;Réseau eborn/JY0TJDEVXN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93049800000, + 46.12292600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "description": "e-Totem - LAV'CAR LE CATEAU-CAMBRESIS", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP59136A", + "ref": "FRETIP59136A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53564510212, + 50.09353714685 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E38185005", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Grenoble Stade - Palais des Sports - PARK GRENOBLE ALPES METROPOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74339000000, + 45.18684000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT802601", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "description": "Carrefour Market - Villers-Bocage", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31321400000, + 50.00372900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPMSU1UWQGZE;FREBNP7357011885376445969", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346814;MSU1UWQGZE", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/MSU1UWQGZE;Chambery, Rue d'Anjou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91671200000, + 45.58865400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-11-14;2022-11-10", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - SAINT MARCEL", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FROTHPOTHR51972;FROTHPOTHR51971;FROTHPOTHR51911;FROTHPOTHR51912;FROTHPOTHR51921;FROTHPOTHR51922;FROTHPOTHR51931;FROTHPOTHR51932;FROTHPOTHR51941;FROTHPOTHR51942;FROTHPOTHR51951;FROTHPOTHR51952", + "ref": "FR*SOD*S*OTHR*519*7*_*_;FR*SOD*S*OTHR*519*5*_*_;FR*SOD*S*OTHR*519*3*_*_;FR*SOD*S*OTHR*519*2*_*_;FR*SOD*S*OTHR*519*1*_*_;FR*SOD*S*OTHR*519*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45363900000, + 49.10233000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-23", + "charging_station:output": "7 kW", + "capacity": "2", + "description": "FORMATION TLSE BORNE 2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6721155", + "network": "FORMATION TLSE BORNE 2", + "ref": "FRCPIE6721155" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35548400000, + 43.59488100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "ref:EU:EVSE": "FRFR1P3427138900662425096", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLPI9ME5E1MR0Z", + "ref": "1002876" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59149400000, + 47.17735800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "start_date": "2021-02-15", + "amenity": "charging_station", + "description": "CONFLUENCE - PKG N-1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*UNIB*10*9*_*_;FR*SOD*S*UNIB*10*3*_*_;FR*SOD*S*UNIB*10*2*_*_;FR*SOD*S*UNIB*10*1*_*_;FR*SOD*S*UNIB*10*7*_*_;FR*SOD*S*UNIB*10*8*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRURWPUNIB1091;FRURWPUNIB1031;FRURWPUNIB1022;FRURWPUNIB1012;FRURWPUNIB1011;FRURWPUNIB1021;FRURWPUNIB1032;FRURWPUNIB1071;FRURWPUNIB1081", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81599300000, + 45.74089000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DFR9ZCDQ6F", + "charging_station:output": "50 kW;22 kW", + "opening_hours": "Th,Fr,We,Mo,Tu,Sa 14:00-17:30,Tu,Fr,Mo,We,Sa,Th 09:00-12:00", + "operator": "Freshmile | FR*FR1", + "ref": "477621", + "ref:EU:EVSE": "FRFR1P8772454196786823614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68623100000, + 44.82537000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTNME07910164", + "operator:email": "customerservice@shellrecharge.com", + "operator": "Shell Recharge", + "description": "07910164", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "network": "07910164", + "opening_hours": "24/7", + "ref": "FRTNME07910164", + "start_date": "2020-01-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44279000000, + 43.57211100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P452108636065991363", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LLWGEBOASOAK1M", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1162800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27946500000, + 48.93829600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1096253921422508311", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "description": "MobiSDEC/LLY6ZPKRD913EH", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "43 kW;50 kW;150 kW", + "ref": "1155648" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37368600000, + 49.10820500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ESPALION - Rue De L'Ouest Place Pierre Frontin", + "ref:EU:EVSE": "FRS12E12096001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76086600000, + 44.52093600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "767193", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA3P999764389551762121", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATL365YTXZ2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11946400000, + 44.61229500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49238A;FRS49E49238001", + "amenity": "charging_station", + "start_date": "2024-04-06;2021-04-16;2024-04-08", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "PELLOUAILLES-LES-VIGNES - Impasse de la Chapelle;OuestCharge - Diva Sp - Pellouailles-les-Vignes - Chapelle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43690100000, + 47.52147600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "FYE - Rue Dadam", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-03-17", + "ref:EU:EVSE": "FRS72E72139001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09373780000, + 48.32307640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "WORMHOUT - Place Du General De Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH14E59663001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46758500000, + 50.88345800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-05-28", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44187A;FRS44E44187001", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Pere-En-Retz - Marche;SAINT-PERE-EN-RETZ - Place Du Marché", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04481500000, + 47.20812700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "518396", + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63300*B;SIEG63 - ePremium - Riom - Cornet", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63300B", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11833700000, + 45.88763200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59385001", + "charging_station:output": "22 kW", + "description": "MARPENT - Rue des Frères Roucheau", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07981900000, + 50.29273200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BASSAN - Rue Du Chemin Neuf", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS34E34025001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25536944444, + 43.41050280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94028011", + "description": "CRETEIL - Rue Cheret", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45828619146, + 48.80466821687 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*33*3*_*_;FR*SOD*S*NICE*33*1*_*_;FR*SOD*S*NICE*33*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "ref:EU:EVSE": "FRM06PNICE3312;FRM06PNICE3311;FRM06PNICE3321;FRM06PNICE3331", + "operator:email": "sav@izivia.com", + "start_date": "2019-01-04;2019-01-22", + "description": "NICE - CHATEAUNEUF RP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25374210273, + 43.70079828948 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "6e08ee38-899b-5a33-ba7e-1e0f2cab0162", + "opening_hours": "24/7", + "description": "MOBIVE | Condat Sur Vezere | Place des Ecoles", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23200400000, + 45.11835100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*430*1*_*_", + "description": "SIGEIF - 2 PLACE DU PATIS - LISLE-ADAM", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2023-07-31", + "ref:EU:EVSE": "FRSIGPSIGE43012;FRSIGPSIGE43011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21213700000, + 49.11164300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Saint Jean de Luz", + "description": "Allego Carrefour Saint Jean de Luz", + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9007002;FRALLEGO9005172;FRALLEGO9004162;FRALLEGO9004161;FRALLEGO9004142;FRALLEGO9004141;FRALLEGO9005171;FRALLEGO9007001", + "ref:EU:EVSE": "FRALLEGO9007002;FRALLEGO9005172;FRALLEGO9004162;FRALLEGO9004161;FRALLEGO9004142;FRALLEGO9004141;FRALLEGO9005171;FRALLEGO9007001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62810637000, + 43.40513426000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRIGNY", + "ref:EU:EVSE": "LFR2982EVCP01;LFR2982EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2982EVCP01;LFR2982EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77271200000, + 45.60604400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "9ee117d7-72fa-5e29-8b7a-ab1d5cf8acde", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bedous | Rue Gambetta Parking Nord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60101100000, + 43.00021000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "7d40d537-5070-5a1e-b328-a36c14da1af5", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "SAVOILLAN - Chemin de Saint Agricol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37561600000, + 44.17968100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA05E78264001", + "operator": "Bouygues E&S", + "start_date": "2023-09-29", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "GAMBAISEUIL - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73338000000, + 48.75674000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "PINEUILH", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3351EVCP01", + "ref": "LFR3351EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21910700000, + 44.82818400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "description": "Intermarché - Trémuson", + "ref:EU:EVSE": "FRPD1PITMTRE", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85254878438, + 48.52356321834 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/yzeurelib;Yzeure, Liberté", + "ref:EU:EVSE": "FREBNPYZEURELIB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2017-05-02", + "ref": "120743;yzeurelib" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36337000000, + 46.55350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "917546251", + "operator": "SPIE CITYNETWORKS", + "capacity": "8", + "network": "e-Vadea", + "charging_station:output": "150 kW;50 kW;22 kW", + "description": "e-Vadea - La Palme - A9 La Palme Ouest", + "amenity": "charging_station", + "start_date": "2023-03-10;2023-04-11;2023-06-20", + "operator:email": "assistance-commerciale@e-vadea.fr", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "ref:EU:EVSE": "FREVAP11188A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96903500000, + 42.94943170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-27;2023-02-08", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Cora - Wattignies", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "11", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCORWTG", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05358392555, + 50.59338958953 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-09;2024-07-10", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT234001", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Carrefour Market - Bourganeuf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76004900000, + 45.95882000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42218AE", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref": "FRESEPS42218AE", + "charging_station:output": "22 kW", + "start_date": "2019-04-26", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Soleil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40168700000, + 45.45052000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG332491;FROTHPIZIG332481;FROTHPIZIG332471;FROTHPIZIG332461;FROTHPIZIG332451;FROTHPIZIG332441;FROTHPIZIG332371;FROTHPIZIG332351;FROTHPIZIG332341;FROTHPIZIG332331;FROTHPIZIG332271;FROTHPIZIG332251;FROTHPIZIG332241;FROTHPIZIG332231;FROTHPIZIG332221;FROTHPIZIG33221;FROTHPIZIG332191;FROTHPIZIG332181;FROTHPIZIG332161;FROTHPIZIG332151;FROTHPIZIG332141;FROTHPIZIG332111;FROTHPIZIG33211;FROTHPIZIG33171;FROTHPIZIG331501;FROTHPIZIG331491;FROTHPIZIG331481;FROTHPIZIG331471;FROTHPIZIG331461;FROTHPIZIG331451;FROTHPIZIG33141;FROTHPIZIG331371;FROTHPIZIG331361;FROTHPIZIG331351;FROTHPIZIG331341;FROTHPIZIG331251;FROTHPIZIG331231;FROTHPIZIG33121;FROTHPIZIG331191;FROTHPIZIG331181;FROTHPIZIG331151;FROTHPIZIG331141;FROTHPIZIG331131;FROTHPIZIG331121;FROTHPIZIG33111;FROTHPIZIG331101;FROTHPIZIG331111;FROTHPIZIG331161;FROTHPIZIG331171;FROTHPIZIG331201;FROTHPIZIG331211;FROTHPIZIG331221;FROTHPIZIG331241;FROTHPIZIG331261;FROTHPIZIG331271;FROTHPIZIG331281;FROTHPIZIG331291;FROTHPIZIG331301;FROTHPIZIG33131;FROTHPIZIG331311;FROTHPIZIG331321;FROTHPIZIG331331;FROTHPIZIG331381;FROTHPIZIG331391;FROTHPIZIG331401;FROTHPIZIG331411;FROTHPIZIG331421;FROTHPIZIG331431;FROTHPIZIG331441;FROTHPIZIG33151;FROTHPIZIG331511;FROTHPIZIG33161;FROTHPIZIG33181;FROTHPIZIG33191;FROTHPIZIG332101;FROTHPIZIG332121;FROTHPIZIG332131;FROTHPIZIG332171;FROTHPIZIG332201;FROTHPIZIG332211;FROTHPIZIG332261;FROTHPIZIG332281;FROTHPIZIG332291;FROTHPIZIG332301;FROTHPIZIG33231;FROTHPIZIG332311;FROTHPIZIG332321;FROTHPIZIG332361;FROTHPIZIG332381;FROTHPIZIG332391;FROTHPIZIG332401;FROTHPIZIG33241;FROTHPIZIG332411;FROTHPIZIG332421;FROTHPIZIG332431;FROTHPIZIG33251;FROTHPIZIG33261;FROTHPIZIG33271;FROTHPIZIG33281;FROTHPIZIG33291", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "description": "CNPE LE BLAYAIS - EXTERIEUR - RANGEE J;CNPE LE BLAYAIS - EXTERIEUR - RANGEE K", + "opening_hours": "24/7", + "start_date": "2022-04-07;2022-12-20;2023-06-21", + "operator:email": "sav@izivia.com", + "charging_station:output": "3.68 kW;7.36 kW;7 kW", + "ref": "FR*SOD*S*IZIG*332*7*_*_;FR*SOD*S*IZIG*332*6*_*_;FR*SOD*S*IZIG*332*5*_*_;FR*SOD*S*IZIG*332*47*_*_;FR*SOD*S*IZIG*332*46*_*_;FR*SOD*S*IZIG*332*41*_*_;FR*SOD*S*IZIG*332*39*_*_;FR*SOD*S*IZIG*332*38*_*_;FR*SOD*S*IZIG*332*33*_*_;FR*SOD*S*IZIG*332*3*_*_;FR*SOD*S*IZIG*332*30*_*_;FR*SOD*S*IZIG*332*29*_*_;FR*SOD*S*IZIG*332*28*_*_;FR*SOD*S*IZIG*332*27*_*_;FR*SOD*S*IZIG*332*24*_*_;FR*SOD*S*IZIG*332*23*_*_;FR*SOD*S*IZIG*332*2*_*_;FR*SOD*S*IZIG*332*20*_*_;FR*SOD*S*IZIG*332*19*_*_;FR*SOD*S*IZIG*332*18*_*_;FR*SOD*S*IZIG*332*15*_*_;FR*SOD*S*IZIG*332*14*_*_;FR*SOD*S*IZIG*332*12*_*_;FR*SOD*S*IZIG*332*11*_*_;FR*SOD*S*IZIG*332*1*_*_;FR*SOD*S*IZIG*331*9*_*_;FR*SOD*S*IZIG*331*8*_*_;FR*SOD*S*IZIG*331*50*_*_;FR*SOD*S*IZIG*331*44*_*_;FR*SOD*S*IZIG*331*43*_*_;FR*SOD*S*IZIG*331*42*_*_;FR*SOD*S*IZIG*331*4*_*_;FR*SOD*S*IZIG*331*40*_*_;FR*SOD*S*IZIG*331*39*_*_;FR*SOD*S*IZIG*331*37*_*_;FR*SOD*S*IZIG*331*34*_*_;FR*SOD*S*IZIG*331*3*_*_;FR*SOD*S*IZIG*331*30*_*_;FR*SOD*S*IZIG*331*28*_*_;FR*SOD*S*IZIG*331*27*_*_;FR*SOD*S*IZIG*331*26*_*_;FR*SOD*S*IZIG*331*25*_*_;FR*SOD*S*IZIG*331*22*_*_;FR*SOD*S*IZIG*331*19*_*_;FR*SOD*S*IZIG*331*17*_*_;FR*SOD*S*IZIG*331*15*_*_;FR*SOD*S*IZIG*331*11*_*_;FR*SOD*S*IZIG*331*10*_*_;FR*SOD*S*IZIG*331*1*_*_;FR*SOD*S*IZIG*331*12*_*_;FR*SOD*S*IZIG*331*13*_*_;FR*SOD*S*IZIG*331*14*_*_;FR*SOD*S*IZIG*331*16*_*_;FR*SOD*S*IZIG*331*18*_*_;FR*SOD*S*IZIG*331*20*_*_;FR*SOD*S*IZIG*331*2*_*_;FR*SOD*S*IZIG*331*21*_*_;FR*SOD*S*IZIG*331*23*_*_;FR*SOD*S*IZIG*331*24*_*_;FR*SOD*S*IZIG*331*29*_*_;FR*SOD*S*IZIG*331*31*_*_;FR*SOD*S*IZIG*331*32*_*_;FR*SOD*S*IZIG*331*33*_*_;FR*SOD*S*IZIG*331*35*_*_;FR*SOD*S*IZIG*331*36*_*_;FR*SOD*S*IZIG*331*38*_*_;FR*SOD*S*IZIG*331*41*_*_;FR*SOD*S*IZIG*331*45*_*_;FR*SOD*S*IZIG*331*46*_*_;FR*SOD*S*IZIG*331*47*_*_;FR*SOD*S*IZIG*331*48*_*_;FR*SOD*S*IZIG*331*49*_*_;FR*SOD*S*IZIG*331*5*_*_;FR*SOD*S*IZIG*331*51*_*_;FR*SOD*S*IZIG*331*6*_*_;FR*SOD*S*IZIG*331*7*_*_;FR*SOD*S*IZIG*332*10*_*_;FR*SOD*S*IZIG*332*13*_*_;FR*SOD*S*IZIG*332*16*_*_;FR*SOD*S*IZIG*332*17*_*_;FR*SOD*S*IZIG*332*21*_*_;FR*SOD*S*IZIG*332*22*_*_;FR*SOD*S*IZIG*332*25*_*_;FR*SOD*S*IZIG*332*26*_*_;FR*SOD*S*IZIG*332*31*_*_;FR*SOD*S*IZIG*332*32*_*_;FR*SOD*S*IZIG*332*34*_*_;FR*SOD*S*IZIG*332*35*_*_;FR*SOD*S*IZIG*332*36*_*_;FR*SOD*S*IZIG*332*37*_*_;FR*SOD*S*IZIG*332*40*_*_;FR*SOD*S*IZIG*332*4*_*_;FR*SOD*S*IZIG*332*42*_*_;FR*SOD*S*IZIG*332*43*_*_;FR*SOD*S*IZIG*332*44*_*_;FR*SOD*S*IZIG*332*45*_*_;FR*SOD*S*IZIG*332*48*_*_;FR*SOD*S*IZIG*332*49*_*_;FR*SOD*S*IZIG*332*8*_*_;FR*SOD*S*IZIG*332*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68931300000, + 45.25735800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SOLERO DC STATION 1", + "start_date": "2024-02-02", + "socket:type2_combo:output": "50 kW", + "network": "SOLERO DC STATION 1", + "amenity": "charging_station", + "ref": "FRCPIE6848055;FRCPIE6848035;FRCPIE6870775", + "ref:EU:EVSE": "FRCPIE6848055;FRCPIE6848035;FRCPIE6870775", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16935700000, + 48.04565600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "213062", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PVCFAXA", + "description": "Freshmile France/VCFAXA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77651000000, + 49.38660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL TOURS SUD JOUÉ-LÈS-TOURS", + "amenity": "charging_station", + "start_date": "2023-12-28", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122013", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64655000000, + 47.34631000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "44 kW;50 kW;22 kW", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/CZKSFL", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "44 kW;50 kW;22 kW", + "ref": "213005", + "ref:EU:EVSE": "FRFR1PCZKSFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83507000000, + 47.96260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Colmar, France", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRTSLP27649", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36881600000, + 48.12896600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6866292371084524925", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/stbenoitjaures", + "ref": "1155582", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.71710000000, + -21.03810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/S3XSSU87WY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P2577349600080335706", + "ref": "461931", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85441500000, + 48.84011800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/CIQQYCDPTL", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1776281721136496243", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "456798", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83407500000, + 49.18276200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128153", + "description": "WAAT/FRWATLSMMU5BWU", + "ref:EU:EVSE": "FRWA9P5410855254419686762", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36813800000, + 43.60286100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P501296", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "CHERBOURG EN COTENTIN - Rue des Tribunaux", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2019-07-27", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62179400000, + 49.63799300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81156001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MARSSAC S/ TARN - Place Du Barry", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02929600000, + 43.91776000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DE LA PORTE D ITALIE", + "ref": "FRHPCPNF059511", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2020-11-03", + "ref:EU:EVSE": "FRHPCPNF059511", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680498", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36040000000, + 48.81710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48090001", + "network": "Reveo", + "description": "LE MALZIEU VILLE - Parking Station Service", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33282700000, + 44.85667200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "541919", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P302876488002607073", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/K2YQ7NB5P1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.64470000000, + 48.04810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CONDETTE - Place du Choquel", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62235001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62555000000, + 50.65063900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Scaër - Place Victor Hugo", + "ref:EU:EVSE": "FRS29E2927400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70201500000, + 48.02584800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PZFUQTJ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "257197", + "description": "Mobilité électrique 56/ZFUQTJ", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78828000000, + 47.65150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "charging_station:output": "18 kW", + "description": "PAYRE-1-1;PAYRE-1-2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B150", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346052142;FRLMSE12346052132;FRLMSE12346052131;FRLMSE12346052141", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19736300000, + 46.35839300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "description": "Métropolis/FR*MGP*P93031*B", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93031B", + "ref": "446954", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162100000, + 48.95992300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "BRUNOY - Rue du Cercay", + "ref:EU:EVSE": "FRSIPE91114012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50834480000, + 48.70339720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLFR00373", + "opening_hours": "24/7", + "ref": "1000014", + "network": "Atlante", + "socket:type2_combo:output": "300 kW", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP725287822001836262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11090200000, + 49.08124600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW;63 kW;22 kW", + "description": "ENGIE Vianeo - Epinal - Palais des Sports Park.P2", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89329816", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-10-09", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47084500000, + 48.18696000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "502097868", + "opening_hours": "Tu-Sa 10:00-12:30,Tu-Sa 14:00-18:30", + "ref:EU:EVSE": "FRMAPP000000006391", + "operator": "ELECTROMAPS", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref": "da1f45f8-082b-11ed-861d-0242ac120002", + "operator:email": "sales@electromaps.com", + "description": "Nieppe", + "network": "Le COTONNIER NIEPPE", + "start_date": "2021-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84126300000, + 50.68983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85215001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-FULGENT - Rue Des Cèdres", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17768514200, + 46.85203552000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEVRAN", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSSVRAN", + "operator": "Allego", + "start_date": "2023-11-27", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52756000000, + 48.94873500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*54*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "description": "IZIVIA | MARSEILLE 01 - BOULEVARD VOLTAIRE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZMPMAMP5411;FRIZMPMAMP5412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38406200000, + 43.30247200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMATOIG", + "description": "Match - Oignies", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "start_date": "2024-02-29;2024-02-07", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99767818460, + 50.46993996313 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPEDM5XZ78S5", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/EDM5XZ78S5", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99250500000, + 45.29966100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP9178235212758420241", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/2581A96C-BD03-4AB2-9D2F-B07C2DC1F5D6", + "ref": "927762", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38927700000, + 43.29044900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-12-05;2023-11-28", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PIBSCLS", + "operator": "Power Dot France", + "description": "Ibis - Calais", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87946789230, + 50.94689604962 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Saint-Jean-D'Aulps, Mairie", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPODXLXEZKBM", + "ref": "ODXLXEZKBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65622480000, + 46.23193640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - 3M - Beaulieu - Parking du Stade", + "ref": "FRETIP34027A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP34027A", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02237200000, + 43.72996700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR20811;FROTHPOTHR20821", + "start_date": "2021-07-07", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*208*2*_*_;FR*SOD*S*OTHR*208*1*_*_", + "network": "GARAGE TERRIEN", + "opening_hours": "24/7", + "description": "GARAGE TERRIEN - DIVATTE SUR LOIRE", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33714800000, + 47.26787700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*CAPS*34*1*_*_", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-12-05", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "description": "LA VILLE-DU-BOIS - GRAND NOYER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS3411;FRCPSPCAPS3412", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27649500000, + 48.66458900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4512132030730923109", + "description": "Freshmile France/LLIK0B6WE2A0C7", + "operator": "Freshmile | FR*FR1", + "ref": "892137", + "opening_hours": "Fr,Su,Sa,Tu,Mo,Th,We 00:00-07:30,Mo,Fr,Tu,Sa,We,Th 19:00-23:59,Su 13:00-23:59", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20470100000, + 48.67209900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "ref": "705710", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENRGETICA/05ce165f-d59b-4e08-9fa2-48813691dfb5", + "ref:EU:EVSE": "FRVISP3084913963219561052", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49636200000, + 43.67810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P6937466326650959051", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLZSDR90RWCVAQ", + "ref": "1169394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02098600000, + 48.98590200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000081569", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "description": "ABB T54 VW Rumilly", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000081569", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94947200000, + 45.85818200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MIICHC8WP1", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6625165522402087182", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "398933" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92293000000, + 47.41156300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 06:00-19:00, Tu 06:00-19:00, We 06:00-19:00, Th 06:00-19:00, Fr 06:00-19:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-12-28;2022-12-14", + "description": "VSF - Saint-Amand-Longpré (bâtiment tertiaire)", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPVSF413101", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00215400000, + 47.69503100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "200080869", + "operator:email": "lionel.chauvet@energie28.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E137374;FRS28E137373", + "network": "FR*S28", + "description": "BELHOMERT", + "start_date": "2022-06-02", + "ref": "FRS28E137374;FRS28E137373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05808900000, + 48.50376800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "01FA86M5NKT9P6C71SQE853AXK", + "owner:ref:FR:SIREN": "799732292", + "operator": "Ispo france", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "ISPO France", + "operator:email": "info@ispo-group.com", + "charging_station:output": "22 kW", + "opening_hours": "Lu-Ve 09:00-12:00,Lu-Ve 14:00-18:00", + "start_date": "2021-07-21", + "network": "Réseau de recharge ISPO FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61000000000, + 48.85000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P1257644710321461689", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "39683", + "opening_hours": "24/7", + "description": "SDEA 10/ICAF2FYXD8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52755000000, + 48.39157200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "706292", + "network": "WAAT", + "description": "WAAT/FRWATLUUDS1NJZ", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP4554102325092470460", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11269700000, + 49.04177900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Benoit_Chapelle_Levernois", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-11-02", + "ref:EU:EVSE": "FRROSE461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86296300000, + 46.99706320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VIANE - Place Du Petit Train", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81314001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58171200000, + 43.73695700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "843206434", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "charging_station:output": "22 kW", + "capacity": "11", + "description": "INTERPARKING | PARKING Montauban Roosevelt", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRIPKPMRO", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35467586909, + 44.01598729596 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-06;2021-04-26;2024-04-08", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Cholet - Coignard;CHOLET - Rue Docteur Charles Coignard", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49P49099B;FRS49E49099002", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87667700000, + 47.06346700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/GAQVMY", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "213032", + "ref:EU:EVSE": "FRS60PGAQVMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60136000000, + 49.30240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-03", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH13E62270002", + "network": "pass pass électrique", + "description": "DIVION - Avenue Paul Plouviez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51938410133, + 50.47330866545 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30189007", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "NIMES - Parking Relais : A54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37235600000, + 43.80744800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39059", + "ref:EU:EVSE": "FRS56PPSZCJC", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "description": "Mobilité électrique 56/PSZCJC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16776000000, + 47.67560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-06-14", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "SAINT-LAURENT DE JOURDES-1-2;SAINT-LAURENT DE JOURDES-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B086", + "ref:EU:EVSE": "FRLMSE12346396811;FRLMSE12346396821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54547100000, + 46.39088400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94080H", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "348980", + "description": "Métropolis/FR*MGP*P94080*H", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44706300000, + 48.85030200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*138*6*_*_;FR*SOD*S*SIGE*138*4*_*_;FR*SOD*S*SIGE*138*2*_*_;FR*SOD*S*SIGE*138*1*_*_;FR*SOD*S*SIGE*138*3*_*_;FR*SOD*S*SIGE*138*5*_*_", + "capacity": "1", + "network": "SIGEIF", + "start_date": "2021-04-26", + "description": "SIGEIF - 2 RUE DE LA BANEZA - GENNEVILLIERS", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FRSIGPSIGE13861;FRSIGPSIGE13851;FRSIGPSIGE13841;FRSIGPSIGE13831;FRSIGPSIGE13821;FRSIGPSIGE13811", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29707120000, + 48.92044140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E78545003", + "charging_station:output": "7 kW", + "description": "SAINT CYR l'ECOLE - Avenue Tom Morel", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06797240000, + 48.80690230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89635630", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Campanile Rouen Mt St-Aignan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09404600000, + 49.47731900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "73d08645-e94c-5fab-ba59-d9aa2f1d5fc4", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Chasseneuil Sur Bonnieure | Place de L'Eglise", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44882300000, + 45.82412700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE77CVDA", + "description": "COMBS LA VILLE - Casini", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57217800000, + 48.65316700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Charleville Mézierre", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9990172;FRALLEGO9004802;FRALLEGO9003212;FRALLEGO9002442;FRALLEGO9002441;FRALLEGO9002443;FRALLEGO9003211;FRALLEGO9004801;FRALLEGO9990171;FRALLEGO9990181;FRALLEGO9990182", + "start_date": "2024-03-21", + "ref": "FRALLEGO9990172;FRALLEGO9004802;FRALLEGO9003212;FRALLEGO9002442;FRALLEGO9002441;FRALLEGO9002443;FRALLEGO9003211;FRALLEGO9004801;FRALLEGO9990171;FRALLEGO9990181;FRALLEGO9990182", + "network": "Allego Carrefour Charleville Mézierre", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70578200000, + 49.74057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "CREHANGE Faulquemont", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3585EVCP01;LFR3585EVCP02", + "ref": "LFR3585EVCP01;LFR3585EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58188600000, + 49.04871400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM31E31555013", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Angle Bld Lascrosse / Bld Maréchal Leclerc", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43189700000, + 43.60928200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/GEUQ9S0IWD;Gonfaron, Pont de Maurice", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNGEUQ9S0IWD;FREBNPGEUQ9S0IWD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "GEUQ9S0IWD;50725", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29370400000, + 43.32354400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1424562316439657827", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSOFK3PS18WJT", + "operator": "Freshmile | FR*FR1", + "ref": "1161711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03628900000, + 49.18832300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "PARIS - Porte d'Italie", + "start_date": "2023-03-01", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E751130034;FRP07E75113003;FRP07E751130031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35939600000, + 48.81697700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Cergues, Parking Pizzaiola;Réseau eborn/H0ZSKAREWB", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPH0ZSKAREWB", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "ref": "H0ZSKAREWB;85796", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31337000000, + 46.22630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Toulon - Casino Siblas", + "ref:EU:EVSE": "FRELCPTOSCC", + "start_date": "2024-08-28", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93811000000, + 43.13053000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E60141002", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking Chantilly Victor Hugo - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45856300000, + 49.18830900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "PACAZAC BORNE 2", + "ref": "FRCPIE6612695;FRCPIE6612705", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6612695;FRCPIE6612705", + "description": "PACAZAC BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70430000000, + 43.38183900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "64610", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/LZFEFO7KSR", + "ref:EU:EVSE": "FREBNPLZFEFO7KSR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06076400000, + 45.60737600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "ref": "1181970", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s570538", + "ref:EU:EVSE": "FRWA2P3208985410127883561", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99864300000, + 43.13959700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3778937660985517085", + "network": "Freshmile France", + "ref": "346616", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/SUERDA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27165000000, + 48.82800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00705", + "description": "CAR AVENUE - KIA FORBACH", + "start_date": "2022-10-17", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:30", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "321775769", + "network": "KIA FORBACH", + "operator": "TotalEnergies Marketing France", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRTCBP00705", + "socket:type2_combo:output": "24 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88031729781, + 49.17582712385 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "742935", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8904878774717002010", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/FI7ROKDWGQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17269400000, + 46.15587000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-23", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMOURIERKIA309001", + "capacity": "2", + "amenity": "charging_station", + "description": "Kia - Nimes", + "opening_hours": "Mo 00:00-23:59, Tu 00:00-23:59, We 00:00-23:59, Th 00:00-23:59, Fr 00:00-23:59, Sa 00:00-23:59, Su 00:00-23:59", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33820000000, + 43.81481400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Guilligomarc h-Rue du Scorff", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS29E2907100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41504300000, + 47.93594000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AZILLE - Place des Cordeliers", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11022001", + "network": "Reveo", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66030298864, + 43.27862140383 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC46397", + "owner:ref:FR:SIREN": "314186149", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "UNICAP - GARAGE DU PALAIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "69aba27a-7e76-4564-abcc-60cc7e9c1138", + "description": "Garage du Palais - 22 kW AC", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06362390000, + 45.62433300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "MODULO - CHATELET SUR RETOURNE - Parking D925", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - CHATELET SUR RETOURNE - Parking D925", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "ref": "FRS08E46460;FRS08E46461", + "ref:EU:EVSE": "FRS08E46460;FRS08E46461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26760000000, + 49.41770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/LLXA7SVEE25024", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80P2522817052778366715", + "ref": "1137879", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60217700000, + 50.07839000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST21913;FRIZFPFAST21912;FRIZFPFAST21911", + "description": "IZIVIA FAST - MC DONALDS - FRONTIGNAN", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*219*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76717650000, + 43.46463230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Ancenis - Docteur Moutel;ANCENIS - Boulevard Du Docteur Moutel", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2024-04-17;2021-04-30", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44E44003002;FRS44P44003B", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17784500000, + 47.37090600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77046001;FRS77P77046A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61YVK6XCWX46CSQAGA", + "description": "BOULANCOURT - D103;Boulancourt", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-24;2016-11-15", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43573500000, + 48.25724400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "22 kW;50 kW;180 kW;30 kW", + "ref:EU:EVSE": "FRGSPP1000086119;FRGSPP1000086094;FRGSPP1000086095;FRGSPP1000086120;FRGSPP1897621;FRGSPP1898290", + "start_date": "2023-04-13;2024-02-15", + "amenity": "charging_station", + "description": "Carrefour Market Ferry;CARREFOUR MARKET BORDEAUX FERRY ", + "operator": "GREENSPOT", + "opening_hours": "Mo-Sa 08:00-20:00,Su 08:00-13:00;24/7", + "owner:ref:FR:SIREN": "414108603;414108604;820879021;414108600;414108601;414108602;414108597;414108598;414108599", + "capacity": "5;8", + "charging_station:output": "30 kW;180 kW;50 kW;22 kW", + "operator:email": "compta@greenspot.fr", + "network": "CARREFOUR MARKET BORDEAUX FERRY ;CARREFOUR MARKET CAUDERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60973119423, + 44.84424790208 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - ARTANNES SUR INDRE - Pl. de la liberté", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219804;FRS37E219803", + "description": "MODULO - ARTANNES SUR INDRE - Pl. de la liberté", + "ref:EU:EVSE": "FRS37E219804;FRS37E219803" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59812600000, + 47.27300100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/GTDFXE", + "ref": "48277", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PGTDFXE", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97686000000, + 47.90830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "Ville de Lens - Giratoire Maës", + "capacity": "2", + "amenity": "charging_station", + "network": "Ville de Lens - Giratoire Maës", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-21", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P62498C", + "ref:EU:EVSE": "FRG10P62498C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81927955824, + 50.42900839721 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS33PMB3317622;Non concerné;FRS33PMB3317621;FRS33PMB3317623", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-03-27", + "description": "SOULAC-SUR-MER - PARKING DE LA MAIRIE;MOBIVE | Soulac-Sur-Mer | Parking de la Mairie", + "capacity": "3", + "opening_hours": "24/7", + "operator": "197__SDEEG33;IZIVIA", + "charging_station:output": "22 kW;150 kW", + "owner:ref:FR:SIREN": "253303473", + "ref": "15cf5050-fec9-5fd2-b95e-890260365f17;FR*SOD*S*MB33*176*2*_*_", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12283700000, + 45.51508900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*254*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - PARKING DE LA MAIRIE - FONTENAY-LE-FLEURY", + "start_date": "2022-05-23", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE25412;FRSIGPSIGE25411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04494100000, + 48.81127100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "ref": "33340", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Move In Pure/58906910d54e7", + "socket:type2_combo:output": "44 kW", + "ref:EU:EVSE": "FRCN1P58906910D54E7", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76131000000, + 44.17340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/YCDY4DXWFE", + "ref:EU:EVSE": "FRLE2P7227486467255277290", + "ref": "477795" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181500000, + 44.90926100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | CHASSENEUIL SUR BONNIEURE - Parking des tilleuls;CHASSENEUIL SUR BONNIEURE - PARKING DES TILLEULS", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "251600060", + "ref": "262b4d78-3c32-5173-9a07-95bfeae131c6;FR*SOD*S*MB16*70*1*_*_", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "ref:EU:EVSE": "FRS16PMB167012;FRS16PMB167011;Non concerné;FRS16PMB167013;FRS16PMB167014", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "charging_station:output": "50 kW;43 kW", + "capacity": "3;4", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44745300000, + 45.82085300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2018-10-08", + "description": "Réseau AlterBase - Moncoutant sur Sèvre - Mairie ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB07067A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58963300000, + 46.72154100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "capacity": "8", + "description": "ORY - Parking P4b Vert - Niveau Terrasse", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "ref:EU:EVSE": "FRADPE91479016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36904000000, + 48.72986200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3597EVCP03;LFR3597EVCP01;LFR3597EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3597EVCP03;LFR3597EVCP01;LFR3597EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "MEZE Romany", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59712500000, + 43.43133100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT GEORGES DE COMMIERS - Place du Pôle médical", + "ref:EU:EVSE": "FRM38E38388001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;22 kW", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70119951677, + 45.03895483296 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-01-27", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ11012;FRA16PWIIZ11011", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANNES PARKING LORRAINE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*110*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02553900000, + 43.55368600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P3379444084538945161", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/QFRZEV9L6M", + "ref": "674309", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89959300000, + 49.18857500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2024-03-23;2024-03-22", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Action - Annemasse", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "ref:EU:EVSE": "FRPD1PACTANM", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26222159987, + 46.19663303593 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3587354498117542547;FREBNPRVEJP6FQDH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/RVEJP6FQDH;Bourgneuf, pont d’aiton", + "ref": "RVEJP6FQDH;346925" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25544200000, + 45.55512100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;400 kW", + "description": "A9 - Aire de Rivesaltes (direction Perpignan)", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2024-05-30", + "ref:EU:EVSE": "FRELCPAARIV", + "opening_hours": "24/7", + "capacity": "9", + "operator": "ELECTRA", + "socket:type2_combo:output": "200 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89191000000, + 42.75076600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E95127005", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-02-16", + "description": "Parking Cergy-Pontoise Nautilus - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00840210000, + 49.05089450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref": "FRCPIE6666625", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT MAGNANVILLE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-15", + "description": "SONEPAR CONNECT MAGNANVILLE", + "ref:EU:EVSE": "FRCPIE6666625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69294100000, + 48.97381800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/LLO42FTEKYQLUU;Golbey, 74 rue Général Lelcerc Parking Leclerc", + "amenity": "charging_station", + "start_date": "2023-10-24", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPLLO42FTEKYQLUU;FRECHP8137120953834605501", + "ref": "977996;LLO42FTEKYQLUU", + "network": "Easycharge services;Easy Charge", + "capacity": "9", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42278400000, + 48.19122800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX20*15", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX2015", + "description": "Paris | Rue des Pyrénées 356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38646590000, + 48.87387010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3615448911859593303", + "operator:email": "roaming@freshmile.com", + "ref": "446507", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/BDJU4LBRSL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40231000000, + 49.21268200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0504", + "start_date": "2021-06-04", + "ref": "FR*V75*PPX05*04", + "opening_hours": "24/7", + "description": "Paris | Rue Monge 99", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35245395044, + 48.84116058051 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "682178", + "description": "Freshmile France/LRK1CDAXWF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5494864442240441460" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03379100000, + 42.57529900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-05-06", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Ford - Gap", + "ref:EU:EVSE": "FRSSDPMAURINFORD050001", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10825200000, + 44.57335300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22299001", + "description": "SAINT HELEN - Parking de l'Eglise", + "start_date": "2023-05-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95877500000, + 48.47170900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - CUFFY - Le Pont Canal", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E117885", + "network": "MODULO - CUFFY - Le Pont Canal", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E117885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06775000000, + 46.94724000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZTLE22AC66816;FRZTLE22AC66815;FRZTLE22AC66813;FRZTLE22AC66814;FRZTLE24DC70175", + "ref": "66813;66814;66815;66816;70175", + "operator": "ZEBORNE;ZEborne", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lu- Ve 08:00-19:00, Sa 09:00-19:00;Mo-Fri 08:00-19:00,Sat 09:00-19:00", + "network": "TOYOTA REIMS;Toyota - Reims", + "start_date": "2021-08-30;2021-07-27", + "description": "Toyota - Reims - 24KW DC ;Toyota - Reims - 22kW AC ", + "owner:ref:FR:SIREN": "408829224", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08400800000, + 49.23863700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "18 kW;50 kW;43 kW", + "ref:EU:EVSE": "FRS10P1834633524627058913", + "ref": "75455", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/QUNCIFCCI8", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92025900000, + 48.09924800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81004001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-10", + "description": "ALBI - Place Du Foirail Du Castelviel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13705000000, + 43.92675500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST8923;FRIZFPFAST8921;FRIZFPFAST8913;FRIZFPFAST8912;FRIZFPFAST8911;FRIZFPFAST8922", + "start_date": "2024-03-01", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - VANNES", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*89*2*_*_;FR*SOD*S*FAST*89*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79118580000, + 47.66052720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-26", + "description": "OuestCharge - Diva Sp - Piriac-Sur-Mer - Gringoire;PIRIAC-SUR-MER - Place Marcel Gringoire", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44125001;FRS44P44125A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54722200000, + 47.37803200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MELUN - Almont", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "ref:EU:EVSE": "FRS77E77288007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67885760000, + 48.54366200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62297001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ÉPERLECQUES - Rue de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15383200000, + 50.80533200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-27", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LA CROIX EN TOURAINE – Centre Lorin", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - LA CROIX EN TOURAINE – Centre Lorin", + "ref": "FRS37E221435;FRS37E221427", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221435;FRS37E221427", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98495561000, + 47.34035720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS55E66350;FRS55E66351", + "network": "MODULO - VOID VACON - Rue du stade", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS55E66350;FRS55E66351", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "description": "MODULO - VOID VACON - Rue du stade", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62304100000, + 48.69056300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2021-11-17", + "socket:type2_combo:output": "24 kW", + "description": "LY205 - PERRACHE SUD", + "ref": "FR*SOD*S*LYON*131*2*_*_;FR*SOD*S*LYON*131*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON13112;FRGLYPLYON13111;FRGLYPLYON13121;FRGLYPLYON13122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82456000000, + 45.74652400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5916601", + "opening_hours": "24/7", + "ref": "FR*MEL*P59166*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "BOUSBECQUE - Rue Saint Joseph" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07695833100, + 50.77107070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-08-30", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "7", + "ref:EU:EVSE": "FRSSDPJLRAAV130101", + "description": "Jaguar Land Rover - Marseille", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40135000000, + 43.27669900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 06:30-18:00,Tu 06:30-18:00,We 06:30-18:00,Th 06:30-18:00,Fr 06:30-18:00", + "ref": "FRCPIE6573245", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CONNECT ARRAS", + "ref:EU:EVSE": "FRCPIE6573245", + "start_date": "2023-09-23", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT ARRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80775700000, + 50.30861100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "892695", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/LLIU1YABC2MHX2", + "ref:EU:EVSE": "FRLE2P2357436559338871101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271600000, + 48.23802200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Sauveterre de Guyenne | Parking Cimetière", + "ref": "95452b36-5c62-5293-a0df-c4b0ce335038", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08872800000, + 44.69438900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Évry-Courcouronnes - Avenue de Mousseau", + "operator": "2_AM0001_SMOYS", + "ref": "2c2fbdc4-726b-515a-8907-eae67d75f8d5", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45033300000, + 48.63052700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-17", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "description": "Allego NISSAN Cannes Le Cannet", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO0001431", + "operator:email": "info@allego.eu", + "network": "Allego NISSAN Cannes Le Cannet", + "ref": "FRALLEGO0001431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01365000000, + 43.57196000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "PIA - Bompas", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3936EVCP03;LFR3936EVCP01;LFR3936EVCP02", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3936EVCP03;LFR3936EVCP01;LFR3936EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92694400000, + 42.74013100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "start_date": "2020-08-19", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "ISOLA - PARKING VILLAGE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE9311;FRM06PNICE9312", + "ref": "FR*SOD*S*NICE*93*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04837400000, + 44.18634500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS88E162023;FRS88E162025", + "network": "MODULO - VENTRON - Pl. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - VENTRON - Pl. de la mairie", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-05-30", + "ref": "FRS88E162023;FRS88E162025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87145000000, + 47.93990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*222*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "SAINT-RAPHAEL - PLACE DORTOLAN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ22212;FRA16PWIIZ22211", + "start_date": "2022-12-02", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76660300000, + 43.42487600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510455", + "description": "Freshmile France/DOAFWLQLHH", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4363968478163940152", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42526800000, + 49.14977500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Mr. Bricolage - Laroque-des-Albères", + "capacity": "3", + "start_date": "2024-02-14;2024-02-20", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PMBRLDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94312723452, + 42.54775533963 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/JBWSNH5CN2;Saint-Genest-Malifaux, Rue du bois ternay", + "ref": "JBWSNH5CN2;742998", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP9022113215732288376;FREBNPJBWSNH5CN2", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41770500000, + 45.34045400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "927774", + "capacity": "2", + "description": "ENGIE MAMP - Bornes publiques/430F41D8-A506-4422-B48E-6169BF157013", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP670617456394245673", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39039900000, + 43.33900100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E593500033;FRP07E59350003;FRP07E593500031", + "operator": "Bouygues E&S", + "description": "LILLE - Vieux Lille", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-08-28;2022-10-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06407000000, + 50.64159800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Roche-La-Moliere, Parking stade Beaulieu", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "IWGHRPVBV0", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPIWGHRPVBV0", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31678503000, + 45.42282428000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP925631325073224708;FREBNPPIHT6XLNGT", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "492171;PIHT6XLNGT", + "description": "Réseau eborn/PIHT6XLNGT;Moulins, Rue Pierre Ardillon", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32960000000, + 46.56562000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Première Classe Touques", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP121012", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09647300000, + 49.34740100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3776090638711482599", + "ref": "1112625", + "description": "Freshmile France/LLWYVA2UL5MMYD", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09599900000, + 49.45517300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "start_date": "2021-10-12", + "amenity": "charging_station", + "ref": "FR*V75*PPX12*12", + "opening_hours": "24/7", + "description": "Paris | Rue des Pirogues de Bercy 44", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38811100000, + 48.83341370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2768924394003819082", + "opening_hours": "We,Sa,Th,Fr,Tu,Mo 07:00-19:30", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLOCSDBLX265Y8", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1072590" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42439700000, + 43.37404000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "description": "BMW Mini - Sens", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:30, Tu 08:30-12:00, Tu 14:00-18:30, We 08:30-12:00, We 14:00-18:30, Th 08:30-12:00, Th 14:00-18:30, Fr 08:30-12:00, Fr 14:00-18:30, Sa 09:00-12:00, Sa 14:00-17:30", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPPANELBMW891001", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29020100000, + 48.17765400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-07-04", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PDAMVILLEMARKET", + "opening_hours": "24/7", + "description": "900007", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07028700000, + 48.86549000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "ref:EU:EVSE": "FRS21P21573A", + "operator:email": "roaming@freshmile.com", + "description": "SICECO/FR*S21*P21573*A", + "capacity": "2", + "amenity": "charging_station", + "ref": "180413", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78819800000, + 47.44059500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "SAINT-GERMAIN-EN-LAYE - LYAUTEY", + "start_date": "2023-12-11", + "ref:EU:EVSE": "FRY03E78551012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09583000000, + 48.89500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "operator": "TANAY Electricité", + "amenity": "charging_station", + "description": "Riviera Car Center - Nice", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRRM1PRCCNICE01DCPKGCLIENT", + "operator:email": "tanayelectricite@hotmail.com", + "network": "Riviera Car Center", + "start_date": "2022-10-11", + "ref": "RCC-NICE-01-DC-PKGCLIENT", + "owner:ref:FR:SIREN": "421334566" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29091523160, + 43.70607256725 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "WAAT", + "ref:EU:EVSE": "FRWATP4493247127016759756", + "amenity": "charging_station", + "description": "WAAT/FRWATLUL6LWON2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "815427", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89971700000, + 42.72549500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "description": "IONITY Orléans Nord", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "start_date": "2021-10-07", + "charging_station:output": "350 kW", + "ref": "FRIONE433500", + "ref:EU:EVSE": "FRIONE433500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72078800000, + 48.26387400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E41134;FRS51E41135", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "ref": "FRS51E41134;FRS51E41135", + "operator": "Modulo", + "description": "MODULO - SILLERY - Rue Nicolas Brulart", + "opening_hours": "24/7", + "network": "MODULO - SILLERY - Rue Nicolas Brulart", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13230000000, + 49.19736100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77P77316C", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "description": "Morêt-Loing-et-Orvanne - Veneux", + "ref": "96900506-a237-4dcd-a850-6a460c0e7dac", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79017100000, + 48.37989200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF080349", + "description": "RELAIS DE GRAINCOURT", + "amenity": "charging_station", + "start_date": "2023-03-24", + "capacity": "4", + "ref": "FRHPCPNF080349", + "opening_hours": "24/7", + "charging_station:output": "300 kW;54 kW", + "owner:ref:FR:SIREN": "531681182;531681183;531681185;531681184", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08970000000, + 50.12350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34128002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LAROQUE - Rue du Mazet - Parking covoiturage Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72132897377, + 43.92438818460 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PZCGGHS", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/ZCGGHS", + "ref": "18166", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15694000000, + 47.64110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5828345461068580105", + "capacity": "2", + "amenity": "charging_station", + "ref": "1179774", + "network": "Freshmile France", + "description": "Freshmile France/XF0FLNMPLJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14219900000, + 49.26080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-23", + "ref:EU:EVSE": "FRMGPP92051L", + "opening_hours": "24/7", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Duc d Orléans;Métropolis/FR*MGP*P92051*L", + "ref": "599076", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27645800000, + 48.88951300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-17", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Fiat - Douai Dechy", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLEMPEREURFIAT591871", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12196600000, + 50.34399700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "network": "CAMPING LES MARSOUINS", + "description": "CAMPING LES MARSOUINS", + "owner:ref:FR:SIREN": "324079086", + "start_date": "2022-06-28", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRC2P003801;FRC2P003802", + "operator:email": "contact@car2plug.fr", + "ref": "FRC2P003801;FRC2P003802" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03213810000, + 42.56156610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*GACO*5*6*_*_;FR*SOD*S*GACO*5*5*_*_;FR*SOD*S*GACO*5*3*_*_;FR*SOD*S*GACO*5*2*_*_;FR*SOD*S*GACO*5*1*_*_;FR*SOD*S*GACO*5*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-09-22", + "network": "GARENNE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLGCPGACO531;FRLGCPGACO511;FRLGCPGACO521;FRLGCPGACO541;FRLGCPGACO551;FRLGCPGACO561", + "owner:ref:FR:SIREN": "219200359", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23923200000, + 48.90331300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Libourne – 6 Rue de Montaudon", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "ref": "d7ac72f2-955e-534e-97df-e4b8dc7083e7", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24232500000, + 44.91005200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "CARREFOUR CTC - CHABRIGNAC", + "ref:EU:EVSE": "FRSE1PSE19CABA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32735200000, + 45.32020200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRBHMP5549532770987815271", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "description": "BornEco/647774ed14343644885a1bcc", + "ref": "814572" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43071800000, + 44.96810100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "446705", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/G5WSCVUOGV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P6659181722564419241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37266300000, + 46.68271100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PPQDOFXYO9K", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Meyreuil, Parking Mourvedre, Rue des Mineurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49543000000, + 43.47307400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/BRDLUZETXL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P8798277991467146420", + "ref": "402452", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22550600000, + 48.22329500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VALBONNE PARKING VALIS BONNA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-07-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ7412;FRA16PWIIZ7411", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*74*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00724100000, + 43.64208600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLI1O4L2R16P33", + "ref:EU:EVSE": "FRFR1P1974943100315794420", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "892074", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18383600000, + 50.65434800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Story - Angers", + "ref:EU:EVSE": "FRPD1PSTOANG", + "start_date": "2023-12-26", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59414106879, + 47.46631822311 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSHKDVBCA4O", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Neulise, Les Jacquins;Réseau eborn/SHKDVBCA4O", + "ref": "SHKDVBCA4O;96008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17787800000, + 45.88705800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP4246815611825902724", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "ENGIE MAMP - Bornes publiques/37400550-6E39-4131-B9C9-A0BDC9BF860C", + "operator:email": "support@evzen.com", + "ref": "927768", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50141100000, + 43.29567300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "start_date": "2023-11-28", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "description": "NETTO - LABLACHERE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*694*2*_*_;FR*SOD*S*OTHR*694*1*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR69411;FROTHPOTHR69421", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21594600000, + 44.45937800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPMPHPDX", + "ref": "MPHPDX;32950", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/MPHPDX;Annecy Cran-Gevrier, Avenue Beauregard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09858000000, + 45.90400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref": "598212;AG4BDJWYFT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/AG4BDJWYFT;Lac De Paladru, Parking de la plage", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPAG4BDJWYFT;FREBNP8402925753987593295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55023000000, + 45.47318400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-03-29", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR37321;FROTHPOTHR37311", + "opening_hours": "24/7", + "network": "CAMPING LE ROUGE GORGE", + "operator:email": "sav@izivia.com", + "description": "CAMPING LE ROUGE GORGE - SAINT-LAURENT-SUR-SEVRE", + "ref": "FR*SOD*S*OTHR*373*2*_*_;FR*SOD*S*OTHR*373*1*_*_", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90371800000, + 46.95792900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "479190", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/DXWOUAPF4B", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRFR1P7248182571384771208", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38964800000, + 47.93208700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP33175", + "description": "Tesla Supercharger Limoges, France - E.Leclerc", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26848721000, + 45.87071308000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLYOEYMQ63HPCR", + "ref:EU:EVSE": "FRFR1P6024407603867132831", + "operator": "Freshmile | FR*FR1", + "ref": "1171092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96696300000, + 47.22740700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Gamm Vert - Desvres", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGAMMVERTDESVRES622401", + "capacity": "4", + "opening_hours": "Mo 09:00-12:15, Mo 14:00-19:00, Tu 09:00-12:15, Tu 14:00-19:00, We 09:00-12:15, We 14:00-19:00, Th 09:00-12:15, Th 14:00-19:00, Fr 09:00-12:15, Fr 14:00-19:00, Sa 09:00-12:15, Sa 14:00-19:00", + "start_date": "2022-05-06", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84311500000, + 50.65941900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPB6A41O3TWES", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "971972", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRFR1P5207758292111816447", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96766900000, + 43.15732100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "description": "PLEMET - Rue de Rennes (parking PMU et CMB)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22183001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59151600000, + 48.17665100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "49545", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-sat 08:00-18:00", + "start_date": "2020-12-03", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "GARAGE DE BRETAGNE - MAZDA ALENÇON", + "description": "Mazda - Alençon - 22kW AC ", + "ref:EU:EVSE": "FRZMAE22AC49545", + "owner:ref:FR:SIREN": "342913449", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07182500000, + 48.43219600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lessafre6;Lessafre4;Lessafre5;Lessafre1;Lessafre2;Lessafre3", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-02-16", + "operator": "RossiniEnergy", + "capacity": "40", + "ref:EU:EVSE": "FRROSE317;FRROSE314;FRROSE313;FRROSE312;FRROSE315;FRROSE316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08047700000, + 50.67588900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78314001", + "start_date": "2023-07-24", + "description": "ISSOU - Rue De La Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78959300000, + 48.98589600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2023-03-16", + "opening_hours": "24/7", + "description": "Aire du Bourbonnais", + "ref:EU:EVSE": "FRIOYE438752;FRIOYE438751;FRIOYE438710;FRIOYE438706;FRIOYE438705;FRIOYE438707;FRIOYE438708;FRIOYE438709;FRIOYE438753", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE438752;FRIOYE438751;FRIOYE438710;FRIOYE438706;FRIOYE438705;FRIOYE438707;FRIOYE438708;FRIOYE438709;FRIOYE438753", + "network": "Aire du Bourbonnais", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36272400000, + 46.49748500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS53E53096002", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "43 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ERNEE - Place De L'Hôtel De Ville", + "socket:type2_combo:output": "43 kW", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93954002857, + 48.29696273804 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-12", + "description": "BANYULS-SUR-MER - Avenue de la République", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66016005", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12969600000, + 42.48098300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Biscarrosse", + "amenity": "charging_station", + "start_date": "2023-05-26", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Biscarrosse", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE008901;FRIENE008902", + "ref:EU:EVSE": "FRIENE008901;FRIENE008902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15277782000, + 44.41476197000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35033001B1", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "BOURG DES COMPTES - 2 rue de laille ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73658800000, + 47.92908900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-MOMA-001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2018-04-03", + "description": "MOULINS LA MARCHE", + "ref:EU:EVSE": "FRS61P61297A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47833300000, + 48.64767100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7629917270448219553", + "description": "Freshmile/FTHFZJ44NR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "694211", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90531300000, + 48.94984800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-01-15", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/WNMVMD;Verfeil, Poste", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "WNMVMD;64889", + "ref:EU:EVSE": "FRS31PWNMVMD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66252000000, + 43.65780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-04-18", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92026010", + "description": "COURBEVOIE - Rue Kleber" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24870212465, + 48.89476065896 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANTANA - 20137 - 1", + "ref:EU:EVSE": "FRCG0E000309;FRCG0E000310", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-08-20", + "ref": "FRCG0E000309;FRCG0E000310", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargeguru.com", + "network": "LANTANA - 20137 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.31080200000, + 41.66563300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE15612;FRM06PNICE15611", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2021-11-29", + "description": "SAINT-ANDRE-DE-LA-ROCHE - PARKING RIMIEZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*156*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28697300000, + 43.73738800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "4a11910a-cab7-5f73-b7b9-54e06bb05838", + "description": "MOBIVE | Marmande | Place Birac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16722200000, + 44.49666600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*30*5*_*_;FR*SOD*S*SIGE*30*3*_*_;FR*SOD*S*SIGE*30*1*_*_;FR*SOD*S*SIGE*30*2*_*_;FR*SOD*S*SIGE*30*4*_*_;FR*SOD*S*SIGE*30*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-09-25;2020-09-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE3061;FRSIGPSIGE3021;FRSIGPSIGE3011;FRSIGPSIGE3031;FRSIGPSIGE3041;FRSIGPSIGE3051", + "description": "SIGEIF - PARKING TERRE NEUVE - MEUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23561289603, + 48.80788034328 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "142182;142185;142184", + "capacity": "2", + "amenity": "charging_station", + "description": "Bump - O'Logistique - Fleury Merogis", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "operator:email": "exploitation@bump-charge.com", + "ref:EU:EVSE": "FRBMPS142184;FRBMPS142185;FRBMPS142182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36046240000, + 48.61962540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4252EVCP01;LFR4252EVCP02;LFR4252EVCP04;LFR4252EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4252EVCP01;LFR4252EVCP02;LFR4252EVCP04;LFR4252EVCP03", + "description": "LE BLANC - Europe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06910400000, + 46.64112000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "be9a741a-2076-5253-91d7-6a492ee461e6", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Brive | Piscine", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53970100000, + 45.16088600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "description": "Saint-Vrain - Rue de la Libération", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1ac248b4-45fa-583d-ba53-e2f75fa06e8e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33056500000, + 48.54182200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP06000NCEJUST1CE", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-31;2024-01-22", + "operator": "ELECTRIC 55 CHARGING", + "description": "INTENCITY - PARKING JUSTICE - NICE", + "opening_hours": "24/7", + "ref": "FR*55C*P06000*NCE*JUST1CE", + "charging_station:output": "3.68 kW;2.3 kW;7.36 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27393600000, + 43.69627400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3289EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "PAU Jean Mermoz", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3289EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37905000000, + 43.32110300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPVDP8747422321756962554", + "amenity": "charging_station", + "ref": "917310", + "network": "Proviridis", + "socket:type2_combo:output": "180 kW;60 kW", + "opening_hours": "24/7", + "charging_station:output": "22 kW;180 kW;60 kW", + "description": "Proviridis/627a5db9627ec747f90abea6", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11573900000, + 45.88813300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref": "RD0UYEY3MU;591365", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Mably, Parking Salle des Sports;Réseau eborn/RD0UYEY3MU", + "ref:EU:EVSE": "FREBNP7443841684855988153;FREBNPRD0UYEY3MU", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06272100000, + 46.08675100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP44210A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP44210A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - LAPEYRE Trignac", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21117876390, + 47.29393457837 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E27681001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking gare de Vernon Giverny - EFFIA", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47817500000, + 49.09190400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT034001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Yzeure", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-07-12", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36775200000, + 46.55231100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allevard, Rue De La Republique;Réseau eborn/YHBVNIPGQG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "85694;YHBVNIPGQG", + "ref:EU:EVSE": "FREBNPYHBVNIPGQG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07607100000, + 45.39274600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR49111;FROTHPOTHR49112", + "description": "INTERMARCHE - HENNEBONT", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-09-09", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*491*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26271300000, + 47.80982300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "529388", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1283161710429417887", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/L3UEPRL0WC", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10091700000, + 43.56425000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "ref:EU:EVSE": "FRUBIE10063079;FRUBIE10035724", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-130", + "ref": "seno0100000021", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11852800000, + 49.49580600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YO82KYWPO8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5774548574726531408", + "ref": "487242", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68039600000, + 47.17747400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "description": "TOULOUSE - Av. de Grande Bretagne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-11", + "charging_station:output": "22 kW;90 kW;180 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRTLSE31555030" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41116500000, + 43.60168400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/U1KC483SJF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6478030021417600637", + "operator": "Freshmile | FR*FR1", + "ref": "482055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.80107900000, + 48.79664100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P4184873250260677218", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1088319", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLWRI0IKJ1FTQF", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00570000000, + 49.34303000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS12E12043001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CALMONT - Chemin De Pinson", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52392200000, + 44.27243100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GROSROUVRE - Centre", + "ref:EU:EVSE": "FRY03E78289001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-01-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75864000000, + 48.78258000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - ePremium - Loire - Ire", + "start_date": "2023-05-03", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRS49P49178A", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97844400000, + 47.61577800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/Combeau15juin", + "operator:email": "roaming@freshmile.com", + "ref": "39037", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PCOMBEAU15JUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738000000, + 47.71180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20649190000, + 49.97161590000 + ], + [ + 1.20653860000, + 49.97159580000 + ], + [ + 1.20658870000, + 49.97157670000 + ], + [ + 1.20675250000, + 49.97160850000 + ], + [ + 1.20697650000, + 49.97165070000 + ], + [ + 1.20711180000, + 49.97167770000 + ], + [ + 1.20713420000, + 49.97168120000 + ], + [ + 1.20724030000, + 49.97184610000 + ], + [ + 1.20742450000, + 49.97180910000 + ], + [ + 1.20757210000, + 49.97179960000 + ], + [ + 1.20760160000, + 49.97180820000 + ], + [ + 1.20760160000, + 49.97186690000 + ], + [ + 1.20752650000, + 49.97190660000 + ], + [ + 1.20755460000, + 49.97193930000 + ], + [ + 1.20756940000, + 49.97198940000 + ], + [ + 1.20756940000, + 49.97203590000 + ], + [ + 1.20751840000, + 49.97208250000 + ], + [ + 1.20744330000, + 49.97211010000 + ], + [ + 1.20738570000, + 49.97211270000 + ], + [ + 1.20738700000, + 49.97188590000 + ], + [ + 1.20752650000, + 49.97190660000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH14E59295001", + "network": "pass pass électrique", + "start_date": "2019-12-03", + "description": "HAZEBROUCK - Rue de la plaine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55261100000, + 50.73027000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "VITRE - 3 place du general de gaulle ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35360003B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21131500000, + 48.12283700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63193A", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Lempdes - Verny", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2022-09-19", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19676030000, + 45.76825800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AULNOYE-AYMERIES - Place de la mairie", + "ref:EU:EVSE": "FRH02E59033002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83383600000, + 50.19997800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS32PBFTTPG", + "description": "SDEG32/BFTTPG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "21840", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62520600000, + 43.93430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94017005", + "start_date": "2021-06-04;2021-10-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHAMPIGNY-SUR-MARNE - Rue du Bois L'Abbé", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54210300000, + 48.81035500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*273*1*_*_", + "description": "ROUBION - PARKING VILLAGE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE27311;FRM06PNICE27312", + "start_date": "2023-11-20", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05027040246, + 44.09241175823 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "a3978870-f14e-56aa-b685-ca66d3101d9e", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Amand de Coly | Place de la Gare", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24543000000, + 45.06318300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-23", + "ref:EU:EVSE": "FRSIGPSIGE40512;FRSIGPSIGE40511", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*405*1*_*_", + "description": "SIGEIF - 33 RUE ALBERT ALLINE - LE PLESSIS-BOUCHARD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23283000000, + 49.00220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "ROUEN - Parking Couture", + "ref:EU:EVSE": "FRC01E76540008", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-02-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08505900000, + 49.42972800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3345EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "THIONVILLE Gare", + "ref:EU:EVSE": "LFR3345EVCP01", + "charging_station:output": "180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15943400000, + 49.34998300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Guéret | Place Bonnyaud", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "ref": "1459e72b-48f2-5337-b739-fa42eb77c9c2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87210500000, + 46.16832800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "ref": "74da6a16-6fc1-5546-8394-3e25cd3cce24", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "description": "GOULT - D 900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22999700000, + 43.85924900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAMBRAI - Impasse de Cheverny", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-09-09", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FR594E59122004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24250900000, + 50.18906600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3636EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "BOURGES Avenir", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3636EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38398100000, + 47.08460500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "start_date": "2023-12-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMPSE", + "description": "Intermarché - Pacy-sur-Eure", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39720501087, + 49.00994034936 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "MQRRNQ3NVI;30305", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPMQRRNQ3NVI", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/MQRRNQ3NVI;Lalouvesc, Place du lac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53403900000, + 45.11985900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - BRICONAUTES LE CANNET DES MAURES", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP83031A", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "FRETIP83031A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33667100000, + 43.39495300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "50 kW;100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;150 kW;22 kW", + "start_date": "2023-03-15;2023-02-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORMDL", + "capacity": "11", + "description": "Cora - Mondelange", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17496350000, + 49.25990180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market Riec-Sur-Belon", + "opening_hours": "24/7", + "start_date": "2024-06-03", + "ref:EU:EVSE": "FRDRVPCRFMKT293401", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.68790800000, + 47.84620200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42005AA", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "start_date": "2019-07-08", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42005AA", + "charging_station:output": "50 kW;43 kW", + "description": "SEMOB Andrézieux-Z.Commerce" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29216700000, + 45.52347200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH19611;FROTHPAUCH19612", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "ref": "FR*SOD*S*AUCH*196*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AUCHAN - VILLEBON-SUR-YVETTE", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25236630000, + 48.70601830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SOLABAIE RENNES BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6821515", + "start_date": "2023-11-20", + "ref:EU:EVSE": "FRCPIE6821515", + "description": "SOLABAIE RENNES BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72770300000, + 48.10267200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3012772281155523218", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/DK6XS3IOSC", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "514976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13584300000, + 43.52106900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "ref": "FR*V75*P9015*04", + "description": "Paris | Rue de la Convention 99", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "start_date": "2021-04-14", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P901504", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28693100000, + 48.84166300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5630328085539169899", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/XYEYOSNA3V", + "opening_hours": "24/7", + "ref": "782469", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38072200000, + 48.02203500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Bordeaux - Merignac", + "ref:EU:EVSE": "FRTSLP1752", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68110900000, + 44.83420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLIVPQQL72NWYD", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6461994752632052789", + "ref": "892257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.88742300000, + 48.69167300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "capacity": "6", + "description": "R3 - Marquette 2", + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89882107", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06500000000, + 50.68092900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "461637", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8948583559841697185", + "description": "MobiSDEC/AEY2CFNUTF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67393900000, + 49.26689900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS13PWOHIDZZHLB", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Noves, Route du 19 mars 1962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90321700000, + 43.87559000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1010802", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA7P2940622728586966104", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA7", + "capacity": "10", + "charging_station:output": "6.9 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA7LZPUFV4BH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30064400000, + 47.04819000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-05;2021-04-22", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "VIHIERS - Place du Minage;OuestCharge - Diva Sp - Vihiers - Minage", + "ref:EU:EVSE": "FRS49P49373A;FRS49E49373001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53580500000, + 47.14499100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2023-04-11", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "description": "LAGARRIGUE - Avenue de Castres", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8113000122;FRS81E8113000121;FRS81E8113000112;FRS81E8113000111", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27619406318, + 43.58090456422 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF058742", + "charging_station:output": "150 kW", + "description": "LES TILLEULS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF058742", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680453", + "start_date": "2020-06-12", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14480000000, + 48.89190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT CIRQ SOUILLAGUET - Salle Des Fêtes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-05", + "ref:EU:EVSE": "FRS46E46258001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45687200000, + 44.70546400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-05", + "ref:EU:EVSE": "FRS56PZSCHEU", + "network": "Morbihan Energies", + "description": "Saint-nolff - Place Saint Mayeuil", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.65063100000, + 47.70314300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59263001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "GOEULZIN - MAIRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09570871000, + 50.31826499000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923300", + "description": "Quimperle-Place Winston Churchill" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55223800000, + 47.86878600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/PQFPGY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PPQFPGY", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "85847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76372000000, + 47.71630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-29", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346051622;FRLMSE12346051621;FRLMSE12346051611;FRLMSE12346051612", + "opening_hours": "24/7", + "ref": "B033", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "description": "CIVAUX-1-2;CIVAUX-1-1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66512000000, + 46.44446900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "ref:EU:EVSE": "FRMGPP93005B", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "419973", + "description": "Métropolis/FR*MGP*P93005*B", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967400000, + 48.93369700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE832;FRSIGPSIGE821;FRSIGPSIGE822;FRSIGPSIGE831", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 61 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT", + "ref": "FR*SOD*S*SIGE*8*2*_*_;FR*SOD*S*SIGE*8*3*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-27;2024-08-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24008200000, + 48.83989700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRATLP8897614463141308544", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "capacity": "11", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref": "881100", + "description": "Atlante/FRATL*BRUA*7001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58904100000, + 50.49259100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000081814", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Cambrai", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20305000000, + 50.17340200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Arette la Pierre Saint Martin | Parking Office de Tourisme", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8d48b718-802c-5cf3-91d9-3b4e8e12e6d7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74462800000, + 42.97749700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85166001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "description": "LES SABLES-D'OLONNE (Olonne-sur-Mer) - Parking Leclerc", + "owner:ref:FR:SIREN": "200042489", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77849500000, + 46.51455300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSMDVIL", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-01-28", + "description": "MONDEVILLE", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29482200000, + 49.16527300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*16*1*_*_", + "description": "IZIVIA | SAINT VICTORET - BOULEVARD BARTHELEMY ABBADIE", + "start_date": "2022-03-31", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "ref:EU:EVSE": "FRIZMPMAMP1612;FRIZMPMAMP1611", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24432300860, + 43.41527770377 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-06-19", + "socket:type2_combo:output": "100 kW;160 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Match - Achenheim", + "ref:EU:EVSE": "FRPD1PMATACH", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "100 kW;160 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63149400000, + 48.58321300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-21", + "description": "Monistrol-sur-Loire, Place du 19 Mars 1962", + "ref:EU:EVSE": "FREBNPIBSXDFRIST", + "ref": "IBSXDFRIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285285000, + 45.29281583000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP8127755060551382729", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref": "877215", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "description": "Norauto - Bornes publiques/571A57B1-5FBB-49D4-99A0-29733B8C8D33", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57982100000, + 43.63004200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-10-30;2023-10-01", + "owner:ref:FR:SIREN": "891118473", + "description": "hotelF1 - Saint-Priest", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "ref:EU:EVSE": "FRPD1PHF1SPR", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "160 kW;50 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91286720000, + 45.70532950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNPFKGQLSRA16", + "ref": "75017;FKGQLSRA16", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "description": "Baratier, Rond-Point des Orres;Réseau eborn/FKGQLSRA16", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48477000000, + 44.54740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-02", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "description": "e-Totem - Campanile Beaune", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP21054B", + "ref": "FRETIP21054B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85298933084, + 46.99843167723 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR18021;FROTHPOTHR18011;FROTHPOTHR18031;FROTHPOTHR18041;FROTHPOTHR18051", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-15", + "ref": "FR*SOD*S*OTHR*180*4*_*_;FR*SOD*S*OTHR*180*3*_*_;FR*SOD*S*OTHR*180*1*_*_;FR*SOD*S*OTHR*180*2*_*_;FR*SOD*S*OTHR*180*5*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "ARCACHON", + "operator:email": "sav@izivia.com", + "description": "ARCACHON - PEREIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19304700000, + 44.65849600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-12-27", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS1012;FRCPSPCAPS1011", + "ref": "FR*SOD*S*CAPS*10*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "IGNY - LOR METE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22276600000, + 48.73960500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1219565093716981350", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/OTTLB5IUZU", + "operator": "Freshmile | FR*FR1", + "ref": "471144" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92489800000, + 45.69760700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP123011", + "start_date": "2024-08-01", + "capacity": "1", + "description": "CENTER PARCS LES TROIS FORETS - Parking G", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98569000000, + 48.61367900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "492018", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/UR6Z3WPAH1", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6410369519815422986" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14264000000, + 48.04072600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSUAP44015A", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRSUAP44015A", + "start_date": "2023-03-17", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW;22 kW", + "description": "HYPER U BLAIN", + "network": "HYPER U BLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74802926289, + 47.47162144900 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "749346", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7109802446993524011", + "opening_hours": "24/7", + "description": "Freshmile France/LEH2TPO0J7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99012800000, + 43.13476700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPRENTACAR202001", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Rent a car - Bastia", + "start_date": "2023-07-20", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45500000000, + 42.70670900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - AUNEAU - Rue Emile Labiche", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRS28E134756", + "network": "MODULO - AUNEAU - Rue Emile Labiche", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E134756", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77246800000, + 48.46123600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P8153451669159980492", + "ref": "75452", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/PCG9MT1EER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99776700000, + 48.19404500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLGQD1LPWL", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P166731133654499199", + "ref": "708689", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85769000000, + 45.71610100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2018-01-11", + "capacity": "2", + "amenity": "charging_station", + "description": "ST LO - Dollee", + "owner:ref:FR:SIREN": "215005026", + "ref:EU:EVSE": "FRS50P505027", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08785900000, + 49.11941000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-29;2022-12-30", + "capacity": "1;2", + "operator:email": "fr.duhamel@bouygues-es.com;support@alizecharge.fr", + "network": "Le Plein Tarnais", + "socket:type2_combo:output": "50 kW;48 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8127600222;FRS81E8127600221;FRS81E8127600211;FRS81E81276002", + "operator": "Bouygues E&S;BOUYGUES ENERGIES SERVICES", + "charging_station:output": "50 kW;43 kW;48 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "SALVAGNAC - Les Sourigous" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68570400000, + 43.91468700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE474153;FRIOYE474106;FRIOYE474105;FRIOYE474104;FRIOYE474102;FRIOYE474101;FRIOYE474103;FRIOYE474151;FRIOYE474152", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Montmarault", + "opening_hours": "24/7", + "description": "Montmarault", + "ref": "FRIOYE474153;FRIOYE474106;FRIOYE474105;FRIOYE474104;FRIOYE474102;FRIOYE474101;FRIOYE474103;FRIOYE474151;FRIOYE474152", + "start_date": "2023-12-20", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96796900000, + 46.32439700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Begrolles-en-Mauges - Abbaye;BEGROLLES-EN-MAUGES - Rue l'Abbaye", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49027A;FRS49E49027001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-03-28;2024-04-05;2021-04-30", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93622500000, + 47.14020400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PWENDSW", + "description": "Mouv'Oise/WENDSW", + "ref": "86705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75391000000, + 49.09560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-05", + "operator:email": "support@alizecharge.fr", + "description": "SETQUES - Route départementale 942", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH10E62794001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17156400000, + 50.72227100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30133008", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-08-02", + "description": "LE GRAU DU ROI - Quai Christian Gozioso", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13730955646, + 43.54076343204 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P4745835066930012419", + "charging_station:output": "22 kW", + "ref": "1122933", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/LLXVZVFZU2GHFO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60692600000, + 48.13913600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GIZAY-1-2;GIZAY-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346390561;FRLMSE12346390551", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B042", + "start_date": "2016-02-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42395000000, + 46.43994500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Metropolis - Citadine - Ormesson-sur-Marne - Mairie;Métropolis/FR*MGP*P94055*A", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94055A", + "ref": "484859", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54029900000, + 48.78607300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-05-17", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*1*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - 32 BOULEVARD SENARD - SAINT-CLOUD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE111;FRSIGPSIGE112", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22040600000, + 48.85466000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COIGNIERES - Avenue De La Gare", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E78168002", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92046700000, + 48.74423400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Epinal - ZA Le Saut le Cerf 1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89397448", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46653500000, + 48.19723500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "817d189c-9f47-5c79-872c-9bb180f784d6", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Montbron | Parking Communal", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50021100000, + 45.66590900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE63DABA", + "start_date": "2024-06-25", + "description": "Super U - ARLANC", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74480300000, + 45.38686100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "ref:EU:EVSE": "FRALLPEVCARSPORTB", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "PORT DE BOUC", + "capacity": "10", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00148700000, + 43.41236800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3385EVCP03;LFR3385EVCP01;LFR3385EVCP02", + "capacity": "7", + "charging_station:output": "120 kW;50 kW;22 kW", + "ref:EU:EVSE": "LFR3385EVCP01;LFR3385EVCP02;LFR3385EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "BACHANT Maubeuge", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85325200000, + 50.20653500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CUGNAUX - Av De Toulouse", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31157001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34481200000, + 43.53760900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-04-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Hyères, Parking Hippodrome;Réseau eborn/E13WCUMQM3", + "ref:EU:EVSE": "FREBNPE13WCUMQM3;FREBNP3150744274907605432", + "ref": "787002;E13WCUMQM3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15391900000, + 43.07978800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLMEYN6X8551HL", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "971798", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6364095964673860724", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89013700000, + 49.18184600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E751020472;FRP07E751020471;FRP07E75102047", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2022-12-09", + "operator": "Bouygues E&S", + "description": "PARIS - Réaumur Saint Denis", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34958880000, + 48.86710120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "G0F2IUTCE8", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPG0F2IUTCE8", + "operator:email": "contact@reseau-eborn.fr", + "description": "Huez, Parking Des Jeux " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06767980000, + 45.09141350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "capacity": "2", + "charging_station:output": "240 kW", + "amenity": "charging_station", + "opening_hours": "Mo,Sa,Su,Th,We,Fr,Tu 08:00-18:00", + "ref": "1173465", + "ref:EU:EVSE": "FREFLP9184358671054075483", + "description": "Road/66c738edbfcff0001c4d228d", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "socket:type2_combo:output": "240 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71366600000, + 49.50888700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-26", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR30012;FROTHPOTHR30011", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*300*1*_*_", + "description": "BISCHWILLER - PARKING RUE DU GENERAL LECLERC", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.85492500000, + 48.76511300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT ST-AUNES", + "description": "SONEPAR CONNECT ST-AUNES", + "ref": "FRCPIE6608885", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6608885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97574700000, + 43.65076100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/DQETGFDKRS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPDQETGFDKRS", + "ref": "32920" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29113900000, + 46.18456200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P8691976616112648951", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s570507", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1181736" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20314100000, + 47.99308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8455295017150735906", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/IOXGW7EMIU", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "521303" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78968500000, + 43.45226900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "ACCOR Hotels", + "description": "IBIS STYLES CHALON SUR SAONE", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "521675777", + "charging_station:output": "22 kW", + "start_date": "2021-06-11", + "ref": "FRTCBP00426", + "ref:EU:EVSE": "FRTCBP00426", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83247700000, + 46.79978000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPI9JXBK1GZ8N", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3650786166835137641", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref": "1009170" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55828300000, + 47.21771400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINHYUNDAI660001", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-10-21", + "operator:email": "support@driveco.com", + "description": "Hyundai - Perpignan", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90548000000, + 42.66213500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2904100", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Coray-Rue de Pors Clos", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.83274700000, + 48.06076800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/T9T4YNRQ8T", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8456554680452020445", + "ref": "101741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96866600000, + 47.95124800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP003B36", + "ref:EU:EVSE": "FRZP1P5672785896855079762", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "576122", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17973100000, + 48.49600300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRRSEP01052A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "481251", + "description": "Régie Services Energie/FR*RSE*P01052*A", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99086100000, + 46.02291700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64775", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PPONTREMYSAV", + "description": "FDE 80/Pontremysav", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90322000000, + 50.05420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*18*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST1811;FRIZFPFAST1812;FRIZFPFAST1813", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-04-23", + "description": "IZIVIA FAST - MCDONALDS - ALES", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09918200000, + 44.10869400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E5013;FRS41E5014", + "description": "MODULO - PRUNIERS EN SOLOGNE - Salle des Fêtes", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E5013;FRS41E5014", + "network": "MODULO - PRUNIERS EN SOLOGNE - Salle des Fêtes", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66979600000, + 47.32142900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS72E72225001", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "OISSEAU LE PETIT - RD 338 - Route d'Alençon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09134800000, + 48.35057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*88*3*_*_;FR*SOD*S*LYON*88*2*_*_;FR*SOD*S*LYON*88*1*_*_;FR*SOD*S*LYON*88*4*_*_", + "ref:EU:EVSE": "FRGLYPLYON8831;FRGLYPLYON8821;FRGLYPLYON8811;FRGLYPLYON8841", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY606 - BOILEAU - MONTGOLFIER", + "start_date": "2021-06-21", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84858000000, + 45.77158800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - CHAMBOURG SUR INDRE - Marcel Viraud", + "network": "MODULO - CHAMBOURG SUR INDRE - Marcel Viraud", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E215634;FRS37E215632", + "ref": "FRS37E215634;FRS37E215632" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96435995000, + 47.18394345000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25059", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/ZMJPKM", + "ref:EU:EVSE": "FRS56PZMJPKM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07617000000, + 47.74840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P45028B", + "start_date": "2023-04-27", + "capacity": "2", + "amenity": "charging_station", + "description": "Mairie de Beaugency - PARKING AGORA", + "opening_hours": "24/7", + "ref": "FRG10P45028B", + "charging_station:output": "22 kW", + "network": "Mairie de Beaugency - PARKING AGORA", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62069330000, + 47.78075800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH13612;FROTHPAUCH13611", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*136*1*_*_", + "description": "AUCHAN - VINEUIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37554700000, + 47.57318000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-02-18", + "ref": "FR*SOD*S*SIGE*227*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - RUE DES 4 SAISONS - NOISY-LE-GRAND", + "ref:EU:EVSE": "FRSIGPSIGE22711;FRSIGPSIGE22712", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54968700000, + 48.84768100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0EE000830", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCG0EE000830", + "opening_hours": "24/7", + "description": "Sasu Youlife - 35890 - 1", + "network": "Sasu Youlife - 35890 - 1", + "charging_station:output": "11 kW", + "start_date": "2023-08-02", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70493100000, + 47.94738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P2788400316313963559", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454245", + "description": "Leclerc/BJPQZ2JJPW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25665500000, + 49.15548800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "5e263b6a-b70f-507a-ab57-72069a404162", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Rogatien | Rue de La Rochelle", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06977000000, + 46.14952000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOUVILLE Rue de la Mairie", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE91BACA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27410400000, + 48.43124900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA88E15122001", + "charging_station:output": "50 kW;43 kW", + "network": "CPO Alizé Liberté Public", + "description": "MAURS - Rue du 8 mai 1945 - Parking centre vétérinaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19696300000, + 44.70952900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3573EVCP02;LFR3573EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "VILLENEUVE SUR LOT Fumel", + "ref": "LFR3573EVCP02;LFR3573EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73871000000, + 44.40894500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "description": "GRENOBLE - Rue Jules Horowitz - Horowitz", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-29;2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69933400000, + 45.20505000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "133462", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/E1O6R0CI23", + "ref:EU:EVSE": "FREBNPE1O6R0CI23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07213500000, + 46.03464800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZDNIEIV5PZ", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6088354189768739578", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "682298", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29426400000, + 48.16710800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E95018001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-06-19;2020-06-17;2021-11-03", + "description": "ARGENTEUIL - Val d'Argent Sud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25120000000, + 48.94242500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/P0A4HH2T9K", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "75041", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPP0A4HH2T9K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40560700000, + 45.03563600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPBSGPC", + "opening_hours": "24/7", + "description": "Bussy Saint Georges - Hôtel Première Classe", + "start_date": "2023-01-06", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70466000000, + 48.83257000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Asnières-sur-Seine Concorde II - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E92004001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29032980000, + 48.91252050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6652755", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED CGED AMIENS", + "ref": "FRCPIE6652755", + "charging_station:output": "22 kW", + "description": "CGED CGED AMIENS", + "operator:email": "info@chargepoint.com", + "start_date": "2022-11-10", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35825800000, + 49.90152800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/KR0Q8THZQY;Chécy , Biocoop 1", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "ref": "756879;KR0Q8THZQY", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP5030273697002640110;FRECHPKR0Q8THZQY", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03349100000, + 47.90536900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref": "FR*V75*PPX19*06", + "description": "Paris | Rue Adolphe Mille 8", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1906", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38880000000, + 48.88860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "90 kW", + "ref:EU:EVSE": "FRFR1P7472436043819277470", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/FXARSCAO92", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;90 kW", + "ref": "752421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84818900000, + 45.71411300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX0106", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "ref": "FR*V75*PPX01*06", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Avenue Victoria 17", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34681000000, + 48.85788000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "346349", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/SG4BBYR1FY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1115240786349774263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33752600000, + 43.81470400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-03-12", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Fréjus", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-19:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPVOLVOFREJUS836001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71888700000, + 43.43852100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22239001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plumaudan-Place maréchal Foch (parking près de l'église)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12555600000, + 48.35774200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11262007", + "description": "LE GRAND NARBONNE - Av De Provence", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01494600000, + 43.19472100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW;22 kW", + "operator:email": "advenir@zeborne.com", + "opening_hours": "Mo-sat 08:30-19:30", + "owner:ref:FR:SIREN": "378183818", + "socket:type2_combo:output": "0 kW;22 kW", + "network": "SuperU - Evron", + "ref": "16993;16992;16987;16986", + "description": "SuperU - Evron - 7.4kW ", + "start_date": "2019-03-13", + "ref:EU:EVSE": "FRZSUE74AC16992;FRZSUE74AC16987;FRZSUE74AC16986;FRZSUE74AC16993", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41292100000, + 48.14711800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "521474", + "capacity": "3", + "opening_hours": "24/7", + "description": "SDEA 10/YV9WPIXPRX", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS10P7021531531367062183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53158500000, + 48.39697500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "79414", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PEYMSLB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/EYMSLB", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62740000000, + 49.93660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-03-21", + "ref": "FR*SOD*S*FAST*58*1*_*_", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - QUAEDYPRE", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST5811;FRIZFPFAST5812;FRIZFPFAST5813", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43489022565, + 50.95621137706 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44088A;FRS44E44088001", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Maisdon-Sur-Sevre - Keelby;MAISDON-SUR-SEVRE - Allée De Keelby", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-18;2021-04-29", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38504800000, + 47.09896700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77244A;FRS77E77244001", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61Y8K5YQPJP1YT4BZ0", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-24;2016-10-25", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Larchant;LARCHANT - Rue Des Fosses Bretonnières" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59789000000, + 48.28329800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGYMP6613490245382531591", + "operator": "GreenYellow | FR*GYM", + "ref": "1030611", + "description": "GreenYellow Shift Mobility/79" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25053400000, + 49.12575000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - LA CHAPELLE AUX NAUX - Rue principale", + "description": "MODULO - LA CHAPELLE AUX NAUX - Rue principale", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E221234;FRS37E221232", + "ref": "FRS37E221234;FRS37E221232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42726000000, + 47.31830100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - COMMERCY - Piscine", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E167583;FRS55E167582;FRS55E158019;FRS55E158013;FRS55E158012;FRS55E157955;FRS55E157954;FRS55E157987;FRS55E157988;FRS55E158006;FRS55E158007;FRS55E158018", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2022-10-10", + "description": "MODULO - COMMERCY - Piscine", + "ref:EU:EVSE": "FRS55E167583;FRS55E167582;FRS55E158013;FRS55E157988;FRS55E157987;FRS55E157955;FRS55E157954;FRS55E158006;FRS55E158007;FRS55E158012;FRS55E158018;FRS55E158019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60222700000, + 48.75507600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-08-05", + "charging_station:output": "7.36 kW", + "description": "VIL07 - FLACHET", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON10931;FRGLYPLYON10921;FRGLYPLYON10911;FRGLYPLYON10941", + "ref": "FR*SOD*S*LYON*109*4*_*_;FR*SOD*S*LYON*109*1*_*_;FR*SOD*S*LYON*109*2*_*_;FR*SOD*S*LYON*109*3*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88884000000, + 45.76869300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Mobilize Power Solutions", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMBZELYSAY", + "network": "FOURRAGE ST NAZAIRE", + "ref": "8b1ea200-f635-49b0-82a4-92491cfe7387", + "description": "FOURRAGE ST NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.27468982687, + 47.25904590469 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WattzHub", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "capacity": "4", + "description": "WattzHub/64b8ebf05e05ac8c687384e3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSMIP2409269799962003647", + "charging_station:output": "22 kW", + "ref": "903798", + "operator": "WattzHub | FR*SMI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35092000000, + 48.10082200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "HYPER U BORNE 4", + "network": "HYPER U BORNE 4", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6550965;FRCPIE6610765", + "start_date": "2022-10-12", + "ref": "FRCPIE6550965;FRCPIE6610765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85206900000, + 43.45655600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "446807", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/RXLCWHBKRY", + "capacity": "10", + "ref:EU:EVSE": "FRLE2P4588545509859694100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129000000, + 48.01588700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint Ciers Sur Gironde | Rue Georges Picotin", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "ref": "59be5f62-1b98-5345-a275-831a715790b4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60933500000, + 45.29009600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "95f64089-3dac-5584-9328-49b8d5f6eb9b", + "charging_station:output": "3.3 kW;22 kW", + "description": "Évry-Courcouronnes - Route de Versailles", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40906200000, + 48.61774400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Airbus - Montoir de Bretagne - G79 Intérieur du site", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPALVX", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16432800000, + 47.31505300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3916EVCP01;LFR3916EVCP02;LFR3916EVCP03", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3916EVCP01;LFR3916EVCP02;LFR3916EVCP03", + "description": "LAVARDAC - Nerac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29961600000, + 44.16817100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "start_date": "2019-01-18;2019-01-04", + "description": "CAGNES - GENERAL LECLERC RP", + "ref": "FR*SOD*S*NICE*63*3*_*_;FR*SOD*S*NICE*63*2*_*_;FR*SOD*S*NICE*63*1*_*_", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE6311;FRM06PNICE6312;FRM06PNICE6321;FRM06PNICE6331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16355000000, + 43.65826000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ANTIBES - PARKING SEMBOULES", + "ref": "FR*SOD*S*WIIZ*199*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref:EU:EVSE": "FRA16PWIIZ19912;FRA16PWIIZ19911", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06734500000, + 43.59740800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/fenetrpark", + "capacity": "2", + "amenity": "charging_station", + "ref": "454446", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6453590755973927263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01936000000, + 48.84980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-11", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "But - Fourmies", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRPD1PBUTFRM", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03488500000, + 50.02342400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "FL632BDMHN;39137", + "description": "Lalley, Route de Mens;Réseau eborn/FL632BDMHN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPFL632BDMHN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67848000000, + 44.75789800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/E1ECBE2B-195F-4294-9F1D-D8C53B022F47", + "ref:EU:EVSE": "FREVZP5945054814991679195", + "ref": "1173366", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12541600000, + 47.49931000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "start_date": "2020-06-17", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E37261001", + "description": "TOURS - Vinci Gare", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69370500000, + 47.39050700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPUFKDSKNUHA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/UFKDSKNUHA;Villard-Bonnot, Place de l'Espace Aragon", + "ref": "UFKDSKNUHA;30260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88878700000, + 45.23832700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/65e9ef7fb99dd9001cb19d08", + "ref": "1072614", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FREFLP7884447649046361526", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "charging_station:output": "3.7 kW", + "opening_hours": "Fr,Th,Su,Sa,Mo,Tu,We 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22004900000, + 43.70178400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Thaon Les Vosges - ZA Innova 3000 2", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP143010", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40705100000, + 48.25417900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TAUVNWVOHL", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6523513281793038566", + "charging_station:output": "22 kW", + "ref": "782421", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94949900000, + 45.55631500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue de la Roquette 162", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "start_date": "2021-07-08", + "amenity": "charging_station", + "ref": "FR*V75*PPX11*02", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38412500000, + 48.85860600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XKURJS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PXKURJS", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "242248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22186000000, + 47.86470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Les pavillons du Belvedere - Porto Vecchio", + "ref:EU:EVSE": "FRSSDPPAVILLONSBELVEDERE201371", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 08:30-12:30, Mo 16:00-20:00, Tu 08:30-12:30, Tu 16:00-20:00, We 08:30-12:30, We 16:00-20:00, Th 08:30-12:30, Th 16:00-20:00, Fr 08:30-12:30, Fr 16:00-20:00, Sa 08:30-12:30, Sa 16:00-20:00, Su 08:30-12:30, Su 16:00-20:00", + "start_date": "2021-07-15", + "charging_station:output": "7.36 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.29867600000, + 41.61264600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-09-07", + "capacity": "2", + "description": "900068", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PBERNAYDUBUS", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59670400000, + 49.08725200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS21P21043A", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21043*A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "232345" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64783900000, + 47.60017000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-06-10", + "description": "NEAUPHLE-LE-VIEUX - Cressay", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78443002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86881960000, + 48.82736910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK751;FRQPKPQPRK731;FRQPKPQPRK721;FRQPKPQPRK711;FRQPKPQPRK741", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-10-05;2022-06-14", + "opening_hours": "24/7", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*7*4*_*_;FR*SOD*S*QPRK*7*2*_*_;FR*SOD*S*QPRK*7*1*_*_;FR*SOD*S*QPRK*7*3*_*_;FR*SOD*S*QPRK*7*5*_*_", + "description": "QPARK - 75039 PARIS - CARDINET BATIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31525700000, + 48.88889300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "590840", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP558569661187622815", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLSGZEYO9K", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00273700000, + 43.18643300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "ref": "FRIONE413700", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2022-06-30", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Verdun Nord", + "operator": "IONITY", + "ref:EU:EVSE": "FRIONE413700", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50841900000, + 49.11980200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST PIERRE EGLISE - Eglise", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50840001", + "network": "e-charge50", + "start_date": "2017-03-10", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40356180000, + 49.66817300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "01F5ZAKH61DPW9CNSTFH732PYT", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-09-18;2015-05-28", + "ref:EU:EVSE": "FRS77P77522A;FRS77E77522001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "VILLIERS-SUR-SEINE - Rue Des Dronots;Villiers-sur-Seine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37613100000, + 48.45589100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "RELAIS DE SAINT MATHURIN ALLONNE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080198", + "network": "TotalEnergies Charge Rapide", + "start_date": "2020-12-21", + "owner:ref:FR:SIREN": "531680543;531680542", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF080198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12740000000, + 49.40240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E2932;FRS41E2933", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - OUZOUER LE MARCHE - Pl. du 8 Mai", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E2932;FRS41E2933", + "network": "MODULO - OUZOUER LE MARCHE - Pl. du 8 Mai", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52632100000, + 47.91121400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLYQNFS", + "start_date": "2016-10-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Quéven - Place du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41565000000, + 47.79031300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892662", + "ref:EU:EVSE": "FRFR1P636284294387203648", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/UIWGGGBRB8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10042200000, + 49.22594500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "ref:EU:EVSE": "FRMGPP92040I", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Proximité - Issy-les-Moulineaux - Gallieni", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791608000, + 48.82499159000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "capacity": "7", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "description": "Volvo - Europ Auto - Dunkerque - V Motors", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPEUROPAUTOVOLVO596401", + "start_date": "2023-04-24;2020-01-21", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35939500000, + 51.02169400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref": "FRC2AEDE0040B1GNBC00138T;FRC2P007701", + "network": "PARKING NEGRESKO", + "amenity": "charging_station", + "socket:type2_combo:output": "47 kW", + "start_date": "2023-10-13", + "owner:ref:FR:SIREN": "814699492", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2AEDE0040B1GNBC00138T;FRC2P007701", + "operator": "CAR2PLUG", + "description": "PARKING NEGRESKO", + "operator:email": "contact@car2plug.fr", + "charging_station:output": "22.08 kW;47 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39062960000, + 43.26988270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/DV6PHDO51M", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P4352765825387818986", + "ref": "505758" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37285500000, + 46.68264000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Dolus | Passage de la Cure", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "9316cd70-4b45-56e1-9954-d34094dc4141", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26506800000, + 45.91099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "12", + "operator": "TotalEnergies Marketing France", + "description": "SAEMES | PARKING JEAN BOUIN", + "network": "SAEMES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "317032993", + "start_date": "2022-02-21", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25236147324, + 48.84445061872 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "capacity": "22", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "description": "PATHE AUBIERES", + "ref:EU:EVSE": "FRSITE00000215", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14264620000, + 45.75744830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref": "485172", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/Y4W4XRLU0W", + "ref:EU:EVSE": "FRLE2P7358407443555901396" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478700000, + 46.99932600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PZWOMJGRCUI", + "start_date": "2021-01-01", + "description": "Fos-Sur-Mer, Allée Henri Barbusse", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94423100000, + 43.45442100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "699119", + "ref:EU:EVSE": "FRS89P1246939637226848524", + "description": "SDEY/PMKVSDGNNM", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13413900000, + 48.35176000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ4911;FRA16PWIIZ4912", + "description": "GREOLIERES PARKING FAISSE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*49*1*_*_", + "start_date": "2018-06-19", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94356100000, + 43.79614300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2722045320106262283", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FWEIOZ4CNV", + "ref": "472188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78046900000, + 48.58577700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSATEPA", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-09-11", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Magasin Satoriz - Epagny Metz-Tessy", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07766765026, + 45.93667008697 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/BPQKMWBSOI;Saint-Montan, Bauvache", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPBPQKMWBSOI", + "ref": "30335;BPQKMWBSOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62543100000, + 44.43869900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/75E0646F-9442-4D64-9F92-C036DD8FCA24", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1068228", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP1714232494807580465", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40314800000, + 43.31420300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-06-23", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR65921;FROTHPOTHR65912;FROTHPOTHR65911;FROTHPOTHR65922", + "description": "CAMPING LA GRANDE COTE - LA BARRE-DE-MONTS", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA", + "ref": "FR*SOD*S*OTHR*659*2*_*_;FR*SOD*S*OTHR*659*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14640000000, + 46.88674900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPUKPJV9OC6M", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "85928;UKPJV9OC6M", + "description": "Réseau eborn/UKPJV9OC6M;La Brillanne, Place Bon Accueil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89082200000, + 43.92725200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLYMP7A9NPRHZR", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "1191046", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP9154726457161538614", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85148000000, + 45.70516000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "REINE DE DIJON - FLEUREY-SUR-OUCHE", + "amenity": "charging_station", + "capacity": "1", + "network": "REINE DE DIJON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*347*2*_*_;FR*SOD*S*OTHR*347*1*_*_;FR*SOD*S*OTHR*347*3*_*_;FR*SOD*S*OTHR*347*4*_*_", + "start_date": "2022-03-17", + "ref:EU:EVSE": "FROTHPOTHR34741;FROTHPOTHR34731;FROTHPOTHR34711;FROTHPOTHR34721", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85081500000, + 47.30685200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLSONO173G4T4A", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P9173715858391552917", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1154856" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16008700000, + 49.09850700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP30029", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Bron, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92375100000, + 45.72203500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1193665", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5444223621922511889", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLWGIU2Q7J0LSP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47903000000, + 48.39323800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2023-01-24", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPNUDANTVOLVO213001", + "description": "Volvo - Chenove", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02106500000, + 47.28764700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PBUEILGARE", + "description": "900125", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44356190000, + 48.92566730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Mael Pestivien-Le bourg", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22138001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29595500000, + 48.39405800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "879486520", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-Sun 08:30-20:00", + "network": "ROADY SERVICE", + "description": "Roady - Jacou - 22kW AC;Roady - Jacou - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "50491;50490", + "start_date": "2020-12-22", + "ref:EU:EVSE": "FRZIME22AC50490;FRZIME22AC50491", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90577740000, + 43.66000500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "description": "Yesss_StLeonard", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-03-01", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61440000000, + 50.69085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "ref:EU:EVSE": "FRY01E78138004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "CHANTELOUP LES VIGNES - Rue Edouard Legrand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02970700000, + 48.97513700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE414805;FRIOYE414804;FRIOYE414803;FRIOYE414802;FRIOYE414751;FRIOYE414709;FRIOYE414708;FRIOYE414707;FRIOYE414705;FRIOYE414704;FRIOYE414703;FRIOYE414702;FRIOYE414701;FRIOYE414706;FRIOYE414710;FRIOYE414711;FRIOYE414712;FRIOYE414752;FRIOYE414753;FRIOYE414754;FRIOYE414755;FRIOYE414756;FRIOYE414801;FRIOYE414809;FRIOYE414810;FRIOYE414811;FRIOYE414851;FRIOYE414852;FRIOYE414853", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2019-04-26;2022-12-21", + "opening_hours": "24/7", + "network": "Corbières Nord;Corbières Sud", + "description": "Corbières Nord;Corbières Sud", + "socket:type2_combo:output": "50 kW;350 kW", + "capacity": "11;18", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE414805;FRIOYE414804;FRIOYE414803;FRIOYE414802;FRIOYE414751;FRIOYE414709;FRIOYE414708;FRIOYE414707;FRIOYE414705;FRIOYE414704;FRIOYE414703;FRIOYE414702;FRIOYE414701;FRIOYE414706;FRIOYE414710;FRIOYE414711;FRIOYE414712;FRIOYE414752;FRIOYE414753;FRIOYE414754;FRIOYE414755;FRIOYE414756;FRIOYE414801;FRIOYE414809;FRIOYE414810;FRIOYE414811;FRIOYE414851;FRIOYE414852;FRIOYE414853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54192800000, + 43.17689500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "474501", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDED52/JMO7A9PAVP", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P7954100772157856630" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37916600000, + 47.91356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-10-11;2022-02-20", + "operator": "Bouygues E&S", + "description": "TARBES - HARAS - Rue du régiment de Bigorre", + "ref:EU:EVSE": "FRS65E65440013", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07012500000, + 43.23002600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Saint-Pierre-le-Moûtier II", + "owner:ref:FR:SIREN": "898270251", + "description": "Saint-Pierre-le-Moûtier II", + "amenity": "charging_station", + "start_date": "2023-03-16", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE006302;FRIENE006301", + "ref:EU:EVSE": "FRIENE006302;FRIENE006301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11009100000, + 46.79769200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS34E34336001", + "charging_station:output": "22 kW", + "description": "VILLENEUVE LES BEZIERS - Place Des Anciennes Ecoles", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27946388889, + 43.31692220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "LA FERRIERE BOCHARD", + "ref": "SE61-FEBO-001", + "ref:EU:EVSE": "FRS61P61165A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03067140000, + 48.41300020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/MBIIAYIANW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRFR1P7335954482332233149", + "operator": "Freshmile | FR*FR1", + "ref": "471111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63468500000, + 48.53298300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-13", + "description": "Gardouch, République;Roulez Électrique En Haute-Garonne/AMFDJR", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "capacity": "2;4", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "33430;AMFDJR", + "ref:EU:EVSE": "FRS31PAMFDJR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68390000000, + 43.39010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "ASNIERES-SUR-SEINE - 88 Avenue De La Marne", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92004014", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-04-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28789900000, + 48.90993900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000168", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "Hôtel Restaurant de la Poste", + "charging_station:output": "22 kW", + "start_date": "2022-03-22", + "operator:email": "info@chargeguru.com", + "description": "Hôtel Restaurant de la Poste", + "ref:EU:EVSE": "FRCG0E000168" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68890800000, + 45.61641600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-22", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*125*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CLANS - PARKING VILLAGE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE12511;FRM06PNICE12512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14699100000, + 43.99637100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Capbreton | Parking du lac", + "capacity": "2", + "amenity": "charging_station", + "ref": "f9343893-558f-50db-a453-d3e923a2ebdb", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43968500000, + 43.65324800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-15", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "RETTEL / RUE DE LA CHARTREUSE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE57RABA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32963200000, + 49.44223900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Georges MELIES, ZA Croix Bonnet - Bois d'Arcy", + "ref:EU:EVSE": "FRBMPS155758;FRBMPS161490;FRBMPS161489;FRBMPS161488;FRBMPS155757;FRBMPS161487", + "ref": "161490;155757;161489;161488;161487;155758", + "charging_station:output": "22 kW;90 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01007940000, + 48.80163410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR4113EVCP03;LFR4113EVCP02;LFR4113EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4113EVCP03;LFR4113EVCP02;LFR4113EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "DRAVEIL - Waldeck rouseau", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43339500000, + 48.68748800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13POQNYMVOKHN", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-9E, Boulevard de L'Océan", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39766000000, + 43.24166000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Juvisy-sur-Orge - Allée Jean Moulin", + "amenity": "charging_station", + "ref": "6643ce03-ed67-5699-b346-1bf1dce7f600", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37655600000, + 48.69172300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2020-10-28", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000AVGSTRUF", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84000*AVG*STRUF", + "description": "PARKING SAINT RUF - AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80969300000, + 43.93648200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3934EVCP03;LFR3934EVCP02;LFR3934EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CASTELSARRASIN- Hippodrome", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3934EVCP03;LFR3934EVCP02;LFR3934EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09852000000, + 44.05810700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PTDBLRB", + "description": "Une Tartine De Bonheur - Le Loroux-Bottereau", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35950280911, + 47.24415585868 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cluses, Autoport;Réseau eborn/RYHFTY2PT7", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPRYHFTY2PT7", + "ref": "RYHFTY2PT7;75200", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59334000000, + 46.04980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XDCMNUFZH1", + "ref:EU:EVSE": "FRFR1P7783161967576187453", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "479238", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06978100000, + 49.44698700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Aix-en-Provence Hauts de Brunet - METROPOLE AIX MARSEILLE PROVENCE", + "ref:EU:EVSE": "FRP01E13001003", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43907780000, + 43.54747700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Fillinges, Parking Pont de Fillinges", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPDHQUXFGSJ0", + "ref": "DHQUXFGSJ0", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35334150000, + 46.16324970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Monistrol-Sur-Loire, Place Maréchal Jourda de Vaux;Réseau eborn/JDWQT9CAE8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "JDWQT9CAE8;346775", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPJDWQT9CAE8;FREBNP706264238790189328" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17089000000, + 45.29510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*468*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR46812;FROTHPOTHR46811", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-08-19", + "description": "BRICOMARCHE - PORNIC", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07042900000, + 47.11181000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLP6PLJ7U1OZTS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6724811138646423409", + "operator": "Freshmile | FR*FR1", + "ref": "978044", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07533800000, + 47.11217200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "383 D10;382 D10", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "start_date": "2023-10-13", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10015073;FRUBIE10069569" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36001400000, + 49.50499200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CORSVFNDDL", + "ref": "471027", + "ref:EU:EVSE": "FRFR1P3439526440250551244", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40013900000, + 44.89506900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTLSE31555004", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-06-13", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - Allée de Brienne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43099000000, + 43.60593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "11 kW;43 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLWF28ZOM23XUM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6244355985885531438", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1110654", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78139000000, + 44.56861000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/GXNIEP4LJS", + "ref:EU:EVSE": "FRS14P3669381418165585911", + "operator:email": "roaming@freshmile.com", + "ref": "457470", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19685100000, + 48.89656100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TREBES - Parking Le Stade", + "ref:EU:EVSE": "FRS11E11397002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44472222222, + 43.20888890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-11", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BUC - Rue Louis Pasteur", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78117002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11754200000, + 48.76703500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "SDE54 CCPS VEZELISE - Avenue Jacques Leclerc", + "opening_hours": "24/7", + "ref": "157a3034-e099-5733-8041-55b3d49ad315" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09309000000, + 48.48811000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "94331", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70PVILLERSEXEL", + "description": "SIED70/villersexel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42996000000, + 47.54910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-15;2021-11-03", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRH13E62617001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "NOEUX LES MINES - rue Nationale ", + "charging_station:output": "50 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66304500000, + 50.48032700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "ST GERMAIN EN COGLES - 3 Place de la Mairie ", + "ref:EU:EVSE": "FRS35P35273001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26269500000, + 48.40428200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG 63/FR*S63*P63113*D;SIEG63 - ePremium - Clermont Ferrand - République", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "518303", + "start_date": "2023-05-31", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63113D", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10163000000, + 45.78575800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLIU9E3JZM9F8E", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1179843", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3600562420203704542", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.45712300000, + -21.33614500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS32PPQSUGK", + "operator:email": "roaming@freshmile.com", + "description": "SDEG32/PQSUGK", + "capacity": "2", + "amenity": "charging_station", + "ref": "21815", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16162000000, + 43.52430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94002007", + "start_date": "2021-09-13", + "description": "ALFORTVILLE - Rue Etienne Dolet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42783580000, + 48.78409710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "network": "Groupe Polmar - Volkswagen Caen - 14112 - 1", + "description": "Groupe Polmar - Volkswagen Caen - 14112 - 1", + "charging_station:output": "22 kW;225 kW", + "socket:type2_combo:output": "225 kW", + "amenity": "charging_station", + "ref": "FRCG0E001285;FRCG0E001284;FRCG0E001283", + "capacity": "3", + "ref:EU:EVSE": "FRCG0E001285;FRCG0E001284;FRCG0E001283", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36793564000, + 49.22856686000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "description": "CARROS - ROURE RP", + "ref:EU:EVSE": "FRM06PNICE2412;FRM06PNICE2411", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*24*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2019-01-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19146630790, + 43.77342757476 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "5f4ee01b-efee-52c9-9b03-cdf4228bb487", + "operator": "200__TE47", + "description": "MOBIVE | Agen | Place Fallières" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61693600000, + 44.19953500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE38111;FRSIGPSIGE38112", + "description": "SIGEIF - GARE PARKING SUD - TAVERNY", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*381*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22100000000, + 49.02540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MAROMME LA MAINE - Parking Centre De Loisirs", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76410003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02385300000, + 49.47915000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "POITIERS Bignoux", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3382EVCP01;LFR3382EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3382EVCP01;LFR3382EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36763900000, + 46.58458100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "9b2d5617-1e1b-5fb1-acb8-4782c5237cac", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | La Brée les Bains | Rue de Saint Denis", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35275900000, + 46.01646500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS82PALBIAS", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/albias", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "46654", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44930000000, + 44.09220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P92320*FAR*LECLERC", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92320FARLECLERC", + "amenity": "charging_station", + "start_date": "2021-11-15", + "capacity": "1", + "description": "AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27435200000, + 48.79504400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CHATELLERAULT Fouchardière", + "ref": "LFR3813EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3813EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52549600000, + 46.78880600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Saint-Lys", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-04-13;2023-04-20", + "ref:EU:EVSE": "FRPD1PITMLYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18944067382, + 43.51192656963 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPPNSRMA", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "PNSRMA;31789", + "start_date": "2020-06-11", + "description": "Bourg-De-Peage, Complexe aquatique Diabolo;Réseau eborn/PNSRMA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03997000000, + 45.01690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP74181A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP74181A", + "description": "e-Totem - DASSIN Kyriad Metz-Tessy", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10819592418, + 45.93526183726 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORAUX", + "capacity": "11", + "description": "Cora - Auxerre", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55231965939, + 47.84303847078 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "network": "DRIVECO", + "description": "Carrefour Market - Gévezé", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT358501", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78545500000, + 48.22032200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPLATHF", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "description": "Lattes - Hôtel F1", + "socket:type2_combo:output": "24 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89605300000, + 43.58672300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH15411;FROTHPAUCH15412", + "ref": "FR*SOD*S*AUCH*154*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - ST CYR SUR LOIRE", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65790893226, + 47.42630174513 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6776025", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6776025", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR SAINT-JEAN-DE-L", + "start_date": "2023-08-22", + "description": "SONEPAR SAINT-JEAN-DE-L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61944200000, + 43.40913100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "597879", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/IZNCFBJ5N9", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3389868050761164511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30009000000, + 46.95266100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75P901101", + "description": "Paris | Avenue Parmentier 4", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9011*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37987400000, + 48.85895200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4414059922382528414", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/YKZIHSYQXN", + "ref": "682289", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89764300000, + 48.08101000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1724", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Bourges", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34484300000, + 47.04939300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P263334325096649819", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "441039", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/THW2NLV0GF", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85091200000, + 47.91030300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2022-12-16", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89283504", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "description": "R3 - Norauto V2", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12902400000, + 50.61526800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/ZUIJICJJYI", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1882799400240558661", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "462042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22024100000, + 49.17808500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12232001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-12-22", + "description": "ST JEAN ST PAUL - St Jean d'Alcas/Aire de Camping Car", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00881600000, + 43.92636500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LPS1IDBK7", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1078407", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA5P3554211377592420642" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25604900000, + 46.19315500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "start_date": "2021-04-28;2024-04-03", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49332001;FRS49P49332A", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - La Seguiniere - Industrie;LA SEGUINIERE - Parking Rue de l'Industrie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93815200000, + 47.05595000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-29;2022-05-01", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81099002", + "charging_station:output": "50 kW;43 kW", + "description": "GAILLAC Salle des Fêtes - Rue Philippe Noiret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89349900000, + 43.90058100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681334;531681337;531681336;531681335", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRHPCPNF011512", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF011512", + "start_date": "2023-03-08", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS SAS CONNECT AUTOMOBILES FRANCE", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72010000000, + 48.98160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-11", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GOURDON - Parking piscine municipale", + "ref:EU:EVSE": "FRS46E46127003", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37805500000, + 44.73111100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPWIHLJMHAB", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Le palais - 9-13 Place de L Hôtel de ville", + "start_date": "2019-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15679787965, + 47.34725176704 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DECHY - Parc d'activités du LUC", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH04E59170003", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11642900000, + 50.34635200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2921700", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Pont Aven-Rue des Abbès Tanguy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.75246200000, + 47.85653700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MANDÉ - Jeanne d'arc", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94067007", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41795800000, + 48.84081000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP90109747", + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;63 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "description": "ENGIE Vianeo - A61 Port Lauragais Nord", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2023-11-30", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80876500000, + 43.35316600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "75b4a347-2a26-57f4-a8e6-b0940a2698c6", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Sulpice de Roumagnac | Parking le Donzac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39244200000, + 45.20172100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE5422;FRSIGPSIGE5421", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - RUE FINOT - MARCOUSSIS", + "start_date": "2021-05-21", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*54*2*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23052900000, + 48.64033800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "capacity": "8", + "description": "Allego Carrefour Le Mans", + "amenity": "charging_station", + "network": "Allego Carrefour Le Mans", + "ref:EU:EVSE": "FRALLEGO9009492;FRALLEGO9009482;FRALLEGO9009481;FRALLEGO9006901;FRALLEGO9006712;FRALLEGO9006711;FRALLEGO9006902;FRALLEGO9009491", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9009492;FRALLEGO9009482;FRALLEGO9009481;FRALLEGO9006901;FRALLEGO9006712;FRALLEGO9006711;FRALLEGO9006902;FRALLEGO9009491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21703788000, + 47.97371755000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "sylvie.bontaz@griyotire.com", + "operator": "RESTAURANT LA BIOLLE", + "opening_hours": "Mo-FR 8:00-17:00", + "capacity": "2", + "amenity": "charging_station", + "ref": "6c92a157-0252-486b-840b-de0df725f1e4", + "network": "RESTAURANT LA BIOLLE", + "owner:ref:FR:SIREN": "901200204", + "charging_station:output": "22 kW", + "description": "RESTAURANT LA BIOLLE", + "start_date": "2023-04-20", + "ref:EU:EVSE": "FRLMS11747171" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52000000000, + 46.06000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Pau | Parking Zénith 1", + "capacity": "2", + "amenity": "charging_station", + "ref": "dc73a81d-449a-5c7e-bc62-3e97255f7ed1", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36618400000, + 43.33250800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "description": "FONTENAY-LE-COMTE - Place Thivercay - Rue Georges Clémenceau", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85092004", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80692000000, + 46.46651000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Barentin", + "amenity": "charging_station", + "start_date": "2022-09-22", + "ref:EU:EVSE": "FRALLEGO9002392;FRALLEGO9002391;FRALLEGO9000072;FRALLEGO9000071;FRALLEGO9000061;FRALLEGO9000062;FRALLEGO9002401;FRALLEGO9002402;FRALLEGO9002403;FRALLEGO9003301;FRALLEGO9003302", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref": "FRALLEGO9003302;FRALLEGO9002401;FRALLEGO9002392;FRALLEGO9002391;FRALLEGO9000072;FRALLEGO9000071;FRALLEGO9000061;FRALLEGO9000062;FRALLEGO9002402;FRALLEGO9002403;FRALLEGO9003301", + "description": "Allego Carrefour Barentin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96742100000, + 49.53565100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3270EVCP01", + "operator:email": "bornes@lidl.fr", + "description": "ST MARCEL Rouen", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3270EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46679800000, + 49.10242300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLBGIGN", + "start_date": "2024-01-08", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Restaurant Le Boeuf Sur Grill - Igny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23686747676, + 48.73154967465 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/moulinspr;Moulins, Préfecture", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPMOULINSPR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "moulinspr;120737" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33517000000, + 46.56760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREVZP6193631786736377617", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "ENGIE MAMP - Bornes publiques/B3CD2237-7BD3-4C25-B99E-CA272129B797", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "1084077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54079600000, + 43.21440600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-03", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Gamm Vert - Chantonnay", + "opening_hours": "24/7", + "capacity": "10", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PGAMCHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05474916159, + 46.69432496059 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2019-04-04", + "charging_station:output": "22.08 kW", + "description": "Leroy Merlin - Niort", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRE11PLMNIORT790001", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41736900000, + 46.31769900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP02789A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - INTERMARCHE VERVINS", + "opening_hours": "24/7", + "start_date": "2023-12-12", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP02789A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91861926966, + 49.84021080617 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GROUPE PARTOUCHE - CASINO ROYAT - ROYAT", + "ref:EU:EVSE": "FROTHPOTHR15211;FROTHPOTHR15221", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "GROUPE PARTOUCHE - CASINO ROYAT", + "start_date": "2020-11-16", + "ref": "FR*SOD*S*OTHR*152*1*_*_;FR*SOD*S*OTHR*152*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05858100000, + 45.76868100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "description": "INDAVER EUR LOON PLAGE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-06-13", + "network": "INDAVER EUR LOON PLAGE 2", + "ref:EU:EVSE": "FRCPIE6954185;FRCPIE6954195", + "ref": "FRCPIE6954185;FRCPIE6954195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23712400000, + 51.00245900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1026786", + "description": "Freshmile France/LLT2YDIR7LZ15I", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1801872283468668143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62836200000, + 50.50680300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-08-30", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Saint Dizier", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP100101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96034000000, + 48.64596000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "398927", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile/LILSDM6BG9", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1257649945992120547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95700000000, + 47.28390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-26", + "network": "DRIVECO", + "description": "Hyundai - Caudry", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPSIMAHYUNDAI595401", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42447200000, + 50.13027500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P862743237297956095", + "ref": "1090233", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLWUJAJVC2M1SZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99711200000, + 49.19191600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Camping les lacs Soulac sur mer", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-02", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPCAMPING337801", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 08:00-12:00, Sa 14:00-18:00, Su 08:00-12:00, Su 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11663500000, + 45.48265200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E130758", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - VARIZE - Rue du Châteaux", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E130758", + "description": "MODULO - VARIZE - Rue du Châteaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51419400000, + 48.09588300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2593215869838865158", + "description": "MobiSDEC/WDURE5OIIU", + "ref": "457584" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76143700000, + 49.15842800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128105", + "network": "WAAT", + "description": "WAAT/FRWA6LYQ55DYR1", + "amenity": "charging_station", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P3878235877817110557", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53940100000, + 48.84893000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50410001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-01-04", + "owner:ref:FR:SIREN": "255002883", + "description": "PERCY EN NORMANDIE - Place du Champs de Foire", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19098000000, + 48.91603000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81238001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "SAINT AMANS SOULT - La Lamberthe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48458000000, + 43.48028000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "63 kW", + "description": "RELAIS AUBERVILLIERS PERIPHERIQUE INTERIEUR", + "charging_station:output": "175 kW;63 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF078062", + "capacity": "1", + "start_date": "2022-09-15;2021-05-28", + "ref": "FRHPCPNF078062", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680732;531680731", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37350000000, + 48.90030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-05;2024-04-04;2021-04-29", + "ref:EU:EVSE": "FRS49P49007N;FRS49E49007014", + "charging_station:output": "22 kW", + "description": "ANGERS - Avenue 8 Mai 45;OuestCharge - Diva Sp - Angers - Mai 45", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54650600000, + 47.47008400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PLACHAPELLEENSE", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/lachapelleense", + "ref": "48964" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53497000000, + 49.12730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VRED - Rue Suzanne Lanoy", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH07E59629001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23123700000, + 50.39397000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "description": "CODOLET - Parking Rue Jean Giono", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30084001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69980600000, + 44.12445600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Questembert - Avenue de la Gare", + "ref:EU:EVSE": "FRS56PLEVJXJ", + "socket:type2_combo:output": "42 kW", + "start_date": "2016-06-30", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44976300000, + 47.68178900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90234585", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-05-30", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Perpignan Sud", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88540600000, + 42.66390700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "description": "Metropolis - Citadine - Sevran - Dumont d`Urville;Métropolis/FR*MGP*P93071*A", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2021-11-02", + "ref": "446921", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93071A", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52260500000, + 48.94654600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSHEE302;FRSHEE301;FRSHEE299;FRSHEE297", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "capacity": "13", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Shell Chillou - Le Havre", + "charging_station:output": "150 kW;125 kW;22 kW", + "description": "Shell Chillou - Le Havre", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "ref": "FRSHEE302;FRSHEE301;FRSHEE299;FRSHEE297" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11077113000, + 49.49171297000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "AUCH - ZAC Grand Chêne n°2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "10", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-01-01", + "ref:EU:EVSE": "FRBE1E320130021;FRBE1E32013002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61248000000, + 43.66572000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRLMSP89369822", + "start_date": "2022-12-26;2023-07-06", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A28 Croixrault" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96862000000, + 49.80776400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-17", + "charging_station:output": "3.7 kW;22 kW", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB16*2*1*_*_;e6b57174-7448-536f-8671-c734e4a859ab", + "operator": "190__SDEG16;IZIVIA", + "description": "MOBIVE | Aigre | Villejésus | Place de L'Glise;AIGRE - VILLEJESUS - PLACE DE LGLISE", + "opening_hours": "24/7", + "ref:EU:EVSE": "Non concerné;FRS16PMB16211;FRS16PMB16212", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02813200000, + 45.89407700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62BACA", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-02", + "description": "Bapaume Parking General Frere", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85006300000, + 50.10581500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego FR, Carrefour, HUB Drancy", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego FR, Carrefour, HUB Drancy", + "ref:EU:EVSE": "FRALLEGO9008631;FRALLEGO9008441;FRALLEGO9004932;FRALLEGO9001061;FRALLEGO9001062;FRALLEGO9002841;FRALLEGO9002842;FRALLEGO9002843;FRALLEGO9004931;FRALLEGO9008442;FRALLEGO9008632", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref": "FRALLEGO9008631;FRALLEGO9008441;FRALLEGO9004932;FRALLEGO9001061;FRALLEGO9001062;FRALLEGO9002841;FRALLEGO9002842;FRALLEGO9002843;FRALLEGO9004931;FRALLEGO9008442;FRALLEGO9008632", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41979100000, + 48.91871500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3759EVCP01;LFR3759EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "JEUMONT Basch", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3759EVCP01;LFR3759EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10274600000, + 50.30120600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOHARS - Rue Kreisker", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM29E29011001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.51400000000, + 48.42617300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/B92IX0BMR1", + "ref:EU:EVSE": "FREBNPB92IX0BMR1", + "ref": "30542" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54918000000, + 46.05686400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "454194", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "description": "Freshmile France/YDZTIADNZR", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P946250085890560818", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75204500000, + 44.28766600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "INDIGO FRANCE", + "start_date": "2023-12-19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E64483003;FRP07E644830031", + "description": "SAINT JEAN DE LUZ - Foch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66259760000, + 43.38730950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPISLSCODQRA", + "ref": "30233;ISLSCODQRA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/ISLSCODQRA;Saint-Victor-De-Cessieu, Parking RD 51" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39848300000, + 45.54440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FREFLP1527849965202511329;FREFLP1980400222141935806", + "charging_station:output": "22 kW", + "description": "Road/66a2343598c9b0001c51c406;Road/66a236d441c73b001cabb70c", + "opening_hours": "Mo,Th,Sa,Tu,Su,We,Fr 08:00-18:00;Su,Sa,Fr,Mo,Th,Tu,We 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "ref": "1155369;1155411", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15017100000, + 43.86748000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - CHATEAUNEUF-SUR-CHARENTE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-06-22", + "ref:EU:EVSE": "FROTHPOTHR26511;FROTHPOTHR26521;FROTHPOTHR26531;FROTHPOTHR26541", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*265*3*_*_;FR*SOD*S*OTHR*265*2*_*_;FR*SOD*S*OTHR*265*1*_*_;FR*SOD*S*OTHR*265*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04750700000, + 45.58869500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED CAGNES", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED CAGNES", + "ref": "FRCPIE6605175", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6605175", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14254800000, + 43.65819700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896613", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLK0UMFPP6MB0T", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1741900776139544062", + "operator": "Freshmile | FR*FR1", + "opening_hours": "We,Mo,Tu,Fr,Th 08:00-12:00,Sa 09:00-12:00,Mo,Tu,We,Fr,Th 14:00-19:00,Sa 14:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32576900000, + 43.80756100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WAAT", + "ref": "1137378", + "amenity": "charging_station", + "description": "WAAT/s523279", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P2165669860675882887", + "charging_station:output": "22 kW;47 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58939800000, + 47.28075300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/PBANG1G7XO", + "amenity": "charging_station", + "ref": "510551", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P394198732680200648", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27642200000, + 46.20207300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVBOX 120 MG VENISSIEUX", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-08-12", + "network": "SOWATT SOLUTIONS", + "ref": "1234651154", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSWSE1234651154", + "operator": "SOWATT SOLUTIONS", + "socket:type2_combo:output": "120 kW", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88074000000, + 45.72067100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6498156491026495872", + "capacity": "3", + "opening_hours": "24/7", + "ref": "368815", + "description": "Freshmile France/DPFPKHKVWG", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62474600000, + 44.82620700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Kia - CARDONA - Istres", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPCARDONAKIA138001", + "start_date": "2020-03-05", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97775400000, + 43.49951000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Benodet-Avenue de l'Odet", + "ref:EU:EVSE": "FRS29E2900600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.11613200000, + 47.87693800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS10P8840775927569703912", + "operator:email": "roaming@freshmile.com", + "ref": "521456", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/OI2ALZD0UQ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42432600000, + 48.02759500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "NORAUTO - Plaisir;Zephyre", + "owner:ref:FR:SIREN": "480470152", + "ref:EU:EVSE": "FRZP1PEAC42653;FRZP1P3544398795792645909;FRZP1PEAC36807", + "amenity": "charging_station", + "ref": "b7c10242-9e94-48eb-9546-6d19180e89e1;575855", + "description": "Zephyre/1801493;NORAUTO - Plaisir", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95747100000, + 48.82787000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "Kiloutou_Mondeville", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265977;839265976", + "ref:EU:EVSE": "FRROSE722", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31480550000, + 49.16630040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PSTVALPERREE", + "capacity": "2", + "amenity": "charging_station", + "ref": "64685", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80", + "description": "FDE 80/stvalperree" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64344000000, + 50.18320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST15312;FRIZFPFAST15311;FRIZFPFAST15313", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-08-08", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*153*1*_*_", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - LE BOULOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84136786606, + 42.53463252161 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - VILLIERS SUR LOIR - Av. du Petit Thouars", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - VILLIERS SUR LOIR - Av. du Petit Thouars", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4664;FRS41E4665", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4664;FRS41E4665" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99552900000, + 47.80580900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "694445", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P9012914081887240887", + "description": "Mouv'Oise/ZDCBLFIZXR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01327900000, + 49.40324700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-05-18", + "ref:EU:EVSE": "FRGLYPLYON6311;FRGLYPLYON6312", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*63*1*_*_", + "description": "DAR01 - M6 - PORTE DE LYON", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76090900000, + 45.82050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30305001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SALINDRES - Place Balard", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15600400000, + 44.17106500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-27", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Pont-scorff - Rue Théophile Guyomar", + "ref:EU:EVSE": "FRS56PEFEJZZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39986300000, + 47.83342300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Norauto Amancy", + "network": "Réseau de recharge Fuzed", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "contact@fuzed.fr", + "charging_station:output": "22 kW", + "start_date": "2024-06-03", + "operator": "Fuzed", + "ref:EU:EVSE": "FRFZDP74800002", + "owner:ref:FR:SIREN": "927865220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31500700000, + 46.07370300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2019-05-30", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - LANEUVEVILLE - Pkg. de la piscine", + "network": "MODULO - LANEUVEVILLE - Pkg. de la piscine", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRN54E217233;FRN54E217232;FRN54E187442;FRN54E187441", + "ref": "FRN54E217233;FRN54E217232;FRN54E187442;FRN54E187441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22902000000, + 48.65850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2012;FRSIGPSIGE2011", + "opening_hours": "24/7", + "start_date": "2020-07-31", + "charging_station:output": "22 kW", + "description": "SIGEIF - PLACE DU DOCTEUR BERTHET - LA CELLE-SAINT-CLOUD", + "ref": "FR*SOD*S*SIGE*20*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15031000000, + 48.84895700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001760;FRCG0E001758;FRCG0E001759", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2024-05-20", + "description": "COURTOISE DISTRIBUTION AUTO SAS - Sarcelles - 95200", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "COURTOISE DISTRIBUTION AUTO SAS - Sarcelles - 95200", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001760;FRCG0E001758;FRCG0E001759" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37294238000, + 48.98385384000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B136", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "socket:type2_combo:output": "120 kW", + "start_date": "2019-09-13", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE10001535242;FRLMSE10001535241", + "description": "REBEILLEAU HPC 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37074919454, + 46.57149742912 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS40PMB408914;FRS40PMB408913;Non concerné;FRS40PMB408911;FRS40PMB408912", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB40*89*1*_*_;219b7af5-2689-5e40-91c7-3f123fa73087", + "operator": "199__SYDEC40;IZIVIA", + "description": "TARTAS - RUE LEON BLUM;MOBIVE | Tartas | Rue Léon Blum", + "start_date": "2020-05-28", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81418100000, + 43.83513300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-04", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE85SABA", + "description": "ST GILLES CROIX DE VIE – Salle de la vie", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93345500000, + 46.70188100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*91*1*_*_", + "description": "SAINT-CEZAIRE-SUR-SIAGNE - PARKING CHEMIN DE LA CHAUX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ9111;FRA16PWIIZ9112", + "start_date": "2018-07-09", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79336300000, + 43.65030700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ROSIERES Sablas", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "LFR2932EVCP02;LFR2932EVCP01;LFR2932EVCP03", + "ref": "LFR2932EVCP02;LFR2932EVCP01;LFR2932EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26361100000, + 44.48170600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VENDARGUES - Avenue Des Bigos", + "ref:EU:EVSE": "FRM34E34327001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95869300000, + 43.65325100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WOQTPMJD7R;Barby, Epinettes Avenue Paul Chevalier", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP650835138134359866;FREBNPWOQTPMJD7R", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "WOQTPMJD7R;346964" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97381700000, + 45.56875800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,We,Th,Mo,Tu 08:00-12:00,Fr,Tu,Mo,Th,We 14:00-19:00,Sa 14:00-18:00,Sa 09:00-12:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P7276425160546456452", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/MISIB4G9PH", + "operator": "Freshmile | FR*FR1", + "ref": "801624" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29386000000, + 43.35745600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "17", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E920510041;FRP07E92051004", + "start_date": "2020-06-15;2023-02-06", + "charging_station:output": "22 kW;7 kW", + "description": "NEUILLY SUR SEINE - Madrid" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25976900000, + 48.88334400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32731;FDJN70AGER", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Marsanne, Avenue René Chartron;Réseau eborn/FDJN70AGER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPFDJN70AGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87258800000, + 44.64277800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-12-07", + "description": "Morschwiller-le-Bas - KFC", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPMWLKF", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28608100000, + 47.73685800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking gare de Niort P2 - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-22", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "9", + "ref:EU:EVSE": "FRP01E79191002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45358520000, + 46.31869620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LES BAGENELLES BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "description": "LES BAGENELLES BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6639555", + "ref:EU:EVSE": "FRCPIE6639555", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14407900000, + 48.22048800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/LLX07M7AS1197O;Besançon, Avenue de bourgogne", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP621365532957941824;FRECHPLLX07M7AS1197O", + "capacity": "4", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref": "LLX07M7AS1197O;1118205", + "charging_station:output": "22 kW", + "start_date": "2024-06-04", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97398100000, + 47.22265200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1720", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue Carnot 28", + "ref": "FR*V75*PPX17*20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29280000000, + 48.87683000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "159367", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PBSWCES", + "description": "Freshmile France/BSWCES", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48510000000, + 48.57420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9017*04", + "start_date": "2021-04-07", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901704", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Boulevard de Courcelles 12", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31375100000, + 48.88116800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/FLFETT", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PFLFETT", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "159370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49481000000, + 48.53950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-11-09", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - GCA - Saint-Lô", + "ref:EU:EVSE": "FRSSDPGCAHYUNDAI500001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04376500000, + 49.11539300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "description": "Plomelin-Allée du 19 Mars 1962", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2917000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.15302800000, + 47.93513500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW", + "start_date": "2024-06-22", + "ref:EU:EVSE": "FRS11E11170008", + "description": "Gruissan - Les Châlets", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10715500000, + 43.09833300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "735550048", + "network": "ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN ", + "description": "Meubles Monnier - Laval - 22kW AC ", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "ref:EU:EVSE": "FRZPEE22AC71514;FRZPEE22AC71494;FRZPEE22AC121730", + "charging_station:output": "22 kW", + "start_date": "2021-09-03", + "ref": "71514;121730;71494", + "operator": "ZEBORNE", + "opening_hours": "Mo-sat 09:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81167600000, + 48.06902690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MONTGAILHARD - 52 Route Nationale", + "ref:EU:EVSE": "FRS09E09207001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63400000000, + 42.93370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/TCSM2FPN91", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "578825", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS80P9178287685012273332", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38828800000, + 50.06341800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST32223;FRIZFPFAST32221;FRIZFPFAST32211;FRIZFPFAST32212;FRIZFPFAST32213;FRIZFPFAST32222", + "ref": "FR*SOD*S*FAST*322*1*_*_;FR*SOD*S*FAST*322*2*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - PIAN MEDOC", + "start_date": "2024-10-08", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63001260000, + 44.95146720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-23;2024-04-19", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44066A;FRS44E44066001", + "description": "GRANDCHAMPS-DES-FONTAINES - Rue De La Vertière;OuestCharge - Diva Sp - Grandchamps-Des-Fontaines - Vertière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60554400000, + 47.36248400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "EVRY-GREGY-SUR-YERRE - République", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS77E77175001", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62106068518, + 48.66705812788 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref": "927120", + "description": "GreenYellow Shift Mobility/27", + "ref:EU:EVSE": "FRGYMP4757742702259745902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.49603300000, + -20.89829500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VILLEBOURG - Pl. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220293;FRS37E220292", + "network": "MODULO - VILLEBOURG - Pl. de la mairie", + "ref:EU:EVSE": "FRS37E220293;FRS37E220292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52830000000, + 47.64905800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "40__T2L", + "charging_station:output": "3.7 kW;22 kW", + "description": "T2L - Pierrepont - Place de la Victoire", + "capacity": "2", + "amenity": "charging_station", + "ref": "18ac2ac8-7f57-5a31-a170-1ad7fc02cb09", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71033000000, + 49.41450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "start_date": "2023-12-26", + "capacity": "3", + "owner:ref:FR:SIREN": "383010758", + "opening_hours": "24/7", + "description": "Garage Leroyer", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com", + "network": "Garage Leroyer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53926000000, + 49.26531000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref": "7d1662c7-e150-54e3-a930-5622d5efe5f9", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "socket:type2_combo:output": "120 kW", + "description": "MOBIVE | PASSAGE-D'AGEN | 133 Avenue des Pyrénées ZAC de BEAUREGARD", + "charging_station:output": "60 kW;120 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60878000000, + 44.17088600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-09-19", + "description": "VALENTON - Rue du Colonel Fabien (Parking E. Dolet)", + "ref:EU:EVSE": "FRSIPE94074002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46757130000, + 48.74713930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BORNE U BORNE PUBLIQUE1", + "network": "BORNE U BORNE PUBLIQUE1", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6531025;FRCPIE6540225", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6531025;FRCPIE6540225" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68091000000, + 47.81989900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P8104486909624924316", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/XBRG7YCKY2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "741075" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399000000, + 44.54360600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "21ff0930-cdb0-5ecd-a2d4-7402b797597a;FR*SOD*S*MB33*132*1*_*_", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "description": "SAINT-CHRISTOPHE-DE-DOUBLE - CENTRE BOURG;MOBIVE | Saint-Christophe-De-Double | Centre Bourg", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "Non concerné;FRS33PMB3313211;FRS33PMB3313212", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01485600000, + 45.07999800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB58042A", + "description": "Réseau AlterBase - St Roman les Melles - Salle des Fêtes", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2017-05-24", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18987608000, + 46.20611720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2023-06-28", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS317008", + "charging_station:output": "22.08 kW", + "description": "Airbus - Blagnac - AGLU SERVICE", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36291800000, + 43.65279700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEVRAN", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR0603EVCP03;LFR0603EVCP02;LFR0603EVCP04;LFR0603EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR0603EVCP03;LFR0603EVCP02;LFR0603EVCP04;LFR0603EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53167000000, + 48.94321500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "LA TRINITE - BOULEVARD OLI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*365*1*_*_", + "ref:EU:EVSE": "FRM06PNICE36511;FRM06PNICE36512", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30700200000, + 43.73293000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "TOUET-SUR-VAR - PARKING EN OUVRAGE", + "start_date": "2022-12-19", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ17311;FRA16PWIIZ17312", + "ref": "FR*SOD*S*WIIZ*173*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00940500000, + 43.94819800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P386864827425382251", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "14", + "ref": "741060", + "description": "Freshmile France/XNYAC5TPKK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60192900000, + 47.32762400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Bricomarché - Bitche", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PBRCBTC", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-06-21", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42539850000, + 49.04408540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP6084351639025688423;FREBNPGL4ERZHDOT", + "ref": "GL4ERZHDOT;529919", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;43 kW", + "start_date": "2022-06-14", + "description": "La Garde, Borne rapide PK ENTREE AFUZI;Réseau eborn/GL4ERZHDOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03717000000, + 43.14240300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Béziers - Jardiland", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-10-26", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPBEZJL", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25708800000, + 43.35004500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW;3 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "43", + "ref:EU:EVSE": "FRP07E315550014;FRP07E315550011;FRP07E315550012;FRP07E31555001;FRP07E315550013", + "description": "TOULOUSE - Capitole", + "start_date": "2023-03-23;2022-02-03;2023-01-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44356000000, + 43.60430100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "37168;ZVTPWBGVUT", + "description": "Réseau eborn/ZVTPWBGVUT;Saint-Rambert-D'Albon, Rue Neuve", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPZVTPWBGVUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81313900000, + 45.29516300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "LLNBRJZCD15IJA", + "start_date": "2023-10-04", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "description": "Ancenis Saint Géron, Ancenis 3 - Parking JAM", + "ref:EU:EVSE": "FRECHPLLNBRJZCD15IJA", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19204764000, + 47.37342395000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP102117", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A1 Phalempin Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04608500000, + 50.53158500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "346481", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/UFUSXC", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4972364652932016979" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74471000000, + 48.08330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue Jules Lefèbvre 1", + "ref:EU:EVSE": "FRV75PPX0901", + "opening_hours": "24/7", + "ref": "FR*V75*PPX09*01", + "start_date": "2021-06-30", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32836320000, + 48.88044780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MXZDMN", + "ref:EU:EVSE": "FRFR1PMXZDMN", + "operator": "Freshmile | FR*FR1", + "ref": "120767" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42629000000, + 48.54030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:30-18:30, Tu 07:30-18:30, We 07:30-18:30, Th 07:30-18:30, Fr 07:30-18:30, Sa 09:00-18:00", + "start_date": "2021-05-12", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPBRUNEL842301", + "operator:email": "support@driveco.com", + "description": "Château La Gardine - Châteauneuf du Pape", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81372000000, + 44.06312800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "86912", + "description": "SYDED/YJNMSJ", + "ref:EU:EVSE": "FRS25PYJNMSJ", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58382000000, + 47.29430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-11", + "description": "MODULO - ARGENT SUR SAULDRE - Pl. du marché", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - ARGENT SUR SAULDRE - Pl. du marché", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E207812;FRS18E207811", + "ref:EU:EVSE": "FRS18E207812;FRS18E207811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44699700000, + 47.55925400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78372004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MARLY-LE-ROI - Mairie", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09664000000, + 48.86828000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - 83011 TOULON - MAYOL CENTRE", + "ref": "FR*SOD*S*QPRK*20*1*_*_;FR*SOD*S*QPRK*20*2*_*_;FR*SOD*S*QPRK*20*3*_*_;FR*SOD*S*QPRK*20*4*_*_", + "ref:EU:EVSE": "FRQPKPQPRK2021;FRQPKPQPRK2011;FRQPKPQPRK2031;FRQPKPQPRK2041", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-06-28;2022-07-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93645700000, + 43.11835900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-06", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS81E81049001", + "description": "CAHUZAC - La Vignes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07945100000, + 43.46899600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE409352;FRIOYE409351;FRIOYE409304;FRIOYE409302;FRIOYE409301;FRIONE408600;FRIOYE409303;FRIOYE409353", + "ref": "FRIOYE409353;FRIOYE409352;FRIOYE409351;FRIOYE409302;FRIOYE409301;FRIONE408600;FRIOYE409303;FRIOYE409304", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "description": "IONITY Nemours;Mouxy", + "operator": "IONITY", + "start_date": "2019-11-08;2020-09-26", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "Mouxy;IONITY GMBH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92997600000, + 45.67386500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-16;2024-04-23;2021-04-08", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44180001;FRS44P44180A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Mars-La-Jaille - Neuve;SAINT-MARS-LA-JAILLE - Rue Neuve", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18292000000, + 47.52333700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77451001;FRS77P77451A", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61M738W0VVEKZ9J14G", + "start_date": "2023-05-25;2016-08-31", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "SIGNY-SIGNETS - Place De La Jouvence;Signy-Signets" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06841900000, + 48.92791000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes", + "name": "Poste d'accès principal", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20750500000, + 49.97255500000 + ], + [ + 1.20711600000, + 49.97229800000 + ], + [ + 1.20716300000, + 49.97226800000 + ], + [ + 1.20715100000, + 49.97224200000 + ], + [ + 1.20720600000, + 49.97220000000 + ], + [ + 1.20723500000, + 49.97221800000 + ], + [ + 1.20727770000, + 49.97218680000 + ], + [ + 1.20720580000, + 49.97213690000 + ], + [ + 1.20750430000, + 49.97213480000 + ], + [ + 1.20747340000, + 49.97215630000 + ], + [ + 1.20746050000, + 49.97217370000 + ], + [ + 1.20746180000, + 49.97219850000 + ], + [ + 1.20770750000, + 49.97236020000 + ], + [ + 1.20771940000, + 49.97236420000 + ], + [ + 1.20773260000, + 49.97236610000 + ], + [ + 1.20774670000, + 49.97236350000 + ], + [ + 1.20777450000, + 49.97234880000 + ], + [ + 1.20783450000, + 49.97238470000 + ], + [ + 1.20814420000, + 49.97219170000 + ], + [ + 1.20815500000, + 49.97218500000 + ], + [ + 1.20825500000, + 49.97225200000 + ], + [ + 1.20828100000, + 49.97224700000 + ], + [ + 1.20830000000, + 49.97225900000 + ], + [ + 1.20828900000, + 49.97227100000 + ], + [ + 1.20830900000, + 49.97228600000 + ], + [ + 1.20792000000, + 49.97254800000 + ], + [ + 1.20786100000, + 49.97251000000 + ], + [ + 1.20777100000, + 49.97251100000 + ], + [ + 1.20788700000, + 49.97256600000 + ], + [ + 1.20780170000, + 49.97264370000 + ], + [ + 1.20776300000, + 49.97267900000 + ], + [ + 1.20757900000, + 49.97260700000 + ], + [ + 1.20768400000, + 49.97250700000 + ], + [ + 1.20758700000, + 49.97250200000 + ], + [ + 1.20750500000, + 49.97255500000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080046", + "description": "RELAIS BRUYERES PAISY", + "owner:ref:FR:SIREN": "531681387;531681386;531681389;531681388", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-04-19", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080046", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76950900000, + 45.80883900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - GY EN SOLOGNE - Rue croix St André", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - GY EN SOLOGNE - Rue croix St André", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E211304;FRS41E211305", + "ref": "FRS41E211304;FRS41E211305" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58313900000, + 47.34371800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWMNCFY", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Sarzeau - Rue Raymond Marcellin - PEM", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-11-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77605500000, + 47.52215300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*187*2*_*_;FR*SOD*S*LYON*187*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2023-04-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON18722;FRGLYPLYON18721;FRGLYPLYON18712;FRGLYPLYON18711", + "socket:type2_combo:output": "24 kW", + "description": "LY711 - MANUFACTURE DES TABACS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85803200000, + 45.74902200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Métropolis/FR*MGP*P92014*C;Metropolis - Citadine - Bourg-la-Reine - André Theuriet", + "amenity": "charging_station", + "ref": "419955", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP92014C", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31195700000, + 48.77915800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:45-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT591901", + "start_date": "2019-12-20", + "charging_station:output": "22.08 kW", + "description": "Peugeot - Hazebrouck", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54928000000, + 50.72768000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-02-15", + "description": "ROUEN - Zac de l'aubette", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76540022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11238900000, + 49.43748700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/LLWZ21QWY24M3X", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref": "1109124", + "ref:EU:EVSE": "FRLE2P7792294562327925898", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54054100000, + 48.83763600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Saint-Yzan-De-Soudiac | Rue Pierre Sémard", + "opening_hours": "24/7", + "ref": "6fae9ed9-ee2e-5eef-9684-b15d684c0947", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39274900000, + 45.14044600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MONTMAGNY - Parking mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS95E95427002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34561615348, + 48.97505082571 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "amenity": "charging_station", + "description": "Allego FR ASF Rouillé Pamproux Nord", + "ref": "FRALLEGO8005051;FRALLEGO8000442;FRALLEGO8000432;FRALLEGO8000431;FRALLEGO8000422;FRALLEGO8000413;FRALLEGO8000412;FRALLEGO8000411;FRALLEGO8000401;FRALLEGO8000402;FRALLEGO8000403;FRALLEGO8000421;FRALLEGO8000441;FRALLEGO8005052", + "capacity": "14", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego FR ASF Rouillé Pamproux Nord", + "ref:EU:EVSE": "FRALLEGO8005051;FRALLEGO8000442;FRALLEGO8000432;FRALLEGO8000431;FRALLEGO8000422;FRALLEGO8000413;FRALLEGO8000412;FRALLEGO8000411;FRALLEGO8000401;FRALLEGO8000402;FRALLEGO8000403;FRALLEGO8000421;FRALLEGO8000441;FRALLEGO8005052" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01779600000, + 46.45313200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/BTABXYFOLK", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "Th,Tu,We,Fr,Sa,Mo 09:00-20:00", + "charging_station:output": "22 kW", + "ref": "477753", + "ref:EU:EVSE": "FRLE2P4550997487684421478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935900000, + 44.81050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "Aubagne, Avenue des Soeurs Gastine", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PCVTJZP23HZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56348000000, + 43.29134000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "402653", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P3406851312434208168", + "description": "SDEY/WCYYWDBZ8X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48687400000, + 48.13241100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-RAPHAEL - PARKING EPSILON 1", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "ref:EU:EVSE": "FRA16PWIIZ30712;FRA16PWIIZ30711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*307*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80753620154, + 43.43575334492 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "454095", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/O2OQF8EAZK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2835667516889051757", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99960000000, + 46.55730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-05-30;2024-05-23", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "80 kW", + "ref:EU:EVSE": "FRPD1PPATIDA", + "opening_hours": "24/7", + "description": "McDonald's - L'Isle-d'Abeau", + "charging_station:output": "50 kW;80 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22469272961, + 45.61641113397 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPRZHD8TNRZR", + "description": "Réseau eborn/RZHD8TNRZR;Ballaison, Ecole", + "ref": "85751;RZHD8TNRZR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32796000000, + 46.29831300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "description": "EVzen/10508f61-0c35-4b1b-bc5e-e72c54de927d", + "amenity": "charging_station", + "ref": "789687", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP6289200342495524256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09590000000, + 43.00029700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "operator": "IZIVIA", + "description": "CENTRE CCIAL LA VOULZIE - PROVINS", + "ref:EU:EVSE": "FROTHPOTHR62811;FROTHPOTHR62812;FROTHPOTHR62821;FROTHPOTHR62822;FROTHPOTHR62831;FROTHPOTHR62832;FROTHPOTHR62841;FROTHPOTHR62842", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*628*3*_*_;FR*SOD*S*OTHR*628*2*_*_;FR*SOD*S*OTHR*628*1*_*_;FR*SOD*S*OTHR*628*4*_*_", + "opening_hours": "24/7", + "network": "CENTRE CCIAL LA VOULZIE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29135300000, + 48.54761100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Davezieux, Aire de Covoiturage;Réseau eborn/F5GG4XPJNB", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "F5GG4XPJNB;346688", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPF5GG4XPJNB;FREBNP1573518699989728570" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70596000000, + 45.26180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/GLCUE976K9;Bauduen, Rue des Jardins", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "GLCUE976K9;75278", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNGLCUE976K9;FREBNPGLCUE976K9", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17676600000, + 43.73247600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR31711;FROTHPOTHR31721", + "charging_station:output": "3.68 kW;22 kW", + "ref": "FR*SOD*S*OTHR*317*1*_*_;FR*SOD*S*OTHR*317*2*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "NETTO - DAMPIERRE-LES-BOIS", + "operator:email": "sav@izivia.com", + "network": "NETTO - DAMPIERRUS", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91194200000, + 47.49732200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLNKBA2WVIEJGP", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1180698", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P5748013356590902307", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33487300000, + 45.21785000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "ref:EU:EVSE": "FRV75PPX1521", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX15*21", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Jean Sicard 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29890000000, + 48.82870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/TQGFF4VUW8", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6292191951878784562", + "operator": "Freshmile | FR*FR1", + "ref": "706100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88038200000, + 49.18391900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW - Motos Tours", + "ref:EU:EVSE": "FRSSDPAMPLITUDEBMW371704", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-01-19", + "operator:email": "support@driveco.com", + "charging_station:output": "20 kW;22.08 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "20 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70219100000, + 47.33115200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-06-23", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PTHIBERVILLEECOLES", + "network": "SIEGE27", + "operator": "SIEGE 27", + "description": "900009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45754700000, + 49.13591900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22084001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Dolo-Etang du Lou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33485400000, + 48.38798100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY24E78455001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "NOISY-LE-ROI - Rue Andre Le Bourblanc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06705300000, + 48.84233800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE215", + "opening_hours": "24/7", + "start_date": "2022-01-20", + "description": "Hostellerie_du_Marche", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54608420000, + 50.10453350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LES ALLUETS-LE-ROI - Rue Saint Pierre", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78010001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91895300000, + 48.91340700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref": "FRIOYE408053;FRIOYE408052;FRIOYE408051;FRIOYE408005;FRIOYE408004;FRIOYE408003;FRIOYE408002", + "start_date": "2020-12-04", + "description": "Blois Villerbon", + "ref:EU:EVSE": "FRIOYE408053;FRIOYE408005;FRIOYE408004;FRIOYE408003;FRIOYE408002;FRIOYE408051;FRIOYE408052", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Blois Villerbon", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38768230000, + 47.66577690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "474513", + "capacity": "4", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "ref:EU:EVSE": "FRS52P8896921493919323401", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/EFHFMNWM27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33165200000, + 47.85822000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PIERREFITTE NESTALAS - Parking de la Gare", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65362001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06866000000, + 42.96293000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE003701;FRIENE003702", + "ref": "FRIENE003701;FRIENE003702", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-02-16", + "network": "Derval", + "description": "Derval" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846000, + 47.65092060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34277001", + "charging_station:output": "22 kW", + "description": "SAINT MAURICE DE NAVACELLES - Rd 25", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51856388889, + 43.84530280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "description": "BRETONCELLES", + "ref:EU:EVSE": "FRS61P61061A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-BRET-001", + "start_date": "2017-12-06", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88716600000, + 48.43112300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1084848", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8640097385932080129", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLW0H1KSMX134P", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68013200000, + 45.83463400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PCHTQTA", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/CHTQTA", + "ref": "38857", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61742000000, + 43.50760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volkswagen Beaurains SLBA", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPSAIPVOLKSWAGEN622171", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2020-11-16", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79732300000, + 50.26645200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "capacity": "2", + "amenity": "charging_station", + "network": "BMW - BMW i. Angoulême L'Espace Bienvenue - 4", + "description": "BMW - BMW i. Angoulême L'Espace Bienvenue - 4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E000071;FRCG0E000070", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000071;FRCG0E000070" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17648400000, + 45.68993300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VVF Azur et Neige \t", + "ref": "37f31189-2de6-4633-8288-8acd8b78e52b", + "charging_station:output": "12 kW", + "capacity": "2", + "ref:EU:EVSE": "FRLUMEVVFAZURNEIGE11", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33000000000, + 44.40000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "4d7d4a65-9e60-55ec-8eef-8cb36b6717bf", + "description": "MOBIVE | Asson | Avenue des Pyrénées" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25735000000, + 43.14210100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-09-13", + "amenity": "charging_station", + "description": "BYMYCAR - LUNEVILLE", + "ref:EU:EVSE": "FRSE1PSE54LYVA", + "capacity": "3", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48911300000, + 48.58423300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "description": "Bump - Monoprix - Croisé Laroche", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS64527;FRBMPS64528;FRBMPS154952;FRBMPS64526", + "ref": "64528;64527;154952;64526", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10254600000, + 50.66393300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3049EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3049EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "PLOUGASTEL DAOULAS Menez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35040700000, + 48.38431200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marseille-3E, 28 Rue Jobin", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PJNUDLIYWFR", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38984500000, + 43.30983100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS90P8471875866866910640", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "347189", + "network": "TE90", + "description": "TE90/YUZJTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136000000, + 47.61680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P83120*STM*PASTORELLI", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP83120STMPASTORELLI", + "operator:email": "contact@e55c.com", + "description": "PARKING PASTORELLI STE MAXIME", + "start_date": "2019-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63420000000, + 43.31492600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "11 kW;22 kW", + "description": "Freshmile France/LLV3N6ZAK2HMGP", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1910361633774568723", + "ref": "1129740", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01035900000, + 45.93463600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "start_date": "2023-05-06;2024-09-04", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUPXX", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Super U - Pouxeux", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57289925861, + 48.10939809936 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNIMXRRATUPO;FREBNPIMXRRATUPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Entrecasteaux, Parking Le Collet;Réseau eborn/IMXRRATUPO", + "ref": "IMXRRATUPO;79192", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24135000000, + 43.51516000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Fastned Aire de Saint-Léger", + "operator": "Fastned France", + "description": "Fastned Aire de Saint-Léger", + "capacity": "8", + "start_date": "2022-12-29", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFASE33100", + "operator:email": "support@fastned.nl", + "ref": "FRFASE33100", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87356400000, + 50.17343800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "50 kW;22 kW;63 kW", + "network": "SYSTEME U", + "socket:type2_combo:output": "50 kW;63 kW", + "amenity": "charging_station", + "start_date": "2021-11-23;2022-11-07;2022-02-11", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPSENT19693;FROTHPSENT196103;FROTHPSENT196102;FROTHPSENT196101;FROTHPSENT19611;FROTHPSENT19621;FROTHPSENT19631;FROTHPSENT19641;FROTHPSENT19651;FROTHPSENT19661;FROTHPSENT19691;FROTHPSENT19692", + "capacity": "1;3", + "description": "SUPER U - TERDEGHEM", + "ref": "FR*SOD*S*SENT*196*6*_*_;FR*SOD*S*SENT*196*1*_*_;FR*SOD*S*SENT*196*10*_*_;FR*SOD*S*SENT*196*2*_*_;FR*SOD*S*SENT*196*3*_*_;FR*SOD*S*SENT*196*4*_*_;FR*SOD*S*SENT*196*5*_*_;FR*SOD*S*SENT*196*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57724900000, + 50.80409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPA8IMSEI4DH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/A8IMSEI4DH;Saint-Antoine-L'Abbaye, Parking du Bourg", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "32743;A8IMSEI4DH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21880800000, + 45.17430400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "96104", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPOL7HMZRXTP", + "description": "Réseau eborn/OL7HMZRXTP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42572300000, + 45.47532500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR4421;FROTHPOTHR4412;FROTHPOTHR4411;FROTHPOTHR4422", + "capacity": "2", + "amenity": "charging_station", + "description": "CINEVILLE VERN-SUR-SEICHE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*44*2*_*_;FR*SOD*S*OTHR*44*1*_*_", + "start_date": "2020-09-21", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62564400000, + 48.06511400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,Th,We,Tu,Mo 08:30-17:00", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1501615982617238302", + "ref": "892119", + "description": "Freshmile France/LLIIF9G1T2E4ZZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13869400000, + 48.70367000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Argenton-sur-Creuse, France", + "ref:EU:EVSE": "FRTSLP34053", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50220800000, + 46.57317800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1120065", + "description": "Freshmile France/LLV2E2C521T9H0", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4497396104661174710", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19579000000, + 49.12176400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0ccdda6b-3cb6-5ccb-9b05-c4e6fe7e714b", + "description": "Station-service Sérézin-du-Rhône - A7N", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81968200000, + 45.63119200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLUQT8QHK1ZDPR", + "amenity": "charging_station", + "ref": "1054656", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8717298293785122595", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69435500000, + 43.40231100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/WZVO2GVYMJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "457587", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P276374410940214389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04206300000, + 49.23276900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP0095A8", + "ref:EU:EVSE": "FRZP1P7040616523419858188", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "576311", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92048000000, + 46.83127500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-23", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "LeBasChitray", + "ref:EU:EVSE": "FRROSE429", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69728300000, + 47.78487700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY01E78643002", + "operator": "Bouygues E&S", + "description": "VERNOUILLET - Route de Chapet - Parking Louis Pottier", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-06", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97892852484, + 48.97131581869 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "7409e523-db53-54cf-9383-37ce1b3971ef", + "description": "CCTLB - Brouville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74942400000, + 48.49757900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66187001", + "description": "SAINT PAUL DE FENOUILLET - Avenue Jean Moulin", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50434700000, + 42.81043800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA13591;FRIKAPIKEA13581;FRIKAPIKEA13561;FRIKAPIKEA13551;FRIKAPIKEA13541;FRIKAPIKEA13521;FRIKAPIKEA135201;FRIKAPIKEA135191;FRIKAPIKEA135171;FRIKAPIKEA135161;FRIKAPIKEA135151;FRIKAPIKEA135141;FRIKAPIKEA135131;FRIKAPIKEA135101;FRIKAPIKEA13441;FRIKAPIKEA13431;FRIKAPIKEA13421;FRIKAPIKEA13411;FRIKAPIKEA13371;FRIKAPIKEA13351;FRIKAPIKEA13331;FRIKAPIKEA13321;FRIKAPIKEA13311;FRIKAPIKEA13341;FRIKAPIKEA13361;FRIKAPIKEA13372;FRIKAPIKEA13511;FRIKAPIKEA135111;FRIKAPIKEA135121;FRIKAPIKEA135181;FRIKAPIKEA13531;FRIKAPIKEA13571", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*IKEA*135*9*_*_;FR*SOD*S*IKEA*135*6*_*_;FR*SOD*S*IKEA*135*5*_*_;FR*SOD*S*IKEA*135*3*_*_;FR*SOD*S*IKEA*135*2*_*_;FR*SOD*S*IKEA*135*20*_*_;FR*SOD*S*IKEA*135*19*_*_;FR*SOD*S*IKEA*135*18*_*_;FR*SOD*S*IKEA*135*16*_*_;FR*SOD*S*IKEA*135*15*_*_;FR*SOD*S*IKEA*135*10*_*_;FR*SOD*S*IKEA*134*4*_*_;FR*SOD*S*IKEA*134*2*_*_;FR*SOD*S*IKEA*133*5*_*_;FR*SOD*S*IKEA*133*4*_*_;FR*SOD*S*IKEA*133*1*_*_;FR*SOD*S*IKEA*133*2*_*_;FR*SOD*S*IKEA*133*3*_*_;FR*SOD*S*IKEA*133*6*_*_;FR*SOD*S*IKEA*133*7*_*_;FR*SOD*S*IKEA*134*1*_*_;FR*SOD*S*IKEA*134*3*_*_;FR*SOD*S*IKEA*135*1*_*_;FR*SOD*S*IKEA*135*11*_*_;FR*SOD*S*IKEA*135*12*_*_;FR*SOD*S*IKEA*135*13*_*_;FR*SOD*S*IKEA*135*14*_*_;FR*SOD*S*IKEA*135*17*_*_;FR*SOD*S*IKEA*135*4*_*_;FR*SOD*S*IKEA*135*7*_*_;FR*SOD*S*IKEA*135*8*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "start_date": "2023-07-13;2023-07-12;2023-12-14", + "charging_station:output": "24 kW;7.36 kW", + "description": "IKEA RENNES - PARKING CLIENTS;IKEA RENNES - PARKING PMR;IKEA RENNES - PARKING COLLABORATEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76346500000, + 48.13748500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35222001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "PLEINE FOUGERES - 4 rue de rennes ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56456700000, + 48.53313100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG63 - ePremium - Besse et Saint Anastaise - Pistes;SIEG 63/FR*S63*P63038*A", + "socket:type2_combo:output": "25 kW", + "ref": "518240", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63038A", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85420000000, + 45.51190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLIU9IX4111I5D", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "892191", + "ref:EU:EVSE": "FRFR1P7635241374930623134", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47548700000, + -21.32213700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/UWQHJA", + "amenity": "charging_station", + "ref": "33370", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref:EU:EVSE": "FRS31PUWQHJA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22489000000, + 43.29600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DRANCY - 73 Rue Marcelin Berthelot", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-06-16", + "ref:EU:EVSE": "FRSIPE93029009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44634600000, + 48.91762100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18", + "ref:EU:EVSE": "FRCG0E000890;FRCG0E000889", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Volkswagen ChateauBernard - 16100 - 1", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Volkswagen ChateauBernard - 16100 - 1", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000890;FRCG0E000889" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29453100000, + 45.67972400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-22", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE21712;FRM06PNICE21711", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*217*1*_*_", + "operator:email": "sav@izivia.com", + "description": "NICE - PARKING FOCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26910700000, + 43.70340400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "087c2991-d285-5fba-a126-23b4189985aa", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Layrac | Rue du 19 Mars 1962", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65989800000, + 44.13267500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*355*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE DES POMMIERS SAULNIERS PARKING DU STADE - FRANCONVILLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE35511;FRSIGPSIGE35512", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22189000000, + 48.99860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DEVILLE LES ROUEN - Place du Marché", + "ref:EU:EVSE": "FRC01E76216001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05075900000, + 49.46909600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "MULHOUSE Bâle", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2812EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2812EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34999100000, + 47.74859100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Perigueux | Rue denis Papin", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "cf527e75-f0e5-5b79-aa91-5509e33c6323", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70889500000, + 45.18692600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/DHRGVC", + "operator:email": "roaming@freshmile.com", + "ref": "38971", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PDHRGVC", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34938000000, + 44.09090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MIN BATIMENT U - AVIGNON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84000*AVG*MINU", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2024-06-04", + "ref:EU:EVSE": "FR55CP84000AVGMINU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83815400000, + 43.93419700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ROSTRENEN - Saint Brieuc", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3884EVCP01;LFR3884EVCP03;LFR3884EVCP02;LFR3884EVCP04", + "ref:EU:EVSE": "LFR3884EVCP01;LFR3884EVCP03;LFR3884EVCP02;LFR3884EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30801300000, + 48.24459400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PITMGRD", + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Intermarché - Guérande", + "amenity": "charging_station", + "start_date": "2023-05-16", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40786226680, + 47.30363318761 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30410;DAT3HIUUJM", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "capacity": "2;4", + "description": "Réseau eborn/DAT3HIUUJM;Le Monêtier-Les-Bains, Route de Grenoble", + "ref:EU:EVSE": "FREBNPDAT3HIUUJM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51067400000, + 44.97595000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP64122N", + "capacity": "5", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP64122N", + "start_date": "2024-06-25", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - BIARRITZ AV. de la Reine Nathalie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54729680761, + 43.48425248701 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché Super - Saint-Julien les Villas 2", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "start_date": "2024-02-16;2024-02-08", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PCARSAI", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08714531684, + 48.26672039870 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-02-21", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Bellegarde-Sur-Valserine", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT012001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82305400000, + 46.10576100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-04-30", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPBRONO", + "description": "Bron - Novotel", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92838500000, + 45.72463900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAMPING UR ONEA", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*552*1*_*_;FR*SOD*S*OTHR*552*2*_*_", + "description": "CAMPING UR ONEA - BIDART", + "ref:EU:EVSE": "FROTHPOTHR55222;FROTHPOTHR55221;FROTHPOTHR55212;FROTHPOTHR55211", + "start_date": "2023-01-24", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59041800000, + 43.43381500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-09-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GB MORCOURT", + "operator:email": "info@chargepoint.com", + "network": "GB MORCOURT", + "ref:EU:EVSE": "FRCPIE6747885", + "ref": "FRCPIE6747885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32947200000, + 49.87100600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3756607044308048573", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/USZMAL05ZQ", + "operator": "Freshmile | FR*FR1", + "ref": "896655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09670900000, + 49.25492400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900101", + "ref": "FR*V75*P9001*01", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Quai du Marché Neuf 4", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-06-15", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34556000000, + 48.85405700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/E65Z5TBQNI", + "opening_hours": "Tu,Fr,We,Mo,Th,Sa 09:00-18:00", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3933477504626572055", + "ref": "485103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30798100000, + 49.36721100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP12180", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Nice, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18634800000, + 43.72782300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "699068", + "capacity": "2", + "description": "Freshmile France/ZOJVYBGVNI", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3344363722399979064", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40293100000, + 48.63026500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "network": "Lavorel Jet", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FR0NXPOOLQQNFM", + "description": "Lavorel Jet", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12398400000, + 45.99653700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/X76NRT9OK4", + "ref": "457596", + "ref:EU:EVSE": "FRS14P7468869796487869697" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56715900000, + 49.12157400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12174001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "OLEMPS - La Crouzette Parking Relais", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55550000000, + 44.33767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA5LU4ZOM9L1", + "ref": "932058", + "ref:EU:EVSE": "FRWA5P2586581820602477362", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09136200000, + 49.05939600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49295001;FRS49P49295A", + "charging_station:output": "22 kW", + "start_date": "2021-04-16;2024-04-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SAINT-LAURENT-DE-LA-PLAINE - Parking Rue des Mauges;OuestCharge - Diva Sp - Saint-Laurent-de-la-Plaine - Mauges", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80581100000, + 47.31498000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81069001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CORDES SUR CIEL - Avenue Du 8 Mai 1945", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95998200000, + 44.06129800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHDFE62548002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-01-25;2023-05-07", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "MARCK - Parking Rue Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95118370000, + 50.94737620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BELAYE - Parking Entrée Bourg", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS46E46022001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19155000000, + 44.46511600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-12-08", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS63P63448B", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG63 - ePremium - Vernet La Varenne - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45142440000, + 45.47278240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAING - Rue Jean Jaurès", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-05-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH03E59369001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48279966119, + 50.30792943041 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Ploudaniel-Allée des Tilleuls", + "ref:EU:EVSE": "FRS29E2917900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31165100000, + 48.53812800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94038009", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "L'HAY LES ROSES - Avenue Flouquet", + "start_date": "2023-03-09", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32147870000, + 48.76916630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel Première Classe Troyes Sud", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89835096", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10231300000, + 48.24709700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "b01308ad-0829-58cb-b13f-411eb893559b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Condat Sur Trincou | Mademoiselle dessert | Parking Administratif | Avant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70471600000, + 45.36429600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 8 AVENUE VICTOR BASCH - VANVES", + "ref:EU:EVSE": "FRSIGPSIGE46511;FRSIGPSIGE46512", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*465*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29191500000, + 48.81890900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSTRANS", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "TRANS EN PROVENCE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47900100000, + 43.50965400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3284EVCP01", + "description": "TOULOUSE MIRAIL", + "ref": "LFR3284EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39172500000, + 43.56693700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Hasparren | Place Harana", + "amenity": "charging_station", + "ref": "3b621bfc-983a-5822-a9a5-b740f180e16f", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30356200000, + 43.38555500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85012002", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-05-28", + "description": "LA BARRE-DE-MONTS - Rue De Saint-Jean-De-Monts" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11950707400, + 46.88027954000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "Allego FR, Tikehau, TJ2 Essey-les-Nancy", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego FR, Tikehau, TJ2 Essey-les-Nancy", + "ref:EU:EVSE": "FRALLEGO8005771;FRALLEGO8005762;FRALLEGO8001911;FRALLEGO8001901;FRALLEGO8001902;FRALLEGO8001912;FRALLEGO8005761;FRALLEGO8005772", + "ref": "FRALLEGO8005771;FRALLEGO8005762;FRALLEGO8001911;FRALLEGO8001901;FRALLEGO8001902;FRALLEGO8001912;FRALLEGO8005761;FRALLEGO8005772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24711200000, + 48.71108400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3033EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "FAVERGES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3033EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27761000000, + 45.75339700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "description": "KFC - Neuilly-sur-Marne", + "start_date": "2023-11-24;2024-01-11", + "charging_station:output": "50 kW;22 kW;160 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PKFCNSM", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52078561098, + 48.85418695073 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WYCEFWFH1H", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP6540354228358352468", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref": "492165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31308600000, + 43.39244400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "Non concerné", + "network": "Leclerc Mimizan", + "operator": "PLAGECO DISTRIBUTION", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-23", + "operator:email": "sylvie.at@scaso.fr", + "ref:EU:EVSE": "FREVBP1924110;FREVBP1928044;FREVBP2012399;FREVBP2020551", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "394121545", + "description": "Leclerc Mimizan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22080700000, + 44.20560500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "ref:EU:EVSE": "FRPD1PELCMTB", + "owner:ref:FR:SIREN": "891118473", + "description": "E.Leclerc - Montauban", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW;200 kW;240 kW;160 kW", + "start_date": "2024-02-13;2024-02-16;2024-03-12", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "300 kW;240 kW;50 kW;200 kW;22 kW;160 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35594134498, + 44.00476334533 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "owner:ref:FR:SIREN": "483500708", + "network": "Radisson Blu Hotel Toulouse Airport", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "ref": "6fb84790-c9c8-11ee-a506-0242ac120002", + "description": "Blagnac", + "capacity": "9", + "start_date": "2024-01-26", + "ref:EU:EVSE": "FRE000027984108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13043000000, + 43.63091000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2022-12-07", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218BP", + "description": "SEMOB Jules Serret", + "ref": "FRESEPS42218BP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37986800000, + 45.43433000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR812;FROTHPOTH3811", + "network": "ES B2G", + "ref": "FR*SOD*S*OTHR*8*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-12-19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ES/ QUAI DES PECHEURS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79306700000, + 48.81432300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6902785;FRCPIE6902755;FRCPIE6902695;FRCPIE6902715", + "description": "IRVE CAGPS TRIDENT 4", + "amenity": "charging_station", + "capacity": "4", + "network": "IRVE CAGPS TRIDENT 4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-06-24", + "ref": "FRCPIE6902785;FRCPIE6902755;FRCPIE6902695;FRCPIE6902715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46594000000, + 48.61842700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "102299", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/NPKDFX", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PNPKDFX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83884000000, + 49.58760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-02-21", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Penne-sur-Huveaune", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121048" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52006900000, + 43.28547800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2140969819248158823", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "Freshmile/JPZIUHAPOR", + "operator": "Freshmile | FR*FR1", + "ref": "574529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80510700000, + 48.51350700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Hyundai - JFC - Rouen", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-12-07", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPJFCHYUNDAI760001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06581400000, + 49.44701000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/VDPIDXOIQR", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1047204261885872570", + "opening_hours": "24/7", + "ref": "466230", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281900000, + 43.47239400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E128756", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LA FERTE-VIDAME - Pl. de la mairie", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - LA FERTE-VIDAME - Pl. de la mairie", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS28E128756", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90133100000, + 48.61170200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P4311750749757186388", + "capacity": "2", + "amenity": "charging_station", + "ref": "461655", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/BJGJFYAMMJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40148200000, + 49.17562900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "ref": "1128045", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA6LEDNOTX07", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P7876689713257628896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54552900000, + 48.47271300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-14", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "JUVIGNY LES VALLEES - Place Notre Dame", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P502601", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02247740000, + 48.67649940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-17", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "PAYRIN AUGMONTEL - Allée André Caville", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8120400122;FRS81E8120400121;FRS81E8120400111;FRS81E8120400112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35384841453, + 43.51993553381 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059965", + "owner:ref:FR:SIREN": "531681706;531681708;531681705;531681707", + "start_date": "2023-12-18", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "RELAIS AQUITAINE", + "ref:EU:EVSE": "FRHPCPNF059965", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66775900000, + 44.85088500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E0490174;FRS49E49329001;FRS49P49329A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SAVENNIERES - Place du Mail;OuestCharge - Diva Sp - Savennieres - Mail", + "start_date": "2021-04-23;2024-04-29;2024-04-04", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65531100000, + 47.38359500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-06", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS59E59485001", + "charging_station:output": "22 kW", + "description": "QUIEVY - Rue De La Place", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42781020000, + 50.16579520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRAS - Rue du Crinchon", + "ref:EU:EVSE": "FRH06E62041014", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77804700000, + 50.29622300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30008001", + "start_date": "2022-02-27", + "network": "Reveo", + "description": "ALLEGRE LES FUMADES - Parking Casino" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22837500000, + 44.18624000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Surzur - Rue de la Gare", + "start_date": "2016-10-04", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PHLLWEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.62943100000, + 47.57926300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052741;FRLMSE12346052742", + "socket:type2_combo:output": "50 kW", + "description": "SAVIGNE INTERMARCHE QC50-1", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-03", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "B155", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31130900000, + 46.16008400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRMGPP93049D", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "475023", + "description": "Métropolis/FR*MGP*P93049*D", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108900000, + 48.87290300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-07-30", + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "network": "AlterBase", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "description": "Réseau AlterBase - Thouars - Place Lavault - QC", + "ref:EU:EVSE": "FRSEOPAB79329P0063B", + "charging_station:output": "50 kW;43 kW", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21578980000, + 46.97873210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP1889488653000218357", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLAudincourt1", + "ref": "766611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84073100000, + 47.48726100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-05-31;2022-12-21", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "description": "ENGIE Vianeo - A43 Le Guiers", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89369707" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63387800000, + 45.57815100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "489ac804-246f-5d39-8688-dde60a6ece7d", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Chateauneuf la Foret | Place du 8 Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60593300000, + 45.71312400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E161611;FRS88E161613", + "network": "MODULO - SAULCY SUR MEURTHE - Rue du Moulin-sur-Allier", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E161611;FRS88E161613", + "description": "MODULO - SAULCY SUR MEURTHE - Rue du Moulin-sur-Allier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95925000000, + 48.23640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLPEVCARSORLEA", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "ORLEANS", + "network": "Carrefour Energies", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90548000000, + 47.90889000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3578EVCP01;LFR3578EVCP02", + "description": "COLOMBES Allende", + "ref:EU:EVSE": "LFR3578EVCP01;LFR3578EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23016900000, + 48.92107300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-12E, 31 Avenue Fernandel", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PIL6NJST1KN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44979300000, + 43.31225100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Roanne, Parking des Halles", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPIF1PCDZCRZ", + "ref": "IF1PCDZCRZ", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07645891000, + 46.03790160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1009149", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOPGT98E2DV3K", + "ref:EU:EVSE": "FRFR1P6070751604233346272", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75328500000, + 46.94735600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIBSVSP", + "opening_hours": "24/7", + "start_date": "2023-08-25;2023-09-04", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "description": "Ibis - Villers-Saint-Paul", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49986250252, + 49.28862998966 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/MF3IZD0TYS;Saint-Firmin, Parking sous la poste", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPMF3IZD0TYS", + "ref": "30446;MF3IZD0TYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02768900000, + 44.78081200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-Totem - LAPEYRE St Martin d'Héres", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP38421A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP38421A", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76909186720, + 45.18327041720 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR23911;FROTHPOTHR23912", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*239*1*_*_", + "charging_station:output": "22 kW", + "description": "PAYS RHENAN - GARE DE DRUSENHEIM 001", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.94988300000, + 48.76738800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6600025", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6600025", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "PARKING WEIDNER STATION 1", + "network": "PARKING WEIDNER STATION 1", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15735700000, + 46.13748200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6695201063267222625", + "capacity": "4", + "network": "Freshmile France", + "ref": "529412", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MAFQ9DQN6F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05438900000, + 48.90910300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s437305;WAAT/s421847", + "ref": "1154871;1069863", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4;8", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P8599088551618297589;FRWA2P5607282887450133213", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854100000, + 48.74646600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8462202458218256727", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892305", + "description": "Freshmile France/LLJ2K34GA23VTN", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.00713500000, + 48.81930700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "360 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref": "1000149990;1000145151;1000149986;1000149988", + "ref:EU:EVSE": "FRSWSE1000149990;FRSWSE1000149986;FRSWSE1000145151;FRSWSE1000149988", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "start_date": "2023-08-16;2023-09-12", + "owner:ref:FR:SIREN": "903356970", + "description": "ABB T360 HyperU Rumilly 3;ABB T360 HyperU Rumilly 2;ABB T360 HyperU Rumilly 1;ALFEN 2x22 HyperU Rumilly 5", + "socket:type2_combo:output": "360 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94428600000, + 45.85905300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3428743548658635572", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLPI9L5TNVXTNK", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref": "1009173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55269900000, + 47.21356900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-02", + "ref:EU:EVSE": "FRSSDPLOC345001", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "description": "Loc+ - Béziers", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24938200000, + 43.33065100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "network": "MODULO - COURVILLE SUR EURE - Rue des Planches", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - COURVILLE SUR EURE - Rue des Planches", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E200578", + "ref:EU:EVSE": "FRS28E200578" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24028784000, + 48.44961266000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "VRT_NB_243_2", + "description": "972 - RIVIERE PILOTE MARCHE", + "operator": "GREEN TECHNOLOGIE", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-08-10", + "ref:EU:EVSE": "Non concerné", + "operator:email": "odile.coumau@ezdrive.fr", + "opening_hours": "24/7", + "charging_station:output": "21 kW", + "network": "MARCHE DE RIVIERE PILOTE", + "owner:ref:FR:SIREN": "219722204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.90220807349, + 14.48640597885 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P2537141649297477802", + "ref": "39755", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/NO3UTM7ESA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97521100000, + 48.38289100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P7748610229688605204;FRZP1P7346156303745960238", + "capacity": "1", + "ref": "576023;576044", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LE006DA6;Zephyre/LE006E68", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76075300000, + 48.51362400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-03-31", + "operator": "RossiniEnergy", + "description": "mairie_montigny", + "ref:EU:EVSE": "FRROSE56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00075300000, + 49.45922000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDE82/GNRKMK", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PGNRKMK", + "ref": "46660", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97333000000, + 44.09140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST12212;FRIZFPFAST12211;FRIZFPFAST12213", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*122*1*_*_", + "start_date": "2024-06-27", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "description": "IZIVIA FAST - MCDONALDS - AIXE-SUR-VIENNE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11741360000, + 45.79976020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - CHEVERNY - Place de l'église", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - CHEVERNY - Place de l'église", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4301;FRS41E4302", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4301;FRS41E4302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46082800000, + 47.49932500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/LLLDRF0C0RKLGY", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "896724", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P6475728655683419379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10350400000, + 49.28073900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*40*1*_*_;FR*SOD*S*LYON*40*2*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "MEY03 - CENTRE", + "start_date": "2020-11-26", + "ref:EU:EVSE": "FRGLYPLYON4022;FRGLYPLYON4011;FRGLYPLYON4012;FRGLYPLYON4021", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00373400000, + 45.76705800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "SAINT ANDRE DE MAJENCOULES - Parking Eglise", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30229001", + "network": "Reveo", + "start_date": "2022-03-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67473800000, + 44.02832300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/NWTLJV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PNWTLJV", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "21895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40389000000, + 48.04340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-19", + "charging_station:output": "12 kW", + "capacity": "2", + "ref": "8bcfc19a-0441-4f6d-87e9-a424b89e4cb0", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "description": "AUSTERLITZ", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEAUSTERLITZ11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02000000000, + 44.12000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/58d332c8-e9f9-4f78-aa38-866ab9dd1632", + "amenity": "charging_station", + "ref": "951446", + "capacity": "4", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P287943242971068268", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11864000000, + 44.61350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE17411;FRSIGPSIGE17412", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*174*1*_*_", + "start_date": "2021-07-22", + "description": "SIGEIF - RUE DU 18 JUIN - MARGENCY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28817900000, + 49.00372300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001487;FRCG0E001486;FRCG0E001485", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "opening_hours": "Fr 14:00-18:00,Th 14:00-18:00,We 14:00-18:00,Tu 14:00-18:00,Sa 08:00-12:00,Fr 08:00-12:00,Th 08:00-12:00,We 08:00-12:00,Tu 08:00-12:00,Mo 14:00-18:00,Mo 08:00-12:00", + "network": "Berger Location Poitiers - 86000", + "capacity": "3", + "charging_station:output": "50 kW;22 kW", + "description": "Berger Location Poitiers - 86000", + "ref:EU:EVSE": "FRCG0E001487;FRCG0E001486;FRCG0E001485", + "operator:email": "info@chargeguru.com", + "start_date": "2024-01-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33854200000, + 46.60617400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;63 kW;22 kW", + "description": "ENGIE Vianeo - A52 Peypin", + "start_date": "2023-06-19", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89877629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57590200000, + 43.40036100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "6ff1dbe9-b52d-57b4-8ec6-6fc9964f6b66;FR*SOD*S*MB40*54*1*_*_", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS40PMB405414;Non concerné;FRS40PMB405411;FRS40PMB405412;FRS40PMB405413", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "description": "DAX - HOPITAL;MOBIVE | Dax | Hopital", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-05-27", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04190100000, + 43.71103300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "description": "MEAUX - Place du Temple", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE77MXJA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88762900000, + 48.95819700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "capacity": "8", + "network": "Allego Carrefour Riom", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9006642;FRALLEGO9006552;FRALLEGO9006551;FRALLEGO9003692;FRALLEGO9003691;FRALLEGO9003951;FRALLEGO9003952;FRALLEGO9006641", + "description": "Allego Carrefour Riom", + "ref": "FRALLEGO9006642;FRALLEGO9006552;FRALLEGO9006551;FRALLEGO9003692;FRALLEGO9003691;FRALLEGO9003951;FRALLEGO9003952;FRALLEGO9006641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11935055000, + 45.87426265000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;180 kW", + "socket:type2_combo:output": "50 kW;180 kW", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR3454EVCP03;LFR3454EVCP02;LFR3454EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "FREYMING-MERLEBACH Metz", + "ref:EU:EVSE": "LFR3454EVCP03;LFR3454EVCP02;LFR3454EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81126100000, + 49.14205100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MONTPELLIER - Av De Palavas", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34172001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89065980000, + 43.59052070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/NTEXHV;Lorette, Parking rue Saint Joseph", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPNTEXHV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "85988;NTEXHV", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58146000000, + 45.51350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3827894147050011979", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971762", + "description": "Freshmile France/LLL2A9E0BRMZ66", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59507900000, + 44.16755300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "description": "AMIENS - Parking Silo P2 - Centre Hospitalier Universitaire", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E80021001", + "start_date": "2022-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25519060000, + 49.87576240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLWBQSZ", + "description": "Le Lauzet-Ubaye, Place de La Poste;Réseau eborn/LWBQSZ", + "ref": "78621;LWBQSZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43503000000, + 44.42820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Vitrolles - Hôtel Kyriad Aéroport", + "ref:EU:EVSE": "FRELCPVITHK", + "opening_hours": "24/7", + "start_date": "2022-12-15", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25193300000, + 43.42547400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E76351012", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-10-01", + "description": "Parking le Havre Vauban - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12700795737, + 49.49016898125 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "capacity": "2", + "amenity": "charging_station", + "network": "SUPER U ARNAGE SALARIES 1", + "ref": "FRCPIE6631495", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SUPER U ARNAGE SALARIES 1", + "ref:EU:EVSE": "FRCPIE6631495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18200800000, + 47.93913400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "F1BZD36MJS", + "charging_station:output": "120 kW;22 kW", + "description": "Herblay , Action", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHPF1BZD36MJS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17241411000, + 49.00563000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1625", + "ref": "FR*V75*PPX16*25", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris | Rue Pétrarque 2", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28423000000, + 48.86129230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/SFV8O6KKAO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5861684304343607976", + "network": "Freshmile France", + "ref": "682244", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93280300000, + 49.92880800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "330713108", + "ref:EU:EVSE": "FRTCBP01169", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRTCBP01169", + "start_date": "2022-12-12", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83467084483, + 47.01991862776 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5897335516575630606", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/E2BTI9BB2V", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "741003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91959800000, + 47.61138800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW357601", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:30, Mo 13:30-19:00, Tu 08:00-12:30, Tu 13:30-19:00, We 08:00-12:30, We 13:30-19:00, Th 08:00-12:30, Th 13:30-19:00, Fr 08:00-12:30, Fr 13:30-19:00, Sa 09:00-12:30, Sa 13:30-18:30", + "description": "BMW - Rennes", + "operator:email": "support@driveco.com", + "start_date": "2022-10-27;2022-04-22", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72024900000, + 48.17956800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Lanveoc-Rue de la Mairie", + "start_date": "2023-03-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2912000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46140800000, + 48.28619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11086001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "CAVES - Rue De La Mairie", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97820500000, + 42.93159100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Hôtel Meurice Calais", + "owner:ref:FR:SIREN": "384179172", + "ref": "dfdc91e5-b78b-42a6-8bc1-fa8185895dfb", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1PEAC89896;FRZP1PEAC88452", + "opening_hours": "24/7", + "description": "Hôtel Meurice Calais - 7,4 kW AC", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85156677000, + 50.95737604000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AULUS LES BAINS - D8- Direction Col D'Agnes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS09E09029001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33707000000, + 42.78936600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/SLFNQF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PSLFNQF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64745", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39232000000, + 49.79940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST26413;FRIZFPFAST26412;FRIZFPFAST26411", + "description": "IZIVIA FAST - MCDONALDS - CHAMBLY", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-17", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*264*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23660260000, + 49.16593750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44E44037001;FRS44P44037A", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "CHATEAU-THEBAUD - Rue Du Prieuré;OuestCharge - Diva Sp - Chateau-Thebaud - Prieure", + "start_date": "2024-04-18;2021-04-29", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42249800000, + 47.12417600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-16;2015-07-01", + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH619XDZ91BD13VZZTK3", + "network": "Ecocharge77", + "description": "CLAYE-SOUILLY - Allée André Benoist;Claye-Souilly - parking la Poste - AC", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77118A;FRS77E77118001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68764900000, + 48.94590400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "operator": "GREENSPOT", + "description": "CM Montesquieu", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000086092;FRGSPP1000056038;FRGSPP1000056039;FRGSPP1000056040;FRGSPP1000086093", + "network": "CM Montesquieu", + "charging_station:output": "23 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63314223075, + 44.84649108920 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E219969;FRS37E219968", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E219969;FRS37E219968", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LA VILLE AUX DAMES - Anciens combattants", + "network": "MODULO - LA VILLE AUX DAMES - Anciens combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76827300000, + 47.39558900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "67bfa122-8e40-5cd8-af1b-23d6528bc208", + "description": "CCMAMO - Arnaville - Rue de Novéant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03647900000, + 49.01035700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-08-01;2024-08-02", + "network": "LPA Parking Tony Garnier - N1 - Zone 2", + "operator": "E-TOTEM", + "description": "LPA Parking Tony Garnier - N1 - Zone 2", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRG10P69387BB", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P69387BB", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82345935000, + 45.72903382000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "920a18d2-9c0c-5e25-a884-aa218cf6b018", + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "capacity": "4", + "description": "MOBIVE | GRAYAN-ET-L'HOPITAL | Camping Municipal", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14486900000, + 45.43333800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE2941;FRSIGPSIGE2931;FRSIGPSIGE2911;FRSIGPSIGE2921", + "description": "SIGEIF - 2 RUE DE PONCEAU - MEUDON", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*SIGE*29*2*_*_;FR*SOD*S*SIGE*29*1*_*_;FR*SOD*S*SIGE*29*3*_*_;FR*SOD*S*SIGE*29*4*_*_", + "start_date": "2020-09-25;2020-09-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23784400000, + 48.81248500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "SUPER U MESLAY BORNE 2", + "amenity": "charging_station", + "network": "SUPER U MESLAY BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6593605;FRCPIE6560565;FRCPIE6510835", + "start_date": "2022-10-12", + "ref": "FRCPIE6593605;FRCPIE6560565;FRCPIE6510835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55977500000, + 47.95522600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/RCNKO7ZKC7", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P1540035536222818191", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref": "505785" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323700000, + 48.73226800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Lalinde | Avenue Jean Moulin", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "74fbf508-e8a3-5131-ba1f-096295417ab4", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72474900000, + 44.83595300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - Thénezay - Mairie ", + "ref:EU:EVSE": "FRSEOPAB32103A", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-25", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02581000000, + 46.71949300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPAIRBUS443401", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-01-09", + "operator": "DRIVECO", + "description": "Airbus Atlantic - Nantes - Parking A15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58816700000, + 47.16110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR1754EVCP02;LFR1754EVCP01", + "description": "ETAPLES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR1754EVCP02;LFR1754EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64574600000, + 50.51459500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/ZRINLM4J90", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref:EU:EVSE": "FRM45P2767512997931715392", + "ref": "414804" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05386000000, + 47.89206000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*WIIZ*147*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2022-05-24", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14712;FRA16PWIIZ14711", + "operator:email": "sav@izivia.com", + "description": "VALBONNE - ROUTE DES DOLINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04471200000, + 43.62362800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "capacity": "2;4", + "operator": "Freshmile | FR*FR1", + "opening_hours": "We,Sa,Mo,Tu,Th,Fr 08:00-12:00,Tu,Mo,Fr,Th,We 14:00-19:00,Sa 14:00-18:00;Mo,Th,Tu,We,Fr 08:00-12:00,Sa 09:00-12:00,Mo,Fr,Th,We,Tu 14:00-19:00,Sa 14:00-18:00", + "description": "Freshmile France/LLKB265CC1QZCA;Freshmile France/VK0TQGFDSG", + "ref": "559802;892500", + "ref:EU:EVSE": "FRFR1P653987164534589516;FRFR1P3414922635124787466" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805000000, + 43.34891600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "E. Leclerc Drive - Lunel", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBBFLUN", + "start_date": "2024-04-30", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11712324372, + 43.67801335411 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LGOYUQZSSS;Saint-Ismier, Chemin du Rozat", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLGOYUQZSSS", + "charging_station:output": "22 kW", + "ref": "LGOYUQZSSS;30218", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82097200000, + 45.24128800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "operator:email": "help@electra.com", + "capacity": "5", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Magny-les-Hameaux - Novotel", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPMLHNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07484900000, + 48.75446400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VALLAURIS - Soleil", + "start_date": "2024-01-17", + "ref:EU:EVSE": "FRP07E06155005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07127000000, + 43.56641000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "network": "BNR BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "BNR BORNE 1", + "ref:EU:EVSE": "FRCPIE6697285", + "ref": "FRCPIE6697285" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63825800000, + 48.13359500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LLUVAKJT5MS6WH;1167582", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "description": "Easy Charge/LLUVAKJT5MS6WH;Lannion, Parking de Caerphilly", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHP5814076930966935680;FRECHPLLUVAKJT5MS6WH", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46007300000, + 48.72929700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2023-02-08", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A31 Saint-Rémy", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP103116" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17650500000, + 49.17979700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WHUUHA0GTM", + "operator:email": "roaming@freshmile.com", + "ref": "368971", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P108252322777839254", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56982100000, + 44.85805500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0711", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-08-17", + "opening_hours": "24/7", + "ref": "FR*V75*PPX07*11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue Ernest Psichari 13", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30807580000, + 48.85616970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7736554120185957106", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1053126", + "network": "Freshmile France", + "description": "Freshmile France/LLMT4IKIT2IYPB", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76597100000, + 48.56960100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-18", + "network": "DRIVECO", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINTOYOTA349201", + "description": "Toyota - Le Crès", + "capacity": "3", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93613100000, + 43.63932000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SYDED/pontarroc", + "ref:EU:EVSE": "FRS25PPONTARROC", + "charging_station:output": "50 kW;44 kW;18 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SYDED", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "ref": "86903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128000000, + 46.90110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - BRINON SUR SAULDRE - Rte. de Chaon(Mairie)", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E186370", + "network": "MODULO - BRINON SUR SAULDRE - Rte. de Chaon(Mairie)", + "ref": "FRS18E186370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25276700000, + 47.56788300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "operator": "GARAGE HENRY", + "opening_hours": "24/7", + "network": "GARAGE HENRY", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "898168273", + "operator:email": "garage.henry25@orange.fr", + "start_date": "2022-11-01", + "ref": "0ba8ed7c-43f6-4b51-9b36-66b094607c09", + "description": "GARAGE HENRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93000000000, + 47.24000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1112133", + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "description": "PICOTY/e3d5d550-d39c-4019-b339-d50891a107bb", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPY1P1132512747610192821", + "network": "PICOTY", + "operator": "Mobilygreen | FR*PY1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40568300000, + 46.33544600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81019001", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-08-22", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ASSAC - Parking Salle Des Fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43945300000, + 43.97500110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE402500", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Tavel Nord", + "ref": "FRIONE402500", + "start_date": "2020-09-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76692350000, + 46.13423300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "description": "OuestCharge - ePremium - Saint-Brevin-Les-Pins - Ocean (21)", + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18016800000, + 47.23219400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-16;2015-07-01", + "description": "Presles-en-Brie;PRESLES-EN-BRIE - Rue Du Marronnier", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77377A;FRS77E77377001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH617Z7JPB2W1XVCXPCM", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74063700000, + 48.71499300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TATINGHEM - Place de la mairie", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH01E62807001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20870900000, + 50.74429700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2021-04-02", + "amenity": "charging_station", + "network": "MODULO - Super Chargeur SUBLAINES - Péage A85", + "capacity": "4", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - Super Chargeur SUBLAINES - Péage A85", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E4526;FRS37E4525;FRS37E4524;FRS37E4523", + "ref": "FRS37E4526;FRS37E4525;FRS37E4524;FRS37E4523" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98564808000, + 47.28609494000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21878", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PWUMDJK", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/WUMDJK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36004000000, + 47.74900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON16311;FRGLYPLYON16321;FRGLYPLYON16331;FRGLYPLYON16341", + "ref": "FR*SOD*S*LYON*163*3*_*_;FR*SOD*S*LYON*163*2*_*_;FR*SOD*S*LYON*163*1*_*_;FR*SOD*S*LYON*163*4*_*_", + "start_date": "2022-07-21", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "LY313 - SERVIENT - PREFECTURE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84147300000, + 45.75994300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5984002", + "ref": "FR*MEL*P59840*02", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MEL", + "description": "PRÉMESQUES - Rue du Retour", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95188100000, + 50.65543000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2019-12-17", + "network": "DRIVECO", + "description": "OPEL - Englos", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEURAUTOOPEL593201", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96640000000, + 50.62860100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6588565", + "capacity": "2", + "amenity": "charging_station", + "network": "ENVSN NORD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-05-31", + "description": "ENVSN NORD", + "ref": "FRCPIE6588565" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12206200000, + 47.50962900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/L0KOZZ2ARU", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P7110002769353514297", + "ref": "579017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36467000000, + 49.72618100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "59674fcd-13c5-5f46-9b4a-a42cc85a710c", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Belves de Castillon | le Bourg - Parking Proche Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03135100000, + 44.87862800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BUTRY SUR OISE - Rue de la Division Leclerc", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-07-17", + "ref:EU:EVSE": "FRS95E95120001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19805000000, + 49.08621300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "network": "CASINO FREJUS", + "description": "CASINO FREJUS", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRALLPCAS013", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;43 kW", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73548000000, + 43.42518600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2544EVCP01;LFR2544EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "BOURCEFRANC", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2544EVCP01;LFR2544EVCP02", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13375300000, + 45.83700900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PWKEHSVYHAQ", + "opening_hours": "24/7", + "network": "larecharge", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW", + "description": "Marseille, Parking De La Mairie, Bd Bouyala D'Arnaud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44313500000, + 43.29730700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402515", + "description": "SDEY/HEQ9HQWWAE", + "ref:EU:EVSE": "FRS89P4098988075591263764" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48372100000, + 47.96405400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*275*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-04-22", + "description": "GRASSE - PARKING CIMETIERE SAINTE BRIGITTE", + "ref:EU:EVSE": "FRA16PWIIZ27512;FRA16PWIIZ27511", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91506260000, + 43.64566350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CSVFMAPDLK", + "ref:EU:EVSE": "FRFR1P6336315231747126216", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "453996", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11870000000, + 46.45180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Mairie - Fouras", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMRIFRS", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09450455093, + 45.98627556767 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPYCJKYF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Salaise-Sur-Sanne, Place Publique;Réseau eborn/YCJKYF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "YCJKYF;30236", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80409000000, + 45.34990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/2B74FE1A-57CE-4ED3-8CB5-B2A97E28A786", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP8698966707754217341", + "operator:email": "support@evzen.com", + "ref": "1182957" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36928300000, + 44.57566700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*601*2*_*_;FR*SOD*S*OTHR*601*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-02", + "description": "INTERMARCHE - JUILLAN", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR60112;FROTHPOTHR60111;FROTHPOTHR60121;FROTHPOTHR60122", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03616000000, + 43.20030200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPFFCIXLY2AX", + "ref": "FFCIXLY2AX", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Molines-En-Queyras, Clot la Chalpe", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84759393000, + 44.71980038000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPHHXSOERCYL", + "ref": "HHXSOERCYL", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Cluses, Sardagne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56210630000, + 46.06910810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-07-25", + "description": "ENGIE Vianeo - Hôtel Campanile Versailles Buc", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12166100000, + 48.76042200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5158435149375225625", + "amenity": "charging_station", + "capacity": "1", + "ref": "1122639", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLWT876F41YORW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54894400000, + 43.33636500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Boulevard Edgar Quinet 2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1408", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "ref": "FR*V75*PPX14*08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33016760000, + 48.83951080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "Freshmile France/LLO4EVRG51FM3T", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;36 kW", + "ref": "998796", + "ref:EU:EVSE": "FRFR1P1226162167931408974" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51915400000, + 44.87311900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW;24 kW", + "description": "Les Viviers (Camping Siblu) - Lège-Cap-Ferret", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSIBLU339501", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19564900000, + 44.73558400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900018", + "ref:EU:EVSE": "FRS27PLYONSFOURACHAUX", + "network": "SIEGE27", + "start_date": "2016-06-17", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47917500000, + 49.39968300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Cavan-Rue Maurice Denis", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22034001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34796300000, + 48.67226400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOUGIVAL - Rue Du Général Leclerc", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY05E78092002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13761300000, + 48.86701900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRROSE165", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-10-18", + "operator": "RossiniEnergy", + "description": "Lucullus" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45637000000, + 50.34102800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLBZFDK3NJ", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP2432151486642488056", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "1087440", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75455600000, + 48.63150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE101405;FRIOYE101404;FRIOYE101403;FRIOYE101402;FRIOYE101401;FRIOYE101406", + "description": "Portes d'Angers Sud", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "start_date": "2019-04-26", + "ref": "FRIOYE101405;FRIOYE101404;FRIOYE101403;FRIOYE101402;FRIOYE101401;FRIOYE101406", + "network": "Portes d'Angers Sud", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235000, + 47.50032088000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BEZANNES -1 - Pkg. Louis Victor de Broglie - 49675", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BEZANNES -1 - Pkg. Louis Victor de Broglie - 49675", + "ref": "FRS51E49674;FRS51E49675", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-12-19", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E49674;FRS51E49675" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99888400000, + 49.21769300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "LALOUBERE - Eglise", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65251001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07183000000, + 43.20586000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Avrillé", + "owner:ref:FR:SIREN": "898270251", + "network": "Avrillé", + "start_date": "2023-01-11", + "ref": "FRIENE001102;FRIENE001101", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE001102;FRIENE001101", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60318800000, + 47.51887300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PALAVAS LES FLOTS - Parking de la Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34192003", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93334225313, + 43.52915899405 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Malansac - Rue des Forges", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PUWNFHN", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29572000000, + 47.67663400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LM0QFZ1WJ7YYZB", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4984948865258240322", + "ref": "1184947" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75115200000, + 48.59156400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30342001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VENEJAN - Foyer Maurice Fost", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64768400000, + 44.19982400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPGRENARDFORD011001", + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2020-07-21", + "description": "Ford - Oyonnax", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66581800000, + 46.28415400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "network": "CAMPING BRANTOME PEYRELEVADE ", + "amenity": "charging_station", + "capacity": "1", + "description": "CAMPING BRANTOME PEYRELEVADE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "482977857", + "charging_station:output": "22.08 kW", + "operator": "CAR2PLUG", + "ref:EU:EVSE": "FRC2P008101", + "operator:email": "contact@car2plug.fr", + "ref": "FRC2P008101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66104540000, + 45.36023000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "4f3433e4-aeb8-4c48-9301-097b84cefc73", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "Lou Castelet Hôtel", + "operator": "LUMI'IN", + "start_date": "2022-09-08", + "ref:EU:EVSE": "FRLUMELOUCASTELET11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20000000000, + 43.77000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "ff6c72da-c0a8-5715-9527-353bdc921b14", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV", + "description": "MOBIVE | Saint Sornin leulac | le Bourg Contre Allee N145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29759000000, + 46.19922500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-29", + "operator": "STATIONS-E", + "description": "Citroën - BORDEAUX - GARAGE GAUYAT", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE40SABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31242200000, + 43.65713700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "ref": "767307", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "description": "BornEco/63dcefa3de530c3ec2928c39", + "ref:EU:EVSE": "FRBHMP4115549013840170220", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13443700000, + 48.47751700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P3057346340146894682", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446831", + "description": "Leclerc/TXBSNOD426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111800000, + 42.66602400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PKEOQA5N1B9", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Saint-Victoret, Rue Raymond Marin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23565600000, + 43.42063100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "402587", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P8489368812291699460", + "description": "SDEY/PJXN1PMJGC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32516000000, + 48.24885100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89363745", + "operator": "R3", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW", + "description": "R3 - Norauto Sin le Noble" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09942700000, + 50.34138000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2352683121125113505", + "socket:type2_combo:output": "180 kW", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/QOYFKCIZBE", + "operator": "Freshmile | FR*FR1", + "ref": "801657" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61803400000, + 47.47294200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYULGN", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "start_date": "2022-07-27;2022-07-26", + "opening_hours": "24/7", + "description": "Super U - Laguenne", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77348880000, + 45.24565860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Valence, Clos Sylvestre", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPWM3WAO2RMZ", + "ref": "WM3WAO2RMZ", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88850835000, + 44.92496883000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP7040629550275817994", + "description": "CARF - Bornes Publiques/A94F6CB6-F1DE-4311-87F5-E1C21C182281", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "377745" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41676000000, + 43.73867000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VILLENEUVE 2 - PKG COMMERCANT", + "ref:EU:EVSE": "FROTHPOTHR80912;FROTHPOTHR80911", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "NHOOD", + "start_date": "2024-04-03", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*809*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15369320000, + 50.63163720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "La Balme-De-Sillingy, Supermarché;Réseau eborn/AWWZZB", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "32908;AWWZZB", + "ref:EU:EVSE": "FREBNPAWWZZB", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03918000000, + 45.96120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "121580;DNLKCM", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "description": "Réseau eborn/DNLKCM;Champier, Route du 16 Mai 1944", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-06-12", + "capacity": "2;3", + "ref:EU:EVSE": "FREBNPDNLKCM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29093000000, + 45.45590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "description": "ES/ COMMUNE DE GOUGENHEIM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*409*1*_*_", + "start_date": "2022-06-13", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR40912;FROTHPOTHR40911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56603100000, + 48.70161500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref": "591416", + "ref:EU:EVSE": "FRFR1P1840502176588736239", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DKIVXKZFGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80312500000, + 49.13609000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Saint-Chamond, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP30183", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.46107100000, + 45.46107100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7031499619613024384", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/CJMEQHEFAA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "801588", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26943100000, + 49.88548000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP02717", + "network": "Garage Pourchet", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP02717", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 07:30-12:00, Mo-Fr 13:30-19:00", + "owner:ref:FR:SIREN": "337650683", + "start_date": "2024-01-29", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Garage Pourchet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48580260890, + 47.04829673226 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "wall" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20646430000, + 49.97202950000 + ], + [ + 1.20626650000, + 49.97192080000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7090042412981635216", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "412130", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ZDFNGFYIU3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03216000000, + 43.77025000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8330250294997694876", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461907", + "description": "MobiSDEC/RFATER8YU3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85621200000, + 49.12995900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "owner:ref:FR:SIREN": "351440078", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 08:30-19:00", + "capacity": "1", + "ref:EU:EVSE": "FRZMAE74AC109624", + "network": "MAZDA Evreux GHV", + "operator:email": "advenir@zeborne.com", + "description": "Mazda - Angerville-la-Campagne - 7kW AC ", + "ref": "109624", + "start_date": "2022-01-24", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15505800000, + 48.99590700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE38", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-02-11", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Ecoclean", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12228590000, + 48.76116440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ORGEVAL - Chemin Du Ru", + "ref:EU:EVSE": "FRY01E78466001", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97776600000, + 48.91903400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE468453;FRIOYE468452;FRIOYE468451;FRIOYE468406;FRIOYE468405;FRIOYE468401;FRIOYE468402;FRIOYE468403;FRIOYE468404", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE468453;FRIOYE468452;FRIOYE468451;FRIOYE468406;FRIOYE468405;FRIOYE468401;FRIOYE468402;FRIOYE468403;FRIOYE468404", + "opening_hours": "24/7", + "start_date": "2023-11-21", + "description": "Burnhaupt", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Burnhaupt", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14743500000, + 47.74030400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Montaudin - Mairie", + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-04-14", + "network": "TEM53", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53P53154A", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98902200000, + 48.38550900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66133001", + "network": "Reveo", + "start_date": "2022-02-25", + "description": "PALAU DEL VIDRE - Chemin De Batipalmes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95848700000, + 42.57072400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE013001;FRIENE013002", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Riorges", + "start_date": "2024-01-09", + "network": "Riorges", + "ref": "FRIENE013001;FRIENE013002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04883036000, + 46.05878879000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "charging_station:output": "18 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35135001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "operator": "Bouygues (1-OUEST)", + "network": "OUEST CHARGE", + "description": "IRODOUER - 6 rue du lavoir ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95097700000, + 48.25011100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "BAGNOLES DE L'ORNE - Avenue du Maréchal de Tesse", + "amenity": "charging_station", + "ref": "SE61-BAGNOL-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61483A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42418700000, + 48.55032700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1888307949248011218", + "opening_hours": "24/7", + "ref": "446579", + "charging_station:output": "22 kW", + "description": "Freshmile France/RPIAIAYUIP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65306000000, + 48.58680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-06", + "ref": "64892;WQFNLH", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/WQFNLH;Escalquens, Tennis", + "ref:EU:EVSE": "FRS31PWQFNLH", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55905000000, + 43.51780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NANTERRE - Rue des Luaps Prolongée", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2023-04-20", + "ref:EU:EVSE": "FRSIPE92050021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21037102952, + 48.87979057853 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000563;FRCG0E000564;FRCG0E000565", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "DOMAINE GABRIEL MONIER - 26790 - 1", + "start_date": "2022-11-10", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "ref:EU:EVSE": "FRCG0E000563;FRCG0E000564;FRCG0E000565", + "description": "DOMAINE GABRIEL MONIER - 26790 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93713200000, + 44.29614800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "FALICON - PARKING MAIRIE", + "ref:EU:EVSE": "FRM06PNICE19012;FRM06PNICE19011", + "ref": "FR*SOD*S*NICE*190*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27871170461, + 43.74905337140 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "d8d26d5b-8c57-556b-b2fb-43fce20aa218", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Agen | Pierre de Coubertin", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61871200000, + 44.19251600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE32911;FRSIGPSIGE32912", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-08", + "description": "SIGEIF - 27 RUE EMY LES PRES PARKING SALLE DES FETES - CORMEILLES EN PARISIS", + "ref": "FR*SOD*S*SIGE*329*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20543900000, + 48.97603700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03;2024-09-26", + "network": "Métropole Rouen Normandie", + "capacity": "8", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ROUEN - Place du Boulingrin", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76540003;FRC01E76000003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10737800000, + 49.44675300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SAMOREAU", + "ref:EU:EVSE": "LFR3202EVCP01", + "ref": "LFR3202EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77125700000, + 48.42330900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "87391cea-9f50-5f5c-9f84-7d8f11da232a", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saujon | Parking gare SNCF", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92973200000, + 45.66683900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/montaubandr", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PMONTAUBANDR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "79792", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34416000000, + 44.02380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-31", + "owner:ref:FR:SIREN": "832489801", + "description": "PLACE DE LA MAIRIE - LA MOLE", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P83310*M0L*MA1R1E", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP83310M0LMA1R1E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46519900000, + 43.20743500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3664EVCP03;LFR3664EVCP01;LFR3664EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "LE GRAND QUEVILLY Couturier", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3664EVCP03;LFR3664EVCP01;LFR3664EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04633000000, + 49.42000500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMBRH", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-02-22;2023-03-09", + "capacity": "4", + "opening_hours": "24/7", + "description": "Intermarché Super - Bartenheim", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49259330000, + 47.63639390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "FQCHFMZVJL;31882", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPFQCHFMZVJL", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Montélimar, Parking Square Nicolas;Réseau eborn/FQCHFMZVJL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75649100000, + 44.55602800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP60589A", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP60589A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - LAPEYRE Saint Maximin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46941671935, + 49.22983493490 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E42218002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Saint-Étienne Antonin Moine - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39155570000, + 45.43570750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-11-08", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Crèvecoeur-Le-Grand", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT603601", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08461600000, + 49.60356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVALIM", + "capacity": "4", + "opening_hours": "24/7", + "description": "Valence - Intermarché", + "operator": "ELECTRA", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91325200000, + 44.91218600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-07", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*524*1*_*_", + "description": "BRICOMARCHE - AUXONNE", + "ref:EU:EVSE": "FROTHPOTHR52411;FROTHPOTHR52412", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38699800000, + 47.19011900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6730725;FRCPIE6729325;FRCPIE6729285;FRCPIE6729295;FRCPIE6729335;FRCPIE6730005", + "network": "SONEPAR LE PONTET 13", + "amenity": "charging_station", + "capacity": "12", + "description": "SONEPAR LE PONTET 13", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6730725;FRCPIE6729325;FRCPIE6729285;FRCPIE6729295;FRCPIE6729335;FRCPIE6730005", + "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86297900000, + 43.98723700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Sa,We,Fr,Th,Tu,Mo 08:00-12:00,We,Tu,Th,Mo,Fr,Sa 14:00-18:00", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P2792386300768064102", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "ref": "559739", + "description": "Freshmile France/LDO26AVCKK", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09613800000, + 44.13770800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRURWPUNIB2522;FRURWPUNIB2521;FRURWPUNIB2511;FRURWPUNIB2422;FRURWPUNIB2421;FRURWPUNIB2412;FRURWPUNIB2411;FRURWPUNIB2512", + "description": "TOISON DOR - PKG SOUS COMMERCE;TOISON DOR - ZONE 1", + "opening_hours": "24/7", + "start_date": "2021-12-01;2021-11-09", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*UNIB*25*1*_*_;FR*SOD*S*UNIB*24*2*_*_;FR*SOD*S*UNIB*24*1*_*_;FR*SOD*S*UNIB*25*2*_*_", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05015100000, + 47.35747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6424082927269219950", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MRLB3TAK7Z", + "operator": "Freshmile | FR*FR1", + "ref": "466113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23604200000, + 49.09372200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "ref:EU:EVSE": "FRTNME09910787", + "operator:email": "customerservice@shellrecharge.com", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "09910787", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "ref": "FRTNME09910787", + "description": "09910787" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49050300000, + 48.41701300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1144376277904246606", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "412289", + "opening_hours": "24/7", + "description": "Freshmile France/HGSHBA4KAI", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538000000, + 50.35770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@zunder.com", + "network": "Zunder", + "description": "Zunder/74654", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "863358", + "operator": "Zunder | ES*ZUN", + "ref:EU:EVSE": "ESZUNP4438102423172822835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05648800000, + 48.72308400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "25 kW;100 kW;150 kW;43 kW;22 kW", + "description": "MobiSDEC/LLV6OREWV2DBTU", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "25 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1119018", + "ref:EU:EVSE": "FRS14P7309750501952857933" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70271200000, + 49.27319500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAGUIOLE - Place Du Foirail Vieux", + "start_date": "2023-03-15;2022-03-03", + "charging_station:output": "50 kW;43 kW;22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12119001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84772000000, + 44.68356500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA4LIKM1NC83", + "operator": "WAAT SAS | FR*WA4", + "ref": "880164", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA4P3718266228561037078" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11852100000, + 49.48385900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Marechal Leclerc;LES PONTS-DE-CE - Place Maréchal Leclerc", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-05;2021-04-23", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49246B;FRS49E49246002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52542200000, + 47.42444100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MAMERS - Boulevard Victor Hugo", + "ref:EU:EVSE": "FRS72E72180001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36852600000, + 48.34538000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANDRECIES - Bd Andre Bonnaire", + "ref:EU:EVSE": "FRH16E59331001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2022-09-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69299400000, + 50.12446600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-18;2021-04-12", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44P44199A;FRS44E44199001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SOUDAN - Rue Du Presbytère;OuestCharge - Diva Sp - Soudan - Presbytère", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30519800000, + 47.73678000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-09-01", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "description": "SIEG63 - ePremium - Saint Beauzire - Pont Neuf", + "opening_hours": "24/7", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63322A", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18208800000, + 45.85282790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "MAUBEUGE - Avenue Jean jaures", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59392006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95731000000, + 50.28172000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "Béziers - Parking Ecole Des Oliviers ", + "ref:EU:EVSE": "FRS34E340320021;FRS34E3403200211", + "start_date": "2024-06-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25316500000, + 43.33647000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRETEIL - Avenue de la France Libre", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2024-09-11", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE94028018", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45484743871, + 48.77915248742 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-LAURENT-DU-VAR - PUGETS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE35612;FRM06PNICE35611", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*356*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18528250493, + 43.68521012706 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Terrasson | Place Yvan delbos", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "509ae9b2-decd-5a25-9af0-8bef39004f40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29795100000, + 45.13247300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE43812;FRSIGPSIGE43811", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*438*1*_*_", + "start_date": "2023-10-30", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 19 RUE MARGUERITE DURAS - VITRY-SUR-SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40644400000, + 48.80450200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "LA VILLE DU BOIS", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSLAVDB", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27389500000, + 48.66886600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3308EVCP01;LFR3308EVCP02;LFR3308EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3308EVCP01;LFR3308EVCP02;LFR3308EVCP03", + "description": "ST POURCAIN SUR SIOULE Montmarault", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28536300000, + 46.31067900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "14d6ffe2-76f6-5013-af98-b303bf8466e0", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Lahonce | Place des Commerces" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38675300000, + 43.48718600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "fe38f5f7-0f7c-5093-bd24-78091d205930", + "description": "FONTAINE-DE-VAUCLUSE - Avenue Robert Garcin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12567800000, + 43.92152400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRA05E78478001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "PARAY-DOUAVILLE - Rue de Barthelemy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87682210000, + 48.46290170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "COURSEULLES SUR MER - Reviers", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3915EVCP04;LFR3915EVCP02;LFR3915EVCP01;LFR3915EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3915EVCP04;LFR3915EVCP02;LFR3915EVCP01;LFR3915EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45461800000, + 49.32114000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Véretz", + "ref:EU:EVSE": "FRPD1PITMVRT", + "network": "Power Dot France", + "charging_station:output": "50 kW;22 kW;160 kW", + "amenity": "charging_station", + "start_date": "2023-07-07", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83117365168, + 47.35078726853 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/CX2VTC22TK", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPCX2VTC22TK", + "charging_station:output": "22 kW", + "ref": "75230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21154100000, + 46.18894600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "network": "e-Vadea;E-VADEA", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP21111A", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "description": "E-VADEA/FR*EVA*P21111*A;e-Vadea - Brognon - A31 Dijon Brognon", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA", + "ref": "680717", + "charging_station:output": "43 kW;22 kW;50 kW;150 kW;300 kW", + "start_date": "2022-12-23", + "capacity": "7;21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17165900000, + 47.42132100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2021-05-13", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Carrefour Market - La Brillanne", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCRFLBN", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88981200000, + 43.93218900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT574801", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-08-27", + "description": "Carrefour Market - Rettel Sierck", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34326500000, + 49.44619300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-09-06", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRESEPS42218AN", + "charging_station:output": "22 kW", + "description": "SEMOB Montplaisir", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218AN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41743800000, + 45.43430800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPIZIG44861;FROTHPIZIG44851;FROTHPIZIG44841;FROTHPIZIG44831;FROTHPIZIG44821;FROTHPIZIG44811", + "capacity": "1", + "description": "CNPE CIVAUX - SIMU", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IZIG*448*6*_*_;FR*SOD*S*IZIG*448*4*_*_;FR*SOD*S*IZIG*448*3*_*_;FR*SOD*S*IZIG*448*1*_*_;FR*SOD*S*IZIG*448*2*_*_;FR*SOD*S*IZIG*448*5*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2022-01-25;2022-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64888000000, + 46.46228000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-16:00,Tu 08:00-16:00,We 08:00-16:00,Th 08:00-16:00,Fr 08:00-16:00", + "ref:EU:EVSE": "FRCPIE6869195", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6869195", + "description": "DEBRET BORNE 1", + "network": "DEBRET BORNE 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-02-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48860100000, + 50.35000200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4683308803285458328", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "346271", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WHQ8FILD6X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02944000000, + 49.11330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP122043", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - B&B HOTEL LE HAVRE HARFLEUR 1", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19666200000, + 49.50394200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "471045", + "description": "Freshmile France/ELC41U7R0U", + "ref:EU:EVSE": "FRFR1P4647994776665100253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70760900000, + 48.71133500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30254", + "capacity": "24", + "description": "Tesla Supercharger Chambray-Lès-Tours, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71397100000, + 47.32476000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/F5YXGNA3QT", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8042464205749625078", + "ref": "454020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106700000, + 44.43558000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "457593", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P8552707662428030099", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/X76ERWSQBX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88236500000, + 48.84944200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457569", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P8551935334009061648", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/TYPWUQ7IGF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20729900000, + 49.12495800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P1971958278907647457", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATL06GSOQ1T", + "charging_station:output": "7.4 kW", + "ref": "1128108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51900900000, + 48.98525400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-05", + "description": "CHERBOURG EN COTENTIN (EQUEURDREVILLE HAINNEVILLE) - Jean Bart", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50173001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65122600000, + 49.65498200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "MAZAMET LA MOLIERE - La Molière Haute", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8116300421;FRS81E8116300412;FRS81E8116300411;FRS81E8116300422", + "start_date": "2022-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38426590000, + 43.50004959100 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF059614", + "ref": "FRHPCPNF059614", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "start_date": "2021-03-04;2021-04-30", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680578;531680577", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS DE LA MAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81240000000, + 48.96140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MENDE - Boulevard Lucien Arnault", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS48E48095002", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49902500000, + 44.51936600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Ploemeur - Place Kermabon", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56PZWSHUHFMQW", + "start_date": "2022-09-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.45439663305, + 47.70338304198 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62667002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "LE PORTEL - Quai de la Violette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56638000000, + 50.70431100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2929300", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Trégunc - Rue Youenn Gwernig", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85139600000, + 47.85459900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCYYADE", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Pontivy - Quai des Récollets", + "start_date": "2016-12-22", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96514400000, + 48.07137800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-08", + "description": "SAINT-JEAN DE SAUVES-1-2;SAINT-JEAN DE SAUVES-1-1", + "ref:EU:EVSE": "FRLMSE12346052242;FRLMSE12346052231;FRLMSE12346052232;FRLMSE12346052241", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B084", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09176000000, + 46.84098800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93031D", + "description": "Metropolis - Citadine - Epinay-sur-Seine - Foch", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "start_date": "2022-01-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986937000, + 48.94929234000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79083P0020A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-12-22", + "operator": "Séolis", + "description": "Réseau AlterBase - Chef-Boutonne - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06844854000, + 46.10841640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Atlante/FRATLFR00249", + "ref:EU:EVSE": "FRATLP8345558363986733383", + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "Su,Th,We,Sa,Fr,Mo,Tu 09:00-18:00,We,Th,Fr,Mo,Tu,Su,Sa 07:30-20:00", + "charging_station:output": "22 kW;150 kW", + "ref": "999999", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97088000000, + 43.59420500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "Howdens Clayessouilly", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCo", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1000101741", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66893200000, + 48.94840900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Royal Champagne Hotel & Spa", + "amenity": "charging_station", + "start_date": "2023-01-23", + "owner:ref:FR:SIREN": "444344469", + "ref:EU:EVSE": "FRMAPP000000007106", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:59", + "operator:email": "bruno.tailly@royalchampagne.com", + "operator": "Royal Champagne", + "description": "Royal Champagne Hotel & Spa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97632400000, + 49.09140300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85226003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-HILAIRE-DE-RIEZ - Rue Des Pins", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.94701000000, + 46.72092100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9007992;FRALLEGO9007852;FRALLEGO9007851;FRALLEGO9004472;FRALLEGO9000522;FRALLEGO9000521;FRALLEGO9000661;FRALLEGO9000662;FRALLEGO9004471;FRALLEGO9007991", + "description": "Allego Carrefour Vitrolles", + "amenity": "charging_station", + "network": "Allego Carrefour Vitrolles", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9007992;FRALLEGO9007852;FRALLEGO9007851;FRALLEGO9004472;FRALLEGO9000522;FRALLEGO9000521;FRALLEGO9000661;FRALLEGO9000662;FRALLEGO9004471;FRALLEGO9007991", + "capacity": "10", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26229900000, + 43.43207400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP6512;FRIZMPMAMP6511", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2024-08-21", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MAMP*65*1*_*_", + "network": "IZIVIA", + "description": "MP0424 - 8 RUE DE LA LOGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37082120000, + 43.29669390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMATSMX", + "start_date": "2023-12-25", + "description": "Match - Saint-Max", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21359178540, + 48.70116935961 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "30197;KHRDRG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/KHRDRG;Sablons, Rue Gustave Toursier - Parking", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPKHRDRG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76984000000, + 45.31910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SO1ITMVT8N", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2262759607106740352", + "operator": "Freshmile | FR*FR1", + "ref": "472266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66487700000, + 48.49009900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Ibis - Haguenau", + "ref:EU:EVSE": "FRPD1PIBSHGN", + "socket:type2_combo:output": "100 kW", + "start_date": "2023-09-15;2023-09-13", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75649186319, + 48.82781218159 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPXBYM6MYKUM", + "ref": "XBYM6MYKUM", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Annecy, Parking des Romains", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12164055000, + 45.90815666000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "7", + "ref:EU:EVSE": "FRETIP34057E", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref": "FRETIP34057E", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - 3M - Castelnau Le Lez - TAM ND de Sablassou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92225222408, + 43.63384855783 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR21251;FROTHPOTHR21261;FROTHPOTHR21271;FROTHPOTHR21281", + "network": "HOTRAVAIL", + "opening_hours": "24/7", + "description": "LA TESTE-DE-BUCH", + "ref": "FR*SOD*S*OTHR*212*5*_*_;FR*SOD*S*OTHR*212*6*_*_;FR*SOD*S*OTHR*212*7*_*_;FR*SOD*S*OTHR*212*8*_*_", + "start_date": "2021-10-08", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12289500000, + 44.61494500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "ref:EU:EVSE": "FRCPSPCAPS4212;FRCPSPCAPS4211", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*CAPS*42*1*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "VILLEBON - CENTRE JACQUES BREL", + "start_date": "2020-04-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23351800000, + 48.69738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "585545", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XO3MVEDDXB", + "ref:EU:EVSE": "FRFR1P622094601385874305" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12651900000, + 49.27116100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "WAAT/FRWATL2L69NXHS", + "ref:EU:EVSE": "FRW11P2265865370046453135", + "ref": "756624", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*W11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40248100000, + 43.75140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3438261884516168053", + "operator:email": "roaming@freshmile.com", + "ref": "892263", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLIVRLH561VGEG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.90981600000, + 48.73679400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-25;2022-08-05", + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSWSE1234597489;FRSWSE1000087964", + "network": "SOWATT SOLUTIONS", + "ref": "1000087964;1234597489", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "description": "ABB 24kW Majic;WB 2x22 Majic Rumilly", + "owner:ref:FR:SIREN": "903356970", + "socket:type2_combo:output": "24 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95929700000, + 45.84016000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "212996", + "description": "Freshmile France/KHLEBW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PKHLEBW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38581000000, + 49.14710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-09-12", + "description": "Caveau au Domaine de Longue Toque - Maison Gabriel Meffre", + "ref:EU:EVSE": "FRSSDPCAVEAU841901", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00287200000, + 44.16963500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - NOGENT-LE-ROTROU - Rue du château", + "description": "MODULO - NOGENT-LE-ROTROU - Rue du château", + "ref:EU:EVSE": "FRS28E139015", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E139015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82268610000, + 48.31978104000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator": "Le Capelan", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "network": "Le jardin des Cevennes", + "opening_hours": "Mo-Fr 9:00-18:00", + "ref": "83577307-cd5a-45aa-8ca4-733c20281019", + "charging_station:output": "22 kW", + "description": "jardin des cevennes", + "owner:ref:FR:SIREN": "340688076", + "operator:email": "camping.le.capelan@orange.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42928004265, + 44.18050003050 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/Z8YVZWSQIE", + "operator:email": "roaming@freshmile.com", + "ref": "39764", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8012647879535762736" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07349800000, + 48.26932200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP2190291819919475280", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/FRWATLQKV15JA2", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "544748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00100600000, + 43.65229000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-16", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "FTCS_Heric", + "ref:EU:EVSE": "FRROSE470", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64907500000, + 47.38311400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-15", + "description": "VIEUX - Route de Cahuzac", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8131600112;FRS81E8131600111;FRS81E8131600121;FRS81E8131600122", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87469500000, + 43.99187700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "442414207", + "capacity": "19", + "description": "INTERPARKING - Paris Wagram", + "amenity": "charging_station", + "start_date": "2023-03-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRIPKPPWA", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29679435408, + 48.87715355652 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49103A", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-08", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Combree - Commerce", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98902199000, + 47.71101700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PCYAVCQ", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "86693", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/CYAVCQ", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57893000000, + 49.20880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-11", + "description": "GOSNAY - Rue Achille Chatelet", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62377001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58819423610, + 50.50634770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NIMES - Rue Auguste", + "ref:EU:EVSE": "FRS30E30189012", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35577800000, + 43.83959900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/FYJMNZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "39068", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PFYJMNZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.13434000000, + 47.76630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-05-23", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346402631;FRLMSE12346402641", + "operator": "SOREGIES MOBILITES", + "description": "MARTAIZE-1-2;MARTAIZE-1-1", + "operator:email": "irve@soregies.fr", + "ref": "B064" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06018400000, + 46.91653100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-19", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Metropolis - Express - Vincennes - Murs du parc;Métropolis/FR*MGP*P94080*N", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP94080N", + "owner:ref:FR:SIREN": "885354860", + "socket:type2_combo:output": "100 kW;50 kW;150 kW", + "ref": "475044", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45245100000, + 48.84677400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE14911;FRSIGPSIGE14912", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*149*1*_*_", + "start_date": "2021-06-11", + "description": "SIGEIF - 63 RUE DES PECHEURS - VAIRES-SUR-MARNE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63115210000, + 48.86881900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "description": "TRAPPES - Rue Jean Jaurès", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E78621001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00136400000, + 48.77610700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89732230", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Beauvais Sud", + "start_date": "2023-05-31", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11100500000, + 49.40844000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "32f20abb-bcd6-50aa-806d-a4d3c363abd5", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Claud | Place Sadi Carnot", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46610700000, + 45.89412700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-02;2024-06-29", + "description": "La Coupole Conservatoire Piscine - Combs-la-Ville", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE77CVQA;FRSE1PSE77CVQB", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;25 kW;22 kW", + "socket:type2_combo:output": "25 kW;24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56593800000, + 48.65956300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-03-13", + "description": "PERPIGNAN CLAIRA", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "charging_station:output": "22 kW;0 kW;150 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSPERPC", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91222300000, + 42.77670600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "LFR3850EVCP02;LFR3850EVCP04;LFR3850EVCP01;LFR3850EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "MONT-SAINT-MARTIN Jaurès", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3850EVCP04;LFR3850EVCP01;LFR3850EVCP03;LFR3850EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79684700000, + 49.54113100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Route D'Espagne", + "ref:EU:EVSE": "FRM31E31555022", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42404400000, + 43.57374500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "Alby-Sur-Cheran, Parking P+R;Réseau eborn/WYDNKDUR6N", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPWYDNKDUR6N", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "85727;WYDNKDUR6N", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00550000000, + 45.81480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YBDSF1GAWY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5239241470795642484", + "ref": "752400", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20602000000, + 47.39066100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-05", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E751160011;FRP07E75116001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Passy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27517000000, + 48.85810100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/XUNZRR;Bourg-De-Peage, Place de la Mairie", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPXUNZRR", + "ref": "XUNZRR;48358", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05117000000, + 45.03950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "socket:type2_combo:output": "300 kW;225 kW", + "opening_hours": "24/7", + "start_date": "2023-12-22", + "charging_station:output": "300 kW;225 kW", + "operator": "ELECTRA", + "description": "Besançon - Peugeot", + "ref:EU:EVSE": "FRELCPBESPG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99030200000, + 47.24018800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare d'Aix-les-Bains - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E73008001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90964440000, + 45.68870620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U WOLFI BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6615295", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6615295", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-11", + "description": "SUPER U WOLFI BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67018600000, + 48.59052200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/NPD3JQ3SQ3", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "75293", + "ref:EU:EVSE": "FREBNNPD3JQ3SQ3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33876700000, + 43.14383800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA2P6466055150875854269", + "ref": "1181916", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570546", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67993400000, + 46.80673100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4354043181316355598", + "network": "Freshmile France", + "ref": "454458", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/sarrbcord", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05345000000, + 48.73570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00753", + "owner:ref:FR:SIREN": "340725803", + "start_date": "2022-04-08", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "ACCOR HOTELS", + "operator": "TotalEnergies Marketing France", + "description": "HOTEL IBIS PARIS RUEIL MALMAISON", + "opening_hours": "24/7", + "ref": "FRTCBP00753", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18515000000, + 48.87968000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "3 kW", + "ref": "453972", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7727373888317346384", + "description": "Freshmile France/BCNPMZIP3X", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45355500000, + 42.71991800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW382401", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "start_date": "2023-07-17;2022-08-29", + "description": "BMW - Meylan", + "charging_station:output": "50 kW;24 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76610800000, + 45.20335100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29085001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Ile Tudy-Rue des Goëmoniers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16786400000, + 47.84546700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11040001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BIZANET - Rue De La Distillerie", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86861111111, + 43.16416670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "f565c11d-4d6b-465d-97cd-994a349ae0ce", + "opening_hours": "24/7", + "description": "Hôtel le Ménestrel - 7,4 kW AC", + "ref:EU:EVSE": "FRZP1PEAC56165;FRZP1PEAC77327", + "network": "Logis Hôtel le Ménestrel", + "charging_station:output": "7.4 kW", + "owner:ref:FR:SIREN": "530973288", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32542698000, + 48.18729954000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS08E57596;FRS08E57595", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS08E57596;FRS08E57595", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - JUNIVILLE - Av. de Quimper", + "network": "MODULO - JUNIVILLE - Av. de Quimper" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38327800000, + 49.39572500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/PVJDXV", + "ref": "79495", + "ref:EU:EVSE": "FRS80PPVJDXV", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42697000000, + 49.81280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST23013;FRIZFPFAST23011;FRIZFPFAST23012", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*230*1*_*_", + "description": "IZIVIA FAST - MC DONALDS - ALBERTVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38993330000, + 45.66454800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-22;2024-04-22", + "description": "OuestCharge - Diva Sp - Batz-Sur-Mer - Gare;BATZ-SUR-MER - Rue De La Gare", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44010A;FRS44E44010001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47994200000, + 47.27944900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77053003;FRS77P77053C", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2024-09-16", + "description": "Brie-Comte-Robert - Parking place des fêtes;BRIE-COMTE-ROBERT - Parking place des fêtes", + "ref": "8e32edc1-cfe7-4650-b102-b5e2a4b75206", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60741700000, + 48.69040700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000086390;FRGSPP1000054157;FRGSPP1000054156;FRGSPP1000086391", + "description": "CHÂTEAU GRAND BARRAIL", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CHÂTEAU GRAND BARRAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19246845699, + 44.90918652302 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - PORTS SUR VIENNE - Pl. Romain Rideau", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E219842;FRS37E219844", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219842;FRS37E219844", + "network": "MODULO - PORTS SUR VIENNE - Pl. Romain Rideau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55329600000, + 47.01619100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "description": "CCTLB - Place du marché - Baccarat", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "ref": "415a0448-6d8e-5abf-8c1e-aca8a0bb744d", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73991400000, + 48.44718000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P63231A", + "capacity": "2", + "description": "Salaison Fournet-Fayard", + "amenity": "charging_station", + "start_date": "2021-03-22", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P63231A", + "network": "Salaison Fournet-Fayard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62655275855, + 45.87688686930 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | BISCARROSSE | Rue du Lieutenant de Vaisseau Paris", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "a8ce0271-3c65-5451-83f0-1e620ea4af72", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16813800000, + 44.39162400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - PLACE CHARLES DE GAULLE - VILLE-DAVRAY", + "ref:EU:EVSE": "FRSIGPSIGE2611;FRSIGPSIGE2612", + "start_date": "2020-08-03", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*26*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18920380000, + 48.82648810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "amenity": "charging_station", + "start_date": "2021-09-07", + "capacity": "3", + "description": "GVA F.FAURE LYON AB", + "charging_station:output": "24 kW;22 kW", + "network": "GVA F.FAURE LYON AB", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW", + "ref": "FRCPIE2891265;FRCPIE6506905", + "ref:EU:EVSE": "FRCPIE2891265;FRCPIE6506905" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87144270000, + 45.75533875000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P2544105793185236782", + "ref": "479262", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/GN7DXMH144" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655700000, + 45.84920200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "63c926d6-3254-53ec-aae3-4bdae5282e81", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Objat | Place Charles de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40987600000, + 45.26435100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "charging_station:output": "18 kW", + "capacity": "2", + "ref:EU:EVSE": "FRSEOPAB12201A", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2018-10-08", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Bressuire / St Sauveur - Salle Omnisports", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41869300000, + 46.82054000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-13", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "capacity": "10", + "ref:EU:EVSE": "FRADPE940540081;FRADPE94054008", + "description": "ORY - Parking P8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37524800000, + 48.73321200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "FOUGERES", + "ref:EU:EVSE": "LFR2903EVCP02;LFR2903EVCP01", + "capacity": "4", + "ref": "LFR2903EVCP02;LFR2903EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18160900000, + 48.34635500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-01-19", + "ref:EU:EVSE": "FRM38E38472001", + "description": "SARCENAS - Parking Route du Charmant Som" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76717400000, + 45.29066300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GRASSE - PARKING PLASCASSIER", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*120*1*_*_", + "start_date": "2021-04-09", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ12011;FRA16PWIIZ12012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97701000000, + 43.64307600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLPI9I0T6BS9SQ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4001125224475917259", + "network": "Freshmile France", + "ref": "1009167", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55816000000, + 47.21993100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PACTMGN", + "network": "Power Dot France", + "description": "Mr Bricolage Migennes (89)", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2024-09-05", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50968026152, + 47.97282217144 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Cadiere-D'Azur, 105-142 Avenue Henri Jansoulin;Réseau eborn/PK3XN6HDHL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPPK3XN6HDHL;FREBNPK3XN6HDHL", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref": "75302;PK3XN6HDHL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75446700000, + 43.19786900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Mons-en-Baroeul - Hôtel F1", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPMEBHF", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09741600000, + 50.64468200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E95450001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Cergy-Pontoise Neuville - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07990000000, + 49.01580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6676265", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6676265", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR MARSEILLE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "description": "SONEPAR MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42360900000, + 43.29269000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "ref": "KPFDX4FTAA;453942", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRECHP3846658106591785619;FRECHPKPFDX4FTAA", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge", + "description": "Easy Charge/KPFDX4FTAA;Vienne, Parking Saint-Pierre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87108000000, + 45.52345000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Epinal - Palais des Sports Park.P2", + "operator": "Greenflux", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-10-09", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "62.5 kW;150 kW;22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP143001", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47084600000, + 48.18696100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "398963", + "charging_station:output": "22 kW", + "description": "Freshmile France/SEBURVUBUQ", + "ref:EU:EVSE": "FRFR1P1527701472786277099", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84170000000, + 46.90520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Monge 58", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0509", + "start_date": "2021-08-11", + "ref": "FR*V75*PPX05*09", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35227730000, + 48.84442760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LTXRMEKMHM", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P970413717020787768", + "charging_station:output": "22 kW", + "ref": "706115", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89288400000, + 42.67258700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "capacity": "3;9", + "description": "Volvo - Orléans (PDL 2);Volvo - Orléans (PDL 1)", + "start_date": "2021-12-20;2022-11-21", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPEFGW;FRSSDPDUFFORTVOLVO450001", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 13:45-18:00, Tu 08:00-12:00, Tu 13:45-18:00, We 08:00-12:00, We 13:45-18:00, Th 08:00-12:00, Th 13:45-18:00, Fr 08:00-12:00, Fr 13:45-18:00, Sa 09:00-12:00, Sa 14:45-17:00;Mo 08:00-12:00, Mo 13:45-18:00, Tu 08:00-12:00, Tu 13:45-18:00, We 08:00-12:00, We 13:45-18:00, Th 08:00-12:00, Th 13:45-18:00, Fr 08:00-12:00, Fr 13:45-18:00, Sa 09:00-12:00, Sa 14:00-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92406900000, + 47.91407000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Saint Nicolas du Pelem-Parking rue Henri Avril", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22321001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15994000000, + 48.31510200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - AUBIGNY-SUR-NERE - Le Mail Guichard(Gymnase )", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "network": "MODULO - AUBIGNY-SUR-NERE - Le Mail Guichard(Gymnase )", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E147205", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E147205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43789100000, + 47.49127400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10S45247A1", + "network": "E-totem", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "244500203", + "opening_hours": "24/7", + "description": "Parking Fleuriste", + "ref": "a20a11fe-c89a-11ed-afa1-0242ac120002", + "charging_station:output": "22 kW", + "start_date": "2022-04-01", + "operator:email": "contact@e-totem.fr", + "operator": "E-totem" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67206100000, + 48.01741100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P2260551826664300812", + "ref": "32050", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/P0XP87AAJ7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06657100000, + 48.54112800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ALBI - Chemin de las Bories", + "ref:EU:EVSE": "FRS81E8100400412;FRS81E8100400411;FRS81E8100400421;FRS81E8100400422", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2017-07-21", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13755011600, + 43.94621276900 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IKEA PLAISIR - PARKING CLIENTS", + "ref": "FR*SOD*S*IKEA*40*8*_*_;FR*SOD*S*IKEA*40*7*_*_;FR*SOD*S*IKEA*40*4*_*_;FR*SOD*S*IKEA*40*3*_*_;FR*SOD*S*IKEA*40*1*_*_;FR*SOD*S*IKEA*40*10*_*_;FR*SOD*S*IKEA*40*11*_*_;FR*SOD*S*IKEA*40*12*_*_;FR*SOD*S*IKEA*40*13*_*_;FR*SOD*S*IKEA*40*14*_*_;FR*SOD*S*IKEA*40*2*_*_;FR*SOD*S*IKEA*40*5*_*_;FR*SOD*S*IKEA*40*6*_*_;FR*SOD*S*IKEA*40*9*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-07-06;2023-02-03", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;7 kW;7.36 kW", + "ref:EU:EVSE": "FRIKAPIKEA4091;FRIKAPIKEA4081;FRIKAPIKEA4071;FRIKAPIKEA4061;FRIKAPIKEA4051;FRIKAPIKEA4041;FRIKAPIKEA4031;FRIKAPIKEA4021;FRIKAPIKEA40141;FRIKAPIKEA40131;FRIKAPIKEA40111;FRIKAPIKEA4011;FRIKAPIKEA40101;FRIKAPIKEA40121", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96644900000, + 48.82818300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-19;2024-04-12", + "description": "PORNIC - Rue Du Général De Gaulle;OuestCharge - Diva Sp - Pornic - Gaulle", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44P44131B;FRS44E44131002", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09751800000, + 47.11418900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-07;2023-05-12", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77310001;FRS77P77310A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "MONTIGNY-LE-GUESDIER - Rue Blanche;Montigny-le-Guesdier", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61QSEA2TT42JQTH6MC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25399900000, + 48.38323600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH01E62452001", + "network": "pass pass électrique", + "description": "HEURINGHEM - Rue de Saint-Omer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28332700000, + 50.69729600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221473;FRS37E221470", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221473;FRS37E221470", + "network": "MODULO - CHARGE - Rue Michel Debré", + "description": "MODULO - CHARGE - Rue Michel Debré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03015500000, + 47.43352100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66387;FRS55E66388", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - FRESNES EN WORVRE - Pl. Clemenceau", + "ref:EU:EVSE": "FRS55E66387;FRS55E66388", + "network": "MODULO - FRESNES EN WORVRE - Pl. Clemenceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62728100000, + 49.09655900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON14011;FRGLYPLYON14012", + "start_date": "2021-10-12", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "RIL03 - ROUTE DE GENEVE", + "ref": "FR*SOD*S*LYON*140*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88405800000, + 45.80462700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SAINGHIN-EN-MÉLANTOIS - rue du Contour de l'église", + "opening_hours": "24/7", + "network": "MEL", + "ref:EU:EVSE": "FRMELP5926201", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59262*01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16726200000, + 50.58895900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "15", + "start_date": "2018-10-30;2022-05-24", + "operator:email": "support@driveco.com", + "description": "Jaguar Land Rover - Chenove", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW", + "ref:EU:EVSE": "FRSSDPJLRNUDANT213001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02148000000, + 47.28710200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "SALVIADIS U EXPRESS", + "ref": "FRCPIE6576965", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SALVIADIS U EXPRESS", + "ref:EU:EVSE": "FRCPIE6576965", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26093000000, + 44.67957100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/CKOSSK9SU8", + "ref": "472317", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8766650697442225646" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84975300000, + 46.74662000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Lacanau | Allée du Matelot", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "e198e8f7-0ddb-5466-8b38-77e911f8fdc7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19533400000, + 45.00176200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "cdfeef53-dcc1-58ab-85ee-5ccc9d4e3dec", + "description": "Épinay-sur-Orge - Rue de la Croix Ronde" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31516700000, + 48.67419400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "COGNAC", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000143", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2023-09-08;2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30796030000, + 45.68846100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3266EVCP01", + "description": "LA FARLEDE République", + "ref:EU:EVSE": "LFR3266EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04556800000, + 43.16333500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PS5QPNAXBZW", + "description": "Istres, Victor Hugo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98990000000, + 43.51302000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "ref:EU:EVSE": "FRS88E177423;FRS88E177421", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - PLAINFAING - Pl. de l'église", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - PLAINFAING - Pl. de l'église", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS88E177423;FRS88E177421", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01500000000, + 48.17360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ22811;FRA16PWIIZ22812", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2023-01-11", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PARKING DU VAL DE MOUGINS", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*228*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98605500000, + 43.59863500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/58e28a0851f24", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P58E28A0851F24", + "ref": "38668" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08572000000, + 43.20860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRPEV", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-01-18", + "operator": "Power Dot France", + "description": "Mr. Bricolage - Pont-l'Évêque", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20325490000, + 49.28424200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPYGKQEX", + "ref": "79114;YGKQEX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/YGKQEX;Annecy, Place de la Mandallaz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11500000000, + 45.89960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/57131DC2-1109-406F-853A-643904CDDD19", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1114098", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP2778305765467075656", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.97037000000, + 48.82827200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-09-06;2024-05-31", + "description": "TOURCOING - Miss Cavell", + "ref:EU:EVSE": "FRP07E59599002;FRP07E5959900;FRP07E595990021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16299485353, + 50.72174622529 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allos, Parking La Ville;Réseau eborn/YVGSKBCI4J", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPYVGSKBCI4J", + "start_date": "2020-06-21", + "ref": "YVGSKBCI4J;78591" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62662200000, + 44.24131500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPCERILLY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Cérilly, Champ de Foire - Partie Haute;Réseau eborn/cerilly", + "ref": "231583;cerilly" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81824000000, + 46.61730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL LAVAL CHANGÉ", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122001", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75181200000, + 48.09047700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PPESMYK", + "ref": "232450", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/PESMYK", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21888000000, + 49.11210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1303", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX13*03", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "description": "Paris | Rue de Rungis 2", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34585300000, + 48.82195000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7987892339962910720", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/CX85FFNWSA", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "585494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54679600000, + 48.46746500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Super U -Montrabé", + "opening_hours": "Mo 00:01-23:59, Tu 00:01-23:59, We 00:01-23:59, Th 00:01-23:59, Fr 00:01-23:59, Sa 00:01-23:59, Su 00:01-23:59", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPSUPERU318501", + "operator:email": "support@driveco.com", + "start_date": "2022-02-04", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53309100000, + 43.64446000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PEVREUXJBOUIN", + "description": "900087", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12807600000, + 49.02102500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SICECO/FR*S21*P21606*A", + "ref": "180428", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS21P21606A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87917600000, + 47.07357300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78551017", + "network": "Seymaborne", + "description": "SAINT-GERMAIN-EN-LAYE - CROIX DE FER 1", + "start_date": "2024-01-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06456000000, + 48.89853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE115", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-06-30", + "description": "Handynamic_Attiche", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06255400000, + 50.51502600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP7821884927043038547", + "ref": "1053786", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLVHVKNG4Q", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76510800000, + 48.57408200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE437800", + "network": "IONITY GMBH", + "capacity": "7", + "description": "IONITY Longvilliers", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE437800", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2022-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13155600000, + 47.41850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SARRY - Rue Basse", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SARRY - Rue Basse", + "ref:EU:EVSE": "FRS51E41697;FRS51E41698", + "ref": "FRS51E41697;FRS51E41698", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40493600000, + 48.91794400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65045001", + "start_date": "2023-04-26", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "AUCUN - Maison de santé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18986500000, + 42.97449200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "300 kW;150 kW", + "owner:ref:FR:SIREN": "531681325;531681324;531681323;531681321;531681318;531681319;531681320;531681322", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FRHPCPNF080358", + "description": "RELAIS SAVERNE ECKARTSWILLER", + "opening_hours": "24/7", + "start_date": "2023-04-24;2023-03-30", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "150 kW;300 kW;54 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36520000000, + 48.76220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAGALAS - Place De La Mairie, Rue De La Promenade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34147001", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22317200000, + 43.47156500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PBEDFUJ", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Rue Maurice Thorez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39355200000, + 47.73997100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7555091873584372095", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JYI8NQIRWF", + "operator": "Freshmile | FR*FR1", + "ref": "370124" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48219200000, + 48.92145900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRMGPP92051P", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-23", + "opening_hours": "24/7", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Château;Métropolis/FR*MGP*P92051*P", + "owner:ref:FR:SIREN": "885354860", + "ref": "599088", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26257400000, + 48.88696600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Fiat - HESS - Mulhouse", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSFIAT681101", + "start_date": "2020-06-30;2023-03-16", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35727900000, + 47.76234900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC2P004901", + "capacity": "2", + "amenity": "charging_station", + "description": "L'OXYGENE", + "opening_hours": "24/7", + "ref": "FRC2P004901", + "start_date": "2023-02-07", + "network": "L'OXYGENE", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44251800000, + 45.46203200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "ref:EU:EVSE": "FRLUMEFASTHOTELPERPIGNANSUD11", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "ref": "2460897a-a623-11ed-afa1-0242ac120002", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "FAST HOTEL PERPIGNAN SUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86323720000, + 42.68525150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40", + "ref": "8ea95925-a8b2-58e7-a3c1-3cb4a132b629", + "description": "MOBIVE | Aubagnan | Parking Restaurant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48879200000, + 43.66687600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 06:00-19:45", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "charging_station:output": "24 kW;22 kW", + "description": "BOULANGERIE LA BAGUETTE DES OURS - VALENTIGNEY", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE25VABA", + "start_date": "2024-06-04", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83004600000, + 47.48407400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref": "788760", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRBHMP4216070645204728586", + "operator": "Borneco | FR*BHM", + "charging_station:output": "14 kW;22 kW", + "description": "BornEco/64422df42f5a364feade87bd" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86672800000, + 47.51385100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P2427291391402384678", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "454248", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/BVXNEXLOLK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72066800000, + 44.78683100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13POQETE8EV5G", + "description": "Les Pennes-Mirabeau, Vieille Route de la Gavotte", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34098600000, + 43.39355400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P8423332484408957427", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "SDEY/NHMKAMC2LI", + "amenity": "charging_station", + "capacity": "4", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1017735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97351000000, + 47.62196700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ8212;FRA16PWIIZ8211", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANNES PARKING CORREIA", + "start_date": "2018-06-07", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*82*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97913900000, + 43.54750800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/WUZEQNBUU0", + "ref:EU:EVSE": "FRFR1P7724551223473017631", + "ref": "574580", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01599600000, + 50.61302000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYSANO", + "description": "Système U - Anould", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-03-28", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94982294910, + 48.19296993828 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Chamonix-Mont-Blanc, Parking Allobroges", + "ref:EU:EVSE": "FREBNPJDZUASRU2S", + "capacity": "2", + "amenity": "charging_station", + "ref": "JDZUASRU2S", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87237340000, + 45.92174310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP1229655017141918540", + "description": "ENGIE MAMP - Bornes publiques/50F2281C-183C-4B8B-906E-66C7477D11A7", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "ref": "1114080", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37037100000, + 43.24391800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR70031;FROTHPOTHR70011;FROTHPOTHR70021;FROTHPOTHR70041;FROTHPOTHR70051;FROTHPOTHR70061", + "description": "IBIS NEW AVRANCHES - SAINT-QUENTIN-SUR-LE-HOMME", + "start_date": "2023-12-07", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*700*5*_*_;FR*SOD*S*OTHR*700*1*_*_;FR*SOD*S*OTHR*700*2*_*_;FR*SOD*S*OTHR*700*3*_*_;FR*SOD*S*OTHR*700*4*_*_;FR*SOD*S*OTHR*700*6*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34785550000, + 48.64900130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346694;FA9HZSEBKE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP42247354887826448;FREBNPFA9HZSEBKE", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Chanaleilles, le Bourg;Réseau eborn/FA9HZSEBKE", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48785000000, + 44.86069000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "Moulins, Hôpital;Réseau eborn/moulinshopital", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref": "120728;moulinshopital", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPMOULINSHOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32408000000, + 46.57120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR38221;FROTHPOTHR38211", + "description": "HOTEL AQUABELLA - AIX-EN-PROVENCE - 2", + "start_date": "2022-04-25", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*382*2*_*_;FR*SOD*S*OTHR*382*1*_*_", + "network": "AQUABELLA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44498100000, + 43.53144600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P631382499830277397", + "operator:email": "roaming@freshmile.com", + "ref": "694217", + "capacity": "2", + "description": "Freshmile France/GPB1IX5XMY", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58116500000, + 50.52617000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Rennes Cleunay, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP30031", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71382444000, + 48.10360018000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "75 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "socket:type2_combo:output": "75 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P378000528390654121", + "ref": "521381", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WBFROMXNDZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62903100000, + 48.09679100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyundai - Trégueux", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPJAOUENHYUNDAI229501", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2024-06-11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76470100000, + 48.48972600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1PYJMNZF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120623", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YJMNZF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73573000000, + 48.57870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pleudihen sur Rance-Parking cour du verger", + "ref:EU:EVSE": "FRS22E22197001", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95100000000, + 48.51080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "477827653", + "amenity": "charging_station", + "start_date": "2020-12-08", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", + "capacity": "1", + "description": "Mazda - Bourgoin-Jallieu - 22kW AC ", + "ref:EU:EVSE": "FRZMAE22AC49847", + "ref": "49847", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "A.V.D. - MAZDA BOURGOIN JALLIEU", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24340100000, + 45.59195400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Kiloutou_Creteil", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE325", + "start_date": "2022-05-16", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44024700000, + 48.77943600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LIMAY - Avenue Du Président Wilson", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78335002", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73572400000, + 48.99163800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mornas Village", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "23", + "ref": "FRIOYE440374;FRIOYE440372;FRIOYE440371;FRIOYE440351;FRIOYE440318;FRIOYE440309;FRIOYE440308;FRIOYE440307;FRIOYE440302;FRIOYE440301;FRIOYE440303;FRIOYE440304;FRIOYE440305;FRIOYE440306;FRIOYE440310;FRIOYE440313;FRIOYE440314;FRIOYE440315;FRIOYE440316;FRIOYE440317;FRIOYE440352;FRIOYE440353;FRIOYE440373", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE440374;FRIOYE440372;FRIOYE440371;FRIOYE440351;FRIOYE440318;FRIOYE440309;FRIOYE440308;FRIOYE440307;FRIOYE440302;FRIOYE440301;FRIOYE440303;FRIOYE440304;FRIOYE440305;FRIOYE440306;FRIOYE440310;FRIOYE440313;FRIOYE440314;FRIOYE440315;FRIOYE440316;FRIOYE440317;FRIOYE440352;FRIOYE440353;FRIOYE440373", + "charging_station:output": "11 kW;50 kW;350 kW;43 kW;22 kW", + "start_date": "2024-05-15", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Mornas Village" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73259269000, + 44.19480716000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-22;2024-05-15", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "GREZ-EN-BOUERE - Place De La Mairie;OuestCharge - Diva Sp - Grez-En-Bouere - Mairie", + "ref:EU:EVSE": "FRS53E53110001;FRS53P53110A", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52243900000, + 47.87314400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66037001", + "start_date": "2022-01-31", + "network": "Reveo", + "description": "CANET EN ROUSSILLON - Rue De Suisse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03146500000, + 42.69575000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-06-12", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Douchy-Montcorbon", + "network": "Douchy-Montcorbon", + "ref:EU:EVSE": "FRIENE009401;FRIENE009402", + "ref": "FRIENE009401;FRIENE009402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03314000000, + 47.93275000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "CESSON SEVIGNE - 6 mail de bourgchevreuil ", + "ref:EU:EVSE": "FRS35P35051002B1", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60484200000, + 48.11819100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61325A", + "ref": "SE61-LAPE-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "BELFORET-EN-PERCHE - Rue de la juiverie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44568700000, + 48.39105700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "453960", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5281436101953866018", + "description": "Freshmile France/AMCQAOUOYI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36380000000, + 46.67570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64874", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/Fontenilles", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref:EU:EVSE": "FRS31PFONTENILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19112200000, + 43.55108900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE92044006", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-08-23", + "description": "LEVALLOIS PERRET - Rue Louise Michel/ Parking Louise Michel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28452700000, + 48.88715600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-12", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCG0E000329", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E000329", + "network": "Le Clos de Saires - 86420", + "operator:email": "info@chargeguru.com", + "description": "Le Clos de Saires - 86420" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21891000000, + 46.89596000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "NICE - PARKING OSCAR 2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-04-07", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE16411;FRM06PNICE16412", + "ref": "FR*SOD*S*NICE*164*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25577800000, + 43.70395000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Le Passage | Place de la République", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "dc4139a4-8920-5c8d-bf05-403ed6339378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60608600000, + 44.20124800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*305*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE30511;FRSIGPSIGE30512", + "network": "SIGEIF", + "description": "SIGEIF - PARKING DE LEUROPE - ROSNY-SOUS-BOIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48679300000, + 48.87204900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "Bump - SAGS -LES ARCS 2000 - LAC DES COMBES", + "ref": "264553;264554;264556;264555;264552", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com", + "ref:EU:EVSE": "FRBMPS264552;FRBMPS264554;FRBMPS264555;FRBMPS264556;FRBMPS264553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83339480000, + 45.57130600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2997EVCP01", + "capacity": "2", + "description": "MORSANG SUR ORGE Timbaud", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2997EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35977900000, + 48.66177400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "50c01c64-df78-59a7-9c54-1507a60f3f67", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Brive | Léo lagrange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54207100000, + 45.15908200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "ref": "6c5e634c-05e0-56fd-a11b-bdbfdfdc75aa", + "description": "Villeneuve-le-Roi - Avenue Paul Vaillant Couturier", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42110500000, + 48.73650400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "ECOLE - VENTABREN", + "ref": "FR*55C*P13122*VTB*EC0LE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP13122VTBEC0LE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30239900000, + 43.53852900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT JUNIEN", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3427EVCP01;LFR3427EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3427EVCP01;LFR3427EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91783900000, + 45.89825000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "description": "Proviridis/64350b4bef5e26b006d5302a", + "network": "Proviridis", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD", + "ref:EU:EVSE": "FRPVDP2171340954315586865", + "ref": "917319" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98203300000, + 43.15264800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPNUTXBIS2GQ", + "ref": "NUTXBIS2GQ", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-08-26", + "description": "Collobrières, Chemin De Sainte Croix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30895772000, + 43.23886818000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "e-Totem - WOZZ VITRY LE FRANCOIS", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP51649A", + "ref": "FRETIP51649A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58971859849, + 48.73185930735 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "capacity": "5", + "description": "Parking gare de Montpellier Sud de France P1 - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E34172003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92418410000, + 43.59410260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT617001", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-06-27", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Domfront", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64506900000, + 48.58981000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPSBLMXOFNGQ", + "ref": "SBLMXOFNGQ", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Unieux, Parking rue Jean Jaures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28125270000, + 45.39582530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR49622;FROTHPOTHR49612;FROTHPOTHR49611;FROTHPOTHR49621", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-20", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "description": "FFF - DISTRICT VAL DOISE FOOTBALL", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*OTHR*496*1*_*_;FR*SOD*S*OTHR*496*2*_*_", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32670300000, + 49.06124200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1107654246315711376", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "801612", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IZU8ZFBXXB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05330500000, + 48.90498600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "description": "Centre H.L.M. Harfleur", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "ref:EU:EVSE": "FRUBIE10047826;FRUBIE10070842", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19727500000, + 49.50412200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "346316", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P593860656179326813", + "description": "Freshmile France/VXFWFN", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35392000000, + 47.86420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-11", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRTLSE31555035", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TOULOUSE - 5 Bd de Matabiau", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44928100000, + 43.61432600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6654328931713356800", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/OMPQB904LG", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "446561" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06313700000, + 48.91606000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/LJ98RD5Z2B", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461814", + "ref:EU:EVSE": "FRS14P6262486121612739050" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34952300000, + 49.13774900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA CAVALERIE - Rd 999", + "ref:EU:EVSE": "FRS12E12063001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15319200000, + 44.00915700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "805299", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA3P3840238196963341046", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3", + "description": "WAAT/FRWATLNTFIXJVC", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44395000000, + 44.46400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-05;2021-04-27;2024-03-29", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS49P49191A;FRS49E49191001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Martigne-Briand - Cousin;MARTIGNE-BRIAND - Rue Joseph Cousin", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42976200000, + 47.23500400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/Graymavia", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref": "64982", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70PGRAYMAVIA", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58802000000, + 47.44880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E59416002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "MORBECQUE - Rue Heerstraete", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51128030000, + 50.69505410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - BALLAN MIRE - Pl. André Mauxion", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BALLAN MIRE - Pl. André Mauxion", + "ref:EU:EVSE": "FRS37E214034;FRS37E214033", + "ref": "FRS37E214034;FRS37E214033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61630268000, + 47.34229894000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "518363", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63241*B", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63241B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20033000000, + 45.62457300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59101001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOUSIGNIES-SUR-ROC - Grand Place", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18194200000, + 50.26411800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PKFSCCR", + "ref": "21846", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/KFSCCR", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87814400000, + 43.73183200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94017010", + "description": "CHAMPIGNY-SUR-MARNE - Rue Alexandre Fourny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52366800000, + 48.81872900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-18", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*284*1*_*_", + "ref:EU:EVSE": "FRM06PNICE28411;FRM06PNICE28412", + "description": "NICE - MOULINS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20570992824, + 43.67273399474 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "7dbf5d58-498c-5a58-a6ad-811610e46a10", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Siorac En Perigord | Zone Commerciale", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98798900000, + 44.82305900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 11 RUE CLAUDE MONET AVANT LE RESTAURANT VAPORETTO - CARRIERES-SUR-SEINE", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*412*1*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE41211;FRSIGPSIGE41212", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18117700000, + 48.90583800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540012", + "start_date": "2022-10-11", + "description": "ROUEN - Parking Cathedrale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09523300000, + 49.43868600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "PLOEMEUR Bieuzy", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3878EVCP02;LFR3878EVCP01", + "ref": "LFR3878EVCP02;LFR3878EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43017800000, + 47.73424800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Bourganeuf | Rue de L'Etang", + "amenity": "charging_station", + "ref": "8f5776ba-f39e-52b0-9b7a-7061f5c54880", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75622500000, + 45.95455800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626b21bc-924f-5c78-b8ac-3f5a3d1240fe", + "description": "LAMOTTE-DU-RHONE - N86" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67885900000, + 44.26614200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PROVILLE - Place de la République", + "network": "pass pass électrique", + "ref:EU:EVSE": "FR594E59476001", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20932000989, + 50.16298955111 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2920EVCP01", + "ref": "LFR2920EVCP01", + "description": "TRIGNAC-Rue de Surcouf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20834300000, + 47.29044100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2024-08-22;2024-08-23", + "charging_station:output": "22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PITMRQF", + "operator": "Power Dot France", + "description": "Intermarché - Roquefort", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55945344219, + 44.17587113692 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/MGABJYHNMV;Le Teil, Place René Montérémal", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "MGABJYHNMV;32692", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPMGABJYHNMV", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68568100000, + 44.55292900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2024-07-09", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP84087B", + "description": "e-Totem INFRA - Ibis Courtepaille Orange", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP84087B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79387672147, + 44.13752514960 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2021-06-21", + "ref:EU:EVSE": "FRPD1PCORRNS", + "description": "Cora - Rennes", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76791166246, + 48.13731446379 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Tarbes Lacaussade", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT650001", + "start_date": "2024-06-14", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05560300000, + 43.23574400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2019-07-30", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "description": "SEMOB Place Chipier", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRESEPS42186AA", + "ref": "FRESEPS42186AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62708000000, + 45.53235400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG113791;FROTHPIZIG113781;FROTHPIZIG113761;FROTHPIZIG113741;FROTHPIZIG1137111;FROTHPIZIG1137101;FROTHPIZIG1137121;FROTHPIZIG1137131;FROTHPIZIG1137141;FROTHPIZIG1137151;FROTHPIZIG1137161;FROTHPIZIG113721;FROTHPIZIG113731;FROTHPIZIG113751;FROTHPIZIG113771", + "start_date": "2024-06-28;2024-07-03", + "network": "EDF-EV100", + "charging_station:output": "7 kW", + "ref": "FR*SOD*S*IZIG*1137*9*_*_;FR*SOD*S*IZIG*1137*7*_*_;FR*SOD*S*IZIG*1137*6*_*_;FR*SOD*S*IZIG*1137*2*_*_;FR*SOD*S*IZIG*1137*16*_*_;FR*SOD*S*IZIG*1137*15*_*_;FR*SOD*S*IZIG*1137*14*_*_;FR*SOD*S*IZIG*1137*12*_*_;FR*SOD*S*IZIG*1137*11*_*_;FR*SOD*S*IZIG*1137*10*_*_;FR*SOD*S*IZIG*1137*13*_*_;FR*SOD*S*IZIG*1137*3*_*_;FR*SOD*S*IZIG*1137*4*_*_;FR*SOD*S*IZIG*1137*5*_*_;FR*SOD*S*IZIG*1137*8*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "CNPE GRAVELINES - PARKING CENTRE - TDB 4", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13413790000, + 51.00531340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRCPIE6825205", + "opening_hours": "24/7", + "network": "COMM VILLEJUIF BORNE 10", + "ref:EU:EVSE": "FRCPIE6825205", + "start_date": "2023-11-21", + "operator:email": "info@chargepoint.com", + "description": "COMM VILLEJUIF BORNE 10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36200800000, + 48.79134700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/JIVUAO3AA0", + "operator:email": "roaming@freshmile.com", + "ref": "782376", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P32684272834154257", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61064800000, + 46.40711000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9016*02", + "start_date": "2021-03-15", + "description": "Paris | Avenue d'Iéna 37", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29546900000, + 48.86851100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "opening_hours": "Fr,Sa,Th,We,Mo,Tu 08:00-12:00,Sa 14:00-18:00,We,Th,Mo,Tu,Fr 14:00-19:00", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "505683", + "ref:EU:EVSE": "FRFR1P9062449299678227777", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/TFPYCFK3HI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12871300000, + 48.31375100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP11417", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "description": "Tesla Supercharger Niort, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37511000000, + 46.29831600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LCOPFREFDC", + "operator:email": "roaming@freshmile.com", + "ref": "741018", + "ref:EU:EVSE": "FRFR1P6543406856294118326", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02243200000, + 47.30324100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P7130096696473803344", + "opening_hours": "24/7", + "ref": "461802", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/L1KGSJOGST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21233900000, + 49.29999900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "amenity": "charging_station", + "network": "Simone", + "capacity": "4", + "description": "Stes-Maries-De-La-Mer, Rue Des Artisans", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRS13PHT2TOP3OOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42708300000, + 43.45751300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LJ30HCRCG", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P1258399484631215567", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1127949", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05071400000, + 43.20352900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2023-01-26", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50003002", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "AGON COUTAINVILLE - Place Gerlier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57588200000, + 49.04283200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81139001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-03-03", + "description": "LAUTREC - Allée Des Promenades" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13624200000, + 43.70491500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref:EU:EVSE": "FRHPCPNF058968", + "amenity": "charging_station", + "ref": "FRHPCPNF058968", + "owner:ref:FR:SIREN": "531680861;531680862;531680863;531680860;531680857;531680856;531680859;531680858", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "network": "TotalEnergies Charge Rapide", + "description": "REL.VILLABE", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44390000000, + 48.59440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS46E46331001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SOUSCEYRAC EN QUERCY - Place des condamines", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03689600000, + 44.87261000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/CGGCRTEPRZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PCGGCRTEPRZ", + "ref": "298627" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22063800000, + 47.37594400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH04E59509002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ROOST-WARENDIN - Rue des Molettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10818600000, + 50.41056400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2924900", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Saint Goazec-Ménez Rouz", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.79936700000, + 48.15325200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHDBBKQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Locqueltas - Place de la Mairie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2018-07-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76628000000, + 47.75819100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-13", + "description": "LA GRIMAUDIERE-1-1;LA GRIMAUDIERE-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B046", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346051722;FRLMSE12346051711;FRLMSE12346051712;FRLMSE12346051721", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01791000000, + 46.80672800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93005D", + "charging_station:output": "7 kW", + "description": "Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-08-13", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50588730000, + 48.93053723000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-13", + "operator": "IZIVIA", + "description": "SIGEIF - 4 RUE VALITON - CLICHY", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*SIGE*87*3*_*_;FR*SOD*S*SIGE*87*2*_*_;FR*SOD*S*SIGE*87*1*_*_;FR*SOD*S*SIGE*87*4*_*_;FR*SOD*S*SIGE*87*5*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8721;FRSIGPSIGE8711;FRSIGPSIGE8731;FRSIGPSIGE8741;FRSIGPSIGE8751", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29870000000, + 48.90128600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP3242794248788391125", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "1000002", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10600700000, + 47.97931200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000081826", + "amenity": "charging_station", + "start_date": "2023-03-13", + "description": "Howdens Aubagne", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60090000000, + 43.28450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Arudy | Rue des Ecoles", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "30673d02-999e-526d-ab85-c31a780a4444" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42951500000, + 43.10335200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85191002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-13", + "description": "LA ROCHE-SUR-YON - Maison De Quartier - Saint André D'Ornay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45374000000, + 46.66589000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "Allego Carrefour Wasquehal", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego Carrefour Wasquehal", + "operator:email": "info@allego.eu", + "capacity": "11", + "start_date": "2023-06-09", + "ref:EU:EVSE": "FRALLEGO9990442;FRALLEGO9990441;FRALLEGO9990432;FRALLEGO9990431;FRALLEGO9001022;FRALLEGO9000311;FRALLEGO9000312;FRALLEGO9001021;FRALLEGO9002611;FRALLEGO9002612;FRALLEGO9002613", + "ref": "FRALLEGO9990441;FRALLEGO9990432;FRALLEGO9990431;FRALLEGO9001022;FRALLEGO9000311;FRALLEGO9000312;FRALLEGO9001021;FRALLEGO9002611;FRALLEGO9002612;FRALLEGO9002613;FRALLEGO9990442" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12559000000, + 50.68054000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP2112;FRIZMPMAMP2111", + "capacity": "2", + "description": "IZIVIA | MARSEILLE 12 - AVENUE DE LA PETITE SUISSE", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MAMP*21*1*_*_", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43510000000, + 43.31106500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Match Bischheim (67)", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2024-10-03;2024-10-04", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PMATBIS", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76581787682, + 48.61237692496 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "jaligny;94274", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPJALIGNY", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/jaligny;Jaligny-sur-Besbre, Place René Fallet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59224000000, + 46.38160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FREVZP4809746613311977340", + "description": "ENGIE MAMP - Bornes publiques/4F2F4CC1-0004-4DDE-A390-1AF3B5E0FF3D", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "922098", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39066900000, + 43.29201700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Basic Fit - Avion", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PHOLAVI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81767266945, + 50.40954754290 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPFJCDHNVFJV", + "description": "Roanne, Boulevard Jean Baptiste Clément;Réseau eborn/FJCDHNVFJV", + "ref": "FJCDHNVFJV;86003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08234200000, + 46.04277600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP24520A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - Carrefour Market Sarlat-La-Caneda", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP24520A", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21177503000, + 44.90233737000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "LE CASTEL EMERAUDE", + "ref": "FR*SOD*S*OTHR*185*2*_*_;FR*SOD*S*OTHR*185*1*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "LE CASTEL EMERAUDE - AMELIE LES BAINS PALALDA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR18521;FROTHPOTHR18511", + "start_date": "2021-05-21", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66115300000, + 42.47398800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "description": "BALLAINVILLIERS - STADE", + "ref:EU:EVSE": "FRCPSPCAPS1912;FRCPSPCAPS1911", + "ref": "FR*SOD*S*CAPS*19*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-08-08", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29867400000, + 48.67541500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5563364108587643480", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLYE77NFAY1BQN", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1150038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67747400000, + 44.87286600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP123022", + "capacity": "1", + "start_date": "2024-06-18;2024-10-01", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "description": "CENTER PARCS LE BOIS AUX DAIMS - Parking G", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02338900000, + 47.09350700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;150 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLOZU2R9T1QSZO", + "ref": "1017021", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2162019783238736233", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77778000000, + 48.08936700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U ST BONNET DE JOUX", + "operator": "E-TOTEM", + "description": "SUPER U ST BONNET DE JOUX", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRSUAP71394A", + "ref": "FRSUAP71394A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43038500000, + 46.48060900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8079847577326709549", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/Y2JPVALCYB", + "operator": "Freshmile | FR*FR1", + "ref": "510611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35350400000, + 44.75737300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Volkswagen - Sète", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPVOLKSWAGEN342001", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-09-29;2023-01-27", + "operator": "DRIVECO", + "opening_hours": "Mo 07:30-12:00, Mo 13:30-19:00, Tu 07:30-12:00, Tu 13:30-19:00, We 07:30-12:00, We 13:30-19:00, Th 07:30-12:00, Th 13:30-19:00, Fr 07:30-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71463300000, + 43.41797700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E134823", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - VILLEMAURY - Pl. St Martin", + "operator": "Modulo", + "description": "MODULO - VILLEMAURY - Pl. St Martin", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E134823" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48115700000, + 48.01368500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Hippopotamus Villenave d'Ornon", + "operator:email": "hippo.villenave@groupeflo.franchises.fr", + "amenity": "charging_station", + "operator": "HFOOD VILLENAVE", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "start_date": "2021-09-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "881471791", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52975130000, + 44.79075770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "39692", + "ref:EU:EVSE": "FRS10P112778365995731401", + "description": "SDEA 10/DEGQM5QJVX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27436100000, + 48.50359200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWATP3486961063045995397", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLRNPFDI29", + "operator:email": "exploitation@waat.fr", + "ref": "706277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36993900000, + 47.75752500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2016-10-23", + "capacity": "2", + "description": "ISIGNY LE BUAT - Carrefour des Biards", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50540002", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17962530000, + 48.59609060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE SEQUESTRE - Zi La Baute - Allee Du Commerce", + "start_date": "2021-05-25", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81284001", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11264100000, + 43.91764200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-09", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE481253;FRIOYE481252;FRIOYE481204;FRIOYE481201;FRIOYE481202;FRIOYE481203;FRIOYE481205;FRIOYE481206;FRIOYE481251", + "opening_hours": "24/7", + "description": "Vivonne", + "capacity": "9", + "network": "Vivonne", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE481252;FRIOYE481204;FRIOYE481201;FRIOYE481202;FRIOYE481203;FRIOYE481205;FRIOYE481206;FRIOYE481251;FRIOYE481253", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26388500000, + 46.43228000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS49P49054B", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "SIEML", + "description": "OuestCharge - ePremium - Cande - Super U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03152900000, + 47.56904200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "48949", + "description": "Mouv'Oise/Margnycomp", + "ref:EU:EVSE": "FRS60PMARGNYCOMP", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81774000000, + 49.42440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LICQUES - Place du Général de Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH11E62506001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93198300000, + 50.78452700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEDENON - Parking - Chmin De L'Esperel", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30145001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50949300000, + 43.91518200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56P7038911803706215593", + "ref": "1152120", + "description": "Mobilité électrique 56/LLYCXSOWXT46GE", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.08235600000, + 47.58463900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B050", + "charging_station:output": "18 kW", + "description": "LE VIGEANT-1-1;LE VIGEANT-1-2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346396471;FRLMSE12346396481", + "start_date": "2016-02-07", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67396000000, + 46.23086200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "description": "Metropolis - Express - Santeny - Erables;Métropolis/FR*MGP*P94070*A", + "start_date": "2022-01-21", + "opening_hours": "24/7", + "ref": "475041", + "owner:ref:FR:SIREN": "885354860", + "socket:type2_combo:output": "100 kW;50 kW;150 kW", + "ref:EU:EVSE": "FRMGPP94070A", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56649100000, + 48.71844600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - PLACE DE LA LIBERATION - LIVRY-GARGAN", + "ref:EU:EVSE": "FRSIGPSIGE11812;FRSIGPSIGE11811", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*118*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54441000000, + 48.92298500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GUYANCOURT - Rue des Graviers", + "start_date": "2023-03-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78297001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06394900000, + 48.77424500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Thaon Les Vosges - ZA Innova 3000 1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89397418", + "start_date": "2023-02-07", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39897300000, + 48.25622100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "aa6fc503-2ef7-57e3-a47b-183c15ca1040", + "description": "MOBIVE | Montrollet | Place Beaulieu", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89710700000, + 45.98363500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Citroën - Soultz Sous Forets", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE67CSSF", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.89602100000, + 48.93077300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Allego Carrefour Villeurbanne", + "description": "Allego Carrefour Villeurbanne", + "amenity": "charging_station", + "ref": "FRALLEGO9990122;FRALLEGO9990121;FRALLEGO9001851;FRALLEGO9001852;FRALLEGO9003861;FRALLEGO9003862", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9990122;FRALLEGO9990121;FRALLEGO9001851;FRALLEGO9001852;FRALLEGO9003861;FRALLEGO9003862", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88379500000, + 45.76903500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "LAGNY LE SEC ;LAGNY LE SEC", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4083EVCP04;LFR4083EVCP02;LFR4083EVCP01;LFR4083EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "capacity": "10", + "ref:EU:EVSE": "LFR4083EVCP04;LFR4083EVCP02;LFR4083EVCP01;LFR4083EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73921300000, + 49.09657500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-01-09", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31417001", + "description": "PIBRAC - Aire de covoiturage", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28302000000, + 43.60469900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Néris-les-Bains, Arènes;Réseau eborn/HXBSAH", + "ref:EU:EVSE": "FREBNPHXBSAH", + "ref": "231574;HXBSAH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66032000000, + 46.28830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3931733387636231399", + "capacity": "2", + "amenity": "charging_station", + "ref": "694313", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/S5JH7VHBMO", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43439100000, + 43.56209200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Saint Germain des Prés", + "ref:EU:EVSE": "FRP07E75106001;FRP07E751060011", + "capacity": "10", + "start_date": "2020-06-19;2021-11-03", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33178400000, + 48.85409900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Barby, Parking avenue des Salins;Réseau eborn/OM98B5NCGU", + "ref:EU:EVSE": "FREBNP2560742159002314859;FREBNPOM98B5NCGU", + "ref": "346856;OM98B5NCGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97749400000, + 45.57201600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/6585a3f22ff2dd001cb0382b", + "ref:EU:EVSE": "FREFLP2330772373721615334", + "network": "Road", + "opening_hours": "Sa,We,Th,Tu,Fr,Su,Mo 08:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref": "1001556" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61157700000, + 47.19858800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Metz Thionville CHR - EFFIA", + "capacity": "16", + "ref:EU:EVSE": "FRP01E57031001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-06-26;2023-07-04;2023-07-18;2023-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24448030000, + 49.08315300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6609175", + "description": "PARKING N-1 SAVENAY 6", + "capacity": "2", + "amenity": "charging_station", + "network": "PARKING N-1 SAVENAY 6", + "ref": "FRCPIE6609175", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93738800000, + 47.37267100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "N2JNLUXZTS;454422", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Toulon, Rue Chalucet;Réseau eborn/N2JNLUXZTS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP6602833594252344214;FREBNPN2JNLUXZTS", + "start_date": "2021-11-08;2021-10-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92710200000, + 43.12673300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "description": "WAAT/s570510", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P6073516730624398348", + "ref": "1181919", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69740000000, + 43.45591200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLIVPC0U62FE25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9159606485308532852", + "ref": "892236" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95162300000, + 48.76753600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-21", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "description": "FB SERVICE - Reims - All Paul Halary", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 07:00-19:00", + "network": "F.B SERVICE", + "owner:ref:FR:SIREN": "350416350", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP00568", + "ref:EU:EVSE": "FRTCBP00568" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06515316923, + 49.27058538303 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/K3T4LY2OWV", + "ref:EU:EVSE": "FRFR1P2398861002149361701", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "446540" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88732600000, + 50.07132500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-27", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN746001", + "operator": "DRIVECO", + "description": "Nissan -Annecy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10050800000, + 45.88488200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "description": "Douarnenez-Place Paul Stephan", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2904600", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32102000000, + 48.08650600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "370229", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/H6MGEHRH8L", + "ref:EU:EVSE": "FRS10P1526642764152250521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72999300000, + 48.51401900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "description": "Zephyre/LP009E8D", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "576359", + "ref:EU:EVSE": "FRZP1P3157162422850164392", + "charging_station:output": "22 kW", + "opening_hours": "Sa,We,Fr,Su,Tu,Th,Mo 08:00-17:00,We,Fr,Th,Mo,Su,Tu,Sa 00:00-23:59,Su 09:00-21:00", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32308400000, + 43.73123200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRRSEP01393A", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "description": "Régie Services Energie/FR*RSE*P01393*A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481254" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97913900000, + 46.06363900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PMESNILECOLES", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "120680", + "description": "FDE 80/mesnilecoles", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90787000000, + 49.77630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST18513;FRIZFPFAST18511;FRIZFPFAST18512", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MC DONALDS - BEYNOST", + "ref": "FR*SOD*S*FAST*185*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99171200000, + 45.82140100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - VILLEFRANCOEUR - Aérodrome de Blois", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "network": "MODULO - VILLEFRANCOEUR - Aérodrome de Blois", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E60410;FRS41E60409", + "ref": "FRS41E60410;FRS41E60409" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20841700000, + 47.68205500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-23", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "description": "LA SUZE SUR SARTHE - Route De Foulletourte", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS72E72346001", + "charging_station:output": "11 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02848600000, + 47.88172000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*96*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON9612;FRGLYPLYON9611", + "description": "POM01 - MUSEE AMPERE", + "operator:email": "sav@izivia.com", + "start_date": "2021-07-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79963100000, + 45.85393900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E215820;FRS37E215821", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E215820;FRS37E215821", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - LE GRAND PRESSIGNY - Rue du Presbytère - 215820", + "network": "MODULO - LE GRAND PRESSIGNY - Rue du Presbytère - 215820", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80337011000, + 46.92023940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PJRXYXK", + "start_date": "2016-09-26", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Camors - Rue du Vieux Presbytère" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00025700000, + 47.84817100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "network": "AGGLOMERATION MONTARGOISE - CHALETTE LAVOISIER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AGGLOMERATION MONTARGOISE - CHALETTE LAVOISIER", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-02-29", + "ref": "FRG10P45068A", + "ref:EU:EVSE": "FRG10P45068A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71514223278, + 48.02041515628 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - BEAUMONT", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*148*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPAUCH14812;FROTHPAUCH14811", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09132627176, + 45.74572975014 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*231*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "SIGEIF - PLACE DE LA MAIRIE - BIEVRES", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2022-03-10", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE23111;FRSIGPSIGE23112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21486000000, + 48.75467600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "description": "Move In Pure/VVMVUP", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref": "21798", + "socket:type2_combo:output": "44 kW", + "ref:EU:EVSE": "FRCN1PVVMVUP", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78339000000, + 45.78750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P7837573311931933501", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/B4SFETIVZ4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "454242" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773800000, + 48.67870600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "description": "MOBIVE | Dompierre sur Mer | Espace Michel Crépeau", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "d8c09234-afc8-502d-a59d-826a93168391", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06422600000, + 46.18873600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE91DBCA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "Médiathèque Théâtre Donald Cardwell - DRAVEIL", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40409300000, + 48.68159300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "ref:EU:EVSE": "FRABAPMKWTRFEQK1", + "start_date": "2021-01-01", + "description": "Fontvieille, Parking Des Arènes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70947500000, + 43.72466600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3577EVCP03;LFR3577EVCP01;LFR3577EVCP02", + "description": "ST RAPHAEL Zotti", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3577EVCP03;LFR3577EVCP01;LFR3577EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80929400000, + 43.43503800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MEYLAN - Allée Des Amphores", + "start_date": "2021-11-03;2022-06-14", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78649700000, + 45.21114000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPF2WBIZMGSY;FREBNF2WBIZMGSY", + "description": "Sainte-Anastasie-Sur-Issole, 11 les Ferrages;Réseau eborn/F2WBIZMGSY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref": "F2WBIZMGSY;75350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12528200000, + 43.34077200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/OMEDAZRPPK", + "ref": "756981", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4657464762659986298" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70072400000, + 43.44207200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACCECL", + "description": "Hotel F1 Ecuelles (77)", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-09-23;2024-09-24", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83885520597, + 48.36729421695 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPBESSAY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "description": "Bessay-sur-Allier, René Fallet;Réseau eborn/bessay", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "231541;bessay", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36633000000, + 46.43920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2023-10-05", + "capacity": "12", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPGENEC", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "description": "Gennevilliers - CC Espace Chanteraines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31886100000, + 48.93418400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "description": "Parking Suresnes Belvédère - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E92073001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22903130000, + 48.87747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "network": "SAINT-MAURICE BORNE 3", + "ref": "FRCPIE6658785", + "ref:EU:EVSE": "FRCPIE6658785", + "amenity": "charging_station", + "start_date": "2023-04-17", + "capacity": "1", + "description": "SAINT-MAURICE BORNE 3", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45670800000, + 48.81410400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHP7014722119703086383", + "description": "Easy Charge/ISRXX8UFA3", + "ref": "756861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10147400000, + 49.07885700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Avenue de la Porte d'Aubervilliers 10", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX19*15", + "ref:EU:EVSE": "FRV75PPX1915", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37116200000, + 48.89933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505632", + "ref:EU:EVSE": "FRFR1P6020773019270137288", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MK1KUGXZJN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19972400000, + 42.45139600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX0206", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-08-27", + "opening_hours": "24/7", + "description": "Paris | Rue de la Paix 24", + "ref": "FR*V75*PPX02*06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33208350000, + 48.86992610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6497162282743572504", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "782547", + "description": "Freshmile France/YL7CVNYH6R", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74388800000, + 50.28559600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "description": "Ford - Annecy", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD746001", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "start_date": "2020-12-22", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09996700000, + 45.88535400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22251001", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pordic-Place E. Gueret (devant la poste)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81792700000, + 48.56921400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PALAJA - Centre Commercial Lo Moral", + "network": "Reveo", + "start_date": "2022-02-14", + "ref:EU:EVSE": "FRS11E11272001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38861111111, + 43.17333330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-25;2020-11-23", + "ref": "64645;48423;48422;64646", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": " Mo-Fri 08:00-19:00,Sat 09:00-18:00;Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "ref:EU:EVSE": "FRZTLE22AC64646;FRZTLE22AC64645;FRZTLE22AC48422;FRZTLE22AC48423", + "network": "Toyota - Metz", + "owner:ref:FR:SIREN": "403547102", + "description": " Toyota - Metz- 22kW AC D ;Toyota - Metz- 22kW AC G ;Toyota - Metz- 22kW AC D ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61587100000, + 48.81656700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/P4GE5YC7JS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32023", + "ref:EU:EVSE": "FRS10P8356643222537184437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31065700000, + 48.49350300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/PGVTTD", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "86654", + "ref:EU:EVSE": "FRS80PPGVTTD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60741000000, + 49.91260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-01-31", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - AIX-LES-BAINS", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*67*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST6713;FRIZFPFAST6711;FRIZFPFAST6712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89658700000, + 45.69396020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-28;2024-04-24", + "ref:EU:EVSE": "FRS44P44102A;FRS44E44102001", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Montbert - Lavoir;MONTBERT - Place Du Lavoir", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48690600000, + 47.05745600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77269A;FRS77E77269001", + "ref": "01F5ZAKH61NA6C8BWKXA4ZJN6B", + "description": "MAINCY - Rue De Melun;Maincy - rue de Melun", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-30;2016-12-16", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70022600000, + 48.54837400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref": "1138500", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGYMP2493772162814928550", + "operator:email": "emobility.exploit@greenyellow.fr", + "capacity": "3", + "description": "GreenYellow Shift Mobility/94", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54730400000, + 47.21470200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221256;FRS37E221255", + "capacity": "2", + "description": "MODULO - ATHEE SUR CHER - ZA de la Ferriere", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E221256;FRS37E221255", + "start_date": "2019-03-18", + "network": "MODULO - ATHEE SUR CHER - ZA de la Ferriere", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91895000000, + 47.33050200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E65362;FRS55E65361;FRS55E65334;FRS55E65333", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "0 kW", + "description": "MODULO - LES TROIS DOMAINES (Droite) - Centre d'affaires", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "network": "MODULO - LES TROIS DOMAINES (Droite) - Centre d'affaires", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E65362;FRS55E65361;FRS55E65334;FRS55E65333" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26962300000, + 48.97767900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON11641;FRGLYPLYON11621;FRGLYPLYON11611;FRGLYPLYON11631", + "ref": "FR*SOD*S*LYON*116*3*_*_;FR*SOD*S*LYON*116*2*_*_;FR*SOD*S*LYON*116*1*_*_;FR*SOD*S*LYON*116*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "description": "LY404 - BOULEVARD DES CANUTS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82856200000, + 45.77741900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "network": "\tJRA CARQUEFOU", + "ref:EU:EVSE": "FRMBZEWUQAH", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "11 kW", + "description": "\tJRA CARQUEFOU", + "ref": "cca99371-351e-4b16-9577-53d7daa04e32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38760000000, + 47.29740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "description": "Jaguar Land Rover - Villeneuve d'Ascq", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPJLRASCQ596501", + "start_date": "2017-12-22", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12035700000, + 50.63102900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6557345", + "ref:EU:EVSE": "FRCPIE6557345", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "BORNE HU LOCATION U", + "description": "BORNE HU LOCATION U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47315200000, + 43.44881300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P4753437384625240177", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/AGK8IODLYI", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716400000, + 46.17291700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "c09a848e-975f-56f5-9368-7b5708da0485", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Gujan-Mestras | Parking Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07150600000, + 44.63571500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Sainte-Geneviève-des-Bois - Rue Marc Sangnier", + "ref": "2d291489-a423-57dc-a428-ad4d14d0cc0d", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32677500000, + 48.64085400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego NISSAN Avignon", + "ref": "FRALLEGO0000041", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "start_date": "2024-05-15", + "ref:EU:EVSE": "FRALLEGO0000041", + "network": "Allego NISSAN Avignon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84192900000, + 43.92601900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3448EVCP03;LFR3448EVCP01;LFR3448EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3448EVCP03;LFR3448EVCP01;LFR3448EVCP02", + "description": "TONNEINS Mendès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30083900000, + 44.39754100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CARROS VILLAGE -CHEMIN DE LA CALADE", + "ref:EU:EVSE": "FRM06PNICE7312;FRM06PNICE7311", + "start_date": "2019-10-04", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*73*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18581600000, + 43.79130700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*203*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ20312;FRA16PWIIZ20311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FREJUS - BOULEVARD HONORE DE BALZAC", + "start_date": "2023-01-18", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72164800000, + 43.38667800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2064480393837451271", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLOMTRGP0JXF1L", + "ref": "978023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07937000000, + 45.15767700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMBCPMR", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "description": "Mr. Bricolage - Pamiers", + "start_date": "2023-09-13", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63036197620, + 43.10502519585 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ZIUHTQE97T;75143", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPZIUHTQE97T", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/ZIUHTQE97T;Valence, Latour Maubourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90356600000, + 44.93354100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/DB261153-0E8F-4620-B7BF-02036F11ED0B", + "ref": "1085184", + "ref:EU:EVSE": "FREVZP8176365351443841758", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "network": "EVzen", + "operator:email": "support@evzen.com", + "opening_hours": "Mo,Tu,Fr,We,Th,Sa 07:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03178400000, + 48.32571800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E543950011;FRP07E5439500;FRP07E54395001", + "start_date": "2023-07-01;2022-02-03;2023-06-07", + "description": "NANCY - Charles III" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18195000000, + 48.68940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "32683;UDPQ78VIEG", + "description": "Villeneuve-De-Berg, Place des Combettes;Réseau eborn/UDPQ78VIEG", + "ref:EU:EVSE": "FREBNPUDPQ78VIEG", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50192900000, + 44.55836800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1109064", + "network": "Road", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FREFLP220105900699973376", + "opening_hours": "We,Su,Th,Mo,Fr,Tu,Sa 08:00-18:00", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/6662c4ba610dc5001d9a33b7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28676900000, + 45.85493300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP152001", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "50 kW;22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Station multi-énergies Grenoble", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71724500000, + 45.17352100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/JTRLOAXURL", + "operator:email": "roaming@freshmile.com", + "ref": "694238", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5204635367828597494", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87732400000, + 43.58556400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX11*11", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "ref:EU:EVSE": "FRV75PPX1111", + "description": "Paris | Rue Faidherbe 27", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38303680000, + 48.85257330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1795947110701526871", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LYZYQRLMOW", + "ref": "515060" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35133400000, + 48.74368000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPRESERVRAMATUELLE833501", + "network": "DRIVECO", + "description": "La réserve - Ramatuelle", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2021-07-20", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64816000000, + 43.19248400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900089", + "ref:EU:EVSE": "FRS27PBOURTHEROULDEMAIRIE", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87467200000, + 49.29950200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS21P21152A", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21152*A", + "ref": "242230", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64047200000, + 47.22019400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78481001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-05", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE PECQ - Gymnase", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10949000000, + 48.89422000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRQPKPQPRK9191;FRQPKPQPRK9171;FRQPKPQPRK9161;FRQPKPQPRK9151;FRQPKPQPRK9141;FRQPKPQPRK9131;FRQPKPQPRK9121;FRQPKPQPRK9111;FRQPKPQPRK91101;FRQPKPQPRK9181", + "charging_station:output": "22 kW", + "description": "QPARK - NIMES - JEAN JAURES", + "network": "QPARK", + "ref": "FR*SOD*S*QPRK*91*6*_*_;FR*SOD*S*QPRK*91*2*_*_;FR*SOD*S*QPRK*91*1*_*_;FR*SOD*S*QPRK*91*10*_*_;FR*SOD*S*QPRK*91*3*_*_;FR*SOD*S*QPRK*91*4*_*_;FR*SOD*S*QPRK*91*5*_*_;FR*SOD*S*QPRK*91*7*_*_;FR*SOD*S*QPRK*91*8*_*_;FR*SOD*S*QPRK*91*9*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35176100000, + 43.83283000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP2380846977799962685", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "ref": "626510", + "description": "WAAT/FRWATL5TC9UFYW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16765800000, + 49.13855800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE414900", + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2021-10-21", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE414900", + "operator": "IONITY", + "description": "IONITY Giberville Nord", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27414800000, + 49.16788600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P54429001", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2017-09-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "PIERREVILLE - les Beauvais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78762790000, + 49.47124940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "YEBLES - Avenue de la Gare;Yebles", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-25;2016-08-10", + "ref": "01F5ZAKH6106Q394Y3BDB7BX3R", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77534A;FRS77E77534001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77387800000, + 48.63752700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680852;531680854;531680855;531680851;531680850;531680853", + "start_date": "2022-09-26", + "ref": "FRHPCPNF080288", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "description": "REL.DE VALLEIRY NORD", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080288", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96410000000, + 46.09740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS41E3718;FRS41E3717", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS41E3718;FRS41E3717", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINT OUEN - Allée du Parc Bel Air", + "network": "MODULO - SAINT OUEN - Allée du Parc Bel Air" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07544800000, + 47.81808000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PLYBRMC", + "opening_hours": "24/7", + "ref": "21897", + "description": "Mobilité électrique 56/LYBRMC", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29707000000, + 47.51740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3235EVCP01;FRFR1P5578848055728124234", + "capacity": "2", + "amenity": "charging_station", + "description": "GRAY Plage;Freshmile/LN5OWH3GTB", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3235EVCP01;559745", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59617600000, + 47.44862300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2021-08-16", + "ref": "419964", + "description": "Metropolis - Citadine - Montrouge - Molière;Métropolis/FR*MGP*P92049*A", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92049A", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31596100000, + 48.81079000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 07:30-12:15, Mo 13:45-18:30, Tu 07:30-12:15, Tu 13:45-18:30, We 07:30-12:15, We 13:45-18:30, Th 07:30-12:15, Th 13:45-18:30, Fr 07:30-12:15, Fr 13:45-18:30, Sa 09:00-12:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSAGGPEUGEOT421101", + "description": "Peugeot - SAGG - Feurs", + "capacity": "3", + "start_date": "2020-02-27", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22476300000, + 45.72822200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRC2P007401", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "11 kW;22.08 kW", + "opening_hours": " 24/7;24/7", + "network": "SUN DEVELOPPEMENT;GROUPE COMELEC", + "start_date": "2021-07-10;2023-08-26", + "operator": "CAR2PLUG", + "ref:EU:EVSE": "FRC2P000501;FRC2P007401", + "description": "SUN DEVELOPPEMENT ;GROUPE COMELEC", + "owner:ref:FR:SIREN": "402143747;507500775", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31625599391, + 48.87284863189 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/LLYPK503NX2WU1", + "ref:EU:EVSE": "FRLE2P4028311857720041956", + "capacity": "20", + "opening_hours": "24/7", + "ref": "1152096", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30295600000, + 48.06699500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "b844d8bf-8227-52d1-a6aa-78df8b85851a", + "operator": "191__SDEER17", + "description": "MOBIVE | Charron | Rue du Château Zone des Morines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09639900000, + 46.30089400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE03DACA", + "start_date": "2023-12-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Dompierre sur Besbre rue du Port", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68504700000, + 46.52002500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "network": "ALLEGO", + "opening_hours": "24/7", + "start_date": "2024-07-01", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "description": "BAZALP COLMAR", + "ref:EU:EVSE": "FRSITE00000216" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36456690000, + 48.10949340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "1168884", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/LLYR26DXVKPLM8", + "capacity": "10", + "ref:EU:EVSE": "FRLE2P8109592100091944099" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73711900000, + 41.93761100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Gardanne, Parking de la Cité Administrative", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PAIILRQ9GK8", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47019000000, + 43.45165600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P9004176838911463288", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/PVLAC5Y3JN", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402593" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47557600000, + 48.19868800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*57*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "VALLAURIS PARKING LOUCE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-06", + "ref:EU:EVSE": "FRA16PWIIZ5711;FRA16PWIIZ5712", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07382500000, + 43.56965600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EMNND9MFE7", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1019438210928282312", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "485109", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31290600000, + 43.94430600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-22;2023-09-20", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Parking giratoire Souque Nègre SG - La Destrousse 2", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PSGLLDS", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59778700000, + 43.38957000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "YGJNOCYD53;749466", + "description": "Chamrousse, Rue Du Père Tassé;Réseau eborn/YGJNOCYD53", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPYGJNOCYD53;FREBNP2448407808308875833", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87581000000, + 45.10923000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP8652867073945952797", + "ref": "1049748", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "ENGIE MAMP - Bornes publiques/FFCD3D7C-238B-40AE-A67D-099A61316BF4", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35338100000, + 43.28532000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - PINSAGUEL STATION", + "socket:type2_combo:output": "63 kW", + "ref": "FR*SOD*S*OTHR*664*2*_*_;FR*SOD*S*OTHR*664*1*_*_", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR66422;FROTHPOTHR66421;FROTHPOTHR66412;FROTHPOTHR66411;FROTHPOTHR66423", + "charging_station:output": "22 kW;63 kW", + "opening_hours": "24/7", + "start_date": "2023-11-20", + "operator:email": "sav@izivia.com", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39167400000, + 43.50089800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "78633;ANDDND3BDK", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/ANDDND3BDK;Oraison, Parking de La Mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPANDDND3BDK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91822300000, + 43.91745100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "75173;ABQ4SHJDQX", + "capacity": "2", + "description": "Allinges, Parking de l'Église;Réseau eborn/ABQ4SHJDQX", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPABQ4SHJDQX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46464000000, + 46.33661000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*356*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR35612;FROTHPOTHR35611", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "description": "CAMPING BLUE BAYOU - VENDRES", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24350400000, + 43.22673800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "559775", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/RIYAV3WSUX", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3636540477949420429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52167100000, + 47.45874100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP31398", + "description": "Tesla Supercharger Montbéliard, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81234321000, + 47.50058121000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/HEKHN1FIEJ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2718338278964830127", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521294", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81653300000, + 46.79481900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS842001", + "operator:email": "support@driveco.com", + "description": "Volkswagen - ByMyCar - Carpentras", + "start_date": "2024-01-15", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04899900000, + 44.04011400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900130", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PNONANCOURTFRANPRIX", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19958900000, + 48.77053800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MUR DE BRETAGNE-Rue de Pontivy", + "ref:EU:EVSE": "FRS22E22158001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98758600000, + 48.19813500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZIME22AC78037;FRZIME22AC78036", + "network": "INTERMARCHE GAUVILLE - BAUMAT", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "330489261", + "ref": "78037;78036", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": " Intermarché - Gauville - 22kW AC ;Intermarché - Gauville - 22kW AC ", + "start_date": "2021-09-13", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75970400000, + 49.78087900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE276", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-09-21", + "capacity": "2", + "amenity": "charging_station", + "description": "Mairie_Bohain_Gare", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44306590000, + 49.98811110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CONFLANS-SAINTE-HONORINE - Rue Henri Dunant", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-14", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78172005", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08873984586, + 49.00573612182 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-23", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Sorgues", + "description": "Sorgues", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE423452;FRIOYE423451;FRIOYE423404;FRIOYE423402;FRIOYE423403;FRIOYE423405;FRIOYE423406;FRIOYE423407;FRIOYE423453", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE423452;FRIOYE423451;FRIOYE423404;FRIOYE423402;FRIOYE423403;FRIOYE423405;FRIOYE423406;FRIOYE423407;FRIOYE423453" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88965220000, + 44.02444820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "ARON - La Briqueterie", + "ref:EU:EVSE": "FRS53E53008001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58622360000, + 48.30076730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65460004", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "description": "VIC BIGORRE - MARIE - Allée Du Général De Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05421000000, + 43.38610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "ref": "FRIENE006802;FRIENE006801", + "capacity": "4", + "operator:email": "support@iecharge.io", + "start_date": "2023-06-16", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE006802;FRIENE006801", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Guérande", + "description": "Guérande" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45612719000, + 47.37107174000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS34E34344005", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA GRANDE MOTTE - Avenue De l’Europe", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09028784493, + 43.55783754473 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61181B", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "GACE - 8 AVENUE TAHITI", + "ref": "SE61-GACE-002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29830000000, + 48.79469500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLK8E6GXT217DY", + "ref:EU:EVSE": "FRFR1P5298792442240347324", + "operator:email": "roaming@freshmile.com", + "ref": "892494", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02493900000, + 48.98519400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PVDUUDE", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "start_date": "2018-06-01", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "79759;VDUUDE", + "description": "Labarthe-sur-Lèze, Place François Fournil;Roulez Électrique En Haute-Garonne/VDUUDE", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39608000000, + 43.45280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92004025", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - rue Daniel", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29940394230, + 48.91196775426 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "FRCG0E000196;FRCG0E000195;FRCG0E000194;FRCG0E000193;FRCG0E000197", + "charging_station:output": "22 kW;11 kW;2 kW", + "amenity": "charging_station", + "start_date": "2022-03-02", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000196;FRCG0E000195;FRCG0E000194;FRCG0E000193;FRCG0E000197", + "description": "LeVal Moret 2", + "operator:email": "info@chargeguru.com", + "network": "LeVal Moret 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43281200000, + 48.17670400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2021-04-30", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*131*1*_*_", + "description": "NICE - PARKING HOPITAL DE CIMEZ", + "ref:EU:EVSE": "FRM06PNICE13111;FRM06PNICE13112", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27225800000, + 43.72211800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "45622778-d688-5ca8-9226-f6926a4cc2ff", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Dax | Rue de Tercis", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06615700000, + 43.69860800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE58DABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-04", + "socket:type2_combo:output": "24 kW", + "description": "France Pare-Brise - DECIZE", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46653700000, + 46.83677800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Super U - Saint-Langis-lès-Mortagne", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "ref:EU:EVSE": "FRBMPS242143;FRBMPS242144", + "operator": "Bump", + "ref": "242143;242144", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53193690000, + 48.52762120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "IVRY", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR1071EVCP02;LFR1071EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR1071EVCP02;LFR1071EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38015500000, + 48.81961900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Beaulieu Sur Dordogne | Place du Champ de Mars", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "34702702-74d6-5352-b721-bba4bc5f1d10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83646500000, + 44.97850100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "description": "Évry-Courcouronnes - Allée des Champs-élysées", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0b47e47c-c699-5261-ba20-24dee2653055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42446200000, + 48.62986500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84000*AVG*SOLIDARITE", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "MOURRE-SOLIDARITÉ - AVIGNON", + "start_date": "2021-03-09", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP84000AVGSOLIDARITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82506200000, + 43.94290500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AURIOL Pujol", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3193EVCP01;LFR3193EVCP02;LFR3193EVCP03", + "ref": "LFR3193EVCP01;LFR3193EVCP02;LFR3193EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65109600000, + 43.36922600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-24", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "description": "Univers Bois - Varetz", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PUBSVAR", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45516613128, + 45.19177849983 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/VFVIHSTRMO;Champagne, Le Village", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "30287;VFVIHSTRMO", + "ref:EU:EVSE": "FREBNPVFVIHSTRMO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80108000000, + 45.27113800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/O0XRO0D25I", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "466131", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8723502253230961396", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36020000000, + 47.98452000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de La Rochelle P1 - EFFIA", + "ref:EU:EVSE": "FRP01E17300001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14559500000, + 46.15309300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS612;FRCPSPCAPS611", + "description": "ORSAY - PARKING MAIRIE", + "ref": "FR*SOD*S*CAPS*6*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2020-02-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18746400000, + 48.69858200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP9155770633027638040;FREBNPN85SEO7ECP", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/N85SEO7ECP;L'Argentière-La-Bessée, Rue Edward Whymper", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "ref": "N85SEO7ECP;346829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55886000000, + 44.79270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-02", + "ref:EU:EVSE": "FROTHPOTHR47212;FROTHPOTHR47211", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*472*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "BRICORAMA - JEUXEY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47757900000, + 48.20091900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "529187", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DXVCIGXZXW", + "ref:EU:EVSE": "FRFR1P3458334714562532580", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.40828500000, + 48.43695400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2024-03-22", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref": "setp0100000138", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-077", + "ref:EU:EVSE": "FRUBIE10024636;FRUBIE10065439" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23090500000, + 49.60453400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "971789", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8024126019594568919", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLM4OBFVD27CTH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34860900000, + 49.12756400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTLSE31555009", + "description": "TOULOUSE - Impasse Gaston Génin", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48394390000, + 43.57402590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1734958686459763370", + "description": "Freshmile France/PRXH55YOEF", + "operator": "Freshmile | FR*FR1", + "ref": "510557" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47295900000, + 50.37768300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/WEXJ08SAGD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "699095", + "ref:EU:EVSE": "FRS14P7467247268460805010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11679000000, + 49.28770900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11434001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VILLEPINTE - Rue Léon Blum", + "start_date": "2022-02-16", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08850400000, + 43.28248600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78152002", + "network": "Seymaborne", + "description": "CHAVENAY - Prés", + "start_date": "2024-10-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98655936846, + 48.85131803196 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "4de4effe-370f-5166-97d4-e829d07f7060", + "description": "SDE54 CCPSV Varangeville - Rue de la Commune de Paris", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31435900000, + 48.63483800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "description": "SIED70/Luxeuilmai", + "amenity": "charging_station", + "ref": "65015", + "ref:EU:EVSE": "FRS70PLUXEUILMAI", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38046000000, + 47.81280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "support@alizecharge.fr", + "description": "BAVINCHOVE - Pole Gare", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;3 kW", + "ref:EU:EVSE": "FRH14E59054001", + "network": "pass pass électrique", + "start_date": "2023-01-10;2023-01-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46044100000, + 50.78763000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "ST MALO - Impasse du souvenir (4 place du Canada) ", + "owner:ref:FR:SIREN": "200022705", + "start_date": "2022-07-15", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "ref:EU:EVSE": "FRS35P35288007B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96736900000, + 48.68166600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref": "518324", + "network": "SIEG 63", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63124*A", + "ref:EU:EVSE": "FRS63P63124A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19285000000, + 45.73076300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/F0NR8K9NFG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "559703", + "ref:EU:EVSE": "FRFR1P7618286869104133233", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.89312700000, + 49.01167500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEG32/LALSSE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PLALSSE", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "294491", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42744000000, + 43.80570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94002012", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2024-02-15", + "description": "ALFORTVILLE - Allée Jean-Baptiste Preux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42500780000, + 48.77953070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE25312;FRM06PNICE25311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA GAUDE - PARKING MATERNELLE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*253*1*_*_", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17744006098, + 43.72114813322 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Sigoules | Parking Route de Perthus", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bd112851-5246-52b7-8a74-f71d641ccbb0", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40876400000, + 44.75695000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39012;FRSIGPSIGE39011", + "description": "SIGEIF - PARKING MAISON POUR TOUS - SAINT-LEU-LA-FORET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref": "FR*SOD*S*SIGE*390*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24848000000, + 49.01930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTMAIN - Place De La Mairie", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-29;2024-05-21", + "ref:EU:EVSE": "FRC01E76448001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24022900000, + 49.40804500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3791EVCP02;LFR3791EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3791EVCP02;LFR3791EVCP01", + "capacity": "4", + "description": "MONTELIMAR Meyrol", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74531500000, + 44.57940300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Villedoux | Rue du Marais Guyot", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ece3646b-69a2-5f6f-9d2e-a15dacfc7b29", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06639400000, + 46.23941800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PREALVILLE", + "description": "SDE82/realville", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "39019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47908000000, + 44.11590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-09-04", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP92350LPRPLESS1S", + "description": "AVENUE DU PLESSIS - LE PLESSIS-ROBINSON", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92350*LPR*PLESS1S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27812500000, + 48.78302700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3913EVCP01;LFR3913EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3913EVCP01;LFR3913EVCP02", + "capacity": "4", + "description": "MURS ERIGNE - Clos", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52771400000, + 47.39627400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Montech", + "ref:EU:EVSE": "FRPD1PITMMTC", + "opening_hours": "24/7", + "start_date": "2024-02-05;2024-01-31", + "charging_station:output": "50 kW;187.5 kW;22 kW", + "capacity": "9", + "operator": "Power Dot France", + "socket:type2_combo:output": "187.5 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24678757382, + 43.96462815435 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPGFHM4A7HUU;FREBNP5608979732503999201", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "GFHM4A7HUU;346730", + "start_date": "2020-11-20", + "description": "Réseau eborn/GFHM4A7HUU;Le-Puy-En-Velay, Avenue Charles Dupuy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89164000000, + 45.04276000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - Eléphant Bleu Coulommiers", + "opening_hours": "24/7", + "ref": "FRETIP77131A", + "start_date": "2023-10-31", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP77131A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09271700000, + 48.80829700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-13", + "ref:EU:EVSE": "FRPD1PCORCBR", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Cora - Cambrai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22121792195, + 50.14764902970 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Marle sur Serre", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT022501", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-07-26", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77328200000, + 49.74355500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "start_date": "2024-03-13", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPVLTCC", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "Villetaneuse - CC Bienvenu", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34417300000, + 48.94865600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-11-07", + "ref": "FR*SOD*S*AUCH*163*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - LA TRINITE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "ref:EU:EVSE": "FROTHPAUCH16311;FROTHPAUCH16312", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31807990000, + 43.74257130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6777415;FRCPIE6777395;FRCPIE6777385;FRCPIE6777405", + "capacity": "8", + "description": "ELEC SBE BORNE 01", + "amenity": "charging_station", + "start_date": "2023-09-05", + "network": "ELEC SBE BORNE 01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6777415;FRCPIE6777395;FRCPIE6777385;FRCPIE6777405", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46255000000, + 49.02089000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HZABK7HN5Y", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "782487", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4450090017395857920" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716700000, + 44.42966800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75P901202", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9012*02", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "start_date": "2021-06-01", + "opening_hours": "24/7", + "description": "Paris | Boulevard Diderot 126", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38804000000, + 48.84744600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLSX0RZVJXATWG", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3021674057350499270", + "operator": "Freshmile | FR*FR1", + "ref": "1026735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51955500000, + -20.89573400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP5362", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Fontainebleau, France - Ury", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60722400000, + 48.34941900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "892419", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJR0LUZ7225CT", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7656957305429208936" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.05913800000, + 48.84766300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "start_date": "2023-03-03", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89333939", + "description": "R3 - Norauto Reims Neuvilette", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02371000000, + 49.28875300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8541406675591544547", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLT4CT5XO216G1", + "charging_station:output": "25 kW;22 kW", + "ref": "1026804" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40882600000, + 49.18918600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT SERNIN SUR RANCE - Parking Route de Saint Affrique", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW;22 kW;36 kW", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-03", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12248001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60670800000, + 43.88533000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LI3DMT6F4", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref": "972638", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA5P3365546465327501004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57101100000, + 47.57855800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Tillieres - Sports;TILLIERES - Parking Salle des Sports", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-05-18;2024-05-29;2021-06-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49E49349001;FRS49P49349A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16480000000, + 47.14095800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81105003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRAULHET - Place Jean Moulin", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98689500000, + 43.76183600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS ROISSY;RELAIS DE SAINT-YVI", + "ref:EU:EVSE": "FRHPCPNF038545;FRHPCPNF059705", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "FRHPCPNF038545;FRHPCPNF059705", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681677;531681679;531681678;531681681;531681680", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-08-07;2023-10-10", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "capacity": "1;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53713400000, + 49.00937700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS46E46148001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo", + "description": "LALBENQUE - Place de la Foun Priundo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54815900000, + 44.33614900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/PDYFKZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PPDYFKZ", + "operator": "Morbihan énergies | FR*S56", + "ref": "25085", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.71399000000, + 47.96190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH04E59178009", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "DOUAI - Musée Arkeos Route de Tourne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13052000000, + 50.40967600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS29E2922600", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Poullan sur Mer-Place Kreiz Ker" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.41479900000, + 48.08092500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-MAUR-DES-FOSSÉS - Parking Arromanche", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068009", + "start_date": "2023-11-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47711900000, + 48.79047700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B126", + "start_date": "2017-11-06", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346051191;FRLMSE12346051192;FRLMSE12346051201;FRLMSE12346051202", + "operator:email": "irve@soregies.fr", + "description": "BERUGES-1-1;BERUGES-1-2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19753700000, + 46.56906100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref": "330299", + "description": "Métropolis/FR*MGP*P92063*H;Metropolis - Citadine - Rueil-Malmaison - Frères Lumière", + "amenity": "charging_station", + "start_date": "2021-01-22", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92063H", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17164900000, + 48.88332800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2021-06-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - PARKING RELAIS FOURCADE - MONTSOULT", + "ref:EU:EVSE": "FRSIGPSIGE6111;FRSIGPSIGE6112", + "ref": "FR*SOD*S*SIGE*61*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32082100000, + 49.06731400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Allego Carrefour Saint-Brieuc", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9990461;FRALLEGO9009101;FRALLEGO9009102;FRALLEGO9009171;FRALLEGO9009172;FRALLEGO9990451;FRALLEGO9990452;FRALLEGO9990462", + "ref": "FRALLEGO9990461;FRALLEGO9009101;FRALLEGO9009102;FRALLEGO9009171;FRALLEGO9009172;FRALLEGO9990451;FRALLEGO9990452;FRALLEGO9990462", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-28", + "network": "Allego Carrefour Saint-Brieuc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72632625000, + 48.49575268000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Fleury Merogis", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000058479", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36020000000, + 48.62210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Boucau | Place Semard", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "aa1a9017-65e1-52df-a141-e892a3c5e09e", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49023500000, + 43.52351400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "L'ILE-D'YEU - Parking Embarquadère Ile D'Yeu - Quai De La Mairie", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85113001", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34753000000, + 46.72431900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref": "FRALLEGO9007412;FRALLEGO9007411;FRALLEGO9007182;FRALLEGO9007181;FRALLEGO9000142;FRALLEGO9000141;FRALLEGO9000122;FRALLEGO9000121", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9007412;FRALLEGO9007411;FRALLEGO9007182;FRALLEGO9007181;FRALLEGO9000142;FRALLEGO9000141;FRALLEGO9000122;FRALLEGO9000121", + "charging_station:output": "0 kW", + "network": "Allego Carrefour Quimper", + "description": "Allego Carrefour Quimper", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10854600000, + 47.98401600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "CANTELEU Duclair", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3053EVCP01", + "ref": "LFR3053EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02605200000, + 49.44710200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-20;2023-03-24", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PLCLCHA", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "E.Leclerc - Chantonnay", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05076066840, + 46.70065157049 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Saint-Maurice-En-Gourgois, Parking supérette", + "ref:EU:EVSE": "FREBNPU4AQ0K8DKR", + "ref": "U4AQ0K8DKR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18078170000, + 45.40332380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref": "1061208", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "Norauto - Bornes publiques/446DDE20-0E97-4798-B62F-25940E083B88", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP632705576588199593", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93299300000, + 45.74676200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "description": "Gamm Vert - Lourdes", + "opening_hours": "24/7", + "start_date": "2024-02-29", + "ref:EU:EVSE": "FRPD1PGMVLDS", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03183027476, + 43.11542336419 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRE11PLM783901", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-07-02", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO", + "description": "Leroy Merlin - Bois d'Arcy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00914000000, + 48.79969300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP05140A", + "ref": "FRETIP05140A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Sanctuaire notre Dame du Laus", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15274400000, + 44.52082900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "description": "CENTRE COMMERCIALE DU JET DEAU - CARREFOUR MARKET", + "network": "KAFREMBO", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*157*4*_*_;FR*SOD*S*OTHR*157*3*_*_;FR*SOD*S*OTHR*157*1*_*_;FR*SOD*S*OTHR*157*2*_*_", + "start_date": "2021-04-15", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR15731;FROTHPOTHR15721;FROTHPOTHR15711;FROTHPOTHR15741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47092300000, + 43.33822400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "description": "CHAMBRE FUNE STATION FUNE", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6966485", + "network": "CHAMBRE FUNE STATION FUNE", + "ref": "FRCPIE6966485" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00753000000, + 45.16182300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLXSPSZQN8TKSS", + "operator:email": "roaming@freshmile.com", + "ref": "1123662", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6270912334961883742" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46242600000, + 44.22185500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP122068", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-08-09", + "description": "ENGIE Vianeo - B&B HOTEL MONTÉLIMAR NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79510600000, + 44.66725900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1115682", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8091635092458443314", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLT7BCNJ21EG75", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25726200000, + 43.52734600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-26", + "capacity": "5", + "description": "Renault - Mont de Marsan", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPEDENAUTORENAULT400001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47924700000, + 43.90358200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/ZCDWN9EH7O", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5470778999437398140", + "ref": "529844", + "charging_station:output": "25 kW;50 kW;22 kW", + "socket:type2_combo:output": "25 kW;50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09320900000, + 43.91656300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Kyriad - Pontarlier", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPKYRIAD253001", + "start_date": "2022-07-27", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33104700000, + 46.90140900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "network": "MODULO - THIRON-GARDAIS - Pl. du marché", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E130987", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "description": "MODULO - THIRON-GARDAIS - Pl. du marché", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS28E130987", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99115189000, + 48.31185045000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/REGMVHBLYO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P9144974700106972780", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461904" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84068500000, + 49.35965700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "ref": "1127907", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P7796066543380865439", + "description": "WAAT/FRWA5L8EMKYPP2", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13476400000, + 49.88331300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "description": "CHERBOURG EN COTENTIN (QUERQUEVILLE) - Rocambole", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2017-08-11", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50416002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69222800000, + 49.66579600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-06-21", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8125300121;FRS81E8125300111", + "description": "SAINT GREGOIRE - Place Capitaine Roussel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26058100000, + 43.96124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30;2023-04-21;2022-12-23", + "charging_station:output": "175 kW;54 kW", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF078183", + "capacity": "4", + "ref": "FRHPCPNF078183", + "opening_hours": "24/7", + "description": "REL.COMMUNAY SUD", + "owner:ref:FR:SIREN": "531680961;531680964;531680963;531680962", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82600000000, + 45.58940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49007031", + "description": "BEAULIEU SUR LAYON - Aire de covoiturage La promenade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60269397500, + 47.31636047363 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "description": "Mouv'Oise/RPJGAB", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PRPJGAB", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "79507" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88135000000, + 49.22620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HAZEBROUCK - Rue de Queux St Hilaire", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH08E59295006", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53396600000, + 50.72255700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-30", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30096001", + "description": "CORNILLON - Parking Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48578900000, + 44.21849900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "socket:type2_combo:output": "42 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PFPKPDC", + "start_date": "2015-07-21", + "description": "Arzal - Parc d'activité de l'estuaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40121000000, + 47.53459900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B170", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2025-06-06", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346367151", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "description": "CHALAIS AIRE T2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10507339980, + 46.95964604177 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93078C", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Villepinte - Norbert Segard;Métropolis/FR*MGP*P93078*C", + "start_date": "2022-04-29", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "484850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53989900000, + 48.95613600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "ref": "FRSHEE70;FRSHEE68;FRSHEE69", + "description": "Shell Aire de Haras HW", + "amenity": "charging_station", + "start_date": "2024-03-21", + "charging_station:output": "300 kW;125 kW;22 kW", + "ref:EU:EVSE": "FRSHEE70;FRSHEE68;FRSHEE69", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "Shell Aire de Haras HW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37363950000, + 48.84932639000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "120 kW;22 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-01-16;2022-11-01", + "description": "BOTANIC Seyssins - Rue Dr Schweizer - [Alizé]", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "120 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E38486001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69412470000, + 45.15944980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89370718", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A1 Phalempin Est", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04638400000, + 50.52955500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "b9aad883-fccf-5453-b179-eac5d255ba83", + "description": "MOBIVE | Jarnac | Place Jean Jaures", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17424200000, + 45.68151700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE62BEMA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Mairie - BEAURAINVILLE", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90117900000, + 50.42486900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "BREST", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-22", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSBREST", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52673200000, + 48.38817500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3832EVCP01;LFR3832EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3832EVCP01;LFR3832EVCP02", + "description": "MARCONNE - Marie", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03682600000, + 50.36412800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "GUIPAVAS - Boulevard De L'Europe", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRM29E29075001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW;22 kW", + "start_date": "2022-01-14;2021-11-03;2021-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.44387500000, + 48.41870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/MFMJGR;Cosne-d'Allier, Centre de secours", + "ref:EU:EVSE": "FREBNPMFMJGR", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "MFMJGR;30611", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83132000000, + 46.47400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/LLPI9GVM7AJ8CP", + "capacity": "10", + "ref": "1009164", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8225068412263683651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55418500000, + 47.21673600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E67482004", + "description": "STRASBOURG - Gare Courte Durée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73490100000, + 48.58438240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-05-29;2024-07-08", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLWRRG9LU8RGQ9;1168887", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Toulon, rue Courbet;Réseau eborn/LLWRRG9LU8RGQ9", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP2395331420565705837;FREBNPLLWRRG9LU8RGQ9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92710500000, + 43.12432700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Sa,We,Tu,Mo,Su,Th,Fr 08:00-18:00", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP8670595263225266975", + "description": "Road/6458d58a9f1d7100120a06fe", + "ref": "920058", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87973800000, + 44.99844700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-10", + "operator": "IZIVIA", + "description": "NETTO GIMA - PORT-SAINT-LOUIS-DU-RHONE", + "charging_station:output": "3.68 kW;22 kW", + "ref": "FR*SOD*S*OTHR*275*3*_*_;FR*SOD*S*OTHR*275*2*_*_;FR*SOD*S*OTHR*275*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR27531;FROTHPOTHR27521;FROTHPOTHR27511", + "network": "NETTO GIMA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79204900000, + 43.39896500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6606645", + "network": "SONEPAR CONNECT CHAUMONT", + "ref": "FRCPIE6606645", + "start_date": "2022-10-12", + "description": "SONEPAR CONNECT CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14568100000, + 48.08394100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3733042996654800843", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/PX3HCA6K3H", + "ref": "505653", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10338200000, + 49.07656600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s540962", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P8678495182893355801", + "charging_station:output": "7.4 kW;22 kW", + "ref": "1168230", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99856900000, + 50.61168500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "559784", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/SO7YFPBWXL", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2909344915629641587", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81275200000, + 48.89785500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ACCOR Hotels", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref": "FRTCBP00120", + "capacity": "4", + "owner:ref:FR:SIREN": "490227402", + "ref:EU:EVSE": "FRTCBP00120", + "start_date": "2020-01-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mercure - Lyon Part Dieu", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86140400000, + 45.75988300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5949554598552360745", + "network": "Freshmile France", + "ref": "892539", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKL5TFOZ1Z6WU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52203100000, + 49.30102200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPJPVKIA836001", + "amenity": "charging_station", + "capacity": "4", + "description": "Kia - Fréjus", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-19:00", + "start_date": "2020-03-04", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73450600000, + 43.47190700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "ref:EU:EVSE": "FRS29E2902400", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Carhaix Plouguer-Rue de l'Église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.57622800000, + 48.27726400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "88205", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/R2QWWUUNL1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7540271043055203500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90845600000, + 48.04269700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GHO Le Coudray;Zephyre", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "819281247", + "ref": "575891;ab29c894-6b8e-4518-bad3-80ddf11a8af1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1PEAC42996;FRZP1P7541049568051590500;FRZP1PEAC42965;FRZP1PEAC42967;FRZP1PEAC42968", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "description": "Zephyre/1919078;GHO Le Coudray", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48179900000, + 48.55581800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-05-06", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "HusserenSpa", + "ref:EU:EVSE": "FRROSE81", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27685620000, + 48.03381270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/corbie11nov", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PCORBIE11NOV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64802", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51509000000, + 49.91210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*158*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST15813;FRIZFPFAST15811;FRIZFPFAST15812", + "start_date": "2024-05-13", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79865092308, + 48.07762527227 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SOING EN SOLOGNE - Salle des fêtes", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4690;FRS41E4691", + "ref": "FRS41E4690;FRS41E4691", + "network": "MODULO - SOING EN SOLOGNE - Salle des fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52513400000, + 47.41384100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60P3189337391239781385", + "ref": "598188", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/TOSENGM2YB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96782100000, + 49.46385300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LY710 - SERGENT BLANDAN", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-03-25", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON7241;FRGLYPLYON7231;FRGLYPLYON7211;FRGLYPLYON7221", + "ref": "FR*SOD*S*LYON*72*2*_*_;FR*SOD*S*LYON*72*1*_*_;FR*SOD*S*LYON*72*3*_*_;FR*SOD*S*LYON*72*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85127200000, + 45.74554800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E214067;FRS37E214068", + "description": "MODULO - MONTLOUIS SUR LOIRE - Rue de la Frelonnerie", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E214067;FRS37E214068", + "network": "MODULO - MONTLOUIS SUR LOIRE - Rue de la Frelonnerie", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81891078000, + 47.37883550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PXLMBLJ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/XLMBLJ", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "32854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68660000000, + 48.06160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P06088A", + "start_date": "2021-03-04;2021-03-03", + "amenity": "charging_station", + "network": "Carrefour Nice Lingostière", + "capacity": "4;6", + "description": "Carrefour Nice Lingostière", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P06088A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18853700000, + 43.72962600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - LAXOU - Centre Co. La Cascade", + "operator:email": "support@modulo-energies.fr", + "start_date": "2019-05-30", + "ref:EU:EVSE": "FRN54E187764;FRN54E187763", + "description": "MODULO - LAXOU - Centre Co. La Cascade", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRN54E187764;FRN54E187763" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13388000000, + 48.69940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*205*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 140 AVENUE EUGENE VARLIN - VILLEPARISIS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE20512;FRSIGPSIGE20511", + "charging_station:output": "22 kW", + "start_date": "2021-11-17", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60112800000, + 48.95079200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001871;FRCG0E001870;FRCG0E001872", + "network": "Logis Hôtel le Saint Georges - 41100 - 1", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "Logis Hôtel le Saint Georges - 41100 - 1", + "opening_hours": "24/7", + "start_date": "2023-11-10", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001871;FRCG0E001870;FRCG0E001872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06435000000, + 47.79172100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779987486", + "operator": "ZEENCO", + "charging_station:output": "25 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "ZEENCO", + "start_date": "2024-05-03", + "ref:EU:EVSE": "FRLMSE1234571369", + "operator:email": "franck.legardeur@zeenco.tech", + "description": "Yutz salle l'amphy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19975200000, + 49.35173600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Puilboreau | Place Jean Flippi", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "bdba9865-d701-5983-ab58-ffdeaa49101b", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11617900000, + 46.18598800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-12-13", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE86JABA", + "description": "SCI LTE - JARDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62120500000, + 46.56860900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*98*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "VALBONNE - PARKING NAUTIPOLIS", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ9811;FRA16PWIIZ9812", + "start_date": "2020-02-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05466200000, + 43.62566000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLEFRANCHE DE ROUERGUE", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3124EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3124EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00253300000, + 44.36117800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "description": "CLAIX - Chemin de Risset", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38111002", + "charging_station:output": "25 kW;22 kW", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67177120000, + 45.11179880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "KLMBE6LVV9;79228", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Roquebrune-sur-Argens, Boulevard Des Murènes;Réseau eborn/KLMBE6LVV9", + "start_date": "2020-08-26", + "ref:EU:EVSE": "FREBNKLMBE6LVV9;FREBNPKLMBE6LVV9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69117700000, + 43.34247400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLL0NCFG1UX965", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892605", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2755105673335619116", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36145300000, + 46.65899600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2024-01-29;2023-12-15", + "capacity": "18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E920720011;FRP07E92072001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SEVRES - Centre-Ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21233860000, + 48.82355780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP5378515461725305362;FREBNPMYQBUNOQVJ", + "ref": "MYQBUNOQVJ;346823", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "socket:type2_combo:output": "24 kW", + "description": "Le-Chambon-Sur-Lignon, Rue de la Poste;Réseau eborn/MYQBUNOQVJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30415000000, + 45.06124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "operator:email": "help@electra.com", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "description": "Coquelles - Channel Outlet", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPCOQCH", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80738200000, + 50.92726900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Poitiers Pont Achard – EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E86194001", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33258700000, + 46.58143210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6643815", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR LAVAL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SONEPAR LAVAL", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6643815", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74707500000, + 48.08898900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "891996", + "description": "Easy Charge/XCVVJCEOBY", + "ref:EU:EVSE": "FRECHP1243631029711099529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10257700000, + 44.56948700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1805", + "ref": "FR*V75*PPX18*05", + "description": "Paris | Rue Custine 17", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34803450000, + 48.88835960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/PFK6JNKO3Z", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "585530", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9062870397682268924" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14674800000, + 49.27589900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9018*04", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue Ordener 110", + "ref:EU:EVSE": "FRV75P901804", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34066000000, + 48.89311000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P4971003983830005470", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/FCGRS7CQWI", + "amenity": "charging_station", + "ref": "479196", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175000000, + -20.89820200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-15", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:30, Tu 08:00-12:00, Tu 14:00-18:30, We 08:00-12:00, We 14:00-18:30, Th 08:00-12:00, Th 14:00-18:30, Fr 08:00-12:00, Fr 14:00-18:30, Sa 09:00-12:00, Sa 14:00-17:30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Hyundai -Agen", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMANFEHYUNDAI474501", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58521700000, + 44.21906400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2917500", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plonevez du Faou-Place de la Résistance" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82614000000, + 48.25326200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-30", + "ref:EU:EVSE": "FRS11E11195001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "LAURABUC - Rue du Rivalet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98186159829, + 43.24828302972 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "172650", + "ref:EU:EVSE": "FRZPEE22AC172650", + "start_date": "2023-01-10", + "network": "VENDEUVRE AUTOMOBILES", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "482738648", + "opening_hours": "Lu- Sa 08:00-19:00", + "operator": "ZEborne", + "description": "Ford - Saint Martin la Pallu - 22kW AC " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30375480652, + 46.72885998994 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS09E09238001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "LES PUJOLS - Av Des Guinguettes D119", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72140300000, + 43.09307800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64730", + "description": "FDE 80/58c7c56db5ce3", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80P58C7C56DB5CE3", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49746000000, + 50.18070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST4123;FRIZFPFAST4122;FRIZFPFAST4121", + "start_date": "2024-04-09", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - PLOUGASTEL-DAOULAS", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*41*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34314360000, + 48.38171400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Herbignac - Pasteur;HERBIGNAC - Rue Pasteur", + "start_date": "2021-04-21;2024-04-22", + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44072B;FRS44E44072002", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31929400000, + 47.44746200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "description": "Fontenay-Trésigny - Mairie;FONTENAY-TRESIGNY - Mairie", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "socket:type2_combo:output": "24 kW", + "ref": "99d9279d-35df-4dde-a92c-770573eb7d34", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77192A;FRS77E77192001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86671300000, + 48.70694100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;47 kW;150 kW", + "ref": "1030653", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "description": "GreenYellow Shift Mobility/60", + "ref:EU:EVSE": "FRGYMP7633749855921700875", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38059300000, + 47.92960500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-27", + "description": "MODULO - FONDETTES - Gustave Eiffel", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E220411;FRS37E220410", + "network": "MODULO - FONDETTES - Gustave Eiffel", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220411;FRS37E220410" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62638510000, + 47.40395902000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "description": "SDE54 CCPSV Dombasle Sur Meurthe - Avenue des Vosges", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "475ee6d1-3562-5cd0-bbd4-a95e21ae222a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35050300000, + 48.60579200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "network": "SARL Rault", + "start_date": "2024-07-04", + "description": "SARL Rault", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com", + "owner:ref:FR:SIREN": "484381462" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82601100000, + 48.28658400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "a589e165-d80e-575c-adf9-f7f20075f4c0", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "description": "MOBIVE | Barbezieux-Saint Hilaire | Place du Champ de Foire", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15813900000, + 45.47045500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLEJUIF - Avenue Jean Jaurès", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-07-08", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE94076007", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36689200000, + 48.78920200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6557975;FRCPIE6557865;FRCPIE6557845;FRCPIE6557825;FRCPIE6557815;FRCPIE6557805;FRCPIE6534445;FRCPIE6557775;FRCPIE6557785;FRCPIE6557795;FRCPIE6557875", + "capacity": "19", + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6557975;FRCPIE6557865;FRCPIE6557845;FRCPIE6557825;FRCPIE6557815;FRCPIE6557805;FRCPIE6534445;FRCPIE6557775;FRCPIE6557785;FRCPIE6557795;FRCPIE6557875", + "operator:email": "info@chargepoint.com", + "description": "SUPER GRANIER BORNE 5", + "start_date": "2022-10-12", + "network": "SUPER GRANIER BORNE 5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96608900000, + 45.56295000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LLRKN2RKAFSWFM", + "operator:email": "roaming@freshmile.com", + "operator": "E.Leclerc | FR*LE2", + "amenity": "charging_station", + "capacity": "1", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P5570521112794039211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1017084" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56467000000, + 45.57434800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "ref": "c9bef216-bf27-5749-aabd-86f353be760d", + "description": "MOBIVE | Canejan | Che de Barbicadge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65425800000, + 44.76348100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2016-02-24", + "ref:EU:EVSE": "FRSEOPAB64023A", + "description": "Réseau AlterBase - Aubigné - Mairie", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14199120000, + 46.05641465000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "start_date": "2023-12-18", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Airbus Saint Martin Parking M65", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRAIRPAIRBUSSTMARTIN313003", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36187400000, + 43.61039800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "BEAUVAIS Bracheux", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3237EVCP01;LFR3237EVCP02;LFR3237EVCP03", + "ref": "LFR3237EVCP01;LFR3237EVCP02;LFR3237EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11450000000, + 49.42357000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-23", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*4*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "NICE - PLACE WILSON RP", + "ref:EU:EVSE": "FRM06PNICE422;FRM06PNICE421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27349600000, + 43.70083600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-25", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ17812;FRA16PWIIZ17811", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*178*1*_*_", + "description": "PIERREFEU - PARKING MAIRIE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09195900000, + 43.86365100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "description": "Freshmile France/YAT1FMSBW0", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5081088101145497118", + "ref": "598104", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84249000000, + 45.73307000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-06-13", + "charging_station:output": "100 kW;50 kW;22 kW;188 kW", + "socket:type2_combo:output": "100 kW;188 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "description": "Bricomarché - Fismes", + "ref:EU:EVSE": "FRPD1PBRCFIM", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66754400000, + 49.30703700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/XUHTK332PH;La Saulce, La Gandière", + "ref": "XUHTK332PH;121568", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPXUHTK332PH", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02653000000, + 44.44290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "capacity": "6", + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPBESJL", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "22 kW;150 kW;11 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "operator": "ELECTRA", + "description": "Besançon - Jardiland" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95496000000, + 47.21982200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOULOUSE - Carnot", + "ref:EU:EVSE": "FRP07E315550101;FRP07E31555010", + "start_date": "2024-03-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45209910000, + 43.60087050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/C4QMLCCH2R;Challes-Les-Eaux, Massettes 1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPC4QMLCCH2R;FREBNP68239401787818356", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346640;C4QMLCCH2R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97174800000, + 45.54572100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "ref": "756939;TVTXY7HIQV", + "ref:EU:EVSE": "FRECHPTVTXY7HIQV;FRECHP9017154618317480040", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge", + "description": "Easy Charge/TVTXY7HIQV;Golbey , Place du 8 mai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43709000000, + 48.19752300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2022-12-30;2023-01-03", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - A2 La Sentinelle Est", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP102107", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47000800000, + 50.33958300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/N4CQ41LAFG", + "operator:email": "roaming@freshmile.com", + "ref": "435135", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5877709625991789002", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61906400000, + 45.85932900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX0910", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "ref": "FR*V75*PPX09*10", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | boulevard Haussmann 6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33877620000, + 48.87231780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/UZAVKETLCQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4547863589221605566", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "370175", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759000000, + 45.35550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Toyota - Montpellier", + "start_date": "2021-06-02", + "ref:EU:EVSE": "FRSSDPMAURINTOYOTA340001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88408700000, + 43.58952400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "SYDED", + "ref": "735261", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25P8915302794585584005", + "charging_station:output": "50 kW;22 kW", + "description": "SYDED/CDMZFUQMXL", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37767100000, + 47.39285500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS18E214910", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MARSEILLES-Lès-Aubigny - Rue du Port", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRS18E214910", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2022-10-20", + "network": "MODULO - MARSEILLES-Lès-Aubigny - Rue du Port" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01394400000, + 47.06731400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78382001", + "start_date": "2022-09-30", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "MAURECOURT - Rue Charles Lehmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06203790000, + 48.99631610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - PARIS - TOUR MAUBOURG", + "ref:EU:EVSE": "FRQPKPQPRK3751;FRQPKPQPRK3741;FRQPKPQPRK3731;FRQPKPQPRK3721;FRQPKPQPRK3711;FRQPKPQPRK37101;FRQPKPQPRK37111;FRQPKPQPRK3761;FRQPKPQPRK3771;FRQPKPQPRK3781;FRQPKPQPRK3791", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2024-02-08", + "ref": "FR*SOD*S*QPRK*37*9*_*_;FR*SOD*S*QPRK*37*8*_*_;FR*SOD*S*QPRK*37*7*_*_;FR*SOD*S*QPRK*37*6*_*_;FR*SOD*S*QPRK*37*1*_*_;FR*SOD*S*QPRK*37*10*_*_;FR*SOD*S*QPRK*37*11*_*_;FR*SOD*S*QPRK*37*2*_*_;FR*SOD*S*QPRK*37*3*_*_;FR*SOD*S*QPRK*37*4*_*_;FR*SOD*S*QPRK*37*5*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30971000000, + 48.86236800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "description": "FONTRIEU - Musée du Protestantisme de Ferrière La Ramade D53", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81062001", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44940940000, + 43.66125130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE409153;FRIOYE409104;FRIOYE409103;FRIOYE409102;FRIONE409200;FRIOYE409101;FRIOYE409151;FRIOYE409152", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "ref:EU:EVSE": "FRIOYE409153;FRIOYE409104;FRIOYE409103;FRIOYE409102;FRIONE409200;FRIOYE409101;FRIOYE409151;FRIOYE409152", + "start_date": "2019-11-15;2019-12-11", + "network": "Langres Noidant;IONITY GMBH", + "description": "Langres Noidant;IONITY Langres Perrogney", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22454000000, + 47.81344500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-07", + "ref:EU:EVSE": "FRS50P50602002", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "CHERBOURG EN COTENTIN (TOURLAVILLE) - Général Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60501900000, + 49.63921100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "start_date": "2023-05-17;2021-01-27", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F7RQ4ZF5QVYGXR1RG90QKZ3X", + "ref:EU:EVSE": "FRS77E77458001;FRS77P77458A", + "description": "Souppes sur Loing;SOUPPES-SUR-LOING - Chemin Des Mariniers", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73093000000, + 48.18083000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080117", + "ref": "FRHPCPNF080117", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-06-21", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681515;531681513;531681516;531681514", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS SARL STATION JOUZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53851500000, + 47.97251800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - VENDOME - Rue des Etats Unis", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VENDOME - Rue des Etats Unis", + "ref:EU:EVSE": "FRS41E235456;FRS41E235457", + "ref": "FRS41E235456;FRS41E235457" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06018100000, + 47.79454800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56P5209978660138791346", + "ref": "529907", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "description": "Mobilité électrique 56/LWQYYRAB2F", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84641600000, + 47.59264900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON19122;FRGLYPLYON19121;FRGLYPLYON19111;FRGLYPLYON19112", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*191*1*_*_;FR*SOD*S*LYON*191*2*_*_", + "socket:type2_combo:output": "24 kW", + "description": "VAV08 - JOSEPH BLEIN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92807600000, + 45.75709600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "419958", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92019C", + "start_date": "2021-07-22", + "description": "Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès;Métropolis/FR*MGP*P92019*C", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25550300000, + 48.76736100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDACITROEN627501", + "description": "Citroën - Lens", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "start_date": "2020-02-12", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80099300000, + 50.44437500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "SAINT ETIENNE DU ROUVRAY - Place Truffaut", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "ref:EU:EVSE": "FRC01E76575003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07362429414, + 49.39800636464 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P3544812118356907227", + "ref": "477768", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/KGVGVFMDMV", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04613700000, + 48.73360200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "a32ff6a0-0146-5eba-a356-96e01ee10d5f", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Izon | Av du Gen de Gaulle | Parking Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36170100000, + 44.91988000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95572003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT OUEN L'AUMONE - Opposé au 14 Chemin de Halage", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-07-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10363800000, + 49.04844800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "15", + "charging_station:output": "0 kW", + "description": "Allego FR, ASF2, AIRE DE LESPIGNAN SUD", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO8007402;FRALLEGO8002652;FRALLEGO8001412;FRALLEGO8001411;FRALLEGO8000742;FRALLEGO8000741;FRALLEGO8000671;FRALLEGO8000672;FRALLEGO8001391;FRALLEGO8001392;FRALLEGO8002651;FRALLEGO8004061;FRALLEGO8004062;FRALLEGO8004063;FRALLEGO8007401", + "network": "Allego FR, ASF2, AIRE DE LESPIGNAN SUD", + "operator:email": "info@allego.eu", + "start_date": "2024-07-25", + "ref": "FRALLEGO8007402;FRALLEGO8002652;FRALLEGO8001412;FRALLEGO8001411;FRALLEGO8000742;FRALLEGO8000741;FRALLEGO8000671;FRALLEGO8000672;FRALLEGO8001391;FRALLEGO8001392;FRALLEGO8002651;FRALLEGO8004061;FRALLEGO8004062;FRALLEGO8004063;FRALLEGO8007401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17466367000, + 43.26408515000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/B3EMG8J6LZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8052512656513536976", + "ref": "892674" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84350700000, + 49.59440500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PCSDTYL4XBB", + "operator:email": "support@evzen.com", + "description": "Auriol, Place Raymond Plumier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63267900000, + 43.36864800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P5691620891903248094", + "description": "SDEY/E7P4WVKFHE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74320600000, + 47.46179500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2018-05-30", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ3312;FRA16PWIIZ3311", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*33*1*_*_", + "charging_station:output": "22 kW", + "description": "BAR SUR LOUP PARKING PLACE DE LA TOUR", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98912700000, + 43.70147300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521300", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ILZU0QWCER", + "ref:EU:EVSE": "FRFR1P977910681314172173", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58479600000, + 43.28824900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking giratoire Souque Nègre SG - La Destrousse 1", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2023-09-14", + "ref:EU:EVSE": "FRPD1PPVCDTS", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60188625401, + 43.38439451651 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLW8YIBIVNR", + "ref": "LW8YIBIVNR", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "TOULON, Avenue de la République - Préfecture maritime", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92914605000, + 43.12156890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1184681", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FREVZP3753710553856734469", + "description": "EVzen/1AF5D34A-799C-43E2-8811-CD593DF2E20E", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92459500000, + 48.04626500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AEROPORTS DE LYON - BRON", + "ref:EU:EVSE": "FROTHPOTHR63321;FROTHPOTHR63311;FROTHPOTHR63312;FROTHPOTHR63322", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*633*1*_*_;FR*SOD*S*OTHR*633*2*_*_", + "start_date": "2023-05-15", + "opening_hours": "24/7", + "network": "AEROPORTS DE LYON", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93742850246, + 45.73075390371 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Saint-Maximin-La-Sainte-Baume, Ch. de la Glacière", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPD9SCVVZETK", + "ref": "D9SCVVZETK", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-10-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86434221000, + 43.45548248000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-05", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNP2195491097684940162;FREBNPSKIDXQPPDJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "369025;SKIDXQPPDJ", + "description": "Yssingeaux, Parking de l'Antreuil;Réseau eborn/SKIDXQPPDJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12283500000, + 45.14450500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2022-03-08", + "description": "UTILE - SAINT-HILAIRE-BONNEVAL", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*328*1*_*_;FR*SOD*S*OTHR*328*2*_*_", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR32811;FROTHPOTHR32821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37496000000, + 45.71610700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/GMKXTSAABQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P860655725690322567", + "ref": "446531", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84526500000, + 42.66333800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1526", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-07", + "ref": "FR*V75*PPX15*26", + "opening_hours": "24/7", + "description": "Paris | Avenue Émile Zola 143", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29530000000, + 48.84720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6338007391346509180", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLIVPCN6Z1ZK33", + "ref": "892239", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95120500000, + 48.75805800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPOUESTBMW229501", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-05-05;2022-06-29", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Saint-Brieuc", + "capacity": "11", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76772700000, + 48.49006600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PTOURNYCENTRE", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900109", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54614600000, + 48.75880300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22107001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Gelven-Parking de la Grande Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09628600000, + 48.22489900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2022-02-28", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BONNIERES-SUR-SEINE - Rue Du Port", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY32E78089003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58473000000, + 49.04048000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE221", + "description": "Sorofi_St_Etienne", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-01-26", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40534060000, + 45.45666140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78020001", + "network": "CPO Alizé Liberté Public", + "description": "ARNOUVILLE LES MANTES - Grande Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72813237517, + 48.90954285681 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Rousset", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE409571;FRIOYE409556;FRIOYE409554;FRIOYE409553;FRIOYE409552;FRIOYE409524;FRIOYE409523;FRIOYE409522;FRIOYE409512;FRIOYE409511;FRIOYE409510;FRIOYE409509;FRIOYE409507;FRIOYE409506;FRIOYE409501;FRIOYE409502;FRIOYE409503;FRIOYE409504;FRIOYE409505;FRIOYE409508;FRIOYE409513;FRIOYE409551;FRIOYE409555;FRIOYE409572;FRIOYE409573;FRIOYE409574", + "capacity": "26", + "description": "Rousset", + "ref": "FRIOYE409572;FRIOYE409571;FRIOYE409556;FRIOYE409554;FRIOYE409553;FRIOYE409523;FRIOYE409522;FRIOYE409511;FRIOYE409510;FRIOYE409509;FRIOYE409507;FRIOYE409506;FRIOYE409501;FRIOYE409502;FRIOYE409503;FRIOYE409504;FRIOYE409505;FRIOYE409508;FRIOYE409512;FRIOYE409513;FRIOYE409524;FRIOYE409551;FRIOYE409552;FRIOYE409555;FRIOYE409573;FRIOYE409574", + "opening_hours": "24/7", + "charging_station:output": "11 kW;50 kW;350 kW;43 kW;22 kW", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2023-06-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64277300000, + 43.47143900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS52P7514520801008643792", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "description": "SDED52/ETNBV1EF5O", + "amenity": "charging_station", + "capacity": "4", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "332222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74571800000, + 47.95144600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SARLABOUS - Moulin Des Baronnies", + "ref:EU:EVSE": "FRS65E65405001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27986000000, + 43.08602000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE004201;FRIENE004202", + "amenity": "charging_station", + "start_date": "2023-02-23", + "ref": "FRIENE004201;FRIENE004202", + "network": "Chazelles sur Lyon", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Chazelles sur Lyon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37123092000, + 45.63432584000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34298001", + "description": "SAUVIAN - Boulevard Charles De Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25630833333, + 43.29165000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "CEAUCE", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-CEAU-001", + "ref:EU:EVSE": "FRS61P61075A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62528300000, + 48.49752200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/O957ZEQDER", + "ref:EU:EVSE": "FRFR1P781719544745391437", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "435141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58587900000, + 47.59171900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "411647", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/VXNBPK", + "ref:EU:EVSE": "FRS31PVXNBPK", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22183000000, + 43.43000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW - Beaurains - zone 2;BMW - Beaurains - zone 1", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPLEMPEREURBMW622172;FRSSDPLEMPEREURBMW622171", + "charging_station:output": "50 kW;22.08 kW", + "capacity": "4;6", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "start_date": "2022-09-14;2020-11-16", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79739900000, + 50.26494800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "start_date": "2022-03-29", + "ref": "FRCG0E000091;FRCG0E000090", + "capacity": "2", + "amenity": "charging_station", + "network": "BMW - ALTITUDE 69 VILLEFRANCHE - 69400 - 1", + "ref:EU:EVSE": "FRCG0E000091;FRCG0E000090", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "BMW - ALTITUDE 69 VILLEFRANCHE - 69400 - 1", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71972000000, + 45.98944000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-10-27", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CAGNES-SUR-MER - PARKING VAL FLEURIE", + "ref:EU:EVSE": "FRM06PNICE10212;FRM06PNICE10211", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*102*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17204600000, + 43.66365500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Villeneuve de Marsan | Place de la Boiterie", + "ref:EU:EVSE": "Non concerné", + "ref": "66080247-c13f-59a2-98e7-ac50f3144cdf", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30290800000, + 43.89185700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE54PYXA", + "description": "BYMYCAR - PONT A MOUSSON", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04021200000, + 48.90904600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS90182;FRBMPS64532;FRBMPS64535;FRBMPS180460;FRBMPS180459", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "ref": "180459;64532;90182;64535;180460", + "operator": "Bump", + "description": "Bump - Monoprix - Croix Rousse", + "charging_station:output": "25 kW;22 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83007090000, + 45.77610750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MORDELLES", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2908EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2908EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83493600000, + 48.08064700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PKSP20MZJOH", + "operator:email": "support@evzen.com", + "description": "Marseille-5E, Boulevard Jean Moulin (Jarret)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40027300000, + 43.28923500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS90PXLLFTL", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "description": "TE90/XLLFTL", + "ref": "232504" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794000000, + 47.74130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "PLACE AVENUE GENERAL DE GAULLE", + "ref:EU:EVSE": "FR55CP83310COGPLACEGD", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P83310*COG*PLACEGD", + "start_date": "2020-01-03", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53369800000, + 43.25185100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLUL6JPN01QK4S", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8641512322484027404", + "ref": "1114824", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13132000000, + 49.35500700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Super U - Rosporden", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYURSP", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-12-11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.84984810000, + 47.96416850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCKVEGB", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "description": "Saint-Martin-La-Plaine, Parking zoo;Réseau eborn/CKVEGB", + "ref": "96077;CKVEGB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58422000000, + 45.54950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "ref:EU:EVSE": "FRFASE33113", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "ref": "FRFASE33113", + "socket:type2_combo:output": "300 kW", + "description": "Fastned Aire de Valmy Le Moulin", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW", + "start_date": "2022-12-14", + "network": "Fastned Aire de Valmy Le Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79009820000, + 49.07371140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "CAVE DE LA BARGEMONE", + "ref:EU:EVSE": "FROTHPSENT55352;FROTHPSENT55351;FROTHPSENT55341;FROTHPSENT55311;FROTHPSENT55321;FROTHPSENT55331", + "start_date": "2023-07-04;2023-06-16", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "ORTEC", + "ref": "FR*SOD*S*SENT*553*3*_*_;FR*SOD*S*SENT*553*2*_*_;FR*SOD*S*SENT*553*1*_*_;FR*SOD*S*SENT*553*4*_*_;FR*SOD*S*SENT*553*5*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34169100000, + 43.60286500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLJK2HESSRK;FREBNP3635585812589299174", + "description": "Sisteron, Allée De Verdun;Réseau eborn/LJK2HESSRK", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "24 kW;22 kW", + "ref": "749442;LJK2HESSRK", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94350000000, + 44.19523200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LFIWEBSSVC", + "ref": "30515", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPLFIWEBSSVC", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72060400000, + 45.92798000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-24", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - SAINT-LYPHARD", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR44521;FROTHPOTHR44511;FROTHPOTHR44512;FROTHPOTHR44522", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*445*1*_*_;FR*SOD*S*OTHR*445*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30401700000, + 47.39504000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "398936", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1978934593798390455", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MV1ZGUGKA7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49200000000, + 47.28050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "setp0100000196", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10064978;FRUBIE10002931", + "description": "UBI-LHSM-048", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41819300000, + 49.54698700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "735165", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "description": "Freshmile France/M4NFTGGIIT", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Su,Tu,Mo,Sa,Fr,We,Th 08:00-22:30", + "ref:EU:EVSE": "FRFR1P138518654561254117" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.02754400000, + 47.57373100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "e9cc0d8a-c69a-5365-a56b-943fac88dbb0", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "description": "Station-service de l'aire de l'Allier Doyet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80077300000, + 46.35553000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Sa 14:00-17:00,Th,Mo,Tu,We,Fr 14:00-18:00,Mo,Tu,We,Th,Fr 08:00-11:00,Sa 09:00-11:00", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P2898743455419837193", + "ref": "752397", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/V7EXT2CMXB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33287500000, + 43.99147100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "1162605", + "description": "MobiSDEC/LLW545C581VBCW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P7971469586037993246", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11562000000, + 49.37280700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Sa 00:00-00:15", + "ref": "576323;576278", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP0095AC;Zephyre/LP009599", + "ref:EU:EVSE": "FRZP1P8802818626104172114;FRZP1P2583378312770147312", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05758500000, + 48.63705200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-04", + "description": "ROQUEFORT-DES-CORBIERES - Rue De La Capelle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11322001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95361111111, + 42.99305560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AUTEUIL LE ROI - Rue des Sablons", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-17", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78034001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81914500000, + 48.84082800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e614b953-81fd-5e69-9040-3ad699fe1e2e", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "CCPHVA - Parking 39 Rue Jules Vallès - Villerupt", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "7.328 kW", + "operator": "51__CCPHVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93010000000, + 49.47148900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66198001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SOURNIA - 159 Le Village", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44265900000, + 42.72604200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIKAPIKEA18591;FRIKAPIKEA18581;FRIKAPIKEA18571;FRIKAPIKEA18561;FRIKAPIKEA185591;FRIKAPIKEA185571;FRIKAPIKEA185561;FRIKAPIKEA185551;FRIKAPIKEA185541;FRIKAPIKEA18551;FRIKAPIKEA185491;FRIKAPIKEA185471;FRIKAPIKEA185461;FRIKAPIKEA185441;FRIKAPIKEA185431;FRIKAPIKEA185381;FRIKAPIKEA185371;FRIKAPIKEA185361;FRIKAPIKEA185351;FRIKAPIKEA185341;FRIKAPIKEA185331;FRIKAPIKEA185321;FRIKAPIKEA185311;FRIKAPIKEA185281;FRIKAPIKEA185261;FRIKAPIKEA185251;FRIKAPIKEA185241;FRIKAPIKEA185231;FRIKAPIKEA185221;FRIKAPIKEA185211;FRIKAPIKEA185191;FRIKAPIKEA185171;FRIKAPIKEA185141;FRIKAPIKEA185121;FRIKAPIKEA185111;FRIKAPIKEA185101;FRIKAPIKEA18471;FRIKAPIKEA18421;FRIKAPIKEA18411;FRIKAPIKEA18431;FRIKAPIKEA18441;FRIKAPIKEA18451;FRIKAPIKEA18461;FRIKAPIKEA18472;FRIKAPIKEA18511;FRIKAPIKEA185131;FRIKAPIKEA185151;FRIKAPIKEA185161;FRIKAPIKEA185181;FRIKAPIKEA185201;FRIKAPIKEA18521;FRIKAPIKEA185271;FRIKAPIKEA185291;FRIKAPIKEA185301;FRIKAPIKEA18531;FRIKAPIKEA185391;FRIKAPIKEA185401;FRIKAPIKEA18541;FRIKAPIKEA185411;FRIKAPIKEA185421;FRIKAPIKEA185451;FRIKAPIKEA185481;FRIKAPIKEA185501;FRIKAPIKEA185511;FRIKAPIKEA185521;FRIKAPIKEA185531;FRIKAPIKEA185581", + "capacity": "1;2", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "description": "IKEA CLERMONT-FERRAND - PARKING COLLABORATEURS;IKEA CLERMONT-FERRAND - PARKING CLIENTS", + "start_date": "2024-04-16;2023-12-11", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IKEA*185*7*_*_;FR*SOD*S*IKEA*185*59*_*_;FR*SOD*S*IKEA*185*58*_*_;FR*SOD*S*IKEA*185*53*_*_;FR*SOD*S*IKEA*185*52*_*_;FR*SOD*S*IKEA*185*5*_*_;FR*SOD*S*IKEA*185*48*_*_;FR*SOD*S*IKEA*185*47*_*_;FR*SOD*S*IKEA*185*46*_*_;FR*SOD*S*IKEA*185*45*_*_;FR*SOD*S*IKEA*185*39*_*_;FR*SOD*S*IKEA*185*38*_*_;FR*SOD*S*IKEA*185*37*_*_;FR*SOD*S*IKEA*185*35*_*_;FR*SOD*S*IKEA*185*32*_*_;FR*SOD*S*IKEA*185*3*_*_;FR*SOD*S*IKEA*185*27*_*_;FR*SOD*S*IKEA*185*26*_*_;FR*SOD*S*IKEA*185*24*_*_;FR*SOD*S*IKEA*185*23*_*_;FR*SOD*S*IKEA*185*22*_*_;FR*SOD*S*IKEA*185*21*_*_;FR*SOD*S*IKEA*185*2*_*_;FR*SOD*S*IKEA*185*20*_*_;FR*SOD*S*IKEA*185*18*_*_;FR*SOD*S*IKEA*185*1*_*_;FR*SOD*S*IKEA*185*10*_*_;FR*SOD*S*IKEA*184*7*_*_;FR*SOD*S*IKEA*184*6*_*_;FR*SOD*S*IKEA*184*5*_*_;FR*SOD*S*IKEA*184*2*_*_;FR*SOD*S*IKEA*184*1*_*_;FR*SOD*S*IKEA*184*3*_*_;FR*SOD*S*IKEA*184*4*_*_;FR*SOD*S*IKEA*185*11*_*_;FR*SOD*S*IKEA*185*12*_*_;FR*SOD*S*IKEA*185*13*_*_;FR*SOD*S*IKEA*185*14*_*_;FR*SOD*S*IKEA*185*15*_*_;FR*SOD*S*IKEA*185*16*_*_;FR*SOD*S*IKEA*185*17*_*_;FR*SOD*S*IKEA*185*19*_*_;FR*SOD*S*IKEA*185*25*_*_;FR*SOD*S*IKEA*185*28*_*_;FR*SOD*S*IKEA*185*29*_*_;FR*SOD*S*IKEA*185*30*_*_;FR*SOD*S*IKEA*185*31*_*_;FR*SOD*S*IKEA*185*33*_*_;FR*SOD*S*IKEA*185*34*_*_;FR*SOD*S*IKEA*185*36*_*_;FR*SOD*S*IKEA*185*40*_*_;FR*SOD*S*IKEA*185*4*_*_;FR*SOD*S*IKEA*185*41*_*_;FR*SOD*S*IKEA*185*42*_*_;FR*SOD*S*IKEA*185*43*_*_;FR*SOD*S*IKEA*185*44*_*_;FR*SOD*S*IKEA*185*49*_*_;FR*SOD*S*IKEA*185*50*_*_;FR*SOD*S*IKEA*185*51*_*_;FR*SOD*S*IKEA*185*54*_*_;FR*SOD*S*IKEA*185*55*_*_;FR*SOD*S*IKEA*185*56*_*_;FR*SOD*S*IKEA*185*57*_*_;FR*SOD*S*IKEA*185*6*_*_;FR*SOD*S*IKEA*185*8*_*_;FR*SOD*S*IKEA*185*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13882500000, + 45.80384260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35238008B1", + "description": "RENNES - 1 rue maurice le lannou ", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71357300000, + 48.11494100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Brassac-Les-Mines - Charles Souligoux", + "start_date": "2023-01-19", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRS63P63050B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33076190000, + 45.41311220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8479876921461552176", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/R6EKEKG2QM", + "ref": "419142" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52771000000, + 46.67170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Roulez Électrique En Haute-Garonne/LLNBOSC1ADBQLS", + "capacity": "2", + "amenity": "charging_station", + "ref": "1009236", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS31P5300143137145925395", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12060800000, + 43.16738300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NOISY-LE-SEC - Rue Henry Espaullard", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE93053002", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46832950000, + 48.90234620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AKF - 76350 - 1", + "description": "AKF - 76350 - 1", + "ref:EU:EVSE": "FRCG0E000989;FRCG0E000988", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCG0E000989;FRCG0E000988", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-05-10", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09099700000, + 49.33851620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE22411;FRM06PNICE22412", + "start_date": "2023-06-12", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "DRAP - PARKING JACQUES PREVERT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*224*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33186709513, + 43.77032569091 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Sainte Bazeille | Place Docteur Belot | Gauche", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "80c14999-bdbf-50db-b703-b1ed9da396b7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09553300000, + 44.53037300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*365*1*_*_", + "start_date": "2023-03-01", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - 7 ROUTE DE PIERRELAYE COMPLEXE DES SPORTS DES BEAUREGARDS - HERBLAY-SUR-SEINE", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE36512;FRSIGPSIGE36511", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15787000000, + 49.00250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ELBEUF - Fabrique des Savoirs", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76231002", + "charging_station:output": "22 kW", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00657700000, + 49.28481100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3419EVCP02;LFR3419EVCP03", + "description": "SARRE UNION Phalsbourg", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3419EVCP02;LFR3419EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09061800000, + 48.93376800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f8869118-fcb5-5f3d-9a60-b7bd50ceeab7;FR*SOD*S*MB33*175*1*_*_", + "start_date": "2023-04-11", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS33PMB3317512;Non concerné;FRS33PMB3317511", + "owner:ref:FR:SIREN": "253303473", + "description": "MOBIVE | Soulac-Sur-Mer | Parking du Marche;SOULAC-SUR-MER - PARKING DU MARCHE", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12376600000, + 45.51346300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82P752657774956850609", + "ref": "369031", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/NTXBJ7UOFO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31754400000, + 44.15516900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P84270*VDN*EGU1LLES", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "AVENUE DE L'EGUILLE - VEDENE", + "start_date": "2023-03-03", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP84270VDNEGU1LLES", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89698400000, + 43.98644500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3757EVCP02;LFR3757EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "SAINT MEEN LE GRAND Pasteur", + "ref:EU:EVSE": "LFR3757EVCP02;LFR3757EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17211400000, + 48.18884600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMISM", + "start_date": "2023-01-18", + "description": "Intermarché - Isigny-sur-Mer", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09842357288, + 49.31309763435 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Enchastrayes, Le Sauze;Réseau eborn/JZZ4ARDOAD", + "ref:EU:EVSE": "FREBNP8472214079719109684;FREBNPJZZ4ARDOAD", + "ref": "346781;JZZ4ARDOAD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68076200000, + 44.37416200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122T", + "description": "e-Totem - BIARRITZ Avenue de la Marne", + "ref:EU:EVSE": "FRETIP64122T" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55599063421, + 43.48415481068 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "1", + "description": "Chaussea - Échirolles", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRPD1PCHAECH", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69431421832, + 45.15018209531 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "description": "Carrefour Market Tournus Résistance", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT717001", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90504500000, + 46.56473000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPWAMVO", + "start_date": "2024-07-30", + "network": "ELECTRA", + "capacity": "4", + "description": "Wambrechies - Volfoni", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06195200000, + 50.68527600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-11", + "ref": "FR*SOD*S*OTHR*564*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "INTERMARCHE - LANTON", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR56411;FROTHPOTHR56412", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03886300000, + 44.70250300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-13", + "ref:EU:EVSE": "FRCPIE6752235;FRCPIE6752245", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRCPIE6752235;FRCPIE6752245", + "charging_station:output": "22 kW", + "description": "SONEPAR MONDEVILLE 2", + "network": "SONEPAR MONDEVILLE 2", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33266400000, + 49.17908000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1163062087945982678", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BM1NPADH8L", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "597741", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86244600000, + 46.78386300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9003*01", + "description": "Paris | Rue Réaumur 5", + "ref:EU:EVSE": "FRV75P900301", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35904300000, + 48.86471900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "578873", + "description": "Freshmile France/GDX3BISWCW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1648525033222140727" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71875400000, + 45.97819800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Orange", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP1759", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85175900000, + 44.11216400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/KVY9BPSSNH", + "operator:email": "roaming@freshmile.com", + "ref": "370127", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P4367761592924770927", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65961000000, + 48.93650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR0NXPOOLKYPYQ", + "network": "PRINGY POIDS LOURDS VOLVO", + "description": "Pringy poids lourds", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12645800000, + 45.93733800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "457560", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2262372947699659038", + "description": "MobiSDEC/SWIRJOHWIU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25718600000, + 49.27766800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PONT DE SALARS - Route De Rodez", + "ref:EU:EVSE": "FRS12E12185001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-07-20;2021-07-19", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71734500000, + 44.28800700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "932070", + "ref:EU:EVSE": "FRWA5P3613161232547800378", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA5LYSODGRFL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37044400000, + 48.68966800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MARTIN-DU-FOUILLOUX - Parking Mairie;OuestCharge - Diva Sp - Saint-Martin-du-Fouilloux - Mairie", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-14;2024-04-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49306A;FRS49E49306001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70342900000, + 47.43148800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-29;2024-03-30;2024-03-31", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8107900111;FRS81E8107900112;FRS81E8107900113", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "DENAT - Rue des remparts", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20504600000, + 43.84712200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS CCHPB", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "4_AM0003_CCHPB", + "ref": "8bdaf235-20e9-52a4-ae06-fa6fb0286cdf", + "description": "Centre ville de Falck - Falck" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63747500000, + 49.22251200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS46E46042002", + "description": "CAHORS - Allées des soupirs", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2021-05-25;2021-11-03", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43408107052, + 44.44275818954 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS63P63470B", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Volvic - Centre historique", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04223102000, + 45.87167589000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAULTAIN - Place Vaillant Couturier", + "ref:EU:EVSE": "FRH03E59557001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57824300000, + 50.33613600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2919300", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Plougourvest-D35", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08561800000, + 48.55390500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NOGENT SUR MARNE - Rue Du Port", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94052002", + "start_date": "2021-09-02;2021-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48960000000, + 48.83310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2024-01-23;2024-01-22", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP90171121", + "description": "ENGIE Vianeo - B&B Hôtel Bordeaux Lac sur Bruges", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59445000000, + 44.88795000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "3c441861-ba87-5b50-b265-b222522e95a2", + "description": "MOBIVE | Domme | L'Esplanade (Parking) | Rue du Repos", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21471000000, + 44.80370300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*470*1*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE47011;FRSIGPSIGE47012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 13 ALLEE DES TILLEULS - TREMBLAY-EN-FRANCE", + "start_date": "2024-03-18", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55649760000, + 48.97964680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9009612;FRALLEGO9009611;FRALLEGO9009602;FRALLEGO9009601;FRALLEGO9005822;FRALLEGO9005821;FRALLEGO9006921;FRALLEGO9006922", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Sens Maillot", + "start_date": "2024-05-25", + "network": "Allego Carrefour Sens Maillot", + "ref": "FRALLEGO9009612;FRALLEGO9009611;FRALLEGO9009601;FRALLEGO9005822;FRALLEGO9005821;FRALLEGO9006921;FRALLEGO9006922;FRALLEGO9009602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30301900000, + 48.18834300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3797EVCP03", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3797EVCP03", + "charging_station:output": "22 kW", + "description": "PLEYBEN - Kerflouz", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97490000000, + 48.22059700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "5303b5d9-3023-5b6f-98c6-8d2023287635", + "opening_hours": "24/7", + "description": "MOBIVE | Urt | Place du Marche", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29228400000, + 43.49444600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85046001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LA CHAIZE-LE-VICOMTE - Place Du Marché", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29272000000, + 46.67211900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Allego", + "charging_station:output": "0 kW;150 kW", + "amenity": "charging_station", + "operator:email": "info@allego.eu;info.allego.france@allego.eu", + "ref:EU:EVSE": "FRALLEGO8007691;FRALLEGO8001992;FRSITE00000211;FRALLEGO8001981;FRALLEGO8001982;FRALLEGO8001991;FRALLEGO8007681;FRALLEGO8007682;FRALLEGO8007692", + "socket:type2_combo:output": "0 kW;150 kW", + "opening_hours": "24/7", + "capacity": "2;8", + "ref": "FRALLEGO8007691;FRALLEGO8001991;FRALLEGO8001981;FRALLEGO8001982;FRALLEGO8001992;FRALLEGO8007681;FRALLEGO8007682;FRALLEGO8007692", + "owner:ref:FR:SIREN": "842718512", + "network": "ALLEGO;Allego FR, Tikehau, TJ2 Epinal - Golbey", + "start_date": "2024-06-26", + "description": "TIKEAU - Epinal;Allego FR, Tikehau, TJ2 Epinal - Golbey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42068100000, + 48.19271300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3660EVCP02;LFR3660EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "GANNAT Capucins", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3660EVCP02;LFR3660EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19627600000, + 46.10475800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "KFC - Saint Etienne Villars", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-02-27", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PKFCVLR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34830943450, + 45.47640197880 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-03-13", + "capacity": "4", + "ref": "XKCZXBQX77;757023", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPXKCZXBQX77;FREBNP1587669311899568373", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/XKCZXBQX77;Hyères, Parking Tour Fondue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15396600000, + 43.03009500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Groupe Chopard Peugeot Orange", + "ref:EU:EVSE": "FREVMP6344;FREVMP5658", + "capacity": "2", + "network": "Chopard Peugeot Orange", + "operator": "EV MAP SAS", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2024-05-24", + "opening_hours": "Mo-Fr 08:00-19:01;Mo-Fr 08:00-19:00", + "operator:email": "contact@evmap.fr", + "owner:ref:FR:SIREN": "388424012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83824420000, + 44.11873590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-08-02;2023-11-28", + "ref:EU:EVSE": "FRPD1PETXBRT", + "opening_hours": "24/7", + "capacity": "9", + "description": "Kiabi - Barentin", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96911205347, + 49.53114422163 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Toulouse", + "network": "Tibal Automobiles", + "owner:ref:FR:SIREN": "804180636", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-09-28", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "ref": "03cf2e82-ede9-11ee-a951-0242ac120002", + "ref:EU:EVSE": "FRE000055439416" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49804000000, + 43.84548000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB - RUE ETIENNE BOISSON", + "start_date": "2023-12-07", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "ref:EU:EVSE": "FRESEPS42218BU", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRESEPS42218BU", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38326653906, + 45.44448529582 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "SOCIETE ALORIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-19", + "ref": "FR*SOD*S*OTHR*12*1*_*_", + "operator:email": "sav@izivia.com", + "network": "TIERS", + "ref:EU:EVSE": "FROTHPOTHR1211;FROTHPOTHR1212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12849800000, + 48.65705500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6924455", + "capacity": "2", + "amenity": "charging_station", + "description": "CARREFOUR BORNE 1", + "opening_hours": "24/7", + "ref": "FRCPIE6924455", + "charging_station:output": "22 kW", + "network": "CARREFOUR BORNE 1", + "operator:email": "info@chargepoint.com", + "start_date": "2024-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28913900000, + 50.45894800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PGFWJEG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "102284", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/GFWJEG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88124000000, + 49.47770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL BOULOGNE-SUR-MER", + "start_date": "2024-03-22", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64244600000, + 50.72593200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "34", + "network": "Freshmile France", + "description": "Freshmile France/VPRTPNJNDC", + "ref": "782394", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3408677310955987691" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85648200000, + 49.11066300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-10;2023-11-06", + "network": "DRIVECO", + "charging_station:output": "50 kW;22.08 kW;150 kW", + "description": "Volkswagen Reims PDL1;Volkswagen Reims PDL2", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;150 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00;24/7", + "ref:EU:EVSE": "FRSSDPEMILFREY511003;FRSSDPEMILFREY511002", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08070200000, + 49.23722400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "1069323", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7016958149746048703", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/G0NEIU9I2N" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08063000000, + 45.93790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "network": "MODULO - BOISVILLE LA ST PERE - Pl. République", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BOISVILLE LA ST PERE - Pl. République", + "ref": "FRS28E129052", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E129052" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69377000000, + 48.32822000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461646", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P7083821145410777766", + "description": "MobiSDEC/ATTXYEMZSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35974100000, + 49.20365800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "ref:EU:EVSE": "FRWA9P1146687265338623864", + "ref": "1128078", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA6LOITFRANF", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84786000000, + 46.95370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-01-04", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50290002", + "description": "CERENCES - ZA Intermarche", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44014860000, + 48.91242790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "description": "PUYLAURENS - Place Du Foirail", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2017-03-10", + "ref:EU:EVSE": "FRS81E8121900122;FRS81E8121900121;FRS81E8121900112;FRS81E8121900111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01382558775, + 43.57078413199 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRHPCPNF063007", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF063007", + "owner:ref:FR:SIREN": "531681848;531681847;531681846;531681845;531681849;531681850", + "opening_hours": "24/7", + "description": "RELAIS DIEPPE DUQUESNE", + "network": "TotalEnergies Charge Rapide", + "start_date": "2024-04-25", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07590000000, + 49.90810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ANGERS - Rue Turpin de Crisse", + "ref:EU:EVSE": "FRS49E49007003", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55407400000, + 47.46503700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/clermontwenc", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "46621", + "ref:EU:EVSE": "FRS60PCLERMONTWENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39911000000, + 49.38760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "DAINVILLE - allée du 8 mai 1945", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH06E62263001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73040800000, + 50.28261600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "AUJAC - Parking Tennis", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30022001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01257800000, + 44.34719700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/UXSADP", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PUXSADP", + "opening_hours": "24/7", + "ref": "25081", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97227000000, + 47.95770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "NVH", + "start_date": "2024-02-01", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "972626373", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "0", + "operator:email": "supervision@nvh-france.fr", + "description": "AUTO24", + "ref:EU:EVSE": "FRLMSE1234606461", + "network": "AUTO24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79000000000, + 48.06000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref": "894060", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93063D", + "start_date": "2023-10-20", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "description": "Métropolis/FR*MGP*P93063*D;Metropolis - Citadine - Romainville - Jean Jaurès", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44005800000, + 48.88177300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSGAP1M2018", + "operator": "SGA Industries", + "opening_hours": "Mo-Fr 08:00-18:00", + "amenity": "charging_station", + "start_date": "2021-07-16", + "capacity": "3", + "description": "M2018", + "charging_station:output": "22 kW;1.7 kW", + "operator:email": "contact@sga-automation.com", + "network": "Réseau de recharge Brasserie Castelain", + "owner:ref:FR:SIREN": "315255752" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83159900000, + 50.48556100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAU1E0020", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "450015250", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "ref": "555724", + "operator:email": "m.drif@autorecharge.fr", + "network": "AUTORECHARGE SAS", + "start_date": "2022-05-01", + "operator": "AUTORECHARGE SAS", + "description": "Fasthôtel compiègne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77370505338, + 49.40885526411 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2023-02-08", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89370722", + "description": "ENGIE Vianeo - A31 Saint-Rémy", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17650400000, + 49.17979600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Razes | Maison du lac", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "142a5c85-e6e2-5051-98cd-1f06d5ca20eb", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29897900000, + 46.03428900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "ref": "FRS88E161845;FRS88E161847", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - HADOL - Pl. VIVIN", + "amenity": "charging_station", + "network": "MODULO - HADOL - Pl. VIVIN", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS88E161845;FRS88E161847", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47679000000, + 48.09050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9008222;FRALLEGO9008221;FRALLEGO9008102;FRALLEGO9008101;FRALLEGO9001542;FRALLEGO9001241;FRALLEGO9000881;FRALLEGO9000882;FRALLEGO9001242;FRALLEGO9001541", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9008222;FRALLEGO9008102;FRALLEGO9008101;FRALLEGO9001542;FRALLEGO9001241;FRALLEGO9000881;FRALLEGO9000882;FRALLEGO9001242;FRALLEGO9001541;FRALLEGO9008221", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Lormont", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "10", + "start_date": "2024-06-26", + "network": "Allego Carrefour Lormont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51578100000, + 44.86564600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LUISANT Leclerc", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3561EVCP02;LFR3561EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3561EVCP02;LFR3561EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46124400000, + 48.42903000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Marseille-13E, Rue Frédéric Joliot Curie", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PER6BQRZZTP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43615200000, + 43.34268100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/WCGRDIRD61", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "31612", + "ref:EU:EVSE": "FREBNPWCGRDIRD61" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24048800000, + 45.50049800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1009227", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/YGXPQ4OBFO", + "ref:EU:EVSE": "FRFR1P8714879272268816740", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35705800000, + 48.61943100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Retail Park - Dijon", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-05-03;2023-05-16", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIMCDIJ", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02967770000, + 47.35484710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/UGZUCTHE6K", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPUGZUCTHE6K", + "ref": "30125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52714700000, + 45.03263800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP5443075752990432561", + "opening_hours": "Sa,Su,We,Tu,Fr,Mo,Th 08:00-18:00", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "ref": "1128294", + "operator": "Road | FR*EFL", + "description": "Road/667a85a8335f3d001c908eb4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26730000000, + 48.84927200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-03-08", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*248*3*_*_;FR*SOD*S*OTHR*248*1*_*_;FR*SOD*S*OTHR*248*2*_*_", + "network": "HOTEL ESTELOU", + "opening_hours": "24/7", + "description": "HOTEL ESTELOU - SOMMIERES", + "ref:EU:EVSE": "FROTHPOTHR24821;FROTHPOTHR24811;FROTHPOTHR24831", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09304800000, + 43.77776400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6600955;FRCPIE6600945", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "U FAULQUEMONT BORNE 1", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08", + "ref:EU:EVSE": "FRCPIE6600955;FRCPIE6600945", + "network": "U FAULQUEMONT BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59294000000, + 49.04916800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RCACXZCBUQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1095717014454983243", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "541844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39676700000, + 48.27342000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA2P6121804002852184739", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "description": "WAAT/s477608", + "opening_hours": "24/7", + "ref": "1116318", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36814400000, + 48.90322300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLMYJVY8JNTD3B", + "ref:EU:EVSE": "FRFR1P700876886277184932", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "971888", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82276300000, + 46.29846800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1234601958;1234601957", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 2x22 BSM SUPER U B;ALFEN 2x22 BSM SUPER U A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2023-11-20", + "ref:EU:EVSE": "FRSWSE1234601957;FRSWSE1234601958", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78101000000, + 45.62398800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "674267", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4334107323023462368", + "opening_hours": "24/7", + "description": "Freshmile France/V43HVYP7PY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40096800000, + 49.04458800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2023-11-06", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Gamm Vert - Villeneuve sur Lot", + "ref:EU:EVSE": "FRSSDPGAMMVERT473001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69208000000, + 44.40576900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E240691", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - ARROU - Rue du docteur Vaisbuch", + "operator": "Modulo", + "ref": "FRS28E240691", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ARROU - Rue du docteur Vaisbuch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12391900000, + 48.09851400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "description": "Montaigut Le Boulval", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "ref": "d3c00913-8774-4df3-8c07-97b5c596db39", + "operator:email": "hello@weecharge.fr", + "start_date": "2021-07-01", + "owner:ref:FR:SIREN": "902305556", + "operator": "WeeCharge", + "network": "WeeCharge", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80662020000, + 46.18150930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P229960672372808927", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/CVPP0IT0WU", + "ref": "39716" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93559200000, + 48.47726500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LE006E71", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "17 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P1742094429115939349", + "ref": "576053", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48218800000, + 47.40547200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-03", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE597", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265926;839265925", + "operator": "RossiniEnergy", + "description": "Sorofi_Le_Puy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90994730000, + 45.04641240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "49015", + "operator:email": "roaming@freshmile.com", + "description": "SDE82/moissac", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRS82PMOISSAC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08475000000, + 44.10020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - BRIVE-LA-GAILLARDE", + "ref:EU:EVSE": "FRIZFPFAST12913;FRIZFPFAST12912;FRIZFPFAST12911;FRIZFPFAST12921;FRIZFPFAST12922;FRIZFPFAST12923", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref": "FR*SOD*S*FAST*129*1*_*_;FR*SOD*S*FAST*129*2*_*_", + "capacity": "3", + "start_date": "2024-07-31;2024-07-16", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48179070000, + 45.14667240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BLOIS - Pl. Jacques Lob", + "description": "MODULO - BLOIS - Pl. Jacques Lob", + "ref:EU:EVSE": "FRS41E4383;FRS41E4384", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E4383;FRS41E4384", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33349900000, + 47.58445700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/genevieve", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS60PGENEVIEVE", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "38782", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20105000000, + 49.28880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY807 - GRAND TROU", + "start_date": "2020-09-09", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4822;FRGLYPLYON4811;FRGLYPLYON4812;FRGLYPLYON4821", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*48*2*_*_;FR*SOD*S*LYON*48*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85209300000, + 45.73732400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30258001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "SAINT GILLES - Parking Rue Rivet", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43014200000, + 43.67498600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25075", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PCNAHPN", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/CNAHPN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83354000000, + 47.85570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLUMECABRIESGOLF11", + "capacity": "3", + "ref": "5c0bb6f0-a629-11ed-afa1-0242ac120002", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "description": "CABRIES GOLF DEVELOPPEMENT", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37031550000, + 43.42159700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref": "511169", + "capacity": "7", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMW1P3964943507224918592", + "description": "Mobilygreen CPO/ebc9d159-8d0b-4a6f-bcd9-0a930d528279", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29370000000, + 46.95470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE18012;FRSIGPSIGE18011", + "ref": "FR*SOD*S*SIGE*180*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - RUE GEORGES BONNEFOUS - SEVRES", + "start_date": "2021-08-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21316800000, + 48.82156200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001554;FRCG0E001552;FRCG0E001551;FRCG0E001553", + "charging_station:output": "22 kW;100 kW;300 kW", + "amenity": "charging_station", + "start_date": "2023-06-07", + "capacity": "4", + "description": "Espace 3000 - Groupe Cassard - Volkswagen Sausheim - 25000", + "opening_hours": "24/7", + "network": "Espace 3000 - Groupe Cassard - Volkswagen Sausheim - 25000", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRCG0E001552;FRCG0E001551;FRCG0E001553;FRCG0E001554", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38993369000, + 47.77769111000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Besançon Châteauf.", + "ref:EU:EVSE": "FRLMSP89899418", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94324400000, + 47.21654000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "dabd3ac4-3e4e-5314-939f-c663a213ed21;FR*SOD*S*MB40*82*1*_*_", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-05-28", + "ref:EU:EVSE": "FRS40PMB408213;Non concerné;FRS40PMB408211;FRS40PMB408212;FRS40PMB408214", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "description": "SAINT PAUL LES DAX - RUE ANDRE FOURCADE;MOBIVE | Saint Paul les Dax | Rue André Fourcade", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05209600000, + 43.72305700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE77MXXA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "MEAUX - Square A Comté" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89985600000, + 48.94851100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSFCHVI", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-07-18", + "description": "FRANCHEVILLE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77412600000, + 45.73353100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3000EVCP01;LFR3000EVCP02", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3000EVCP01;LFR3000EVCP02", + "description": "LURE Belfort" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50967000000, + 47.67371300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTPELLIER - Avenue Du Marche Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34172006", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87921600000, + 43.58586600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-20", + "ref:EU:EVSE": "FREBNPVUW4OJTP6F;FREBNP362419732260374423", + "ref": "466332;VUW4OJTP6F", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Vichy, Place de l'Hotel de Ville;Réseau eborn/VUW4OJTP6F", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42901000000, + 46.12431000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "971945", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLOHABMKEPEN5D", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4397682916790343915", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90850500000, + 46.96448200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-12-08;2023-01-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "10", + "ref:EU:EVSE": "FRP07E85194001;FRP07E851940011", + "description": "SABLES d'OLONNE - Amiral Vaugiraud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78203670000, + 46.49955790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "812178;QG7UM9UESA", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "ref:EU:EVSE": "FREBNPQG7UM9UESA;FREBNP5450996600752974933", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Annonay, Place Du Champ De Mars;Réseau eborn/QG7UM9UESA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66805700000, + 45.24230300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPGOUPC", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-12-15", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "description": "Gouesnou - Hôtel Première Classe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46231600000, + 48.43211400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "5", + "ref:EU:EVSE": "FRP01E77108001", + "charging_station:output": "7 kW", + "description": "Parking gare de Chelles P+R - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58251340000, + 48.87379850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6633865;FRCPIE6633855", + "start_date": "2023-06-03", + "description": "BORNE ROCBARON BORNE 2", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6633865;FRCPIE6633855", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "BORNE ROCBARON BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07839400000, + 43.31561400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHPX7EOR3LLXV", + "operator": "Easycharge services", + "description": "La Roche sur Yon 1 , Action", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "X7EOR3LLXV", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43123800000, + 46.70393996000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Place Charles Fillion 22", + "ref": "FR*V75*PPX17*03", + "network": "Belib'", + "start_date": "2021-07-07", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1703", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31606030000, + 48.88844560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20927400000, + 49.97159930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/NBMZWT", + "ref:EU:EVSE": "FRFR1PNBMZWT", + "operator": "Freshmile | FR*FR1", + "ref": "294419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43771400000, + 49.05467400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP01313", + "amenity": "charging_station", + "start_date": "2023-04-17", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "capacity": "4", + "opening_hours": "24/7", + "network": "HOTEL AUX DUCS DE SIENNE", + "description": "HOTEL AUX DUCS DE SIENNE", + "ref": "FRTCBP01313", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12884207301, + 44.93076715074 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4041603129629415588", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "398858", + "description": "Freshmile France/DFTKIZHXBB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59240000000, + 47.36730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPAXXIABMW360001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-06-07", + "description": "BMW - Chateauroux", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71512800000, + 46.79297700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Loctudy-Place des Anciens Combattants", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2913500", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.17493300000, + 47.83243900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-02", + "description": "CUXAC D'AUDE - Rue Du Docteur Ferroul", + "ref:EU:EVSE": "FRS11E11116001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99997031689, + 43.24649221444 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "314684572", + "start_date": "2023-01-11", + "network": "Ford Agen- Groupe Malbet", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZPEE172798;FRZPEE175425", + "ref": "E172798;E175425", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Lu- Sa 09:00-19:00", + "operator": "ZEborne", + "description": "FORD AGEN EXT;FORD AGEN EXT " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62334904214, + 44.18091275932 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA BASTIDE DE SEROU - Eco Golf", + "start_date": "2022-05-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09042002", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46831100000, + 43.02267900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64688", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/stvalerystpier", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PSTVALERYSTPIER", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63651000000, + 50.18360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref": "FR*SOD*S*FAST*274*3*_*_;FR*SOD*S*FAST*274*1*_*_;FR*SOD*S*FAST*274*2*_*_", + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "amenity": "charging_station", + "start_date": "2024-08-12", + "ref:EU:EVSE": "FRIZFPFAST27431;FRIZFPFAST27411;FRIZFPFAST27412;FRIZFPFAST27413;FRIZFPFAST27421;FRIZFPFAST27422;FRIZFPFAST27423;FRIZFPFAST27432;FRIZFPFAST27433", + "description": "IZIVIA FAST - MCDONALDS - VIGNEUX DE BRETAGNE", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74365120000, + 47.29296580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-19;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44046A;FRS44E44046001", + "description": "OuestCharge - Diva Sp - Corsept - D 77;CORSEPT - D 77" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05662700000, + 47.27916000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-05-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS77E77131002", + "description": "COULOMMIERS - Avenue Victor Hugo - AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08236240000, + 48.81507700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "network": "Pichet le stadium BAT C", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGSPP1000085917", + "charging_station:output": "22 kW", + "description": "Pichet le stadium BAT C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65534080180, + 44.77404222798 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E220187;FRS37E220183", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - CANGEY – Rue de Château Renault", + "network": "MODULO - CANGEY – Rue de Château Renault", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220187;FRS37E220183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05954900000, + 47.46819359000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Rehainviller", + "ref": "11d62f98-2f4b-5d84-85ea-29b0131742b0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46806400000, + 48.56234600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "UAB", + "amenity": "charging_station", + "capacity": "4", + "description": "UAB", + "start_date": "2022-01-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P85089A", + "ref": "FRG10P85089A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32770000000, + 46.71790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0a6a05a0-5d2b-5296-be50-3d9416fa10c4", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "description": "MOBIVE | BAZAS | Parking Polyèdre", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21508600000, + 44.43138000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068025", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-03-20", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Politzer", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46899000000, + 48.81090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:30-17:30,Tu 07:30-17:30,We 07:30-17:30,Th 07:30-17:30,Fr 07:30-16:30", + "start_date": "2023-06-13", + "ref:EU:EVSE": "FRCPIE6517135", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6517135", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR GIEN", + "description": "SONEPAR GIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62555500000, + 47.70764100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P8852861056892182429", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892701", + "description": "Leclerc/LLJIJ0TTT18I05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03791800000, + 49.51315100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Sarliac Sur L'Isle | Parking Rue du Stade", + "network": "CPO CITEOS Mobive", + "ref": "1bd29f9e-9886-5f50-b210-cc055cc7dbd2", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87365300000, + 45.23585500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB35114A", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Ménigoute - Mairie " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05695068000, + 46.49725688000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS313006", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Airbus - Marignane - parking V2", + "charging_station:output": "22.08 kW", + "start_date": "2023-02-20;2023-03-03", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23195000000, + 43.43158700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3210EVCP01;LFR3210EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "VILLENEUVE SUR YONNE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3210EVCP01;LFR3210EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29598200000, + 48.09020300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Orléans Métropole/MH4YHU6SK6", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "414762", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref:EU:EVSE": "FRM45P886663719030057302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90468600000, + 47.90287600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-11", + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*151*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ15112;FRA16PWIIZ15111", + "description": "ANTIBES - PARKING FORT CARRE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12429000000, + 43.58949900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,We,Th,Mo,Tu 07:00-19:00", + "ref:EU:EVSE": "FRFR1P1044507765883683282", + "description": "Freshmile France/FPMK6CLAK8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "578870" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.80567000000, + 48.80111100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Bricomarché - Carhaix-Plouguer", + "amenity": "charging_station", + "start_date": "2023-06-06", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PBCMCRX", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.57084646299, + 48.27062388303 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Annemasse, Rue de la Bruyère", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPSFUJIVKVOR", + "ref": "SFUJIVKVOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25013810000, + 46.19575040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2024-10-09", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "Nîmes - CC Family Village", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPNIMFV", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36520500000, + 43.80882200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-01;2023-12-08", + "network": "INDIGO FRANCE", + "description": "MARSEILLE - Bourse", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "74", + "ref:EU:EVSE": "FRP07E132020052;FRP07E132020051;FRP07E13202005;FRP07E132020053;FRP07E132020054;FRP07E132020055;FRP07E132020056;FRP07E132020057" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37500740000, + 43.29705020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6700485;FRCPIE6700465;FRCPIE6700495", + "start_date": "2023-06-01", + "amenity": "charging_station", + "network": "SUPER U SABLE BORNE 3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U SABLE BORNE 3", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6700485;FRCPIE6700465;FRCPIE6700495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35250300000, + 47.85154600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "YSXIGR3DN1;749280", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "GAP , Parking Muret;Easy Charge/YSXIGR3DN1", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPYSXIGR3DN1;FRECHP7777012854918149983" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07536600000, + 44.55633400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - A11 Brou-Dampierre", + "ref:EU:EVSE": "FRVIAP103110", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2022-12-14;2023-02-08", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08259200000, + 48.23933800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/GXS4W24ADV", + "capacity": "2", + "amenity": "charging_station", + "ref": "515021", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5901655982767938763" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99871000000, + 45.64232400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue d'Astorg 11", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0803", + "start_date": "2021-06-04", + "opening_hours": "24/7", + "ref": "FR*V75*PPX08*03", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31938860000, + 48.87283240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLMT4R83Q12I30", + "ref:EU:EVSE": "FRFR1P8125644167421276719", + "operator:email": "roaming@freshmile.com", + "ref": "1130439", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75062800000, + 48.57087000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "24 kW;200 kW", + "amenity": "charging_station", + "start_date": "2022-11-03;2022-10-18", + "ref:EU:EVSE": "FRSSDPELYSEEVOLVO944301", + "capacity": "15", + "charging_station:output": "200 kW;22.08 kW;24 kW", + "description": "Volvo - Chennevières sur Marne", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54735100000, + 48.79732500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "482076", + "ref:EU:EVSE": "FRS25P8525314988825990620", + "capacity": "2", + "description": "SYDED/W3AAB7VF4D", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90221900000, + 47.15787200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - TROUY - Pl. du marché", + "ref:EU:EVSE": "FRS18E188401;FRS18E188402", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS18E188401;FRS18E188402", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - TROUY - Pl. du marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35808310000, + 47.01014909000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Maillefert", + "network": "EV Map", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "313611204", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "start_date": "2023-12-21", + "operator:email": "contact@evmap.fr", + "operator": "EV Map" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14000000000, + 48.76000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*105*9*_*_;FR*SOD*S*QPRK*105*8*_*_;FR*SOD*S*QPRK*105*7*_*_;FR*SOD*S*QPRK*105*5*_*_;FR*SOD*S*QPRK*105*4*_*_;FR*SOD*S*QPRK*105*12*_*_;FR*SOD*S*QPRK*105*11*_*_;FR*SOD*S*QPRK*105*10*_*_;FR*SOD*S*QPRK*105*1*_*_;FR*SOD*S*QPRK*105*2*_*_;FR*SOD*S*QPRK*105*3*_*_;FR*SOD*S*QPRK*105*6*_*_", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-04", + "opening_hours": "24/7", + "network": "QPARK", + "ref:EU:EVSE": "FRQPKPQPRK10581;FRQPKPQPRK10571;FRQPKPQPRK10541;FRQPKPQPRK10521;FRQPKPQPRK10511;FRQPKPQPRK105101;FRQPKPQPRK105111;FRQPKPQPRK105121;FRQPKPQPRK10531;FRQPKPQPRK10551;FRQPKPQPRK10561;FRQPKPQPRK10591", + "operator:email": "sav@izivia.com", + "description": "QPARK - NANCY CHRU CENTRAL - MARCHAL RUE MOLITOR 54000 NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19324443051, + 48.68455900928 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8103300121;FRS81E8103300112;FRS81E8103300111;FRS81E8103300122", + "start_date": "2017-07-18", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "BLAYE LES MINES - Place Salvador Allende" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15610486352, + 44.02682264258 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE403200", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Bréguières Nord", + "start_date": "2019-07-26", + "ref:EU:EVSE": "FRIONE403200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03650000000, + 43.59200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44158001;FRS44P44158A", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2021-04-16;2024-04-24", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAINT-ETIENNE-DE-MONTLUC - Place Foch;OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Foch", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78182600000, + 47.27773100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "La Rochette - Théodore Rousseau;LA ROCHETTE - Avenue Théodore Rousseau", + "ref:EU:EVSE": "FRS77P77389A;FRS77E77389001", + "ref": "01F5ZAKH61H3RP369G9Z4HJ948", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-26;2015-07-01", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66092600000, + 48.52180100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59021001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ASSEVENT - Rue du Général de Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01071900000, + 50.28635400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - Fondettes - Rue de l'Aubrière", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - Fondettes - Rue de l'Aubrière", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E7613;FRS37E7614", + "ref": "FRS37E7613;FRS37E7614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59369500000, + 47.40412900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-23", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Vannes - Rue Jean Jaurès", + "ref:EU:EVSE": "FRS56PGWMRND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75518100000, + 47.65070200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-23", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16822;FRGLYPLYON16821;FRGLYPLYON16811;FRGLYPLYON16812", + "description": "LY804 - LAENNEC - BLANCHET", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*168*1*_*_;FR*SOD*S*LYON*168*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88484200000, + 45.73753300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "320 kW", + "ref:EU:EVSE": "FRMFCP7405410580819114462;FRMFCP3202233327313898486", + "ref": "965327;945609", + "amenity": "charging_station", + "charging_station:output": "320 kW;22 kW", + "description": "Mobilize Fast Charge/7ceb40b6-d1d0-4f53-95b4-5c7a611bbe51;Mobilize Fast Charge/65440ee9-92eb-41ea-b834-29e3fe1dfcb7", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "opening_hours": "24/7", + "capacity": "1;6", + "network": "Mobilize Fast Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51362400000, + 44.87941100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Opel - Beuvry", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLEMPEREUROPEL626601", + "charging_station:output": "22.08 kW", + "start_date": "2020-02-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69291100000, + 50.51318000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6589775", + "capacity": "2", + "amenity": "charging_station", + "network": "U EXPRESS STJEAN-DE-VEDAS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "U EXPRESS STJEAN-DE-VEDAS", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6589775", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83418300000, + 43.57666700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Th,Mo,Tu,Fr,Sa,We 08:30-20:30,Su 08:30-12:30", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P5790448743966580580", + "charging_station:output": "22 kW", + "ref": "446654", + "description": "Leclerc/APIQOKQASS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390700000, + 48.95405700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "start_date": "2020-03-31", + "description": "MOBIVE | Cubnezais | Rue de L Abrevoir - Parking Cimetiere;CUBNEZAIS - RUE DE L ABREVOIR / PARKING CIMETIERE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS33PMB333411;Non concerné;FRS33PMB333412", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref": "5c5b8323-0646-5d95-b5b7-46f06d847a1e;FR*SOD*S*MB33*34*1*_*_", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40879100000, + 45.07555400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95211002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ENNERY - Place Oberriexingen ", + "start_date": "2024-02-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10776767259, + 49.07721342877 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego FR, Pathe, TV3 Archamps", + "ref": "FRALLEGO8005442;FRALLEGO8005441;FRALLEGO8001211;FRALLEGO8001202;FRALLEGO8001201;FRALLEGO7000042;FRALLEGO7000041;FRALLEGO7000031;FRALLEGO7000032;FRALLEGO8001212;FRALLEGO8001241;FRALLEGO8001242;FRALLEGO8005451;FRALLEGO8005452;FRALLEGO8005461;FRALLEGO8005462;FRALLEGO8005471;FRALLEGO8005472;FRALLEGO8009951;FRALLEGO8009952", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "capacity": "20", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-03-07", + "description": "Allego FR, Pathe, TV3 Archamps", + "ref:EU:EVSE": "FRALLEGO8005442;FRALLEGO8005441;FRALLEGO8001211;FRALLEGO8001202;FRALLEGO8001201;FRALLEGO7000042;FRALLEGO7000041;FRALLEGO7000031;FRALLEGO7000032;FRALLEGO8001212;FRALLEGO8001241;FRALLEGO8001242;FRALLEGO8005451;FRALLEGO8005452;FRALLEGO8005461;FRALLEGO8005462;FRALLEGO8005471;FRALLEGO8005472;FRALLEGO8009951;FRALLEGO8009952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12326800000, + 46.13889300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR4130EVCP04;LFR4130EVCP02;LFR4130EVCP01;LFR4130EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "Saint Jean de Monts", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4130EVCP04;LFR4130EVCP02;LFR4130EVCP01;LFR4130EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05373400000, + 46.79350800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Aix-En-Provence, Cours Sextius", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PN1OD6X6J1D", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44372600000, + 43.52878200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/XBKOAMYT9V", + "ref": "402665", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P8795596118643735553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88168800000, + 47.74541000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "start_date": "2024-07-31", + "amenity": "charging_station", + "description": "FREJUS - PARKING ROUMANILLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*286*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ28612;FRA16PWIIZ28611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75724070000, + 43.43118300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "466317", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ZWMI4CXHPK", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1229669707420378256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95630000000, + 45.05080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-10-18", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Netto - La Réole", + "ref:EU:EVSE": "FRPD1PNETLRL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03308220690, + 44.58781629461 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ELMCAG;Saint-Romain-De-Jalionas, Rue des Violettes", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPELMCAG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref": "ELMCAG;32782" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22137000000, + 45.75630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "EVzen/D40F887F-68DD-400F-805B-0466EF2E3B36", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP1635688317150925217", + "ref": "1176309" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19555300000, + 46.71470900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*606*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "description": "INTERMARCHE - COHADE", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR60612;FROTHPOTHR60611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37172100000, + 45.32223000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPYPBFYEH6AZ;FREBNP6888308165365015516", + "capacity": "2", + "description": "Toulon, parking DGA;Réseau eborn/YPBFYEH6AZ", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-11-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346991;YPBFYEH6AZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93210800000, + 43.11232000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Yssingeaux, Parking Place Charles de Gaulle;Réseau eborn/RBTJQRBXH5", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref": "598278;RBTJQRBXH5", + "ref:EU:EVSE": "FREBNP6462111706149920301;FREBNPRBTJQRBXH5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12381000000, + 45.14355000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-11-28", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - B&B HOTEL SAINT-MALO CENTRE", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99047700000, + 48.63696200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BHFTRM", + "capacity": "2", + "amenity": "charging_station", + "ref": "977999", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1605827981363451940", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17473000000, + 49.12830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1414", + "amenity": "charging_station", + "ref": "FR*V75*PPX14*14", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Avenue de la Porte de Montrouge 8", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32282300000, + 48.82305930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4141284251867635945", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "505722", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/VNWWAFPBW9", + "opening_hours": "Th,Mo,We,Fr,Tu 13:30-18:30,We,Fr,Tu,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-17:30,Mo 08:30-12:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62615100000, + 50.68792400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPPARKING750111", + "amenity": "charging_station", + "description": "Paris - Parking Ledru Rollin", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37737600000, + 48.85381900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "description": "900101", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PNONANCOURTALSACELOR", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19938130000, + 48.77024580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Dinan-Place Duguesclin", + "ref:EU:EVSE": "FRS22E22050002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04410000000, + 48.45090100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY10E78311003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "HOUILLES - Place du 14 Juillet", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18910280000, + 48.92195830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2012-11-17", + "operator": "RossiniEnergy", + "description": "Mazars", + "ref:EU:EVSE": "FRROSE174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15333600000, + 50.63162100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLFBLM2F5L", + "ref": "1109958", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRWATP2145998534640522863" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24937500000, + 48.82624000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-03-31", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE402402;FRIOYE402401;FRIOYE402403;FRIOYE402404;FRIOYE402451;FRIOYE402452;FRIOYE402453", + "opening_hours": "24/7", + "ref": "FRIOYE402402;FRIOYE402401;FRIOYE402403;FRIOYE402404;FRIOYE402451;FRIOYE402452;FRIOYE402453", + "network": "Boismandé Est", + "description": "Boismandé Est", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42006070000, + 46.31410820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E93748;FRS51E93749", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - Damery - Pl. rue Paul Douce", + "description": "MODULO - Damery - Pl. rue Paul Douce", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E93748;FRS51E93749" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87822100000, + 49.07395200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65286003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "LOURDES - Avenue du paradis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05254000000, + 43.09468000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chazey-Bons", + "network": "Chazey-Bons", + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE001601;FRIENE001602", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE001601;FRIENE001602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69304600000, + 45.77443330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34199004", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "PEZENAS 2 - Parking Herault Energies", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40987500000, + 43.46042800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS60P5860072327362297328", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "598155", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/KMJW8BINW7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32137500000, + 49.40488200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile/XCLLB815FO", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "541886", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5274350343762988594" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233100000, + 46.66965900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PKYHUKN", + "ref": "KYHUKN", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "description": "Frontignan-de-Comminges, Mairie", + "opening_hours": "24/7", + "start_date": "2018-04-16", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65856500000, + 42.97080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD734201", + "description": "Ford - Voglans", + "start_date": "2020-11-26", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88587300000, + 45.61790100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRCARP60176A", + "description": "Carrefour Supply Chain - Crépy en valois", + "amenity": "charging_station", + "start_date": "2023-10-27", + "capacity": "4", + "network": "Carrefour Supply Chain - Crépy en valois", + "ref": "FRCARP60176A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90972058663, + 49.23166528047 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2022-12-09", + "capacity": "3", + "ref:EU:EVSE": "FRLUMEMIGNOT11", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "0b9c7838-1025-4387-ba85-ddbe5c7692b4", + "charging_station:output": "22 kW", + "operator": "LUMI'IN", + "description": "CAMPING MIGNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44000000000, + 43.33000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Saint Georges de Didonne | Rue du Coca", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "4988548a-0de8-56a0-bb88-c783ab6c0bd6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00193500000, + 45.60287000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "description": "CITROEN - FERRIERES-EN-GATINAIS", + "amenity": "charging_station", + "start_date": "2023-07-06", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE45FABA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80240600000, + 48.09341200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref": "1034577", + "description": "BornEco/65f99f12a57e1ebffc15cee4", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRBHMP8123250771762933428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35966300000, + 46.56462900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3471EVCP02;LFR3471EVCP03;LFR3471EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "BAUME LES DAMES", + "ref": "LFR3471EVCP02;LFR3471EVCP03;LFR3471EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33800000000, + 47.34725000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Tholonet, 664 Avenue Paul Julien", + "ref:EU:EVSE": "FRM13PVGYZ8CMZRO", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48771400000, + 43.51078300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P9177499655930416960", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/NIBTKYNMO8", + "ref": "488874" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99619900000, + 47.36798800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Camping le Deffay", + "amenity": "charging_station", + "start_date": "2023-04-28", + "capacity": "1", + "network": "Camping le Deffay", + "opening_hours": "24/7", + "operator": "Evbox", + "charging_station:output": "11 kW", + "owner:ref:FR:SIREN": "383026861", + "operator:email": "support@evbox.com", + "ref": "EVB-P2215268", + "ref:EU:EVSE": "FR44EVBP2215268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15945730000, + 47.44121200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5642304952614919411", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/AKV9BI2KZM", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "377429", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37949400000, + 47.41108400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Super U - Station-service Touvent", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYULUB", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-05-09", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42183903954, + 45.44913888532 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "YA9IINLOWM;39140", + "ref:EU:EVSE": "FREBNPYA9IINLOWM", + "capacity": "2", + "description": "La Motte-D'Aveillans, Rue de l'Eglise;Réseau eborn/YA9IINLOWM", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74481100000, + 44.96044100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "operator": "Fastned France", + "capacity": "8", + "network": "Fastned Aire de Villers-Bretonneux", + "amenity": "charging_station", + "ref": "FRFASE33105;FRFASE33015", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "ref:EU:EVSE": "FRFASE33105;FRFASE33015", + "charging_station:output": "300 kW", + "description": "Fastned Aire de Villers-Bretonneux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52372900000, + 49.85484700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - METZ TEPAGO", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*823*1*_*_;FR*SOD*S*OTHR*823*2*_*_", + "network": "LES MOUSQUETAIRES", + "start_date": "2024-05-31", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR82321;FROTHPOTHR82311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18537870000, + 49.07386670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLLUSKRPA99P3W;1052517", + "description": "Réseau eborn/LLLUSKRPA99P3W;Bandol, Parking du 11 Novembre", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP3269287304985999856;FREBNPLLLUSKRPA99P3W", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75113600000, + 43.13718800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Hilaire-Du-Touvet, Route des 3 Villages;Réseau eborn/Z6CIOZHDCI", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPZ6CIOZHDCI", + "ref": "Z6CIOZHDCI;30215" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738300000, + 45.31064400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*417*2*_*_;FR*SOD*S*OTHR*417*1*_*_", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FROTHPOTHR41712;FROTHPOTHR41711;FROTHPOTHR41713;FROTHPOTHR41721;FROTHPOTHR41722;FROTHPOTHR41723", + "opening_hours": "24/7", + "description": "BORNES-E - NEUILLY-PLAISANCE", + "operator:email": "sav@izivia.com", + "network": "BORNES-E", + "start_date": "2022-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51665600000, + 48.86550800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8202709783139973983", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/M8SKCP6RWC", + "opening_hours": "24/7", + "ref": "782568", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW;24 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.66055800000, + -20.96165100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP45348", + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Ajaccio, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.95189900000, + 41.95189900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626000", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/BII1ZEOITL", + "ref:EU:EVSE": "FRFR1P341683479794239859", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13599300000, + 45.64289500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "125 kW", + "capacity": "2", + "charging_station:output": "125 kW", + "amenity": "charging_station", + "description": "LA PLAGNE - Station Montchavin", + "ref": "FR*TCB*PLP73210*2", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRTCBPLP732102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73559848685, + 45.56056842019 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3289734157750275704", + "ref": "446516", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/ESNTDAUVON", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24031000000, + 45.59160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "482073", + "description": "MobiSDEC/LMAJAU9VM3", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P6570172838511600992", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713000000, + 49.35398000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "696518", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P4264425970943068707", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP009E67", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94887600000, + 47.70387300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE400", + "start_date": "2022-07-19", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Kiloutou_TPAngers", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50746800000, + 47.48941800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78531001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROSNY-SUR-SEINE - Rue Nationale", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63277600000, + 49.00063700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Plouer sur Rance", + "ref:EU:EVSE": "FRIOYE473553;FRIOYE473552;FRIOYE473551;FRIOYE473503;FRIOYE473502;FRIOYE473501;FRIOYE473504;FRIOYE473505;FRIOYE473506", + "ref": "FRIOYE473552;FRIOYE473551;FRIOYE473504;FRIOYE473503;FRIOYE473502;FRIOYE473501;FRIOYE473505;FRIOYE473506;FRIOYE473553", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Plouer sur Rance", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2023-07-21", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01269800000, + 48.53083100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS53E53185002", + "description": "PRE-EN-PAIL-SAINT-SAMSON - Rue Aristide Briand", + "start_date": "2024-08-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19638890028, + 48.46099853516 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-09-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66144001", + "description": "POLLESTRES - Esplanade De L'Europe", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87177000000, + 42.64025600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20715960000, + 49.97170040000 + ], + [ + 1.20727680000, + 49.97172310000 + ], + [ + 1.20728220000, + 49.97171160000 + ], + [ + 1.20736020000, + 49.97154570000 + ], + [ + 1.20724290000, + 49.97152290000 + ], + [ + 1.20715960000, + 49.97170040000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE06101;FRIENE06102", + "description": "Chinon", + "amenity": "charging_station", + "network": "Chinon", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2024-10-07", + "ref": "FRIENE06101;FRIENE06102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24337600000, + 47.17283500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35168001B1", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "MAURE DE BRETAGNE - 2 rue St Just (Parking du Presbytère) ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99016400000, + 47.89197200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "description": "VIMOUTIERS - Rue E. Laniel", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61508B", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-VIMO-002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19644500000, + 48.92791800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "694250", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KUPFNDHYBP", + "ref:EU:EVSE": "FRFR1P8763403602358556199" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36680800000, + 45.26949400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "33421;TSZVVB", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-03-27", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Calmont, René Vidal;Roulez Électrique En Haute-Garonne/TSZVVB", + "ref:EU:EVSE": "FRS31PTSZVVB", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63377000000, + 43.28390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "SCEAUX - Rue De Bagneux", + "ref:EU:EVSE": "FRSIPE92071002", + "start_date": "2021-03-03;2021-01-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30284700000, + 48.78428900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001729;FRCG0E000721;FRCG0E000720;FRCG0E000719;FRCG0E000718;FRCG0E000717;FRCG0E000716;FRCG0E000715;FRCG0E000714;FRCG0E000713;FRCG0E000722;FRCG0E000723;FRCG0E001730;FRCG0E001731;FRCG0E001732", + "network": "Hotel Aquilon - 44600 - 5", + "amenity": "charging_station", + "capacity": "15", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "ref": "FRCG0E001729;FRCG0E000720;FRCG0E000719;FRCG0E000718;FRCG0E000717;FRCG0E000716;FRCG0E000715;FRCG0E000714;FRCG0E000713;FRCG0E000721;FRCG0E000722;FRCG0E000723;FRCG0E001730;FRCG0E001731;FRCG0E001732", + "description": "Hotel Aquilon - 44600 - 5", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26881600000, + 47.25786400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*199*1*_*_", + "start_date": "2022-09-26", + "description": "SAINT DALMAS LE SELVAGE - PARKING VILLAGE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE19912;FRM06PNICE19911", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86402357011, + 44.28431765964 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "16f38645-ced2-5826-ad9d-3095e4aec5e5", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Bon Encontre | Square Bir Hakeim", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66930600000, + 44.18696600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*337*1*_*_", + "start_date": "2023-02-09", + "description": "SIGEIF - 22 AVENUE PASTEUR - BEAUCHAMP", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE33712;FRSIGPSIGE33711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19960000000, + 49.01080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-04-28;2024-04-29", + "description": "ROUEN - P+R - Parking 2 Rivières", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76000036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12714070000, + 49.43930970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4275EVCP04;LFR4275EVCP03;LFR4275EVCP02;LFR4275EVCP01", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4275EVCP04;LFR4275EVCP03;LFR4275EVCP02;LFR4275EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "SAINT GERVAIS LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37433000000, + 47.56389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "46d3e8bd-37f6-5c40-808c-23e1e139a4be", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Guéret | Plan d'Eau Courtille", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85293700000, + 46.16619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PAUCAMTOUL", + "ref": "86873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDE82/aucamtoul", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21719000000, + 43.80160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "LES SELLETTES - RAMATUELLE", + "network": "ELECTRIC 55 CHARGING", + "start_date": "2023-03-03", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83350RAMSELLETTES", + "ref": "FR*55C*P83350*RAM*SELLETTES", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64588000000, + 43.22117300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3841EVCP04;LFR3841EVCP03;LFR3841EVCP01;LFR3841EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3841EVCP04;LFR3841EVCP03;LFR3841EVCP01;LFR3841EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "GOURNAY EN BRAY - Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73215900000, + 49.48455400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "start_date": "2023-07-12;2023-11-21", + "ref:EU:EVSE": "FRPD1PITMCON", + "description": "Intermarché - Concarneau", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.89397762107, + 47.86926883095 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "541952;BMFWAN6U8Y", + "ref:EU:EVSE": "FREBNPBMFWAN6U8Y;FREBNP8658937347222739317", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "La Clusaz, Parking du bossonet;Réseau eborn/BMFWAN6U8Y", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43168700000, + 45.90594700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "operator": "E-TOTEM", + "amenity": "charging_station", + "start_date": "2024-08-12", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP62350A", + "description": "e-Totem - Rapid'eau Fouquières-lès-Béthune", + "operator:email": "contact@e-totem.fr", + "socket:type2_combo:output": "100 kW", + "ref": "FRETIP62350A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62383970000, + 50.51569300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking gare de Nantes Sud 1 - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E44109004;FRP01E441090042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53228030000, + 47.21604840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT463001", + "start_date": "2023-12-19", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Gourdon", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36922100000, + 44.72086400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Halluin - Intermarché", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-12-18", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPHALIM", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12400500000, + 50.76995400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - PLEURTUIT", + "start_date": "2022-11-16", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*533*4*_*_;FR*SOD*S*OTHR*533*1*_*_;FR*SOD*S*OTHR*533*2*_*_;FR*SOD*S*OTHR*533*3*_*_", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR53341;FROTHPOTHR53332;FROTHPOTHR53331;FROTHPOTHR53321;FROTHPOTHR53312;FROTHPOTHR53311;FROTHPOTHR53322;FROTHPOTHR53342", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06270700000, + 48.61033900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jalix", + "capacity": "2", + "amenity": "charging_station", + "operator": "Charge Point", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6733605", + "operator:email": "support.eu@chargepoint.com", + "network": "Jalix", + "owner:ref:FR:SIREN": "488865122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26884984000, + 46.20317537000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "471090", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1948773778736826664", + "description": "Freshmile France/KCFNXIKPD8", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49751200000, + 47.66949800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRURWPUNIB322;FRURWPUNIB321;FRURWPUNIB311;FRURWPUNIB312", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*UNIB*3*1*_*_;FR*SOD*S*UNIB*3*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "RENNES ALMA - PKG ORANGE", + "network": "UNIBAIL", + "start_date": "2019-06-05;2019-06-07", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67655000000, + 48.08258800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5128139138963817982", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/NSJKPAECMT", + "ref": "419130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88531400000, + 43.44975000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRTSLP1722", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Bayonne", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45256400000, + 43.49381900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2507680955065238563", + "ref": "368794", + "network": "Freshmile France", + "description": "Freshmile France/CN09IUBP7D", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58126600000, + 44.83053000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ELECTROMAPS", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "operator:email": "oscar@electromaps.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "Hotel saint alban", + "network": "Hotel saint alban", + "owner:ref:FR:SIREN": "379629447", + "ref:EU:EVSE": "FR000011062174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40760912323, + 43.41959147913 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P4178268049265020381", + "description": "MobiSDEC/Q7EG4SVFR8", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457533" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35141700000, + 49.31888900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LESTRADE ET THOUELS - R.D. 44", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12129001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66002600000, + 44.05922300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4LDIPHUNQJ", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "ref": "880155", + "ref:EU:EVSE": "FRWA4P5526047683757318565" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11752000000, + 49.48412200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "25 kW;22 kW", + "description": "OuestCharge - ePremium - Rochefort-Sur-Loire - Pilori", + "ref:EU:EVSE": "FRS49P49259A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65569400000, + 47.35816700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CASTRES - Parc Gourjade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81065006", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25356000000, + 43.62020900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE QUESNOY - Rue Juhel (centre Lowendal)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH16E59481001", + "network": "pass pass électrique", + "start_date": "2022-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63840900000, + 50.24953900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-04-26;2024-04-16", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "TOUVOIS - Rue Du Général Charette;OuestCharge - Diva Sp - Touvois - Charrette", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44206A;FRS44E44206001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68269200000, + 46.90189300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "518426", + "start_date": "2023-02-27", + "description": "SIEG63 - ePremium - Saint Genes Champanelle - Cassin;SIEG 63/FR*S63*P63345*B", + "ref:EU:EVSE": "FRS63P63345B", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01792000000, + 45.72060800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "SAINT-RÉMY-CHAUSSÉE - Rue de Saint Aubin", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH02E59542001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87303800000, + 50.17239000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34060001", + "description": "CAUSSE DE LA SELLE - Route Du Barrage", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65083611111, + 43.80426110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CRETEIL - 29 Avenue Pierre Brossolette - Parking", + "ref:EU:EVSE": "FRSIPE94028029", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46207924491, + 48.79194371524 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Bourges 2", + "start_date": "2024-04-09", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP90199113", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34161100000, + 47.04754900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Castelnaud la Chapelle | Tournepique", + "ref": "71ba86d0-7cc8-58a8-97e0-d9b9c4a89206", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15227700000, + 44.81311400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE44211;FRSIGPSIGE44212", + "start_date": "2024-01-10", + "ref": "FR*SOD*S*SIGE*442*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 18 AVENUE DE LA JONCHERE - LA CELLE SAINT CLOUD", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14892340000, + 48.85929030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9007332;FRALLEGO9007331;FRALLEGO9007022;FRALLEGO9004342;FRALLEGO9004341;FRALLEGO9004281;FRALLEGO9004282;FRALLEGO9007021", + "capacity": "8", + "description": "Allego Carrefour Fecamp", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9007332;FRALLEGO9007331;FRALLEGO9007022;FRALLEGO9004342;FRALLEGO9004341;FRALLEGO9004281;FRALLEGO9004282;FRALLEGO9007021", + "network": "Allego Carrefour Fecamp" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37232600000, + 49.75425000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARIGNANE - Juin", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3963EVCP04;LFR3963EVCP03;LFR3963EVCP02;LFR3963EVCP05;LFR3963EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "capacity": "10", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3963EVCP04;LFR3963EVCP03;LFR3963EVCP02;LFR3963EVCP05;LFR3963EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22980900000, + 43.42156900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Bordes | Rte de Lourdes", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "111f58a0-c22f-54e6-a814-00e13bedc525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28102200000, + 43.23439800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MORMOIRON - Route de Carpentras", + "ref": "87c9ec24-21a2-50a5-a749-96580ce2f6cd", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18253100000, + 44.06514200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA05E78497001", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "POIGNY-LA-FORET - Route de Rambouillet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75738080000, + 48.67770010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DECINES CHARPIEU Roosevelt", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3171EVCP02;LFR3171EVCP01", + "ref": "LFR3171EVCP02;LFR3171EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93285900000, + 45.74601400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-06-18;2023-05-19", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intersport - Saint-Paul-lès-Dax", + "opening_hours": "24/7", + "charging_station:output": "188 kW;100 kW;22 kW", + "capacity": "9", + "ref:EU:EVSE": "FRPD1PITSSPD", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07365561147, + 43.72523395083 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "972017;LLP8BLGWO1CA0I", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Bargemon, Parking camping municipal;Réseau eborn/LLP8BLGWO1CA0I", + "start_date": "2023-11-21", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLLP8BLGWO1CA0I;FREBNP1285956041945554361" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55116700000, + 43.62413600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "917546251", + "network": "e-Vadea;E-VADEA", + "charging_station:output": "150 kW;50 kW;22 kW", + "ref": "612703", + "capacity": "22;10", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP33502A", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA", + "description": "e-Vadea - Saugon - A10 Terres de l'Estuaire;E-VADEA/FR*EVA*P33502*A", + "start_date": "2023-03-03;2023-03-01;2022-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49030900000, + 45.18995500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCRIMOR", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Gamm Vert - Morcenx", + "start_date": "2024-02-28", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92243549322, + 44.02988885006 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT181601", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Lignières", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-09-19", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17021300000, + 46.75266500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "ref:EU:EVSE": "FRESEPS42218AT", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRESEPS42218AT", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Terrenoire", + "start_date": "2020-05-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43739300000, + 45.43639600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "description": "CNPE SAINT-LAURENT DES EAUX - E - RANGEE 4;CNPE SAINT-LAURENT DES EAUX - E - RANGEE 3", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref:EU:EVSE": "FROTHPIZIG46781;FROTHPIZIG46761;FROTHPIZIG46751;FROTHPIZIG46741;FROTHPIZIG46731;FROTHPIZIG467241;FROTHPIZIG467231;FROTHPIZIG467211;FROTHPIZIG46721;FROTHPIZIG467201;FROTHPIZIG467171;FROTHPIZIG467151;FROTHPIZIG467131;FROTHPIZIG467121;FROTHPIZIG46711;FROTHPIZIG46651;FROTHPIZIG46641;FROTHPIZIG46631;FROTHPIZIG466241;FROTHPIZIG466231;FROTHPIZIG466221;FROTHPIZIG466211;FROTHPIZIG46621;FROTHPIZIG466201;FROTHPIZIG466181;FROTHPIZIG466161;FROTHPIZIG466151;FROTHPIZIG466141;FROTHPIZIG466121;FROTHPIZIG466111;FROTHPIZIG466101;FROTHPIZIG46611;FROTHPIZIG466131;FROTHPIZIG466171;FROTHPIZIG466191;FROTHPIZIG46661;FROTHPIZIG46671;FROTHPIZIG46681;FROTHPIZIG46691;FROTHPIZIG467101;FROTHPIZIG467111;FROTHPIZIG467141;FROTHPIZIG467161;FROTHPIZIG467181;FROTHPIZIG467191;FROTHPIZIG467221;FROTHPIZIG467251;FROTHPIZIG46771;FROTHPIZIG46791", + "ref": "FR*SOD*S*IZIG*467*9*_*_;FR*SOD*S*IZIG*467*7*_*_;FR*SOD*S*IZIG*467*4*_*_;FR*SOD*S*IZIG*467*3*_*_;FR*SOD*S*IZIG*467*23*_*_;FR*SOD*S*IZIG*467*2*_*_;FR*SOD*S*IZIG*467*20*_*_;FR*SOD*S*IZIG*467*19*_*_;FR*SOD*S*IZIG*467*16*_*_;FR*SOD*S*IZIG*467*14*_*_;FR*SOD*S*IZIG*467*11*_*_;FR*SOD*S*IZIG*467*1*_*_;FR*SOD*S*IZIG*467*10*_*_;FR*SOD*S*IZIG*466*7*_*_;FR*SOD*S*IZIG*466*6*_*_;FR*SOD*S*IZIG*466*3*_*_;FR*SOD*S*IZIG*466*23*_*_;FR*SOD*S*IZIG*466*22*_*_;FR*SOD*S*IZIG*466*21*_*_;FR*SOD*S*IZIG*466*17*_*_;FR*SOD*S*IZIG*466*15*_*_;FR*SOD*S*IZIG*466*10*_*_;FR*SOD*S*IZIG*466*1*_*_;FR*SOD*S*IZIG*466*11*_*_;FR*SOD*S*IZIG*466*12*_*_;FR*SOD*S*IZIG*466*13*_*_;FR*SOD*S*IZIG*466*14*_*_;FR*SOD*S*IZIG*466*16*_*_;FR*SOD*S*IZIG*466*18*_*_;FR*SOD*S*IZIG*466*19*_*_;FR*SOD*S*IZIG*466*20*_*_;FR*SOD*S*IZIG*466*2*_*_;FR*SOD*S*IZIG*466*24*_*_;FR*SOD*S*IZIG*466*4*_*_;FR*SOD*S*IZIG*466*5*_*_;FR*SOD*S*IZIG*466*8*_*_;FR*SOD*S*IZIG*466*9*_*_;FR*SOD*S*IZIG*467*12*_*_;FR*SOD*S*IZIG*467*13*_*_;FR*SOD*S*IZIG*467*15*_*_;FR*SOD*S*IZIG*467*17*_*_;FR*SOD*S*IZIG*467*18*_*_;FR*SOD*S*IZIG*467*21*_*_;FR*SOD*S*IZIG*467*22*_*_;FR*SOD*S*IZIG*467*24*_*_;FR*SOD*S*IZIG*467*25*_*_;FR*SOD*S*IZIG*467*5*_*_;FR*SOD*S*IZIG*467*6*_*_;FR*SOD*S*IZIG*467*8*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2022-10-27;2022-10-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57780000000, + 47.72001000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "UEXPRESSALLAUCH STATION 3", + "description": "UEXPRESSALLAUCH STATION 3", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6881145;FRCPIE6881105;FRCPIE6892625", + "ref": "FRCPIE6881145;FRCPIE6881105;FRCPIE6892625", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49022700000, + 43.32894500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PDCZTSR0FDO", + "capacity": "2", + "amenity": "charging_station", + "ref": "294434", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DCZTSR0FDO", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08213000000, + 49.11760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP122065", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL FREYMING-MERLEBACH", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81411700000, + 49.14044100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/S8PA2ZJSYJ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454140", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7540581688998756497" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83220000000, + 46.30260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30045", + "description": "Tesla Supercharger Agen, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62990660000, + 44.17808160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7054814605873891551", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "441069", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YJYG7SXQC9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12225400000, + 50.34454200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "699089", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P64762053102377141", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/C0I5HNSCPF", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42273000000, + 49.32943800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/XZTAT4QNOV", + "ref:EU:EVSE": "FRS14P8753167378988717770", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "470202", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563000000, + 49.29363000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P8546688384621005597", + "description": "WAAT/FRWA5LHKQGIISZ", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1127943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98770500000, + 46.48090600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2017-02-15", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "AGNEAUX - Rue Antoine Lavoisier", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50180002", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13243200000, + 49.11211810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONESTIES - Place Du Foirail", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81170002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09685200000, + 44.07164700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681814;531681813;531681812;531681811;531681810;531681809;531681807;531681808", + "description": "RELAIS LYON ST EXUPERY", + "capacity": "8", + "ref": "FRHPCPNF059710", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF059710", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-04-26", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07070000000, + 45.72320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48137001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "description": "SAINT BAUZILE - ROUFFIAC - Parking Communauté de Communes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49625900000, + 44.47783000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVA14FOL0VC", + "start_date": "2023-02-24", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Locmiquélic - Parking du centre", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34326909091, + 47.72372994824 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-MARTIN-BOULOGNE - Place de l'Orme", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62758002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61946700000, + 50.70898100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "SAINT SAUVEUR - Rue De Lampaul Guimiliau", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-08-30", + "ref:EU:EVSE": "FRS29E29400001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00796100000, + 48.44922500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Vannes - Rue de Luscanen", + "ref:EU:EVSE": "FRS56PWUANHC", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-06-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80466200000, + 47.65758700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-14", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B116", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "SAULGE-1-2;SAULGE-1-1", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346052422;FRLMSE12346052421;FRLMSE12346052411;FRLMSE12346052412", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87585000000, + 46.37715100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-04-08", + "amenity": "charging_station", + "description": "Metropolis - Citadine - Montreuil - Yélimané;Métropolis/FR*MGP*P93048*E", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93048E", + "opening_hours": "24/7", + "ref": "484799", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45818800000, + 48.85997000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2018-10-08", + "description": "Réseau AlterBase - Melle - agence Séolis", + "ref:EU:EVSE": "FRSEOPAB79174P141A", + "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14405600000, + 46.21338000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "description": "Atlante/FRATLFR00296", + "opening_hours": "24/7", + "ref": "1030659", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP5018897624771782649", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50756500000, + 45.47114200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Epinal - Piscine Roger Goujon 2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89363551", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45986700000, + 48.19329000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ameublement Rognon", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "314991118", + "capacity": "1", + "ref:EU:EVSE": "FRMAPP000000007595", + "description": "Ameublement Rognon", + "opening_hours": "24/7", + "operator": "Electromaps", + "charging_station:output": "22 kW", + "operator:email": "customer.support@electromaps.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00280580000, + 47.27181970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85288001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-24", + "description": "TALMONT-SAINT-HILAIRE - Parking Du Payre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61797000000, + 46.46485000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTE GENEVIEVE DES BOIS", + "start_date": "2024-02-23", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSSTGDB", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33472300000, + 48.63843000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Les Ulis - Parc du Verger", + "amenity": "charging_station", + "operator": "Jerecharge.com", + "opening_hours": "Mo-Su 08:00-18:00", + "owner:ref:FR:SIREN": "905083895", + "charging_station:output": "22 kW", + "ref": "54edb51d-4f6c-4f39-9668-bc0e87937de6", + "network": "Jerecharge.com", + "ref:EU:EVSE": "FRJRCPEXAECS00001", + "start_date": "2023-07-01", + "operator:email": "contact@jerecharge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20276820000, + 48.69031720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-01-10;2023-12-19", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Gamm Vert & Mr. Bricolage - Cambo", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PMBCCBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41381820066, + 43.35555164306 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPZOWXJTWA0I;FREBNP2200802028422864413", + "start_date": "2023-06-20;2022-09-23", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "capacity": "4", + "description": "Réseau eborn/ZOWXJTWA0I;La Côte-Saint-Andre, Parking Intermodale le Rival", + "ref": "ZOWXJTWA0I;598302", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "11 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26506600000, + 45.35210500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLJ6X0IPNKG1Y8", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P36766480234958592", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "ref": "892356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93489500000, + 45.23056900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Ibis Styles - Beauregard", + "ref:EU:EVSE": "FRPD1PIBSLGV", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-12-25;2023-08-01;2023-08-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04336797819, + 47.27165165635 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/URUMP2J3YM;Cruas, Place René Cassin", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "30296;URUMP2J3YM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPURUMP2J3YM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76545300000, + 44.65717100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP34172D", + "ref": "FRETIP34172D", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - 3M - Montpellier - P+Tram Occitanie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84857000000, + 43.63496000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "DYNEFF", + "start_date": "2021-10-21", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*OTHR*222*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "AIRE DE PALOMBIERES", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "488120478", + "ref:EU:EVSE": "FROTHPOTHR22211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03480400000, + 45.00198200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-08", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "ref": "FR*SOD*S*CAPS*47*1*_*_", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS4712;FRCPSPCAPS4711", + "description": "MASSY - ALLEE DE QUEBEC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28337600000, + 48.73058700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/YA46XKXKNV", + "ref": "492015", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1793547273581552732" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90760500000, + 47.90089400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATL9LISADHP", + "amenity": "charging_station", + "ref": "787233", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA1P4561902907655269713", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48852400000, + 43.30479200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "971957", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4843362604249803858", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOZJSWBK1J98A", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48087900000, + 44.83632800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "start_date": "2023-04-05", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ALPITRONIC 225kW VW Scionzier", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1000114225", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1000114225", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54831100000, + 46.07017700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7793620243014964991", + "ref": "980598", + "network": "Freshmile France", + "description": "Freshmile France/IKZ3J5NKFM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33595100000, + 49.91105300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "12", + "description": "Leclerc - Vendôme", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2024-09-30;2023-06-30", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPLECLERC411001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04313500000, + 47.80145900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - COULOMBS - Rue des Remparts", + "ref:EU:EVSE": "FRS28E139389", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "description": "MODULO - COULOMBS - Rue des Remparts", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E139389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54301300000, + 48.65164400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SARL RUITER", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "contact@porte90.fr", + "ref:EU:EVSE": "Non concerné", + "network": "PORTE 90", + "start_date": "2021-11-29", + "charging_station:output": "22 kW", + "description": "Parking LA TOURTERELLE", + "owner:ref:FR:SIREN": "494457062", + "opening_hours": "Mo-Fr 8:00-17:00", + "ref": "EVB-P21251821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75846320000, + 46.13521630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39710", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P6442224970964757702", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/L3BRA1Y7LX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53522400000, + 48.34817300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP009E88;Hôtel le Relais de Comodoliac - 22 kW AC;Zephyre/LP009E5A", + "amenity": "charging_station", + "capacity": "1", + "ref": "675722;682982;ab6fd7ce-3df1-4ca0-863a-837ab690923b", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Hôtel le Relais de Comodoliac;Zephyre", + "ref:EU:EVSE": "FRZP1P70963;FRZP1P8914828208958087162;FRZP1P37714;FRZP1P6281759036882805990", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "owner:ref:FR:SIREN": "303526487", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89448200000, + 45.88557300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE5", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "renaultbaralle", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-02-03", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06411200000, + 50.21718200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PSAINTPORQUIER", + "ref": "46672", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "description": "SDE82/SaintPorquier", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17738000000, + 44.00480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "capacity": "2", + "description": "INOUID-HOTEL-CREQUI", + "operator:email": "Contact@inouid.com", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "fr-ise-e-inouid-crequi", + "ref:EU:EVSE": "FRISEEINOUIDCREQUI", + "network": "HCrequipublic", + "owner:ref:FR:SIREN": "317802106", + "operator": "INOUID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84683970000, + 45.76186960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS49E49110001;FRS49P49110A", + "start_date": "2024-04-10;2021-09-15", + "description": "CORZE - Rue Nationale;OuestCharge - Quick Charger Evtronic - Corze - Nationale", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35987300000, + 47.57017000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "232459", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PYWZYTS", + "description": "Mouv'Oise/YWZYTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45778000000, + 49.17660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*22*2*_*_;FR*SOD*S*LYON*22*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-02-05", + "ref:EU:EVSE": "FRGLYPLYON2222;FRGLYPLYON2221;FRGLYPLYON2212;FRGLYPLYON2211", + "operator:email": "sav@izivia.com", + "description": "VEN01 - AVENUE VIVIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86329900000, + 45.72663500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NIMES HOPITAL - Héliport", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30189021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32248900000, + 43.82340600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/LPU0REEKYH", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P8670070355624311130", + "network": "Mobilité électrique 56", + "ref": "446891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39731100000, + 47.92953200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346402731;FRLMSE12346402741", + "description": "SAINT-MACOUX-1-1;SAINT-MACOUX-1-2", + "opening_hours": "24/7", + "ref": "B089", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-05-27", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23329900000, + 46.11744300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "951455", + "network": "Mobilygreen CPO", + "description": "Mobilygreen CPO/80885069-0d33-42c3-9731-9f75a69c3245", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMW1P4380766550171491947", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37023000000, + 43.76530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*153*4*_*_;FR*SOD*S*SIGE*153*3*_*_;FR*SOD*S*SIGE*153*2*_*_;FR*SOD*S*SIGE*153*1*_*_;FR*SOD*S*SIGE*153*5*_*_;FR*SOD*S*SIGE*153*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE", + "network": "SIGEIF", + "start_date": "2021-07-05", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE15361;FRSIGPSIGE15351;FRSIGPSIGE15341;FRSIGPSIGE15311;FRSIGPSIGE15321;FRSIGPSIGE15331", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33229100000, + 48.93557400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VOISINS LE BRETONNEUX - Place Charles De Gaulle", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78688002", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-06-21", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05045330000, + 48.75837230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "752761379", + "description": "SCI Baobab", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "1", + "operator": "ZEENCO", + "opening_hours": "24/7", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE10001367082;FRLMSE10001367081", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59185700000, + 48.37707400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "6fbabbc8-88bf-50a1-b5fb-6c8a2f76fc1e", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Josse | Route de Boulins", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23446500000, + 43.63941800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE77MADA", + "start_date": "2023-06-13", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "MOUROUX - Mairie", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03793400000, + 48.82144900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Allego Carrefour Liévin", + "network": "Allego Carrefour Liévin", + "ref:EU:EVSE": "FRALLEGO9007721;FRALLEGO9007402;FRALLEGO9003041;FRALLEGO9003042;FRALLEGO9007401;FRALLEGO9007722", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "ref": "FRALLEGO9007721;FRALLEGO9007402;FRALLEGO9003041;FRALLEGO9003042;FRALLEGO9007401;FRALLEGO9007722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77028426000, + 50.42152815000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3823EVCP02;LFR3823EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "THIONVILLE - Amérique", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3823EVCP02;LFR3823EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16467800000, + 49.37168100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-07-20", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31555027", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "TOULOUSE - Place Job, Rue Ticky Holgado" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40861600000, + 43.61649500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPWV78OP2VPC", + "ref": "WV78OP2VPC", + "network": "eborn", + "description": "Villard-De-Lans, Place Mure Ravaud", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55241384000, + 45.07279703000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "466173", + "ref:EU:EVSE": "FRFR1P2791093279014776102", + "network": "Freshmile France", + "description": "Freshmile France/R3WPD3XTW8", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558100000, + 45.63764800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2021-03-01;2020-07-17;2020-06-25;2021-03-04", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DIEPPE - Hôtel de Ville", + "ref:EU:EVSE": "FRP07E762170011;FRP07E76217001", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07598000000, + 49.92310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "1193623", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP7658167353669892739", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/LLTHE8SMT21UHK", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30934800000, + 45.62743800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Grand-Quevilly - CC Hyper U", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "capacity": "18", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-12-15", + "charging_station:output": "22 kW;400 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPLGQCC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04420900000, + 49.41657600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E75108001", + "description": "Parking Paris Franklin D.Roosevelt Champs-Elysées - EFFIA", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30991900000, + 48.87003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "network": "DRB BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6620815;FRCPIE6620845", + "description": "DRB BORNE 1", + "ref": "FRCPIE6620815;FRCPIE6620845", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33295000000, + 43.98052100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "ref": "SHVDJXGTXB;756933", + "capacity": "12", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPSHVDJXGTXB;FRECHP4811816133903226140", + "opening_hours": "24/7", + "description": "Vern-sur-Seich , Centre commercial Val D'orson1;Easy Charge/SHVDJXGTXB", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62499600000, + 48.06295300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA3P3868742007496018063", + "description": "WAAT/FRWATLHA4GJSH7", + "opening_hours": "24/7", + "ref": "754344", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26058700000, + 50.73964600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5769498042752989862", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1179963", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLMSYXEWG2BIF2", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72686600000, + 48.57567600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-13", + "description": "Viking Casinos Bourbon l'Archambault", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP00809", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "network": "VIKING CASINOS", + "ref": "FRTCBP00809", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "412973711", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07259901477, + 46.58534902680 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "opening_hours": "Tu,Sa,Fr,Th,We,Mo,Su 19:00-23:59,We,Fr,Sa,Mo,Tu,Su,Th 00:00-07:00,Su,We,Sa,Fr,Tu,Mo,Th 07:00-19:00", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "15", + "network": "Freshmile France", + "description": "Freshmile France/LLJQWPB1HUI2ZV", + "socket:type2_combo:output": "50 kW;100 kW", + "ref": "892416", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9171292638353218686" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09616000000, + 44.10806700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-18:00", + "network": "DRIVECO", + "capacity": "2", + "description": "Jeep - Grimal - Albi", + "amenity": "charging_station", + "start_date": "2020-11-26", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPGRIMALJEEP810001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14928100000, + 43.94150900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "GUIMILIAU - Pem Du Calvaire", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-08-08", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E29097001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00078600000, + 48.48765400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11069001", + "description": "CARCASSONNE - Rue Jean Antoine Chaptal", + "start_date": "2022-02-27", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31078039000, + 43.21055510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage du Colombier - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC62759", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "e6414579-75bb-4faf-a18d-37235a411243", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNICAP - SARL DU COLOMBIER", + "owner:ref:FR:SIREN": "482675873", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31330100000, + 45.88862500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57616;FRS08E57615", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS08E57616;FRS08E57615", + "network": "MODULO - LES MAZURES - Rue des Hayettes", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - LES MAZURES - Rue des Hayettes", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62666600000, + 49.89005100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64796", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/Quevauvifet", + "ref:EU:EVSE": "FRS80PQUEVAUVIFET", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08244000000, + 49.82270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - POITIERS EST", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRIZFPFAST2413;FRIZFPFAST2411;FRIZFPFAST2412", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*24*1*_*_", + "start_date": "2023-11-22", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39704967427, + 46.55584814009 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44021A", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-04-26", + "description": "OuestCharge - Diva Sp - Bourgneuf-En-Retz - Vigne", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95605000000, + 47.04152400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77072001;FRS77P77072A", + "ref": "01F5ZAKH619WAB3P82F16EMC0Y", + "start_date": "2023-05-25;2016-01-19", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Chalautre-la-Grande;CHALAUTRE-LA-GRANDE - Rue Beauregard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45979600000, + 48.54184000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "network": "CHÂTEAU CHAUVIN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGSPP1000054869;FRGSPP1000054868", + "charging_station:output": "22 kW", + "description": "CHÂTEAU CHAUVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16924332185, + 44.91734843059 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219860;FRS37E219859", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E219860;FRS37E219859", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - SELIGNY - Pl. Drapeau Caillault", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SELIGNY - Pl. Drapeau Caillault" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57681000000, + 46.96350700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6d20fcf2-1ff2-50c0-beaf-9c0a2878b6f7", + "description": "CCTLB - Thiébauménil", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62231800000, + 48.57803900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LPA Parking Antonin Poncet - N1 - Zone 1", + "operator": "E-TOTEM", + "description": "LPA Parking Antonin Poncet - N1 - Zone 1", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2024-06-25;2024-06-24", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P69382BA", + "ref": "FRG10P69382BA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83456520000, + 45.75652450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | GAMARDE-LES-BAINS | Parking Salle des Fêtes", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "36e27ff3-3fb0-5114-b3cf-9273b0bf95d3", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87425900000, + 43.73362000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*272*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE27211;FRSIGPSIGE27212", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-04", + "description": "SIGEIF - 15 CHEMIN DESVALLIERES - VILLE-DAVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19667400000, + 48.82341000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "ref:EU:EVSE": "FRCPIE6494535", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "GVA EPINAL", + "ref": "FRCPIE6494535", + "network": "GVA EPINAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47763300000, + 48.18767300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/R8YVCQZTND", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3694241669413941839", + "ref": "892722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614600000, + 43.15138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "58e5c5a3-0946-5d3e-aa4a-9f83c806dbc2", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Aubazines | le lavoir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67079800000, + 45.17559600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "start_date": "2014-04-22", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB13082A", + "description": "Réseau AlterBase - Cerizay - Mairie", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67018700000, + 46.82100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAGXP01143C", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-01-14", + "operator:email": "info-usager.silene@spie.com", + "description": "Pays de Gex - ePremium - Divonne-Les-Bains - Esplanade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14660400000, + 46.35432100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2836EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2836EVCP01", + "charging_station:output": "22 kW", + "description": "LA TESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15518000000, + 44.63950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-07", + "description": "LA TRONCHE - Avenue De L'Obiou (CITIZ)", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38516001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75080000000, + 45.19941000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*125*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "ANTIBES - PARKING PLAGE DU PONTEIL", + "start_date": "2021-06-14", + "ref:EU:EVSE": "FRA16PWIIZ12512;FRA16PWIIZ12511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12510100000, + 43.57316300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLL4TSNLLN6UK9", + "ref": "896616", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3890323116412547107", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93526900000, + 48.85215000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PACTSEG", + "amenity": "charging_station", + "description": "Action - Sains-en-Gohelle", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "charging_station:output": "100 kW;50 kW;22 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67745251775, + 50.46101597492 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHRSSFZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "133477;HRSSFZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Heand, Parking collège Joseph Collard;Réseau eborn/HRSSFZ", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37529000000, + 45.53230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Vaucresson - Golf du Stade Français Haras Lupin", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPVAUGO", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15914500000, + 48.84674600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E06027001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CAGNES-SUR-MER - Parking Mattei" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16654480000, + 43.65799930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6679575", + "description": "CGED VALENCE", + "capacity": "2", + "network": "CGED VALENCE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6679575", + "start_date": "2023-01-26", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88299500000, + 44.89870200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "ref:EU:EVSE": "FRECHP7867141908729831177;FRECHPLLUWSHQJC2759F", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "description": "Easy Charge/LLUWSHQJC2759F;Remiremont, Avenue Julien Méline", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-04-12", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge", + "ref": "1148712;LLUWSHQJC2759F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59645100000, + 48.01485300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP143033", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Girmont - Parking Salle Polyvalente", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-07-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43675300000, + 48.25763900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/GSIMII44WZ", + "ref": "682151", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3093225346268553695", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09186300000, + 45.78029000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0605", + "capacity": "4", + "ref": "FR*V75*PPX06*05", + "description": "Paris | Rue Jacques Callot 5", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33710780000, + 48.85520450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YXCRHH", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PYXCRHH", + "capacity": "2", + "amenity": "charging_station", + "ref": "294479", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06484000000, + 49.11290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2021-03-12", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "Mo 07:00-20:00, Tu 07:00-20:00, We 07:00-20:00, Th 07:00-20:00, Fr 07:00-20:00, Sa 07:00-20:00, Su 07:00-13:00", + "ref:EU:EVSE": "FRSSDPGEANTCASINO202001", + "description": "Géant Casino - Bastia - Port Toga", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45321000000, + 42.70833000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Tregastel-Boulevard du Coz Pors (parking du père éternel)", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22353001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51362600000, + 48.83266800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - REIGNY - Le Bourg", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E148756", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E148756", + "network": "MODULO - REIGNY - Le Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35150861000, + 46.57702787000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "network": "AUBERGE SAINT WALFRID", + "capacity": "2", + "amenity": "charging_station", + "ref": "635a8195-f947-4584-b418-4844f6f79fc9", + "ref:EU:EVSE": "Non concerné", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "424397297", + "operator": "FRESHMILE", + "description": "AUBERGE SAINT WALFRID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04449000000, + 49.11463800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "32077", + "ref:EU:EVSE": "FRS10P4551331715962765607", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/KICUPJFZY5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13087200000, + 47.95724800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "ALBI - Av. de Saint Juéry", + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2021-05-25", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS81E81004009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17278800000, + 43.93396400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-30", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRIKAPIKEA6811;FRIKAPIKEA6821", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*68*2*_*_;FR*SOD*S*IKEA*68*1*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "description": "IKEA AVIGNON - PARKING CLIENT PMR 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89240000000, + 43.97853200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-23", + "description": "PORNICHET - Avenue Léon Gambetta parking Du 8 Mai 1945", + "ref:EU:EVSE": "FRS44E44132004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33588190000, + 47.26101300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77316004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MORÊT-LOING-ET-ORVANNE - Veneux", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79026524400, + 48.37985410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RACQUINGHEM - Parking de la Poste", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH01E62684001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35698500000, + 50.69312300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - AUTRECHE – ZA porte de Touraine", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - AUTRECHE – ZA porte de Touraine", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221515;FRS37E221514", + "ref:EU:EVSE": "FRS37E221515;FRS37E221514" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98730370000, + 47.53765557000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS55E66586;FRS55E66587", + "description": "MODULO - VERDUN - Cité d'Anthouard", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - VERDUN - Cité d'Anthouard", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E66586;FRS55E66587" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38173700000, + 49.15545900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*144*1*_*_;FR*SOD*S*LYON*144*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "VIL04 - REGUILLON", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON14422;FRGLYPLYON14411;FRGLYPLYON14412;FRGLYPLYON14421", + "start_date": "2022-09-28;2022-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89867900000, + 45.76218800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5928001", + "description": "BOIS-GRENIER - Complexe sportif", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59280*01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87732200000, + 50.64561500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPIDEALJOB592701", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-12-20", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00", + "charging_station:output": "22.08 kW", + "description": "IDEALJOB - Meteren", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68387800000, + 50.74110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "description": "SUUPER U BORNE 1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6580435;FRCPIE6580425", + "network": "SUUPER U BORNE 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref": "FRCPIE6580435;FRCPIE6580425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06402500000, + 43.92490400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "446849", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P7896781720712098279", + "description": "Leclerc/VRYGY9TY8G", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759600000, + 48.40075300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-04-01", + "ref:EU:EVSE": "FRS33PMB334912;Non concerné;FRS33PMB334911", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "description": "MOBIVE | La Brede | Parking de la Brédinière;LA BREDE - PARKING DE LA BREDINIERE", + "ref": "FR*SOD*S*MB33*49*1*_*_;5e423202-ac28-531b-a019-ffa28ed4bacb", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53108900000, + 44.67978300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Juvisy-sur-Orge - Rue Monttessuy", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8190c768-de58-5a99-a9ee-09a88c13fd7c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38458300000, + 48.68827800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "description": "CASINO FENOUILLET", + "charging_station:output": "50 kW;43 kW;160 kW;22 kW;300 kW", + "start_date": "2023-10-19;2021-01-22;2021-01-20;2023-11-07;2023-10-20", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "50 kW;160 kW;300 kW", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRALLPCAS001;FRSITE00000148", + "capacity": "3;6;10", + "network": "ALLEGO;GreenToWheel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005000000, + 43.69312700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3291EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "VALENCE D AGEN Quercy", + "ref:EU:EVSE": "LFR3291EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88939100000, + 44.11579600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PONQDMBBKNC", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Istres, Bayanne", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95531700000, + 43.52677700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-08-26", + "ref:EU:EVSE": "FRS88E180571;FRS88E180573", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - FERDRUPT - Pkg. de L'église", + "network": "MODULO - FERDRUPT - Pkg. de L'église", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E180571;FRS88E180573" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70942500000, + 47.90669000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "VALDEROURE - PARKING MAISON MEDICALE", + "start_date": "2023-11-15", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*236*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ23612;FRA16PWIIZ23611", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71103600000, + 43.79685400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2695793222773923199", + "charging_station:output": "22 kW", + "description": "Freshmile France/VNYVFQYTMF", + "operator": "Freshmile | FR*FR1", + "ref": "505725" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12293600000, + 50.35430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Mr. Bricolage - Touques", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBRTQS", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09361691286, + 49.34988979189 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLAAMCG1RZX", + "capacity": "2", + "amenity": "charging_station", + "description": "Les Gets, Parking Pic", + "network": "eborn", + "ref": "LAAMCG1RZX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67055600000, + 46.16000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1109949", + "description": "EVzen/ECB639B1-73E1-465F-BD1E-34443861EBED", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREVZP4592337473214754054", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97014000000, + 48.27112000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-07-28", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E64122002", + "description": "BIARRITZ - Casino" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55942000000, + 43.48329900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/XQHA8RY3C0;Saint-Cyr-Sur-Mer, Avenue Aime Carbonnel", + "ref": "85901;XQHA8RY3C0", + "ref:EU:EVSE": "FREBNPXQHA8RY3C0;FREBNXQHA8RY3C0", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70481200000, + 43.18557300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHF7UWCT3XU", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "capacity": "3", + "ref": "75068", + "opening_hours": "24/7", + "socket:type2_combo:output": "43 kW", + "charging_station:output": "50 kW;43 kW", + "description": "Réseau eborn/FR*EBN*PHF7UWCT3XU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64672700000, + 44.36712900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-10;2023-06-19", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP104108", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A89 La Corrèze" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93782000000, + 45.36000600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896646", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1296458580668810292", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/SDKEJCFATZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.52900600000, + -17.52528500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-29", + "capacity": "4", + "ref:EU:EVSE": "FRV75PPX1308", + "opening_hours": "24/7", + "ref": "FR*V75*PPX13*08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue de Choisy 8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36433330000, + 48.82056220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CRJKZJXCRW", + "ref:EU:EVSE": "FRFR1P2466056935620985868", + "ref": "742929" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29141500000, + 49.13010100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-23:30, Tu 07:00-23:30, We 07:00-23:30, Th 07:00-23:30, Fr 07:00-23:30, Sa 07:00-23:30, Su 07:00-23:30", + "ref:EU:EVSE": "FRSSDPOLLANDINIAVIS202901", + "description": "Avis Location - Bastia", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-05-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.48095400000, + 42.54786700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "ref:EU:EVSE": "FRS27PEVREUXVIOLETTES", + "charging_station:output": "22.0 kW", + "description": "900078", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17346000000, + 49.02510200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E02223;FRS22E02222", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "47 kW", + "capacity": "3", + "description": "FREHEL - Allée des Arcades", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-17", + "charging_station:output": "22 kW;47 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40381000000, + 48.63981800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78575001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT REMY LES CHEVREUSE - Beausejour", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06668500000, + 48.69891680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE126", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "traxene", + "start_date": "2021-08-12", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10248000000, + 50.52293700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1149750", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP4444016991232195656", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLIDRU0R3R", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32213900000, + 48.81344600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440000", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE440000", + "capacity": "3", + "owner:ref:FR:SIREN": "838436145", + "start_date": "2022-02-23", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Baralle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06931000000, + 50.22551600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS51E42656;FRS51E42657", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - STE MARIE DU LAC - Rue de Nuisement", + "opening_hours": "24/7", + "ref": "FRS51E42656;FRS51E42657", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - STE MARIE DU LAC - Rue de Nuisement", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77433300000, + 48.60659400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BORDERES SUR ECHEZ - Rue Jean Jaurès", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS65E65100001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04975000000, + 43.25844000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-06-26;2024-01-03;2023-07-07;2023-06-22;2023-07-12", + "owner:ref:FR:SIREN": "531681481;531681479;531681478;531681477;531681469;531681468;531681472;531681471;531681470;531681473;531681474;531681475;531681476;531681480", + "capacity": "14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080363", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS DE LA PALME EST", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF080363", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97191000000, + 42.95133800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34154002;FRS34E34154001", + "start_date": "2023-12-12", + "description": "CARNON - Parking du Levant", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98049968158, + 43.54733368423 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/MNFMWG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PMNFMWG", + "opening_hours": "24/7", + "ref": "24747", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24083000000, + 47.76410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UTHD3KC8DN", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "521375", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P826399954086156525", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35852200000, + 48.20551700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "7", + "ref:EU:EVSE": "FRMGPP92063A", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2020-07-30", + "opening_hours": "24/7", + "ref": "340655", + "description": "Métropolis/FR*MGP*P92063*A;Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18033400000, + 48.88022700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARBMW944401", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "Mo 08:30-12:00, Mo 13:30-18:00, Tu 08:30-12:00, Tu 13:30-18:00, We 08:30-12:00, We 13:30-18:00, Th 08:30-12:00, Th 13:30-18:00, Fr 08:30-12:00, Fr 13:30-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2020-06-26;2022-11-16", + "operator:email": "support@driveco.com", + "description": "BMW - ByMyCar - Chennevières", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54739300000, + 48.79646500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MAIRIE - 77640", + "start_date": "2023-02-22", + "ref:EU:EVSE": "FRC2P005602;FRC2P005601", + "amenity": "charging_station", + "ref": "FRC2P005602;FRC2P005601", + "capacity": "1", + "owner:ref:FR:SIREN": "217702380", + "description": "MAIRIE - 77640", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12299850000, + 48.92678810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref": "6bff49ea-eb46-4ce7-82be-c6aa678247da", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "Hôtel les Cèdres 07260 ", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELCEDRES11", + "start_date": "2022-06-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24000000000, + 44.48000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | Le Temple Sur Lot | Place de la Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "447d28f8-ec4b-5bd4-9b1d-a61f1ca719eb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52540300000, + 44.37975600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE31RAEA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Rue Clemence Isaure 1 - REVEL", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99256100000, + 43.45204400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "882357", + "description": "BornEco/64a430a40f4133a306e1661f", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP7704393525591626919", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "7.4 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70061000000, + 48.23910700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P3698190485155487058", + "opening_hours": "24/7", + "ref": "446711", + "charging_station:output": "22 kW", + "description": "Leclerc/HEDAVFNBCX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522900000, + 47.10985300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PUWAP4BDZ5S", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Port-Saint-Louis-du-Rhone, Avenue Hippolyte Peut", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80192000000, + 43.38972200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P8404909257701543436", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402590", + "description": "SDEY/PT71J19KJL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26409400000, + 48.19546000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LE CANNET PARKINGMAIRIE ANNEXE LES PARADISIERS", + "ref:EU:EVSE": "FRA16PWIIZ8711;FRA16PWIIZ8712", + "ref": "FR*SOD*S*WIIZ*87*1*_*_", + "start_date": "2018-06-07", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96825400000, + 43.56655100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6110373155936968087", + "ref": "752406", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/Z0CNZYBUQL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31982700000, + 46.60880400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Super U - Vagney", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYSVAG", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-06-18", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71436233446, + 48.01198430132 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Carqueiranne, Parking Beaurivage;Réseau eborn/S0BKBAHJZ9", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP5315099273885922265;FREBNPS0BKBAHJZ9", + "ref": "510656;S0BKBAHJZ9", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08360400000, + 43.08831300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/2A0EFD67-6277-4819-93B1-BB4A829B374C", + "opening_hours": "24/7", + "ref": "1170468", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "FREVZP7057077254329657148" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60411500000, + 43.17288000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-13", + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*76*3*_*_", + "ref:EU:EVSE": "FROTHPOTHR7632;FROTHPOTHR7631", + "capacity": "2", + "network": "LUMINUS", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "LUMINUS - SERAING - PARKING SALARIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48985700000, + 50.60252600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/NV2EOLFRDB;Huez, Avenue du Rif Nel", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNV2EOLFRDB", + "start_date": "2020-06-21", + "ref": "102617;NV2EOLFRDB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07081600000, + 45.09494300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "ref": "GRUGMK6YCJ;541958", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/GRUGMK6YCJ;Chadrac, Avenue Pierre et Marie Curie", + "ref:EU:EVSE": "FREBNP1005011183275851768;FREBNPGRUGMK6YCJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90220500000, + 45.06096400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR38721;FROTHPOTHR38711", + "network": "SYSTEME U", + "description": "SUPER U - LE HOM", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*387*2*_*_;FR*SOD*S*OTHR*387*1*_*_", + "start_date": "2022-04-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47603400000, + 48.98056900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8934213749187062856", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/KGIFNNP4ME", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "510503" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54375300000, + 48.16407100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP30399", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Annemasse, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25543870000, + 46.19477139000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "412082", + "description": "Freshmile France/OS5AYN2RWQ", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2045773698758106199", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572000000, + 48.89220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "description": "AMP | 1 bd Notre Dame du Mont", + "amenity": "charging_station", + "ref": "FR*TCB*P01837", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP01837", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38376700000, + 43.29225700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3363351163973865077", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XSSSZNZRAX", + "ref": "491949", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08759200000, + 49.25176600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "ref:EU:EVSE": "FRS22E22204001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Ploezal-Château Roche Jagu", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15593600000, + 48.73268100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-05", + "owner:ref:FR:SIREN": "339741381", + "amenity": "charging_station", + "ref": "50704;50670", + "capacity": "1", + "network": "Mazda - BOURG EN BRESSE", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30,Sat 09:00-18:00", + "description": "Mazda - Bourg en Bresse - 22kW AC ", + "ref:EU:EVSE": "FRZMAE22AC50704;FRZMAE22AC50670", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21031100000, + 46.18938500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE344", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "Najeti_Golf", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-06-09", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08821770000, + 50.71222160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-11", + "ref:EU:EVSE": "FRY01E78361013", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MANTES-LA-JOLIE - Normandie - Place Henri Dunant", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71162730681, + 48.98836080596 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Châteauroux Nord", + "network": "Châteauroux Nord", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE448953;FRIOYE448952;FRIOYE448902;FRIOYE448901;FRIOYE448903;FRIOYE448904;FRIOYE448905;FRIOYE448906;FRIOYE448951", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE448953;FRIOYE448952;FRIOYE448902;FRIOYE448901;FRIOYE448903;FRIOYE448904;FRIOYE448905;FRIOYE448906;FRIOYE448951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70546811000, + 46.85103448000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "description": "LAVAL - Place De Hercé;OuestCharge - Diva Sp - Laval - Hercé", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53E53130001;FRS53P53130D", + "start_date": "2024-05-27;2021-04-12", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77165650000, + 48.06552860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CERET - Rue Des Porteilles", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66049001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74641036987, + 42.48519659662 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20777120000, + 49.97201840000 + ], + [ + 1.20782150000, + 49.97197560000 + ], + [ + 1.20795830000, + 49.97195740000 + ], + [ + 1.20812620000, + 49.97171600000 + ], + [ + 1.20815600000, + 49.97166030000 + ], + [ + 1.20835770000, + 49.97123810000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-09", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE010601;FRIENE010602", + "capacity": "4", + "operator:email": "support@iecharge.io", + "ref": "FRIENE010601;FRIENE010602", + "charging_station:output": "0 kW", + "description": "Vincey", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Vincey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31705000000, + 48.34988000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "CREVIN - 1 rue bernard picoult ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35090001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66706500000, + 47.93754200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "description": "SAINT EVROULT NOTRE DAME DU BOIS - Rue Principale", + "opening_hours": "24/7", + "ref": "SE61-EVROULT-001", + "ref:EU:EVSE": "FRS61P61386A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46526130000, + 48.79155970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5408797030145916787", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/FAQWZOZ717", + "ref": "398876", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25720000000, + 46.93680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "46552;Seyssesegl", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Seysses, Eglise;Roulez Électrique En Haute-Garonne/Seyssesegl", + "amenity": "charging_station", + "start_date": "2017-10-05", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref:EU:EVSE": "FRS31PSEYSSESEGL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31135000000, + 43.49890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LEVALLOIS PERRET - Parking Lorraine", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-03-15", + "ref:EU:EVSE": "FRSIPE92044011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29507490500, + 48.89196486020 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tunnel le Borsat", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000513;FRCG0E000415;FRCG0E000416;FRCG0E000417", + "network": "Tunnel le Borsat", + "capacity": "4", + "socket:type2_combo:output": "50 kW;44 kW", + "start_date": "2022-12-31", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW;22 kW", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000513;FRCG0E000415;FRCG0E000416;FRCG0E000417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90037800000, + 45.45638000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE17422;FRM06PNICE17421", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UTELLE - PARKING VILLAGE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*174*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24847100000, + 43.91684800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "0c125942-c104-5941-b1b2-5acb7cedce41", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Marmande | Parking Piscine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15449000000, + 44.50763300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "operator": "IZIVIA", + "description": "SIGEIF - 42 AVENUE DE LA PAIX - FRESNES", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE31212;FRSIGPSIGE31211", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*312*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33014900000, + 48.76062800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS258185;FRBMPS258184", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Savigny-sur-Orge", + "operator:email": "exploitation@bump-charge.com", + "ref": "258185;258184" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35097100000, + 48.68694740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WARCQ Pierquin", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3274EVCP01", + "ref:EU:EVSE": "LFR3274EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69886500000, + 49.77658400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Brive | Golf", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "9751e395-54cb-586a-886e-dc2af70033e3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50184500000, + 45.13881600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "99758d8f-55f4-598f-89c2-bc0e262afb51", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "description": "Avrainville - Rue de la Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24697600000, + 48.56345600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2021-10-04", + "charging_station:output": "22.08 kW", + "description": "RENAULT DEALER BAIN DE BRETAGNE", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*PRNO*35470*BA1N", + "ref:EU:EVSE": "FR55CPRNO35470BA1N" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68372100000, + 47.86223300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "LOURDES Marquis", + "ref:EU:EVSE": "LFR3474EVCP01;LFR3474EVCP02", + "ref": "LFR3474EVCP01;LFR3474EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04024800000, + 43.10657200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Biocoop - Mont-de-Marsan", + "start_date": "2023-07-18", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIRKMDM", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48857428107, + 43.88720377154 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Clement-Sur-Durance, Maison du Tourisme;Réseau eborn/PFSNGXZAQM", + "ref:EU:EVSE": "FREBNPPFSNGXZAQM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "48463;PFSNGXZAQM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58056600000, + 44.64980800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP57672B", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "description": "e-Totem - Thionville Rue Molière", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP57672B", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-10-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15376670000, + 49.36880830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Saint-Malo Remparts 2 P6 - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-10-31", + "ref:EU:EVSE": "FRP01E35288004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02347100000, + 48.64735700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT321101", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Nogaro", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03287400000, + 43.76207400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPQYCADMQWOA;FREBNP8373581110047657975", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "QYCADMQWOA;492192", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "description": "Réseau eborn/QYCADMQWOA;Valence, Place Herriot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89433100000, + 44.93486000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR50521;FROTHPOTHR50511", + "description": "TESTO INDUSTRIAL SERVICES - FORBACH", + "start_date": "2021-08-11", + "operator:email": "sav@izivia.com", + "network": "TESTO INDUSTRIAL SERVICES", + "ref": "FR*SOD*S*OTHR*505*1*_*_;FR*SOD*S*OTHR*505*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90345800000, + 49.20596600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT SAINT-JUNIEN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6712645", + "ref": "FRCPIE6712645", + "opening_hours": "24/7", + "start_date": "2023-04-18", + "charging_station:output": "11 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SAINT-JUNIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93053100000, + 45.90328500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3074270978979011567", + "description": "Freshmile France/PEUJAWCTR7", + "ref": "801648" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05778000000, + 48.90270200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10053891;FRUBIE10082228", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "ref": "seno0100000018", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-04-04", + "description": "UBI-LHSM-183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09658300000, + 49.51102800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5555629066165770145", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "741042", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RWQFMMRWHU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83789400000, + 49.57962800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555044", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-06-29", + "charging_station:output": "22 kW", + "description": "TOULOUSE - 17 Avenue de la Garonette", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44134100000, + 43.59596300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "294374", + "ref:EU:EVSE": "FRFR1PVDQGVS", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VDQGVS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03999000000, + 43.14750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P2751395164391686502", + "operator:email": "roaming@freshmile.com", + "ref": "461862", + "description": "MobiSDEC/OIGASENV23", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88324800000, + 48.89304700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COMPREGNAC PEYRE - Parking De Peyre", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12072002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99536400000, + 44.08821900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLZTZBPSJ2", + "ref": "735840", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRWA3P2793951954204324249" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12558200000, + 47.27754200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-13;2024-04-03", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49214A;FRS49E49214001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "MONTREUIL-JUIGNE - Parking Mairie;OuestCharge - Diva Sp - Montreuil-Juigne - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61008300000, + 47.52970800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "ref": "64973", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "description": "SIED70/vesoulfaure", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PVESOULFAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15301000000, + 47.62150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20931040000, + 49.97142830000 + ], + [ + 1.20935110000, + 49.97133990000 + ], + [ + 1.20936190000, + 49.97129810000 + ], + [ + 1.20932540000, + 49.97127640000 + ], + [ + 1.20765120000, + 49.97094730000 + ], + [ + 1.20754150000, + 49.97093950000 + ], + [ + 1.20745490000, + 49.97095780000 + ], + [ + 1.20738050000, + 49.97096820000 + ], + [ + 1.20735610000, + 49.97094380000 + ], + [ + 1.20731420000, + 49.97090210000 + ], + [ + 1.20717390000, + 49.97081460000 + ], + [ + 1.20713690000, + 49.97079150000 + ], + [ + 1.20700420000, + 49.97075930000 + ], + [ + 1.20687830000, + 49.97073590000 + ], + [ + 1.20675110000, + 49.97071230000 + ], + [ + 1.20655760000, + 49.97071840000 + ], + [ + 1.20649670000, + 49.97073580000 + ], + [ + 1.20646550000, + 49.97076540000 + ], + [ + 1.20623680000, + 49.97123720000 + ], + [ + 1.20623680000, + 49.97127200000 + ], + [ + 1.20626660000, + 49.97131900000 + ], + [ + 1.20640460000, + 49.97146270000 + ], + [ + 1.20650390000, + 49.97156130000 + ], + [ + 1.20653860000, + 49.97159580000 + ], + [ + 1.20661310000, + 49.97165770000 + ], + [ + 1.20662930000, + 49.97170990000 + ], + [ + 1.20661040000, + 49.97195140000 + ], + [ + 1.20662250000, + 49.97199320000 + ], + [ + 1.20664150000, + 49.97201800000 + ], + [ + 1.20669630000, + 49.97203720000 + ], + [ + 1.20674440000, + 49.97204200000 + ], + [ + 1.20678160000, + 49.97203370000 + ], + [ + 1.20680590000, + 49.97201980000 + ], + [ + 1.20697650000, + 49.97165070000 + ], + [ + 1.20707120000, + 49.97145220000 + ], + [ + 1.20720420000, + 49.97117520000 + ], + [ + 1.20724650000, + 49.97107880000 + ], + [ + 1.20727940000, + 49.97102720000 + ], + [ + 1.20730470000, + 49.97098740000 + ], + [ + 1.20738050000, + 49.97096820000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "REXPOEDE - Rue De West Cappel", + "ref:EU:EVSE": "FRH14E59499001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53933610000, + 50.93908040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LA MEMBROLLE SUR CHOISILLE - Colombeau", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-16", + "network": "MODULO - LA MEMBROLLE SUR CHOISILLE - Colombeau", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E214042;FRS37E214043", + "ref": "FRS37E214042;FRS37E214043" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63812700000, + 47.43707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "518372", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63255*B", + "ref:EU:EVSE": "FRS63P63255B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28099400000, + 45.47737800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH02E59225001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FEIGNIES - Place de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91326800000, + 50.29779800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-03-31", + "description": "LARUSCADE - LE BOURG - RD N22 / PARKING SALLE DES FETES", + "capacity": "2", + "network": "MOBIVE - SDEEG 33", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB33*68*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "FRS33PMB336811;FRS33PMB336812", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34301500000, + 45.10786100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHEVILLY-LARUE - Avenue de la croix du Sud", + "start_date": "2021-05-17", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94021003", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34258600000, + 48.76977700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*290*1*_*_", + "network": "NICE RP", + "description": "CAGNES-SUR-MER - DOCTEUR FERAUD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE29012;FRM06PNICE29011", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15028421333, + 43.66078475760 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Le Bugue | Place leopold Salme", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "ref": "9d047387-6a4a-5edf-a319-4f919c0cf6ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92693700000, + 44.91654200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 222 CHAUSSEE JULES CESAR - BEAUCHAMP", + "ref:EU:EVSE": "FRSIGPSIGE41711;FRSIGPSIGE41712", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*417*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-07-11", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17771000000, + 49.01625500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROUEN - Place du 39ème Régiment d'Infanterie", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-02-14", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540021", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10263500000, + 49.44062600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "ST DIE DES VOSGES Saint-Exupery", + "amenity": "charging_station", + "ref": "LFR4067EVCP01;LFR4067EVCP02;LFR4067EVCP03;LFR4067EVCP04", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4067EVCP01;LFR4067EVCP02;LFR4067EVCP03;LFR4067EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93853800000, + 48.29157200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "07041e55-9496-5ddf-b46a-05c0d250966f", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Navarrenx | Place du Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76093100000, + 43.32380700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "ref": "7ab42c62-0369-5ebd-955a-d1a9ca54eec4", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "PUGET - Chemin de la Baronne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27044900000, + 43.75563700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUFFARGIS - Rue des Vaux de Cernay", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78030002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89233820000, + 48.70239870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST BREVIN LES PINS Potences", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3180EVCP01", + "ref:EU:EVSE": "LFR3180EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15616100000, + 47.24138200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Intermarché Super - Sélestat", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMSLT", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "start_date": "2023-09-21;2022-07-16", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46400995096, + 48.27504263924 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31627", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/KMKK2WXJUA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPKMKK2WXJUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06726400000, + 46.03302700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP89239B", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP89239B", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Kyriad Sens Bas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31535325389, + 48.18768823126 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2023-01-30;2023-01-24", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PCORSQE", + "description": "Cora - Saint-Quentin", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28902121111, + 49.86642611510 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRDRVPKMXZ", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Lallaing", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17372900000, + 50.38799200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2019-07-30", + "owner:ref:FR:SIREN": "848778429", + "ref:EU:EVSE": "FRESEPS42207AC", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "description": "SEMOB Aire pays du Gier", + "ref": "FRESEPS42207AC", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52606900000, + 45.49484400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IZIG*233*9*_*_;FR*SOD*S*IZIG*233*8*_*_;FR*SOD*S*IZIG*233*7*_*_;FR*SOD*S*IZIG*233*6*_*_;FR*SOD*S*IZIG*233*56*_*_;FR*SOD*S*IZIG*233*53*_*_;FR*SOD*S*IZIG*233*51*_*_;FR*SOD*S*IZIG*233*49*_*_;FR*SOD*S*IZIG*233*46*_*_;FR*SOD*S*IZIG*233*45*_*_;FR*SOD*S*IZIG*233*44*_*_;FR*SOD*S*IZIG*233*38*_*_;FR*SOD*S*IZIG*233*37*_*_;FR*SOD*S*IZIG*233*36*_*_;FR*SOD*S*IZIG*233*35*_*_;FR*SOD*S*IZIG*233*33*_*_;FR*SOD*S*IZIG*233*32*_*_;FR*SOD*S*IZIG*233*31*_*_;FR*SOD*S*IZIG*233*29*_*_;FR*SOD*S*IZIG*233*28*_*_;FR*SOD*S*IZIG*233*26*_*_;FR*SOD*S*IZIG*233*25*_*_;FR*SOD*S*IZIG*233*24*_*_;FR*SOD*S*IZIG*233*21*_*_;FR*SOD*S*IZIG*233*20*_*_;FR*SOD*S*IZIG*233*19*_*_;FR*SOD*S*IZIG*233*16*_*_;FR*SOD*S*IZIG*233*13*_*_;FR*SOD*S*IZIG*233*11*_*_;FR*SOD*S*IZIG*233*1*_*_;FR*SOD*S*IZIG*233*10*_*_;FR*SOD*S*IZIG*233*12*_*_;FR*SOD*S*IZIG*233*14*_*_;FR*SOD*S*IZIG*233*15*_*_;FR*SOD*S*IZIG*233*17*_*_;FR*SOD*S*IZIG*233*18*_*_;FR*SOD*S*IZIG*233*2*_*_;FR*SOD*S*IZIG*233*22*_*_;FR*SOD*S*IZIG*233*23*_*_;FR*SOD*S*IZIG*233*27*_*_;FR*SOD*S*IZIG*233*30*_*_;FR*SOD*S*IZIG*233*3*_*_;FR*SOD*S*IZIG*233*34*_*_;FR*SOD*S*IZIG*233*39*_*_;FR*SOD*S*IZIG*233*40*_*_;FR*SOD*S*IZIG*233*4*_*_;FR*SOD*S*IZIG*233*41*_*_;FR*SOD*S*IZIG*233*42*_*_;FR*SOD*S*IZIG*233*43*_*_;FR*SOD*S*IZIG*233*47*_*_;FR*SOD*S*IZIG*233*48*_*_;FR*SOD*S*IZIG*233*50*_*_;FR*SOD*S*IZIG*233*5*_*_;FR*SOD*S*IZIG*233*52*_*_;FR*SOD*S*IZIG*233*54*_*_;FR*SOD*S*IZIG*233*55*_*_", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG23371;FROTHPIZIG233511;FROTHPIZIG233491;FROTHPIZIG233461;FROTHPIZIG233431;FROTHPIZIG23341;FROTHPIZIG233391;FROTHPIZIG233381;FROTHPIZIG233311;FROTHPIZIG233301;FROTHPIZIG233271;FROTHPIZIG233261;FROTHPIZIG233251;FROTHPIZIG233241;FROTHPIZIG233211;FROTHPIZIG233201;FROTHPIZIG233181;FROTHPIZIG233171;FROTHPIZIG233151;FROTHPIZIG233141;FROTHPIZIG233131;FROTHPIZIG233121;FROTHPIZIG23311;FROTHPIZIG233101;FROTHPIZIG233111;FROTHPIZIG233161;FROTHPIZIG233191;FROTHPIZIG23321;FROTHPIZIG233221;FROTHPIZIG233231;FROTHPIZIG233281;FROTHPIZIG233291;FROTHPIZIG23331;FROTHPIZIG233321;FROTHPIZIG233331;FROTHPIZIG233341;FROTHPIZIG233351;FROTHPIZIG233361;FROTHPIZIG233371;FROTHPIZIG233401;FROTHPIZIG233411;FROTHPIZIG233421;FROTHPIZIG233441;FROTHPIZIG233451;FROTHPIZIG233471;FROTHPIZIG233481;FROTHPIZIG233501;FROTHPIZIG23351;FROTHPIZIG233521;FROTHPIZIG233531;FROTHPIZIG233541;FROTHPIZIG233551;FROTHPIZIG233561;FROTHPIZIG23361;FROTHPIZIG23381;FROTHPIZIG23391", + "description": "CNPE CHOOZ - PARKING B", + "operator:email": "sav@izivia.com", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78776800000, + 50.09235200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-16:00,Tu 08:00-16:00,We 08:00-16:00,Th 08:00-16:00,Fr 08:00-16:00", + "ref:EU:EVSE": "FRCPIE6834705", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6834705", + "network": "BORNE BASUYAU STATION 2", + "charging_station:output": "22 kW", + "start_date": "2023-12-12", + "description": "BORNE BASUYAU STATION 2", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04937600000, + 48.11694400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971771", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P695703292974763700", + "description": "Freshmile France/LLLNHXT2H2BWM0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69860100000, + 49.20931000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-03-20", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122022", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL LOUVECIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11583800000, + 48.87627300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/HXUBZE62BL", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6680759458989193314", + "ref": "541769", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79843500000, + 41.95550300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP16732", + "description": "Tesla Supercharger Blois, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33932151000, + 47.61187586000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "257209", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PRZTXNK", + "description": "Freshmile France/RZTXNK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04560000000, + 46.79540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457503", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P4679524746441920116", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LA2MHNO1J0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62425300000, + 49.17674600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRS13PSVNNSDC2XP", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "description": "Eyragues, Avenue Gabriel Péri", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84164500000, + 43.83976100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA3LSIOBOB8G", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "6.9 kW;7.4 kW", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P8549028073589135309", + "ref": "805227", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41596400000, + 43.29045000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "ref:EU:EVSE": "FRS50P50042001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "description": "BEAUVOIR – Parc des Brèches", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51087100000, + 48.59788100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-15", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8114000111;FRS81E8114000112;FRS81E8114000121;FRS81E8114000122", + "description": "LAVAUR - Allée Jean Jaures", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81559197417, + 43.69915547859 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF059190", + "capacity": "16", + "owner:ref:FR:SIREN": "531680821;531680820;531680808;531680812;531680811;531680814;531680810;531680806;531680809;531680807;531680813;531680815;531680818;531680816;531680819;531680817", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "description": "REL.MACON LA SALLE", + "ref:EU:EVSE": "FRHPCPNF059190", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86530000000, + 46.41800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASSAGNAS - Rue De La Fontaine, Parking", + "ref:EU:EVSE": "FRS48E48036001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-24", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74628870000, + 44.27059160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PYFURSC", + "network": "Morbihan Energies", + "start_date": "2017-01-13", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Camoël - Rue Paul Ladmirault" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39754900000, + 47.48077400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH04E59569005", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SIN-LE-NOBLE - Boulodrome Communautaire", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2022-04-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10038000000, + 50.35320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2925700", + "charging_station:output": "22 kW", + "description": "Saint Pabu-Rue du Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.61037000000, + 48.56794400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56P4368694438120933181", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "346592", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/RUZCWL", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34964000000, + 47.76330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B129", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-02-28", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346051901;FRLMSE12346051892;FRLMSE12346051891;FRLMSE12346051902", + "description": "MAGNE-1-2;MAGNE-1-1", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39329600000, + 46.35718200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93013A", + "description": "Métropolis/FR*MGP*P93013*A;Metropolis - Citadine - Le Bourget - Hôtel de Ville", + "amenity": "charging_station", + "ref": "514928", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42442800000, + 48.93479900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*97*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-01-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 33 ROUTE DU PAVE DES GARDES - CHAVILLE", + "ref:EU:EVSE": "FRSIGPSIGE9711;FRSIGPSIGE9712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18528300000, + 48.80569500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref": "1068378", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Atlante/FRATLFR00291", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP8672757131473325445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78083300000, + 43.11305600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000081840", + "description": "Howdens Vertou", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48380500000, + 47.17957900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P4589230400570685258", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/TVHCOYXT0Q", + "ref": "441123" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04678100000, + 47.87412000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-13", + "description": "LA ROCHE-SUR-YON - Place De La Mutualité", + "ref:EU:EVSE": "FRS85E85191010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40277000000, + 46.66093000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REIMS TINQUEUX", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSRTINQ", + "start_date": "2023-06-06", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97820200000, + 49.25398000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*35*1*_*_", + "ref:EU:EVSE": "FRIZMPMAMP3511;FRIZMPMAMP3512", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2022-06-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "IZIVIA | MARSEILLE 08 - AVENUE ELSA TRIOLET", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39101800000, + 43.24751000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMATDEU", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Match - Deûlémont", + "start_date": "2024-03-05;2024-03-06", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95651441004, + 50.73700893282 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPTGQQ9EOFPO", + "description": "Réseau eborn/TGQQ9EOFPO;Manosque, Boulevard les Tilleuls", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "TGQQ9EOFPO;230938" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78420100000, + 43.83510200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "Norauto - Bornes publiques/3C369AA2-4999-42E1-897F-20D06F40B0DC", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP8400169222227977500", + "ref": "890166" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02004100000, + 43.13925400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PHYGESP", + "capacity": "3", + "description": "Lavage Auto Hygie Cars - L'Isle-d'Espagnac", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18104710000, + 45.66081000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPURHEE05T5G", + "ref": "31894;URHEE05T5G", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/URHEE05T5G;Montélimar, Parking Saint James" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74765400000, + 44.54954400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP27229A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - Bigmat Evreux", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-02-06", + "ref": "FRETIP27229A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18358348809, + 49.01894289443 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*195*3*_*_;FR*SOD*S*OTHR*195*2*_*_;FR*SOD*S*OTHR*195*1*_*_;FR*SOD*S*OTHR*195*4*_*_", + "start_date": "2021-03-30", + "opening_hours": "24/7", + "description": "SUPER U - BOURGUEIL", + "ref:EU:EVSE": "FROTHPOTHR19541;FROTHPOTHR19521;FROTHPOTHR19511;FROTHPOTHR19531", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16729000000, + 47.27156700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-12-05", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS2311;FRCPSPCAPS2312", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*CAPS*23*1*_*_", + "description": "ORSAY - LES PLANCHES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19147900000, + 48.70313600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1188565", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLWGIWR5X2JXVO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P238421250294021754", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48479200000, + 48.39071000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "description": "ENRGETICA/436fed78-daf5-452a-891d-8ea8a3689745", + "socket:type2_combo:output": "48 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "951338", + "ref:EU:EVSE": "FRVISP4005590605851998101", + "network": "ENRGETICA", + "charging_station:output": "22 kW;48 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84909200000, + 43.93582900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLK6YVG40Z3P4G", + "operator:email": "roaming@freshmile.com", + "ref": "978005", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Fr,Th,Tu,We,Mo 08:30-17:30", + "ref:EU:EVSE": "FRFR1P2619542481547847813" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14342200000, + 45.78906900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "description": "WB 22kW Skoda Chambéry 2;WB 2x22 Audi Chambéry;ABB T54 Audi Chambéry;ABB T23 VW Chambery;WB 2x22 VO Chambéry;ALFEN 2X22 DIRECTION SKODA CHY", + "socket:type2_combo:output": "50 kW;22 kW", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRSWSE1000081552;FRSWSE1000081562;FRSWSE1000087955;FRSWSE1000087956;FRSWSE1000087958;FRSWSE1000124590", + "operator": "SOWATT SOLUTIONS", + "ref": "1000124590;1000087958;1000081552;1000081562;1000087955;1000087956", + "owner:ref:FR:SIREN": "903356970", + "start_date": "1930-01-22;2022-07-21;2022-07-22;2022-05-05;2021-07-22", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88507100000, + 45.61270700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P304802556229080910", + "description": "Freshmile France/KVTKW80MWI", + "operator:email": "roaming@freshmile.com", + "ref": "435123", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56145300000, + 47.59089800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPDMD290001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "Suzuki - Quimper", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-07-10;2023-10-17", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.06554000000, + 47.97323400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "ref": "FRS28E137295;FRS28E137294", + "start_date": "2022-06-01", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "200080869", + "operator:email": "lionel.chauvet@energie28.fr", + "description": "COURTALAIN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E137295;FRS28E137294", + "network": "FR*S28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13533400000, + 48.07952400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "m.lefebvre@maborneauto.com", + "ref": "Non concerné", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator": "Non concerné", + "charging_station:output": "22 kW", + "start_date": "2024-07-26", + "network": "MA BORNE AUTO", + "opening_hours": "Mo-Fr8:00-9:00", + "owner:ref:FR:SIREN": "440639755", + "description": "KEOS REIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08022620000, + 49.23791830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "75458", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/AMRW3PLL2G", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2870260739198501470" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65457000000, + 48.38861100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "description": "WAAT/FRWATLKPELUYAK", + "amenity": "charging_station", + "ref": "538367", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWATP4000131566650917414", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78838900000, + 43.50055900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOTTEVAST - Place Etang Royal", + "start_date": "2023-01-10", + "ref:EU:EVSE": "FRS50P50579001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59271500000, + 49.52277600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TEILLET - Place De La Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81295001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33943700000, + 43.83411000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "INTERPARKING | PARKING PARIS ALHAMBRA", + "owner:ref:FR:SIREN": "692051113", + "ref:EU:EVSE": "FRIPKPALH", + "start_date": "2022-08-02", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING", + "ref": "FRIPKPALH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36666700000, + 48.86785240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-17;2021-04-21", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Champtoceaux - Piliers;CHAMPTOCEAUX - Place des Piliers", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49069A;FRS49E49069001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26734600000, + 47.33738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/Beauvstade", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "79513", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PBEAUVSTADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11611000000, + 49.43090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62119006", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-08-08", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BETHUNE - Place du 73e", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63681200000, + 50.53087600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30169001", + "description": "MILHAUD - Rue Des Troenes", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31187200000, + 43.78743700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/PMKMGS", + "ref": "24744", + "ref:EU:EVSE": "FRS56PPMKMGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28274000000, + 48.08240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES TROIS MOUTIERS-1-1;LES TROIS MOUTIERS-1-2", + "start_date": "2016-02-10", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref": "B052", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346396581;FRLMSE12346396571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01770000000, + 47.06330100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "2", + "amenity": "charging_station", + "description": "Metropolis - ePremium - Vincennes - Massue;Métropolis/FR*MGP*P94080*A", + "start_date": "2021-01-12", + "ref": "348959", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP94080A", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42444500000, + 48.84789100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "SIGEIF - 188 AVENUE DE PARIS - CHATILLON", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE12312;FRSIGPSIGE12311", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "ref": "FR*SOD*S*SIGE*123*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29928700000, + 48.81045500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-03", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78423002", + "charging_station:output": "22 kW", + "description": "MONTIGNY LE BRETONNEUX - Boulevard Vauban", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04104600000, + 48.78071900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-05-17", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Première Classe Bourges", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89638530", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201000000, + 47.04652800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Montignac-Charente | Parking des Albizias", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "ref": "d21ba914-f767-50bf-bac3-0fd675dbfd50", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12442800000, + 45.78260100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE71MABA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-06-06", + "description": "France Pare-Brise - MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80744400000, + 46.28514800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLPEVCARSPAIMP", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-06", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "PAIMPOL", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03854000000, + 48.77187300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MULHOUSE Thann", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3412EVCP01;LFR3412EVCP02", + "ref": "LFR3412EVCP01;LFR3412EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30678800000, + 47.74939600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31506001", + "start_date": "2021-08-03", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "SAINT ORENS - Rue Des Muriers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53773800000, + 43.55035700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roanne, rue Alsace Lorraine;Réseau eborn/HZVBOQT3RZ", + "ref:EU:EVSE": "FREBNPHZVBOQT3RZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "HZVBOQT3RZ;133465", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06755900000, + 46.03654300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8291604007804327397", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/KG7R2ZWEFC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "412061" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20113600000, + 46.07864500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "8", + "start_date": "2020-06-26;2020-06-22;2021-08-10", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "PARIS - Haussmann C&A", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E75109001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32937000000, + 48.87291000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/JGECQF;Romans-Sur-Isère, Delay", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPJGECQF", + "ref": "75137;JGECQF", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05015000000, + 45.04920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP8216486418970191045", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "ref": "1185016", + "opening_hours": "24/7", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/66e303fb349acd001cd580ea", + "charging_station:output": "12 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06095000000, + 45.64959000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Hôpital Thionville Bel Air (Entrée Chemin Saint Anne) - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E57672003", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15131300000, + 49.37162300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WELDOM CASTRES BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6609815", + "ref": "FRCPIE6609815", + "network": "WELDOM CASTRES BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26886300000, + 43.61881700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "419349", + "ref:EU:EVSE": "FREBNP4012108966060198915", + "network": "Réseau eborn", + "description": "Réseau eborn/GTTHOQUJRW", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01945400000, + 43.08429000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA2P1700928905399371071", + "capacity": "2", + "description": "WAAT/s570521", + "amenity": "charging_station", + "ref": "1182102", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02569600000, + 43.85325800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CS8HK5BBAM", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6890921922347095550", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "368806", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56079000000, + 44.85006000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GARAGE PEUGEOT CUCIS", + "opening_hours": "Mo-Fr 08:00-18:00", + "owner:ref:FR:SIREN": "877150144", + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "charging_station:output": "22 kW", + "description": "ETABLISSEMENTS BRUNO CUCIS ET CIE - MONTBELIARD", + "ref": "FRTCBP00689", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-03-04", + "ref:EU:EVSE": "FRTCBP00689" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81400130000, + 47.51889610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/DW4BG8XNRL;Freshmile France/LLSUD4WJU1118A", + "ref:EU:EVSE": "FRFR1P3327347879199974522;FRFR1P7327659931624346678", + "ref": "398867;1052493", + "operator": "Freshmile | FR*FR1", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68290000000, + 47.25470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Kia - CF AUTOS - Furiani", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPCFAUTOKIA206001", + "operator:email": "support@driveco.com", + "start_date": "2021-09-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44024800000, + 42.64864300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2905100", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-05-05", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ERGUE GABERIC - Route de Croas Spern" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02445600000, + 48.00837700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "419370", + "ref:EU:EVSE": "FRS10P726818342363982578", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDEA 10/YQJEVUUE5V", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18042500000, + 48.31170900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "UNICAP - GARAGE FLORET", + "ref": "517fd85d-0b2e-4fbe-a4db-851ce253d4b9", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1PEAC118331", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "414499137", + "charging_station:output": "22 kW", + "description": "Garage Floret - 22 kW AC", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03824623000, + 48.34461818000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "481293", + "description": "Régie Services Energie/FR*RSE*P01446*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRRSEP01446A", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83486100000, + 46.02072200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PCONDE22", + "description": "FDE 80/conde22", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64814", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01321000000, + 50.01010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*198*1*_*_;FR*SOD*S*FAST*198*2*_*_", + "operator": "IZIVIA", + "description": "IZIVIA FAST - MC DONALDS - VALENCE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST19823;FRIZFPFAST19813;FRIZFPFAST19812;FRIZFPFAST19811;FRIZFPFAST19821;FRIZFPFAST19822", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-25", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91566330000, + 44.94070470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-23;2024-04-29;2024-04-22", + "description": "PONTCHATEAU - Chemin De Criboeuf;OuestCharge - Diva Sp - Pontchateau - Criboeuf", + "ref:EU:EVSE": "FRS44P44129B;FRS44E44129002;FRS44E0440110", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09346000000, + 47.43652100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "start_date": "2023-05-12;2016-02-01", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH6018FD3AN16N6CZ5B0", + "description": "BAZOCHES-LES-BRAY - Place De L'Église;Bazoche-les-Bray", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77025A;FRS77E77025001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18832700000, + 48.39865100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref": "86e945d1-10bf-4db1-b368-ca33930807a3", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGOBPKEPLERDOTHEMARE", + "opening_hours": "Mo-Sa 08:00-18:00", + "capacity": "3", + "network": "GMOB", + "description": "Immeuble KEPLER DOTHEMARE", + "owner:ref:FR:SIREN": "911886703", + "operator:email": "contact@gmob.fr", + "operator": "G-MOB", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.51804900000, + 16.26958400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - DRACHE - Socio Culturelle", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - DRACHE - Socio Culturelle", + "ref": "FRS37E219666;FRS37E219658", + "start_date": "2019-09-26", + "ref:EU:EVSE": "FRS37E219666;FRS37E219658" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62527500000, + 47.05403800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "25065", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/QDNNRD", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PQDNNRD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94377000000, + 47.56810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "description": "AGGLOMERATION MONTARGOISE - PANNES", + "opening_hours": "24/7", + "network": "AGGLOMERATION MONTARGOISE - PANNES", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P45247A", + "ref:EU:EVSE": "FRG10P45247A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67204300000, + 48.01739000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Terrasson | Place Marcel Paul", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "ref": "ce5c3fe5-b743-5520-ae8a-34c5f8b2d6b9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29883800000, + 45.12987500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-21", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "SIGEIF - 37 AVENUE GEORGES POMPIDOU - SURESNES", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE24112;FRSIGPSIGE24111", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*241*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23576200000, + 48.87387100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "ref": "21803", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCN1PMCUAXH", + "socket:type2_combo:output": "44 kW", + "operator": "Freshmile | FR*CN1", + "description": "Move In Pure/MCUAXH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75021000000, + 44.75630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "505806", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/ZAJRFADFMD", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P5162762974543572964", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760500000, + 50.03117000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Chaniers | Av. Charles de Gaulle", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "462b01ec-5013-5ee0-b9fd-79a6c7a2f8ac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55603700000, + 45.71754300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2022-08-09", + "description": "Système U - DRAVEIL", + "opening_hours": "24/7", + "charging_station:output": "50 kW;25 kW;22 kW", + "socket:type2_combo:output": "25 kW;50 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE91DSUB;FRSE1PSE91DSUA", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43004800000, + 48.68204500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "St-Remy-de-Provence, Avenue De La Libération", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRABAPSFIA7B7ZKA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83469900000, + 43.78874300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3661EVCP02;LFR3661EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "CASTELNAUDARY Meric", + "ref": "LFR3661EVCP02;LFR3661EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95481500000, + 43.30097600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VIZILLE - Domaine Vizille", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "start_date": "2023-03-02", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRM38E38185023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77222600000, + 45.07473300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LEVIS SAINT NOM - Ecole", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA07E78334001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92066010000, + 48.72345070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HZSKCRY3NQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2485045874081855175", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "472200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64040400000, + 48.51599600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PACCSAT", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "description": "hotelF1 - Saint-Saturnin", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16480546938, + 48.05158682350 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPTYMBBVGUX0", + "ref": "30533", + "description": "Réseau eborn/TYMBBVGUX0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07972500000, + 46.14115300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Canet-en-Roussillon - Intermarché", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPCERCA", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2024-02-29", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02102800000, + 42.70030400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Sucy-en-Brie Montaleau - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E94071001;FRP01E940710011", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51821000000, + 48.77077760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR SAINT-QUENTIN", + "ref:EU:EVSE": "FRCPIE6663945", + "ref": "FRCPIE6663945", + "start_date": "2022-12-12", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "description": "SONEPAR SAINT-QUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26102700000, + 49.85290200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "LLW6F8AI42LMTJ;1111917", + "amenity": "charging_station", + "description": "Besançon, Avenue Léo Lagrange;Easy Charge/LLW6F8AI42LMTJ", + "ref:EU:EVSE": "FRECHP6390730729981853187;FRECHPLLW6F8AI42LMTJ", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "start_date": "2024-05-14", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99775000000, + 47.24488000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-25", + "amenity": "charging_station", + "ref": "FR*V75*PPX20*03", + "opening_hours": "24/7", + "description": "Paris | Rue Sorbier 14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX2003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39069640000, + 48.86732200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PBYSSRF", + "network": "Freshmile France", + "ref": "213050", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/BYSSRF", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90553000000, + 49.34640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Quai aux Fleurs 23", + "ref:EU:EVSE": "FRV75PPX0401", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX04*01", + "start_date": "2021-06-23", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35052780000, + 48.85484590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3365599120648855280", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLMSYO8Z69VIS7", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1112622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72244400000, + 48.59569900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-14", + "network": "DRIVECO", + "description": "Ford - Aubagne", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMAURINFORD134001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53608700000, + 43.28720400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22264002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pommerit Jaudy-Rue de la gare (parking boulangerie)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24313400000, + 48.73119000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11293001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "POMAS - Rue De La Gare", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28964100000, + 43.11219500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZTLE22AC56447;FRZTLE22AC56446", + "description": "Toyota Lexus- Lyon-Nord - 22KW AC EXT Accès Public ", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "SIVAM BY AUTOSPHERE - LYON NORD;SIVAM BY AUTOSPHERE- LYON NORD", + "opening_hours": "LUN-VEN 09:00-19:00,SAM 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77440300000, + 45.80130800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P319546704523566348", + "capacity": "2", + "amenity": "charging_station", + "ref": "699104", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/IBKH2LGDHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07848500000, + 48.23566000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "capacity": "3", + "description": "FDE 80/LLNNAX2FR26R2M", + "opening_hours": "24/7", + "ref": "1009110", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS80P4436995350474130550", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82983700000, + 49.87404000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "ref": "FR*SOD*S*FAST*73*1*_*_", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - CAUDEBEC-LES-ELBEUF", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST7312;FRIZFPFAST7311;FRIZFPFAST7313", + "start_date": "2024-05-14", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02817330000, + 49.28793910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2024-04-18;2021-04-20", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44108001;FRS44P44108A", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Mouzillon - Vendée;MOUZILLON - Place De La Vendée", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28168100000, + 47.14003400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77278001;FRS77P77278A", + "description": "Marolles-en-Brie;MAROLLES-EN-BRIE - Ruelle Aux Grenouilles", + "start_date": "2023-08-17;2016-08-31", + "ref": "01F5ZAKH61J9TRC0E6S2PE96KG", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16347300000, + 48.77660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/98", + "ref": "1178748", + "ref:EU:EVSE": "FRGYMP8289349668843833546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47545300000, + 43.64367500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221314;FRS37E221312", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VERETZ - Rue des Istres", + "description": "MODULO - VERETZ - Rue des Istres", + "ref:EU:EVSE": "FRS37E221314;FRS37E221312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81484700000, + 47.35780200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS55E66244;FRS55E66245", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - BAR LE DUC - Rue d'Aulnois", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E66244;FRS55E66245", + "start_date": "2019-04-26", + "network": "MODULO - BAR LE DUC - Rue d'Aulnois", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15917300000, + 48.76661000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "VEN04 - MARCEL HOUEL - HOTEL DE VILLE", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2020-02-05", + "ref": "FR*SOD*S*LYON*12*2*_*_;FR*SOD*S*LYON*12*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON1222;FRGLYPLYON1221;FRGLYPLYON1212;FRGLYPLYON1211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88466600000, + 45.69663200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BODEMER Paimpol", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "ref": "0cdd2e01-e572-413c-82fb-634218fdfa96", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "start_date": "2024-02-07", + "description": "Bodemer Paimpol - Public", + "ref:EU:EVSE": "FRMBZEYXGRP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04015763228, + 48.77109482391 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "capacity": "5", + "network": "DRIVECO", + "description": "Jaguar Land Rover - Gap", + "amenity": "charging_station", + "start_date": "2018-07-02", + "charging_station:output": "7.36 kW", + "ref:EU:EVSE": "FRSSDPJLRSVAGAP05000P1", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05215900000, + 44.54017000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SUPER U SUPER U 1", + "network": "SUPER U SUPER U 1", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6566105;FRCPIE6566095", + "ref:EU:EVSE": "FRCPIE6566105;FRCPIE6566095", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97865200000, + 43.63970500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "446858", + "network": "Leclerc", + "description": "Leclerc/WMUMKDAJTR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2646934607710780455" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84174300000, + 50.19850800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "edb27772-956c-50bf-9672-7d8fcf286fb2", + "description": "MOBIVE | Lanton | Avenue de la République (Cassy)", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05671100000, + 44.71238700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "0929b885-9dae-5e0e-baad-81f31482ba44", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Vigneux-sur-Seine - Avenue Henri Charon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42182700000, + 48.70663500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "description": "Allego NISSAN Cusset", + "ref": "FRALLEGO0000151", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO0000151", + "network": "Allego NISSAN Cusset" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44798280000, + 46.13801190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR1522EVCP01;LFR1522EVCP02;LFR1522EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR1522EVCP01;LFR1522EVCP02;LFR1522EVCP03", + "description": "TOULOUSE Labège", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50304300000, + 43.55998900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-11", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*80*2*_*_", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE8022;FRM06PNICE8021", + "description": "CARROS - PARKING BEILOUNO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18918946918, + 43.77733741077 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-15", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ROQUEBRUNE-SUR-ARGENS - PARKING BOUVERIE", + "ref": "FR*SOD*S*WIIZ*211*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ21112;FRA16PWIIZ21111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64647800000, + 43.49939500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RULGFH", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2099717736041877528", + "ref": "471165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04263000000, + 48.72230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PMBRAVR", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "start_date": "2022-12-02", + "description": "Mr. Bricolage - Avranches", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34232000000, + 48.67893000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lans-En-Vercors, Voie du Tram;Réseau eborn/HUNZB9FZ2G", + "ref:EU:EVSE": "FREBNPHUNZB9FZ2G", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30167;HUNZB9FZ2G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58332900000, + 45.12963100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/3F0FDE79-46D8-464E-A740-43AB21FC4D6F", + "capacity": "5", + "ref:EU:EVSE": "FREVZP7291842354619417858", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref": "1148772", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06645600000, + 48.04216400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-03-20", + "ref:EU:EVSE": "FRP07E54528001;FRP07E545280011", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "11", + "description": "TOUL - Place de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89129640000, + 48.67311900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Savines-Le-Lac, Avenue du Faubourg;Réseau eborn/KYWI522MXW", + "ref": "KYWI522MXW;48466", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPKYWI522MXW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40038400000, + 44.52471800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref": "1072524", + "description": "Road/65e9f21cc99806001b332c8f", + "opening_hours": "Th,Su,Mo,Tu,We,Sa,Fr 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "charging_station:output": "3.7 kW", + "ref:EU:EVSE": "FREFLP5043067779487832110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22004500000, + 43.70178000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Hôtel Campanile Douai - Cuincy", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP121002", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05524800000, + 50.38235900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WU01S8EWX9", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "505740", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2891918292017427512", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17023400000, + 43.65808400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1116", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "ref": "FR*V75*PPX11*16", + "description": "Paris | Rue Roubo 1", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38724600000, + 48.84996720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5445760708038775532", + "network": "Freshmile France", + "ref": "597933", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MTUB5LCGWL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16726700000, + 49.23699600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPCORSINVOLVO711001", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Corsin - Chalon-sur-Saône", + "start_date": "2022-06-29", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86278600000, + 46.76904500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-06-23", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900006", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PBRIONNESFETES", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72107700000, + 49.19387000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS21P21317A", + "description": "SICECO/FR*S21*P21317*A", + "ref": "180383" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10898800000, + 47.52014900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78548001", + "description": "SAINT FORGET - Le Mesnil Sevin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99337480000, + 48.71868360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@qwello.fr", + "ref": "FRQWCE3WC88", + "operator": "Qwello", + "description": "Cité des Forges", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-02", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRQWCE3WC88", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "913705380", + "network": "Qwello" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82722068237, + 46.84943667995 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP3481312677336246672", + "capacity": "4", + "charging_station:output": "6.9 kW", + "ref": "1029852", + "opening_hours": "24/7", + "description": "WAAT/FRWATLEXO12DS7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05402700000, + 48.78632600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "ref": "FRIONE423400", + "capacity": "7", + "description": "IONITY Troyes Sud", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2021-12-03", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE423400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77698500000, + 47.47542200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO- VIENNE-LE-CHATEAU - Rue de la corvée", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO- VIENNE-LE-CHATEAU - Rue de la corvée", + "ref:EU:EVSE": "FRS51E239420;FRS51E239421", + "ref": "FRS51E239420;FRS51E239421", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88429700000, + 49.18875100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "db8372e0-08c7-4970-a448-86b85ab04961", + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77118C", + "network": "Ecocharge77", + "description": "Claye-Souilly - Charles de Gaulle", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-18", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68856600000, + 48.94544500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080321", + "owner:ref:FR:SIREN": "531681844", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080321", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "start_date": "2024-04-04", + "description": "RELAIS DE BRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29938000000, + 47.28651800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34111001", + "description": "GANGES - Avenue Louis Pasteur - Parking salle des Fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71050060000, + 43.93310660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PVMWQEJ", + "network": "Mobilité électrique 56", + "ref": "24752", + "description": "Mobilité électrique 56/VMWQEJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45204000000, + 47.66020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892182", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1904381216059679102", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLISUCBTJ2EA96" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23530800000, + 47.62172300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92049F", + "opening_hours": "24/7", + "ref": "484742", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "operator": "Métropolis | FR*MGP", + "description": "Métropolis/FR*MGP*P92049*F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31451700000, + 48.82207900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2020-03-12;2023-06-01", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "description": "Volvo - Groupe Dugardin - Valenciennes", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRSSDPDUGARDINVOLVO593001", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51468200000, + 50.33075800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "description": "CAMPING LE PLO", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRC2P002201", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "operator": "CAR2PLUG", + "network": "CAMPING LE PLO", + "operator:email": "contact@car2plug.fr", + "owner:ref:FR:SIREN": "539500546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97369275776, + 44.33852129529 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3997504286848280176", + "description": "Leclerc/XF6G40NMKY", + "ref": "454350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65781400000, + 49.07382700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | La Rochebeaucourt | Parking Bascule | Rue de Riberac", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d155b8ed-a762-5a87-9111-b220aeeabb35", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38014100000, + 45.48187300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "The Originals Hôtel - Tallard", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-27", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE05TADA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03662500000, + 44.45861900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-07", + "operator:email": "freddy.borneco@gmail.com", + "capacity": "2", + "description": "saint herblain ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHM66666666", + "network": "le colisee", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "818984221", + "operator": "BORNECO", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65464532375, + 47.23437500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P4872554457213457710", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/ATCMVSJYLE", + "ref": "479259" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32358100000, + 49.84268000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13POSK96BNRD9", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Lambesc, Route de Caireval", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26465300000, + 43.65485900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/XKLPLJJ0NF", + "ref": "402674", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P1248079427072410740" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08494400000, + 47.84749200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-06-11", + "capacity": "2", + "amenity": "charging_station", + "description": "GRASSE PARKING GIRATOIRE DU MOULIN DE BRUN", + "ref:EU:EVSE": "FRA16PWIIZ6212;FRA16PWIIZ6211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*62*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94420800000, + 43.65407600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MP20MASWWU", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "ref:EU:EVSE": "FRFR1P8124513267039955334", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892632" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37464700000, + 46.03818500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSOMDAN", + "description": "Ibis - Danjoutin", + "start_date": "2024-04-09", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86108259602, + 47.61681780878 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Montet, Centre technique;Réseau eborn/lemontet", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLEMONTET", + "ref": "lemontet;231523" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05179000000, + 46.40880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FREVZP811362260650929945", + "operator:email": "support@evzen.com", + "ref": "613465", + "charging_station:output": "12 kW;120 kW", + "description": "Norauto - Bornes publiques/45e816a3-ed6c-4883-812d-79703086b18c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05556000000, + 43.42302900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2023-07-25", + "ref:EU:EVSE": "FROTHPOTHR67441;FROTHPOTHR67431;FROTHPOTHR67421;FROTHPOTHR67411", + "ref": "FR*SOD*S*OTHR*674*2*_*_;FR*SOD*S*OTHR*674*1*_*_;FR*SOD*S*OTHR*674*3*_*_;FR*SOD*S*OTHR*674*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U - SAINT-PERE-SUR-LOIRE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37651900000, + 47.78065400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/BBW5E0H7F7;Berrias-Et-Casteljau, Place Andrée Rouveyrol", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPBBW5E0H7F7", + "start_date": "2020-06-21", + "ref": "32665;BBW5E0H7F7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20178200000, + 44.37363500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Bonne, RD907;Réseau eborn/WO2U9NU6WH", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPWO2U9NU6WH", + "ref": "WO2U9NU6WH;32917" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32021000000, + 46.16807000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR36112;FROTHPOTHR36111", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*361*1*_*_", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "description": "CAMPING SANGUINET PLAGE - SANGUINET", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08993400000, + 44.48418800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3509589199961403645", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529415", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MDKATVG2EE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41862000000, + 48.25653400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP30513", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Nîmes, France - Carré Sud", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36371200000, + 43.80797500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HZCA5QOHFO", + "operator:email": "roaming@freshmile.com", + "ref": "454050", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6330581286409298863", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77620000000, + 46.62060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "description": "Volkswagen - ByMyCar - Rillieux la Pape", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS691401", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87526400000, + 45.80963200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHATEAUDUN - Pl. du 18 Octobre", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E127476;FRS28E127475", + "network": "MODULO - CHATEAUDUN - Pl. du 18 Octobre", + "ref:EU:EVSE": "FRS28E127476;FRS28E127475" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32896400000, + 48.07071600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Penvenan-Rue de la poste (parking foyer logement)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22166001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29588200000, + 48.81310300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "owner:ref:FR:SIREN": "517502365", + "capacity": "1", + "opening_hours": "Mo-sat 08:30-19:00", + "ref": "50451;50452", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "description": "KIA - Yffiniac - 24kW DC ;KIA - Yffiniac - 22kW AC ", + "start_date": "2020-12-21", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRZKAE22AC50452;FRZKAE24DC50451", + "network": "Kia Yffiniac - AUTO DESIGN", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.67645500000, + 48.47844700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE297;FRROSE300", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-04-28;2022-04-27", + "description": "Oceane_Pontivy;Oceane_Vannes", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78871500000, + 47.66471600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FLINS-SUR-SEINE - Rue Maurice Berteaux", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78238002", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87078700000, + 48.96299400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE432353;FRIOYE432351;FRIOYE432301;FRIOYE432302;FRIOYE432303;FRIOYE432304;FRIOYE432352", + "capacity": "7", + "network": "Bedenac Est", + "description": "Bedenac Est", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE432353;FRIOYE432351;FRIOYE432301;FRIOYE432302;FRIOYE432303;FRIOYE432304;FRIOYE432352", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33477000000, + 45.16982650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "start_date": "2024-05-15;2021-04-07", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53P53017A;FRS53E53017001", + "description": "BALLEE - Rue De Linière;OuestCharge - Diva Sp - Ballee - Liniere", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41652900000, + 47.93422200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66003001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-15", + "network": "Reveo", + "description": "AMELIE LES BAINS - Avenue Du Huit Mai 1945 - D115" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67169500000, + 42.47314200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE007701;FRIENE007702", + "amenity": "charging_station", + "description": "Culhat", + "capacity": "4", + "network": "Culhat", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE007701;FRIENE007702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35329000000, + 45.86410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COMPEYRES - Place du Périé", + "start_date": "2024-08-21", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS35E12070001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09905800000, + 44.16164100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "description": "LONGNY LES VILLAGES - Rue gaston Gibory", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61230A", + "ref": "SE61-LOVI-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75213000000, + 48.53108900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RCWFXEXJ8M", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4739686444436443365", + "ref": "454131" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48266600000, + 46.70162900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/FVTRXZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PFVTRXZ", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref": "94292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62481200000, + 43.03357000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-08", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - 24 Rue Henri Poincaré", + "ref:EU:EVSE": "FRSIPE92004033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27815570000, + 48.93255110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "225 kW", + "start_date": "2022-06-06", + "opening_hours": "24/7", + "description": "BMW - Altitude 38 Vienne - 38200 - 1", + "ref": "FRCG0E000240;FRCG0E000239", + "network": "BMW - Altitude 38 Vienne - 38200 - 1", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000240;FRCG0E000239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83244864000, + 45.55097189000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE14012;FRM06PNICE14011", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*140*1*_*_", + "description": "CLANS - PONT DE CLANS", + "operator:email": "sav@izivia.com", + "start_date": "2021-07-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13985900000, + 43.97636600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "1db345e8-153d-5ee6-b6b4-a93de768b025", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40", + "description": "MOBIVE | Roquefort | Parking Square Jean Cailluye" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32054700000, + 44.03405400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE59ZABA", + "operator:email": "support@stations-e.com", + "description": "Pasteur - ONNAING", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-18", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59800400000, + 50.39008600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "155097;155098", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Intermarché Super - Chateaulin", + "ref:EU:EVSE": "FRBMPS155098;FRBMPS155097", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08495090000, + 48.19660590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "OUTREAU", + "ref": "LFR3365EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3365EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60386600000, + 50.69636600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "8dd542ad-a4e4-5dac-b58f-e4502274ce55", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Ayen | 19 Route du Soulet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32523700000, + 45.24866900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Mennecy - Centre Commercial de la Verville", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "3214052f-8b3d-528f-90f9-bb57e0d621df" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43008300000, + 48.55388200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP84310AVGM0R1ERE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84310*AVG*M0R1ERE", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "AVENUE JEAN MONNET - MORIERE", + "start_date": "2020-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89941200000, + 43.94018900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3183EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3183EVCP01", + "description": "FONBEAUZARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44973800000, + 43.68257200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Grand Frais - Saint-Mitre-les-Remparts", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-03", + "ref:EU:EVSE": "FRPD1PZCESMR", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04000880000, + 43.43963610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUGOFN7UN37", + "ref": "30299;UGOFN7UN37", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/UGOFN7UN37;Guilherand-Granges, Avenue Georges Clemenceau", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87080400000, + 44.93238700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "Freshmile France/VLTSDBSR0J", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "749397", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRFR1P2122124756233959875", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45477100000, + 43.61849200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-07-11", + "description": "Parking de Dijon Condorcet - DIVIAPARK", + "ref:EU:EVSE": "FRP01E21231003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03310960000, + 47.31976390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDOUP27120CRACKS", + "operator": "Kallista BDR", + "charging_station:output": "360 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-10", + "operator:email": "exploitation@yaway-recharge.eu", + "description": "Station IRVE Kallista BDR de Vernon-Douains", + "opening_hours": " 24/7", + "network": "YAWAY Recharge", + "socket:type2_combo:output": "360 kW", + "owner:ref:FR:SIREN": "820491314" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42534675303, + 49.06520319135 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCZTFGE", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/CZTFGE;Lamastre, Place Predon", + "ref": "CZTFGE;30308", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-06-12", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57977000000, + 44.98700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "HOTEL RESTAURANT LA PERGOLA - SANT-LARY-SOULANT", + "ref": "FR*SOD*S*OTHR*48*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR4811", + "opening_hours": "24/7", + "start_date": "2020-09-04", + "network": "HOTEL RESTAURANT LA PERGOLA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32324600000, + 42.81725500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/N0WQCZ7HFA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "529445", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2468117806495252355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33735200000, + 47.59067700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10026577;FRUBIE10080569", + "charging_station:output": "22 kW", + "ref": "setp0100000104", + "start_date": "2023-12-30", + "description": "UBI-LHSM-182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23377800000, + 49.50350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "515000", + "description": "Freshmile France/EYTZ38P6RI", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9024404494044618653", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73850500000, + 45.88154700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "description": "TOULOUSE - 44 Allées Charles de Fitte", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-06-08", + "ref:EU:EVSE": "FRTLSE31555018", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43185000000, + 43.59672000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529616", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SKVQPRSH7U", + "ref:EU:EVSE": "FRFR1P3544411055362085094" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27385000000, + 49.90490600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/JX4EPALWZ9", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6062832647297553930", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "801765", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19740200000, + 49.28783400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12003001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LES ALBRES - Pôle Multi-Service Route De Rodez", + "start_date": "2023-02-09", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17498200000, + 44.53594500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CONDÉ SUR VESGRE - Mairie", + "start_date": "2023-06-05", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78171001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66139504486, + 48.74112915194 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "GENNES - Place du 19 Mars;OuestCharge - Diva Sp - Gennes - 19 Mars", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49149001;FRS49P49149A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-04;2021-04-23", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23152400000, + 47.34186200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "487284", + "ref:EU:EVSE": "FRS70P3087498265085600627", + "description": "SIED70/PYZKRX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49285900000, + 47.68422400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-12", + "description": "Blaringhem - Rue Pierre Dhedin", + "ref:EU:EVSE": "FRH14E59084001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40377161300, + 50.69204419600 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35306001B1", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "description": "ST PÈRE MARC EN POULET - D7 (Aire de covoiturage du Fort St Père) ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92318900000, + 48.56518600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "917259", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "description": "SIEG 63/FR*S63*P63132*A", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63132A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56246700000, + 45.63282500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/IKKJ2N9RPK", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7176109292705625564", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "ref": "682160" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86385500000, + 46.39119300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PUPBWJL", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "description": "SDEG32/UPBWJL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "94328", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64655500000, + 43.34390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "description": "ARCUEIL - Rue du Colonel Fabien", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94003009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33886800000, + 48.79989700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE25912;FRM06PNICE25911", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-07-18", + "ref": "FR*SOD*S*NICE*259*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA ROQUETTE-SUR-VAR - PARKING BAUS ROUX", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19755211013, + 43.84674824374 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "873441b3-35eb-5660-a9ce-1f3b7b1aa3a4", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Payzac | Place de la Poste, Espace Jp Timbaut" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21737800000, + 45.40074900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*394*1*_*_", + "capacity": "2", + "description": "SIGEIF - PARKING DU JUBILE - SAINT-LEU-LA-FORET", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE39412;FRSIGPSIGE39411", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25216000000, + 49.01320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC01E76497001", + "operator": "Bouygues E&S", + "description": "PETIT COURONNE - Rue Winston Churchill", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02183470000, + 49.38585270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4196EVCP02;LFR4196EVCP03;LFR4196EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "NEVERS - Mouesse", + "ref:EU:EVSE": "LFR4196EVCP02;LFR4196EVCP03;LFR4196EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17142800000, + 46.98900400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "8fd61a36-8fc5-5fbd-832a-755cb5fce9a7", + "description": "MOBIVE | Genouillac | Route de la Chatre", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99287000000, + 46.35557400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "52__COVE", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "fda39e01-c7a9-5829-930e-954409575a57", + "description": "CARPENTRAS - Av. du Mont Ventoux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06805000000, + 44.05873700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P92380*GAR*4VENTS", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "CRECHE ROSE DES 4 VENTS - GARCHES", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP92380GAR4VENTS", + "start_date": "2023-03-29", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412000000, + 48.84965000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BERGERAC", + "ref": "LFR4101EVCP04;LFR4101EVCP02;LFR4101EVCP01;LFR4101EVCP03", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4101EVCP04;LFR4101EVCP02;LFR4101EVCP01;LFR4101EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47010800000, + 44.84417400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMNST", + "capacity": "4", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2022-01-10;2022-05-12", + "operator": "Power Dot France", + "description": "Intermarché - Nousty", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19900100000, + 43.27055700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "133456;HOQDKHZSAT", + "start_date": "2020-06-21", + "description": "Mably, Bonvert;Réseau eborn/HOQDKHZSAT", + "ref:EU:EVSE": "FREBNPHOQDKHZSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08638400000, + 46.08036700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP77390E", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - Roissy-en-Brie - Cimetière", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP77390E", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65611547885, + 48.79461490432 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-05-04", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PCORELN", + "description": "Cora - Essey-lès-Nancy", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24372618008, + 48.70518631465 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Montreuil Campigneulles", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "ref:EU:EVSE": "FRDRVPCRFMKT621701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75085200000, + 50.44915600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bornes SIE-ELY", + "description": "MAULETTE - Ecole", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRELYE78381002", + "charging_station:output": "22 kW", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61589000000, + 48.78796000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*173*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH17312;FROTHPAUCH17311", + "description": "AUCHAN - MANTES LA JOLIES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68479383863, + 48.98092930060 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6790275", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6790275", + "network": "SONEPAR SAUMUR", + "charging_station:output": "11 kW", + "description": "SONEPAR SAUMUR", + "operator:email": "info@chargepoint.com", + "start_date": "2023-10-10", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05622400000, + 47.28158400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P956037141213478057", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "585542", + "description": "Freshmile France/VMK6UA8RNE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.96419000000, + 48.81946400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75P901303", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9013*03", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Rue Berbier du Mets 21", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34965000000, + 48.83549900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7590213070689387640", + "ref": "398894", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/GJWNGA1KMF", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33180000000, + 47.17270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "130 kW", + "socket:type2_combo:output": "130 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Tesla Supercharger Aix-en-Provence", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP1719", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45649300000, + 43.51068200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7623853037049863695", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/M4QQQCYB7O", + "socket:type2_combo:output": "24 kW", + "ref": "682184", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889600000, + 48.44756400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-06-14", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89616641", + "opening_hours": "Mo-Su 07:00-22:04;Mo-Su 07:00-22:03;Mo-Su 07:00-22:01;Mo-Su 07:00-22:00;Mo-Su 07:00-22:02", + "charging_station:output": "22 kW;150 kW", + "description": "R3 - Petite Forêt", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47242400000, + 50.37991100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/MTZJ9GHEC9", + "amenity": "charging_station", + "ref": "461844", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P8773897584139518890", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20757800000, + 49.13680600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TAUSSAC - Le Bourg", + "start_date": "2024-03-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12277001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64420400000, + 44.82828000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "description": "WAAT/FRWA5LQN3ONRXK", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "972647", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA5P4676474786343429547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33780600000, + 46.58608200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS49P49353D", + "description": "OuestCharge - ePremium - Trelaze - Gare", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46863900000, + 47.45227800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "48 kW", + "description": "LABASTIDE ROUAIROUX - Place de la Poste", + "socket:type2_combo:output": "48 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2023-03-09", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8111500111;FRS81E8111500121;FRS81E8111500122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63676679909, + 43.47600874356 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680883;531680880;531680881;531680882", + "start_date": "2022-09-13", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF042595", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "REL. DE VERTOU GRASSINIERE", + "ref:EU:EVSE": "FRHPCPNF042595", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51320000000, + 47.16170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46189001", + "network": "Reveo", + "description": "MAYRINHAC-LENTOUR - Mayrinhac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80545900000, + 44.81331200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "description": "Le palais - 2 Rue des Remparts", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "start_date": "2019-10-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15400000000, + 47.34463890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59178014", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FAUMONT - 660 Route nationale (Salle des Fêtes)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13684449200, + 50.45926807040 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923200", + "description": "Quimper-Avenue du Braden" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08335000000, + 47.98468800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068014", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-06", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Vassal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47682590000, + 48.79278830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHASSENEUIL TELEPORT 2-1;CHASSENEUIL TELEPORT 2-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-02-24", + "ref:EU:EVSE": "FRLMSE12346051371;FRLMSE12346051372;FRLMSE12346051381;FRLMSE12346051382", + "opening_hours": "24/7", + "ref": "B144", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36018700000, + 46.66112500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Métropolis/FR*MGP*P92063*R;Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86)", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "ref:EU:EVSE": "FRMGPP92063R", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "330314", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19704700000, + 48.86314700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 1 CHEMIN DE RONDE - CROISSY-SUR-SEINE", + "ref": "FR*SOD*S*SIGE*70*2*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7021;FRSIGPSIGE7022", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11915200000, + 48.88760300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-10-26", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "ECULLY", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSECLLY", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77736000000, + 45.78899000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Howdens Sartrouville", + "ref:EU:EVSE": "FRLMSE1000058484", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18239600000, + 48.95103500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Espelette | Parking Jaureguia", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a1ed5591-8f4c-5eab-b0e2-9e3e8a3e76e3", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44629700000, + 43.33920300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85128002", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LUÇON - Rue Du Moulin Rougets - Place Des Anciens Abattoirs", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15782000000, + 46.45393000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "AMIENS", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSAMIEN", + "network": "Carrefour Energies", + "start_date": "2023-07-21", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30313000000, + 49.91963000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3709EVCP03;LFR3709EVCP02;LFR3709EVCP01", + "operator:email": "bornes@lidl.fr", + "description": "ECKBOLSHEIM Monnet", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3709EVCP03;LFR3709EVCP02;LFR3709EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68629800000, + 48.58958200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-06-12;2024-06-13", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "description": "E.Leclerc - Quéven", + "charging_station:output": "160 kW;50 kW;187.5 kW;22 kW;200 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLECQUE", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "socket:type2_combo:output": "187.5 kW;200 kW;160 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42190055641, + 47.78999559954 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Val Buech-Meouge, Parking Mairie- Château neuf de chabre;Réseau eborn/BPVCF4NFWS", + "ref": "BPVCF4NFWS;30437", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPBPVCF4NFWS", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81278600000, + 44.27260300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "377772", + "ref:EU:EVSE": "FREVZP5470443261272006749", + "capacity": "8", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARF - Bornes Publiques/0246A32B-4DA5-45F3-83CD-58BBBA40C570", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50703300000, + 43.77511800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Basic Fit - Beauvais", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PGSTBEV", + "start_date": "2022-07-18", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11579400000, + 49.41295920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "38", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRE11PGVXZ", + "opening_hours": "24/7", + "start_date": "2024-07-26", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Leroy Merlin - Nice", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18639500000, + 43.73168100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP13001A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP13001A", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - URBAN JUMP - AIX EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37929500000, + 43.49214000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-09-18;2021-01-20", + "description": "SEMVR - ROUBAIX - GAMBETTA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SEMVR", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*166*13*_*_;FR*SOD*S*OTHR*166*12*_*_;FR*SOD*S*OTHR*166*32*_*_;FR*SOD*S*OTHR*166*33*_*_", + "ref:EU:EVSE": "FROTHPOTHR166331;FROTHPOTHR166321;FROTHPOTHR166131;FROTHPOTHR166121", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17941000000, + 50.69101000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6969635", + "capacity": "2", + "amenity": "charging_station", + "description": "CERRD STATION 1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6969635", + "network": "CERRD STATION 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-07-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09432800000, + 50.67015400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "160 kW;60 kW", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "598371", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2503811512810750181", + "charging_station:output": "22 kW;60 kW;160 kW", + "description": "Freshmile France/ZET3IOQSGY", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79080200000, + 45.20857600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-09-05", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP122088", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL CAEN MEMORIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39977000000, + 49.20053000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "505593", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P216485251792438246", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/IBRJ38EY2H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19897100000, + 43.68339800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Village auto Niort", + "network": "DRIVECO", + "start_date": "2023-10-04;2023-10-06;2023-10-05", + "amenity": "charging_station", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPEMILFREY790001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41225600000, + 46.33514200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/JRNPEZU7Q6", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "368869", + "ref:EU:EVSE": "FRFR1P8083366537976531502", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53576200000, + 49.29021300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Ursulines - Nuits Saint-Georges", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBOISSET217005", + "start_date": "2022-12-20", + "charging_station:output": "7.36 kW", + "capacity": "10", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94486100000, + 47.13682800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "network": "MODULO - CHATEAUNEUF EN THYMERAIS - Jean Moulin", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHATEAUNEUF EN THYMERAIS - Jean Moulin", + "ref": "FRS28E134302", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS28E134302", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24419300000, + 48.57934500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P5611268171997075631", + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/JSBX7JXEXQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67584600000, + 48.14009100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P2315734106266255369", + "ref": "1127994", + "amenity": "charging_station", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA5LSFEQV1TV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11704000000, + 46.45514000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-24", + "description": "ST HILAIRE DU HARCOUET - Eglise", + "ref:EU:EVSE": "FRS50P50484001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09073220000, + 48.57591060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "description": "SAINT-SERNIN-LES-LAVAURS - Chemin des Boulbènes", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81270001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97147100000, + 43.54804300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF078228", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-10-12", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "531681691;531681690", + "ref": "FRHPCPNF078228", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS PRUNAY", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83180000000, + 48.57120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AVRILLE - Parking Victor Hugo;OuestCharge - Diva Sp - Avrille - Victor Hugo", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-03-27;2021-05-26;2024-04-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49015003;FRS49P49015C", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59073200000, + 47.50625200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/fleurymoulin", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PFLEURYMOULIN", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "48937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96890000000, + 49.24150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-17", + "charging_station:output": "22 kW", + "description": "LA GORGUE - Pavé de Laventie", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH09E59268003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75268697079, + 50.64161966082 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30126001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-09-29", + "network": "Reveo", + "description": "GARRIGUES SAINTE EULALIE - Rue André Conard (Foyer Communal)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31305300000, + 43.99384200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilité électrique 56/LLTZYPX3A27ZG0", + "ref": "1084860", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56P389796676484160419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79219800000, + 47.48998100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-12-01", + "description": "FONTAINE LE COMTE-1-2;FONTAINE LE COMTE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B040", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346390321;FRLMSE12346390311", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26676000000, + 46.53403400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRMGPP94002A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "1193911", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P94002*A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42221300000, + 48.78577200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Shell Recharge", + "description": "Shell SAINT MICHEL DE RIEUFRET", + "operator:email": "customerservice@shellrecharge.com", + "ref": "FRSHEE90;FRSHEE91", + "amenity": "charging_station", + "start_date": "2024-03-21", + "network": "Shell SAINT MICHEL DE RIEUFRET", + "charging_station:output": "300 kW;125 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSHEE90;FRSHEE91", + "socket:type2_combo:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43444630000, + 44.64615904000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E64445007", + "capacity": "8", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PAU - Parking Verdun NORD", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-01-03;2024-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37564990000, + 43.29989750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A4 Brumath Ouest", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89369819", + "start_date": "2023-02-02", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69195000000, + 48.72381000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "8d73ee66-e359-5e00-8931-01e7c8f0bd72", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Baignes-Sainte Radegonde | Parking Mairie | Rampe Saint Nicolas", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23647000000, + 45.38309700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE62HSXA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "description": "Stade - HUBY SAINT LIEU", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03539000000, + 50.38149700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9006892;FRALLEGO9006891;FRALLEGO9006872;FRALLEGO9006871;FRALLEGO9004452;FRALLEGO9004451;FRALLEGO9002793;FRALLEGO9002792;FRALLEGO9002791;FRALLEGO9001311;FRALLEGO9001312", + "amenity": "charging_station", + "network": "Allego Carrefour Saint-Pol", + "start_date": "2023-03-16", + "description": "Allego Carrefour Saint-Pol", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9006892;FRALLEGO9006891;FRALLEGO9006872;FRALLEGO9006871;FRALLEGO9004452;FRALLEGO9004451;FRALLEGO9002793;FRALLEGO9002792;FRALLEGO9002791;FRALLEGO9001311;FRALLEGO9001312", + "operator:email": "info@allego.eu", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33501800000, + 51.02282300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3591EVCP05;LFR3591EVCP04;LFR3591EVCP03;LFR3591EVCP01;LFR3591EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3591EVCP05;LFR3591EVCP04;LFR3591EVCP03;LFR3591EVCP01;LFR3591EVCP02", + "capacity": "10", + "description": "CHILLY MAZARIN Massy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30578600000, + 48.71251900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM29E29235001", + "description": "RELECQ-KERHUON - Rue Vincent Jézéquiel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.39197300000, + 48.40199300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Ceillac, Route des Oches;Réseau eborn/LLYSF4HMB1D8DD", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLLYSF4HMB1D8DD;FREBNP5653874060340517005", + "start_date": "2024-07-19", + "ref": "1162644;LLYSF4HMB1D8DD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77750000000, + 44.66938900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4738288113198645198", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "398891", + "opening_hours": "24/7", + "description": "Freshmile France/GE9BBRGUJX", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62097000000, + 45.55860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VINCENNES - Marigny", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E712780013;FRP07E712780012;FRP07E71278001;FRP07E712780011", + "capacity": "33", + "start_date": "2020-06-18;2023-09-21;2022-12-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43955300000, + 48.84538600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cros-De-Georand, La Palisse;Réseau eborn/YPCKYR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75077;YPCKYR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPYPCKYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10358000000, + 44.77790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "description": "Road/64a6bda563faa3001c61b0e2", + "charging_station:output": "22 kW", + "ref": "920322", + "operator:email": "roaming-dev@road.io", + "opening_hours": "Sa,Th,Fr,Mo,We,Su,Tu 08:00-18:00", + "ref:EU:EVSE": "FREFLP794433613411976703", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37554400000, + 44.86313800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INTERMARCHE CLAUGINIE", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR28011;FROTHPOTHR28021", + "start_date": "2021-11-25", + "amenity": "charging_station", + "capacity": "1", + "description": "INTERMARCHE CLAUGINIE - PORT-SAINT-LOUIS-DU-RHONE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*280*1*_*_;FR*SOD*S*OTHR*280*2*_*_", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80555200000, + 43.38784100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6607575", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED TOULON", + "description": "CGED TOULON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6607575" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04019300000, + 43.14541000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "abrest;231592", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPABREST", + "description": "Abrest, Jean Moulin;Réseau eborn/abrest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44380000000, + 46.09920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s541050", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P8120942731571130841", + "operator:email": "exploitation@waat.fr", + "ref": "1170678", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96573800000, + 50.26820600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1017060", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSBXUAQOA4QPT", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8273072377853237649" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49490000000, + 48.47113900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00356", + "description": "Mama Shelter Lille", + "owner:ref:FR:SIREN": "821185634", + "network": "ACCOR Hotels", + "start_date": "2021-03-01", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRTCBP00356", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07096800000, + 50.63916100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/JBKLIDJFMT", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P326380825811911660", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454059", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05968500000, + 49.10549500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-12-14", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPVALENCEHYUNDAI260001", + "operator:email": "support@driveco.com", + "description": "Hyundai - Valence", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91408400000, + 44.94048400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-05-25", + "description": "CLEDEN CAP SIZUN - Place du 19 Mars 1962", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E29028001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.65007100000, + 48.04843700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P632414313156990419", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/JJYAMZXUCU", + "ref": "896742" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10845700000, + 48.31857800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC46417;FRZP1PEAC46415;FRZP1PEAC46414;FRZP1P482907690493526583;FRZP1PEAC46416", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "819252255", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "2d4e8a5e-2aa3-4138-973a-dab11722d226;575882", + "description": "Zephyre/1909484;GHO Orleans sud la source", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "network": "Zephyre;GHO Orleans sud la source", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92972200000, + 47.81397400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-05-18", + "capacity": "2", + "amenity": "charging_station", + "description": "Hutt_senonches", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE86" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04228300000, + 48.55315700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/PKNFQU", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "64694", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PPKNFQU", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31327000000, + 50.00360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "description": "IZIVIA FAST - MCDONALDS - CAZERES", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*167*2*_*_;FR*SOD*S*FAST*167*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST16713;FRIZFPFAST16712;FRIZFPFAST16711;FRIZFPFAST16721;FRIZFPFAST16722;FRIZFPFAST16723", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07560379688, + 43.23655040155 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4727;FRS41E4728", + "description": "MODULO - LA FERTE BEAUHARNAIS - Rue du Général Alexandre de Beauharnais", + "capacity": "2", + "network": "MODULO - LA FERTE BEAUHARNAIS - Rue du Général Alexandre de Beauharnais", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E4727;FRS41E4728", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84899500000, + 47.54260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/TIBFVTD8A6", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref": "598185", + "ref:EU:EVSE": "FRS60P6298657575403575805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69325000000, + 49.12523000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON7741;FRGLYPLYON7721;FRGLYPLYON7711;FRGLYPLYON7731", + "ref": "FR*SOD*S*LYON*77*2*_*_;FR*SOD*S*LYON*77*1*_*_;FR*SOD*S*LYON*77*3*_*_;FR*SOD*S*LYON*77*4*_*_", + "start_date": "2021-05-26", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY501 - VIEUX- LYON - SAINT-PAUL", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82820300000, + 45.76560600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E214078;FRS37E214077", + "description": "MODULO - LOUESTAULT – Dindassière", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - LOUESTAULT – Dindassière", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E214078;FRS37E214077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65008968000, + 47.61777534000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PFWUXXF", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/FWUXXF", + "opening_hours": "24/7", + "ref": "25071", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11010000000, + 47.97920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRG10P42059A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-01-06", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRG10P42059A", + "operator:email": "contact@e-totem.fr", + "description": "GARAGE DU CENTRE", + "network": "GARAGE DU CENTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37912700000, + 45.63536000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "network": "MODULO - NANCY - Pkg. République - T2", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "capacity": "10", + "ref:EU:EVSE": "FRN54E243110;FRN54E242793;FRN54E242792;FRN54E242773;FRN54E242772;FRN54E242820;FRN54E242821;FRN54E243111;FRN54E243117;FRN54E243118", + "ref": "FRN54E243110;FRN54E242793;FRN54E242792;FRN54E242773;FRN54E242772;FRN54E242820;FRN54E242821;FRN54E243111;FRN54E243117;FRN54E243118", + "start_date": "2024-04-03", + "description": "MODULO - NANCY - Pkg. République - T2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17667400000, + 48.68841000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-11-25", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*212*1*_*_", + "description": "SIGEIF - RUE DE RUZE - VILLEPARISIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE21211;FRSIGPSIGE21212", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62008500000, + 48.94060600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E002076;FRCG0E002075;FRCG0E002074;FRCG0E002073", + "description": "Volkswagen Auray - 56400 - 2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-11-28", + "capacity": "4", + "network": "Volkswagen Auray - 56400 - 2", + "ref": "FRCG0E002076;FRCG0E002075;FRCG0E002074;FRCG0E002073", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00414800000, + 47.66412800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-09-06", + "ref:EU:EVSE": "FRLMSP89931877", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Kyriad Nancy Est - Essey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24860800000, + 48.71258400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "0eafdac8-8149-5f98-bb09-f18aa5b46986", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Mirambeau | Rue des Écoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56950500000, + 45.37300200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-22", + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSE1PSE87ABCA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "CITROEN - AIXE AUTO", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12956200000, + 45.79560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-03;2021-05-06", + "capacity": "6", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOULOUSE - Rue du Docteur Suzanne Noël - Parking du barry - Parking P1", + "ref:EU:EVSE": "FRA31E31555009", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40454137300, + 43.60150146000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2936EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SAINT AMBROIX Graveirol", + "ref:EU:EVSE": "LFR2936EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19256400000, + 44.25868100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38179001", + "description": "GIERES - Rue De La Gare (CITIZ)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78400000000, + 45.18462000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75050;P4KF4WCINB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPP4KF4WCINB", + "start_date": "2020-06-21", + "description": "Saint-Julien-En-Beauchêne, Aire du Beauchêne;Réseau eborn/P4KF4WCINB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70194900000, + 44.61955800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1605637315651249271", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521219", + "description": "Freshmile France/A8RIVCHP5G", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43169700000, + 44.17894900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "SAINT DENIS - Porte de Paris", + "ref:EU:EVSE": "FRP07E93066001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-07-09;2020-06-16;2020-07-28;2020-09-09", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35873500000, + 48.92956200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "LWXQSAKCCJ", + "ref:EU:EVSE": "FREBNPLWXQSAKCCJ", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Valence, Place Jean Collombet", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89629299000, + 44.92995405000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Theix-Noyalo - Hôtel Inn Design Resto Novo", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPTHNIN", + "start_date": "2023-10-25", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69886100000, + 47.64472100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP01E90097001", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "Parking Hôpital de Belfort - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87062000000, + 47.57522000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6647205", + "start_date": "2022-10-28", + "network": "SONEPAR CONNECT VICHY", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "description": "SONEPAR CONNECT VICHY", + "ref:EU:EVSE": "FRCPIE6647205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44710600000, + 46.14103700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "ref:EU:EVSE": "FRECHPUVA1GK3BEZ", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "UVA1GK3BEZ", + "description": "La Baule , Parking Maison de quartier de Guézy", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "network": "Easycharge services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657000, + 47.27512821000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1810", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX18*10", + "start_date": "2021-09-14", + "description": "Paris | Boulevard de Clichy 2", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33950000000, + 48.88230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLNWWPF6G1QQTB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "971930", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P261206062928570299", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87702200000, + 45.79513200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Avenue Gambetta 227", + "network": "Belib'", + "ref": "FR*V75*P9020*02", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P902002", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40519600000, + 48.87413400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/VYSYWYNZTS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3170525733168509618", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "782553", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77588200000, + 48.21547700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPHYUNDAIAUCH320001", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Hyundai - Auch Automobile", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-06-28", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61312500000, + 43.66351700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Plouguernevel-Le bourg - route de Rostrenen", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22220001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25225700000, + 48.23972300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11205001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "LIMOUSIS - Parking Grotte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41277777778, + 43.34222220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "network": "FORD VITROLLES", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZPEE22AC35840", + "start_date": "2020-07-01", + "ref": "35840", + "description": "Ford - Vitrolles - 22kW AC ", + "owner:ref:FR:SIREN": "332009471", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28778850000, + 43.42273690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09282002", + "charging_station:output": "22 kW", + "description": "SAVERDUN 3 - Allée Du Balouard", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57439800000, + 43.23477600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/VYXQKS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346340", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80P1810613147157788469" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30094000000, + 49.89640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - GRANDE SYNTHE", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*46*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-15", + "ref:EU:EVSE": "FRIZFPFAST4613;FRIZFPFAST4611;FRIZFPFAST4612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31229510000, + 51.02303430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18;2021-04-09", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Isse - Gare;ISSE - Rue De La Gare", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44075001;FRS44P44075A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45234700000, + 47.62345400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Gouaix;GOUAIX - Avenue De La Gare", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-12", + "ref:EU:EVSE": "FRS77P77208A;FRS77E77208001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61Q3TKEJKHYAZT3HRD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29356300000, + 48.48260100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;47 kW;150 kW", + "ref": "993417", + "capacity": "8", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref:EU:EVSE": "FRGYMP7485250163199770257", + "description": "GreenYellow Shift Mobility/69" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91963000000, + 45.64810600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220450;FRS37E220446", + "capacity": "2", + "start_date": "2021-04-02", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - SAINT HIPPOLYTE - Pkg. du stade", + "opening_hours": "24/7", + "network": "MODULO - SAINT HIPPOLYTE - Pkg. du stade", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220450;FRS37E220446" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10147100000, + 47.05790700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "ref": "c5f4df0d-f931-5533-980f-1de59d6bbd15", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCTLB Lachapelle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79138000000, + 48.41958600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "90 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "network": "Intermarché Privas", + "socket:type2_combo:output": "90 kW", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "operator": "C4Energies", + "description": "Intermarché Privas", + "operator:email": "contact@c4energies.com", + "owner:ref:FR:SIREN": "307962415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59739600000, + 44.72637400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "operator": "Mobilize Power Solutions", + "ref": "f8dde12e-b308-4fb2-b5af-07a800bbf5d7", + "ref:EU:EVSE": "FRMBZEEVHJW", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "description": "JRA SAUMUR", + "network": "JRA SAUMUR", + "start_date": "2023-07-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05998100000, + 47.27468100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE95063002", + "start_date": "2022-04-19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "BEZONS - Rue Jean Jaurès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21988740892, + 48.92423181519 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BORNE U BORNE PUBLIQUE3", + "amenity": "charging_station", + "capacity": "4", + "network": "BORNE U BORNE PUBLIQUE3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6540215;FRCPIE6540205", + "ref": "FRCPIE6540215;FRCPIE6540205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68082300000, + 47.82015900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRLE2P1994329388472069903", + "ref": "479277", + "description": "Leclerc/RAWNYUUG7H", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004200000, + 47.79731900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "ac7ea2c2-9333-5b3c-b926-09d89dcb64f8", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Andernos les Bains | Boulevard de la Plage- Parking Port Ostreicole", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10656200000, + 44.74374000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Réseau AlterBase - Bressuire - Siège de la Communauté d'Agglo 2B", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2020-03-16", + "ref:EU:EVSE": "FRSEOPAB79049P008A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48870200000, + 46.84221500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Airbus Saint Martin Parking A08", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRAIRPAIRBUSSTMARTIN313004", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35130400000, + 43.61565800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4044EVCP02;LFR4044EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR4044EVCP02;LFR4044EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "LE HAILLAN Magudas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67294700000, + 44.85976900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PLACE MOZART RP", + "start_date": "2021-03-18", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE5021;FRM06PNICE5022", + "ref": "FR*SOD*S*NICE*50*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26230100000, + 43.70061000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LE CANNET PARKING DES FADES", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*188*1*_*_", + "start_date": "2022-08-04", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ18812;FRA16PWIIZ18811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99869300000, + 43.57472400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/redinggare", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7745248782141332453", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "454452", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09613000000, + 48.74300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PBRTLOS", + "start_date": "2023-05-11", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Brit Hotel - Pau", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41563060000, + 43.31329930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/FR*EBN*PSRX4IK756Y", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "32977", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSRX4IK756Y", + "network": "Réseau eborn", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "43 kW", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40901200000, + 44.61236400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP2475732128429579409", + "ref": "697541", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "Norauto - Bornes publiques/219E136A-89D2-44AD-8B09-3B5AFBBF6B28", + "opening_hours": "Sa,Tu,Mo,Th,We,Fr 08:00-18:59,Tu,Sa,Mo,Th,Fr,We 09:00-19:59", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25558500000, + 43.34751100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2023-03-28", + "description": "TOULOUSE - Parking Saint Cyprien", + "ref:EU:EVSE": "FRP07E315550532;FRP07E315550531;FRP07E31555053" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42975410000, + 43.59788400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP5919539320068951959;FREBNP2993713361282683529", + "capacity": "2", + "amenity": "charging_station", + "ref": "741102;741111", + "network": "Réseau eborn", + "description": "Réseau eborn/NLASTBEEVJ;Réseau eborn/R7XOIJXQOL", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79934900000, + 45.57534500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/LLP8KG9LX2LWYK;Muret, rue de Monès del Pujol", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "ref": "998769;LLP8KG9LX2LWYK", + "start_date": "2023-11-21", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRECHP375283809338463793;FRECHPLLP8KG9LX2LWYK", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33061300000, + 43.46572100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP101110", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-27;2022-12-26", + "description": "ENGIE Vianeo - A6 La Forêt", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "300 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71412900000, + 47.10525300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Freshmile France/XDNLYWELAE", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "370184", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4467802795652495740", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57068000000, + 44.84367200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Avenue Richerand 11", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX10*03", + "start_date": "2021-07-07;2021-07-08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36628800000, + 48.87237000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23012940000, + 49.96697820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/IXBUJPMFSX", + "ref": "742941", + "ref:EU:EVSE": "FRFR1P7618520562138474632", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94839600000, + 48.28222100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "16", + "ref:EU:EVSE": "FRSSDPACTENAVOLVO785601", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "description": "Volvo - Actena Automobiles - Le Port Marly", + "operator:email": "support@driveco.com", + "start_date": "2022-12-08;2022-11-22", + "operator": "DRIVECO", + "opening_hours": "Mo 08:30-12:30, Mo 13:30-19:00, Tu 08:30-12:30, Tu 13:30-19:00, We 08:30-12:30, We 13:30-19:00, Th 08:30-12:30, Th 13:30-19:00, Fr 08:30-12:30, Fr 13:30-19:00, Sa 09:00-12:30, Sa 14:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10862500000, + 48.88192900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25PGILLEYCRET", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/gilleycret", + "ref": "79903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48002000000, + 47.04730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E95964", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRS18E95964", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - AUBIGNY - Pl. de la Résistance", + "network": "MODULO - AUBIGNY - Pl. de la Résistance" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44161714000, + 47.48927488000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78397002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE MESNIL SAINT DENIS - Marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95692360000, + 48.74475020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - PERPIGNAN - REPUBLIQUE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2024-07-02;2022-11-23", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRQPKPQPRK5091;FRQPKPQPRK5081;FRQPKPQPRK5071;FRQPKPQPRK5061;FRQPKPQPRK5051;FRQPKPQPRK5021;FRQPKPQPRK50101;FRQPKPQPRK5011;FRQPKPQPRK50111;FRQPKPQPRK50121;FRQPKPQPRK50131;FRQPKPQPRK50141;FRQPKPQPRK50151;FRQPKPQPRK50161;FRQPKPQPRK50171;FRQPKPQPRK5031;FRQPKPQPRK5041", + "ref": "FR*SOD*S*QPRK*50*9*_*_;FR*SOD*S*QPRK*50*7*_*_;FR*SOD*S*QPRK*50*6*_*_;FR*SOD*S*QPRK*50*4*_*_;FR*SOD*S*QPRK*50*1*_*_;FR*SOD*S*QPRK*50*10*_*_;FR*SOD*S*QPRK*50*11*_*_;FR*SOD*S*QPRK*50*12*_*_;FR*SOD*S*QPRK*50*13*_*_;FR*SOD*S*QPRK*50*14*_*_;FR*SOD*S*QPRK*50*15*_*_;FR*SOD*S*QPRK*50*16*_*_;FR*SOD*S*QPRK*50*17*_*_;FR*SOD*S*QPRK*50*2*_*_;FR*SOD*S*QPRK*50*3*_*_;FR*SOD*S*QPRK*50*5*_*_;FR*SOD*S*QPRK*50*8*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89532600000, + 42.69822400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "description": "CASTELNAU DE MONTMIRAL - Rue Lafayette", + "opening_hours": "24/7", + "start_date": "2017-01-19", + "ref:EU:EVSE": "FRS81E8106400112;FRS81E8106400111;FRS81E8106400121;FRS81E8106400122", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82212879297, + 43.96433623203 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2020-10-29", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Centre de la France", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE410100", + "ref:EU:EVSE": "FRIONE410100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41707500000, + 46.75193700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50680001", + "network": "e-charge50", + "description": "ST CLAIR SUR L'ELLE - Place de la Mairie", + "start_date": "2017-02-21", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02923420000, + 49.19169250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VARREDDES - Coteret", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS77E77483001", + "charging_station:output": "22 kW", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92484300000, + 49.00251800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080155", + "capacity": "16", + "amenity": "charging_station", + "start_date": "2023-07-17;2019-07-16", + "owner:ref:FR:SIREN": "531680476;531680477;531680471;531680469;531680470;531680468;531680467;531680465;531680462;531680464;531680463;531680466;531680473;531680472;531680475;531680474", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080155", + "description": "LIMOURS JANVRY", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14810000000, + 48.63660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E244424;FRS41E244423", + "ref:EU:EVSE": "FRS41E244424;FRS41E244423", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2021-05-23", + "description": "MODULO - CHISSAY EN TOURAINE - Pl. du Château", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHISSAY EN TOURAINE - Pl. du Château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13388900000, + 47.33688900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-11-16", + "ref:EU:EVSE": "FRS56PNRXSYF", + "description": "Vannes - Place de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75940600000, + 47.65632400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2023-12-08", + "ref": "FR*SOD*S*LYON*200*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "LY802 - MONPLAISIR - VILLON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRGLYPLYON20011;FRGLYPLYON20012", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86658900000, + 45.74566740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2023-03-24", + "capacity": "4", + "description": "Metropolis - Proximité - Issy-les-Moulineaux - Roosevelt", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92040C", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26103455000, + 48.82914716000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-01-30", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 08:00-19:30, Tu 08:00-19:30, We 08:00-19:30, Th 08:00-19:30, Fr 08:00-19:30, Sa 08:00-19:30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Peugeot - HESS - Hirson", + "ref:EU:EVSE": "FRSSDPHESSPEUGEOT025001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09307000000, + 49.90628800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-07", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76636001", + "charging_station:output": "22 kW", + "description": "SAINT PIERRE DE VARENGEVILLE - Chemin de la Messe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92846600000, + 49.49730600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "471228", + "opening_hours": "We,Th,Mo,Tu,Fr 07:45-20:15,Sa 07:45-20:45", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P9079918275866555363", + "description": "Leclerc/BL46XIQUQH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994600000, + 48.43078500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint | Savin | Place de la Liberation", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "2336b2a8-800f-5875-b65a-dbb10f293ba2", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44713000000, + 45.13994600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "SAINT PRIX - Parking de La Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS95E95574001", + "charging_station:output": "22 kW", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26133999054, + 49.00695818378 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSITE00000173", + "start_date": "2024-01-10", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "description": "BAZALP GUICHAINVILLE EVREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17221890000, + 49.00722540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LLNBJHM2N1FEKS", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "971996", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P7883912977755536630" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04086800000, + 49.29043300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Cassis, Parking Daudet", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PNTVGVQ3QZ5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53625900000, + 43.21860800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7643185342056497281", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/TZRYB3IGZ1", + "ref": "505830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27002000000, + 48.19667300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*38*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "LE ROURET PARKING MAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-05", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ3811;FRA16PWIIZ3812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00557200000, + 43.67437700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "971753", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLILEVD3L12TGE", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P956971851944346024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34229100000, + 48.95451100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Garage Renault Dacia - Avenue des Vignerons La Destrousse", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PRNTDST", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-08-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59911040000, + 43.38832040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP4957771496997017468;FREBNPLLTHE8SHY23Y9T", + "description": "Réseau eborn/LLTHE8SHY23Y9T;Chindrieux, Parking maison de la santé", + "opening_hours": "24/7", + "ref": "1154280;LLTHE8SHY23Y9T", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84959500000, + 45.81324400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "ENGIE MAMP - Bornes publiques/0CD4962B-AEB4-4B15-A3AB-881F27F33F73", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP2898567042418179621", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "1034748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37159000000, + 43.31282700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR64211;FROTHPOTHR64212", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UTILE - SAINT-PIERRE-DE-VASSOLS", + "ref": "FR*SOD*S*OTHR*642*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14078300000, + 44.09692300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026813;LLQDKJN4C8Y10O", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LLQDKJN4C8Y10O;Hyères, Quartier la Créstade", + "start_date": "2023-12-20", + "ref:EU:EVSE": "FREBNP7858058218242167060;FREBNPLLQDKJN4C8Y10O" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11754300000, + 43.11525300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "LLSOQXMFK51OTH", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPLLSOQXMFK51OTH", + "description": "Modane, Rue des Bettets (val Fréjus)", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65391204000, + 45.17407601000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*335*1*_*_;FR*SOD*S*OTHR*335*2*_*_", + "description": "CREPS DE POITIERS - CHATEAU", + "network": "CREPS DE POITIERS", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR33521;FROTHPOTHR33511", + "start_date": "2022-03-10", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26520800000, + 46.57823900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1487728329642549664", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1115979", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLSON96ZU1HRJC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18367200000, + 49.08283900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX15*35", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1535", + "start_date": "2021-11-03", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Avenue du Maine 4", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31981090000, + 48.84470610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/WJCB1SAKPR", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P7027816626981805894", + "ref": "515129", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94138700000, + 47.71353600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARBMW774001", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW Mini - ByMyCar - Marne la Vallée", + "operator:email": "support@driveco.com", + "start_date": "2022-06-15", + "operator": "DRIVECO", + "opening_hours": "Mo 07:30-12:00, Mo 13:30-19:00, Tu 07:30-12:00, Tu 13:30-19:00, We 07:30-12:00, We 13:30-19:00, Th 07:30-12:00, Th 13:30-19:00, Fr 07:30-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67206600000, + 48.86035800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PVERNEUILAVREFOCH2;FRS27PVERNEUILAVREFOCH3", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900114", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92961600000, + 48.74003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Lanrodec-Place de l'église", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22116001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-06", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03163200000, + 48.51789100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZIME22AC118367;FRZIME22AC118370;FRZIME22AC71572;FRZIME22AC71607", + "amenity": "charging_station", + "capacity": "1", + "network": "Intermarché - Saint-Paul les Dax", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": " Intermarché - Saint-Paul les Dax - 22kw AC ;Intermarché - Saint-Paul les Dax - 22kw AC ;[43.72744440,-1.07372220]", + "start_date": "2020-11-18;2022-02-23;2021-09-03", + "opening_hours": "Mo-sat 08:30-20:00", + "ref": "71607;118367;118370;71572", + "owner:ref:FR:SIREN": "324104935", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07372220000, + 43.72744440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE24", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-03-12", + "amenity": "charging_station", + "capacity": "3", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "lillegrandpalais", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07980870000, + 50.63197010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78118002", + "network": "CPO Alizé Liberté Public", + "description": "BUCHELAY - Rue Du Béarn", + "start_date": "2022-07-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66439600000, + 48.99001700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIOYE410153;FRIOYE410151;FRIOYE410103;FRIOYE410102;FRIOYE410101;FRIOYE410104;FRIOYE410152", + "operator:email": "info@ionity.eu", + "start_date": "2020-11-07", + "network": "Centre de la France", + "opening_hours": "24/7", + "description": "Centre de la France", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE410153;FRIOYE410151;FRIOYE410103;FRIOYE410102;FRIOYE410101;FRIOYE410104;FRIOYE410152", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41731790000, + 46.75183700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDED52/X2IJYCW9UM", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "ref:EU:EVSE": "FRS52P1973748894421050369", + "opening_hours": "24/7", + "ref": "474528", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41337400000, + 48.27127500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SOUES - 34A Avenue Henri Barbusse", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65433001", + "start_date": "2022-02-16", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09745000000, + 43.21414000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Hagetmau", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-03-06", + "ref": "FRIENE005102;FRIENE005101", + "description": "Hagetmau", + "ref:EU:EVSE": "FRIENE005102;FRIENE005101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56657400000, + 43.65456800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-29;2021-12-24", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34301006", + "operator": "Bouygues E&S", + "description": "SETE - Route de Cayenne - Parking de la Gare", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69861900000, + 43.41287800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SE61-COSA-001", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61116A", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "CONDE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03643300000, + 48.43370700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4587450144613110652", + "ref": "398909", + "capacity": "12", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JCGVYIN2UP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156000000, + 43.65070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-26", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "PSBNGZ;38842", + "description": "Roulez Électrique En Haute-Garonne/PSBNGZ;La Salvetat-Saint-Gilles, F. Mitterrand", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PPSBNGZ", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27251000000, + 43.57770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-11-24", + "description": "Promocash - Béziers", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPPROMOCASHBEZIERS345001", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 06:30-12:00, Mo 13:30-18:30, Tu 06:30-18:30, We 06:30-18:30, Th 06:30-18:30, Fr 06:30-18:30, Sa 06:30-12:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27497500000, + 43.33448300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "ref": "FRCG0E000131;FRCG0E000130;FRCG0E000120;FRCG0E000127;FRCG0E000128;FRCG0E000129;FRCG0E000132;FRCG0E000133", + "charging_station:output": "11 kW;50 kW;2 kW;22 kW", + "amenity": "charging_station", + "network": "BMW MINI - ISERAN AUTOMOBILES - CHAMBERY - 73000 - 1", + "opening_hours": "Sa 08:00-18:00,Fr 08:00-18:00,Th 08:00-18:00,We 08:00-18:00,Tu 08:00-18:00,Mo 08:00-18:00", + "ref:EU:EVSE": "FRCG0E000131;FRCG0E000130;FRCG0E000120;FRCG0E000127;FRCG0E000128;FRCG0E000129;FRCG0E000132;FRCG0E000133", + "start_date": "2022-03-10", + "description": "BMW MINI - ISERAN AUTOMOBILES - CHAMBERY - 73000 - 1", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89408000000, + 45.59835500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*113*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE11312;FRM06PNICE11311", + "start_date": "2021-01-28", + "description": "VILLEFRANCHE-SUR-MER - PARKING PORT DE LA DARSE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30791400000, + 43.69926100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "70f88450-0f83-53ba-91e7-e912e702923a", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Vieux Boucau | Avenue de la Liberté", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40224700000, + 43.78672400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-07", + "description": "Algrange République", + "ref:EU:EVSE": "FRSE1PSE57ABDA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04799400000, + 49.35877100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS191330;FRBMPS191331", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Bump - Howard House - Bron", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "191330;191331", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93717500000, + 45.73038500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AMIENS - Passive", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3917EVCP01;LFR3917EVCP02;LFR3917EVCP03;LFR3917EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3917EVCP01;LFR3917EVCP02;LFR3917EVCP03;LFR3917EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31926400000, + 49.90711700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-7E, 12 Place du Colonel Edon", + "ref:EU:EVSE": "FRM13PAQMI6HDE7N", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37005600000, + 43.28624200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "ref": "135580", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRS90PGEKNCN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "description": "TE90/GEKNCN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84920000000, + 47.64970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P83580*GAS*TRIDENT", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "description": "PARKING TRIDENT GASSIN", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP83580GASTRIDENT", + "start_date": "2019-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58643700000, + 43.26261100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3847EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SETE - Papillons", + "ref": "LFR3847EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65765200000, + 43.39979500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Super U - Saint-Pol-de-Léon", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-05-25;2023-05-26", + "ref:EU:EVSE": "FRPD1PSYUSPL", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98666570430, + 48.68789318056 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Crest, Aire Multimodale de Saint Ferreol", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPSURFS8ZTGN", + "start_date": "2022-03-22", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "ref": "SURFS8ZTGN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02580276000, + 44.72066204000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "start_date": "2023-12-19", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFASE33210", + "capacity": "4", + "operator:email": "support@fastned.nl", + "ref": "FRFASE33210", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "description": "Fastned Aire de Saint-Julien-Mont-Denis", + "network": "Fastned Aire de Saint-Julien-Mont-Denis", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42340400000, + 45.24584800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Bourg-en-Bresse - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E01053001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21478300000, + 46.20213400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "We,Tu,Fr,Th,Mo 08:30-16:30", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPZH6GCTOHJB", + "charging_station:output": "22 kW", + "description": "Réseau eborn/ZH6GCTOHJB", + "ref": "294509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57915300000, + 44.72612100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Saint-Paul-En-Chablais, Parking Relais;Réseau eborn/ZSXXLQQOA8", + "ref:EU:EVSE": "FREBNPZSXXLQQOA8", + "ref": "79159;ZSXXLQQOA8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62745000000, + 46.37938000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-11", + "description": "BRICOMARCHE - LE TOUVET", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*456*1*_*_", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR45611;FROTHPOTHR45612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95643900000, + 45.35983100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "741054", + "capacity": "10", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/V6CBXZ1GZG", + "ref:EU:EVSE": "FRFR1P5383904532356831381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90545800000, + 46.57036200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "description": "Plage Saint Jouin de Bruneval", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10056286;FRUBIE10053035;FRUBIE10050946;FRUBIE10006746", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15405600000, + 49.64952800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4975159347619424762", + "ref": "1188427", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLY76KOAR539OA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07838400000, + 45.15909600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "COLOMIERS - 20 Boulevard Victor Hugo", + "start_date": "2022-06-02", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRTLSE31149051" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31081700000, + 43.61568800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "626024", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4235441109979369960", + "description": "Freshmile France/D19TOD1FRC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81192300000, + 46.28973000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLW545C3D2MVT6", + "ref:EU:EVSE": "FRS14P4677978995954514335", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "ref": "1138383", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19569200000, + 48.88971100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "Zephyre/LP0095B7;Zephyre/LP0095B8;Zephyre/LP009E80;Zephyre/LP0095B4;Zephyre/LP009791;Zephyre/LP0095B9;Zephyre/LP009790;Radisson Blu Disney 1 - 22kW AC;Zephyre/LP0095A0;Zephyre/LP00978F;Zephyre/LP0095B6;Zephyre/LP0095B5;Zephyre/LP009792;Zephyre/LP0095BB;Zephyre/LP00978E;Zephyre/LP00978D;Zephyre/LP0095BC;Zephyre/LP0095B1;Zephyre/LP0095B2;Zephyre/LP0095B0;Zephyre/LP0095B3", + "owner:ref:FR:SIREN": "433893195", + "network": "Radisson Blu Disney;Zephyre", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P134010;FRZP1P5288548397851689645;FRZP1P4423291573179256249;FRZP1P28836165733738829;FRZP1P133992;FRZP1P7861801920797376637;FRZP1P133989;FRZP1P3607850814354057593;FRZP1P133987;FRZP1P6455664036435953325;FRZP1P133977;FRZP1P4423260698492608173;FRZP1P133933;FRZP1P7375013223851912619;FRZP1P133921;FRZP1P4253311418758622975;FRZP1P133869;FRZP1P131920;FRZP1P131916;FRZP1P1236197567704436409;FRZP1P582486971390283409;FRZP1P130209;FRZP1P8585022732057360472;FRZP1P1448668307662323253;FRZP1P131265;FRZP1P131696;FRZP1P2693730610855541953;FRZP1P131909;FRZP1P2894955047802217565;FRZP1P131919;FRZP1P7227076119236083377;FRZP1P2598325157660701235;FRZP1P133872;FRZP1P5566437313276809886;FRZP1P133892;FRZP1P934120296191693142;FRZP1P133905;FRZP1P3833245699731953340;FRZP1P134005;FRZP1P134009", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr", + "ref": "601086;601083;601080;601113;601119;601089;601110;601092;601095;601074;d2930524-fc74-44bd-98d9-8bc68965ffc0;601125;601122;601104;601128;601131;601116;895011;601077;601101;601098" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80825500000, + 48.85514700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-15", + "description": "SAINT NAZAIRE D'AUDE - Rue de la Tannerie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11360002", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89329750000, + 43.24472920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAILLY - Eglise", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-11", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78043005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08047930000, + 48.84241600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "operator": "49__VILLE DE NANCY", + "description": "VILLE DE NANCY - Parking Rome - Nancy", + "opening_hours": "24/7", + "ref": "a2e7df83-b619-57e6-aae6-d273e23fae2c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16620700000, + 48.69227000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLELONGUE DE LA SALANQUE - Av De La Salanque", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS66E66224001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98577900000, + 42.72807600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IKEA*199*1*_*_", + "start_date": "2024-04-18", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIKAPIKEA19911;FRIKAPIKEA19912", + "opening_hours": "24/7", + "description": "IKEA TOULOUSE - CDC", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41564806688, + 43.55488926302 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "RETIERS - 6000 place herdorf ", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35239001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38174300000, + 47.91484500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63066A", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63066*A;SIEG63 - ePremium - Celles Sur Durolle - Huit Mai", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref": "518270" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63492900000, + 45.85832000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3425239471953777369", + "amenity": "charging_station", + "capacity": "1", + "ref": "521276", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/G0HAPOBGP3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80023100000, + 43.66688400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS32PSUVZHC", + "description": "SDEG32/SUVZHC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "21833", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03206600000, + 43.75780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "PANTIN - Avenue du Cimetière Parisien", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93055004", + "start_date": "2022-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39884240000, + 48.90945240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-08-05", + "network": "KVERNELAND GROUP FRANCE SAS - 45760 - 1", + "ref": "FRCG0E001958;FRCG0E001076;FRCG0E001074;FRCG0E001072;FRCG0E001070;FRCG0E001957", + "description": "KVERNELAND GROUP FRANCE SAS - 45760 - 1", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRCG0E001958;FRCG0E001076;FRCG0E001074;FRCG0E001072;FRCG0E001070;FRCG0E001957", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01354100000, + 47.94705200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*229*1*_*_", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE22911;FRM06PNICE22912", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING SAINTE COLETTE", + "start_date": "2023-08-23", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27565100000, + 43.72621100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Agen | Parking Cinéma", + "ref": "6e202468-9f29-5986-9a88-5a566724f4ef" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62732400000, + 44.20568100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-03", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE37011;FRSIGPSIGE37012", + "ref": "FR*SOD*S*SIGE*370*1*_*_", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 4 PLACE DE LA HALLE PARKING PLACE DE LA HALLE - HERBLAY-SUR-SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16580000000, + 48.99140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "HAUTOT SUR SEINE - Place Poulard", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76350001", + "start_date": "2024-09-17", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97882300000, + 49.36115500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3298EVCP02;LFR3298EVCP01", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3298EVCP02;LFR3298EVCP01", + "description": "AZAY LE BRULE Hommeraie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22199800000, + 46.40694400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "operator": "193__Syndicat de la Diège", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bugeat | Rue de la Republique", + "ref": "ea481d53-9d5f-5993-84fe-4472822d9cf4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92561000000, + 45.59857000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "86894", + "operator:email": "roaming@freshmile.com", + "description": "SDE82/UEEYXZ", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PUEEYXZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13530000000, + 43.89730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref:EU:EVSE": "FR55CP84440RBNLUBER0N", + "start_date": "2024-08-12", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "LUBERON - ROBION", + "ref": "FR*55C*P84440*RBN*LUBER0N", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11348900000, + 43.84574400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3565EVCP01;LFR3565EVCP02", + "ref": "LFR3565EVCP01;LFR3565EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "POUZAUGES Sables", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84835400000, + 46.77755700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PITMLDV", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "description": "Intermarché - Landévant", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12050900000, + 47.75988900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Roanne, Parking Salengro", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPEZSU5AL3I5", + "ref": "EZSU5AL3I5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07290270000, + 46.03897000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP69123A", + "operator": "E-TOTEM", + "start_date": "2024-06-27;2024-07-15", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "capacity": "4;6", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP69123A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Hôtel Lyon Métropole Artelodge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81978726812, + 45.78897703640 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;10 kW;120 kW", + "description": "Cinéville - Concarneau", + "ref:EU:EVSE": "FRPD1PCINCON", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-03-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90947673743, + 47.89880821279 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Lapalisse", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-05-15", + "ref:EU:EVSE": "FRDRVPCRFMKT031201", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63898300000, + 46.24989300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Pontault-Combault - KFC", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPPCOKF", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-12-21", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60140400000, + 48.77525700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "description": "ES/ GARE DE MOMMENHEIM", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*570*2*_*_;FR*SOD*S*OTHR*570*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "ref:EU:EVSE": "FROTHPOTHR57011;FROTHPOTHR57012;FROTHPOTHR57021;FROTHPOTHR57022", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64291600000, + 48.75593200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6758325", + "start_date": "2023-07-26", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6758325", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CP 6000 BORNE 1", + "network": "CP 6000 BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81878500000, + 45.34459500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/UHG7FBMQYH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7634049195444867577", + "operator": "Freshmile | FR*FR1", + "ref": "466212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75315700000, + 48.57607800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9007*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P900701", + "description": "Paris | Avenue Bosquet 47", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30437000000, + 48.85755200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3095334957310899721", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RWFXPQAB4Q", + "operator": "Freshmile | FR*FR1", + "ref": "370157" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658000000, + 45.35850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP11192", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "description": "Tesla Supercharger Parly 2, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11861200000, + 48.82675200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "699128", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/RQ3Q8W8JZB", + "ref:EU:EVSE": "FRFR1P4122099298557268814", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88640800000, + 42.67174400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Centre de convention", + "ref:EU:EVSE": "FR0NXPOOLLMD9W", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SMAG CDC", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12238000000, + 46.13641200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRS14P283898186007048866", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "description": "MobiSDEC/LLV2DNUI81IWPG", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1107942", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72381000000, + 49.19720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "SAINT AMANS DES COTS - La Poste", + "ref:EU:EVSE": "FRS12E12209001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65934400000, + 44.68869200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLL6VDGLO2", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA5P3665749820268652179", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref": "805284" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66154700000, + 45.05402900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-07;2021-05-27;2024-04-03", + "description": "SAINT-SYLVAIN-D'ANJOU - Rue de la Veillere;OuestCharge - Diva Sp - Saint-Sylvain-d'Anjou - Veillere", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49323A;FRS49E49323001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47078600000, + 47.52008300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FAUCH - Rue de l'école", + "start_date": "2022-09-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81088001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25434200000, + 43.83075900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "owner:ref:FR:SIREN": "531681789;531681788;531681787;531681786;531681784;531681780;531681781;531681782;531681783;531681785;531681790", + "ref:EU:EVSE": "FRHPCPNF007052", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "AIRE DE LANCON DE PROVENCE EST", + "start_date": "2024-06-26", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF007052", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19353400000, + 43.58935100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-25;2021-11-03", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS46E46073001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CONCOTS LE BOURG - Le bourg", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64600100000, + 44.40097400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PSAMTCM", + "operator:email": "support@freshmile.com", + "start_date": "2017-01-27", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Priziac - Rue du Bel Air" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41063800000, + 48.06059500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH03E59606004", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-03", + "description": "VALENCIENNES - Place Verte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52875400000, + 50.35730400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plouider-Place Général de Gaulle", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2919800", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29916800000, + 48.60887100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE PERREUX SUR MARNE - Rue de la paix", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94058002", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49858700000, + 48.84735000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90272476", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-06-11;2024-05-15", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel B&B Avignon (2);ENGIE Vianeo - B&B HOTEL AVIGNON 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87220100000, + 43.97740200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Les Eyzies de Tayac Sireuil | Parking Avenue de la Forge", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "dc33b898-50b7-59bb-9c90-6a17d56ae1fa", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01829700000, + 44.93486800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE4811;FRSIGPSIGE4812", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2021-02-23", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 15 AVENUE CHARLES DE GAULLE - BOULOGNE-BILLANCOURT", + "ref": "FR*SOD*S*SIGE*48*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23776700000, + 48.85021100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSDAX", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "DAX", + "network": "Carrefour Energies", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04254000000, + 43.70927000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ITM CREPY EN VALOIS 3", + "ref": "FRLIBP003740000001824", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLIBP003740000001824", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "918444660", + "operator": "Eoliberty", + "network": "ITM CREPY EN VALOIS 3", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84454400000, + 49.19689400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "5e936a12-15d1-5e7c-b373-478bf876886a", + "operator": "202__TE64", + "description": "MOBIVE | Biarritz | Parking Gambetta", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56335400000, + 43.48066700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHANTONNAY - Place De La Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85051002", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05423000000, + 46.68983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO8008562;FRALLEGO8008552;FRALLEGO8008551;FRALLEGO8008561", + "ref": "FRALLEGO8008562;FRALLEGO8008552;FRALLEGO8008551;FRALLEGO8008561", + "start_date": "2023-10-16", + "capacity": "4", + "network": "Allego Bazalp Rennes", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Bazalp Rennes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72931350000, + 48.19110550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VENISSIEUX Pressense", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3787EVCP01", + "charging_station:output": "22 kW", + "ref": "LFR3787EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86332300000, + 45.72582000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-13", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLABLAN", + "description": "La Boucherie - Lanester", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34163801342, + 47.77874633436 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJPJU8RHNGW", + "ref": "32962;JPJU8RHNGW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/JPJU8RHNGW;Praz-Sur-Arly, Plan Meuret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56682000000, + 45.83576000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "b.pajou@sner-ra.fr", + "ref:EU:EVSE": "FREVMPUVG0D07005", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "GMK Motorsport", + "description": "GMK Motorsport", + "opening_hours": "Mo-Fr 00:00-23:59", + "ref": "UVG0D07005", + "operator": "SNER RHONE-ALPES", + "charging_station:output": "180 kW", + "owner:ref:FR:SIREN": "907612352" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86474660000, + 45.64460700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PETXORL", + "start_date": "2023-11-02;2023-10-16", + "operator": "Power Dot France", + "description": "Kiabi - Orléans", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91152658644, + 47.87469896027 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-02", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Leroy Merlin - Gennevilliers", + "opening_hours": "Mo 04:30-20:00, Tu 04:30-20:00, We 04:30-20:00, Th 04:30-20:00, Fr 04:30-20:00, Sa 04:30-20:00, Su 06:00-19:00", + "ref:EU:EVSE": "FRE11PLMGEN922301", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32119000000, + 48.93239000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42275AC", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2021-07-22", + "description": "SEMOB Centenaire St Priest", + "ref": "FRESEPS42275AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38017040000, + 45.47318370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*139*1*_*_", + "start_date": "2018-08-17", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR13912;FROTHPOTHR13911", + "charging_station:output": "22 kW", + "description": "ES/ HOUBLON", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79084400000, + 48.81739000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6935835", + "description": "CONTACT STATION 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-05-14", + "network": "CONTACT STATION 1", + "ref:EU:EVSE": "FRCPIE6935835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53599800000, + 50.45288000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3499219060719409514", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "description": "Freshmile France/V9EYPVI8LD", + "opening_hours": "24/7", + "ref": "505710", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09836700000, + 49.32627500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL MORLAIX", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122039" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85479500000, + 48.57823700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6034760255374348763", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1176291", + "description": "Freshmile France/LLWXZIRKDVJSOO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47673800000, + 44.93650700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-16", + "ref:EU:EVSE": "FRSSDPCCSUDCORSE201374", + "network": "DRIVECO", + "capacity": "2", + "description": "CC Sud Corse - Santa Catalina", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27571100000, + 41.58692600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8214182703150120266", + "ref": "1072878", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLTEEGE1A1QOTO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96897700000, + 45.74499400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E129905", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E129905", + "network": "MODULO - CHARTRES - Bd. Foch", + "description": "MODULO - CHARTRES - Bd. Foch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49161500000, + 48.45023200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "510641", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "description": "MobiSDEC/JZIMSLSNZI", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P3334065093806347307", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62499700000, + 49.17496600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA6LAKME4K40", + "network": "WAAT", + "amenity": "charging_station", + "ref": "1128036", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P5618279748001331549", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837000000, + 44.81840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-04-28", + "owner:ref:FR:SIREN": "255002883", + "description": "LES PIEUX - La Fosse", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50340004", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80449560000, + 49.50643750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-01-12", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8122200122;FRS81E8122200112;FRS81E8122200111;FRS81E8122200121", + "owner:ref:FR:SIREN": "258100072", + "description": "REALMONT  - Place Du Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19165876794, + 43.77570239280 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF070002", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "start_date": "2023-03-02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680903;531680902;531680904;531680906;531680905;531680909;531680907;531680908", + "ref:EU:EVSE": "FRHPCPNF070002", + "network": "TotalEnergies Charge Rapide", + "description": "REL.L'AVEYRON", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08065000000, + 44.32976500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-27", + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Angers - Coubertin", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49007U", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53269521000, + 47.46096235000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PCREILCARNOT", + "description": "Mouv'Oise/Creilcarnot", + "ref": "64823" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47150000000, + 49.26230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEWARDE - Domaine du Château", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH07E59345002", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16504900000, + 50.33691000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BERNIS - Bld Charles Mourier", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS30E30036001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28713000000, + 43.76627000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTZEPFV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-07", + "description": "Ménéac - Place du Plessis de Genedan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.46269500000, + 48.13951300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90163298", + "description": "ENGIE VIaneo - B&B Hôtel Saint-Brieuc", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-01-17", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72043400000, + 48.49123100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2022-05-20", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref": "484826", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93066E", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Citadine - Saint-Denis - Promenade Basilique;Métropolis/FR*MGP*P93066*E", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38321800000, + 48.94231700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;300 kW;125 kW;22 kW;44 kW", + "capacity": "16", + "network": "Shell Aire de Béziers-Montblanc SUD", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "amenity": "charging_station", + "start_date": "2024-03-21", + "description": "Shell Aire de Béziers-Montblanc SUD", + "socket:type2_combo:output": "50 kW;300 kW", + "ref": "FRSHEE211;FRSHEE201;FRSHEE177;FRSHEE176;FRSHEE174;FRSHEE175;FRSHEE202", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSHEE211;FRSHEE201;FRSHEE177;FRSHEE176;FRSHEE174;FRSHEE175;FRSHEE202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34559364000, + 43.35937807000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "evsupport.eu@autel.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUTEL EUROPE GmbH", + "operator": "Autel Netherlands B.V. | FR*AUT", + "ref": "1119666", + "ref:EU:EVSE": "FRAUTP3903339397676754102", + "description": "AUTEL EUROPE GmbH/21782" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75005100000, + 48.41669000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "668502966", + "capacity": "8", + "network": "Wurth Erstein", + "opening_hours": "Mo-Sun 07:00-19:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000117224", + "operator": "ZEENCO", + "start_date": "2023-02-03", + "charging_station:output": "22 kW", + "description": "Wurth Erstein", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63096300000, + 48.41844000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "7b43e63a-9bf3-57e2-a9ed-84c19fde8817", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV", + "description": "MOBIVE | Le Dorat | Place du Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07763600000, + 46.21758800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "ref:EU:EVSE": "FRSE1PSE60CAEA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Stade - CREVECOEUR LE GRAND", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07317500000, + 49.60544200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9007322;FRALLEGO9007321;FRALLEGO9007151;FRALLEGO9003062;FRALLEGO9003061;FRALLEGO9000951;FRALLEGO9000952;FRALLEGO9007152", + "amenity": "charging_station", + "network": "Allego Carrefour Auchy les Mines", + "ref": "FRALLEGO9007322;FRALLEGO9007321;FRALLEGO9007151;FRALLEGO9003062;FRALLEGO9003061;FRALLEGO9000951;FRALLEGO9000952;FRALLEGO9007152", + "start_date": "2024-05-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Auchy les Mines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79677500000, + 50.52082500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "HAZEBROUCK Notre Dame", + "ref:EU:EVSE": "LFR3387EVCP03;LFR3387EVCP01;LFR3387EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3387EVCP03;LFR3387EVCP01;LFR3387EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54593700000, + 50.73830300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-14E, 42 Boulevard Charles Moretti", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PWL9CIGXIQ9", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38236500000, + 43.32494000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "NGKNNY;48355", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPNGKNNY", + "description": "Besayes, Parking du Prieuré;Réseau eborn/NGKNNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07845000000, + 44.96690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "541817", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/MXD9XM3LXS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3169941989640114909", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80140600000, + 47.81158900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-08-13", + "description": "Intermarché - Écrouves", + "charging_station:output": "50 kW;200 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PINTECR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87242376662, + 48.67968569902 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Paul-Trois-Châteaux, Parking Chaussy;Réseau eborn/EBYI5NPO9K", + "ref:EU:EVSE": "FREBNPEBYI5NPO9K", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "EBYI5NPO9K;31945", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76998700000, + 44.34733700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "description": "Road/65e8a425bb0a8c001cd48645", + "opening_hours": "Mo,Th,Su,We,Tu,Fr,Sa 08:00-18:00", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "capacity": "10", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP3079355032727862922", + "ref": "1031307" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22341300000, + 49.18786300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "description": "SUPER U - PIGNAN", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*252*4*_*_;FR*SOD*S*OTHR*252*1*_*_;FR*SOD*S*OTHR*252*2*_*_;FR*SOD*S*OTHR*252*3*_*_", + "start_date": "2021-10-04", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR25241;FROTHPOTHR25231;FROTHPOTHR25211;FROTHPOTHR25221", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77368300000, + 43.58341300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6602545", + "capacity": "2", + "description": "SONEPAR CONNECT PARIS 13", + "amenity": "charging_station", + "ref": "FRCPIE6602545", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT PARIS 13", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37103200000, + 48.82929400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3842322432738864982", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLX8QJH012LVUQ", + "ref": "1112226", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85417200000, + 50.69814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "69", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s450127", + "ref:EU:EVSE": "FRWA2P5297730213488292536", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1035738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34996000000, + 47.61667600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/YQUK3HWUQM", + "ref:EU:EVSE": "FRFR1P7426849132502847000", + "operator": "Freshmile | FR*FR1", + "ref": "626336" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74974100000, + 45.78160800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1234612114", + "start_date": "2024-01-31", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 2x22 SALOMON PARK EMPLOYES M", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234612114", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12035800000, + 45.93709600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BPNWOVXD2R", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1954422049014891373", + "ref": "578840", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25954100000, + 43.59781400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 09:00-12:00, Mo 14:00-17:00, Tu 09:00-12:00, Tu 14:00-17:00, We 09:00-12:00, We 14:00-17:00, Th 09:00-12:00, Th 14:00-17:00, Fr 09:00-12:00, Fr 14:00-17:00, Sa 09:00-12:00, Sa 14:00-17:00", + "network": "DRIVECO", + "description": "Honda - Cannes", + "amenity": "charging_station", + "capacity": "3", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPCAVALLARIHONDA062501", + "start_date": "2020-05-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00606700000, + 43.58488700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "30 Rue des Murgers", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "lionel.chauvet@energie28.fr", + "owner:ref:FR:SIREN": "200080869", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28ESDE28CLOU1B1P1", + "charging_station:output": "22 kW", + "network": "FR*S28", + "operator": "ENERGIE EURE-ET-LOIR", + "start_date": "2020-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47021300000, + 48.04062600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "487281", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7599390567302352763", + "description": "SDEA 10/RYCA2CSWBP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66846600000, + 48.23801000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P3817077273709866315;FRZP1P6623593964104566842;FRZP1P312956368201046470;FRZP1P4300047311600773259", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP20022F;Zephyre/LP20017D;Zephyre/LP200170;Zephyre/LP20017A", + "operator:email": "sav@zephyre.fr", + "ref": "1130088;1129302;1150893;1130979" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84222200000, + 46.31841000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "owner:ref:FR:SIREN": "839265979;839265978", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "AtelierBaizet", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE619" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12209680000, + 46.82630920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Pierre-lès-Nemours - Guinebert", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77431A", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW;24 kW;18 kW", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "ref": "e1e73748-a606-46fe-aaf5-957136424686", + "operator:email": "a.buffler@bouygues-es.com", + "socket:type2_combo:output": "24 kW", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67826200000, + 48.27053300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - BETHUNE", + "ref": "FR*SOD*S*FAST*137*1*_*_;FR*SOD*S*FAST*137*2*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST13723;FRIZFPFAST13722;FRIZFPFAST13721;FRIZFPFAST13713;FRIZFPFAST13711;FRIZFPFAST13712", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62183381465, + 50.51604193958 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4501;FRS41E4502", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E4501;FRS41E4502", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - MONTLIVAULT - Rue du château d'eau", + "description": "MODULO - MONTLIVAULT - Rue du château d'eau", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44763900000, + 47.63940900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PORRY", + "ref": "38791", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/orry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51388000000, + 49.13030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*52*1*_*_;FR*SOD*S*LYON*52*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON5222;FRGLYPLYON5211;FRGLYPLYON5212;FRGLYPLYON5221", + "description": "FRC02 - MAIRIE", + "operator:email": "sav@izivia.com", + "start_date": "2020-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76545200000, + 45.73557600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30274001", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "SAINT JULIEN LES ROSIERS - Avenue Des Mimosas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10439000000, + 44.17519400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PNBPTPB", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Plumelin - Rue du Stade", + "start_date": "2016-12-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88602200000, + 47.86143200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6349750256259214800", + "ref": "698912", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IASECPLLXC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26194000000, + 43.69997500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "contact@mobilygreen.fr", + "ref": "418746", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P6544246413105515158", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW", + "description": "Mobilygreen CPO/6f9c12f4-875a-47dd-9f06-c31a3cc25df1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48346000000, + 43.57650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*190*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - PIERRE ET MARIE CURIE - FRESNES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE19011;FRSIGPSIGE19012", + "start_date": "2021-09-22", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32248400000, + 48.75588400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Groupe C.A.R - Volkswagen Saintes - 17100", + "network": "Groupe C.A.R - Volkswagen Saintes - 17100", + "start_date": "2023-11-07", + "ref": "FRCG0E001578;FRCG0E001579", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001578;FRCG0E001579", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65852900000, + 45.74204100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89900344", + "description": "ENGIE Vianeo - Hôtel Kyriad Tarbes Odos", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04448600000, + 43.20733300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | SAINT-GEOURS-DE-MAREMNE | Parking Eglise", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "6783602a-e8f7-5b7e-aad8-aca7930a96e4", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "22 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22867700000, + 43.68829600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE77NADA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Action - NANTEUIL LES MEAUX", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88066900000, + 48.93951000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2024-02-23", + "ref": "FRALLEGO9990022;FRALLEGO9990021;FRALLEGO9003922;FRALLEGO9003921;FRALLEGO9990011;FRALLEGO9990012", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9990022;FRALLEGO9990021;FRALLEGO9003922;FRALLEGO9003921;FRALLEGO9990011;FRALLEGO9990012", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Besancon Chalezeule", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Besancon Chalezeule" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06441897000, + 47.26289654000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "OSNY Albi", + "ref": "LFR3309EVCP03;LFR3309EVCP02;LFR3309EVCP01", + "ref:EU:EVSE": "LFR3309EVCP03;LFR3309EVCP02;LFR3309EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03228400000, + 49.05677300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM34E34172019", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONTPELLIER - Rue Du Walhalla", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91491000000, + 43.61836500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ROOMZVXRSO;Salvizinet, Salvizinet", + "ref": "85967;ROOMZVXRSO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPROOMZVXRSO", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27344700000, + 45.75956800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P794362945509079217", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLPMRW5WN2CLC3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1002885", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17961800000, + 49.11644900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOULOGNE BILLANCOURT - Rives de Seine", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E92012002", + "start_date": "2020-06-16;2023-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23665100000, + 48.82462300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-04-28", + "description": "Gannat, Place Pasteur", + "network": "eborn", + "opening_hours": "24/7", + "ref": "gannat", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPGANNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19820000000, + 46.10230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPVSDHC", + "operator:email": "help@electra.com", + "capacity": "5", + "description": "Vert-Saint-Denis - Hôtel Campanile", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63255400000, + 48.56657100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "description": "Parking Gare de Saint-Mammes P+R - EFFIA", + "ref:EU:EVSE": "FRP01E77419001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81573500000, + 48.38187600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "SONEPAR CCF GENAS", + "amenity": "charging_station", + "network": "SONEPAR CCF GENAS", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6634875", + "ref": "FRCPIE6634875" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97495900000, + 45.72072400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Vieil Evreux , V and B;Easy Charge/AAOHVNYG1P", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHP8413191867664835170;FRECHPAAOHVNYG1P", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge", + "ref": "AAOHVNYG1P;749160" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18995600000, + 49.01555700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2022-02-04;2022-02-03", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX17*08", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1708", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Legendre 126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32220000000, + 48.88880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597954", + "ref:EU:EVSE": "FRFR1P2589277700032006178", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/ODZG0S8OHF", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16558100000, + 49.23279000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "description": "AMP | Port de Plaissance - Prom. F. Mulet (La Ciotat)", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*TCB*P01737", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP01737", + "start_date": "2023-12-20", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61119000000, + 43.17652300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EMXWMFSZZT", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "541751", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRFR1P2356359330655017936", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28325900000, + 45.07409400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "BMW - Dechy - zone 1", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPLEMPEREURBMW591871", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12029300000, + 50.34500400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2915100", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Morlaix-Rue Albert le Grand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.83397500000, + 48.57841900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FANJEAUX - Place Du Treil", + "ref:EU:EVSE": "FRS11E11136001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03474250000, + 43.18526970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FORD MONT DE MARSAN 22kW AC ", + "ref:EU:EVSE": "FRZPEE175441;FRZPEE176409", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "owner:ref:FR:SIREN": "313589178", + "network": "FORD MONT DE MARSAN - La Hiroire Automobiles", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Lu- Sa 08:15-19:30", + "operator": "ZEborne", + "ref": "E176409;E175441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48645500000, + 43.88821600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAROQUE D'OLMES - Square Georges Clemenceau", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS09E09157001", + "start_date": "2022-01-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86623300000, + 42.96880500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PMOREUILMALTER", + "operator:email": "roaming@freshmile.com", + "ref": "64631", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/moreuilmalter", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48249000000, + 49.77220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST28611;FRIZFPFAST28612;FRIZFPFAST28613", + "capacity": "3", + "description": "IZIVIA FAST - MC DONALDS - GRAND QUEVILLY", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*286*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04521190000, + 49.41463750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44051001;FRS44P44051A", + "description": "OuestCharge - Diva Sp - Derval - Grée;DERVAL - Place De La Grée", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-13;2024-04-19", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67498900000, + 47.66719800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61NKNCRE4MN5SBC9T6", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-11-07;2023-05-16", + "description": "Crécy-la-Chapelle / Champs de Foire;CRECY-LA-CHAPELLE - Avenue De Villiers", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77142001;FRS77P77142B", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90671500000, + 48.85811200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HOTEL LA ROBEYERE", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "ref:EU:EVSE": "FRGSPP1000085969;FRGSPP1000085931;FRGSPP10000859311", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "HOTEL LA ROBEYERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48685800000, + 44.55896600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E220251;FRS37E220260", + "network": "MODULO - NEUILLE PONT PIERRE - Pl. de la mairie", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - NEUILLE PONT PIERRE - Pl. de la mairie", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220251;FRS37E220260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54749900000, + 47.54744900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "7.328 kW", + "description": "Citeos Vienne - Test Ingeteam", + "ref": "6a8548c1-7941-5bd0-9777-592677ee6f49" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92337100000, + 45.51862100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Domyos - Marcq-en-Barœul", + "ref:EU:EVSE": "FRG51PDECATHLON597001", + "amenity": "charging_station", + "charging_station:output": "11.04 kW", + "opening_hours": "Mo 07:00-22:00, Tu 07:00-22:00, We 07:00-22:00, Th 07:00-22:00, Fr 07:00-22:00, Sa 08:00-20:00, Su 08:00-20:00", + "operator:email": "support@driveco.com", + "start_date": "2020-03-13", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09051300000, + 50.68596100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | SEIGNOSSE | PARKING PLAGE DES BOURDAINES", + "operator": "199__SYDEC40", + "ref": "7dcf0cef-af88-588a-b3b0-38a5de91b376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43660500000, + 43.69827700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-09-02", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94068032", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "SAINT-MAUR-DES-FOSSÉS - Parking Rue de l'Entreprise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49447198213, + 48.80865138296 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "ref": "FRCPIE6530035;FRCPIE6527975;FRCPIE6654735", + "opening_hours": "24/7", + "network": "GEORGES RENAULT BORNE 1", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6530035;FRCPIE6527975;FRCPIE6654735", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08", + "description": "GEORGES RENAULT BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66182900000, + 47.23707500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/LLO4GI9TGOO5VO", + "amenity": "charging_station", + "ref": "972002", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8343627897021476771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87762900000, + 44.86811600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Montpon Menesterol | Place du Foirail", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "438d2b9a-a9da-5155-9f78-69e8d2e206e0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16574200000, + 45.00901800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-16", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Echiré - Parking Côte de Chaillot", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB47069A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41663220000, + 46.38857370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPAIRBUS313009", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Airbus - Marignane - parking S3", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23320300000, + 43.43577300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "THILLOIS", + "ref": "LFR4247EVCP01;LFR4247EVCP02;LFR4247EVCP03", + "ref:EU:EVSE": "LFR4247EVCP01;LFR4247EVCP02;LFR4247EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96531600000, + 49.26051500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P3833464291262613425", + "operator:email": "roaming@freshmile.com", + "ref": "414789", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/SDVWXZW1J4", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96812600000, + 47.83246600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*16*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ1612;FRA16PWIIZ1611", + "start_date": "2018-04-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GRASSE STADE PERDIGON", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93281300000, + 43.63727600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6158196685492714899", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/O670G7ZZSB", + "operator": "Freshmile | FR*FR1", + "ref": "471132" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97806400000, + 48.80248900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Retail Park - Vert-Saint-Denis", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PBDMSTD", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62918450570, + 48.56706468115 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/Q95UGK3FNX;Barcelonnette, Place Paul Reynaud", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "Q95UGK3FNX;79297", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPQ95UGK3FNX", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65415900000, + 44.38766700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-14", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "capacity": "7", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "200 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPARGHC", + "description": "Argenteuil - Hôtel Campanile", + "operator": "ELECTRA", + "socket:type2_combo:output": "200 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24146100000, + 48.93517100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "MARSEILLE - Euromed", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E13202010;FRP07E1320201;FRP07E132020101;FRP07E132020102", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "42", + "start_date": "2023-10-01", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36757982179, + 43.31105777653 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COMM VILLEJUIF MPT G PHILIPE", + "ref:EU:EVSE": "FRCPIE6708985", + "network": "COMM VILLEJUIF MPT G PHILIPE", + "charging_station:output": "7 kW", + "start_date": "2023-09-26", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FRCPIE6708985", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35711000000, + 48.78249700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHP5075676527068774697", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "description": "Easy Charge/JQKMH3ZL4J", + "opening_hours": "24/7", + "socket:type2_combo:output": "70 kW", + "charging_station:output": "70 kW", + "ref": "756873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85960000000, + 47.97621200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A6 Venoy Soleil Levant", + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP101114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67333500000, + 47.78846900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3454856995735471859", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/G0G8NXXBNN", + "ref": "626072", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38142100000, + 49.15939100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "start_date": "2021-08-19", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue Francois 1er 7", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX0809" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30841910000, + 48.86577330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "120770", + "network": "Freshmile France", + "description": "Freshmile France/QBBJAH", + "ref:EU:EVSE": "FRFR1PQBBJAH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56626000000, + 48.56110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-29", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPBLVLANTIVY200001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Ajaccio - Boulevard Lantivy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73858300000, + 41.92670700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25P5841635339285481182", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "487287", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/YZWNLR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66014000000, + 47.26350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "ref": "FRS18E204011;FRS18E204012", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - BRECY - Square de la mairie", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E204011;FRS18E204012", + "network": "MODULO - BRECY - Square de la mairie", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61971000000, + 47.12379000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78321004", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "JOUARS-PONTCHARTRAIN - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90078575844, + 48.80234617723 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK11451;FRQPKPQPRK11441;FRQPKPQPRK11411;FRQPKPQPRK11421;FRQPKPQPRK11431;FRQPKPQPRK11461;FRQPKPQPRK11471", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*114*5*_*_;FR*SOD*S*QPRK*114*4*_*_;FR*SOD*S*QPRK*114*1*_*_;FR*SOD*S*QPRK*114*2*_*_;FR*SOD*S*QPRK*114*3*_*_;FR*SOD*S*QPRK*114*6*_*_;FR*SOD*S*QPRK*114*7*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - 13034 MARSEILLE - HDV VIEUX PORT/ JULES VERNE", + "start_date": "2023-12-21", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36889590185, + 43.29644258040 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "BRIATEXTE - Place De La Mairie", + "ref:EU:EVSE": "FRS81E8103900111;FRS81E8103900112;FRS81E8103900121;FRS81E8103900122", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2017-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90832737183, + 43.75190362725 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-09-16", + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Poitiers Chincé", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE404300", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE404300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70105400000, + 45.13792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "SAINT JULIEN DE CONCELLES - Rue Des Heurthauds", + "start_date": "2024-04-19", + "ref:EU:EVSE": "FRS44E44169001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38574397600, + 47.25318909000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "St-Ouen-en-Brie;SAINT-OUEN-EN-BRIE - Rue Brise Mur", + "ref:EU:EVSE": "FRS77P77428A;FRS77E77428001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61DRET8WA96DW8JABX", + "start_date": "2023-05-25;2016-09-07", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91542100000, + 48.55892600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS PAYS DE RENNES", + "owner:ref:FR:SIREN": "531681684;531681682;531681683;531681685", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF078576", + "ref:EU:EVSE": "FRHPCPNF078576", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87590000000, + 48.16750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "description": "SAINT VINCENT DE TYROSSE - AVENUE DE TOURREN", + "amenity": "charging_station", + "capacity": "4", + "network": "MOBIVE - SYDEC 40", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "ref:EU:EVSE": "FRS40PMB408511;FRS40PMB408512;FRS40PMB408513;FRS40PMB408514" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31498500000, + 43.66124700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PYPKBZP", + "operator:email": "roaming@freshmile.com", + "ref": "25067", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/YPKBZP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36112000000, + 47.74980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON17622;FRGLYPLYON17621;FRGLYPLYON17612;FRGLYPLYON17611", + "ref": "FR*SOD*S*LYON*176*1*_*_;FR*SOD*S*LYON*176*2*_*_", + "description": "LY906 - PLACE JEAN MONNET - LECLAIR", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80676500000, + 45.77041800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "description": "Métropolis/FR*MGP*P91179*A", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "1193896", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP91179A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48203600000, + 48.56420300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "description": "Peugeot - SAGG - Roanne", + "amenity": "charging_station", + "start_date": "2020-05-19;2022-07-13", + "ref:EU:EVSE": "FRSSDPSAGGPEUGEOT423001", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 07:40-12:15, Mo 13:45-18:30, Tu 07:40-12:15, Tu 13:45-18:30, We 07:40-12:15, We 13:45-18:30, Th 07:40-12:15, Th 13:45-18:30, Fr 07:40-12:15, Fr 13:45-18:30, Sa 08:00-13:00, Sa 14:00-17:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08266200000, + 46.04293200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT VILLFRANCHE SS", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT VILLFRANCHE SS", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6590195", + "ref": "FRCPIE6590195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73781500000, + 45.99475400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/KXNEVQRIEC", + "ref:EU:EVSE": "FRLE2P8950219308206396946", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626369" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343700000, + 47.47545100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Ludon-Medoc | Place Jean Jaurès", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "ref": "ad7957b3-a6e8-5661-be00-5f239049aaaa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60340300000, + 44.98245600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "EZANVILLE - Rue Gallicher - Parking de la Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-27", + "ref:EU:EVSE": "FRS95E95229002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36249208187, + 49.03135909259 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "THIAIS BELLE EPINE", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "capacity": "36", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRALLPEVCARSKLPTH", + "network": "Carrefour Energies", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37263000000, + 48.75437000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR0520EVCP01;LFR0520EVCP02", + "charging_station:output": "22 kW", + "description": "LE CENDRE Clermont", + "ref": "LFR0520EVCP01;LFR0520EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18863000000, + 45.72698600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Aix-En-Provence, Route de Sisteron", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PRUH4VBDEU2", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45964100000, + 43.55623900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "488844", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/BXADENINHL", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P3185485945028389180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59796200000, + 48.09110500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ29111;FRA16PWIIZ29112", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "charging_station:output": "22 kW", + "description": "SAINT-RAPHAEL - PARKING RUE ROGER LANDINI", + "ref": "FR*SOD*S*WIIZ*291*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77041890000, + 43.42293950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446534", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GU4YLMRYYZ", + "ref:EU:EVSE": "FRFR1P5174242804352172937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63326600000, + 42.67651900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PNETTRY", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;160 kW;22 kW", + "description": "Netto - Troyes", + "start_date": "2023-10-25", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08115058659, + 48.27368980458 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ZI3F7Q3G9Y;347009", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FREBNP8123435032649234265;FREBNPZI3F7Q3G9Y", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ZI3F7Q3G9Y;Bourgoin Jallieu, Parking Medicis. 23 Avenue d'Italie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27827300000, + 45.58467600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/D9E80ECC-1F6A-46AB-A52C-C73287B64AED", + "ref": "1057128", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "240 kW", + "ref:EU:EVSE": "FREVZP6386189249359858179", + "charging_station:output": "240 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36412500000, + 46.65865000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "LA NORMANDISE", + "description": "LA NORMANDISE - VIRE NORMANDIE", + "opening_hours": "24/7", + "start_date": "2023-11-21", + "ref:EU:EVSE": "FROTHPOTHR61491;FROTHPOTHR61471;FROTHPOTHR61451;FROTHPOTHR61421;FROTHPOTHR614191;FROTHPOTHR614181;FROTHPOTHR614171;FROTHPOTHR614161;FROTHPOTHR614151;FROTHPOTHR614131;FROTHPOTHR614121;FROTHPOTHR614111;FROTHPOTHR61411;FROTHPOTHR614101;FROTHPOTHR614141;FROTHPOTHR614201;FROTHPOTHR61431;FROTHPOTHR61441;FROTHPOTHR61461;FROTHPOTHR61481", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*614*9*_*_;FR*SOD*S*OTHR*614*8*_*_;FR*SOD*S*OTHR*614*7*_*_;FR*SOD*S*OTHR*614*2*_*_;FR*SOD*S*OTHR*614*20*_*_;FR*SOD*S*OTHR*614*18*_*_;FR*SOD*S*OTHR*614*17*_*_;FR*SOD*S*OTHR*614*14*_*_;FR*SOD*S*OTHR*614*12*_*_;FR*SOD*S*OTHR*614*1*_*_;FR*SOD*S*OTHR*614*10*_*_;FR*SOD*S*OTHR*614*11*_*_;FR*SOD*S*OTHR*614*13*_*_;FR*SOD*S*OTHR*614*15*_*_;FR*SOD*S*OTHR*614*16*_*_;FR*SOD*S*OTHR*614*19*_*_;FR*SOD*S*OTHR*614*3*_*_;FR*SOD*S*OTHR*614*4*_*_;FR*SOD*S*OTHR*614*5*_*_;FR*SOD*S*OTHR*614*6*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86531800000, + 48.85899600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSOURCE", + "description": "Bellerive-sur-Allier, Source Intermittente;Réseau eborn/source", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref": "231595;source", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40917000000, + 46.11710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "598305", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/ZYL6ZBTURA", + "ref:EU:EVSE": "FREBNP4139630031510126479", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21490100000, + 44.08017000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP122031", + "description": "ENGIE Vianeo - B&B HOTEL GOUSSAINVILLE CDG", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-04-23", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46213400000, + 49.01885400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-01", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "878844141", + "opening_hours": "Mo-Fr 08:00-19:00,Sa 08:00-18:00", + "ref:EU:EVSE": "FRFR1EUHAD", + "operator:email": "exploitation@freshmile.com", + "capacity": "2", + "network": "Expo Bellamy", + "amenity": "charging_station", + "operator": "Freshmile", + "charging_station:output": "50 kW", + "ref": "bc3e385c-eb8f-11ee-a951-0242ac120002", + "description": "Expo Bellamy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33000000000, + 46.90000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1509", + "start_date": "2021-07-22", + "ref": "FR*V75*PPX15*09", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue Vasco de Gama 74", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28516480000, + 48.83542700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "TOULON SUR ALLIER;Freshmile/XBBL8M94QY", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1;LIDL France", + "ref:EU:EVSE": "LFR4032EVCP01;LFR4032EVCP03;LFR4032EVCP02;FRFR1P5759210704345622038", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "ref": "LFR4032EVCP01;LFR4032EVCP03;LFR4032EVCP02;529781" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34625200000, + 46.53598200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 09:00-18:00, Tu 09:00-18:00, We 09:00-18:00, Th 09:00-18:00, Fr 09:00-17:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BPM - Ingré - Siège", + "capacity": "10", + "ref:EU:EVSE": "FRSSDPBPM451401", + "operator:email": "support@driveco.com", + "start_date": "2022-02-02", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84987800000, + 47.90022300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PROMILLYINTERMARCHE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900026", + "network": "SIEGE27", + "start_date": "2016-07-08", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26692500000, + 49.33529700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "description": "Binic-Avenue général De Gaulle (parking salle Estran)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22055001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82959200000, + 48.60134100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE MESNIL-LE-ROI - Rue Des Grands Champs", + "ref:EU:EVSE": "FRY14E78396001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12173890000, + 48.93962500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2020-11-19", + "description": "blancheporte", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15222200000, + 50.71825000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP3408145771111854542", + "ref": "1193929", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLFJLJ4QPW", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68099600000, + 47.50951400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Labenne Est", + "ref:EU:EVSE": "FRIOYE402952;FRIOYE402905;FRIOYE402904;FRIOYE402902;FRIOYE402903;FRIOYE402951;FRIOYE402953", + "ref": "FRIOYE402952;FRIOYE402905;FRIOYE402904;FRIOYE402902;FRIOYE402903;FRIOYE402951;FRIOYE402953", + "opening_hours": "24/7", + "network": "Labenne Est", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2020-06-13", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41886400000, + 43.58587240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1034943", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS52P6760590802580220879", + "network": "SDED52", + "charging_station:output": "25 kW;22 kW", + "description": "SDED52/LLTZJ5NK41DHMG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95227300000, + 48.63977700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LOURDES - Boissarie", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65286008", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05190000000, + 43.09898000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-01-13", + "ref": "FRIENE002502;FRIENE002501", + "capacity": "4", + "ref:EU:EVSE": "FRIENE002502;FRIENE002501", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Vaupillon", + "network": "Vaupillon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99559039000, + 48.46823900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PUISSERGUIER - Rue de Belfort", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34225001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03857100000, + 43.36912060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61001H", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "ref": "SE61-ALEN-008", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-01-15", + "description": "ALENCON à Point du Jour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10590200000, + 48.43495900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1255055801978270982", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "923313", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LYBVYNUEF1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04504100000, + 48.89112500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PKWFNTQ", + "ref": "KWFNTQ;32152", + "start_date": "2017-01-16", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/KWFNTQ;Villefranche-de-Lauragais", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71702000000, + 43.39750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2021-01-15", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD130101", + "charging_station:output": "22.08 kW", + "description": "Ford - Marseille", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40056700000, + 43.27701200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "description": "Zen Park Villeneuve d'Ascq - 59650 - 5", + "opening_hours": "24/7", + "network": "Zen Park Villeneuve d'Ascq - 59650 - 5", + "start_date": "2022-01-11", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;7 kW", + "ref:EU:EVSE": "FRCG0E000011;FRCG0E000010;FRCG0E000004;FRCG0E000005;FRCG0E000006;FRCG0E000007;FRCG0E000008;FRCG0E000009", + "ref": "FRCG0E000011;FRCG0E000010;FRCG0E000008;FRCG0E000004;FRCG0E000005;FRCG0E000006;FRCG0E000007;FRCG0E000009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14554300000, + 50.67132200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref": "48baf7c6-a92d-11ed-afa1-0242ac120002", + "ref:EU:EVSE": "FRLUMERHONEARASTEAU11", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2023-03-18", + "opening_hours": "24/7", + "description": "Rhonéa - Boutique de Rasteau ", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98818280000, + 44.22512480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Le Grand Village Plage | Allée des Gros Joncs", + "operator": "191__SDEER17", + "ref": "ae10aeca-22e6-51f6-a516-1944f7eaeaaf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23810400000, + 45.86143800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE50SABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-12-01", + "socket:type2_combo:output": "24 kW", + "description": "Le Relais du Theil", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53337600000, + 48.83688900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "882348", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMP5970809665900895361", + "amenity": "charging_station", + "capacity": "1", + "description": "BornEco/649ae2086a4e31e6c34d4861", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03351900000, + 45.42554400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2841EVCP02;LFR2841EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "ST DIE DES VOSGES Alsace", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2841EVCP02;LFR2841EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96182700000, + 48.27694100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM13PORTOSOJP3Y", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Ventabren, Avenue Charles de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29323700000, + 43.54659000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "402500", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/FPTVYF69DD", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P7158295380832855998" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41763300000, + 47.80005900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-28", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "RUE DES CHANTIERS VERSAILLES", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P78000*VER*CHANTIERS", + "ref:EU:EVSE": "FR55CP78000VERCHANTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13669300000, + 48.79661000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1069257", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7875492437079818714", + "opening_hours": "24/7", + "description": "Freshmile France/LLUQYEN7XTAH1E", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69703900000, + 43.40228700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour - Montauban", + "owner:ref:FR:SIREN": "891118473", + "capacity": "18", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-06-08;2024-06-07;2024-06-10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUMTB", + "charging_station:output": "50 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "187.5 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33326648073, + 43.98826559649 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Montauroux, RUE ANTOINE BONNET;Réseau eborn/LLTHE8SPU4MZSR", + "capacity": "1;2", + "ref": "LLTHE8SPU4MZSR;1162560", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07", + "ref:EU:EVSE": "FREBNP414024496054151292;FREBNPLLTHE8SPU4MZSR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76502700000, + 43.61890500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-23", + "operator": "Fastned France", + "description": "Fastned Aire de Saint Ambreuil", + "capacity": "8", + "ref:EU:EVSE": "FRFASE33025", + "amenity": "charging_station", + "network": "Fastned Aire de Saint Ambreuil", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "ref": "FRFASE33025", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84333254000, + 46.69264890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*91*1*_*_", + "capacity": "2", + "description": "CAMPING SANDAYA - MAISONS-LAFFITTE", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR9112;FROTHPOTHR9111", + "start_date": "2020-12-11", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14520700000, + 48.94013000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPKDSOJBUKIE", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/KDSOJBUKIE;Livron Sur Drome, Place de la Citoyenneté", + "ref": "KDSOJBUKIE;39119" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83974900000, + 44.76923300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "AOTXBVCRLK;742986", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "description": "Bandol, Parking Alfred Vivien;Réseau eborn/AOTXBVCRLK", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPAOTXBVCRLK;FREBNP2198375724979497396", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75241400000, + 43.13421200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*429*1*_*_", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR42911;FROTHPOTHR42912", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "operator:email": "sav@izivia.com", + "description": "BRICOMARCHE - NEMOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69850200000, + 48.28186400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/THJWNEXIN5", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5984165622899779871", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505686", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08473800000, + 49.23618500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Aurillac, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRTSLP29658", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42613100000, + 44.90859500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-21", + "ref:EU:EVSE": "FRSIGPSIGE35012;FRFR1PSDQGQB;FRSIGPSIGE35011", + "operator": "Freshmile | FR*FR1;IZIVIA", + "amenity": "charging_station", + "ref": "86816;FR*SOD*S*SIGE*350*1*_*_", + "opening_hours": "24/7", + "network": "Freshmile;SIGEIF", + "capacity": "2;4", + "operator:email": "roaming@freshmile.com;sav@izivia.com", + "description": "SIGEIF - 43 RUE DE LA HALTE PARKING GARE ERMONT HALTE - ERMONT;Freshmile/SDQGQB", + "owner:ref:FR:SIREN": "200050433", + "charging_station:output": "7.4 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26261000000, + 48.98980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref": "56ea7c29-b4a1-5e98-98e2-02aa5e759edc", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MAISONS-ALFORT-99 Av. du Général-Leclerc", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43040300000, + 48.81171600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPUYTYKU26CQY", + "ref:EU:EVSE": "FRFR1P1620692696112708079", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "978050", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57511400000, + 43.28364500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P5083173569347577570", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/LLIU0VC43UH3BJ", + "ref": "892767", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11417100000, + 49.29255900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Logis Hôtel le Parc Rest. Joséphine - 22 kW AC", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "433898772", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1PEAC54210;FRZP1P66005;FRZP1P54324;FRZP1P112813;FRZP1P112811;FRZP1P97538", + "network": "Logis Hôtel le Parc Rest. Joséphine", + "ref": "4762b30c-2b0c-45c6-802f-c1b82b54b4de", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36494700000, + 48.23200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "EDP", + "ref:EU:EVSE": "FRROSE41", + "start_date": "2021-02-21;2021-08-26", + "operator": "RossiniEnergy", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18090130000, + 50.65155470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-26", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78624002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TRIEL-SUR-SEINE - Parking Jules Verne", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00249100000, + 48.98071200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53P53271A;FRS53E53271001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-05-22;2021-04-09", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "VILLAINES-LA-JUHEL - Boulevard De Gaulle;OuestCharge - Diva Sp - Villaines-La-Juhel - Gaulle", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28060800000, + 48.33971200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT FELIU - Place De France", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-02-01", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66170001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73476300000, + 42.68245300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "start_date": "2023-02-20;2023-04-18", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIKAPIKEA10672;FRIKAPIKEA10661;FRIKAPIKEA10641;FRIKAPIKEA10611;FRIKAPIKEA10621;FRIKAPIKEA10631;FRIKAPIKEA10651;FRIKAPIKEA10671", + "description": "IKEA THIAIS DEPOT - PARKING COLLABORATEUR", + "ref": "FR*SOD*S*IKEA*106*7*_*_;FR*SOD*S*IKEA*106*5*_*_;FR*SOD*S*IKEA*106*3*_*_;FR*SOD*S*IKEA*106*2*_*_;FR*SOD*S*IKEA*106*1*_*_;FR*SOD*S*IKEA*106*4*_*_;FR*SOD*S*IKEA*106*6*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38763400000, + 48.75869800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "MONTAUBAN DE BRETAGNE - 8 rue St Eloi (Parking de l'Eglise) ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35184001B1", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04862600000, + 48.19941700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63001A", + "ref": "518213", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63001*A;SIEG63 - ePremium - Aigueperse - Chevrils", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-09-05", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20036200000, + 46.02052100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892197", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6613777658075997615", + "description": "Freshmile France/LLIUA2L6J23MMR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.27928600000, + -20.99873500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PBJUMFP", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/BJUMFP", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref": "33412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47766000000, + 43.54860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE93008002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-05-19", + "description": "BOBIGNY - Rue Miriam Makeba" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44320183780, + 48.90586888990 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRCG0E000770;FRCG0E000769;FRCG0E000767;FRCG0E000768", + "amenity": "charging_station", + "capacity": "4", + "network": "SCI AUX BOLONS - 25480 - 2", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "FRCG0E000770;FRCG0E000769;FRCG0E000767;FRCG0E000768", + "description": "SCI AUX BOLONS - 25480 - 2", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99208100000, + 47.28289300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE20511;FRM06PNICE20512", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "COLOMARS - PARKING MANDA", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "ref": "FR*SOD*S*NICE*205*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20248361136, + 43.76077019764 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Castillonnes | Place Jasmin", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "ref": "9c97554a-6099-5cd4-857b-f55a14f5df1d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59138900000, + 44.65166900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*344*1*_*_;FR*SOD*S*SIGE*342*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 4 RUE CRISTINO - GARCIA PLACE ETIENNE DOLET - EAUBONNE;SIGEIF - 4 RUE CRISTINO GARCIA - PLACE ETIENNE DOLET - PARKING MEDIATHEQUE 2 - EAUBONNE", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE34412;FRSIGPSIGE34212;FRSIGPSIGE34211;FRSIGPSIGE34411", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736000000, + 48.99170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC01E76108003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BOIS GUILLAUME - Rue Vittecoq", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12703400000, + 49.47295500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4138EVCP03;LFR4138EVCP01;LFR4138EVCP02", + "ref": "LFR4138EVCP03;LFR4138EVCP01;LFR4138EVCP02", + "description": "FOURMIES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03718000000, + 50.01779000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Valliere | Route de Banize", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2a363b21-9e4a-51ea-94e7-f07d0852426a", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03353800000, + 45.90687700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/Negrepelisse", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "39010", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PNEGREPELISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53388000000, + 44.07100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP83420CRVSYLVABELLE", + "ref": "FR*55C*P83420*CRV*SYLVABELLE", + "start_date": "2024-07-02", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PARKING SYLVABELLE - LA CROIX-VALMER", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58074400000, + 43.18829100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "SAINT MAUR Occitanie", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3707EVCP01;LFR3707EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3707EVCP01;LFR3707EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65874300000, + 46.78710300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Caussade", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-16", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMCSD", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53596160000, + 44.15920990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/P8F2SQ4CDB;Antraigues-Sur-Volane, Les Allevards", + "ref:EU:EVSE": "FREBNPP8F2SQ4CDB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "32704;P8F2SQ4CDB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35882700000, + 44.71944800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref": "FRETIP64122B", + "start_date": "2023-11-28", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "description": "e-Totem - BIARRITZ Rue du 8 Mai 1945", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP64122B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54673032041, + 43.48518513037 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Champagne-Ardenne TGV P1 - EFFIA", + "ref:EU:EVSE": "FRP01E51058001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99762000000, + 49.21493000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT623701", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "Carrefour Market - Audruicq", + "capacity": "4", + "start_date": "2023-12-04", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07258400000, + 50.87088000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPANNIB", + "opening_hours": "24/7", + "start_date": "2024-03-28", + "operator": "ELECTRA", + "description": "Annemasse - Ibis Budget" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25561800000, + 46.19297300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR53991;FROTHPOTHR53971;FROTHPOTHR53961;FROTHPOTHR53951;FROTHPOTHR53911;FROTHPOTHR539101;FROTHPOTHR53921;FROTHPOTHR53931;FROTHPOTHR53941;FROTHPOTHR53981", + "ref": "FR*SOD*S*OTHR*539*9*_*_;FR*SOD*S*OTHR*539*7*_*_;FR*SOD*S*OTHR*539*6*_*_;FR*SOD*S*OTHR*539*5*_*_;FR*SOD*S*OTHR*539*4*_*_;FR*SOD*S*OTHR*539*3*_*_;FR*SOD*S*OTHR*539*2*_*_;FR*SOD*S*OTHR*539*1*_*_;FR*SOD*S*OTHR*539*10*_*_;FR*SOD*S*OTHR*539*8*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2021-11-08", + "network": "CENTRAKOR", + "description": "CENTRAKOR - PARKING EXTERIEUR", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50148900000, + 43.63723200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "75 kW;22 kW;150 kW", + "start_date": "2023-06-23", + "ref": "FRCPIE6741535;FRCPIE6741515;FRCPIE6740755;FRCPIE6740725;FRCPIE6740745;FRCPIE6740785;FRCPIE6740795;FRCPIE6825695", + "network": "E.LECLERC BORNE 6 DC", + "amenity": "charging_station", + "description": "E.LECLERC BORNE 6 DC", + "capacity": "15", + "socket:type2_combo:output": "75 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6741535;FRCPIE6741515;FRCPIE6740755;FRCPIE6740725;FRCPIE6740745;FRCPIE6740785;FRCPIE6740795;FRCPIE6825695", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53671200000, + 43.24757600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "559721", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8802265777730625638", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile/HMFZKUWKMH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39190100000, + 46.15628700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRV07E72264001", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "SABLE SUR SARTHE - Boulevard De La Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34239500000, + 47.84153400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/RHVWXN", + "amenity": "charging_station", + "ref": "782517", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5014134511753136698", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92731000000, + 49.45880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP5673", + "capacity": "26", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Troyes - Saint-Parres-aux-Tertres", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13068500000, + 48.29322900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LM1TTMTMU6", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3100014960033627004", + "ref": "505620", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99941500000, + 45.83486300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "YZERON", + "operator:email": "contact@none.com", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-07-06", + "opening_hours": "Mo-Su 08:00-18:00", + "ref:EU:EVSE": "FR026PYZERON", + "charging_station:output": "11 kW", + "operator": "ANEBEY", + "description": "YZERON", + "network": "PLATEAU_YZERON", + "owner:ref:FR:SIREN": "791318157" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57886400000, + 45.70421800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/EINYNUPISK", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "456822", + "ref:EU:EVSE": "FRS14P6965649486023630344", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08276800000, + 49.13622300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MILLAU - Place de la gare - Parking Sernam", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-12-15", + "ref:EU:EVSE": "FRS12E12145004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07463100000, + 44.10176300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "880167", + "description": "WAAT/FRWA4LKKMKREUD", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA4P4728945768390154845", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11776500000, + 49.48406200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-28;2024-04-05", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49264001;FRS49P49264A", + "description": "SAINT-ANDRE-DE-LA-MARCHE - Rue Auguste Vincent;OuestCharge - Diva Sp - Saint-Andre-de-la-Marche - Auguste Vincent", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99433300000, + 47.10160300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "description": "CASTRES - Mélou - Route de Toulouse", + "socket:type2_combo:output": "56 kW", + "start_date": "2022-05-05", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106500842;FRS81E8106500841;FRS81E8106500832;FRS81E8106500831;FRS81E8106500822;FRS81E8106500821;FRS81E8106500811;FRS81E8106500812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21763491600, + 43.59326553300 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH18E62063001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "AVESNES LE COMTE - Avenue Francois Mitterrand", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54816900000, + 50.28275800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-20;2024-04-17;2024-04-22", + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Vallet - Pusterle;VALLET - Boulevard Stéphane Pusterle", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44P44212B;FRS44E44212002", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26613900000, + 47.16296000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS63P63381A", + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-09-01", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG63 - ePremium - Saint Ours - Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89351340000, + 45.84884670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ANZIN - rue Gustave Thiétard", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH03E59014001", + "start_date": "2019-12-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50208600000, + 50.36853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34074003", + "description": "CESSENON SUR ORB - Rue des Saignes", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04992914200, + 43.44939060526 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GENTILLY - Rue Saint Eloi", + "start_date": "2023-01-10", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94037001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35026441349, + 48.81358492911 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Calais Coquelles Tunnel", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2024-04-23", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90229739" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79926700000, + 50.93475200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ed6d1cc6-77ad-57c5-9af1-9f1beb829884", + "charging_station:output": "22 kW", + "description": "MOBIVE | Excideuil | Place A.Moulinier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05100400000, + 45.33672700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE4512;FRSIGPSIGE4511", + "start_date": "2021-02-23", + "ref": "FR*SOD*S*SIGE*45*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 6 RUE DE PARIS - MEUDON", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24775500000, + 48.81682600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2023-02-10", + "operator": "Allego", + "description": "MONTEREAU", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSMONTE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95410000000, + 48.39787000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3937EVCP01;LFR3937EVCP02", + "ref": "LFR3937EVCP01;LFR3937EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "description": "TARBES Briand;TARBES - Briand", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05699000000, + 43.21831100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Ger | Parking Salle Polyvalente", + "ref": "40f9beb6-8944-50b8-828a-66fe4b9c4d01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05282700000, + 43.25291800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "description": "Sablet - Rue du Stade", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "e49a77d3-833b-5f82-807a-00e007453a98", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00737300000, + 44.19187800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA05E78537002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "SAINT-ARNOULT-EN-YVELINES - Rue du Docteur Camescasse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94238070000, + 48.57278450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DAVEZIEUX Lyon", + "ref": "LFR3669EVCP02;LFR3669EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3669EVCP02;LFR3669EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69531100000, + 45.25621200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PKARASL", + "socket:type2_combo:output": "100 kW", + "start_date": "2022-11-15;2022-11-29", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Karcher - Aire-sur-la-Lys" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39485172758, + 50.66130231367 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPEJXYMI6XHO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/EJXYMI6XHO;Les Contamines-Montjoie, Parking du Solaret", + "ref": "EJXYMI6XHO;30500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72768100000, + 45.82023300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-14;2022-12-22", + "capacity": "6", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "operator": "SPIE CITYNETWORKS", + "network": "e-Vadea", + "amenity": "charging_station", + "operator:email": "assistance-commerciale@e-vadea.fr", + "description": "e-Vadea - Sandaucourt - A31 La Trelle", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVAP88440A", + "charging_station:output": "300 kW;50 kW;43 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194000, + 48.26813266000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Cage Brasserie Sportive - Bègles", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-06-08", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "22", + "ref:EU:EVSE": "FRPD1PCTIBGL", + "socket:type2_combo:output": "50 kW;180 kW;100 kW;187.5 kW", + "charging_station:output": "180 kW;50 kW;100 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53142743663, + 44.79107373331 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2024-08-20", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Laille", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT358901", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71227000000, + 47.97897600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42218BD", + "opening_hours": "24/7", + "start_date": "2021-09-03", + "ref": "FRESEPS42218BD", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW", + "description": "SEMOB Jovin Bouchard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38864900000, + 45.43201300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "ref": "FR*SOD*S*IZIG*73*6*_*_;FR*SOD*S*IZIG*73*5*_*_;FR*SOD*S*IZIG*73*3*_*_;FR*SOD*S*IZIG*73*30*_*_;FR*SOD*S*IZIG*73*25*_*_;FR*SOD*S*IZIG*73*23*_*_;FR*SOD*S*IZIG*73*21*_*_;FR*SOD*S*IZIG*73*2*_*_;FR*SOD*S*IZIG*73*20*_*_;FR*SOD*S*IZIG*73*19*_*_;FR*SOD*S*IZIG*73*10*_*_;FR*SOD*S*IZIG*73*1*_*_;FR*SOD*S*IZIG*73*12*_*_;FR*SOD*S*IZIG*73*14*_*_;FR*SOD*S*IZIG*73*15*_*_;FR*SOD*S*IZIG*73*16*_*_;FR*SOD*S*IZIG*73*17*_*_;FR*SOD*S*IZIG*73*18*_*_;FR*SOD*S*IZIG*73*22*_*_;FR*SOD*S*IZIG*73*24*_*_;FR*SOD*S*IZIG*73*26*_*_;FR*SOD*S*IZIG*73*27*_*_;FR*SOD*S*IZIG*73*28*_*_;FR*SOD*S*IZIG*73*29*_*_;FR*SOD*S*IZIG*73*31*_*_;FR*SOD*S*IZIG*73*4*_*_;FR*SOD*S*IZIG*73*7*_*_;FR*SOD*S*IZIG*73*8*_*_;FR*SOD*S*IZIG*73*9*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPIZIG7391;FROTHPIZIG7371;FROTHPIZIG7361;FROTHPIZIG73301;FROTHPIZIG73291;FROTHPIZIG73281;FROTHPIZIG73271;FROTHPIZIG73261;FROTHPIZIG73251;FROTHPIZIG73151;FROTHPIZIG7311;FROTHPIZIG73101;FROTHPIZIG73121;FROTHPIZIG73141;FROTHPIZIG73161;FROTHPIZIG73171;FROTHPIZIG73181;FROTHPIZIG73191;FROTHPIZIG73201;FROTHPIZIG7321;FROTHPIZIG73211;FROTHPIZIG73221;FROTHPIZIG73231;FROTHPIZIG73241;FROTHPIZIG7331;FROTHPIZIG73311;FROTHPIZIG7341;FROTHPIZIG7351;FROTHPIZIG7381", + "opening_hours": "24/7", + "start_date": "2021-02-10;2021-02-11;2021-02-22", + "description": "CNPE FLAMANVILLE - HDF - RC", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87736430688, + 49.53585200505 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6887815", + "ref:EU:EVSE": "FRCPIE6887815", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MEN REVEAU STATION 1", + "network": "MEN REVEAU STATION 1", + "operator:email": "info@chargepoint.com", + "start_date": "2024-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68529500000, + 46.86476800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PHJTHIBWDZK", + "ref": "294446", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HJTHIBWDZK", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06908200000, + 49.10653600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL ANGERS 2 UNIVERSITÉ", + "ref:EU:EVSE": "FRVIAP122051", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63340900000, + 47.46707500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3404906701370005373", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/M53GGW3ONZ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "472224", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74919400000, + 48.58859100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Volvo - Le Havre", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPTHIBAUTVOLVO766001", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14658500000, + 49.49648800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "971804", + "opening_hours": "We,Tu,Fr,Mo,Th 08:15-17:00", + "ref:EU:EVSE": "FRFR1P1243021188215166866", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMHGY9GO27WSX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25674400000, + 48.77340600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS18E109617", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - NANCAY - Pl. de la mairie", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "network": "MODULO - NANCAY - Pl. de la mairie", + "opening_hours": "24/7", + "ref": "FRS18E109617", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572406000, + 47.35043589000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/PGOVR7LE8Z", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P6290876046126423859", + "capacity": "2", + "amenity": "charging_station", + "ref": "461874", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33912400000, + 49.27467000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1127886", + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P2642426170033898584", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LR8P7XBEV", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17857000000, + 43.72169900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P502186", + "operator:email": "e-charge50@sdem50.fr", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2024-07-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GRANVILLE - Place du 11 novembre 1918", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57685500000, + 48.83768700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-06", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81183001", + "charging_station:output": "22 kW", + "description": "MONT ROC - Rue du Village" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37254600000, + 43.80381900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-23", + "description": "RELAIS CLAIRBOIS", + "amenity": "charging_station", + "ref": "FRHPCPNF059779", + "capacity": "4", + "ref:EU:EVSE": "FRHPCPNF059779", + "owner:ref:FR:SIREN": "531681338;531681339;531681340;531681341", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17342600000, + 48.78056900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT GERMAIN DE CALBERTE - La Martinerie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48155001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80938700000, + 44.21960200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56PSGQGARWR3K", + "start_date": "2022-09-05", + "description": "Ploermel - Réhumpol, proximité futur lycée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38561913884, + 47.92662175746 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRAS - La Citadelle", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH06E62041002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75950000000, + 50.28556400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "description": "Z2027", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27VERNONPLACEPARIS", + "operator:email": "pascal.lhermitte@siege27.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-10-10", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48742700000, + 49.09179300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLJZLHJ", + "start_date": "2016-08-29", + "description": "Damgan - Boulevard de l'Océan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58161200000, + 47.51790100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B118", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346052522;FRLMSE12346052512;FRLMSE12346052511;FRLMSE12346052521", + "capacity": "1", + "start_date": "2017-11-28", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "description": "VENDEUVRE DU POITOU BOURG-1-2;VENDEUVRE DU POITOU BOURG-1-1", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30925400000, + 46.73563800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "description": "Metropolis - Proximité - Montreuil - Léo Lagrange;Métropolis/FR*MGP*P93048*I", + "amenity": "charging_station", + "ref": "484805", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "ref:EU:EVSE": "FRMGPP93048I", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45555400000, + 48.87646200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - Niort - Parc des Expositions Noron", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79191P0207A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2017-07-26", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48927100000, + 46.33073910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP2198390691828778781", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Atlante/FRATLFR00540", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref": "1113654" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74207900000, + 48.10514100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89397432", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Chantraine - Place de l'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43536000000, + 48.17216800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Residence Carouge ", + "charging_station:output": "75 kW", + "description": "Pinson Paysage", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLIBE3126085;FRLIBE3126079", + "capacity": "1", + "socket:type2_combo:output": "75 kW", + "opening_hours": "24/7", + "start_date": "2023-11-10", + "operator:email": "tech@eoliberty.com", + "operator": "Pinson Paysage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29326000000, + 48.99782600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E145512;FRS88E145510", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-08-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - GERARDMER - Av. de la Ville de Vichy", + "operator": "Modulo", + "description": "MODULO - GERARDMER - Av. de la Ville de Vichy", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E145512;FRS88E145510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86763380000, + 48.06982040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "ref:EU:EVSE": "FRALLPEVCARSTRVIL", + "start_date": "2023-03-20", + "description": "TOURVILLE LA RIVIERE", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09770400000, + 49.32901900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3176EVCP03;LFR3176EVCP01;LFR3176EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3176EVCP03;LFR3176EVCP01;LFR3176EVCP02", + "description": "WATTRELOS Couteaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17627000000, + 50.71055700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPD1PMBCLMX", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW;120 kW", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-08-18", + "opening_hours": "24/7", + "description": "Mr. Bricolage - Limoux", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22177806078, + 43.07246643559 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "QLRDN5VITJ", + "start_date": "2020-06-19", + "capacity": "2", + "amenity": "charging_station", + "description": "L'Horme, Parking route des côtes", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPQLRDN5VITJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54026293000, + 45.48570475000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FTKSVVL1HL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6625983300445754385", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "419097" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15823600000, + 46.98754000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIBSPRT", + "description": "Ibis Styles - Pertuis Luberon", + "start_date": "2023-06-28;2023-06-07", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49670287809, + 43.67602068117 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP5693181224383552515;FREBNPLLWRQIUW8SOBZQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "1111911;LLWRQIUW8SOBZQ", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Toulon, Avenue Churchill;Réseau eborn/LLWRQIUW8SOBZQ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2024-05-29;2024-06-06", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92603100000, + 43.12593700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - VIAS - P. des Farinettes", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34332A", + "ref:EU:EVSE": "FRETIP34332A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41499500000, + 43.28999500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR22711;FROTHPOTHR22721", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*227*2*_*_;FR*SOD*S*OTHR*227*1*_*_", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "network": "CSP PARIS FASHION GROUP", + "description": "CSP PARIS FASHION GROUP - FRESNOY-LE-GRAND", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42491000000, + 49.94812500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6595995", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CONNECT VILLEBON", + "ref:EU:EVSE": "FRCPIE6595995", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT VILLEBON", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22920500000, + 48.69016700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892584", + "description": "Freshmile France/LLKTJUEYI1A6AE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "opening_hours": "Mo,Th,We,Fr,Tu 08:00-19:00,Sa 09:00-18:00", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4282609410480893804", + "charging_station:output": "20 kW", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "20 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25488700000, + 43.34615700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA1LWAOD0U0Z", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "923181", + "ref:EU:EVSE": "FRWA1P6140851923212127612", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25573600000, + 43.33707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1856305199824372747", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FZQWDNZP1W", + "ref": "398888" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22040000000, + 46.98090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-03", + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "description": "ALPITRONIC 225kW Skoda Ville La Grand", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1000116731", + "ref:EU:EVSE": "FRSWSE1000116731", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26295200000, + 46.20149400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3914379365685228377", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "514994", + "description": "Freshmile France/ENDRSP8NDE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01611800000, + 47.76777600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Loc+ - Aubagne", + "start_date": "2024-01-22", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPLOC134001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58700300000, + 43.29222200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - ST-LUBIN-DES-JONCHERETS - Rue de la Baronie", + "opening_hours": "24/7", + "network": "MODULO - ST-LUBIN-DES-JONCHERETS - Rue de la Baronie", + "ref": "FRS28E139441;FRS28E139443", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E139441;FRS28E139443" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19811900000, + 48.76600600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "marc@fiskagroup.com", + "network": "SCI LES RUISSEAUX", + "opening_hours": "Mo-Fr 08:00-18:00", + "amenity": "charging_station", + "capacity": "4", + "description": "SCI LES RUISSEAUX", + "ref:EU:EVSE": "Non concerné", + "start_date": "2022-08-31", + "owner:ref:FR:SIREN": "530787852", + "charging_station:output": "22 kW", + "ref": "7dcef345-7d8a-4753-ae4e-7b3d88d68dfb", + "operator": "SCI LES RUISSEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82000000000, + 49.13000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P8658913279940971880", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "39740", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/SM903GKE9B", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78580100000, + 48.50916200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/CIR_12050043690001", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P7827902576792573368", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "576362", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83324800000, + 47.32899400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "description": "Nord_Collectivite", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE517", + "start_date": "2023-01-18", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82421200000, + 50.64090500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/montjoifetes", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PMONTJOIFETES", + "ref": "49009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92209000000, + 44.19750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-29", + "ref:EU:EVSE": "FRIZFPFAST11013;FRIZFPFAST11012;FRIZFPFAST11011", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*110*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - CHALONS MONT HERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35715027004, + 48.97950312117 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49127B", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "description": "OuestCharge - ePremium - Durtal - Trivoli", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24461100000, + 47.67200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/Beauvgare", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PBEAUVGARE", + "ref": "102359" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08674000000, + 49.42660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "VEN03 - VENISSY", + "ref": "FR*SOD*S*LYON*27*1*_*_;FR*SOD*S*LYON*27*2*_*_", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON2712;FRGLYPLYON2711;FRGLYPLYON2721;FRGLYPLYON2722", + "network": "GRAND LYON", + "start_date": "2020-11-19", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87215600000, + 45.69639500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NIMES - Ancienne Rte Generac", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30189027", + "charging_station:output": "22 kW", + "start_date": "2024-08-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35914138161, + 43.82263654470 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PXBEWHF", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-14", + "description": "Lizio - Rue du souvenir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52643400000, + 47.86202900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "360 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "MOULISMES AIRE T365 1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2024-03-18", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346479422;FRLMSE12346479421", + "operator:email": "irve@soregies.fr", + "socket:type2_combo:output": "360 kW", + "ref": "B175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80989401788, + 46.33313535128 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref": "1156152", + "amenity": "charging_station", + "capacity": "3", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/859c2784-a380-429d-8ec8-8f499e32de4c", + "ref:EU:EVSE": "FRMW1P2004512632612748430", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62269300000, + 43.65460100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*163*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "description": "SIGEIF - 10 RUE RIOCREUX - SEVRES", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE16311;FRSIGPSIGE16312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19946600000, + 48.82790600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBE1E85222002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GIVRAND - Siege Administratif", + "charging_station:output": "11 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87857620000, + 46.69418750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "description": "SAS agripat", + "ref:EU:EVSE": "FRLMSE10001422461", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "792962144", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81745000000, + 45.75182900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Pontonx Sur Adour | Rue de Baluhec,Parking des Arênes", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "46bc3479-7c8f-58f4-b38a-f0535d1bab0b", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92296900000, + 43.78764300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "LE MEE SUR SEINE - LE MAS", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-04-29", + "ref:EU:EVSE": "FRSE1PSE77MEMA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63193300000, + 48.54352700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-01-08", + "description": "ARMENTIERES", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSARMTR", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88628000000, + 50.68947700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "LFR4160EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4160EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BETHUNE - Rotonde" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63363500000, + 50.52218600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASTRIES - Avenue Des Gardians", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRM34E34058002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97153880000, + 43.67015280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "cognatlyonne;159361", + "ref:EU:EVSE": "FREBNPCOGNATLYONNE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/cognatlyonne;Cognat-Lyonne, Route d'Espinasse", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31194000000, + 46.10860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1002891", + "description": "Freshmile France/LLPMS086WC08SC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7049541271049241486", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17383500000, + 49.11023000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E77284001", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MEAUX - Parking de la Gare", + "start_date": "2022-01-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87443760000, + 48.95742180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Risoul, Office de Tourisme;Réseau eborn/M3TYYDTBPB", + "ref": "160631;M3TYYDTBPB", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPM3TYYDTBPB", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-08-05;2020-06-21", + "capacity": "4;6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63271900000, + 44.62258400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "16", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-06-28", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPAAARZS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22056700000, + 43.21718600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "Parking Paris gare Montparnasse Oceane - EFFIA", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E75114002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-07-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32011760000, + 48.84278550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6623635", + "network": "SONEPAR DOL-DE-BRETAGNE", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6623635", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "SONEPAR DOL-DE-BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73099400000, + 48.55341600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHP7607253460721521762;FRECHP1504556884107071293", + "description": "Easy Charge/FQD6TNYY1N;Easy Charge/OTVB8WALIY", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "749238;749181", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "capacity": "3;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05445700000, + 44.55803100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1613", + "description": "Paris | Avenue de Malakoff 115", + "ref": "FR*V75*PPX16*13", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28430000000, + 48.87350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "346394", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5020752144659981660", + "charging_station:output": "22 kW", + "description": "Freshmile France/DB6JAUQC9M", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70100000000, + 43.39880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IBIS Budget - Grandville", + "owner:ref:FR:SIREN": "432412104", + "capacity": "8", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2022-07-31;2022-08-01;2022-07-30;2022-07-29;2022-07-28;2022-08-02;2022-08-03;2022-08-04", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "opening_hours": "24/7", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54460098520, + 48.83853657967 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1068111", + "ref:EU:EVSE": "FRFR1P2699024003784279449", + "description": "Freshmile France/LLT2P0UL7JOTI0", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59120900000, + 50.32922900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Guérande", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW443501", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41346400000, + 47.32151900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Landivisiau-Place Lyautey", + "ref:EU:EVSE": "FRS29E2910500", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.06854200000, + 48.51130700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARCASSONNE - Boulevard Jean Jaures", + "ref:EU:EVSE": "FRS11E11069006", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35558032990, + 43.21285488947 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "N.M.A Sud-Ouest - 11 kW AC", + "owner:ref:FR:SIREN": "504891904", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "ref": "490451d2-c1ba-479d-8cff-c50ccbc26f86", + "capacity": "1", + "ref:EU:EVSE": "FRZP1PEAC66763;FRZP1PEAC66751", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "network": "N.M.A Sud-Ouest", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32096635000, + 43.97301575000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57686;FRS08E57685", + "ref:EU:EVSE": "FRS08E57686;FRS08E57685", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - FUMAY - Pl. Aristide Briand", + "network": "MODULO - FUMAY - Pl. Aristide Briand", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70237100000, + 49.99254400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PJEGRRW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "79447", + "description": "FDE 80/JEGRRW", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26056600000, + 50.00290800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - LANDIVISIAU", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST24613;FRIZFPFAST24612;FRIZFPFAST24611", + "start_date": "2024-07-25", + "ref": "FR*SOD*S*FAST*246*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05314023623, + 48.51499705531 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS44P44026A", + "start_date": "2021-09-27", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - E-Twin - Carquefou - Sevigne", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48938447000, + 47.29850005000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "start_date": "2023-05-04;2016-08-10", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Charny;CHARNY - Rue De L'Église", + "ref": "01F5ZAKH61TNF7SHNE997NPZ1R", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77095A;FRS77E77095001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76031100000, + 48.97100800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000055707", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CHÂTEAU MANGOT", + "network": "CHÂTEAU MANGOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07891624622, + 44.88533730079 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219918;FRS37E219917", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - CHINON - Pkg. de la forteresse", + "opening_hours": "24/7", + "network": "MODULO - CHINON - Pkg. de la forteresse", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219918;FRS37E219917" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23937643000, + 47.16950518000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "description": "CCTLB - Deneuvre", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a415f8aa-9e9b-5472-94e3-353d848074c2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73521200000, + 48.44403200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P69383AA", + "amenity": "charging_station", + "capacity": "1", + "description": "LPA Parking Les Halles - N1 - Zone 1", + "opening_hours": "24/7", + "network": "LPA Parking Les Halles - N1 - Zone 1", + "start_date": "2024-08-01;2024-06-26;2024-06-25", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "7.4 kW", + "ref": "FRG10P69383AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85129680000, + 45.76265370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "2d858927-39f7-5748-986c-aca08612ebdc", + "description": "MOBIVE | GAILLERES | PARKING CABINET MEDICAL", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37106100000, + 43.94091500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 4 AVENUE JEAN LURCAT - FONTENAY-LE-FLEURY", + "ref": "FR*SOD*S*SIGE*277*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE27712;FRSIGPSIGE27711", + "start_date": "2022-05-23", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04626300000, + 48.81117500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "GVA PRIEST-EN AC2", + "network": "GVA PRIEST-EN AC2", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Su 00:00-24:00,Mo 00:00-07:00,Mo 19:00-24:00,Tu 00:00-07:00,Tu 19:00-24:00,We 00:00-07:00,We 19:00-24:00,Th 00:00-07:00,Th 19:00-24:00,Fr 00:00-07:00,Fr 19:00-24:00,Sa 00:00-24:00", + "ref:EU:EVSE": "FRCPIE6498985", + "start_date": "2022-10-12", + "ref": "FRCPIE6498985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38317500000, + 45.47071300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "ref": "479274", + "network": "Leclerc", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRLE2P7361578982602173103", + "description": "Leclerc/R3XWXLIQVP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914900000, + 47.26239700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Notre Dame de Sanilhac | Place du 19 Mars", + "ref": "d5e01390-c4c8-5f68-8a64-081ddc4ac533" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71562800000, + 45.12177700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "start_date": "2015-12-18", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Réseau AlterBase - Brion près Thouet - Aire de repos", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB20087A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18543031000, + 47.05391670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAGXP01281A", + "operator": "SPIE CITYNETWORKS", + "start_date": "2023-03-01", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com", + "description": "Pays de Gex - ePremium - Ornex - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09371800000, + 46.27643200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2838EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2838EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "URRUGNE - socoa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69342400000, + 43.38486300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-26", + "ref:EU:EVSE": "FRM38E38524002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VARCES-ALLIERES-ET-RISSET - Parking de l'Oriel", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68394144606, + 45.08901600666 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-11-05", + "ref:EU:EVSE": "FRA16PWIIZ13411;FRA16PWIIZ13412", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*134*1*_*_", + "description": "MOUGINS PARKING PETITE COLLINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04089200000, + 43.58990300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3076625872199738760", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MSJI4GKDMB", + "ref": "541814" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84918200000, + 47.07137500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;120 kW;22 kW;180 kW", + "network": "Power Dot France", + "socket:type2_combo:output": "120 kW;180 kW", + "amenity": "charging_station", + "start_date": "2024-06-06;2024-04-18;2023-12-31;2023-12-18", + "opening_hours": "24/7", + "description": "Arches Metropole - Saint-Dizier", + "ref:EU:EVSE": "FRPD1PARCSDZ", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96502197599, + 48.62324778258 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGKE5UHODFR", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "160634", + "charging_station:output": "22 kW", + "description": "Réseau eborn/GKE5UHODFR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34348700000, + 45.05951200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Saint-Barthélemy-d'Anjou - RS Parc", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSBARS", + "capacity": "4", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50261700000, + 47.48171600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NICE - Lenval", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E060880031;FRP07E06088003", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24106000000, + 43.68927000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MAISON DES VINS RH CH STATION 2", + "description": "MAISON DES VINS RH CH STATION 2", + "ref": "FRCPIE6685355;FRCPIE6685345", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6685355;FRCPIE6685345", + "start_date": "2023-06-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46962800000, + 43.44616700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/QBIJCVEFRT;Cucq , Cours des Champs Elysées", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP4656841917017903317;FRECHPQBIJCVEFRT", + "ref": "817098;QBIJCVEFRT", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57811300000, + 50.48084700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Chavelot - ZA Les Fougères", + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP143020", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43432900000, + 48.22925900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P439868304365767807", + "description": "Freshmile/QFZHBEZJDZ", + "opening_hours": "24/7", + "ref": "529535", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23742500000, + 47.87148500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Rue Joseph Bara 15", + "ref:EU:EVSE": "FRV75PPX0610", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX06*10", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33314900000, + 48.84189000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/QSGFVS", + "ref:EU:EVSE": "FRFR1PQSGFVS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120596", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49076000000, + 48.61980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Volvo Jaguar Land Rover Suzuki - Toulon (La Garde)", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2021-07-21;2023-07-11", + "ref:EU:EVSE": "FRSSDPMAURINVOLVO831301", + "capacity": "20", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02740000000, + 43.13891300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Trelevern-Place des Aiguilles (parking mairie)", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22363001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37316040000, + 48.80836540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E171692;FRS18E171693", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS18E171692;FRS18E171693", + "start_date": "2023-02-04", + "network": "MODULO - ST AMAND-MONTROND - Cours Manuel 2", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ST AMAND-MONTROND - Cours Manuel 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50702900000, + 46.72082900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-11", + "charging_station:output": "24 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "web@freshmile.com", + "ref": "0ecb6b90-5fa5-4d44-a4d6-62d4edaa1dfb", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200070746", + "socket:type2_combo:output": "24 kW", + "operator": "FRESHMILE", + "description": "Parking du Golf de Sarreguemines", + "network": "Communauté d'Agglomération Sarreguemines Confluences" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02446300000, + 49.12193800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/F2OPBGTHZ6", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "75443", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1392074424333428365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99599000000, + 47.98822900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBI - Innoprod - Chemin de la Teulière", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8100401111;FRS81E8100401112;FRS81E8100401121;FRS81E8100401122", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-05-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18042673023, + 43.92083731149 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "IONITY GMBH", + "ref": "FRIONE101400", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2018-07-25", + "ref:EU:EVSE": "FRIONE101400", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "description": "IONITY Portes d'Angers Sud", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37871400000, + 46.29617100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2021-04-08;2024-04-22", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "RIAILLE - Rue De L'Écheveau;OuestCharge - Diva Sp - Riaille - Echeveau", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44144A;FRS44E44144001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29388400000, + 47.51736800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-16;2016-02-01", + "ref:EU:EVSE": "FRS77P77338A;FRS77E77338001", + "ref": "01F5ZAKH61X9AQYTM4CDF50Y9A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "NOISY-RUDIGNON - Rue De Dormelles;Noisy-Rudignon", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92887700000, + 48.33529700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MARTIN-D'HARDINGHEM - Jonction rue de Saint Omer et D928", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62760001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10067600000, + 50.60591900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221929;FRS37E221931", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - RICHELIEU - Rte. de Chinon", + "network": "MODULO - RICHELIEU - Rte. de Chinon", + "ref": "FRS37E221929;FRS37E221931" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32353100000, + 47.01729900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - SOUILLY - Voie Sacrée", + "ref:EU:EVSE": "FRS55E93386;FRS55E93387", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SOUILLY - Voie Sacrée", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E93386;FRS55E93387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28848700000, + 49.03140300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-01-19", + "charging_station:output": "3.68 kW", + "description": "SGM01 - MENDILLONNE", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*152*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON15211;FRGLYPLYON15212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80361400000, + 45.88337000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANNOY - Place Rapheleng", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5939001", + "ref": "FR*MEL*P59390*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21109600000, + 50.66652700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "ref:EU:EVSE": "FRSSDPSPIC202201", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "SPIC - Parking de la poste", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93913600000, + 42.63227400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT SAINT-PRIEST 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SAINT-PRIEST 1", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6582075", + "start_date": "2022-10-12", + "ref": "FRCPIE6582075" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95870700000, + 45.70822900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "579029", + "ref:EU:EVSE": "FRLE2P2115806141675440276", + "description": "Leclerc/QXCGZMJ0WQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73515000000, + 48.05394000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Lege | Cap-Ferret | Avenue des Halles | Claouey", + "amenity": "charging_station", + "ref": "ffe995a3-5e42-5759-b2cb-be6e7fe6e8ef", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18136400000, + 44.74934400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "dc1150e1-8c88-5e32-bdb7-24119da6249e", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Ablon-sur-Seine - Rue du Docteur Bernard Léger" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42090300000, + 48.72446400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "network": "CASINO LIMOGES;ALLEGO;GreenToWheel", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14;10", + "start_date": "2021-10-12;2022-02-10", + "ref:EU:EVSE": "FRSITE00000005;FRALLPCAS008", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "description": "CASINO LIMOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27748400000, + 45.83661700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3972EVCP03;LFR3972EVCP01;LFR3972EVCP02", + "operator:email": "bornes@lidl.fr", + "description": "La Reole;La Réole", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3972EVCP03;LFR3972EVCP01;LFR3972EVCP02", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06649500000, + 44.58435400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM13PBQGOLZLZK9", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Coudoux, Avenue De La République", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25311700000, + 43.55845600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS88E215192;FRS88E215194", + "capacity": "2", + "network": "MODULO - GERARDMER - Quai du Locle", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - GERARDMER - Quai du Locle", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "start_date": "2023-09-01", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E215192;FRS88E215194" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86223000000, + 48.06630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ2411;FRA16PWIIZ2412", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "CANNES PARKING LATOUR MAUBOURG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-04-16", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*24*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03053800000, + 43.54903000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "510509", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5261810388866210513", + "description": "Freshmile France/KNEHR4REYA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35787900000, + 49.11970300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMRBALS", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-28", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "capacity": "11", + "description": "Mr. Bricolage - Alès", + "charging_station:output": "50 kW;100 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10534709154, + 44.13389104916 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32818;NWEPJA", + "description": "Saint-Simeon-De-Bressieux, Rue de la Cote;Réseau eborn/NWEPJA", + "ref:EU:EVSE": "FREBNPNWEPJA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26696000000, + 45.32910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREVZP6793542525712603018", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "EVzen/8A860FAE-24E5-4DA6-A242-47F20335FDA6", + "network": "EVzen", + "ref": "1069140", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67780900000, + 46.52458900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "65 kW", + "description": "INTERMARCHE - LORGUES", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR58911;FROTHPOTHR58912;FROTHPOTHR58913", + "socket:type2_combo:output": "65 kW", + "start_date": "2023-07-06", + "capacity": "3", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*589*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36631000000, + 43.48601600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEAWOEQP1NJ", + "ref": "EAWOEQP1NJ", + "description": "Coubon, Place de la Paix", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91745792000, + 44.99766512000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP3764033463860679082;FREBNPIHTEVI4L40", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Toulon, Place Marius Champagne;Réseau eborn/IHTEVI4L40", + "ref": "IHTEVI4L40;749433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90703100000, + 43.13781500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP121029", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Campanile Aurillac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438100000, + 44.91395000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "491937", + "ref:EU:EVSE": "FRFR1P6745032035497586076", + "network": "Freshmile France", + "description": "Freshmile France/DGUY2HD3PH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13890700000, + 49.24803100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1317", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "ref": "FR*V75*PPX13*17", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue de Tolbiac 41" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37219490000, + 48.82797250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "742968", + "socket:type2_combo:output": "50 kW", + "description": "Freshmile France/standreidf", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4186242062047848813", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.64870000000, + -20.95110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-22", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPSIBLU561701", + "description": "Le Conguel (Camping Siblu) - Quiberon", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09274600000, + 47.47601800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "description": "900063", + "start_date": "2016-09-23", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PGISORSINTERMARCHE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76122600000, + 49.27634500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22013001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Bourbriac-Parking rue d'Avaugour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18640200000, + 48.47321700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SARTROUVILLE - Avenue Jules Rein", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78586004", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15822000000, + 48.93814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE143", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "Ghesquieres", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-10-06", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10056700000, + 50.61659600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1003173", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP8063194074142831147", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "WAAT/FRWATLQ4TDTUKT", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03298800000, + 47.26098100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mornas les Adrets;IONITY Mornas Les Adrets", + "ref": "FRIOYE440452;FRIOYE440451;FRIOYE440410;FRIOYE440409;FRIOYE440408;FRIOYE440407;FRIOYE440406;FRIONE440400;FRIOYE440401;FRIOYE440402;FRIOYE440403;FRIOYE440404;FRIOYE440405;FRIOYE440411;FRIOYE440412;FRIOYE440413;FRIOYE440414;FRIOYE440415;FRIOYE440416;FRIOYE440453", + "start_date": "2022-12-20;2022-12-23", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Mornas les Adrets;IONITY GMBH", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "capacity": "16;19", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE440451;FRIOYE440410;FRIOYE440409;FRIOYE440408;FRIOYE440407;FRIOYE440406;FRIONE440400;FRIOYE440401;FRIOYE440402;FRIOYE440403;FRIOYE440404;FRIOYE440405;FRIOYE440411;FRIOYE440412;FRIOYE440413;FRIOYE440414;FRIOYE440415;FRIOYE440416;FRIOYE440452;FRIOYE440453", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72311500000, + 44.21656000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E43640;FRS51E43637", + "description": "MODULO - CONFLANS SUR SEINE - Av. Marechal Leclerc", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E43640;FRS51E43637", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "network": "MODULO - CONFLANS SUR SEINE - Av. Marechal Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67973400000, + 48.55214200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65138002", + "description": "CAUTERET - Thermes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11261000000, + 42.88940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080376", + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCENF080376", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-09-04", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS PORTE DE SAINT OUEN", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32934653788, + 48.90043902773 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTBLANC - Place Edouard Barthe", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34166001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36593970000, + 43.39503030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-09", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Baud - Rue du pont clas", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PUUDAHB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01824400000, + 47.87482300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "598116", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ZBOTAXM1N9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1423757910023581019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67585800000, + 44.84853200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30315001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "description": "SAZE - Parking Salle Polyvalente", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67973700000, + 43.94267600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPCARDONAFORD138001", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Ford - CARDONA - Istres", + "capacity": "4", + "start_date": "2020-10-22", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97809500000, + 43.49934900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "HOTEL ST ANTOINE", + "description": "HOTEL ST ANTOINE", + "ref": "FRC2P006601", + "start_date": "2023-05-15", + "ref:EU:EVSE": "FRC2P006601", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80564750000, + 45.89607140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLUMEHOTELPROMOTEL11", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "start_date": "2022-01-03", + "description": "de15341d-9257-4e3b-9db3-d4ce057c9c5c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20381180000, + 43.76797690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | La Jemaye-Ponteyraud | etang la Jemaye", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "effd99b9-d624-5f71-83ba-0a6a0c43726f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27914000000, + 45.16059000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE33TACA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-01-19", + "description": "AMBARES ET LAGRAVE Place Jean MOULIN", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48766400000, + 44.92600700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM", + "description": "BornEco/645392b72f5a364fea62b459", + "ref": "801516", + "ref:EU:EVSE": "FRBHMP381288549775222450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69131000000, + 43.48853500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "471249", + "charging_station:output": "22 kW", + "description": "Leclerc/S1YCYKCLFA", + "ref:EU:EVSE": "FRLE2P5407135148287705202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203800000, + 48.25104700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "La Roque-D'Antheron, Rue de L'Europe Unie", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PB9WICAGNEG", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30929500000, + 43.71404400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/NT5MWKKIOS", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P6876484191470421880", + "ref": "402569" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53460200000, + 47.80873700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89363725", + "start_date": "2023-05-17", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "R3 - Norauto Luxeuil les Bains", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38760700000, + 47.82290400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "491907", + "ref:EU:EVSE": "FRFR1P5215649384550386988", + "charging_station:output": "50 kW;43 kW;22 kW", + "description": "Freshmile France/GZB3NTGYRT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70315000000, + 49.74086000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUCTN", + "opening_hours": "24/7", + "description": "Super U - Châtenois", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84216700000, + 48.29956510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346961;W5KMVUFDR3", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPW5KMVUFDR3;FREBNP5968360335926834029", + "charging_station:output": "22 kW", + "description": "Albertville, Commissariat, Rue Jacques Porraz;Réseau eborn/W5KMVUFDR3", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39125600000, + 45.67422100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "ENGIE MAMP - Bornes publiques/9F0C6AB2-3816-4015-926A-296D0D6B0F52", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "927807", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "FREVZP6490211275445646797" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37168100000, + 43.28991600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "description": "ATLANTIS - SAS SHD IMMO - PARKING MARRON;ATLANTIS - SAS SHD IMMO - PARKING VERT;ATLANTIS - SAS SHD IMMO - PARKING BLEU", + "ref": "FR*SOD*S*OTHR*789*8*_*_;FR*SOD*S*OTHR*789*6*_*_;FR*SOD*S*OTHR*789*4*_*_;FR*SOD*S*OTHR*789*1*_*_;FR*SOD*S*OTHR*789*10*_*_;FR*SOD*S*OTHR*788*9*_*_;FR*SOD*S*OTHR*788*8*_*_;FR*SOD*S*OTHR*788*4*_*_;FR*SOD*S*OTHR*788*1*_*_;FR*SOD*S*OTHR*787*8*_*_;FR*SOD*S*OTHR*787*7*_*_;FR*SOD*S*OTHR*787*6*_*_;FR*SOD*S*OTHR*787*2*_*_;FR*SOD*S*OTHR*787*11*_*_;FR*SOD*S*OTHR*787*1*_*_;FR*SOD*S*OTHR*787*10*_*_;FR*SOD*S*OTHR*787*3*_*_;FR*SOD*S*OTHR*787*4*_*_;FR*SOD*S*OTHR*787*5*_*_;FR*SOD*S*OTHR*787*9*_*_;FR*SOD*S*OTHR*788*10*_*_;FR*SOD*S*OTHR*788*2*_*_;FR*SOD*S*OTHR*788*3*_*_;FR*SOD*S*OTHR*788*5*_*_;FR*SOD*S*OTHR*788*6*_*_;FR*SOD*S*OTHR*788*7*_*_;FR*SOD*S*OTHR*789*2*_*_;FR*SOD*S*OTHR*789*3*_*_;FR*SOD*S*OTHR*789*5*_*_;FR*SOD*S*OTHR*789*7*_*_;FR*SOD*S*OTHR*789*9*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR78991;FROTHPOTHR78981;FROTHPOTHR78961;FROTHPOTHR78951;FROTHPOTHR78931;FROTHPOTHR78921;FROTHPOTHR789101;FROTHPOTHR78881;FROTHPOTHR78871;FROTHPOTHR78861;FROTHPOTHR78851;FROTHPOTHR78841;FROTHPOTHR78831;FROTHPOTHR788101;FROTHPOTHR78771;FROTHPOTHR78761;FROTHPOTHR78751;FROTHPOTHR78741;FROTHPOTHR78731;FROTHPOTHR78721;FROTHPOTHR787111;FROTHPOTHR78711;FROTHPOTHR787101;FROTHPOTHR78781;FROTHPOTHR78791;FROTHPOTHR78811;FROTHPOTHR78821;FROTHPOTHR78891;FROTHPOTHR78911;FROTHPOTHR78941;FROTHPOTHR78971", + "network": "ATLANTIS - SAS SHD IMMO", + "start_date": "2024-02-28;2024-01-08;2023-12-29", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62292630000, + 47.21947160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/LLIIIO2L613NJN", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP8609947132196625025", + "ref": "892797" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13972900000, + 44.35821900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/RCWJYG;Saint-Pierreville, Place du Clos", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "32686;RCWJYG", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPRCWJYG", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48872000000, + 44.81490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MAIRIE DE COURRIERES - TAILLIEZ", + "start_date": "2022-05-10", + "network": "MAIRIE DE COURRIERES", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR39611;FROTHPOTHR39612", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*396*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94575000000, + 50.45873900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "453954", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/A1CCYW60HL", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7282543430109801176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74900000000, + 46.24220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Englos, France", + "ref:EU:EVSE": "FRTSLP29561", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97087300000, + 50.62987100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "559736", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2675962468551443609", + "description": "Freshmile France/IYOKNX7TZR", + "opening_hours": "Fr,Tu,Mo,Sa,Th,Su,We 08:00-10:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93933100000, + 43.58083700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "TotalEnergies - Restaurant l'Etape", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP01793", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FR*TCB*P01793", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21780900000, + 43.29511100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P50797489319355897", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/OF2V5RUQC2", + "ref": "782478", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042900000, + -21.21883300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Ploubazlanec-Cité Park Nevez", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22210001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03068500000, + 48.80098300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "56423;56424", + "description": "Mazda - Reims - 22KW AC ", + "network": "Mazda REIMS - A.F.L", + "ref:EU:EVSE": "FRZMAE22AC56423;FRZMAE22AC56424", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "420023616", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 09:00-19:00; Sa:08:00-19:00", + "start_date": "2021-03-19", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90234070000, + 49.18246050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "network": "RossiniEnergy", + "description": "Aventim_PC_2;Aventim_PC_1", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE351;FRROSE352", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "capacity": "10", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26232600000, + 49.85611300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78401001", + "description": "MEULAN-EN-YVELINES - Rue Des écoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91018000000, + 49.00524100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "18", + "ref:EU:EVSE": "FRIOYE454256;FRIOYE454255;FRIOYE454254;FRIOYE454252;FRIOYE454251;FRIOYE454212;FRIOYE454210;FRIOYE454207;FRIOYE454204;FRIOYE454202;FRIOYE454201;FRIOYE454203;FRIOYE454205;FRIOYE454206;FRIOYE454208;FRIOYE454209;FRIOYE454211;FRIOYE454253", + "start_date": "2023-05-17", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "network": "Rouille Sud", + "description": "Rouille Sud", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE454256;FRIOYE454255;FRIOYE454254;FRIOYE454252;FRIOYE454251;FRIOYE454212;FRIOYE454210;FRIOYE454207;FRIOYE454204;FRIOYE454202;FRIOYE454201;FRIOYE454203;FRIOYE454205;FRIOYE454206;FRIOYE454208;FRIOYE454209;FRIOYE454211;FRIOYE454253", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01759700000, + 46.45162500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS53P53130G", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "network": "TEM53", + "description": "OuestCharge - Diva Sp - Laval - Espace Mayenne 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200082477", + "start_date": "2022-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78983180000, + 48.08204630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "EYNE - 54-58 Place De L'Europe", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66075001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10183300000, + 42.47579600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20914460000, + 49.97139520000 + ], + [ + 1.20894780000, + 49.97179950000 + ], + [ + 1.20894200000, + 49.97181790000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Sully-sur-Loire B", + "start_date": "2023-12-29", + "amenity": "charging_station", + "capacity": "4", + "network": "Sully-sur-Loire B", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE011301;FRIENE011302", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE011301;FRIENE011302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30397955000, + 47.78286444000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35096001B1", + "description": "DOMAGNE - 7 place carron de la carriere ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39325500000, + 48.07125100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-JULIEN-SUR-SARTHE - Parking Tennis", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61278A", + "ref": "SE61-SJUSS-001", + "charging_station:output": "22 kW", + "start_date": "2023-05-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36073927100, + 48.50796553000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/CLFKICEPGZ", + "opening_hours": "24/7", + "ref": "453990", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3921638158139164093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11150000000, + 46.60940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/QRKBCC", + "ref:EU:EVSE": "FRS31PQRKBCC", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref": "32149" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29456000000, + 43.76820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NANTERRE - Rue Pablo Neruda", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92050009", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-06-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21669700000, + 48.89574800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000457;FRCG0E000455;FRCG0E000451;FRCG0E000452;FRCG0E000453;FRCG0E000454;FRCG0E000456;FRCG0E000458", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "description": "Lavotel - 74330 - 2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "100 kW;225 kW;22 kW", + "network": "Lavotel - 74330 - 2", + "start_date": "2022-08-15", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000457;FRCG0E000455;FRCG0E000451;FRCG0E000452;FRCG0E000453;FRCG0E000454;FRCG0E000456;FRCG0E000458" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06864400000, + 45.94157600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "MARIE - PARKING VILLAGE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*179*2*_*_", + "charging_station:output": "22 kW", + "start_date": "2022-05-19", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE17921;FRM06PNICE17922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13574859182, + 44.03260381806 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Lavardac | Place du Foirail", + "capacity": "2", + "amenity": "charging_station", + "ref": "aa652391-fffa-54ba-8d7c-7703d229d7e0", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29861100000, + 44.17916500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*317*1*_*_", + "start_date": "2022-12-08", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "SIGEIF - PLACE CHARLES DE GAULLES - BONDY", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE31711;FRSIGPSIGE31712", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47860700000, + 48.90092700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS242102", + "description": "Bump - Monoprix - Rambouillet", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "242102", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82644810000, + 48.64266090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "NEUILLY S/MARNE Schumann", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3009EVCP03;LFR3009EVCP02;LFR3009EVCP01", + "amenity": "charging_station", + "ref": "LFR3009EVCP03;LFR3009EVCP02;LFR3009EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53019300000, + 48.87341300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Bostens | Parking Tennis", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "24d53dbb-1fee-556c-bea9-024e11e8abd6", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36037700000, + 43.97093200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "8d48b4bb-22a5-5132-baa4-683aaafed8d3", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Montgeron - Avenue de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45271300000, + 48.70847000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP78140VLZWAGNER", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-26", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*55C*P78140*VLZ*WAGNER", + "operator:email": "contact@e55c.com", + "description": "AVENUE WAGNER - VELIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17763500000, + 48.78415300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT MARTIN DE QUEYRIERES Fauré", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3723EVCP01", + "ref": "LFR3723EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59532300000, + 44.86374400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRPD1PITMARZ", + "capacity": "5", + "description": "Intermarché - Arzon", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-10-12", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89554525952, + 47.54626722210 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJN2BNPZTJH;FREBNP1041174812331151410", + "start_date": "2021-04-19", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "387722;JN2BNPZTJH", + "description": "Réseau eborn/JN2BNPZTJH;Puget-Ville, Rue de la planque", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13862000000, + 43.28662800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP57672K", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - Thionville Place Louis Fougerousse", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-09-21", + "ref": "FRETIP57672K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20056620000, + 49.39503600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04;2024-02-16", + "capacity": "17", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E381850021;FRP01E38185002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;7 kW", + "network": "EFFIA France", + "description": "Parking Grenoble Sainte Claire – les Halles - PARK GRENOBLE ALPES METROPOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72966730000, + 45.19013880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-08-18", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Pontorson", + "ref:EU:EVSE": "FRDRVPCRFMKT501701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50731800000, + 48.55884900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPZIQGK2O3XP", + "description": "Sampzon, Place de la Mairie;Réseau eborn/ZIQGK2O3XP", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "ZIQGK2O3XP;48340", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34368100000, + 44.42462100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "SUPER U - NEUILLE PONT PIERRE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR51021;FROTHPOTHR51011;FROTHPOTHR51031;FROTHPOTHR51041", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*510*4*_*_;FR*SOD*S*OTHR*510*3*_*_;FR*SOD*S*OTHR*510*2*_*_;FR*SOD*S*OTHR*510*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53154900000, + 47.54471000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "FIDEMECA BORNE 2", + "description": "FIDEMECA BORNE 2", + "amenity": "charging_station", + "start_date": "2023-06-29", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6718575;FRCPIE6734595", + "ref:EU:EVSE": "FRCPIE6718575;FRCPIE6734595" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14040900000, + 46.80870600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892908", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7623901256637691305", + "capacity": "2", + "description": "Freshmile France/WQWWODAWMW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12425000000, + 49.22249600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Pl. Goerges Vavasseur - Le Havre", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "start_date": "2023-04-17", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10088336;FRUBIE10087437;FRUBIE10082153;FRUBIE10090451", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11016700000, + 49.50988900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/SJOBQ9REOE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3118780917292945307", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "741045", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.88005200000, + 47.84063100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRTLSE31555049", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOULOUSE - 1 Rue Jean Baptiste Colbert", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-08-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45331600000, + 43.58185800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "782451", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/WPC00KCZXZ", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P1372934768436205009", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178300000, + -20.96304600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461895", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P3546918561672489067", + "description": "MobiSDEC/QM29QD00GP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048000000, + 48.93743500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12093001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "LE FEL - Le Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50191300000, + 44.65219200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLSWGLIS6T", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA3P827893938412278488", + "ref": "1042602", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56659900000, + 50.41807600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49221001;FRS49P49221A", + "amenity": "charging_station", + "start_date": "2021-04-15;2024-04-10", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "MOULIHERNE - Rue d'Anjou;OuestCharge - Diva Sp - Mouliherne - Anjou", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01445200000, + 47.46570500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/Vesoulhaberges", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref": "79873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PVESOULHABERGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13954000000, + 47.63000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20713420000, + 49.97168120000 + ], + [ + 1.20723030000, + 49.97147480000 + ], + [ + 1.20736020000, + 49.97120640000 + ], + [ + 1.20741570000, + 49.97109180000 + ], + [ + 1.20744270000, + 49.97105870000 + ], + [ + 1.20746170000, + 49.97102740000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-28", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59590001", + "network": "pass pass électrique", + "description": "THIENNES - Rue de la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46656600000, + 50.65122600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-NICOLAS-DE-REDON - Rue D'Ahaut;OuestCharge - Diva Sp - Saint-Nicolas-De-Redon - Ahaut", + "capacity": "1;2", + "start_date": "2024-04-15;2021-04-21", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44E44185001;FRS44P44185A", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06930700000, + 47.64231900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref": "518387", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63284*A;SIEG63 - ePremium - Pont Du Chateau - Chambige", + "start_date": "2022-12-01", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63284A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24812900000, + 45.79836000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH02E59291001", + "description": "HAUTMONT - Rue du Cimetière", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92724800000, + 50.25274600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34007001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "description": "AIGUES-VIVES - Parking Complexe Multi-services", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81658180000, + 43.33794480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-24", + "charging_station:output": "7 kW", + "description": "CRETEIL - Avenue du General De Gaulle", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44507454735, + 48.78822405275 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*304*1*_*_", + "ref:EU:EVSE": "FRM06PNICE30412;FRM06PNICE30411", + "operator:email": "sav@izivia.com", + "description": "NICE - SAINT PHILIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25559780869, + 43.69850603510 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "a292154a-29e4-54fd-81cf-95042f8697d9", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Perigueux | Allee de Tourny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72253000000, + 45.18637300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*426*1*_*_", + "operator": "IZIVIA", + "description": "SIGEIF - 5 AVENUE MARCEL PERRIN - PARKING DERRIERE - LA MAIRIE-MERY-SUR-OISE", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE42611;FRSIGPSIGE42612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17900100000, + 49.06963200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-11-07", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSBEAUC", + "description": "BEAUCAIRE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61399800000, + 43.81650500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR0893EVCP02;LFR0893EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "Marseille Rue Sainte", + "ref:EU:EVSE": "LFR0893EVCP02;LFR0893EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37258000000, + 43.29193000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Bizanos | Rue Georges Clémenceau", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "ae2c6cc7-6521-51d8-ad25-f4453f2e0696", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35283900000, + 43.28805900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEGURET - Chemin Sous Barry", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "ref": "fa391707-f9c6-5360-80b1-02f8a148b2b0", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02312400000, + 44.20725500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "CLAIREFONTAINE-EN-YVELINES - Chemin de l'Essart", + "ref:EU:EVSE": "FRA05E78164001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90997960000, + 48.61202990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3861EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3861EVCP01", + "description": "LA ROCHE SUR YON - Cevert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42913800000, + 46.69816900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMSVT", + "start_date": "2023-05-02;2022-10-21", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Intermarché - Saint-Vit" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81481230000, + 47.18332640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Sallanches, Parking Gymnase du Rosay", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref": "J8S4ZSJCGS", + "ref:EU:EVSE": "FREBNPJ8S4ZSJCGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62805344600, + 45.94257249000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP93033A", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - LAPEYRE Gournay-sur-Marne", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP93033A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56526017871, + 48.86557453028 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPD1PCORVCY", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-09-01", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Cora - Vichy", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41360900000, + 46.14342300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT764101", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Saint-Aubin-Lès-Elbeuf", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03540500000, + 49.30330900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42218AB", + "description": "SEMOB La Terrasse", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2019-03-05", + "ref": "FRESEPS42218AB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37876900000, + 45.46652600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-08-27", + "ref": "FR*SOD*S*IZIG*304*9*_*_;FR*SOD*S*IZIG*304*8*_*_;FR*SOD*S*IZIG*304*7*_*_;FR*SOD*S*IZIG*304*6*_*_;FR*SOD*S*IZIG*304*5*_*_;FR*SOD*S*IZIG*304*4*_*_;FR*SOD*S*IZIG*304*36*_*_;FR*SOD*S*IZIG*304*33*_*_;FR*SOD*S*IZIG*304*32*_*_;FR*SOD*S*IZIG*304*31*_*_;FR*SOD*S*IZIG*304*3*_*_;FR*SOD*S*IZIG*304*30*_*_;FR*SOD*S*IZIG*304*28*_*_;FR*SOD*S*IZIG*304*27*_*_;FR*SOD*S*IZIG*304*26*_*_;FR*SOD*S*IZIG*304*24*_*_;FR*SOD*S*IZIG*304*2*_*_;FR*SOD*S*IZIG*304*20*_*_;FR*SOD*S*IZIG*304*16*_*_;FR*SOD*S*IZIG*304*15*_*_;FR*SOD*S*IZIG*304*14*_*_;FR*SOD*S*IZIG*304*13*_*_;FR*SOD*S*IZIG*304*1*_*_;FR*SOD*S*IZIG*304*10*_*_;FR*SOD*S*IZIG*304*11*_*_;FR*SOD*S*IZIG*304*12*_*_;FR*SOD*S*IZIG*304*17*_*_;FR*SOD*S*IZIG*304*18*_*_;FR*SOD*S*IZIG*304*19*_*_;FR*SOD*S*IZIG*304*21*_*_;FR*SOD*S*IZIG*304*22*_*_;FR*SOD*S*IZIG*304*23*_*_;FR*SOD*S*IZIG*304*25*_*_;FR*SOD*S*IZIG*304*29*_*_;FR*SOD*S*IZIG*304*34*_*_;FR*SOD*S*IZIG*304*35*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG30481;FROTHPIZIG30471;FROTHPIZIG30461;FROTHPIZIG30451;FROTHPIZIG304361;FROTHPIZIG304311;FROTHPIZIG30431;FROTHPIZIG304281;FROTHPIZIG304261;FROTHPIZIG304251;FROTHPIZIG30421;FROTHPIZIG304201;FROTHPIZIG304191;FROTHPIZIG304181;FROTHPIZIG304171;FROTHPIZIG304161;FROTHPIZIG30411;FROTHPIZIG304101;FROTHPIZIG304111;FROTHPIZIG304121;FROTHPIZIG304131;FROTHPIZIG304141;FROTHPIZIG304151;FROTHPIZIG304211;FROTHPIZIG304221;FROTHPIZIG304231;FROTHPIZIG304241;FROTHPIZIG304271;FROTHPIZIG304291;FROTHPIZIG304301;FROTHPIZIG304321;FROTHPIZIG304331;FROTHPIZIG304341;FROTHPIZIG304351;FROTHPIZIG30441;FROTHPIZIG30491", + "operator:email": "sav@izivia.com", + "description": "CNPE BELLEVILLE - SECONDAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86945000000, + 47.51071000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-11", + "ref": "FRCPIE6845335", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6845335", + "operator:email": "info@chargepoint.com", + "description": "GHISTELINCK BORNE 6 DC", + "network": "GHISTELINCK BORNE 6 DC", + "opening_hours": "Mo 08:00-11:30,Mo 14:00-17:00,Tu 08:00-11:30,Tu 14:00-17:00,We 08:00-11:30,We 14:00-17:00,Th 08:00-11:30,Th 14:00-17:00,Fr 08:00-11:30,Fr 14:00-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35838700000, + 50.99019000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HJMFK5BNOH", + "ref:EU:EVSE": "FRFR1P7612145853197623392", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529283" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05588600000, + 48.90372900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-04-08", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL VALENCE NORD", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122012", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88545100000, + 44.95949700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "559853", + "description": "Freshmile France/ZKLMJTPPX4", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P4081335476197732400", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48380800000, + 44.03194000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP20264", + "description": "Tesla Supercharger Metz Sud, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10359000000, + 49.07962100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/D8Z6WDTXQH", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6977057808661100144", + "charging_station:output": "22 kW", + "ref": "454002", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39610000000, + 46.94510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P540121819325649288", + "description": "MobiSDEC/UTD4TMRIWV", + "ref": "457572" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29224800000, + 49.02479600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "456789", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/AWSCCFXPIZ", + "ref:EU:EVSE": "FRS14P2424316594903276289" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40625800000, + 49.26534700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1128159", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLW3HMAQYD", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P8698327762653471922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86124000000, + 44.31424700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-06-20", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "description": "CHERBOURG EN COTENTIN - St Clément", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501293", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61295000000, + 49.63874800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "description": "LISLE SUR TARN - Allée Des Promenades", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-01-06", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8114500122;FRS81E8114500111;FRS81E8114500112;FRS81E8114500121", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80897727068, + 43.85414017951 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059437", + "capacity": "8", + "description": "RELAIS DU DRAC", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681857;531681856;531681855;531681853;531681851;531681852;531681854;531681858", + "start_date": "2024-06-10", + "ref:EU:EVSE": "FRHPCPNF059437", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69733000000, + 45.17577600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48051001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE COLLET DE DEZE - Rue Basse", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92347600000, + 44.24512700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/VA14FOL0VC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1085568", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56P3018530829121110191", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34320000000, + 47.72370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOULOGNE-SUR-MER - Boulevard Napoléon", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62160006", + "start_date": "2019-12-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59790000000, + 50.72228940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2926900", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint-Thurien - Rue de Querrien", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.62300500000, + 47.95864900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-28", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PZSBMZW", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Bono - Rue Ferdinand Ardonin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94893500000, + 47.63888600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-14", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346052002;FRLMSE12346052001;FRLMSE12346051991;FRLMSE12346051992", + "ref": "B114", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "MIREBEAU POSTE-1-1;MIREBEAU POSTE-1-2", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18065000000, + 46.78656000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "1121517", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93027A", + "description": "Métropolis/FR*MGP*P93027*A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39202200000, + 48.92613700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE91114004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-06-28", + "description": "BRUNOY - Route de Brie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52347168806, + 48.70731310880 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLFR00339", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP5108298666294954922", + "ref": "1152117" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94063900000, + 45.90257000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "owner:ref:FR:SIREN": "668502966", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE10000882701;FRLMSE10000882691", + "description": "Würth Mougins", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97257900000, + 43.61148100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOURCOING - Rue du Pont de Neuville", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM59E59599001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17287200000, + 50.73630600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85194005", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LES SABLES-D'OLONNE - Parking De La Salle Audubon", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77259802800, + 46.49452972000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9005152;FRALLEGO9005151;FRALLEGO9000431;FRALLEGO9000432;FRALLEGO9001211;FRALLEGO9001212;FRALLEGO9001521;FRALLEGO9001522;FRALLEGO9005281;FRALLEGO9005282", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9005152;FRALLEGO9005151;FRALLEGO9000431;FRALLEGO9000432;FRALLEGO9001211;FRALLEGO9001212;FRALLEGO9001521;FRALLEGO9001522;FRALLEGO9005281;FRALLEGO9005282", + "capacity": "10", + "start_date": "2024-02-28", + "description": "Allego Carrefour Echirolles", + "network": "Allego Carrefour Echirolles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72418722000, + 45.15879693000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP4111;FRIZMPMAMP4112", + "description": "IZIVIA | MARSEILLE 15 - AVENUE DE LA VISTE", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "ref": "FR*SOD*S*MAMP*41*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35697400000, + 43.35406300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "description": "Match - Lannoy", + "start_date": "2023-12-18", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PMATLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21306470920, + 50.66692761796 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPNGQP8ETIBP;FREBNP6544821542700931102", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "NGQP8ETIBP;346832", + "description": "Toulon, Pkg. du parc Des Lices 3 ;Réseau eborn/NGQP8ETIBP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93244300000, + 43.13059100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/9FA10B7F-883E-4030-AFE3-99EF72A0D737", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP8587926009977111996", + "ref": "1149825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51351700000, + 47.45385100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis Styles - Avignon Sud", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-04-04;2023-04-28", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PIBSAVI", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84420490000, + 43.92631880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/DGXASAH8ZE;Réseau eborn/V1G6TQKEFF", + "ref:EU:EVSE": "FREBNP1558239075372469643;FREBNP1043542246242939964", + "opening_hours": "24/7", + "capacity": "2;10", + "charging_station:output": "50 kW;44 kW;22 kW", + "ref": "674306;492090" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171200000, + 45.91714000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP30217A", + "amenity": "charging_station", + "description": "e-Totem - DASSIN Lemon Hôtel Avignon", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP30217A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73341340518, + 43.95922030948 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-23", + "ref": "FR*SOD*S*OTHR*201*1*_*_;FR*SOD*S*OTHR*201*2*_*_;FR*SOD*S*OTHR*201*3*_*_;FR*SOD*S*OTHR*201*4*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U - ANGRESSE", + "ref:EU:EVSE": "FROTHPOTHR20141;FROTHPOTHR20131;FROTHPOTHR20121;FROTHPOTHR20111", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36130700000, + 43.65869300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*CAPS*31*1*_*_", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-12-05", + "network": "CPS", + "description": "NOZAY - MEDIATHEQUE", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRCPSPCAPS3112;FRCPSPCAPS3111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24285000000, + 48.65953800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LM1HVXT801OSU9", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4492004606657987955", + "ref": "1195261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61981900000, + 44.88460500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "description": "ENRGETICA/0dca6f11-eb25-41ff-8341-035a89872495", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "ref": "754164", + "ref:EU:EVSE": "FRVISP3164418486990845574", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32527600000, + 43.80484400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P9157613725871820932", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "492006", + "description": "Freshmile France/YSZ671LQHR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37196100000, + 43.80882300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;225 kW", + "charging_station:output": "225 kW;50 kW;22 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "operator": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000114223;FRSWSE1000081561", + "owner:ref:FR:SIREN": "903356970", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00;Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "ref": "1000114223;1000081561", + "start_date": "2022-07-22;2024-08-23", + "description": "ABB T54 VW Annemasse;ALPI 225 VW ANNEMASSE", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26390300000, + 46.19678200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLU19ZBGWBZ9R0", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1052502", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5304868277074332895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00879200000, + 42.56938700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBARBIERMG171381", + "capacity": "2", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:30-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "start_date": "2023-03-15", + "charging_station:output": "22.08 kW", + "description": "MG - Puilboreau", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10149200000, + 46.17914800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "network": "MODULO - DAMMARIE - Pl. de l'église", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - DAMMARIE - Pl. de l'église", + "ref": "FRS28E137348", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS28E137348", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49416100000, + 48.34395500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MONTA", + "owner:ref:FR:SIREN": "800654774", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "description": "35 RUE DE GAMPALOUP", + "charging_station:output": "21 kW", + "operator:email": "amgh@monta.com", + "ref": "9a1318f7-e55f-4811-8e66-a6dfd17a0121", + "operator": "MONTA", + "start_date": "2023-04-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82000000000, + 45.33000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P1632294451456789232", + "description": "SDEA 10/W5FI5XLP32", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "39812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06783800000, + 48.29442400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLFVBGMVG5", + "capacity": "2", + "amenity": "charging_station", + "ref": "528125", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP4222819919476663587", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40506000000, + 43.29334200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE433", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Lauwerier_SCI", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02616600000, + 50.60953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-28", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "VABRE - Place Du Maquis", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8130500112;FRS81E8130500111;FRS81E8130500121;FRS81E8130500122", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42494511600, + 43.69283294700 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "start_date": "2021-12-15", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "INTERPARKING | PARKING MENTON GEORGE V", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMG5", + "ref": "FRIPKPMG5", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49633820000, + 43.77387170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2021-04-23;2024-04-10", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS49P49094A;FRS49E49094001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Chenehutte-Treves-Cunault - Pont Pouillet;CHENEHUTTE-TREVES-CUNAULT - Place Pont Pouillet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15252900000, + 47.30805600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/XXJWHG", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "86711", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60PXXJWHG", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25617000000, + 49.15970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BEUVRY - Ruelle de la Place", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62126001", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68261300000, + 50.52105600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MUS - Avenue Du Puits Vieux", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30185001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20138200000, + 43.73798900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLQPFQW", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Guémené-sur-scorff - Rue du Condé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20705600000, + 48.06694400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "description": "CUHON-1-1;CUHON-1-2", + "amenity": "charging_station", + "capacity": "1", + "ref": "B038", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346396761;FRLMSE12346396751", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-09-20", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09682000000, + 46.75880100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - ePremium - Vincennes - Diderot (48)", + "ref:EU:EVSE": "FRMGPP94080F", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44084594000, + 48.85071082000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-16", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRSIGPSIGE13541;FRSIGPSIGE13531;FRSIGPSIGE13511;FRSIGPSIGE13521;FRSIGPSIGE13551;FRSIGPSIGE13561", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*135*5*_*_;FR*SOD*S*SIGE*135*4*_*_;FR*SOD*S*SIGE*135*1*_*_;FR*SOD*S*SIGE*135*2*_*_;FR*SOD*S*SIGE*135*3*_*_;FR*SOD*S*SIGE*135*6*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30119700000, + 48.93064600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-19", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PLAISIR - Rue de la République", + "ref:EU:EVSE": "FRBE1E78490003", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94703800000, + 48.81801400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89595010", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Dunkerque Est", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33435500000, + 50.99759300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "23bc8940-2c0d-5b6d-9e6f-b34ef789960e", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Etagnac | Parking de la Salle des Fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78270200000, + 45.89488200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CITROEN - LA RAVOIRE", + "ref:EU:EVSE": "FRSE1PSE73RABA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-29", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96646500000, + 45.56826800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSTOURS", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW", + "description": "TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71458800000, + 47.37845100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2813EVCP01", + "ref:EU:EVSE": "LFR2813EVCP01", + "description": "KINGERSHEIM Mulhouse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33619400000, + 47.79682100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31555010", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "TOULOUSE - Jean Jaures", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45095300000, + 43.60687200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPANJXNT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint-Agrève, Place de Chantoisel;Réseau eborn/ANJXNT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "25274;ANJXNT", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39372000000, + 45.00990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/OOFJAHVKOS", + "amenity": "charging_station", + "ref": "597957", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P743026505112185348", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18227000000, + 45.68803000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-09-15", + "description": "PARIS - Magenta - Niveau -3", + "ref:EU:EVSE": "FRP07E751100035;FRP07E751100033;FRP07E751100032;FRP07E751100031;FRP07E75110003;FRP07E751100034;FRP07E751100036", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "69", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35518600000, + 48.87568600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPZACDZS", + "ref": "ZACDZS", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-11", + "description": "La Breole Ubaye Serre Poncon, Route de Boneis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29439297000, + 44.45714290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "description": "Road/65ccc038e4c541001c9a7b83", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Su,We,Tu,Sa,Fr,Mo,Th 08:00-18:00", + "ref": "1019460", + "ref:EU:EVSE": "FREFLP1981726588653454069", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30858600000, + 47.83085600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E595120012;FRP01E595120011", + "network": "EFFIA France", + "description": "Parking CH Roubaix P3 urgence - EFFIA", + "start_date": "2024-07-25", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17276876800, + 50.67853530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "amenity": "charging_station", + "description": "HYPER U BORNE 1 DC", + "network": "HYPER U BORNE 1 DC", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08", + "ref": "FRCPIE6616535;FRCPIE6610485;FRCPIE6610465;FRCPIE6642765", + "ref:EU:EVSE": "FRCPIE6616535;FRCPIE6610485;FRCPIE6610465;FRCPIE6642765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85180600000, + 43.45648900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBBB8GR3JG1", + "ref": "BBB8GR3JG1", + "description": "Brioude, 38 Avenue Victor Hugo", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38137544000, + 45.29758934000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1182084", + "ref:EU:EVSE": "FRWA2P6368849546938859382", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s570527", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16162000000, + 49.17639200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892341", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJ485IUO7DS80", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5884731047323991631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60355000000, + 45.74092900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-17", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "network": "KIA EPINAL", + "charging_station:output": "24 kW;22 kW", + "owner:ref:FR:SIREN": "479081903", + "socket:type2_combo:output": "24 kW", + "ref": "FRTCBP00701", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:01;Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:02", + "ref:EU:EVSE": "FRTCBP00701", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "CAR AVENUE - KIA EPINAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43715476932, + 48.21617580916 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "706094", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P1028251900518419837", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/LR65HDZA52", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90363400000, + 49.18732300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "capacity": "6", + "description": "Ford Valence", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPGRIMFORD260001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92841700000, + 44.91796700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29062001", + "start_date": "2024-04-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GOUEZEC - Place de l’église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97371818935, + 48.16983020116 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1173522", + "description": "SDEA 10/LM026UN2618QOJ", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P6969430422947280057" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33796900000, + 48.25672300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Hôtel le Faisan Doré - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC125364", + "owner:ref:FR:SIREN": "343566709", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "399b46ab-0979-4f5a-aa39-a3f7da41150d", + "network": "Logis Hôtel Le Faisan Doré", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07329048000, + 48.72058252000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E35991;FRS08E57419", + "ref:EU:EVSE": "FRS08E35991;FRS08E57419", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-07-22", + "network": "MODULO - CARIGNAN - Rue du parc", + "description": "MODULO - CARIGNAN - Rue du parc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16687293000, + 49.63044664000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "FDE 80/LLNUGY0GZ10FRA", + "ref:EU:EVSE": "FRS80P8075445073602276690", + "ref": "1002867", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44901100000, + 50.09963700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*203*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - COURTABUF", + "start_date": "2024-08-27", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST20312;FRIZFPFAST20311;FRIZFPFAST20313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20556452839, + 48.68352917239 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44201A;FRS44E0440168;FRS44E44201001", + "amenity": "charging_station", + "start_date": "2021-05-08;2024-04-29;2024-04-19", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SUCE-SUR-ERDRE - Avenue De L'Europe;OuestCharge - Diva Sp - Suce-Sur-Erdre - Europe", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53035200000, + 47.34245900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2023-07-05;2016-02-23", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "BOISDON - Rue De L'Église;Boisdon", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61R7A2RC6PQKY808ZR", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77036A;FRS77E77036001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22653400000, + 48.68459700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GREENSPOT", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "start_date": "2024-06-03", + "description": "CREDIT AGRICOLE MORCENX", + "ref:EU:EVSE": "FRGSPP1000085946", + "network": "CREDIT AGRICOLE MORCENX", + "owner:ref:FR:SIREN": "434651246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90900479491, + 44.03178914018 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-03-09", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E219777;FRS37E219778", + "ref": "FRS37E219777;FRS37E219778", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - AZAY LE RIDEAU - Impasse Adélaïde Riche", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - AZAY LE RIDEAU - Impasse Adélaïde Riche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46287700000, + 47.26180500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PNCDSEP", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Guern - Rue de la Vallée", + "start_date": "2016-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09224500000, + 48.02807300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR BEL AIR", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRG10P45338B", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P45338B", + "description": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR BEL AIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71450658107, + 47.98909693936 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "94f8b4be-b92c-555c-a42d-d2d384ec481d", + "description": "MOBIVE | Caudecoste | Route de Gimbrede", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73750000000, + 44.11527600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*246*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - RUE DU DOCTEUR DEMIRLEAU - MONTMORENCY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE24611;FRSIGPSIGE24612", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31999900000, + 48.98891400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "26247", + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "description": "Move In Pure/WXPKFK", + "ref:EU:EVSE": "FRCN1PWXPKFK", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;44 kW", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64748000000, + 44.25890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P1390136988287723394", + "description": "Leclerc/N7YNCCQRUT", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1026852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83762700000, + 49.16518100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref": "FR*SOD*S*MB33*158*1*_*_;b84ac840-21d8-5a1d-89ad-eb613acad857", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "ANDERNOS LES BAINS - GIRATOIRE QUERQUILLAS;MOBIVE | Andernos les Bains | Giratoire Querquillas", + "opening_hours": "24/7", + "operator": "197__SDEEG33;IZIVIA", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "FRS33PMB3315813;FRS33PMB3315811;Non concerné;FRS33PMB3315812;FRS33PMB3315814", + "charging_station:output": "50 kW;43 kW", + "capacity": "3;4", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05062700000, + 44.77675500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB02002A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Champdeniers - Place St Antoine", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40244332000, + 46.48549392000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "support@alizecharge.fr", + "description": "CDG - Parking PRO EF - Allée 02/03/05/06 (Réservé exclusivement aux Taxis et VTC)", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-12-12", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRADPE77291010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57744400000, + 49.00444000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "TOULOUSE Netwiller", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3593EVCP01;LFR3593EVCP02", + "ref": "LFR3593EVCP01;LFR3593EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46626300000, + 43.64261400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38317001", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "start_date": "2022-02-17;2022-02-02", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PONT-DE-CLAIX - Parking-Relais L'Etoile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70230800000, + 45.13720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*106*2*_*_;FR*SOD*S*WIIZ*106*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2021-01-20", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRA16PWIIZ10611;FRA16PWIIZ10621", + "description": "LE CANNET PARKING VAL DAZUR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02157500000, + 43.57508600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "485100", + "ref:EU:EVSE": "FRFR1P6674177644885073381", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/DRPCRSDJXN", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70944200000, + 45.19387600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Auchan - Jouy-en-Josas", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-06-05;2024-06-03", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PACNJOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16201069014, + 48.76544330862 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2023-05-12", + "amenity": "charging_station", + "description": "Saint-Jorioz, Presbytère", + "capacity": "4", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPFUJCLK", + "ref": "FUJCLK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16365100000, + 45.83193800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "capacity": "6", + "description": "Sorgues - Décor Discount", + "ref:EU:EVSE": "FRELCPSORDD", + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88630000000, + 43.98450100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E94080002", + "description": "Parking Vincennes Pompidou - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43502920000, + 48.84853480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-27", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CHATTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6665965", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CHATTE", + "ref:EU:EVSE": "FRCPIE6665965" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30030200000, + 45.14080100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Aizenay , Bowling", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "ref": "RZ1BLGWGRM", + "ref:EU:EVSE": "FRECHPRZ1BLGWGRM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59322561000, + 46.73493290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX2012", + "ref": "FR*V75*PPX20*12", + "description": "Paris | Boulevard de Charonne 52", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39820000000, + 48.85190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Th,Mo,We,Tu,Fr 09:00-18:00,Tu,Th,Mo,We 10:00-16:30", + "capacity": "10", + "description": "Freshmile France/K8ATR4NEVO", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3942214046878404576", + "ref": "466068" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259600000, + 46.34035000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Quai du Marché Neuf 8", + "ref": "FR*V75*PPX04*06", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-08-17", + "ref:EU:EVSE": "FRV75PPX0406", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34534100000, + 48.85419890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WZ79ENR8ZB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P914749801074517390", + "network": "Freshmile France", + "ref": "477726", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64238300000, + 49.65105600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPMAURINFORD832001", + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-09-08", + "description": "Ford - Toulon (Ouest)", + "opening_hours": "Mo 08:00-18:00, Tu 08:00-18:00, We 08:00-18:00, Th 08:00-18:00, Fr 08:00-18:00, Sa 08:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89721700000, + 43.12498200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22278002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT BRIEUC - 53 boulevard Carnot", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76875300000, + 48.50665300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E117401", + "network": "MODULO - RAYMOND -Le Far West", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "description": "MODULO - RAYMOND -Le Far West", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E117401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68531000000, + 46.96955000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "63418;63419", + "ref:EU:EVSE": "FRZTLE22AC63419;FRZTLE22AC63418", + "start_date": "2021-06-16", + "amenity": "charging_station", + "capacity": "1", + "network": "TOYOTA ANTHY SUR LEMAN - DEGENEVE", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Toyota - Thonon - 22kW AC (Autostart) ;Toyota - Thonon - 22kW AC ", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "owner:ref:FR:SIREN": "796680668", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43886800000, + 46.34908200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P7874772752523367652", + "ref": "735249", + "description": "SDEA 10/TYTYI3MTEH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12797100000, + 48.22545300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/stvalerysomme", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "64682", + "ref:EU:EVSE": "FRS80PSTVALERYSOMME", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63007000000, + 50.18740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - NOYELLES GODAULT", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST8412;FRIZFPFAST8411;FRIZFPFAST8413;FRIZFPFAST8421;FRIZFPFAST8422;FRIZFPFAST8423", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*84*2*_*_;FR*SOD*S*FAST*84*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97696630000, + 50.41588170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-23;2024-04-12", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44119001;FRS44P44119A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "PAULX - Rue De L'Ebergement;OuestCharge - Diva Sp - Paulx - Ebergement", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75401200000, + 46.96371600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "description": "MELUN - Paul Doumer", + "start_date": "2024-03-19", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS77E77288001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66007304471, + 48.53963018709 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH01E62040004", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ARQUES - Rue Aristide Briand", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30131064117, + 50.73862896399 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - EPEIGNE LES BOIS - Pkg. du plan d'eau", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - EPEIGNE LES BOIS - Pkg. du plan d'eau", + "ref:EU:EVSE": "FRS37E221331;FRS37E221330", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E221331;FRS37E221330", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11469600000, + 47.28028500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66300;FRS55E66301", + "capacity": "2", + "description": "MODULO - DAMMARIE SUR SAULX - Chemin des gendarmes", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS55E66300;FRS55E66301", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - DAMMARIE SUR SAULX - Chemin des gendarmes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24270800000, + 48.59399200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2021-09-08", + "network": "GRAND LYON", + "description": "BRN01 - HOTEL DE VILLE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*129*1*_*_;FR*SOD*S*LYON*129*2*_*_", + "ref:EU:EVSE": "FRGLYPLYON12922;FRGLYPLYON12911;FRGLYPLYON12912;FRGLYPLYON12921", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90903500000, + 45.73434600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5915203", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MEL", + "description": "GRUSON - Rue du Maréchal Leclerc", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59152*03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20443900000, + 50.59651600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:30-12:00, Mo 13:30-19:00, Tu 08:30-12:00, Tu 13:30-19:00, We 08:30-12:00, We 13:30-19:00, Th 08:30-12:00, Th 13:30-19:00, Fr 08:30-12:00, Fr 13:30-19:00, Sa 08:30-12:00, Sa 13:30-19:00", + "capacity": "5", + "network": "DRIVECO", + "description": "Jaguar Land Rover - JFC - Les Andelys", + "amenity": "charging_station", + "start_date": "2018-09-25", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSSDPJLRJFC277001", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;7.36 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803000000, + 49.24470100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6567525", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6567525", + "charging_station:output": "22 kW", + "network": "SONEPAR CONNECT TROYES", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "description": "SONEPAR CONNECT TROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02426500000, + 48.30933900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510620", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P2622642923349944192", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Leclerc/EM1XTBUMGN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306600000, + 49.23610100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "8c2af9b2-5f45-5aa3-800c-4cb806924f08", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | La Teste-De-Buch | Avenue du Banc d'Arguin (Pyla)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20755900000, + 44.60663200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "ecb8af8b-a886-5a18-a355-58740a3fd484", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Longpont-sur-Orge - Chemin de Derrière les Murs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28993800000, + 48.64012100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO0001261", + "start_date": "2022-10-17", + "amenity": "charging_station", + "capacity": "1", + "network": "Allego NISSAN Le Mans", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO0001261", + "description": "Allego NISSAN Le Mans" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17280000000, + 47.97366000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST GILLES", + "operator:email": "bornes@lidl.fr", + "ref": "LFR1693EVCP02;LFR1693EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR1693EVCP02;LFR1693EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42069600000, + 43.67131900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE8922;FRM06PNICE8912;FRM06PNICE8911;FRM06PNICE8921", + "capacity": "2", + "start_date": "2019-10-04;2020-11-02", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*89*2*_*_;FR*SOD*S*NICE*89*1*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "CARROS - PARKING DU PLANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19278100000, + 43.76927500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-RAPHAEL - PARKING EUGENE FELIX", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref:EU:EVSE": "FRA16PWIIZ21611;FRA16PWIIZ21612", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*216*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76909900000, + 43.42759100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/U1DFZSVSVG", + "operator:email": "roaming@freshmile.com", + "ref": "491898", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8007467376392747796", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23518000000, + 45.56136000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRCOL", + "start_date": "2023-07-07", + "capacity": "3", + "description": "Mr. Bricolage - Colmar", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34069260000, + 48.06370340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJMYBDN", + "description": "Réseau eborn/JMYBDN;Saint-Nazaire-En-Royans, Angle L. Laurent/J.", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "32719;JMYBDN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24940000000, + 45.06000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP8124857383254396712", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "1173492", + "description": "EVzen/E6B35F83-6E60-4176-BC31-3CFE17684158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54892200000, + 47.39569000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "start_date": "2021-06-29", + "description": "CAMBRAI - Centre Hospitalier", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E59122001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22552800000, + 50.16519500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-05", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/MQK82BCMDT;Le Puy-en-Velay, Place Michelet", + "ref:EU:EVSE": "FREBNP6878413813027948816;FREBNPMQK82BCMDT", + "ref": "369016;MQK82BCMDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88605500000, + 45.04059500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "1031289", + "opening_hours": "Th,Sa,Mo,We,Tu,Su,Fr 08:00-18:00", + "network": "Road", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP6402198499691647129", + "operator:email": "roaming-dev@road.io", + "description": "Road/65e884a0827172001cb1b45c", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03637800000, + 46.00573600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Hérouville", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32423000000, + 49.20932000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/DRWCTS", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "86774", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PDRWCTS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52149000000, + 49.55370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1208", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "ref": "FR*V75*PPX12*08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Fabre d'Églantine 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39537380000, + 48.84557750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref": "466296", + "description": "Freshmile France/YNLENGKDIG", + "ref:EU:EVSE": "FRFR1P7051862205379786460", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Th,Tu,Fr,Mo,We,Sa 08:00-20:15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643100000, + 48.85224900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-10-06", + "charging_station:output": "22.08 kW", + "description": "Ets Neviere - Manosque", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPNEVIERE041191", + "operator": "DRIVECO", + "opening_hours": "Tu 08:00-17:00, We 08:00-17:00, Th 08:00-17:00, Fr 08:00-17:00, Sa 08:00-15:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97601600000, + 43.83547500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "description": "900003", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "start_date": "2016-02-15", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PCONDEITONMAIRIE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96432000000, + 48.83254000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS21P21461A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180398", + "description": "SICECO/FR*S21*P21461*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63063300000, + 46.95115700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-03", + "description": "SAINT-GERMAIN-EN-LAYE - Parking la Soucoupe", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06556000000, + 48.89282000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "904074713", + "operator:email": "contact@qowatt.com", + "opening_hours": "24/7", + "description": "e-Fast 150kW - Village des marques Troyes", + "ref": "FR*QWT*S10191*A*1", + "network": "QoWatt", + "operator": "QoWatt", + "ref:EU:EVSE": "FRQWTS10191A", + "start_date": "2024-01-15", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11000000000, + 48.33000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLV3VEHA2V", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP8075234652376183310", + "charging_station:output": "24 kW;22 kW", + "ref": "805326", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70447500000, + 47.34102100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Bolleville Ouest;Bolleville Ouest", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "IONITY GMBH;Bolleville Ouest", + "ref:EU:EVSE": "FRIOYE431901;FRIONE431900;FRIOYE431902;FRIOYE431951;FRIOYE431952;FRIOYE431953", + "start_date": "2021-07-01;2021-06-29", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "ref": "FRIOYE431901;FRIONE431900;FRIOYE431902;FRIOYE431951;FRIOYE431952;FRIOYE431953", + "operator": "IONITY", + "capacity": "3;5", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54584400000, + 49.61434300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - STE MENEHOULD - Pl. d'Austerlitz", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E40866;FRS51E40867", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E40866;FRS51E40867", + "start_date": "2020-12-11", + "description": "MODULO - STE MENEHOULD - Pl. d'Austerlitz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89263000000, + 49.09137700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Etrepilly - Stade", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "5159233f-ea5b-4989-ab14-289cbdde1bde", + "ref:EU:EVSE": "FRS77P77173A", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "start_date": "2024-05-22", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93449900000, + 49.03185600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS CŒUR DES HAUTS DE FRANCE", + "capacity": "16", + "start_date": "2023-01-20;2022-12-30;2023-01-24;2023-03-05", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRHPCPNF080346", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681064;531681061;531681063;531681058;531681052;531681053;531681049;531681050;531681051;531681055;531681054;531681056;531681057;531681060;531681059;531681062", + "ref:EU:EVSE": "FRHPCPNF080346", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84060000000, + 49.88940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAMALOU LES BAINS - Boulevard Saint Michel - Parking Centre Ulysse", + "ref:EU:EVSE": "FRS34E34126001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-12-29", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08381944000, + 43.59756110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lorient - Rue Müller", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-10-20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PJXKJUW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.40196300000, + 47.76665200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QAEFOK9R0M", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892902", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P57871200637991015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13395500000, + 49.25866700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P92051*D;Metropolis - ePremium - Neuilly-sur-Seine - Vital Bouhot", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref": "599055", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051D", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26628400000, + 48.89549600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRSSDPHESSFIAT678001", + "description": "Fiat - HESS - Strasbourg Bischheim", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-03-16;2020-07-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72714100000, + 48.61777700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-21", + "owner:ref:FR:SIREN": "422848515", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRC2P003501;FRC2P003502", + "description": "LA FARIGOULETTE CIEL A VILLAGE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P003501;FRC2P003502", + "charging_station:output": "11.04 kW", + "network": "LA FARIGOULETTE CIEL A VILLAGE", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07625291535, + 43.73425939611 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "GARENNE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL", + "ref": "FR*SOD*S*GACO*2*6*_*_;FR*SOD*S*GACO*2*5*_*_;FR*SOD*S*GACO*2*4*_*_;FR*SOD*S*GACO*2*3*_*_;FR*SOD*S*GACO*2*1*_*_;FR*SOD*S*GACO*2*2*_*_", + "start_date": "2020-10-29;2020-09-22", + "owner:ref:FR:SIREN": "219200359", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRLGCPGACO241;FRLGCPGACO211;FRLGCPGACO221;FRLGCPGACO231;FRLGCPGACO251;FRLGCPGACO261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23721700000, + 48.90845800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | Sauternes | Place de la Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "815d44d7-91c0-55c0-84a3-d0f44a370d28", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34240500000, + 44.53057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE16GLPA", + "charging_station:output": "24 kW;22 kW", + "description": "Salle des fêtes - Gensac La Pallue", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26201200000, + 45.65587700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP1632432405138919404", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "description": "BornEco/6526a047d66357a549ce37d4", + "ref": "1168008", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91555500000, + 46.67833700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "19", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/NJNRQHE26R", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5876761893498083261", + "ref": "446771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119600000, + 47.09754200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PMXFGYDVAN0", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Martigues, Parking Stade Turcan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04882200000, + 43.40647600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "charging_station:output": "43 kW;160 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "network": "SDEY", + "opening_hours": "24/7", + "description": "SDEY/RUSDRTRTIC;SDEY/DNRVCQDURX", + "capacity": "2;4", + "ref:EU:EVSE": "FRS89P6055026387228299523;FRS89P280874450607395292", + "ref": "585560;694418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29122300000, + 47.73220900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ7111;FRA16PWIIZ7112", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-06-13", + "ref": "FR*SOD*S*WIIZ*71*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA COLLE-SUR-LOUP - STADE DE FOOTBALL", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09900300000, + 43.68525300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Touquet, Digue-promenade des Princes de Monaco", + "network": "Touquet Normal", + "start_date": "2022-12-29", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "528932627", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "advenir@freshmile.com", + "ref:EU:EVSE": "FRFR1PIOMGH1LYJJ", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58023448252, + 50.52371029327 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Laverie Speed Queen - Montauban", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-01-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSQEMTB", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37352790000, + 44.03779130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPL1ZVU3VTKA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "L1ZVU3VTKA;30434", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/L1ZVU3VTKA;Val Buëch-Méouge , Rue des Ecoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85574600000, + 44.23104200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP3272175592817997479", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARF - Bornes Publiques/F622865D-1C4A-4DDC-B791-7172191D0857", + "ref": "612874", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51680500000, + 43.94396700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "HYPER U - SIERENTZ", + "network": "SYSTEME U", + "ref": "FR*SOD*S*OTHR*679*7*_*_;FR*SOD*S*OTHR*679*1*_*_;FR*SOD*S*OTHR*679*2*_*_;FR*SOD*S*OTHR*679*3*_*_;FR*SOD*S*OTHR*679*4*_*_;FR*SOD*S*OTHR*679*5*_*_;FR*SOD*S*OTHR*679*6*_*_", + "start_date": "2023-08-03", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR67971;FROTHPOTHR67961;FROTHPOTHR67941;FROTHPOTHR67921;FROTHPOTHR67911;FROTHPOTHR67931;FROTHPOTHR67951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44028500000, + 47.66666400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "natural": "beach", + "surface": "sand" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.19995590000, + 49.97186340000 + ], + [ + 1.20116830000, + 49.97128380000 + ], + [ + 1.20294930000, + 49.97224990000 + ], + [ + 1.20570660000, + 49.97435440000 + ], + [ + 1.20586750000, + 49.97464420000 + ], + [ + 1.20507360000, + 49.97598280000 + ], + [ + 1.20202660000, + 49.97336080000 + ], + [ + 1.19995590000, + 49.97186340000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Mezel, Parking Le Claus;Réseau eborn/XZTXRU", + "ref": "78630;XZTXRU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPXZTXRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19651000000, + 43.99590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "75071;UJNXRL", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Le Cheylard, Place de la Guinguette;Réseau eborn/UJNXRL", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPUJNXRL", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42441000000, + 44.90590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - BONNETABLE", + "start_date": "2022-03-31", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR37011;FROTHPOTHR37021;FROTHPOTHR37031;FROTHPOTHR37041", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*370*1*_*_;FR*SOD*S*OTHR*370*2*_*_;FR*SOD*S*OTHR*370*3*_*_;FR*SOD*S*OTHR*370*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41779900000, + 48.17090200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7108809564715119651", + "ref": "368905", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PDGJQAA0FT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34557700000, + 47.04787600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP3439", + "amenity": "charging_station", + "description": "Tesla Supercharger Val de Meuse, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335263", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51296000000, + 47.99147000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8976446936463441783", + "ref": "521372", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/U752AH0SVL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07418600000, + 43.56313400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPCBECLAIRA665301", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "12", + "description": "Le Crest - Claira", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-09-28", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91914600000, + 42.77577700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TEJPQMNWKD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2106435351597214511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "398966" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31883700000, + 48.85661600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plehedel-Rue du Dr Mahé", + "ref:EU:EVSE": "FRS22E22178001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00721000000, + 48.69644900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "501208680", + "start_date": "2021-05-19;2020-12-01", + "description": "Mazda - Saint-Etienne - 22kW AC", + "network": "Mazda - Saint-Etienne", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZMAE22AC60973;FRZMAE22AC49430", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:30", + "ref": "60973\t;49430", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39937810000, + 45.46269650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE304", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-03-28", + "operator": "RossiniEnergy", + "description": "Kiloutou_Chenove" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00940900000, + 47.28018600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GARGENVILLE – Avenue Mademoiselle Dosne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-03", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78267002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81007700000, + 48.98912700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Troyes Sud", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE438053;FRIOYE438007;FRIOYE438006;FRIOYE438004;FRIOYE438003;FRIOYE438002;FRIOYE438005;FRIOYE438051;FRIOYE438052", + "network": "Troyes Sud", + "start_date": "2021-12-02", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE438006;FRIOYE438004;FRIOYE438003;FRIOYE438002;FRIOYE438005;FRIOYE438007;FRIOYE438051;FRIOYE438052;FRIOYE438053" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13297255000, + 48.22540029000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "ref:EU:EVSE": "FRS53E53077001;FRS53P53077A", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Cosse-Le-Vivien - Foire;COSSE-LE-VIVIEN - Place Du Champ De Foire", + "owner:ref:FR:SIREN": "200082477", + "start_date": "2024-05-17;2021-04-20", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91247700000, + 47.94467000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BANYULS-SUR-MER - Rue Saint Sebastien", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66016001", + "charging_station:output": "22 kW", + "start_date": "2017-09-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12633800000, + 42.48154100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Suèvres", + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE008201;FRIENE008202", + "amenity": "charging_station", + "capacity": "4", + "description": "Suèvres", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE008201;FRIENE008202", + "start_date": "2023-07-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44626300000, + 47.67615300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "BAIN DE BRETAGNE - zi chateau gaillard ", + "ref:EU:EVSE": "FRS35P35012002B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68013100000, + 47.85366100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-MESA-001", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "LE MELE SUR SARTHE", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61258A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35336500000, + 48.51295800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLJWGJ3GU39PIK", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "892428", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8736664894387703528" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29364900000, + 47.74958100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PSCPPWG", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "description": "Roulez Électrique En Haute-Garonne/SCPPWG;Plaisance-du-Touch, Avenue Montaigne", + "opening_hours": "24/7", + "start_date": "2018-08-07", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "94301;SCPPWG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30224000000, + 43.56280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE92026007", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "COURBEVOIE - 13 Rue Edith Cavell", + "start_date": "2022-04-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26978200000, + 48.90112300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000272;FRCG0E000271;FRCG0E000270;FRCG0E000269;FRCG0E000268;FRCG0E000267;FRCG0E000265;FRCG0E000263;FRCG0E000262;FRCG0E000261;FRCG0E000264;FRCG0E000266;FRCG0E000520", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "capacity": "13", + "description": "BMW - ALTITUDE 69 LYON - 69009 - 1", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCG0E000520;FRCG0E000272;FRCG0E000271;FRCG0E000270;FRCG0E000266;FRCG0E000265;FRCG0E000263;FRCG0E000262;FRCG0E000261;FRCG0E000264;FRCG0E000267;FRCG0E000268;FRCG0E000269", + "charging_station:output": "50 kW;22 kW;2 kW", + "network": "BMW - ALTITUDE 69 LYON - 69009 - 1", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80905507000, + 45.78509803000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-30", + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*145*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE14512;FRM06PNICE14511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "VENCE - PARKING PISCINE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11637700000, + 43.71984100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref": "3369ea85-1e30-526d-9203-160c6785a9c3;FR*SOD*S*MB40*21*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Montfort En Chalosse | Parking Coopérative | Face Gendarmerie;MONTFORT EN CHALOSSE - PARKING COOPERATIVE - FACE GENDARMERIE", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-04-15", + "owner:ref:FR:SIREN": "254001399", + "ref:EU:EVSE": "FRS40PMB402112;FRS40PMB402111;Non concerné", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83364500000, + 43.71010600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE60BVDA", + "socket:type2_combo:output": "24 kW", + "description": "BEAUVAIS - Esplanade Verdun", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08860200000, + 49.43440400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "170159;170160", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS170159;FRBMPS170160", + "charging_station:output": "22 kW;150 kW", + "description": "Bump - Burger King - Berck", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "capacity": "2;3", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59564600000, + 50.40269100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3319EVCP02;LFR3319EVCP03;LFR3319EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SECLIN Lille", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3319EVCP02;LFR3319EVCP03;LFR3319EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03489600000, + 50.55894600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "139108e4-30ae-5f0c-a6a4-68628fbe9218", + "description": "MOBIVE | Correze | Route du Vimbelle", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87238700000, + 45.36762500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "ref": "30403da5-0a4f-5d69-a8fd-5802b65e7d9e", + "opening_hours": "24/7", + "description": "Arpajon - Rue Jules Lemoine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24443200000, + 48.58896500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP92130ISSGALLIENI", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P92130*ISS*GALLIENI", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX", + "operator:email": "contact@e55c.com", + "start_date": "2020-03-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26765000000, + 48.82742300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "VILLENAVE D'ORNON - art", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3956EVCP04;LFR3956EVCP03;LFR3956EVCP02;LFR3956EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3956EVCP04;LFR3956EVCP03;LFR3956EVCP02;LFR3956EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53458100000, + 44.78846200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2022-09-13", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "charging_station:output": "22.08 kW", + "description": "LEPLEIN Lille - Btwin village - Parking couvert", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRPL1PBTWINPL1590003", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08467800000, + 50.61623200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref": "591404;Z4Q0ZTBFD9", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPZ4Q0ZTBFD9;FREBNP644465296056958301", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/Z4Q0ZTBFD9;Riorges, Parc Beaulieu", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04269400000, + 46.03628000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP42279A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-02-09", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Cinépôle Saint-Just-Saint-Rambert", + "ref": "FRETIP42279A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26362519887, + 45.51020741423 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E26004001", + "charging_station:output": "7 kW", + "description": "Parking gare de Valence TGV P2 Rhone - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97815900000, + 44.98863300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-05-04", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Bauvin", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT592211", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89336800000, + 50.51777200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Passy, Parking Mattel", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPBOHPZMIGRR", + "charging_station:output": "22 kW", + "ref": "BOHPZMIGRR", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70548980000, + 45.90843310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR48521;FROTHPOTHR48512;FROTHPOTHR48511;FROTHPOTHR48522", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*485*1*_*_;FR*SOD*S*OTHR*485*2*_*_", + "description": "INTERMARCHE - LA CHAPELLE SAINT MESMIN", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82867300000, + 47.88590700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "fence", + "landuse": "industrial", + "name": "Centre nucléaire de production d'électricité de Penly", + "name:en": "Penly Nuclear Power Plant", + "operator": "EDF", + "operator:wikidata": "Q274591", + "operator:wikipedia": "en:Électricité de France", + "plant:method": "fission", + "plant:output:electricity": "2660 MW", + "plant:source": "nuclear", + "power": "plant", + "short_name": "CNPE de Penly", + "start_date": "1990", + "wikidata": "Q1318977", + "wikipedia": "fr:Centrale nucléaire de Penly" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.22521610000, + 49.98505430000 + ], + [ + 1.22521040000, + 49.98500020000 + ], + [ + 1.22520690000, + 49.98496640000 + ], + [ + 1.22524740000, + 49.98494140000 + ], + [ + 1.22524200000, + 49.98485400000 + ], + [ + 1.22539240000, + 49.98474360000 + ], + [ + 1.22543670000, + 49.98469840000 + ], + [ + 1.22545810000, + 49.98464050000 + ], + [ + 1.22545200000, + 49.98459530000 + ], + [ + 1.22542910000, + 49.98454920000 + ], + [ + 1.22538780000, + 49.98450600000 + ], + [ + 1.22490690000, + 49.98420360000 + ], + [ + 1.22421530000, + 49.98377660000 + ], + [ + 1.22340910000, + 49.98329160000 + ], + [ + 1.22346100000, + 49.98300790000 + ], + [ + 1.22333120000, + 49.98292050000 + ], + [ + 1.22333120000, + 49.98276640000 + ], + [ + 1.22330830000, + 49.98275460000 + ], + [ + 1.22306100000, + 49.98273590000 + ], + [ + 1.22287930000, + 49.98275650000 + ], + [ + 1.22271140000, + 49.98275360000 + ], + [ + 1.22258160000, + 49.98271430000 + ], + [ + 1.22221670000, + 49.98255920000 + ], + [ + 1.22152200000, + 49.98223520000 + ], + [ + 1.22029290000, + 49.98169230000 + ], + [ + 1.21969130000, + 49.98143410000 + ], + [ + 1.21911730000, + 49.98100800000 + ], + [ + 1.21910200000, + 49.98081060000 + ], + [ + 1.21920120000, + 49.98064470000 + ], + [ + 1.21938440000, + 49.98031380000 + ], + [ + 1.21966840000, + 49.98031880000 + ], + [ + 1.21990200000, + 49.98030110000 + ], + [ + 1.22003180000, + 49.98033250000 + ], + [ + 1.22032880000, + 49.98015480000 + ], + [ + 1.22070440000, + 49.97991920000 + ], + [ + 1.22180980000, + 49.97919850000 + ], + [ + 1.22249990000, + 49.97872920000 + ], + [ + 1.22313500000, + 49.97832660000 + ], + [ + 1.22271060000, + 49.97771980000 + ], + [ + 1.22418850000, + 49.97733100000 + ], + [ + 1.22444200000, + 49.97726030000 + ], + [ + 1.22465270000, + 49.97715230000 + ], + [ + 1.22482370000, + 49.97698540000 + ], + [ + 1.22510770000, + 49.97649050000 + ], + [ + 1.22514430000, + 49.97641590000 + ], + [ + 1.22517180000, + 49.97618610000 + ], + [ + 1.22514430000, + 49.97599960000 + ], + [ + 1.22505270000, + 49.97581890000 + ], + [ + 1.22494360000, + 49.97567060000 + ], + [ + 1.22498390000, + 49.97561790000 + ], + [ + 1.22541560000, + 49.97520280000 + ], + [ + 1.22575170000, + 49.97491220000 + ], + [ + 1.22621420000, + 49.97454990000 + ], + [ + 1.22631240000, + 49.97455510000 + ], + [ + 1.22635950000, + 49.97458450000 + ], + [ + 1.22689730000, + 49.97491660000 + ], + [ + 1.22737330000, + 49.97522870000 + ], + [ + 1.22744050000, + 49.97522090000 + ], + [ + 1.22826070000, + 49.97470210000 + ], + [ + 1.22876090000, + 49.97439510000 + ], + [ + 1.22879720000, + 49.97430950000 + ], + [ + 1.22904060000, + 49.97414690000 + ], + [ + 1.22935790000, + 49.97387630000 + ], + [ + 1.22976670000, + 49.97351830000 + ], + [ + 1.22999660000, + 49.97332110000 + ], + [ + 1.23002480000, + 49.97329600000 + ], + [ + 1.23040260000, + 49.97211470000 + ], + [ + 1.22977470000, + 49.97176620000 + ], + [ + 1.22822980000, + 49.97092480000 + ], + [ + 1.22742300000, + 49.97048980000 + ], + [ + 1.22739080000, + 49.97046730000 + ], + [ + 1.22740020000, + 49.97043360000 + ], + [ + 1.22805100000, + 49.96995620000 + ], + [ + 1.22828220000, + 49.96980920000 + ], + [ + 1.22852560000, + 49.96969760000 + ], + [ + 1.22883750000, + 49.96958000000 + ], + [ + 1.22963620000, + 49.96925220000 + ], + [ + 1.22990040000, + 49.96914630000 + ], + [ + 1.22999390000, + 49.96915490000 + ], + [ + 1.23009200000, + 49.96911600000 + ], + [ + 1.23009410000, + 49.96906800000 + ], + [ + 1.23040670000, + 49.96894390000 + ], + [ + 1.23044630000, + 49.96893960000 + ], + [ + 1.23050890000, + 49.96894860000 + ], + [ + 1.23082960000, + 49.96908360000 + ], + [ + 1.23118120000, + 49.96923450000 + ], + [ + 1.23127390000, + 49.96926470000 + ], + [ + 1.23132770000, + 49.96926210000 + ], + [ + 1.23137340000, + 49.96924400000 + ], + [ + 1.23167730000, + 49.96903820000 + ], + [ + 1.23226090000, + 49.96862480000 + ], + [ + 1.23225820000, + 49.96854350000 + ], + [ + 1.23192070000, + 49.96829270000 + ], + [ + 1.23121340000, + 49.96777630000 + ], + [ + 1.23050980000, + 49.96726180000 + ], + [ + 1.23012940000, + 49.96697820000 + ], + [ + 1.23003290000, + 49.96690630000 + ], + [ + 1.22954660000, + 49.96653980000 + ], + [ + 1.22946450000, + 49.96647790000 + ], + [ + 1.22937400000, + 49.96641930000 + ], + [ + 1.22931850000, + 49.96638070000 + ], + [ + 1.22924630000, + 49.96633240000 + ], + [ + 1.22917250000, + 49.96626780000 + ], + [ + 1.22912260000, + 49.96624510000 + ], + [ + 1.22871510000, + 49.96622180000 + ], + [ + 1.22859280000, + 49.96621480000 + ], + [ + 1.22856650000, + 49.96618590000 + ], + [ + 1.22855650000, + 49.96617500000 + ], + [ + 1.22826610000, + 49.96592160000 + ], + [ + 1.22788150000, + 49.96588700000 + ], + [ + 1.22680990000, + 49.96621570000 + ], + [ + 1.22676280000, + 49.96627970000 + ], + [ + 1.22671040000, + 49.96629260000 + ], + [ + 1.22665530000, + 49.96630910000 + ], + [ + 1.22654370000, + 49.96629700000 + ], + [ + 1.22605020000, + 49.96645090000 + ], + [ + 1.22599510000, + 49.96651580000 + ], + [ + 1.22595880000, + 49.96652790000 + ], + [ + 1.22591710000, + 49.96653740000 + ], + [ + 1.22580950000, + 49.96652700000 + ], + [ + 1.22525960000, + 49.96669050000 + ], + [ + 1.22370250000, + 49.96716620000 + ], + [ + 1.22356140000, + 49.96722670000 + ], + [ + 1.22346190000, + 49.96728640000 + ], + [ + 1.22339460000, + 49.96733650000 + ], + [ + 1.22333010000, + 49.96742740000 + ], + [ + 1.22330590000, + 49.96750520000 + ], + [ + 1.22330320000, + 49.96760550000 + ], + [ + 1.22333410000, + 49.96769030000 + ], + [ + 1.22354520000, + 49.96803020000 + ], + [ + 1.22380740000, + 49.96846090000 + ], + [ + 1.22384910000, + 49.96853440000 + ], + [ + 1.22387060000, + 49.96857850000 + ], + [ + 1.22389750000, + 49.96867970000 + ], + [ + 1.22389210000, + 49.96878780000 + ], + [ + 1.22387330000, + 49.96884660000 + ], + [ + 1.22381550000, + 49.96892790000 + ], + [ + 1.22371730000, + 49.96901960000 + ], + [ + 1.22364200000, + 49.96907400000 + ], + [ + 1.22356940000, + 49.96911040000 + ], + [ + 1.22346460000, + 49.96914500000 + ], + [ + 1.22274650000, + 49.96939230000 + ], + [ + 1.22199890000, + 49.96965350000 + ], + [ + 1.22183630000, + 49.96970540000 + ], + [ + 1.22168430000, + 49.96974600000 + ], + [ + 1.22149470000, + 49.96978490000 + ], + [ + 1.22121510000, + 49.96983940000 + ], + [ + 1.22024690000, + 49.97002100000 + ], + [ + 1.21974140000, + 49.97011360000 + ], + [ + 1.21959890000, + 49.97015940000 + ], + [ + 1.21929900000, + 49.97031080000 + ], + [ + 1.21880690000, + 49.97062810000 + ], + [ + 1.21863210000, + 49.97074660000 + ], + [ + 1.21841830000, + 49.97087030000 + ], + [ + 1.21820590000, + 49.97096540000 + ], + [ + 1.21798270000, + 49.97103550000 + ], + [ + 1.21762900000, + 49.97112800000 + ], + [ + 1.21723640000, + 49.97123350000 + ], + [ + 1.21717990000, + 49.97123700000 + ], + [ + 1.21583800000, + 49.97158460000 + ], + [ + 1.21522490000, + 49.97173850000 + ], + [ + 1.21443970000, + 49.97194440000 + ], + [ + 1.21416000000, + 49.97201700000 + ], + [ + 1.21396640000, + 49.97206030000 + ], + [ + 1.21378890000, + 49.97207750000 + ], + [ + 1.21363290000, + 49.97207410000 + ], + [ + 1.21347690000, + 49.97203950000 + ], + [ + 1.21274010000, + 49.97190460000 + ], + [ + 1.21194680000, + 49.97170740000 + ], + [ + 1.21067750000, + 49.97146010000 + ], + [ + 1.21046640000, + 49.97145580000 + ], + [ + 1.21036690000, + 49.97147820000 + ], + [ + 1.21035340000, + 49.97145750000 + ], + [ + 1.21032250000, + 49.97143330000 + ], + [ + 1.21029290000, + 49.97143410000 + ], + [ + 1.20959510000, + 49.97183110000 + ], + [ + 1.20951750000, + 49.97177920000 + ], + [ + 1.20939150000, + 49.97169810000 + ], + [ + 1.20953350000, + 49.97170400000 + ], + [ + 1.20961290000, + 49.97155670000 + ], + [ + 1.20949690000, + 49.97147720000 + ], + [ + 1.20950140000, + 49.97144380000 + ], + [ + 1.20951290000, + 49.97130780000 + ], + [ + 1.20951820000, + 49.97124450000 + ], + [ + 1.20948010000, + 49.97122880000 + ], + [ + 1.20941290000, + 49.97121210000 + ], + [ + 1.20831820000, + 49.97099500000 + ], + [ + 1.20769060000, + 49.97087030000 + ], + [ + 1.20742120000, + 49.97091500000 + ], + [ + 1.20739370000, + 49.97089490000 + ], + [ + 1.20723790000, + 49.97078150000 + ], + [ + 1.20696510000, + 49.97069030000 + ], + [ + 1.20675470000, + 49.97068180000 + ], + [ + 1.20665010000, + 49.97068230000 + ], + [ + 1.20652950000, + 49.97069850000 + ], + [ + 1.20644860000, + 49.97072010000 + ], + [ + 1.20636160000, + 49.97075890000 + ], + [ + 1.20628750000, + 49.97082170000 + ], + [ + 1.20626000000, + 49.97086100000 + ], + [ + 1.20620050000, + 49.97099060000 + ], + [ + 1.20609970000, + 49.97119000000 + ], + [ + 1.20608290000, + 49.97123560000 + ], + [ + 1.20608290000, + 49.97145950000 + ], + [ + 1.20612870000, + 49.97145900000 + ], + [ + 1.20612980000, + 49.97146790000 + ], + [ + 1.20613100000, + 49.97147770000 + ], + [ + 1.20608750000, + 49.97148410000 + ], + [ + 1.20602950000, + 49.97152480000 + ], + [ + 1.20577980000, + 49.97168390000 + ], + [ + 1.20557980000, + 49.97153170000 + ], + [ + 1.20557370000, + 49.97138340000 + ], + [ + 1.20519050000, + 49.97138730000 + ], + [ + 1.20483480000, + 49.97147770000 + ], + [ + 1.20468970000, + 49.97153170000 + ], + [ + 1.20453550000, + 49.97159260000 + ], + [ + 1.20434920000, + 49.97168100000 + ], + [ + 1.20421640000, + 49.97178310000 + ], + [ + 1.20365070000, + 49.97227670000 + ], + [ + 1.20373890000, + 49.97234450000 + ], + [ + 1.20397410000, + 49.97254830000 + ], + [ + 1.20427230000, + 49.97274400000 + ], + [ + 1.20449810000, + 49.97289830000 + ], + [ + 1.20467330000, + 49.97302490000 + ], + [ + 1.20485240000, + 49.97312180000 + ], + [ + 1.20493950000, + 49.97317970000 + ], + [ + 1.20510200000, + 49.97331330000 + ], + [ + 1.20521090000, + 49.97338490000 + ], + [ + 1.20527950000, + 49.97345510000 + ], + [ + 1.20548900000, + 49.97363790000 + ], + [ + 1.20554390000, + 49.97369980000 + ], + [ + 1.20576580000, + 49.97388720000 + ], + [ + 1.20582600000, + 49.97395820000 + ], + [ + 1.20588800000, + 49.97401570000 + ], + [ + 1.20600100000, + 49.97413240000 + ], + [ + 1.20606170000, + 49.97418720000 + ], + [ + 1.20612480000, + 49.97421680000 + ], + [ + 1.20614210000, + 49.97423870000 + ], + [ + 1.20615490000, + 49.97446880000 + ], + [ + 1.20614660000, + 49.97454690000 + ], + [ + 1.20611750000, + 49.97462010000 + ], + [ + 1.20601120000, + 49.97482880000 + ], + [ + 1.20596370000, + 49.97491170000 + ], + [ + 1.20592610000, + 49.97499290000 + ], + [ + 1.20583540000, + 49.97515510000 + ], + [ + 1.20562470000, + 49.97547900000 + ], + [ + 1.20551200000, + 49.97563280000 + ], + [ + 1.20531060000, + 49.97601260000 + ], + [ + 1.20510660000, + 49.97634390000 + ], + [ + 1.20502910000, + 49.97648830000 + ], + [ + 1.20492360000, + 49.97671490000 + ], + [ + 1.20489570000, + 49.97679360000 + ], + [ + 1.20487630000, + 49.97687060000 + ], + [ + 1.20485460000, + 49.97705080000 + ], + [ + 1.20486260000, + 49.97714080000 + ], + [ + 1.20488610000, + 49.97722470000 + ], + [ + 1.20491790000, + 49.97730960000 + ], + [ + 1.20500130000, + 49.97747260000 + ], + [ + 1.20503330000, + 49.97755300000 + ], + [ + 1.20510720000, + 49.97771040000 + ], + [ + 1.20517400000, + 49.97791090000 + ], + [ + 1.20522840000, + 49.97802580000 + ], + [ + 1.20525110000, + 49.97809440000 + ], + [ + 1.20526400000, + 49.97816470000 + ], + [ + 1.20526010000, + 49.97831460000 + ], + [ + 1.20524670000, + 49.97837730000 + ], + [ + 1.20522370000, + 49.97843720000 + ], + [ + 1.20518680000, + 49.97849510000 + ], + [ + 1.20511400000, + 49.97858560000 + ], + [ + 1.20496570000, + 49.97872000000 + ], + [ + 1.20468040000, + 49.97890810000 + ], + [ + 1.20457110000, + 49.97896670000 + ], + [ + 1.20428610000, + 49.97914760000 + ], + [ + 1.20412180000, + 49.97926110000 + ], + [ + 1.20402930000, + 49.97931730000 + ], + [ + 1.20396780000, + 49.97936040000 + ], + [ + 1.20383900000, + 49.97945910000 + ], + [ + 1.20376770000, + 49.97950480000 + ], + [ + 1.20368670000, + 49.97954850000 + ], + [ + 1.20362930000, + 49.97959800000 + ], + [ + 1.20359990000, + 49.97963890000 + ], + [ + 1.20358870000, + 49.97968100000 + ], + [ + 1.20358860000, + 49.97972410000 + ], + [ + 1.20361190000, + 49.97977470000 + ], + [ + 1.20365510000, + 49.97981400000 + ], + [ + 1.20370690000, + 49.97984620000 + ], + [ + 1.20384400000, + 49.97991020000 + ], + [ + 1.20389640000, + 49.97992540000 + ], + [ + 1.20394770000, + 49.97993060000 + ], + [ + 1.20399800000, + 49.97992860000 + ], + [ + 1.20409340000, + 49.97990850000 + ], + [ + 1.20414140000, + 49.97989120000 + ], + [ + 1.20425210000, + 49.97983260000 + ], + [ + 1.20430210000, + 49.97979920000 + ], + [ + 1.20442400000, + 49.97970040000 + ], + [ + 1.20448540000, + 49.97965910000 + ], + [ + 1.20463900000, + 49.97957060000 + ], + [ + 1.20471760000, + 49.97951330000 + ], + [ + 1.20487990000, + 49.97941420000 + ], + [ + 1.20520420000, + 49.97922850000 + ], + [ + 1.20542230000, + 49.97908700000 + ], + [ + 1.20545710000, + 49.97904800000 + ], + [ + 1.20551370000, + 49.97894640000 + ], + [ + 1.20555160000, + 49.97889840000 + ], + [ + 1.20559920000, + 49.97885060000 + ], + [ + 1.20587580000, + 49.97867230000 + ], + [ + 1.20593840000, + 49.97859500000 + ], + [ + 1.20595960000, + 49.97854860000 + ], + [ + 1.20596540000, + 49.97850290000 + ], + [ + 1.20596300000, + 49.97845160000 + ], + [ + 1.20593510000, + 49.97833260000 + ], + [ + 1.20588450000, + 49.97818720000 + ], + [ + 1.20588570000, + 49.97815580000 + ], + [ + 1.20592310000, + 49.97812130000 + ], + [ + 1.20607540000, + 49.97802830000 + ], + [ + 1.20608500000, + 49.97799430000 + ], + [ + 1.20607580000, + 49.97793940000 + ], + [ + 1.20607460000, + 49.97789350000 + ], + [ + 1.20608970000, + 49.97786140000 + ], + [ + 1.20615540000, + 49.97781470000 + ], + [ + 1.20627370000, + 49.97777960000 + ], + [ + 1.20618300000, + 49.97754560000 + ], + [ + 1.20601120000, + 49.97755840000 + ], + [ + 1.20596810000, + 49.97755680000 + ], + [ + 1.20592640000, + 49.97755170000 + ], + [ + 1.20588120000, + 49.97753040000 + ], + [ + 1.20569860000, + 49.97741540000 + ], + [ + 1.20563340000, + 49.97736590000 + ], + [ + 1.20549620000, + 49.97722740000 + ], + [ + 1.20547930000, + 49.97719390000 + ], + [ + 1.20544200000, + 49.97706490000 + ], + [ + 1.20543310000, + 49.97700090000 + ], + [ + 1.20542950000, + 49.97686700000 + ], + [ + 1.20544310000, + 49.97679800000 + ], + [ + 1.20547080000, + 49.97672300000 + ], + [ + 1.20554330000, + 49.97660180000 + ], + [ + 1.20566510000, + 49.97642840000 + ], + [ + 1.20571830000, + 49.97638070000 + ], + [ + 1.20594280000, + 49.97621690000 + ], + [ + 1.20600110000, + 49.97618450000 + ], + [ + 1.20613960000, + 49.97612810000 + ], + [ + 1.20628320000, + 49.97608710000 + ], + [ + 1.20646140000, + 49.97604930000 + ], + [ + 1.20664080000, + 49.97601860000 + ], + [ + 1.20673310000, + 49.97600920000 + ], + [ + 1.20684330000, + 49.97600450000 + ], + [ + 1.20696040000, + 49.97600270000 + ], + [ + 1.20707450000, + 49.97600880000 + ], + [ + 1.20716600000, + 49.97601910000 + ], + [ + 1.20746480000, + 49.97608010000 + ], + [ + 1.20762610000, + 49.97612920000 + ], + [ + 1.20769190000, + 49.97615890000 + ], + [ + 1.20790100000, + 49.97627610000 + ], + [ + 1.20798070000, + 49.97630780000 + ], + [ + 1.20806390000, + 49.97635840000 + ], + [ + 1.20821220000, + 49.97645760000 + ], + [ + 1.20836550000, + 49.97657670000 + ], + [ + 1.20841620000, + 49.97660080000 + ], + [ + 1.20848030000, + 49.97663860000 + ], + [ + 1.20859050000, + 49.97671290000 + ], + [ + 1.20834100000, + 49.97687460000 + ], + [ + 1.20858020000, + 49.97704700000 + ], + [ + 1.20914690000, + 49.97741290000 + ], + [ + 1.20939190000, + 49.97725930000 + ], + [ + 1.20945460000, + 49.97729880000 + ], + [ + 1.20954770000, + 49.97734510000 + ], + [ + 1.20959140000, + 49.97737180000 + ], + [ + 1.20965390000, + 49.97741580000 + ], + [ + 1.20976910000, + 49.97750830000 + ], + [ + 1.20989830000, + 49.97759820000 + ], + [ + 1.21001140000, + 49.97767080000 + ], + [ + 1.21002880000, + 49.97769080000 + ], + [ + 1.21005060000, + 49.97770550000 + ], + [ + 1.20982270000, + 49.97784510000 + ], + [ + 1.21007440000, + 49.97801860000 + ], + [ + 1.21063000000, + 49.97838250000 + ], + [ + 1.21086090000, + 49.97823670000 + ], + [ + 1.21089480000, + 49.97826230000 + ], + [ + 1.21112240000, + 49.97836720000 + ], + [ + 1.21117830000, + 49.97840220000 + ], + [ + 1.21123950000, + 49.97844440000 + ], + [ + 1.21127730000, + 49.97847820000 + ], + [ + 1.21127770000, + 49.97850780000 + ], + [ + 1.21122850000, + 49.97855830000 + ], + [ + 1.21114480000, + 49.97862630000 + ], + [ + 1.21109660000, + 49.97866510000 + ], + [ + 1.21100540000, + 49.97872220000 + ], + [ + 1.21090260000, + 49.97879350000 + ], + [ + 1.21077740000, + 49.97886620000 + ], + [ + 1.21072030000, + 49.97890580000 + ], + [ + 1.21067340000, + 49.97893210000 + ], + [ + 1.21065450000, + 49.97893820000 + ], + [ + 1.21057330000, + 49.97896470000 + ], + [ + 1.21054120000, + 49.97896790000 + ], + [ + 1.21050250000, + 49.97895920000 + ], + [ + 1.21031090000, + 49.97886120000 + ], + [ + 1.21016890000, + 49.97877730000 + ], + [ + 1.21009230000, + 49.97873850000 + ], + [ + 1.20978530000, + 49.97855430000 + ], + [ + 1.20951550000, + 49.97838140000 + ], + [ + 1.20936680000, + 49.97829210000 + ], + [ + 1.20918050000, + 49.97820040000 + ], + [ + 1.20897300000, + 49.97807970000 + ], + [ + 1.20877560000, + 49.97794650000 + ], + [ + 1.20868550000, + 49.97789580000 + ], + [ + 1.20842810000, + 49.97772760000 + ], + [ + 1.20823300000, + 49.97760890000 + ], + [ + 1.20804800000, + 49.97748220000 + ], + [ + 1.20794290000, + 49.97742130000 + ], + [ + 1.20759010000, + 49.97723020000 + ], + [ + 1.20746620000, + 49.97714840000 + ], + [ + 1.20739570000, + 49.97709440000 + ], + [ + 1.20735580000, + 49.97708030000 + ], + [ + 1.20726420000, + 49.97707090000 + ], + [ + 1.20721530000, + 49.97707380000 + ], + [ + 1.20715610000, + 49.97709180000 + ], + [ + 1.20710920000, + 49.97711800000 + ], + [ + 1.20707890000, + 49.97714810000 + ], + [ + 1.20707130000, + 49.97720640000 + ], + [ + 1.20708280000, + 49.97723620000 + ], + [ + 1.20710680000, + 49.97726620000 + ], + [ + 1.20720670000, + 49.97735840000 + ], + [ + 1.20730300000, + 49.97743080000 + ], + [ + 1.20738390000, + 49.97750930000 + ], + [ + 1.20749430000, + 49.97757830000 + ], + [ + 1.20759950000, + 49.97763550000 + ], + [ + 1.20778760000, + 49.97775600000 + ], + [ + 1.20801840000, + 49.97792830000 + ], + [ + 1.20806980000, + 49.97796950000 + ], + [ + 1.20816100000, + 49.97807050000 + ], + [ + 1.20819410000, + 49.97812130000 + ], + [ + 1.20822100000, + 49.97818730000 + ], + [ + 1.20823970000, + 49.97825140000 + ], + [ + 1.20825130000, + 49.97831530000 + ], + [ + 1.20825190000, + 49.97837730000 + ], + [ + 1.20823720000, + 49.97843910000 + ], + [ + 1.20821260000, + 49.97850430000 + ], + [ + 1.20816000000, + 49.97861320000 + ], + [ + 1.20805710000, + 49.97876620000 + ], + [ + 1.20799930000, + 49.97882560000 + ], + [ + 1.20793770000, + 49.97887320000 + ], + [ + 1.20782560000, + 49.97897220000 + ], + [ + 1.20770700000, + 49.97905580000 + ], + [ + 1.20756460000, + 49.97914180000 + ], + [ + 1.20740550000, + 49.97922930000 + ], + [ + 1.20736550000, + 49.97925650000 + ], + [ + 1.20733600000, + 49.97926510000 + ], + [ + 1.20730800000, + 49.97926740000 + ], + [ + 1.20728090000, + 49.97928490000 + ], + [ + 1.20711660000, + 49.97936250000 + ], + [ + 1.20701800000, + 49.97943200000 + ], + [ + 1.20692970000, + 49.97948730000 + ], + [ + 1.20676180000, + 49.97958550000 + ], + [ + 1.20658280000, + 49.97968350000 + ], + [ + 1.20648880000, + 49.97974050000 + ], + [ + 1.20620900000, + 49.97993140000 + ], + [ + 1.20586050000, + 49.98013560000 + ], + [ + 1.20574840000, + 49.98019240000 + ], + [ + 1.20563320000, + 49.98025990000 + ], + [ + 1.20545910000, + 49.98037500000 + ], + [ + 1.20532190000, + 49.98047280000 + ], + [ + 1.20525000000, + 49.98053550000 + ], + [ + 1.20521230000, + 49.98057720000 + ], + [ + 1.20519570000, + 49.98061560000 + ], + [ + 1.20518980000, + 49.98066220000 + ], + [ + 1.20521230000, + 49.98073530000 + ], + [ + 1.20526030000, + 49.98079710000 + ], + [ + 1.20530100000, + 49.98082820000 + ], + [ + 1.20540100000, + 49.98087820000 + ], + [ + 1.20545470000, + 49.98089430000 + ], + [ + 1.20560720000, + 49.98091630000 + ], + [ + 1.20566730000, + 49.98091090000 + ], + [ + 1.20572230000, + 49.98089460000 + ], + [ + 1.20577600000, + 49.98087110000 + ], + [ + 1.20581760000, + 49.98083850000 + ], + [ + 1.20584110000, + 49.98080470000 + ], + [ + 1.20587140000, + 49.98077550000 + ], + [ + 1.20608310000, + 49.98061870000 + ], + [ + 1.20614880000, + 49.98057290000 + ], + [ + 1.20638490000, + 49.98043620000 + ], + [ + 1.20659310000, + 49.98030000000 + ], + [ + 1.20684230000, + 49.98014730000 + ], + [ + 1.20693460000, + 49.98009750000 + ], + [ + 1.20711780000, + 49.98004000000 + ], + [ + 1.20744970000, + 49.97995140000 + ], + [ + 1.20761770000, + 49.97989000000 + ], + [ + 1.20770880000, + 49.97987340000 + ], + [ + 1.20788510000, + 49.97985350000 + ], + [ + 1.20809960000, + 49.97985490000 + ], + [ + 1.20828860000, + 49.97986930000 + ], + [ + 1.20847570000, + 49.97989630000 + ], + [ + 1.20875370000, + 49.97995520000 + ], + [ + 1.20882540000, + 49.97997870000 + ], + [ + 1.20890330000, + 49.98002030000 + ], + [ + 1.20893280000, + 49.98003370000 + ], + [ + 1.20920360000, + 49.98015760000 + ], + [ + 1.20939650000, + 49.98021890000 + ], + [ + 1.20950550000, + 49.98024920000 + ], + [ + 1.20960970000, + 49.98029740000 + ], + [ + 1.21016670000, + 49.98058410000 + ], + [ + 1.21040940000, + 49.98069640000 + ], + [ + 1.21051160000, + 49.98075990000 + ], + [ + 1.21074020000, + 49.98087640000 + ], + [ + 1.21103680000, + 49.98100200000 + ], + [ + 1.21115990000, + 49.98106670000 + ], + [ + 1.21140940000, + 49.98118180000 + ], + [ + 1.21161860000, + 49.98129530000 + ], + [ + 1.21185330000, + 49.98139760000 + ], + [ + 1.21196820000, + 49.98145770000 + ], + [ + 1.21222590000, + 49.98157820000 + ], + [ + 1.21245590000, + 49.98169570000 + ], + [ + 1.21292870000, + 49.98192180000 + ], + [ + 1.21303850000, + 49.98196930000 + ], + [ + 1.21353360000, + 49.98223250000 + ], + [ + 1.21376000000, + 49.98233290000 + ], + [ + 1.21420660000, + 49.98255140000 + ], + [ + 1.21441650000, + 49.98264430000 + ], + [ + 1.21451510000, + 49.98269340000 + ], + [ + 1.21475280000, + 49.98282800000 + ], + [ + 1.21486660000, + 49.98288180000 + ], + [ + 1.21498830000, + 49.98294650000 + ], + [ + 1.21525610000, + 49.98309860000 + ], + [ + 1.21543670000, + 49.98319200000 + ], + [ + 1.21582950000, + 49.98335580000 + ], + [ + 1.21605940000, + 49.98347600000 + ], + [ + 1.21638710000, + 49.98362720000 + ], + [ + 1.21649090000, + 49.98368710000 + ], + [ + 1.21660460000, + 49.98374180000 + ], + [ + 1.21680680000, + 49.98381840000 + ], + [ + 1.21689320000, + 49.98385740000 + ], + [ + 1.21709120000, + 49.98397260000 + ], + [ + 1.21721080000, + 49.98402020000 + ], + [ + 1.21755770000, + 49.98417970000 + ], + [ + 1.21767400000, + 49.98424070000 + ], + [ + 1.21787560000, + 49.98437300000 + ], + [ + 1.21796720000, + 49.98442380000 + ], + [ + 1.21860210000, + 49.98471600000 + ], + [ + 1.21868410000, + 49.98476220000 + ], + [ + 1.21878700000, + 49.98480860000 + ], + [ + 1.21899780000, + 49.98487720000 + ], + [ + 1.21922740000, + 49.98496410000 + ], + [ + 1.21942860000, + 49.98502910000 + ], + [ + 1.21975840000, + 49.98512280000 + ], + [ + 1.22000160000, + 49.98517930000 + ], + [ + 1.22047900000, + 49.98527520000 + ], + [ + 1.22063430000, + 49.98529720000 + ], + [ + 1.22091750000, + 49.98532740000 + ], + [ + 1.22113450000, + 49.98533870000 + ], + [ + 1.22138520000, + 49.98534230000 + ], + [ + 1.22179200000, + 49.98534370000 + ], + [ + 1.22206660000, + 49.98534050000 + ], + [ + 1.22242380000, + 49.98532680000 + ], + [ + 1.22283640000, + 49.98532200000 + ], + [ + 1.22333600000, + 49.98530320000 + ], + [ + 1.22395240000, + 49.98528880000 + ], + [ + 1.22422680000, + 49.98528920000 + ], + [ + 1.22493710000, + 49.98526180000 + ], + [ + 1.22522990000, + 49.98525430000 + ], + [ + 1.22521610000, + 49.98505430000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FBVCG0WKZP", + "ref:EU:EVSE": "FRFR1P39631057202953035", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "515003", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06956600000, + 49.10695500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "setp0100000174", + "ref:EU:EVSE": "FRUBIE10091808;FRUBIE10033873", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-03-08", + "description": "UBI-LHSM-218" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26966700000, + 49.64288900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "description": "Freshmile France/HVNFAZ", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1920670135120674181", + "opening_hours": "24/7", + "ref": "79594", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570000000, + 44.88817900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555023", + "start_date": "2022-01-28", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - 1 Avenue J. Dagnaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42862000000, + 43.61606000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LWJIYIXGPX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "398930", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2766200468092278391", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81880000000, + 47.29000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "462003", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6471478911532790631", + "description": "MobiSDEC/WNPDHQMXEF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163000000, + 49.29660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-14", + "ref:EU:EVSE": "FRS12E12030001", + "description": "BOUILLAC - Rue des Cyprés", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16002600000, + 44.57423400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GOMMECOURT - Stade", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78276001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60286320000, + 49.06295520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49162001;FRS49P49162A", + "charging_station:output": "22 kW", + "description": "JALLAIS - Place des Combattants;OuestCharge - Diva Sp - Jallais - Combattants", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-21;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86840500000, + 47.19826100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "64985", + "ref:EU:EVSE": "FRS70PFRESNECARREFOUR", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "description": "SIED70/Fresnecarrefour", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85900000000, + 47.54930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-04", + "ref:EU:EVSE": "FRH14E59180001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE DOULIEU - Grande Rue", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71564793676, + 50.68033541206 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VERN SUR SEICHE - 3 place de la mairie ", + "ref:EU:EVSE": "FRS35P35352001B1", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "start_date": "2022-01-01", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60278200000, + 48.04497900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63192A", + "amenity": "charging_station", + "ref": "518345", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63192*A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68754900000, + 45.53306800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1052475", + "network": "Freshmile France", + "description": "Freshmile France/LLO2QKFVGLVB2Q", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P853609403139081209", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17745400000, + 49.11054700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS32PCDKXJS", + "ref": "21831", + "charging_station:output": "22 kW", + "description": "SDEG32/CDKXJS", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10312200000, + 43.85930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CACHAN - Avenue de la Division Leclerc", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-05-26", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94016005", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32883700000, + 48.78549800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*270*1*_*_", + "description": "UTELLE - PARKING FIGARET", + "start_date": "2023-10-04", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE27011;FRM06PNICE27012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27459033360, + 43.94238834675 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "b06ee9d3-6a2a-5855-8815-44956dfb2170", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Bergerac | Gare de Bergerac (Parking)", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48812700000, + 44.85704400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PARKING GRANDE RUE - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-02", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40212;FRSIGPSIGE40211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*402*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18857000000, + 48.98540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-08", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76513001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "QUEVILLON - Route De La Rivière Bourdet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95303200000, + 49.41911200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "LFR2856EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2856EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "AUDUN Napoléon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96162700000, + 49.48030800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "b4819ce7-cca2-5d45-a046-dd23fde085b1", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Malemort | Aire de Covoiturage ZA du Moulin", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59468200000, + 45.17802200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "37a2eda1-e459-563a-aded-62aa04641dd5", + "amenity": "charging_station", + "description": "CAUMONT-SUR-DURANCE - Place Maurice Beaux", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94284100000, + 43.89228800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR594E59039001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "AWOINGT - Aire de covoiturage", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28765997135, + 50.16292175050 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3012EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3012EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BONNEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37967400000, + 47.79354100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-08-26;2023-08-23", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "description": "Intermarché - Peymeinade", + "ref:EU:EVSE": "FRPD1PITMPMN", + "charging_station:output": "50 kW;100 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88818593414, + 43.64463264137 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/BD2JDOGVLL;Satillieu, Place du Collège", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30350;BD2JDOGVLL", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPBD2JDOGVLL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61752000000, + 45.15135500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP78423A", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP78423A", + "opening_hours": "24/7", + "description": "e-Totem - Ibis Budget Saint Quentin en Yvelines", + "operator:email": "contact@e-totem.fr", + "capacity": "10", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03564970682, + 48.78904414990 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "22 kW;50 kW;100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PCORGLG", + "opening_hours": "24/7", + "start_date": "2023-07-05;2023-01-18", + "capacity": "11", + "description": "Cora - Garges-lès-Gonesse", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41816100000, + 48.97489000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Magny-En-Vexin", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT954201", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78583200000, + 49.15830700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREPIE1897208", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Garage Bernard La Gorgue", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73641779537, + 50.63557722599 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*193*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "description": "AUCHAN - MONTAUBAN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPAUCH19311;FROTHPAUCH19312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36874880000, + 44.03141280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR DEMO_DAVID", + "opening_hours": "Mo 06:30-18:00,Tu 06:30-18:00,We 06:30-18:00,Th 06:30-18:00,Fr 06:30-18:00", + "description": "SONEPAR DEMO_DAVID", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "ref": "FRCPIE6805025", + "ref:EU:EVSE": "FRCPIE6805025", + "operator:email": "info@chargepoint.com", + "start_date": "2023-10-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48569700000, + 45.16212000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TUT6GF98YM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1630760723668894758", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "368938", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55960900000, + 44.80663000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref:EU:EVSE": "FRV75P901401", + "ref": "FR*V75*P9014*01", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Avenue du Maine 173", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32589500000, + 48.83086000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510566", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3115341781014939523", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QIGYFMBDEQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13256700000, + 50.60256800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Tesla Supercharger Aire du Caylar", + "ref:EU:EVSE": "FRTSLP1744", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31327700000, + 43.86458900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521282", + "description": "Freshmile France/GIKZ0YEDUA", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3878473528870474478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97722500000, + 48.93063500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "description": "R3 - Marquette 1", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89882104", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06457900000, + 50.68130500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P5260092360516887043", + "ref": "457581", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/VVKHTT0N8X", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49713700000, + 49.18057300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-16", + "charging_station:output": "22 kW", + "description": "VIALA DU TARN - Place de l'Auberge", + "ref:EU:EVSE": "FRS12E122960011", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87730100000, + 44.07220700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LYFWPNTEK", + "network": "WAAT", + "ref:EU:EVSE": "FRWA5P4917007320843815443", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref": "1041030", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24638900000, + 50.48063400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "description": "OuestCharge - ePremium - Vaudelany - Mairie", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS49P49364A", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20838900000, + 47.13925000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81128001", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LACROUZETTE - Place Du Théron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34805100000, + 43.66283500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REL. BEAU SITE", + "owner:ref:FR:SIREN": "531681091;531681090;531681087;531681086;531681085;531681088;531681089", + "socket:type2_combo:output": "300 kW;150 kW", + "capacity": "7", + "amenity": "charging_station", + "start_date": "2023-01-12", + "ref:EU:EVSE": "FRHPCPNF051024", + "opening_hours": "24/7", + "ref": "FRHPCPNF051024", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38972600000, + 49.17270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PRAYSSAC - Square De La Vénus", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46225001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19246800000, + 44.50236200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mobilité électrique 56/UNJRKT", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25097", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PUNJRKT", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10407000000, + 47.71020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH04E59234002", + "operator": "Bouygues E&S", + "start_date": "2024-03-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FLERS-EN-ESCREBIEUX - SALLE DES SPORTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05375151104, + 50.40118780365 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "description": "Quimper-Rue Rouget de Lisle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10641700000, + 47.99948500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE94068023", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2024-03-19", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Du Centenaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51051010000, + 48.80502800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346051472;FRLMSE12346051471;FRLMSE12346051481;FRLMSE12346051482", + "network": "SOREGIES MOBILITES", + "description": "CHATELLERAULT NORD-1-1;CHATELLERAULT NORD-1-2", + "owner:ref:FR:SIREN": "450889225", + "ref": "B024", + "start_date": "2018-07-06", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54260000000, + 46.83630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP93001A", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P93001*A;Metropolis - Citadine - Aubervilliers - Docteur Pesqué", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "484751" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38306300000, + 48.91321100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-12-01;2020-11-30", + "description": "SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE7461;FRSIGPSIGE7411;FRSIGPSIGE7421;FRSIGPSIGE7431;FRSIGPSIGE7441;FRSIGPSIGE7451", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*74*2*_*_;FR*SOD*S*SIGE*74*1*_*_;FR*SOD*S*SIGE*74*3*_*_;FR*SOD*S*SIGE*74*4*_*_;FR*SOD*S*SIGE*74*5*_*_;FR*SOD*S*SIGE*74*6*_*_", + "charging_station:output": "7.4 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27560400000, + 48.82313200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Atlante/FRATL*EPINA0001", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP8151547332785516198", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "907827", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47089100000, + 48.18847100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "Howdens Ivry", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1000081810", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40364100000, + 48.80696700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "08d95d22-2aa6-51c7-aa53-3cb743db1961", + "description": "MOBIVE | Biarritz | Parking Floquet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55400100000, + 43.47798900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85160001", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-06-03", + "description": "NESMY - Place De L'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40227000000, + 46.59270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9006131;FRALLEGO9006102;FRALLEGO9006101;FRALLEGO9002923;FRALLEGO9002922;FRALLEGO9000392;FRALLEGO9000391;FRALLEGO9000232;FRALLEGO9000231;FRALLEGO9002921;FRALLEGO9006132", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Limoges Boisseuil", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Limoges Boisseuil", + "ref:EU:EVSE": "FRALLEGO9006131;FRALLEGO9006102;FRALLEGO9006101;FRALLEGO9002923;FRALLEGO9002922;FRALLEGO9000392;FRALLEGO9000391;FRALLEGO9000232;FRALLEGO9000231;FRALLEGO9002921;FRALLEGO9006132", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30749800000, + 45.77881600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - SAINT MARTIN LES BOULOGNE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-05-15", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST9913;FRIZFPFAST9912;FRIZFPFAST9911", + "ref": "FR*SOD*S*FAST*99*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64479960000, + 50.72693440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-11-06", + "opening_hours": "24/7", + "description": "Boulangerie Louise - Trie-Château", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PLSETRC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80041691105, + 49.28671908609 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Saint-Gervais-Les-Bains, Parking Patinoire", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPBAVXN00NQZ", + "ref": "BAVXN00NQZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71282510000, + 45.88786740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "927786", + "description": "ENGIE MAMP - Bornes publiques/50B0D831-89CE-4A7D-9E15-4CE03CA43B2A", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP794994271931341215", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36297900000, + 43.28897200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PGSTVDV", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Basic Fit - La Valette-du-Var", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00412280000, + 43.13750830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPY8NFJOVNCO;FREBNY8NFJOVNCO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Varages, Place De La Libération;Réseau eborn/Y8NFJOVNCO", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref": "Y8NFJOVNCO;85916" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96040700000, + 43.59766800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP14536A", + "amenity": "charging_station", + "start_date": "2024-07-30", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP14536A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - DASSIN Kyriad La Rivière Saint Sauveur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25344438087, + 49.41051363560 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-09-11;2020-12-21", + "network": "SEMVR", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*171*9*_*_;FR*SOD*S*OTHR*171*8*_*_;FR*SOD*S*OTHR*171*6*_*_;FR*SOD*S*OTHR*171*11*_*_;FR*SOD*S*OTHR*171*10*_*_;FR*SOD*S*OTHR*171*7*_*_", + "ref:EU:EVSE": "FROTHPOTHR17191;FROTHPOTHR171101;FROTHPOTHR171111;FROTHPOTHR17161;FROTHPOTHR17171;FROTHPOTHR17181", + "description": "SEMVR - ROUBAIX - CENTRE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17215000000, + 50.69106000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA NORMA TERRES 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6987145", + "operator:email": "info@chargepoint.com", + "network": "LA NORMA TERRES 1", + "start_date": "2024-08-29", + "ref": "FRCPIE6987145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69422000000, + 45.20025000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "ref": "412076", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "100 kW;150 kW;43 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P621385113906116775", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/O19SAEMHWV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62250000000, + 50.51542000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "description": "CENTER PARCS LES TROIS FORETS - Parking B", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP123008", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99739400000, + 48.60979000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4266737142904171060", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "597840", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GKX205DJH2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50191400000, + 44.89554100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "description": "SUPER U Pouilley Les Vignes", + "network": "SAS GCP", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "capacity": "2;6", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRSUAP25467A", + "ref": "FRSUAP25467A", + "start_date": "2024-01-16", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92423700000, + 47.25692400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/steclotilde", + "ref:EU:EVSE": "FRFR1P5767362709879484042", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "160287", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47010000000, + -20.88560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "ref:EU:EVSE": "FRSSDPKYRIAD586401", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Kyriad - Nevers", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15176200000, + 47.01413600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref": "FRS28E134359", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - SANCHEVILLE - Pl. du Pâtis", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E134359", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SANCHEVILLE - Pl. du Pâtis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57491568000, + 48.19239560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P8086709563666526270", + "description": "SDEA 10/ROHSARMMTL", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "521459" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46638700000, + 48.23941000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA5LQ0CHCRRH", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "708674", + "ref:EU:EVSE": "FRWA9P8230307623908008855", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01243700000, + 43.57810900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-11", + "socket:type2_combo:output": "50 kW", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P50002003", + "charging_station:output": "50 kW;43 kW", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "AGNEAUX – Siège SDEM50" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14243600000, + 49.11096900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "description": "SAINT SULPICE LA POINTE - Parking Office Tourisme", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8127100241;FRS81E8127100231;FRS81E8127100222;FRS81E8127100212;FRS81E8127100211;FRS81E8127100221;FRS81E8127100232;FRS81E8127100242", + "start_date": "2022-02-21", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68826744957, + 43.77388849192 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "AIRE DE KESKASTEL", + "socket:type2_combo:output": "175 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680648;531680649", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-02-14;2022-11-22", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRHPCPNF078531", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06850000000, + 48.97320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "TRELAZE - Rue de la Gare", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49023003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46863898600, + 47.45227813721 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/amblainville", + "opening_hours": "24/7", + "ref": "46612", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PAMBLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11993000000, + 49.20170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-27;2019-12-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH09E62491001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LAVENTIE - Place du Huit Mai ", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77170400000, + 50.62860900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30132001", + "charging_station:output": "22 kW", + "description": "LA GRAND COMBE - Boulevard Talabot", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03008800000, + 44.20964600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/LLTZY6AXR179KZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56P4148488464238444154", + "ref": "1084833", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30204700000, + 47.51748700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-01-20", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "VALDIVIENNE-1-1;VALDIVIENNE-1-2", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B102", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346390501;FRLMSE12346390491", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63465000000, + 46.50886200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1121529", + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "description": "Métropolis/FR*MGP*P94053*A", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP94053A", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54882000000, + 48.77439800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-28", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*107*1*_*_", + "description": "SIGEIF - PARKING DE LA GARE - DOMONT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE10711;FRSIGPSIGE10712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33695600000, + 49.03284600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-22", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "RIVESALTES - Chambre des métiers et de l'artisanat", + "ref:EU:EVSE": "FRBE1E66164001", + "charging_station:output": "11 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89806700000, + 42.78433500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2022-12-22", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A71 L'Allier Saulzet", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89369692" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80251400000, + 46.35728400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Severin | Parking de la Poste", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "f196d8b4-8f34-53d7-b0ab-12656fa0fd03", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25062400000, + 45.31298800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Place du Marché - MERLIMONT", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62MBDA", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-02-20", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58132200000, + 50.46090700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9005481;FRALLEGO9005442;FRALLEGO9005441;FRALLEGO9004713;FRALLEGO9001501;FRALLEGO9001502;FRALLEGO9001531;FRALLEGO9001532;FRALLEGO9004711;FRALLEGO9004712;FRALLEGO9005482", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9005481;FRALLEGO9005442;FRALLEGO9005441;FRALLEGO9004713;FRALLEGO9001501;FRALLEGO9001502;FRALLEGO9001531;FRALLEGO9001532;FRALLEGO9004711;FRALLEGO9004712;FRALLEGO9005482", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Limay", + "network": "Allego Carrefour Limay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75386000000, + 48.99042000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VERNOUILLET Briqueterie", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4050EVCP02;LFR4050EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR4050EVCP02;LFR4050EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34246700000, + 48.73178300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31149001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "COLOMIERS - Rue De Limogne", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33526500000, + 43.61139400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCLMU9GFZZA", + "ref": "31912;CLMU9GFZZA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Peyrins, Parking de l'école;Réseau eborn/CLMU9GFZZA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04942100000, + 45.09263300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/DPK4J4CAMC;Freshmile France/LLTE7JZR11HPZN", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P936184769666202827;FRFR1P6444204985216663103", + "network": "Freshmile France", + "ref": "1122555;597771", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38580000000, + 47.35510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-01-03", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Pasteur-Montparnasse", + "ref:EU:EVSE": "FRP07E75056041;FRP07E750560411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31249149786, + 48.83975462477 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "96038;ZANUNBEQ2X", + "ref:EU:EVSE": "FREBNPZANUNBEQ2X", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Roanne, Rue Alphonse Coste;Réseau eborn/ZANUNBEQ2X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07280400000, + 46.03642900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "description": "Road/65a800e2443e03001cdb30fc;Road/65a7f8442327e0001cae19fa", + "ref:EU:EVSE": "FREFLP3501221716246515337;FREFLP6674572847474955886", + "ref": "1005597;1005594", + "charging_station:output": "22 kW", + "opening_hours": "Fr,Mo,We,Sa,Tu,Su,Th 08:00-18:00;Th,Tu,Sa,We,Fr,Su,Mo 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06283200000, + 47.63544500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*297*9*_*_;FR*SOD*S*OTHR*297*7*_*_;FR*SOD*S*OTHR*297*2*_*_;FR*SOD*S*OTHR*297*10*_*_;FR*SOD*S*OTHR*297*1*_*_;FR*SOD*S*OTHR*297*3*_*_;FR*SOD*S*OTHR*297*4*_*_;FR*SOD*S*OTHR*297*5*_*_;FR*SOD*S*OTHR*297*6*_*_;FR*SOD*S*OTHR*297*8*_*_", + "start_date": "2022-07-11;2022-01-26;2022-05-27;2022-08-09;2022-04-13", + "charging_station:output": "3.68 kW;24 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR29791;FROTHPOTHR29771;FROTHPOTHR29761;FROTHPOTHR29742;FROTHPOTHR29741;FROTHPOTHR29732;FROTHPOTHR29712;FROTHPOTHR297101;FROTHPOTHR29711;FROTHPOTHR29721;FROTHPOTHR29722;FROTHPOTHR29731;FROTHPOTHR29751;FROTHPOTHR29781", + "opening_hours": "24/7", + "network": "LE GOLF DES HAUTS DE NIMES", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "description": "GOLF VACQUEROLLES - PARKING PUBLIC ENTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30103600000, + 43.85126300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6953485;FRCPIE6608315;FRCPIE6608325;FRCPIE6608335;FRCPIE6608345", + "capacity": "5", + "amenity": "charging_station", + "description": "IRVE CAGPS ECO 5", + "opening_hours": "24/7", + "ref": "FRCPIE6953485;FRCPIE6608315;FRCPIE6608325;FRCPIE6608335;FRCPIE6608345", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "IRVE CAGPS ECO 5", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57351600000, + 48.63951300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "HD9NVGOEYE;30413", + "ref:EU:EVSE": "FREBNPHD9NVGOEYE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "L'Epine, Place du 19 Mars 1962;Réseau eborn/HD9NVGOEYE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61315900000, + 44.41539400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P2055912270640671886;FRWATP1926917910710172812", + "charging_station:output": "7.4 kW;22 kW", + "ref": "706208;1182087", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLGJDYNKEP;WAAT/s570498" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10689800000, + 43.72453200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2038994495691846431", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/YPZPZO41JG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "782511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86919900000, + 50.69283100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LOUVRE HOTELS GROUP", + "charging_station:output": "7 kW", + "description": "Premiere Classe - Sarcelles", + "amenity": "charging_station", + "ref": "FRTCBP00396", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP00396", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "owner:ref:FR:SIREN": "878873942", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38825900000, + 48.98659000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8908138086473296185", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "13", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "446504", + "opening_hours": "24/7", + "description": "Freshmile France/BC9AMA977O", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "50 kW;7.4 kW;44 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934100000, + 43.10751900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - Val de Loire automobiles - Cholet", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-12:30, Mo 14:00-19:00, Tu 08:30-12:30, Tu 14:00-19:00, We 08:30-12:30, We 14:00-19:00, Th 08:30-12:30, Th 14:00-19:00, Fr 08:30-12:30, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "ref:EU:EVSE": "FRSSDPVALDELOIREVOLVO493001", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-05-18", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91242700000, + 47.03097800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2903900", + "description": "Concarneau-Rue Jules Ferry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90973900000, + 47.87226500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P6563875726560688640", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/TQAAFAZ1RT", + "ref": "88208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40042300000, + 48.35892500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "ref": "575975", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P4850486011997477337", + "description": "Zephyre/LE00662E", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13809400000, + 47.99221800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "481281", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Régie Services Energie/FR*RSE*P01005*A", + "ref:EU:EVSE": "FRRSEP01005A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89847200000, + 45.99869400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64733", + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/beaucampsegl", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PBEAUCAMPSEGL", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77914000000, + 49.84370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*172*1*_*_", + "description": "IZIVIA FAST - MC DONALDS - CREPY EN VALOIS CARNOT", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST17212;FRIZFPFAST17211;FRIZFPFAST17213", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89773100000, + 49.23034840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - VEUZAIN - Ruelle des Planche", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - VEUZAIN - Ruelle des Planche", + "ref:EU:EVSE": "FRS41E4880;FRS41E4881", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E4880;FRS41E4881", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17330500000, + 47.49941000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "598191", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Mouv'Oise/U2QAZQCHEJ", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P8848188808646334" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58283700000, + 49.10218800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*85*3*_*_;FR*SOD*S*LYON*85*2*_*_;FR*SOD*S*LYON*85*1*_*_;FR*SOD*S*LYON*85*4*_*_", + "capacity": "1", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8541;FRGLYPLYON8521;FRGLYPLYON8511;FRGLYPLYON8531", + "start_date": "2021-06-15", + "opening_hours": "24/7", + "description": "CAL06 - SAINT CLAIR", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85463700000, + 45.78858700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E215626;FRS37E215627", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - PERRUSSON - Impasse de la Forge", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E215626;FRS37E215627", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - PERRUSSON - Impasse de la Forge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01396620000, + 47.10072025000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-gravé - Parking route de Saint Martin", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-11-24", + "ref:EU:EVSE": "FRS56PHFJGYG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.27920900000, + 47.72598400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10P42218AC", + "operator": "E-TOTEM", + "amenity": "charging_station", + "start_date": "2022-07-30;2022-05-25;2021-06-17;2022-06-22", + "network": "RENAULT THIVOLLE ST ETIENNE", + "opening_hours": "24/7", + "ref": "FRG10P42218AC", + "charging_station:output": "22 kW", + "description": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "4;8;2", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38356200000, + 45.45992900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH12712;FROTHPAUCH12711", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "description": "AUCHAN - GRASSE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*127*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95103800000, + 43.63459400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE21711;FRSIGPSIGE21712", + "start_date": "2021-11-23", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*217*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 11 BOULVERARD DU GENERAL LECLERC - ARGENTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23907600000, + 48.94710700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Volkswagen Kerlann Vannes - 56000 - 1", + "capacity": "4", + "start_date": "2024-05-30", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Volkswagen Kerlann Vannes - 56000 - 1", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E003169;FRCG0E003168;FRCG0E003170;FRCG0E003171", + "ref:EU:EVSE": "FRCG0E003169;FRCG0E003168;FRCG0E003170;FRCG0E003171" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79214500000, + 47.66081500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446813", + "description": "Leclerc/S2IIJS4XG5", + "ref:EU:EVSE": "FRLE2P5288631312075297730", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355400000, + 48.75647900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Rochefort | Avenue Marcel Dassault", + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "f0267cb5-585c-53af-b4ef-ccbaa325b4a0", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96002000000, + 45.94435500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-08-24", + "description": "CITROEN - COURSON LES CARRIERES", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE89CABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50186200000, + 47.61214500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA68P68021009", + "ref": "2f00b621-df9a-4f47-a16a-f6367c6f4ee1", + "owner:ref:FR:SIREN": "775688732", + "capacity": "2", + "amenity": "charging_station", + "network": "enedis", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "charging_station:output": "22 kW", + "description": "Voisins-le-bretonneux", + "operator:email": "service.pro@mail.totalenergies.fr", + "start_date": "2022-12-01", + "operator": "total énergie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05000000000, + 48.77000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "ROCHEFORT DU GARD - Issarts", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3831EVCP02;LFR3831EVCP01", + "ref": "LFR3831EVCP02;LFR3831EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73705500000, + 43.95810500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRENOBLE - Rue Marceau - Bonne (CITIZ)", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72139700000, + 45.18360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/RIVUOASEH4;Noirétable, Rue des Tilleuls", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "559889;RIVUOASEH4", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-07-28", + "ref:EU:EVSE": "FREBNP734313708037879025;FREBNPRIVUOASEH4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76441500000, + 45.81650100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2231780591308837533", + "ref": "485115", + "description": "Freshmile France/HCRKSYJVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33244000000, + 43.22653000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "start_date": "2022-03-07", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E94068002", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Diderot - Parking Hôtel de Ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48544750000, + 48.80250350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cusset, Avenue du Drapeau;Réseau eborn/RVJNYU", + "ref": "257158;RVJNYU", + "start_date": "2018-11-26", + "ref:EU:EVSE": "FREBNPRVJNYU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45557000000, + 46.13270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator:email": "help@electra.com", + "capacity": "5", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSURHC", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Suresnes - Hôtel Campanile", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22618200000, + 48.86724500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking gare de Bouray P+R - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E91330001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29026900000, + 48.53144200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-12-20", + "network": "SONEPAR RAMBOUILLET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SONEPAR RAMBOUILLET", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6651895", + "ref:EU:EVSE": "FRCPIE6651895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82982400000, + 48.62273400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "749235", + "ref:EU:EVSE": "FRECHP4896676863566100764", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Easy Charge/OBK3LW1EFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73359700000, + 48.50618600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1903", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "description": "Paris | Rue Jacques Duchesne 1", + "ref": "FR*V75*PPX19*03", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37403630000, + 48.89893210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HSIVEYPWFI", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6974440296433831914", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "575303", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86947100000, + 45.73266200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "network": "Belib'", + "ref": "FR*V75*PHBSAG*LOB", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "Paris | SAGS Parking Lobau", + "start_date": "2022-07-29;2022-05-17;2022-08-08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35386964055, + 48.85679604728 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EYFAUZGMKE", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "801597", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRFR1P105436860708313842", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869200000, + 49.02639900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPKIA130901", + "start_date": "2023-12-13", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "description": "Kia -Aix en Provence", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40629300000, + 43.50785900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22226001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Ploumilliau-Rue Anatole Le Braz (parking Barzic)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52339200000, + 48.67985500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NARBONNE - Parking Théâtre", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11262003", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01527800000, + 43.17916700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "description": "SA BEYNEL ET FILS - Gujan-Mestras - 22kW AC ", + "owner:ref:FR:SIREN": "318226974", + "network": "SA BEYNEL ET FILS ;SA BEYNEL ET FILS", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2019-10-25;2020-12-01", + "ref": "49420;49419;26492;26491", + "ref:EU:EVSE": "FRZSUE22AC49420;FRZSUE22AC26491;FRZSUE22AC26492;FRZSUE22AC49419", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07407100000, + 44.61664600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "description": "USTOU - Guzet Neige", + "ref:EU:EVSE": "FRS09E09322001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29991650000, + 42.78748810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/DLEYBP", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "86633", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PDLEYBP", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29792000000, + 49.89140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*54*1*_*_", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - VENDIN LE VIEL", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST5412;FRIZFPFAST5411;FRIZFPFAST5413", + "operator:email": "sav@izivia.com", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82711260000, + 50.46302340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT MEME LE TENU - Rue De La Ville En Bois", + "ref:EU:EVSE": "FRS44E44087002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79392600100, + 47.02015686000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2023-05-04;2016-08-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61BSPYP13FFJF1643Y", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77233001;FRS77P77233A", + "description": "IVERNY - Rue Du Bordeau;Iverny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78692500000, + 48.99912600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "GreenYellow Shift Mobility/74", + "ref:EU:EVSE": "FRGYMP1015165458697717006", + "ref": "1030593", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50200300000, + 47.24668200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - CROUZILLES - Pkg. Ronsard", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-06-25", + "description": "MODULO - CROUZILLES - Pkg. Ronsard", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E220483;FRS37E220481", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220483;FRS37E220481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45919000000, + 47.12317100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Fraimbois", + "ref": "275b9104-754c-57a6-9949-017fb5ebce81", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54152800000, + 48.52946600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY706 - JEAN MACE", + "ref": "FR*SOD*S*LYON*106*4*_*_;FR*SOD*S*LYON*106*2*_*_;FR*SOD*S*LYON*106*1*_*_;FR*SOD*S*LYON*106*3*_*_", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON10621;FRGLYPLYON10611;FRGLYPLYON10631;FRGLYPLYON10641", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84352000000, + 45.74656500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-07", + "operator": "Mobilize Power Solutions", + "network": "Bodemer Guingamp", + "ref:EU:EVSE": "FRMBZEKSTKP", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "ref": "6dcc36cc-b747-4a9a-97e3-d1002851d69b", + "opening_hours": "24/7", + "description": "BODEMER Guingamp Public", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09789870630, + 48.54670987894 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WattzHub", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "ref": "1073139", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WattzHub/64ad5a8d57c080b735e0676c", + "ref:EU:EVSE": "FRSMIP415339306390114569", + "operator": "WattzHub | FR*SMI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60982800000, + 49.02256200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6627595;FRCPIE6627525;FRCPIE6627495;FRCPIE6627465;FRCPIE6627425;FRCPIE6541595;FRCPIE6620655;FRCPIE6627445;FRCPIE6627475", + "capacity": "18", + "amenity": "charging_station", + "description": "WAAT 4 CHENES 6", + "network": "WAAT 4 CHENES 6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6627525;FRCPIE6627475;FRCPIE6627445;FRCPIE6627425;FRCPIE6541595;FRCPIE6620655;FRCPIE6627465;FRCPIE6627495;FRCPIE6627595", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58946900000, + 48.77708300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/QS6DHJXSDF", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P582156761180699761", + "ref": "485169", + "opening_hours": "We,Tu,Th,Fr,Mo,Sa 08:45-20:00,Su 09:00-12:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787100000, + 44.56716200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Etauliers | Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "77ea8987-fa46-50fd-9478-399dccdb91d9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57348100000, + 45.22411700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Montgeron - Avenue de La Republique Piscine", + "ref": "574f9ca9-c96b-546d-8bae-d23633406c3b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45019400000, + 48.71080400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Airbus - Montoir de Bretagne - G25 Parking extérieur", + "ref:EU:EVSE": "FRAIRPAGJL", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17000500000, + 47.31380400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "PERPIGNAN - Barthez", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3955EVCP01", + "ref:EU:EVSE": "LFR3955EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89730300000, + 42.66791300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "start_date": "2019-01-18;2019-01-05", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "ref:EU:EVSE": "FRM06PNICE621;FRM06PNICE612;FRM06PNICE611;FRM06PNICE631", + "description": "NICE - CYRILLE BESSET RP", + "ref": "FR*SOD*S*NICE*6*1*_*_;FR*SOD*S*NICE*6*2*_*_;FR*SOD*S*NICE*6*3*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25668459845, + 43.71675015959 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ19212;FRA16PWIIZ19211", + "start_date": "2022-11-17", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "AMIRAT - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*192*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82284100000, + 43.89018300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLP2LFVS4ZWV0Y", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "980628", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6930033409874626876" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65914400000, + 48.78200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Brit Hotel - La Chapelle-Saint-Luc", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "ref:EU:EVSE": "FRPD1PBTHLCS", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02937136711, + 48.32388278159 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B23XI8EXVR;598215", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPB23XI8EXVR;FREBNP3683357853445811111", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "7 kW;7.4 kW;22 kW", + "description": "Megève, Parking du Jaillet;Réseau eborn/B23XI8EXVR", + "start_date": "2022-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61978200000, + 45.86391800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP570995050292397982", + "charging_station:output": "22 kW", + "network": "EVzen", + "description": "EVzen/7A6EEB06-29B6-4F22-B564-6A68A084414F", + "operator:email": "support@evzen.com", + "ref": "1179837" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13563900000, + 46.68392800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BORDEAUX - Meunier", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-01-16", + "ref:EU:EVSE": "FRP07E330630061;FRP07E33063006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56345167300, + 44.82938080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPVHAMCV", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "85703;VHAMCV", + "description": "Réseau eborn/VHAMCV;Grenay, Chemin De La Croze", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08628000000, + 45.66790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Muret, avenue de l'Europe", + "operator": "Easycharge services", + "ref:EU:EVSE": "FRECHPLLP8KORJ71SYMW", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-11-22", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "LLP8KORJ71SYMW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33242270000, + 43.47306860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Epinal - ZA Le Saut le Cerf 1", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46653600000, + 48.19723600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/ZEG82YBLHG", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7660232767325898023", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "491994", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63678800000, + 44.17387800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "capacity": "4", + "ref": "FR*V75*PPX10*13", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue du Faubourg Poissonnière 64", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34816200000, + 48.87517000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AC2FNB43AS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5381699307159561673", + "charging_station:output": "22 kW", + "ref": "625976", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25808900000, + 48.43651100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "3;17", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "ref:EU:EVSE": "FRSSDPHESSVOLVO674602;FRSSDPHESSVOLVO674601", + "amenity": "charging_station", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "start_date": "2023-04-13;2022-07-28", + "operator:email": "support@driveco.com", + "description": "Volvo - HESS - Souffelweyersheim PDL1;Volvo - HESS - Souffelweyersheim PDL2", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00;24/7", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72680500000, + 48.62332900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900120", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PBARREOUCHEMOMORT", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66299000000, + 48.94615900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS18E98368", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - BOURGES - Plateau d'Auron", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E98368", + "network": "MODULO - BOURGES - Plateau d'Auron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39045900000, + 47.07721400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTCHAUVET - 3 Fontaines", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-16", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78417001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62846000000, + 48.89277000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - 06010 NICE - GARE DU SUD", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-03-07;2023-01-09;2023-01-06;2024-02-01;2024-02-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQPKPQPRK6791;FRQPKPQPRK6781;FRQPKPQPRK67391;FRQPKPQPRK67331;FRQPKPQPRK67321;FRQPKPQPRK67311;FRQPKPQPRK67301;FRQPKPQPRK67291;FRQPKPQPRK67271;FRQPKPQPRK67221;FRQPKPQPRK67211;FRQPKPQPRK6721;FRQPKPQPRK67201;FRQPKPQPRK67141;FRQPKPQPRK67111;FRQPKPQPRK67101;FRQPKPQPRK6711;FRQPKPQPRK67121;FRQPKPQPRK67131;FRQPKPQPRK67151;FRQPKPQPRK67161;FRQPKPQPRK67171;FRQPKPQPRK67181;FRQPKPQPRK67191;FRQPKPQPRK67231;FRQPKPQPRK67241;FRQPKPQPRK67251;FRQPKPQPRK67261;FRQPKPQPRK67281;FRQPKPQPRK6731;FRQPKPQPRK67341;FRQPKPQPRK67351;FRQPKPQPRK67361;FRQPKPQPRK67371;FRQPKPQPRK67381;FRQPKPQPRK6741;FRQPKPQPRK6751;FRQPKPQPRK6761;FRQPKPQPRK6771", + "ref": "FR*SOD*S*QPRK*67*9*_*_;FR*SOD*S*QPRK*67*8*_*_;FR*SOD*S*QPRK*67*7*_*_;FR*SOD*S*QPRK*67*6*_*_;FR*SOD*S*QPRK*67*38*_*_;FR*SOD*S*QPRK*67*37*_*_;FR*SOD*S*QPRK*67*31*_*_;FR*SOD*S*QPRK*67*30*_*_;FR*SOD*S*QPRK*67*27*_*_;FR*SOD*S*QPRK*67*26*_*_;FR*SOD*S*QPRK*67*25*_*_;FR*SOD*S*QPRK*67*24*_*_;FR*SOD*S*QPRK*67*22*_*_;FR*SOD*S*QPRK*67*21*_*_;FR*SOD*S*QPRK*67*20*_*_;FR*SOD*S*QPRK*67*19*_*_;FR*SOD*S*QPRK*67*15*_*_;FR*SOD*S*QPRK*67*14*_*_;FR*SOD*S*QPRK*67*13*_*_;FR*SOD*S*QPRK*67*10*_*_;FR*SOD*S*QPRK*67*1*_*_;FR*SOD*S*QPRK*67*11*_*_;FR*SOD*S*QPRK*67*12*_*_;FR*SOD*S*QPRK*67*16*_*_;FR*SOD*S*QPRK*67*17*_*_;FR*SOD*S*QPRK*67*18*_*_;FR*SOD*S*QPRK*67*2*_*_;FR*SOD*S*QPRK*67*23*_*_;FR*SOD*S*QPRK*67*28*_*_;FR*SOD*S*QPRK*67*29*_*_;FR*SOD*S*QPRK*67*3*_*_;FR*SOD*S*QPRK*67*32*_*_;FR*SOD*S*QPRK*67*33*_*_;FR*SOD*S*QPRK*67*34*_*_;FR*SOD*S*QPRK*67*35*_*_;FR*SOD*S*QPRK*67*36*_*_;FR*SOD*S*QPRK*67*39*_*_;FR*SOD*S*QPRK*67*4*_*_;FR*SOD*S*QPRK*67*5*_*_", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26049100000, + 43.71220800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP7392327314293836285", + "network": "WAAT", + "capacity": "2", + "description": "WAAT/FRWATLUUAGUSWV", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "ref": "706286", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89009300000, + 43.59156100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Glanon;IONITY GMBH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIOYE412404;FRIOYE412403;FRIONE412400;FRIOYE412401;FRIOYE412402;FRIOYE412451;FRIOYE412452;FRIOYE412453", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE412404;FRIOYE412403;FRIONE412400;FRIOYE412401;FRIOYE412402;FRIOYE412451;FRIOYE412452;FRIOYE412453", + "start_date": "2019-11-26;2019-11-22", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "description": "IONITY Glanon;Glanon", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10970700000, + 47.03207300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "charging_station:output": "22 kW", + "description": "ST GEORGES DE ROUELLEY - Soleil Levant", + "ref:EU:EVSE": "FRS50P50720002", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76594500000, + 48.60312800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77501A;FRS77E77501001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2016-05-30;2023-05-17", + "description": "VILLECERF - Rue De La Roche Du Saut;Villecerf", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61WWA0H0Y8X8NR586D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84826200000, + 48.32536700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF080191", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680561;531680560;531680562;531680563", + "start_date": "2021-03-30;2021-04-30", + "charging_station:output": "50 kW;175 kW;0 kW", + "opening_hours": "24/7", + "ref": "FRHPCPNF080191", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS CHAMP DU ROY LAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61989000000, + 49.56413300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E2925;FRS41E2924", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E2925;FRS41E2924", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MENNETOU SUR CHER - Pl. 11 Novembre", + "description": "MODULO - MENNETOU SUR CHER - Pl. 11 Novembre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86544800000, + 47.26844700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "257167", + "description": "Mobilité électrique 56/GRGKRU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PGRGKRU", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76399000000, + 47.63790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/POVZLZ0M4M", + "ref:EU:EVSE": "FRFR1P6013137394432216238", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446564", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60808000000, + 48.50370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "description": "Métropolis/FR*MGP*P92040*F", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040F", + "ref": "383187", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26183600000, + 48.82380300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Opel - HESS - Belfort", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSOPEL900001", + "capacity": "4", + "charging_station:output": "22.08 kW", + "start_date": "2019-12-26", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87280000000, + 47.63971200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76753001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "YMARE - Grand-Rue - Place De L'École", + "start_date": "2024-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17544800000, + 49.34975300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LLQ2CD49V20QYC", + "ref": "1017078", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P7356253978541291986" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45417500000, + 48.64663000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "26faa73e-0e6f-58c3-820b-53c7c460c8e3", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | La Reole | Parking | Avenue Carnot", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03562100000, + 44.58421300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS95E95652002", + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-10", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VIARMES - Rue Kleinpeter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37193640000, + 49.12618510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18", + "capacity": "6", + "amenity": "charging_station", + "network": "Allego FR, Bazalp Lyon St Bonnet de Mure", + "ref": "FRALLEGO8008602;FRALLEGO8008601;FRALLEGO8001121;FRALLEGO8001091;FRALLEGO8001092;FRALLEGO8001122", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego FR, Bazalp Lyon St Bonnet de Mure", + "ref:EU:EVSE": "FRALLEGO8008602;FRALLEGO8001121;FRALLEGO8001091;FRALLEGO8001092;FRALLEGO8001122;FRALLEGO8008601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01314200000, + 45.69715200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/GPA5FMG8XF", + "capacity": "76", + "ref": "510626", + "ref:EU:EVSE": "FRLE2P1131572091830208408" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46338600000, + 49.09606600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Cornillon-Confoux, Rue des Ferrages", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PM1EIINVUXQ", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07191300000, + 43.56541300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P798281561518891087", + "ref": "402572", + "description": "SDEY/O9WI6RZMGF", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66544100000, + 47.71272200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MOUGINS PARKING CC TOURNAMY 700", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ4611;FRA16PWIIZ4612", + "opening_hours": "24/7", + "start_date": "2018-07-04", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*46*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98771000000, + 43.60415300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AGLDMBPSEF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "625979", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4458605015570459293", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21714800000, + 50.56614400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PRTPVAG", + "description": "Bazarland - Valence d'Agen", + "opening_hours": "24/7", + "start_date": "2024-04-04", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88113680430, + 44.11248813354 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "EKWN2NN56Z;230932", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPEKWN2NN56Z", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Toulon, Parking Ancienne Prison De St Roch;Réseau eborn/EKWN2NN56Z", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92581600000, + 43.12512000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1057995", + "ref:EU:EVSE": "FREVZP842925641626358450", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "EVzen/6B905555-3C79-4F56-92BB-AC64B6D4E081", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31594900000, + 43.80897200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "BRICOMARCHE - VARENNES VAUZELLES", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR65022;FROTHPOTHR65021;FROTHPOTHR65011;FROTHPOTHR65012", + "ref": "FR*SOD*S*OTHR*650*1*_*_;FR*SOD*S*OTHR*650*2*_*_", + "start_date": "2023-06-06", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14841500000, + 47.02687800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31885;VGOBDGLPKS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPVGOBDGLPKS", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/VGOBDGLPKS;Montélimar, Palais des Congrès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74441700000, + 44.55630100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "I8CSUBSTQY;346757", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/I8CSUBSTQY;Porte-de-Savoie , Alpespace, Pyramide", + "ref:EU:EVSE": "FREBNPI8CSUBSTQY;FREBNP4814109486511165059" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03298500000, + 45.48067100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-03-18", + "amenity": "charging_station", + "capacity": "1", + "description": "VILLAGE CORSAIRE 2 PLAGES - CHATELAILLON-PLAGE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "CAMPING DE LOCEAN", + "ref:EU:EVSE": "FROTHPOTHR34311;FROTHPOTHR34321", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*343*2*_*_;FR*SOD*S*OTHR*343*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09332600000, + 46.08412900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "749301", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P3886217018745041693", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CS0IZRKH3Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47866300000, + 44.82811600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1603", + "ref": "FR*V75*PPX16*03", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Rue des Eaux 2", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28560250000, + 48.85666080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "346451", + "ref:EU:EVSE": "FRFR1P2624935569383708772", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PURIAGXR0E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54689900000, + 43.25016000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPSCHUMACHER355102;FRSSDPSCHUMACHER355101", + "start_date": "2023-06-13", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "description": "Volvo - Rennes (PDL1);Volvo - Rennes (PDL2)", + "amenity": "charging_station", + "capacity": "6;9", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-12:00, Mo 13:30-18:30, Tu 08:30-12:00, Tu 13:30-18:30, We 08:30-12:00, We 13:30-18:30, Th 08:30-12:00, Th 13:30-18:30, Fr 08:30-12:00, Fr 13:30-18:30, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61540700000, + 48.10859700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900054", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PVERNONREPUBLIQUE", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48549900000, + 49.09016000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "LOUDEAC - Zone du Triskell", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22136001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73550300000, + 48.18020900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Amiens - 22KW AC", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ZEbonrne", + "start_date": "2020-03-04", + "ref": "1ba7ddde-5acd-49ce-9d80-826777190bcf", + "owner:ref:FR:SIREN": "489359067", + "operator:email": "contact@zeborne.com", + "operator": "ZEborne", + "ref:EU:EVSE": "FRZIME22AC32173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25850958000, + 49.91161768000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-04-27", + "ref:EU:EVSE": "FRROSE252", + "description": "Ecofin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12272600000, + 48.76120900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARRIERES-SOUS-POISSY - Rue Pasteur", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY01E78123003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2021-01-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02209500000, + 48.93706200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Verdun Saint-Nicolas Nord", + "description": "Verdun Saint-Nicolas Nord", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE413706;FRIOYE413705;FRIOYE413704;FRIOYE413702;FRIOYE413701;FRIOYE413703;FRIOYE413751;FRIOYE413752;FRIOYE413753", + "opening_hours": "24/7", + "start_date": "2022-06-29", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE413706;FRIOYE413705;FRIOYE413704;FRIOYE413702;FRIOYE413701;FRIOYE413703;FRIOYE413751;FRIOYE413752;FRIOYE413753", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50787468000, + 49.12018617000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "332237", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/ROSGBVYDNK", + "ref:EU:EVSE": "FRS52P9187472882206848413" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49168200000, + 47.99914500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "50 kW;18 kW;150 kW;22 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65440010", + "start_date": "2023-09-04;2022-03-03", + "description": "TARBES - Parking Parc des expositions", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08471000000, + 43.21888000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE005602;FRIENE005601", + "description": "Charleval", + "amenity": "charging_station", + "capacity": "4", + "network": "Charleval", + "operator:email": "support@iecharge.io", + "ref": "FRIENE005602;FRIENE005601", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291000, + 49.37976570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VALRAS PLAGE - Place René Cassin", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34324001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29269166667, + 43.24748330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61133A", + "ref": "SE61-COUR-001", + "description": "COURTOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35799600000, + 48.62766700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLRHNTCNCX2YXG", + "ref": "1009188", + "ref:EU:EVSE": "FRFR1P6460906548340522828", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18723000000, + 48.86855400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "description": "Saint-Clar-de-Rivière, Grand Place", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PZJVBJM", + "ref": "ZJVBJM", + "operator": "Freshmile SAS", + "start_date": "2017-09-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21608000000, + 43.46660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-10-06;2021-12-08", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ASNIERES-SUR-SEINE - Rue Benoit Malon", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92004009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27540830000, + 48.90952940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-08", + "charging_station:output": "11 kW;50 kW;22 kW;2 kW", + "socket:type2_combo:output": "50 kW", + "description": "BMW MINI - ETS LEGRAND - LAVAL - 53000 - 2", + "amenity": "charging_station", + "network": "BMW MINI - ETS LEGRAND - LAVAL - 53000 - 2", + "opening_hours": "24/7", + "ref": "FRCG0E000152;FRCG0E000151;FRCG0E000150;FRCG0E000149;FRCG0E000148;FRCG0E000147;FRCG0E000145;FRCG0E000146;FRCG0E000153", + "capacity": "9", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000152;FRCG0E000151;FRCG0E000150;FRCG0E000149;FRCG0E000148;FRCG0E000147;FRCG0E000145;FRCG0E000146;FRCG0E000153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79207400000, + 48.08495100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-02-17", + "ref:EU:EVSE": "FRM06PNICE11812;FRM06PNICE11811", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - PARKING PAULIANI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*118*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27996100000, + 43.70588700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "0db1a316-e5e8-5122-887c-9cd84202750d", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Samadet | Parking Zone Commerciale", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48764200000, + 43.63461300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-06-21", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Rue des Grands Fosses - FAMECK", + "ref:EU:EVSE": "FRSE1PSE57FACA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10767200000, + 49.31426900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "description": "Bump - Campanile Bordeaux Gare - Bordeaux", + "ref:EU:EVSE": "FRBMPS23955;FRBMPS23954", + "operator:email": "exploitation@bump-charge.com", + "ref": "23955;23954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55521880000, + 44.82883020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "ESMANS", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4088EVCP03;LFR4088EVCP02;LFR4088EVCP01;LFR4088EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4088EVCP03;LFR4088EVCP02;LFR4088EVCP01;LFR4088EVCP04", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95709600000, + 48.36231300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PXQFUC40G3S", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-9E, 131 Boulevard Michelet", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39506300000, + 43.26624400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "description": "Évry-Courcouronnes - Rue des Mazières", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "e8c4f68b-47c7-5dfb-866e-5a0afc3f2271" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43119400000, + 48.62897100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAP SUD - AVIGNON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000AVGCAPSUD", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84000*AVG*CAPSUD", + "charging_station:output": "22.08 kW", + "start_date": "2021-02-18", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83855600000, + 43.92783200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "PLAN D'ORGON Vergers", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3704EVCP03;LFR3704EVCP01;LFR3704EVCP02", + "ref:EU:EVSE": "LFR3704EVCP03;LFR3704EVCP01;LFR3704EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02087200000, + 43.82238100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Super U - Trèbes", + "start_date": "2022-05-31", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYUTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44234190000, + 43.20319640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "292276", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPNPBXS3RZKU", + "description": "Réseau eborn/NPBXS3RZKU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27705800000, + 45.59379800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1044196901162305144", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "491886", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/ZSAZHIGU1P", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292000000, + 43.92378500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Narbonne Cathédrale - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E11262001", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00166010000, + 43.18660450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Granges-Les-Beaumont, Rue du Tram;Réseau eborn/GXXHNQ5HXX", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPGXXHNQ5HXX", + "ref": "GXXHNQ5HXX;31831" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98386500000, + 45.05038800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "description": "Réseau eborn/SXTKJJ;Annecy, Rue de la Gare", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "79117;SXTKJJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPSXTKJJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12208000000, + 45.89910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*OTHR*461*2*_*_;FR*SOD*S*OTHR*461*1*_*_", + "amenity": "charging_station", + "description": "BMW HELI MOTORS - MONTLUCON", + "ref:EU:EVSE": "FROTHPOTHR46122;FROTHPOTHR46121;FROTHPOTHR46112;FROTHPOTHR46111;FROTHPOTHR46113;FROTHPOTHR46123", + "start_date": "2023-02-03", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "network": "BMW HELI-MOTORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59273300000, + 46.36537000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "782442", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3930550755326150318", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PDIWE44BBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.39766300000, + -21.28203100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "UBI-LHSM-148", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref": "setp0100000139;setp0100000140", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-22", + "ref:EU:EVSE": "FRUBIE10095299;FRUBIE10065970;FRUBIE10015515;FRUBIE10010005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14616700000, + 49.50816700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "466308", + "capacity": "3", + "description": "Freshmile France/Z5YRCO4MCH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8563197241897350081" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.30070000000, + -20.94231100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-09-21", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Rue Louis Courtois de Viçose", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31389060", + "charging_station:output": "22 kW;90 kW;180 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42215900000, + 43.56996500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PUBVDXONKL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8049922406370658731", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "398954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14246300000, + 46.99165700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS14P4603858584285784525", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLW67E3VC2OHZ9", + "ref": "1151766" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35328300000, + 49.09293000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARMISSAN - Parking de la Ricarde", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11388001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09060247638, + 43.18909582869 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78107001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-09-13", + "network": "Seymaborne", + "description": "BRÉVAL - Centre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53471309197, + 48.94343923835 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCPHVA - Parking Hotel de Ville - Aumetz", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "7.328 kW", + "ref": "035ac521-a813-5b24-9c51-e3d001551804", + "operator": "51__CCPHVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94212800000, + 49.41788600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", + "operator:email": "jferchaud@modulo-energies.fr", + "operator": "MODULO", + "owner:ref:FR:SIREN": "256802745", + "description": "IRVE WINTZENHEIM", + "ref:EU:EVSE": "FRS68E93317", + "start_date": "2022-11-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29428300000, + 48.07278500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LOCON - Place de l'Europe rue du 8 Mai D845", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62520001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66593000000, + 50.57026700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35265001B1", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "ST DOMINEUC - 9 place de l eglise " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87557000000, + 48.37280800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-10-06", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63113A", + "ref": "518294", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG 63/FR*S63*P63113*A;SIEG63 - ePremium - Clermont Ferrand - Dunant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08868500000, + 45.76047200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "75 kW;22 kW", + "amenity": "charging_station", + "ref": "472182", + "network": "Freshmile France", + "capacity": "3", + "socket:type2_combo:output": "75 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2482731285774847355", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FOREKRBQZH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76552900000, + 48.58840300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "description": "SDEG32/JSVRYT", + "opening_hours": "24/7", + "ref": "21842", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32PJSVRYT", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77056200000, + 43.89100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "PANTIN - Place du Président Allende", + "ref:EU:EVSE": "FRSIPE93055009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40063976093, + 48.89738720800 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "La Butte - Riffault - 29260 - 1", + "ref": "FRCG0E001248;FRCG0E001245;FRCG0E001246", + "charging_station:output": "11 kW;2 kW", + "start_date": "2024-05-14", + "description": "La Butte - Riffault - 29260 - 1", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001248;FRCG0E001245;FRCG0E001246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29848700000, + 48.61106800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-06-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE23831;FRM06PNICE23821;FRM06PNICE23812;FRM06PNICE23811;FRM06PNICE23822;FRM06PNICE23832", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*238*1*_*_;FR*SOD*S*NICE*238*2*_*_;FR*SOD*S*NICE*238*3*_*_", + "description": "LA TRINITE - PARKING SUAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31276360871, + 43.74161259179 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "3e86dfe8-445a-501f-9d28-bfda0e9769c9", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Casseneuil | Avenue de la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62540500000, + 44.44225300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*378*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "description": "SIGEIF - PARKING DE LA PISCINE ET DE LA POSTE - TAVERNY", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE37811;FRSIGPSIGE37812", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21080000000, + 49.01730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76378001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-23", + "charging_station:output": "32 kW;22 kW", + "description": "JUMIÈGES - Allée Du Chouquet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81736600000, + 49.43141800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3580EVCP01;LFR3580EVCP02", + "ref": "LFR3580EVCP01;LFR3580EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "COUTANCES Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43735200000, + 49.05726800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "72137b6d-6653-54f2-9f89-d216dfd208f0", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Le Thou | Place des Ecoles", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92177000000, + 46.08500800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PEBTDSH", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "description": "SDE82/grisolles", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "38965" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29594000000, + 43.82690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP92260FARL0MBART", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*L0MBART", + "description": "AVENUE LOMBART - FONTENAY-AUX-ROSES", + "amenity": "charging_station", + "start_date": "2021-12-27", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29285200000, + 48.78921900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3613EVCP03;LFR3613EVCP01;LFR3613EVCP02", + "description": "SAINTES Cognac", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3613EVCP03;LFR3613EVCP01;LFR3613EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59929000000, + 45.74626200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "start_date": "2023-04-11", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMLRB", + "capacity": "4", + "description": "Intermarché - Le Louroux Beconnais", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88083237567, + 47.52023374819 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref:EU:EVSE": "FREBNPQG1JJTOKPN;FREBNP8838718854186344787", + "ref": "598272;QG1JJTOKPN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/QG1JJTOKPN;Arâches-La-Frasse, Route des Moulins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63980500000, + 46.02556300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRETIP71074A", + "operator": "E-TOTEM", + "description": "e-Totem - Original City Mâcon Sud", + "amenity": "charging_station", + "start_date": "2024-08-12", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP71074A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79138697305, + 46.25615779871 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-09-10;2023-10-05", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCNVVAN", + "opening_hours": "24/7", + "description": "Cinéville - Vannes", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79061437302, + 47.66886891190 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-11", + "description": "Carrefour Market - Saint-Sever", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT405001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56431300000, + 43.74841500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sancé - Mercedes-Benz Mâcon", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPSANMB", + "start_date": "2023-09-14", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84513500000, + 46.33716500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "PARKING NORD DU ZOO DE BEAUVAL", + "ref": "FR*SOD*S*OTHR*579*8*_*_;FR*SOD*S*OTHR*579*5*_*_;FR*SOD*S*OTHR*579*4*_*_;FR*SOD*S*OTHR*579*3*_*_;FR*SOD*S*OTHR*579*25*_*_;FR*SOD*S*OTHR*579*24*_*_;FR*SOD*S*OTHR*579*23*_*_;FR*SOD*S*OTHR*579*22*_*_;FR*SOD*S*OTHR*579*21*_*_;FR*SOD*S*OTHR*579*2*_*_;FR*SOD*S*OTHR*579*20*_*_;FR*SOD*S*OTHR*579*11*_*_;FR*SOD*S*OTHR*579*10*_*_;FR*SOD*S*OTHR*579*1*_*_;FR*SOD*S*OTHR*579*12*_*_;FR*SOD*S*OTHR*579*13*_*_;FR*SOD*S*OTHR*579*14*_*_;FR*SOD*S*OTHR*579*15*_*_;FR*SOD*S*OTHR*579*16*_*_;FR*SOD*S*OTHR*579*17*_*_;FR*SOD*S*OTHR*579*18*_*_;FR*SOD*S*OTHR*579*19*_*_;FR*SOD*S*OTHR*579*6*_*_;FR*SOD*S*OTHR*579*7*_*_;FR*SOD*S*OTHR*579*9*_*_", + "ref:EU:EVSE": "FROTHPOTHR57982;FROTHPOTHR57972;FROTHPOTHR57971;FROTHPOTHR57961;FROTHPOTHR57952;FROTHPOTHR57951;FROTHPOTHR57942;FROTHPOTHR57941;FROTHPOTHR57932;FROTHPOTHR57931;FROTHPOTHR57922;FROTHPOTHR57921;FROTHPOTHR579202;FROTHPOTHR579201;FROTHPOTHR579192;FROTHPOTHR579191;FROTHPOTHR579182;FROTHPOTHR579172;FROTHPOTHR579171;FROTHPOTHR579162;FROTHPOTHR579161;FROTHPOTHR579152;FROTHPOTHR57911;FROTHPOTHR579102;FROTHPOTHR579101;FROTHPOTHR579111;FROTHPOTHR579112;FROTHPOTHR57912;FROTHPOTHR579121;FROTHPOTHR579122;FROTHPOTHR579131;FROTHPOTHR579132;FROTHPOTHR579141;FROTHPOTHR579142;FROTHPOTHR579151;FROTHPOTHR579181;FROTHPOTHR579211;FROTHPOTHR579212;FROTHPOTHR579221;FROTHPOTHR579222;FROTHPOTHR579231;FROTHPOTHR579232;FROTHPOTHR579241;FROTHPOTHR579242;FROTHPOTHR579251;FROTHPOTHR579252;FROTHPOTHR57962;FROTHPOTHR57981;FROTHPOTHR57991;FROTHPOTHR57992", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "ZOOPARC DE BEAUVAL", + "start_date": "2023-02-14;2024-03-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34716200000, + 47.25107900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "start_date": "2023-09-26", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "COMM VILLEJUIF BORNE 11", + "description": "COMM VILLEJUIF BORNE 11", + "operator:email": "info@chargepoint.com", + "capacity": "10", + "ref": "FRCPIE6825065;FRCPIE6778375;FRCPIE6778365;FRCPIE6778335;FRCPIE6778325;FRCPIE6778305;FRCPIE6764965;FRCPIE6778315;FRCPIE6778345;FRCPIE6778355", + "ref:EU:EVSE": "FRCPIE6825065;FRCPIE6778375;FRCPIE6778365;FRCPIE6778335;FRCPIE6778325;FRCPIE6778305;FRCPIE6764965;FRCPIE6778315;FRCPIE6778345;FRCPIE6778355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36247300000, + 48.79100100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PJJPPHE", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JJPPHE", + "ref": "242323", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90698000000, + 48.95680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9007*06", + "start_date": "2021-03-15", + "description": "Paris | Rue Pérignon 2", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75P900706", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30995200000, + 48.84793100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LKZWHQ", + "ref": "294371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722000000, + 43.46130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Vienne (Chasse sur Rhone)", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP1774", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78752800000, + 45.58746800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7351025952817233101", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "346370", + "opening_hours": "24/7", + "description": "Freshmile France/BQLHACIPCL", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58012000000, + 45.92210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "description": "R3 - Norauto Saint Martin Boulogne", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89258309", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66676400000, + 50.73056200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/VRHCX96IT0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P7757663202871011815", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457575" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47698600000, + 49.20550200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTE-CROIX - Le Bourg", + "ref:EU:EVSE": "FRS12E12217001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-31", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96667900000, + 44.42743000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLTTM35X29", + "ref:EU:EVSE": "FRWA5P6472851077103726018", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "805317", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83311500000, + 45.71833000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Segre - Port;SEGRE - Parking du Port", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-03-26;2021-04-07", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49331001;FRS49P49331A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86640800000, + 47.68610600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8109600121;FRS81E8109600112;FRS81E8109600111;FRS81E8109600122", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-12-23", + "description": "LE FRAYSSE - Rue Firmin Coutal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42040600000, + 43.89712700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "REL.VOREPPE", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "ref": "FRHPCPNF007502", + "charging_station:output": "175 kW;43 kW", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680777;531680776;531680778;531680775;531680774;531680773", + "ref:EU:EVSE": "FRHPCPNF007502", + "start_date": "2022-10-01;2022-10-02;2022-12-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62440000000, + 45.27820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46090001", + "start_date": "2024-10-01", + "network": "Reveo", + "description": "LIVERNON - Aérodrome de Figeac Livernon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78866400000, + 44.67072100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-08", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Inguiniel - Place François Jaffré", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLQHUAW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.28161000000, + 47.97781800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CUINCY - Place Edith Piaf", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59165002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04760000000, + 50.38459800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2921300", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plouzevede-Place du Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.11241500000, + 48.60513700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MANDÉ - Chaussée de l'Étang", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2021-11-23;2021-11-15", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94067004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42000330000, + 48.84378573000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP90260078", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Lyon Saint-Priest", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2024-05-22", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90774800000, + 45.70807400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Condat Sur Trincou | Mademoiselle dessert | Parking du Personnel | Arrière", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "c9aaf136-9044-5dca-85e8-b6bab29f0b8d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70390300000, + 45.36301000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE48712;FRSIGPSIGE48711", + "ref": "FR*SOD*S*SIGE*487*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - AVENUE FOCH - CHELLES", + "start_date": "2024-09-03", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57899000000, + 48.87273400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9009332;FRALLEGO9006631;FRALLEGO9006632;FRALLEGO9009321;FRALLEGO9009322;FRALLEGO9009331", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Lattes", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "description": "Allego Carrefour Lattes", + "ref": "FRALLEGO9009332;FRALLEGO9006631;FRALLEGO9006632;FRALLEGO9009321;FRALLEGO9009322;FRALLEGO9009331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93000600000, + 43.58149400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Residence Carouge ", + "network": "Residence Carouge ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLIBE3126085;FRLIBE3126079", + "capacity": "1", + "operator": "Residence Carouge ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "operator:email": "tech@eoliberty.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29719290000, + 48.61849230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "5b78c7e7-e8fa-5f20-8c14-b2f508a7f6e2", + "description": "MOBIVE | Guethary | Parking du Fronton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60887600000, + 43.42466400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA FERRIERE - Place Du Marché", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85089001", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31272000000, + 46.71400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9007472;FRALLEGO9007362;FRALLEGO9007361;FRALLEGO9004772;FRALLEGO9000012;FRALLEGO9000011;FRALLEGO9000401;FRALLEGO9000402;FRALLEGO9004771;FRALLEGO9004773;FRALLEGO9007471", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Hérouville", + "network": "Allego Carrefour Hérouville", + "ref:EU:EVSE": "FRALLEGO9007472;FRALLEGO9007362;FRALLEGO9007361;FRALLEGO9004772;FRALLEGO9000012;FRALLEGO9000011;FRALLEGO9000401;FRALLEGO9000402;FRALLEGO9004771;FRALLEGO9004773;FRALLEGO9007471" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32724844000, + 49.20531773000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROMANS SUR ISERE Allobroges", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3339EVCP02;LFR3339EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3339EVCP02;LFR3339EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08190700000, + 45.05141500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "start_date": "2024-02-28;2024-02-10", + "amenity": "charging_station", + "description": "La Boucherie - Laon", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLBCLAO", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65648319413, + 49.57019931614 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Thome, Place des Crottes;Réseau eborn/BWIXDHWDKU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "25278;BWIXDHWDKU", + "ref:EU:EVSE": "FREBNPBWIXDHWDKU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62938900000, + 44.50300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/4B11B5C9-D546-4027-817E-D189F8AE82EF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP252812204403895406", + "ref": "927780", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36761300000, + 43.31517100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "ref:EU:EVSE": "FRPD1PFREBES", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-06-21", + "opening_hours": "24/7", + "charging_station:output": "50 kW;100 kW", + "description": "Supermarché Pro-Inter - Bessoncourt", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92082815131, + 47.64249064412 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "ref:EU:EVSE": "FRE11PLMLAVAL539401", + "description": "Leroy Merlin - Saint-Berthevin - Laval", + "amenity": "charging_station", + "start_date": "2017-06-28;2021-04-08", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81498800000, + 48.06150100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP01185A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "description": "e-Totem - WELDOM Hauteville", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP01185A", + "charging_station:output": "50 kW;22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59606322183, + 45.98048912182 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-16", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR14511;FROTHPOTHR14512", + "ref": "FR*SOD*S*OTHR*145*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "CCVL - GREZIEU-LA-VARENNE - MAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69316100000, + 45.74841700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BORNE PAPILLES RESTAURANT", + "network": "BORNE PAPILLES RESTAURANT", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6953765", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6953765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26767900000, + 46.19728000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9172464326558113689", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "62 kW;100 kW;22 kW", + "ref": "454149", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/SSHMQIUI0C", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38379900000, + 47.91652900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo Camions - Trucks Only - A6 Venoy Soleil Levant", + "socket:type2_combo:output": "100 kW;400 kW", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "100 kW;400 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP111103", + "start_date": "2024-07-12", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67252600000, + 47.78961000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1026780", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLQ2BMMOW1S4R4", + "ref:EU:EVSE": "FRFR1P8175755639135825222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09342100000, + 47.08377800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Hyundai - Brive la Gaillarde", + "ref:EU:EVSE": "FRSSDPPOUGETHYUNDAI191001", + "operator:email": "support@driveco.com", + "start_date": "2022-03-03", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50758000000, + 45.15288500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1115661", + "network": "Freshmile France", + "capacity": "14", + "opening_hours": "24/7", + "description": "Freshmile France/LLTWVWZU81PC2T", + "charging_station:output": "9 kW", + "ref:EU:EVSE": "FRFR1P5610315023601129912", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44498300000, + 44.92409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Sixt - Pierrelaye", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSIXT954801", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-10-12", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14905800000, + 49.01952500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E130244", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E130244", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri", + "network": "MODULO - JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88425100000, + 48.20021200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P2675359631852580044", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "467502", + "charging_station:output": "100 kW;44 kW", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "description": "MobiSDEC/MEUKZBWL9R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25473500000, + 49.14641500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P7824512258616435852", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128063", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA6LIKKXYLUI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96910700000, + 43.55848400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-22", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50360001", + "network": "e-charge50", + "description": "PICAUVILLE - Le Bourg", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42094170000, + 49.37873660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROQUECOURBE - Impasse Du Pontet", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81227001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29069900000, + 43.66344300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS GARIBALDI", + "ref:EU:EVSE": "FRHPCPNF078018", + "amenity": "charging_station", + "start_date": "2023-08-07", + "opening_hours": "24/7", + "ref": "FRHPCPNF078018", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681582;531681581;531681578;531681577;531681580;531681579;531681585;531681584;531681583", + "capacity": "9", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85030000000, + 45.74700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49007K;FRS49E49007011", + "amenity": "charging_station", + "description": "ANGERS - Place Jean Moulin;OuestCharge - Diva Sp - Angers - Moulin", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-03-28;2021-04-26", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55291200000, + 47.49149400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "description": "Mouv'Oise/neuillyent", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PNEUILLYENT", + "ref": "48943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28691000000, + 49.22350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH07E59456002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "PECQUENCOURT - Place Ducasse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22609000000, + 50.37423000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30051001", + "charging_station:output": "22 kW", + "description": "BRANOUX LES TAILLADES - N106", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01016400000, + 44.22490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "socket:type2_combo:output": "42 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PPTAZYC", + "operator:email": "support@freshmile.com", + "start_date": "2016-06-21", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Locminé - Rue Maréchal Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82904600000, + 47.88153100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2024-03-22", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Boulogne-sur-Mer", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP90226648", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64244500000, + 50.72593100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref": "484835", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Clef des Champs;Métropolis/FR*MGP*P93070*D", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP93070D", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33084000000, + 48.91506000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "socket:type2_combo:output": "50 kW", + "operator:email": "customerservice@shellrecharge.com", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "description": "Shell- France Aire de Charmont-sous-Barbuise HW", + "opening_hours": "24/7", + "network": "Shell- France Aire de Charmont-sous-Barbuise HW", + "ref:EU:EVSE": "FRSHEE25", + "charging_station:output": "50 kW;43 kW", + "ref": "FRSHEE25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14281886000, + 48.41096729000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E14754002", + "network": "CPO Alizé Liberté Public", + "description": "VILLERS-SUR-MER - Place Jean Mermoz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00599825388, + 49.32350290370 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89365081", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A6 Achères Est", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-21", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57453200000, + 48.36183500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "c7026a56-b117-559e-ab21-1dd08bc03471", + "opening_hours": "24/7", + "operator": "203__SEHV", + "description": "MOBIVE | La Croisille Sur Briance | Parvis Colonel Beltrame" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58594800000, + 45.62880300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "description": "TROSLY BREUIL - Lamotte", + "ref:EU:EVSE": "FRSE1PSE60TABA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99816100000, + 49.40497300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-10;2023-06-30", + "ref": "FRALLEGO9006282;FRALLEGO9006281;FRALLEGO9006022;FRALLEGO9006021;FRALLEGO9002772;FRALLEGO9001042;FRALLEGO9001041;FRALLEGO9001301;FRALLEGO9001302;FRALLEGO9002771;FRALLEGO9002773", + "owner:ref:FR:SIREN": "895163608", + "network": "Carrefour Energies;Allego Carrefour Bourges", + "operator": "Allego", + "socket:type2_combo:output": "75 kW;300 kW;0 kW", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "capacity": "11;10", + "opening_hours": "24/7", + "description": "Allego Carrefour Bourges;BOURGES", + "ref:EU:EVSE": "FRALLEGO9006021;FRALLEGO9002773;FRALLEGO9002771;FRALLEGO9001041;FRALLPEVCARSBRGES;FRALLEGO9001042;FRALLEGO9001301;FRALLEGO9001302;FRALLEGO9002772;FRALLEGO9006022;FRALLEGO9006281;FRALLEGO9006282", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42064000000, + 47.09139000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3742EVCP02;LFR3742EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3742EVCP02;LFR3742EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "REUIL EN BRIE 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14094100000, + 48.95556500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PNFXKHPISCR", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-16E, 9 Rue Rabelais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33700200000, + 43.35772400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPMOULINSRE", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/moulinsre;Moulins, République", + "ref": "120740;moulinsre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33890000000, + 46.56330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/LLJ3ZYHC9247LL", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6947907743983184240", + "operator": "Freshmile | FR*FR1", + "ref": "892335" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99675200000, + 44.99603600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jardiland - Brive", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-23;2024-03-23", + "charging_station:output": "100 kW;188 kW;22.17025 kW", + "opening_hours": "24/7", + "capacity": "9", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PINVBRV", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54520292493, + 45.16723285787 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCA3BLMPVBD", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Digne-Les-Bains, Avenue Bad Merghenteim;Réseau eborn/CA3BLMPVBD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "CA3BLMPVBD;49348", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23878400000, + 44.09076300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "ref:EU:EVSE": "FREFLP1345519437325593679", + "amenity": "charging_station", + "ref": "1005483", + "capacity": "4", + "opening_hours": "Su,Mo,Tu,We,Sa,Fr,Th 08:00-18:00", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/659ebf480a1720001cac0baa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51147600000, + 45.90540700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "E.LECLERC", + "amenity": "charging_station", + "capacity": "1", + "description": "E.LECLERC - SAINT-VINCENT-DE-TYROSSE", + "ref:EU:EVSE": "FROTHPOTHR26261;FROTHPOTHR26251;FROTHPOTHR26241;FROTHPOTHR26231;FROTHPOTHR26221;FROTHPOTHR26211", + "start_date": "2021-05-25", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref": "FR*SOD*S*OTHR*262*6*_*_;FR*SOD*S*OTHR*262*5*_*_;FR*SOD*S*OTHR*262*4*_*_;FR*SOD*S*OTHR*262*3*_*_;FR*SOD*S*OTHR*262*2*_*_;FR*SOD*S*OTHR*262*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28642200000, + 43.66722200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "CGED ANNEMASSE", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CGED ANNEMASSE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6604025", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6604025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23415800000, + 46.19325300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "477714", + "ref:EU:EVSE": "FRFR1P8057331511831404582", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/VLVQIHN4G6", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68789200000, + 49.28357400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1114881", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P930010377337330912", + "capacity": "3", + "description": "WAAT/s513840", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30293500000, + 48.70602800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23050980000, + 49.96726180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3156087793409639233", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJ2K8YTEJDK79", + "operator": "Freshmile | FR*FR1", + "ref": "892323" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.00075700000, + 48.79580300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1234632387", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 2X22 MG VIENNE new", + "ref:EU:EVSE": "FRSWSE1234632387", + "opening_hours": "24/7", + "start_date": "2024-04-10", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84649600000, + 45.49862800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1067124", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4438397453528114174", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLNLP4QWT19079", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38380000000, + 43.88190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2020-01-09", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:00, Tu 08:30-12:00, Tu 14:00-18:00, We 08:30-12:00, We 14:00-18:00, Th 08:30-12:00, Th 14:00-18:00, Fr 08:30-12:00, Fr 14:00-18:00, Sa 08:30-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPEUROPAUTOKIA621001", + "description": "Kia - EUROP AUTO - Calais - VK Motors", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86018800000, + 50.93761500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2900400", + "description": "Bannalec-Place Yves Tanguy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70025200000, + 47.93338000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "88217", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDEA 10/OKPUUNPHL4", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1703105148725356299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08619000000, + 48.32682300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1169499;1169511;1169472;1169439", + "ref:EU:EVSE": "FRZP1P5890474648067034994;FRZP1P7102193081749233361;FRZP1P1135164872277647353;FRZP1P6661373557410264822", + "description": "Zephyre/LP200172;Zephyre/LP200186;Zephyre/LP200182;Zephyre/LP20017F", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27967700000, + 45.53196300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Redeim_Pissy-Poville3;Redeim_Pissy-Poville1;Redeim_Pissy-Poville2;Redeim_Pissy-Poville4", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2023-07-24", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE719;FRROSE718;FRROSE717;FRROSE677", + "capacity": "32", + "operator": "RossiniEnergy", + "owner:ref:FR:SIREN": "839265947" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98127100000, + 49.53079600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77288I", + "start_date": "2024-06-21", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "description": "Melun - Colonel Picot", + "ref": "9142cc5b-f41a-46c5-b093-14672bdf61c4", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65406500000, + 48.54982500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*143*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST14311;FRIZFPFAST14312;FRIZFPFAST14313", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "description": "IZIVIA FAST - MCDONALDS - TOURCOING AUCHAN RONCQ", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14669630000, + 50.74116450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4550;FRS41E4549", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - ROMORANTIN - Pl. de la paix", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ROMORANTIN - Pl. de la paix", + "ref": "FRS41E4550;FRS41E4549" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74323400000, + 47.35927700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60P6049013343583363078", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/VRNQMPWLU7", + "ref": "598200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00728500000, + 49.47739900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*6*2*_*_;FR*SOD*S*LYON*6*1*_*_", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "CRB02 - RUE DES FRENES", + "ref:EU:EVSE": "FRGLYPLYON622;FRGLYPLYON621;FRGLYPLYON611;FRGLYPLYON612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89466300000, + 45.66492500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT PRIVAT DES VIEUX - Parking Vielle Route De Salindres", + "ref:EU:EVSE": "FRS30E30294001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11697000000, + 44.15872300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "18171", + "description": "Mobilité électrique 56/RJBZTG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PRJBZTG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33653000000, + 47.91720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLNVX48TF29BAB", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P9208144649980586705", + "ref": "1145448", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15445600000, + 49.05999000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref:EU:EVSE": "FRMW1P8859099445265481503", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "description": "Mobilygreen CPO/9e85053f-da3c-4c12-add1-452f512e72a3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "584903", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96090300000, + 43.93403300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE19411;FRSIGPSIGE19412", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*194*1*_*_", + "start_date": "2021-09-22", + "description": "SIGEIF - CHEMIN SAINT DENIS - THILLAY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47932800000, + 49.00920700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-05-27", + "opening_hours": "Fr 08:00-17:30,Th 08:00-17:30,We 08:00-17:30,Tu 08:00-17:30,Mo 08:00-17:30", + "capacity": "10", + "network": "BMW Training Center - 91250 - 3", + "charging_station:output": "100 kW;300 kW;150 kW;22 kW", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001745;FRCG0E001743;FRCG0E001739;FRCG0E001740;FRCG0E001741;FRCG0E001742;FRCG0E001744;FRCG0E001746;FRCG0E001747;FRCG0E001748", + "description": "BMW Training Center - 91250 - 3", + "ref:EU:EVSE": "FRCG0E001745;FRCG0E001743;FRCG0E001739;FRCG0E001740;FRCG0E001741;FRCG0E001742;FRCG0E001744;FRCG0E001746;FRCG0E001747;FRCG0E001748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51089400000, + 48.63317900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-07-25", + "ref:EU:EVSE": "FRLMSP89656344", + "description": "ENGIE Vianeo - Hôtel Campanile Versailles Buc", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12166000000, + 48.76042100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "6757a226-c3e7-5a95-b919-f7d981db2fa7;FR*SOD*S*MB40*65*1*_*_", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "description": "MOBIVE | Labenne | Parking Côté Presbytere;LABENNE - PARKING COTE PRESBYTERE", + "start_date": "2020-06-10", + "operator": "199__SYDEC40;IZIVIA", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "ref:EU:EVSE": "FRS40PMB406514;FRS40PMB406513;Non concerné;FRS40PMB406511;FRS40PMB406512", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42555900000, + 43.59545500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE85LABA", + "charging_station:output": "24 kW;22 kW", + "description": "LUCON - Complexe sportif du Sourdy - Chemin de la motte des quatre Seigneurs", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18679700000, + 46.45769100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "CHAMPS SUR MARNE", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSCHMPS", + "network": "Carrefour Energies", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58277000000, + 48.85410200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3862EVCP02;LFR3862EVCP01;LFR3862EVCP03;LFR3862EVCP04", + "capacity": "8", + "description": "MONTBELIARD - Leclerc", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3862EVCP02;LFR3862EVCP01;LFR3862EVCP03;LFR3862EVCP04", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79642700000, + 47.51519200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PEROLS - Rue Alfred Sauvy - Les Corollys", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRM34E34198001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93940000000, + 43.57951600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3024108760906103191;FREBNPPING60TSNE", + "socket:type2_combo:output": "50 kW", + "ref": "369526;PING60TSNE", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-09-29", + "description": "Réseau eborn/PING60TSNE;Ainay-le-Château, Intermarché", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69498000000, + 46.70560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5831237778463859897", + "description": "Freshmile France/U8FM0DWWX8", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "412118", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85737600000, + 46.81484900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-02-24;2021-11-03", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E92051001;FRP07E920510011", + "description": "NEUILLY SUR SEINE - Marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27609000000, + 48.88019900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLTHE8SO3U2UZ8", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1192315", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP2460419547534476311", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23539500000, + 44.48017500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "5", + "description": "Vernouillet - Jardiland", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPVRNJL", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-07-16", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99332000000, + 48.97622000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking gare de Montfort-l'Amaury-Méré P1 - EFFIA", + "ref:EU:EVSE": "FRP01E78389002", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81575500000, + 48.80231000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-28", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "HMV BORNE 2", + "operator:email": "info@chargepoint.com", + "description": "HMV BORNE 2", + "ref:EU:EVSE": "FRCPIE6638635", + "ref": "FRCPIE6638635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87685600000, + 48.07256200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHPJQ63UNHXMO;FRECHP5039377472704165281", + "start_date": "2023-03-08", + "ref": "JQ63UNHXMO;749208", + "network": "Easycharge services;Easy Charge", + "description": "Easy Charge/JQ63UNHXMO;La Baule , Parking SNCF S1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39063500000, + 47.28826700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Boulevard Pereire 50", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1717", + "capacity": "4", + "ref": "FR*V75*PPX17*17", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30503660000, + 48.88769490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "232453", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PEVBSNL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/FASQGG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47071000000, + 48.53130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "ref": "FR*V75*P9016*06", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Avenue Victor Hugo 45", + "ref:EU:EVSE": "FRV75P901606", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28989400000, + 48.87146500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20906000000, + 49.97186430000 + ], + [ + 1.20904130000, + 49.97191220000 + ], + [ + 1.20908300000, + 49.97191890000 + ], + [ + 1.20910180000, + 49.97187110000 + ], + [ + 1.20906000000, + 49.97186430000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510434", + "ref:EU:EVSE": "FRFR1P8182367195684088199", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/AEFATBNYGL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07815000000, + 49.03370400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPAUTODIFHYUNDAI831301", + "start_date": "2022-12-07", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Autodif - La Garde", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02532100000, + 43.13682300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2916000", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plabennec-Avenue de Waltenhofen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.43053800000, + 48.49761600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "network": "Reveo", + "description": "GRUISSAN - Avenue De La Mer", + "ref:EU:EVSE": "FRS11E11170003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08833333333, + 43.10555560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "OFFICE PUBLIC DE L'HABITAT DE LA SOMME", + "amenity": "charging_station", + "capacity": "1", + "description": "AMSOM HABITAT - ROSIERES EN SANTERRE - AMIENS", + "network": "AMSOM HABITAT ROSIERES EN SANTERRE", + "opening_hours": "Lun-Ven 08:30-17:00", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZPEE176496;FRZPEE176491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30213820000, + 49.90484200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS09E09176001", + "description": "LUZENAC - Rue Principale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76086600000, + 42.76157300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "346319", + "description": "FDE 80/DXDFXN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80P8128181250142818453", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29797000000, + 49.89140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - TARBES", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*320*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-10-01", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST32011;FRIZFPFAST32012;FRIZFPFAST32013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06086490000, + 43.22149970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2021-04-15;2024-04-22", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Le Gavre - Etang;LE GAVRE - Rue De L'Étang", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44062001;FRS44P44062A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75007000000, + 47.51905300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77164001;FRS77P77164A", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61Z73TMEPH6TZXVW5G", + "description": "ECHOUBOULAINS - Place De La Résistance;Echouboulains", + "start_date": "2023-05-15;2016-08-12", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94518500000, + 48.46351200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ARCADIE BIO", + "description": "ARCADIE BIO", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "ref:EU:EVSE": "FRGSPP1000102714", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23658549803, + 42.93764491545 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E220273;FRS37E220272", + "capacity": "2", + "network": "MODULO - NEUVY LE ROI - Pl. du mail", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - NEUVY LE ROI - Pl. du mail", + "ref": "FRS37E220273;FRS37E220272", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59375299000, + 47.60272923000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "ref": "d7200ddf-fbe6-5b29-ad31-c87cb6bbf3c4", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Vathiménil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62415000000, + 48.50608200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "Station Medine ", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "530004423", + "start_date": "2024-07-04", + "network": "Station Medine", + "socket:type2_combo:output": "60 kW", + "operator": "C4Energies", + "charging_station:output": "22 kW;60 kW", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62763000000, + 49.37222000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV", + "ref": "39a93f57-de3f-5fa5-8b16-f503c2bc855a", + "description": "MOBIVE | PIERRE BUFFIERE | Parking Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35992600000, + 45.69451100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "THIAIS - Rue Jean François Marmontel", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-04-07", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94073003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39475868288, + 48.75492135493 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "ref": "FRCPIE6580405;FRCPIE6529785;FRCPIE6580375", + "opening_hours": "24/7", + "description": "MENODIS BORNE 8", + "network": "MENODIS BORNE 8", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6580405;FRCPIE6529785;FRCPIE6580375", + "start_date": "2022-10-12", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31597900000, + 46.16987000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P592435734630994736", + "network": "Leclerc", + "ref": "559865", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "32", + "description": "Leclerc/HV5IVJHUQH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077200000, + 44.20556900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "start_date": "2020-03-31", + "capacity": "2", + "amenity": "charging_station", + "ref": "9d6e29f5-af3e-5016-bf17-3eacf61c67ab;FR*SOD*S*MB33*69*1*_*_", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "description": "MOBIVE | Latresne | Rue de la Salargue;LATRESNE - RUE DE LA SALARGUE", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "ref:EU:EVSE": "Non concerné;FRS33PMB336911;FRS33PMB336912", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49852100000, + 44.78557200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Chauray - Le Temple", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB50103A", + "start_date": "2023-06-16", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37351600000, + 46.36032200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "104", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2022-09-15;2024-09-30;2022-07-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS314001", + "description": "Airbus ADS - Toulouse", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49620600000, + 43.56042300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PITRES", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4022EVCP04;LFR4022EVCP03;LFR4022EVCP02;LFR4022EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4022EVCP04;LFR4022EVCP03;LFR4022EVCP02;LFR4022EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21795500000, + 49.32639000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/TCKN0ZQ234", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref": "414792", + "ref:EU:EVSE": "FRM45P2587209813846399024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01041200000, + 47.92214500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-12-09", + "description": "LIEUCHE - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ16611;FRA16PWIIZ16612", + "ref": "FR*SOD*S*WIIZ*166*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01660100000, + 43.99553400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "15", + "network": "Freshmile France", + "ref": "742977", + "description": "Freshmile France/YQKELHNRP6", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2555971458894102046", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205700000, + 49.20641100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-20;2023-11-17", + "description": "Buffalo Grill - Epinal", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBOUEPN", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47696621875, + 48.20170638690 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Montpezat-Sous-Bauzon, Place de la Poste - Boulevard de la Prairie;Réseau eborn/K4HHCPMLJM", + "ref": "K4HHCPMLJM;30317", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNPUKKR;FREBNPK4HHCPMLJM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20786000000, + 44.71100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2024-05-30", + "description": "A9 - Aire de Pia (direction Montpellier)", + "opening_hours": "24/7", + "capacity": "9", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAPIA", + "socket:type2_combo:output": "200 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89325100000, + 42.75371100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-08-19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "NÎMES - CHU Caremeau Cancérologie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E30189004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32113500000, + 43.82292400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/COWVZWVFO0;Hyères, Place des Pêcheurs, les salins", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPCOWVZWVFO0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-10-15", + "ref": "COWVZWVFO0;301189" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20118400000, + 43.11648800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "756927", + "description": "Easy Charge/RJHKY5SHCF", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "socket:type2_combo:output": "90 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP8521911441972978426", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03117000000, + 46.90931700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2022-12-26;2023-07-06", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP102106", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A28 Croixrault" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96862100000, + 49.80776500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1393517829746547588", + "capacity": "4", + "network": "Freshmile France", + "ref": "368791", + "charging_station:output": "22 kW", + "description": "Freshmile France/BQZARA0WGY", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Sa,Tu,Fr,Th,We,Mo 04:00-22:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10489000000, + 49.36210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue de Monceau 43", + "ref": "FR*V75*PPX08*19", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0819", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31083200000, + 48.87783330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BNQCVM", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PBNQCVM", + "ref": "120761", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32491000000, + 48.55020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Pétavit - St Martin d'Heres", + "capacity": "4", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-17:00, Tu 09:00-12:00, Tu 14:00-17:00, We 09:00-12:00, We 14:00-17:00, Th 09:00-12:00, Th 14:00-17:00, Fr 09:00-12:00, Fr 14:00-17:00", + "start_date": "2021-10-26", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPPETSTMART384001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77722600000, + 45.18454500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS25PMORTEAUCOLL", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref": "79855", + "amenity": "charging_station", + "network": "SYDED", + "description": "SYDED/morteaucoll", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60476000000, + 47.05400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - JOUET SUR L'AUBOIS - Mairie", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - JOUET SUR L'AUBOIS - Mairie", + "start_date": "2023-05-11", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E205671;FRS18E205672", + "ref": "FRS18E205671;FRS18E205672" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98748100000, + 47.04556800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LOUVECIENNES - Rue de la Princesse", + "ref:EU:EVSE": "FRY03E78350005", + "start_date": "2024-10-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12347867698, + 48.86354574024 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-01", + "ref:EU:EVSE": "FRQPKPQPRK1621;FRQPKPQPRK1611", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - 83200 TOULON - DELAUNE PONT DU LAS", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*16*2*_*_;FR*SOD*S*QPRK*16*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91467400000, + 43.12842600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8104700111;FRS81E8104700121", + "start_date": "2024-07-24", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "CADIX - Place des Maronniers", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47709500000, + 43.97600200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE407852;FRIOYE407851;FRIOYE407805;FRIOYE407804;FRIONE407800;FRIOYE407802;FRIOYE407803;FRIOYE407853", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE407852;FRIOYE407851;FRIOYE407805;FRIOYE407804;FRIONE407800;FRIOYE407802;FRIOYE407803;FRIOYE407853", + "start_date": "2020-12-04", + "operator": "IONITY", + "description": "IONITY Blois Ménars;Blois Ménars", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "IONITY GMBH;Blois Ménars" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38781300000, + 47.66402300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44E44173001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-LUMINE-DE-CLISSON - Route Du Vignoble", + "start_date": "2024-04-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33943402800, + 47.08318329000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "SAINT-SAUVEUR-SUR-ECOLE - Rue Creuse;St-Sauveur-sur-Ecole", + "capacity": "2", + "start_date": "2023-05-24;2016-08-12", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH61GB3Q6R56FSTMZADS", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77435A;FRS77E77435001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54145700000, + 48.49925600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS VOLX", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2022-12-28;2023-11-08", + "capacity": "4", + "owner:ref:FR:SIREN": "531680924;531680923;531680922;531680925", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080044", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF080044" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84913600000, + 43.84442800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - NEUNG SUR BEUVRON - Henri de Geoffre", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E167612;FRS41E167613", + "network": "MODULO - NEUNG SUR BEUVRON - Henri de Geoffre", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E167612;FRS41E167613", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80608700000, + 47.53310500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PNNRVKY", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "ref": "48298", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/NNRVKY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75400000000, + 47.65860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "MIS01 - LA HALLE DU MARCHE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON1812;FRGLYPLYON1811;FRGLYPLYON1821;FRGLYPLYON1822", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-02-25", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*18*2*_*_;FR*SOD*S*LYON*18*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95774300000, + 45.66480700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP92002B", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "start_date": "2021-06-30", + "description": "Metropolis - Citadine - Antony - Combattants", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30075120000, + 48.75031520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "13", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT624001", + "description": "Peugeot Citroen - Bethune", + "start_date": "2019-10-30;2022-01-12", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64795000000, + 50.53699100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "unclassified", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011;Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20696510000, + 49.97069030000 + ], + [ + 1.20675200000, + 49.97065100000 + ], + [ + 1.20664100000, + 49.97064590000 + ], + [ + 1.20652470000, + 49.97066590000 + ], + [ + 1.20642720000, + 49.97068820000 + ], + [ + 1.20631730000, + 49.97073990000 + ], + [ + 1.20622470000, + 49.97080800000 + ], + [ + 1.20610090000, + 49.97101470000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CONNECT ERAGNY", + "description": "SONEPAR CONNECT ERAGNY", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6594145", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref": "FRCPIE6594145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10491500000, + 49.02741600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LLWSXK6IA1MQ13", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P3958162510949359887", + "ref": "1151916", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41340900000, + 46.33610600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Lanton | Avenue de la Libération (Mairie)", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "ref": "0422599e-7a10-5c15-81f3-cdef793389f5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03343200000, + 44.70180100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95352002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LUZARCHES - Place de la Garenne", + "start_date": "2024-07-23", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42442800000, + 49.11383500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPASF021;FRSITE00000017", + "description": "LES BROUZILS ASF", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "300 kW;22 kW", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator": "Allego;Green To Wheel", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "network": "ALLEGO;LES BROUZILS ASF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015000000, + 46.87914000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA BOURBOULE Tassigny", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR2757EVCP02;LFR2757EVCP01", + "ref": "LFR2757EVCP02;LFR2757EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76227000000, + 45.59030500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Aix-En-Provence, Avenue Jean Orsini", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PIZWTR3Q4WP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42244100000, + 43.58056100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/PFG840FCF1", + "ref:EU:EVSE": "FRS89P4882804102509212112", + "ref": "402581" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41720900000, + 47.66138600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-05;2024-04-23", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ30221;FRA16PWIIZ30212;FRA16PWIIZ30211;FRA16PWIIZ30222", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "LE CANNET - PLACE SAUVAIGO ", + "ref": "FR*SOD*S*WIIZ*302*1*_*_;FR*SOD*S*WIIZ*302*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99505600000, + 43.56951600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626333", + "capacity": "2", + "description": "Freshmile France/YKHCDWYRQK", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6913514142685863359", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72717000000, + 46.69645500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1POPZWSH", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "description": "O'Pizzicato - Wiwersheim", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59900540000, + 48.64376270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPER0AUMJDGU;FREBNP1116691723704806939", + "opening_hours": "24/7", + "description": "Brioude, Place Champanne;Réseau eborn/ER0AUMJDGU", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-09-27", + "ref": "742992;ER0AUMJDGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38534700000, + 45.29099700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "network": "EVzen", + "description": "EVzen/5E7933E5-200A-4EB2-8C6B-F61C6BCFBF72", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "240 kW", + "ref": "1034838", + "charging_station:output": "240 kW;22 kW", + "opening_hours": "Th,Tu,Sa,Mo,We,Fr 06:00-21:00", + "ref:EU:EVSE": "FREVZP8488428442277275090" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84257100000, + 46.36333800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-01", + "ref": "FR*SOD*S*OTHR*620*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "BRICOMARCHE - SAINT-POURCAIN-SUR-SIOULE", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR62022;FROTHPOTHR62021", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29985079432, + 46.30002391643 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPYFU3HJXG3L;FREBNP2536049960334938903", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "510662;YFU3HJXG3L", + "start_date": "2022-05-02", + "description": "Saugues, Route du Puy;Réseau eborn/YFU3HJXG3L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54911900000, + 44.95924500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32869", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPDR9TBERC11", + "charging_station:output": "22 kW", + "description": "Réseau eborn/DR9TBERC11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24312300000, + 46.19779800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR31441;FROTHPOTHR31431;FROTHPOTHR31421;FROTHPOTHR31411", + "ref": "FR*SOD*S*OTHR*314*4*_*_;FR*SOD*S*OTHR*314*3*_*_;FR*SOD*S*OTHR*314*2*_*_;FR*SOD*S*OTHR*314*1*_*_", + "start_date": "2022-02-01", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "description": "SUPER U - HERIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65931400000, + 47.41456700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FOVDPBDHHG", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8269193947601930690", + "ref": "515009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46483900000, + 48.27689400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1514", + "ref": "FR*V75*PPX15*14", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue des Morillons 95", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30484740000, + 48.83199720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "515066", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/MD5OPC7NA3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9072220528229914214", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668400000, + 46.34909000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPFOURNIERBMW911401", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-03-29", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW Mini - Les Ulis", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-18:30, Tu 08:30-18:30, We 08:30-18:30, Th 08:30-18:30, Fr 08:30-18:30, Sa 09:30-17:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20812500000, + 48.68808500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PSTAUBINGAILLONCOVOI1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900060", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31761700000, + 49.13958200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-04-11", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Henanbihen-Route d'Henansal", + "ref:EU:EVSE": "FRS22E22076001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.37954100000, + 48.56107800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARLY-LE-ROI - Parking Marche", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY20E78372001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09930000000, + 48.87188060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE201", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "description": "Handynamic_Lyon", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "start_date": "2022-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02519000000, + 45.77944500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "40 kW", + "socket:type2_combo:output": "40 kW", + "operator:email": "support@wellborne.fr", + "operator": "Wellborne", + "capacity": "2", + "description": "Ford Besançon", + "amenity": "charging_station", + "network": "Ford", + "opening_hours": "24/7", + "ref": "FRWBCEHGG0C03009", + "owner:ref:FR:SIREN": "334807831", + "start_date": "2023-05-31", + "ref:EU:EVSE": "FRWBCEHGG0C03009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95405453286, + 47.21664574448 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cambarette Nord", + "network": "Cambarette Nord", + "start_date": "2022-05-11", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE404552;FRIOYE404504;FRIOYE404502;FRIOYE404501;FRIOYE404503;FRIOYE404551;FRIOYE404553", + "ref": "FRIOYE404552;FRIOYE404504;FRIOYE404502;FRIOYE404501;FRIOYE404503;FRIOYE404551;FRIOYE404553", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99012520000, + 43.42404480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDED52/TR0POUQCGY", + "amenity": "charging_station", + "ref": "474537", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P583685954376108494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94836800000, + 48.49810600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ODOS - Château", + "ref:EU:EVSE": "FRS65E65331001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-11", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05872400000, + 43.19678400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE003002;FRIENE003001", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "ref": "FRIENE003002;FRIENE003001", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Os-Marsillon", + "start_date": "2023-02-16", + "network": "Os-Marsillon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59577500000, + 43.38896800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT GELY DU FESC - Allée des écureuils - Parking Cesml", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS34E34255001", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81469444400, + 43.67944440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ARGENTAN à Rue Charlotte CORDAY", + "ref": "SE61-ARGE-006", + "ref:EU:EVSE": "FRS61P61006F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01733300000, + 48.74022200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1002903", + "description": "Freshmile France/LLPMSNEFI2FD4T", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7464442034387526482", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17719400000, + 49.11283700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PJJBMJP", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-02-28", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "33373;JJBMJP", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "description": "Saint-Elix-le-Château;Roulez Électrique En Haute-Garonne/JJBMJP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13566000000, + 43.27990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2020-11-18;2020-12-24", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volkswagen - SLBA - Cambrai", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSAIPVOLKSWAGEN594001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26999200000, + 50.16697400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000041;FRCG0E000040;FRCG0E000039", + "ref": "FRCG0E000041;FRCG0E000040;FRCG0E000039", + "capacity": "3", + "description": "Borne de recharge SATELC - 22kW", + "network": "Borne de recharge SATELC - 22kW", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46713300000, + 45.91045900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "network": "LUMI'IN", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "807940069", + "capacity": "1", + "ref:EU:EVSE": "FRLUMESANTAGIULIAPARKING21;FRLUMESANTAGIULIAPALACE11;FRLUMESANTAGIULIAPALACE21;FRLUMESANTAGIULIAPALACE31;FRLUMESANTAGIULIAPALACE41;FRLUMESANTAGIULIAPARKING11", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "1b3689d8-f9f9-11ed-be56-0242ac120002", + "operator": "LUMI'IN", + "description": "SANTAGIULIAPALACE " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27475320000, + 41.53723180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Penne d'Agenais | Capitainerie", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "a6ee3528-5a9a-5b9a-98b1-f5bbb293e397", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80668800000, + 44.39402500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE54CABA", + "description": "France Pare Brise - Conflans en Jarnisy", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-26", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86538200000, + 49.16489900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS32116;FRBMPS32115;FRBMPS32114;FRBMPS32113;FRBMPS32112;FRBMPS32111;FRBMPS32109;FRBMPS32108;FRBMPS32110", + "ref": "32116;32115;32113;32108;32109;32110;32111;32112;32114", + "description": "Bump - Usine Mode et Maison - Vélizy", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22633840000, + 48.77368930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3341EVCP01;LFR3341EVCP02", + "capacity": "4", + "ref:EU:EVSE": "LFR3341EVCP01;LFR3341EVCP02", + "description": "DOMBASLE SUR MEURTHE Rosières", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35292100000, + 48.60986700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM13PGYNNQEOQUU", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-2E, 1 Rue Jean François Leca", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36883300000, + 43.30146200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "ref": "706085", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90P5624825739821993183", + "description": "TE90/SXHLTOEYHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86330000000, + 47.63998000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOULEVARD DE LA REINE - VERSAILLES", + "ref:EU:EVSE": "FR55CP78000VERBDREINE", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P78000*VER*BDREINE", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-09-02", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12096000000, + 48.80989800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529295", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/HWDOP47ZNA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4020027173596558702", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93326900000, + 48.75836000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-10;2023-05-09", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Hyper U - Neuilly-sur-Marne", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUNSN", + "charging_station:output": "50 kW;22 kW", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56272550000, + 48.86582220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/P4ZIKZMGVU;Allex, Place Saint Joseph", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPP4ZIKZMGVU", + "ref": "P4ZIKZMGVU;39116", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91884200000, + 44.76252100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Fastned Aire de Saint-Nazaire les Eymes", + "operator": "Fastned France", + "description": "Fastned Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE33097", + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFASE33097", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86115023000, + 45.24388399000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SENT*1146*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPSENT114611;FROTHPSENT114612", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "ES/ HOTEL AU VIEUX MOULIN", + "network": "ES B2B", + "start_date": "2024-01-05", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28161740000, + 48.82128360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "IL2LVDJOZC;292279;18015;GJHDGEW1RW", + "ref:EU:EVSE": "FREBNPGJHDGEW1RW;FREBNPIL2LVDJOZC", + "start_date": "2020-06-24;2020-06-25", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/IL2LVDJOZC;Réseau eborn/GJHDGEW1RW;Tain-L'Hermitage, Place Taurobole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "capacity": "2;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665000000, + 45.07110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "description": "Boëge, Rue de la Vallée verte", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPKSXIXLLCSP", + "ref": "KSXIXLLCSP", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40260523600, + 46.20731669000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "network": "FLANDRE ENERGIES", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-07-18;2022-07-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR43421;FROTHPOTHR43411", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*434*1*_*_;FR*SOD*S*OTHR*434*2*_*_", + "description": "FLANDRE ENERGIES - FLIXECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06471700000, + 50.02905100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EMJUWDE2ZC", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "674204", + "ref:EU:EVSE": "FRFR1P1989310275946928321", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83310100000, + 46.16553100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Farébersviller, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP30253", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85519895000, + 49.11157100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HI8CYLTPBP", + "ref": "466029", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6924503954804677883", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23698000000, + 48.83130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "c3c8f563-6af5-5974-bb36-8064a31ff8e7", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "271__TDEC", + "description": "DOLE-9 Boulevard des Frères Lumière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49876900000, + 47.09857600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4230413955730083985", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/ZDEWXP", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Th,Su,Fr,Mo,Sa,We 00:00-23:59,Tu 12:00-23:59", + "ref": "1009296", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45557000000, + 48.25930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/FH2Y5F6VYX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P8590911516057029948", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461718" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26624300000, + 49.17714300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P5198417595260879893", + "network": "Zephyre", + "ref": "576305", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP0095A5", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03815500000, + 48.34481200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Vitrauto_ValenceDAgen", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRROSE425", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-09-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88824100000, + 44.10902000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VERNEUIL-SUR-SEINE - Allée du Gros Chêne", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78642004", + "charging_station:output": "22 kW", + "start_date": "2024-07-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96050400000, + 48.99066200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "ref": "1c79ec37-1e18-596d-a958-bbbe73d07567", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "CCTLB - Hériménil", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49956400000, + 48.56749100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT ESTEVE - Place De La Mediterranée", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66172001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83881700000, + 42.71655400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20727940000, + 49.97102720000 + ], + [ + 1.20744270000, + 49.97105870000 + ], + [ + 1.20760470000, + 49.97109050000 + ], + [ + 1.20780100000, + 49.97112900000 + ], + [ + 1.20802080000, + 49.97117200000 + ], + [ + 1.20822980000, + 49.97121300000 + ], + [ + 1.20835770000, + 49.97123810000 + ], + [ + 1.20851290000, + 49.97126910000 + ], + [ + 1.20871950000, + 49.97131030000 + ], + [ + 1.20893840000, + 49.97135410000 + ], + [ + 1.20914460000, + 49.97139520000 + ], + [ + 1.20924690000, + 49.97141570000 + ], + [ + 1.20931040000, + 49.97142830000 + ], + [ + 1.20934300000, + 49.97143480000 + ], + [ + 1.20937320000, + 49.97143740000 + ], + [ + 1.20950140000, + 49.97144380000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IKEA*126*4*_*_;FR*SOD*S*IKEA*126*3*_*_;FR*SOD*S*IKEA*126*1*_*_;FR*SOD*S*IKEA*126*2*_*_", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRIKAPIKEA12621;FRIKAPIKEA12611;FRIKAPIKEA12631;FRIKAPIKEA12641", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "IKEA TOURS - PARKING PMR", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71674300000, + 47.37580800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "ref:EU:EVSE": "FRS35P35219001B1", + "opening_hours": "24/7", + "description": "PIPRIAC - 49 rue de l avenir ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93538800000, + 47.80915800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-08-25", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS63P63026A", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Aydat - Egueules", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98108520000, + 45.66665700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7299376938361704820", + "ref": "892557", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKMOKQFZ2KBO9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39292100000, + 46.69760600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Boulogne-sur-Gesse", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PGUXVRY", + "ref": "GUXVRY", + "start_date": "2017-02-28", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64892300000, + 43.28980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE93029002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DRANCY - Rue Diderot", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-12-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42888755598, + 48.91944625810 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000829;FRCG0E000828;FRCG0E000827", + "description": "Skoda Labege - 31670 - 5 - (150 kW)", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "network": "Skoda Labege - 31670 - 5 - (150 kW)", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "FRCG0E000829;FRCG0E000828;FRCG0E000827", + "start_date": "2023-06-09", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50933400000, + 43.55226300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE21411;FRM06PNICE21412", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*214*1*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2023-05-30", + "description": "NICE - PARKING DUBOUCHAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27305500000, + 43.70330600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Buzet Sur Baïse | Parking du Marché", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "ab1ae009-d8e6-5009-bf5d-e8e9a9cc5f7c", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29937500000, + 44.25847200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 8 RUE JEAN ESPRANGLE PARKING GARE DERMONT-EAUBONNE - ERMONT", + "start_date": "2023-02-21", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE35212;FRSIGPSIGE35211", + "ref": "FR*SOD*S*SIGE*352*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27183000000, + 48.97970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-07", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CANTELEU - Place Jean Jaurès", + "ref:EU:EVSE": "FRC01E76157001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03616900000, + 49.45211100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;50 kW;120 kW", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "ref:EU:EVSE": "LFR3656EVCP02;LFR3656EVCP01;LFR3656EVCP03", + "description": "CHATEAU CHINON CAMPAGNE Salorge", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3656EVCP02;LFR3656EVCP01;LFR3656EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93615300000, + 47.05614600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "51e2ed04-5ff4-5471-9773-d72dd6c5d0a3", + "capacity": "2", + "description": "MOBIVE | Le Grand Bourg | Place du Champ de Foire", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64727900000, + 46.16018500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/WEEQKT", + "operator:email": "roaming@freshmile.com", + "ref": "34024", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "Su,Mo,Th,We,Tu 00:00-23:59,Sa 15:00-23:59,Fr 00:00-18:00", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PWEEQKT", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35648000000, + 44.01600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84000*AVG*M1ND3", + "description": "MIN BATIMENT D3 - AVIGNON", + "ref:EU:EVSE": "FR55CP84000AVGM1ND3", + "operator:email": "contact@e55c.com", + "start_date": "2024-06-04", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83526300000, + 43.93267500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANVOLLON - Fontaines", + "ref:EU:EVSE": "LFR3796EVCP02;LFR3796EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3796EVCP02;LFR3796EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97665800000, + 48.63325000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Faremoutiers", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMFMT", + "start_date": "2021-12-14", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98375526389, + 48.79793538565 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Bons-En-Chablais, Parking de la Mairie", + "operator:email": "contact@reseau-eborn.fr", + "ref": "P5NRXSSCMV", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPP5NRXSSCMV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37125420000, + 46.26529550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-28", + "ref:EU:EVSE": "FRETIP64122G", + "operator": "E-TOTEM", + "capacity": "7", + "amenity": "charging_station", + "description": "e-Totem - BIARRITZ Rue de Madrid", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56924000000, + 43.46993000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;22 kW;160 kW", + "amenity": "charging_station", + "start_date": "2024-02-16;2024-02-28", + "socket:type2_combo:output": "160 kW", + "description": "Mercure - Orléans", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCAPORL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89623704914, + 47.89868390277 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Salon-De-Provence Canourgues", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT133001", + "start_date": "2024-06-05", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09838900000, + 43.65258400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Brive-la-Gaillarde - Hôtel Campanile", + "ref:EU:EVSE": "FRELCPBLGHC", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-05-26", + "capacity": "4", + "socket:type2_combo:output": "300 kW;225 kW", + "opening_hours": "24/7", + "charging_station:output": "300 kW;225 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47490800000, + 45.14604100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR54722;FROTHPOTHR54721;FROTHPOTHR54711;FROTHPOTHR54712", + "charging_station:output": "3.68 kW;22 kW", + "description": "ES/ TRIUMPH INTERNATIONAL", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-12", + "opening_hours": "24/7", + "network": "ES B2B", + "ref": "FR*SOD*S*OTHR*547*2*_*_;FR*SOD*S*OTHR*547*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50380100000, + 48.47191300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-23", + "network": "BIOPATH HDF VALENCIENNES", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "BIOPATH HDF VALENCIENNES", + "ref": "FRCPIE6742035", + "ref:EU:EVSE": "FRCPIE6742035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63058000000, + 50.54002700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "817101", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/TNUUY1QGPQ", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3848714334095042691", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53603300000, + 46.67504900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-03;2021-05-27", + "ref:EU:EVSE": "FRV14E31451001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "REVEL - Rue Padouvenc De Castres", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00577500000, + 43.46195000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PZUASAQ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "86852", + "description": "Freshmile France/ZUASAQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08043000000, + 48.02450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1733", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Chambéry - Barberaz", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94964600000, + 45.56085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/SK2JUSBR1G", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1437281466821175745", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "387710", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10140000000, + 47.07330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20743300000, + 50.68487600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P7163916869061806007", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461940", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/SRFJICA7UF", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35718700000, + 49.19585000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT MAURICE DE SORGUES - Avenue De La Sorgue", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-08-21", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12155002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07585400000, + 43.86616200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA4P3939395533065030", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "880161", + "description": "WAAT/FRWA4LHY82DEL2", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11761400000, + 49.48410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49290001;FRS49P49290A", + "amenity": "charging_station", + "description": "SAINT-JEAN-DES-MAUVRETS - Rue Saint-Almand;OuestCharge - Diva Sp - Saint-Jean-des-Mauvrets - Almand", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-03-26;2021-06-04", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45856200000, + 47.40118300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CASTRES - Place Soult - Parking Intèrieur", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2020-03-16", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106501222;FRS81E8106501221;FRS81E8106501211;FRS81E8106501212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24759731239, + 43.60420048188 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BERCK - Esplanade Parmentier", + "network": "pass pass électrique", + "start_date": "2024-06-26", + "ref:EU:EVSE": "FRHDFE62108001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55816979832, + 50.40309781478 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-26", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "VIEILLEVIGNE - Avenue Du Val De Loire;OuestCharge - Diva Sp - Vieillevigne - Val De Loire", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44216A;FRS44E44216001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43049400000, + 46.97172500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "518450", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63430*B", + "ref:EU:EVSE": "FRS63P63430B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54751000000, + 45.85707600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FAMARS - Parking Technopôle Transalley", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH03E59221001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51204000000, + 50.32003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2917800", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "description": "Ploudalmezeau-Rue Auguste Caroff", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.65898700000, + 48.54209100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94038006", + "description": "L'HAY LES ROSES - Rue de Chevilly", + "start_date": "2022-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34037580000, + 48.77638180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "B&B Chateauroux A20 l'Occitane", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-06-04", + "ref:EU:EVSE": "FRLMSP90289765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70360700000, + 46.85121200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | La Coquille | Place Boyer de la Veyssiere", + "opening_hours": "24/7", + "ref": "69a6e6f0-b792-5ff9-8c99-bcdd39fe1352", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97602700000, + 45.53967300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE45711;FRSIGPSIGE45712", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*457*1*_*_", + "opening_hours": "24/7", + "description": "SIGEIF - 3 MAIL GALLIENI - NOISY-LE-GRAND", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55519820000, + 48.84820450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref": "FRALLEGO9009151;FRALLEGO9009132;FRALLEGO9006342;FRALLEGO9006341;FRALLEGO9005591;FRALLEGO9005592;FRALLEGO9009131;FRALLEGO9009152", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "Allego Carrefour Nîmes Sud", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego Carrefour Nîmes Sud", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22", + "ref:EU:EVSE": "FRALLEGO9009151;FRALLEGO9009132;FRALLEGO9006342;FRALLEGO9006341;FRALLEGO9005591;FRALLEGO9005592;FRALLEGO9009131;FRALLEGO9009152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39188100000, + 43.81848400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARLES Fourchon", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR2707EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2707EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63247000000, + 43.66649400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Bayonne | Square leo Pouzac", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "63ff8fa4-d087-503d-aba6-eb7bc7b0b025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47065200000, + 43.49181700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85008001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AUBIGNY-LES CLOUZEAUX - Allée Verte - Rue Louis Pasteur", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-06-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45230000000, + 46.59698100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Allego", + "charging_station:output": "50 kW;300 kW;22 kW", + "description": "PATHE CONFLANS", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "network": "ALLEGO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSITE00000212", + "owner:ref:FR:SIREN": "842718512", + "capacity": "22", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2024-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07730380000, + 48.00394890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3871EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "ROANNE - Lyon", + "ref:EU:EVSE": "LFR3871EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07749900000, + 46.03805400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "KFC - Bourgoin-Jallieu", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PKFCBJL", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2022-01-18;2021-10-21", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23992055767, + 45.59582318414 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNWV50SNUOZH;FREBNPWV50SNUOZH", + "capacity": "2", + "description": "Réseau eborn/WV50SNUOZH;La Londe-Les-Maures, Rue Des Poilus", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75317;WV50SNUOZH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23683300000, + 43.13969300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Marcotte", + "operator:email": "psasupport@evbox.com", + "ref:EU:EVSE": "FREVBEQCN3UWD4RH74NPNCRZO5RDGUEQ", + "network": "EVBOX", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "start_date": "2022-03-10", + "owner:ref:FR:SIREN": "415192202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84450871365, + 50.66617982049 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Centre Commercial Les Eleis - Cherbourg-en-Cotentin (Dernier étage du parking)", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "start_date": "2023-01-19", + "ref:EU:EVSE": "FRPD1PDUVCEC", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61916920000, + 49.63527450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Coutances Planche Maurice", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-07-31", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT502001", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44937400000, + 49.03995300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRESEPS42218BI", + "amenity": "charging_station", + "ref": "FRESEPS42218BI", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB Edmond Charpentier", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38361100000, + 45.45060600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IZIG*80*9*_*_;FR*SOD*S*IZIG*80*8*_*_;FR*SOD*S*IZIG*80*7*_*_;FR*SOD*S*IZIG*80*32*_*_;FR*SOD*S*IZIG*80*3*_*_;FR*SOD*S*IZIG*80*28*_*_;FR*SOD*S*IZIG*80*27*_*_;FR*SOD*S*IZIG*80*25*_*_;FR*SOD*S*IZIG*80*24*_*_;FR*SOD*S*IZIG*80*21*_*_;FR*SOD*S*IZIG*80*19*_*_;FR*SOD*S*IZIG*80*16*_*_;FR*SOD*S*IZIG*80*13*_*_;FR*SOD*S*IZIG*80*12*_*_;FR*SOD*S*IZIG*80*11*_*_;FR*SOD*S*IZIG*80*10*_*_;FR*SOD*S*IZIG*80*1*_*_;FR*SOD*S*IZIG*80*14*_*_;FR*SOD*S*IZIG*80*15*_*_;FR*SOD*S*IZIG*80*17*_*_;FR*SOD*S*IZIG*80*18*_*_;FR*SOD*S*IZIG*80*20*_*_;FR*SOD*S*IZIG*80*2*_*_;FR*SOD*S*IZIG*80*22*_*_;FR*SOD*S*IZIG*80*23*_*_;FR*SOD*S*IZIG*80*26*_*_;FR*SOD*S*IZIG*80*29*_*_;FR*SOD*S*IZIG*80*30*_*_;FR*SOD*S*IZIG*80*31*_*_;FR*SOD*S*IZIG*80*4*_*_;FR*SOD*S*IZIG*80*5*_*_;FR*SOD*S*IZIG*80*6*_*_", + "network": "EDF-EV100", + "start_date": "2021-04-28;2021-05-04", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG8081;FROTHPIZIG8071;FROTHPIZIG8061;FROTHPIZIG8051;FROTHPIZIG8041;FROTHPIZIG80321;FROTHPIZIG80311;FROTHPIZIG8031;FROTHPIZIG80301;FROTHPIZIG80291;FROTHPIZIG80271;FROTHPIZIG80261;FROTHPIZIG80231;FROTHPIZIG80221;FROTHPIZIG80211;FROTHPIZIG8021;FROTHPIZIG80181;FROTHPIZIG80171;FROTHPIZIG80141;FROTHPIZIG80121;FROTHPIZIG80111;FROTHPIZIG80101;FROTHPIZIG8011;FROTHPIZIG80131;FROTHPIZIG80151;FROTHPIZIG80161;FROTHPIZIG80191;FROTHPIZIG80201;FROTHPIZIG80241;FROTHPIZIG80251;FROTHPIZIG80281;FROTHPIZIG8091", + "description": "CNPE CHOOZ - PARKING A", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78540800000, + 50.09295800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6900275;FRCPIE6900265;FRCPIE6900235;FRCPIE6900255", + "capacity": "4", + "description": "IRVE CAGPS ECO D", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "network": "IRVE CAGPS ECO D", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6900275;FRCPIE6900265;FRCPIE6900235;FRCPIE6900255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57379500000, + 48.63967400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SVDOGAVSWH", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1593980307109696860", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "346475", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31493000000, + 47.79180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE VIaneo - B&B HOTEL SAINT-BRIEUC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP122014", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-01-17", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72043300000, + 48.49123200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5733096169835136298", + "description": "Freshmile France/ACYY4VWEH3", + "operator": "Freshmile | FR*FR1", + "ref": "594386" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21212500000, + 48.91213500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyundai - Quimper", + "start_date": "2022-08-03", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPLANCIEN290001", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.03335600000, + 47.98213900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "346409", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "50 kW;100 kW;22 kW;44 kW", + "opening_hours": "24/7", + "description": "Freshmile France/HSGDN5TMKB", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRFR1P4067384596466160006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63364000000, + 48.95280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "seamark:restricted_area:restriction": "no_anchoring;no_fishing;no_entry;no_diving;no_berthing", + "seamark:type": "restricted_area", + "source": "Arrêté préfectoral N° 20 / 2010" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20400000000, + 49.97233330000 + ], + [ + 1.18916670000, + 49.98400000000 + ], + [ + 1.20100000000, + 49.99033330000 + ], + [ + 1.21283330000, + 49.98183330000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - VIERZON - Rue Eugène Pottier", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E112364;FRS18E112365", + "ref": "FRS18E112364;FRS18E112365", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VIERZON - Rue Eugène Pottier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09868000000, + 47.21801000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P3041864122691119496", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "456783", + "description": "MobiSDEC/AGX3GVGGGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11676200000, + 49.28772000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1127985", + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P5364827555522714542", + "capacity": "2", + "description": "WAAT/FRWA5LSA04GT0T", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99168000000, + 50.25220400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TORIGNY LES VILLES (GUILBERVILLE) - Aire de covoiturage Le Saussey", + "ref:EU:EVSE": "FRS50P502242", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "socket:type2_combo:output": "100 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95433800000, + 48.98331700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOAILHAC - Avenue Charles Taillhades", + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8119600121;FRS81E8119600111;FRS81E8119600112;FRS81E8119600122", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2023-06-07", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35034650000, + 43.57453340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "capacity": "5", + "ref:EU:EVSE": "FRHPCPNF059916", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "RELAIS DE MARSANNAY LA COTE", + "ref": "FRHPCPNF059916", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681775;531681776;531681777", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00808000000, + 47.28061100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49214B;FRS49E0490120;FRS49E49214002", + "start_date": "2024-04-29;2024-04-03;2021-04-29", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Montreuil-Juigne - Jean Baptiste;MONTREUIL-JUIGNE - Parking Jean-Baptiste", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61587500000, + 47.54147700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "HAUSSY - Place Jean Jaurès", + "start_date": "2023-04-25", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRS59E59289001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47854550000, + 50.21786300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRAS - Bld Faidherbe", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH06E62041007", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78212600000, + 50.29077900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30007001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "ALES - Chemin Des Sports", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08866400000, + 44.11891600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PMWDFEN", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "description": "Mobilité électrique 56/MWDFEN", + "opening_hours": "24/7", + "ref": "21882", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75233000000, + 48.06800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LUSSAC QC50-1", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-05-04", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "B145", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346052711;FRLMSE12346052712", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72518500000, + 46.40225200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRMGPP93049B", + "description": "Metropolis - Proximité - Neuilly-Plaisance - Chanzy", + "amenity": "charging_station", + "start_date": "2021-10-27", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122517000, + 48.85580614000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSEOPAB79329P0036A", + "network": "AlterBase", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - Thouars - Château de la Trémoïlle", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2015-08-12", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21684400000, + 46.97257800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1175610", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLZ400_FREY0530_000001", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP1320561392907205736", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "charging_station:output": "300 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62920300000, + 44.88049700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89397438", + "start_date": "2023-02-01", + "capacity": "1", + "description": "ENGIE Vianeo - Chaumousey - Cplx sportif ZI Trusey", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30751500000, + 48.17535300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "ref:EU:EVSE": "Non concerné;FRS19PMB193111;FRS19PMB193112", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB19*31*1*_*_;ad42c7c4-f49e-5731-81a0-c24419b38d8e", + "operator": "IZIVIA;192__FDEE19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UZERCHE - AVENUE DE LA GARE;MOBIVE | Uzerche | Av. de la Gare", + "network": "CPO CITEOS Mobive;MOBIVE - FDEE 19", + "owner:ref:FR:SIREN": "200087955", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57062500000, + 45.44299400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - ST NABORD- Rue de la croix St Jacques", + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-10-05", + "ref:EU:EVSE": "FRS88E150260;FRS88E150258", + "description": "MODULO - ST NABORD- Rue de la croix St Jacques", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E150260;FRS88E150258", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58130000000, + 48.04599000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9006741;FRALLEGO9006662;FRALLEGO9006661;FRALLEGO9002873;FRALLEGO9000722;FRALLEGO9000721;FRALLEGO9001611;FRALLEGO9001612;FRALLEGO9002871;FRALLEGO9002872;FRALLEGO9006742", + "network": "Allego Carrefour Calais", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref": "FRALLEGO9006741;FRALLEGO9006662;FRALLEGO9006661;FRALLEGO9002873;FRALLEGO9000722;FRALLEGO9000721;FRALLEGO9001611;FRALLEGO9001612;FRALLEGO9002871;FRALLEGO9002872;FRALLEGO9006742", + "description": "Allego Carrefour Calais", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89047300000, + 50.95282100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3567EVCP03;LFR3567EVCP02;LFR3567EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3567EVCP03;LFR3567EVCP02;LFR3567EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "CHAMPIGNY Bernau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242000000, + 48.81624100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Marseille-12E, 11 Rue des Électriciens", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PHNBAMMHQBV", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41733600000, + 43.30422800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPTZZHBY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Portes-Lès-Valence, 9 Rue Emile Zola;Réseau eborn/TZZHBY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref": "31924;TZZHBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87871000000, + 44.87400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "ref": "368983", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/Y0OSAKHGA8", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P298863373677203283" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82208500000, + 49.28452600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "description": "Ibis Budget - Nantes Nord Saint Herblain", + "ref:EU:EVSE": "FRPD1PIBSSHB", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "50 kW;100 kW;22.17025 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61992528588, + 47.24791795288 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPR3FECEWLZD", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/R3FECEWLZD;Lagorce, Le Village", + "ref": "32674;R3FECEWLZD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41797000000, + 44.44786100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP34337B", + "description": "e-Totem - 3M - Parking du Collège", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP34337B", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85527000000, + 43.53289000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*236*1*_*_;FR*SOD*S*OTHR*236*2*_*_", + "network": "KR EXPANSION", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "KR EXPANSION - AUBIERE", + "opening_hours": "24/7", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR23621;FROTHPOTHR23611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13724100000, + 45.75790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6596925", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6596925", + "network": "SONEPAR DIEPPE", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR DIEPPE", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11530500000, + 49.89797200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/OOWFA5K8PB", + "socket:type2_combo:output": "63 kW", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "22 kW;75 kW;63 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2229262429328330714", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "477687" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77121800000, + 48.57868600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "ref:EU:EVSE": "FRWA1P4962745473884932327", + "amenity": "charging_station", + "description": "WAAT/FRWA1L4SW8KJ4T", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "789165", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85216100000, + 50.93186000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "515123", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6792675218469409805", + "charging_station:output": "22 kW", + "description": "Freshmile France/UK5JQUMRGT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13667800000, + 43.51871300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo-Sa 08:30-12:00,Mo-Sa 14:00-19:00;Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000138170;FRSWSE1000147529", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2023-04-20", + "ref": "1000138209;1000138170", + "description": "DBT 2x50 Olymp Auto;DBT 2x22 Olymp Auto 1", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44353400000, + 46.35048100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "368893", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/NSZPUKTAXJ", + "ref:EU:EVSE": "FRFR1P1378249267482044242" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56936100000, + 44.83586900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Loc+ - Montpellier", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLOC340701", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-08-22", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88379100000, + 43.58452600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E176251;FRS28E176250", + "description": "MODULO - LAMBLORE - Le Plessis", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS28E176251;FRS28E176250", + "network": "MODULO - LAMBLORE - Le Plessis", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91635800000, + 48.62729100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "F.B. AUTOMOBILES", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Sa 09:00-12:00", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "844623611", + "ref:EU:EVSE": "Non concerné", + "network": "F.B. AUTOMOBILES", + "charging_station:output": "22 kW", + "operator:email": "filippi.gl@gmail.com", + "start_date": "2021-09-22", + "description": "F.B Automobiles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20000000000, + 42.45000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P2447529024739161399", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/NU0UK8KQ1U", + "opening_hours": "24/7", + "ref": "39827" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22649500000, + 48.17929100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "675725;675731", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P5419592860000364488;FRZP1P5418178607524308958", + "capacity": "1", + "description": "Zephyre/LP009E77;Zephyre/LP009E5E", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80566300000, + 46.87585400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chateau_Naze", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE545", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2023-02-27", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04087150000, + 47.31638470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PVRAGJQ", + "description": "SDE82/VRAGJQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "46669" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75170000000, + 44.15270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST11512;FRIZFPFAST11511;FRIZFPFAST11513", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-26", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - ISTRES CRAUX", + "ref": "FR*SOD*S*FAST*115*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96434700533, + 43.51933654067 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - SELOMMES - Rue de la Mairie", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E3965;FRS41E3964", + "ref:EU:EVSE": "FRS41E3965;FRS41E3964", + "description": "MODULO - SELOMMES - Rue de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19271900000, + 47.75601800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/LLLDHNBF413KWP", + "ref": "896694", + "ref:EU:EVSE": "FRS60P8230004723920809548" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86088200000, + 49.46448800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON3612;FRGLYPLYON3611;FRGLYPLYON3621;FRGLYPLYON3622", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "DEC02 - ESPLANADE", + "ref": "FR*SOD*S*LYON*36*1*_*_;FR*SOD*S*LYON*36*2*_*_", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "start_date": "2020-12-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97654200000, + 45.77219200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30221001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ROQUEMAURE - Parking Cours Aristide Briand", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77949200000, + 44.05275300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/LLRJ9T4L1YRKRU", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P9218073634264105817", + "charging_station:output": "22 kW", + "ref": "1026789", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76765600000, + 47.52643300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-21", + "amenity": "charging_station", + "network": "LOAD MOTION", + "capacity": "4", + "operator": "LOAD STATIONS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "901727206", + "charging_station:output": "22 kW", + "description": "MONKADY", + "operator:email": "contact@load-stations.com", + "ref:EU:EVSE": "FRLSTP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30000000000, + 47.74000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMW1P86428019742579214", + "network": "Mobilygreen CPO", + "description": "Mobilygreen CPO/d324be93-52c9-445b-9fe6-7c496a591565", + "opening_hours": "24/7", + "ref": "440790", + "charging_station:output": "22 kW", + "capacity": "11", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80044000000, + 43.92310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*168*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - PLACE DE MADAME DE MAINTENON - SAINT-CYR-LECOLE", + "ref:EU:EVSE": "FRSIGPSIGE16811;FRSIGPSIGE16812", + "start_date": "2021-07-20", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06410800000, + 48.80313500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Audi Pontoise - 95300 - 1", + "start_date": "2024-05-15", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001446;FRCG0E001445;FRCG0E001447", + "network": "Audi Pontoise - 95300 - 1", + "ref": "FRCG0E001446;FRCG0E001445;FRCG0E001447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08232800000, + 49.04225800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-07-03", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89656118", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Cergy St Christophe", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03651900000, + 49.05587600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS40PMB405914;FRS40PMB405912;FRS40PMB405911;Non concerné;FRS40PMB405913", + "start_date": "2020-06-08", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB40*59*1*_*_;31740bee-ff6e-5b3d-93a1-e1e7a29d7bef", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "description": "MOBIVE | Garrosse | Avenue de L Ocean;GARROSSE - AVENUE DE L OCEAN", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92439600000, + 44.03067000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-07", + "network": "Stations-e", + "description": "MEAUX CANTONNEMENT CRS", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MXFA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90392200000, + 48.95818500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSCHTRX", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-09-09", + "description": "CHATEAUROUX", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69846200000, + 46.80767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3394EVCP02;LFR3394EVCP01;LFR3394EVCP03", + "description": "CALONNE RICOUART Marne", + "ref:EU:EVSE": "LFR3394EVCP02;LFR3394EVCP01;LFR3394EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48448500000, + 50.49349200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34116002", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "GRABELS - Rue Louis Pasteur Basse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82682660000, + 43.64350420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/YXWYDYAZRR;Le Bourget-Du-Lac, Rue des Ecoles", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPYXWYDYAZRR;FREBNP2792753256134488831", + "ref": "YXWYDYAZRR;346997" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85806000000, + 45.64881000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2884391290368858819", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/W2JSXIFDDM", + "ref": "441051", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69643000000, + 48.58670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-03-02", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SAINT-GERMAIN-EN-LAYE - Les Coches", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E78551003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09363610000, + 48.89621420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "30155", + "charging_station:output": "22 kW", + "description": "Réseau eborn/BJ9TZMED5E", + "ref:EU:EVSE": "FREBNPBJ9TZMED5E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97698300000, + 44.85874000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-02-01", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPSPRBU", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA", + "description": "Saint-Priest - BUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96597700000, + 45.71448900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking le Havre Colbert - EFFIA", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-14", + "ref:EU:EVSE": "FRP01E76351003", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12998000000, + 49.49239000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR PAU", + "description": "SONEPAR PAU", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6630425", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6630425", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33006700000, + 43.31793200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "description": "Easy Charge/UEBQLVNOQE", + "opening_hours": "24/7", + "ref": "756942", + "capacity": "21", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRECHP4823599584166105747" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39309400000, + 47.28256500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Avenue Victor Hugo 60", + "ref:EU:EVSE": "FRV75PPX1622", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "ref": "FR*V75*PPX16*22", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28685100000, + 48.87034300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1299967055982869496", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/Y3QEBNRC6N", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "472299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72080900000, + 48.52261600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IBIS Budget Bonchamps Laval", + "ref:EU:EVSE": "FRTCBP01005", + "start_date": "2022-12-07", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "379041379", + "ref": "FRTCBP01005", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72576593125, + 48.07223223395 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "62 kW;100 kW;22 kW", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P4741416989821685034", + "opening_hours": "24/7", + "ref": "1009143", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJ5IARA3AQQZE", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96653000000, + 48.03724000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-06-01", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPDYNAMISM494001", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:00, Tu 08:30-12:00, Tu 14:00-18:00, We 08:30-12:00, We 14:00-18:00, Th 08:30-12:00, Th 14:00-18:00, Fr 08:30-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO", + "description": "BMW - Saumur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12907100000, + 47.23024000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Landunvez - Boulevard de l Océan Port d Argenton", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS29E29109001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-27", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.75768100000, + 48.52122400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASTELNAUDARY - Parking De La Gare", + "ref:EU:EVSE": "FRS11E11076003", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95055556000, + 43.31250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC87443;FRZP1PEAC88130", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "393314398", + "description": "Arbezie Franco-Suisse - 22 kW AC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Logis Hôtel Arbezie Franco-Suisse", + "operator:email": "sav@zephyre.fr", + "ref": "e5dc34e2-7fec-4a59-a840-c32a3b0c3ec1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07296171000, + 46.46450499000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57703;FRS08E57702", + "ref:EU:EVSE": "FRS08E57703;FRS08E57702", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MARGUT - Rue de la poste", + "description": "MODULO - MARGUT - Rue de la poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26418028000, + 49.58457387000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79426", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/UPVMTH", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PUPVMTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30220000000, + 50.16820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST26022;FRIZFPFAST26021;FRIZFPFAST26012;FRIZFPFAST26011;FRIZFPFAST26013;FRIZFPFAST26023", + "start_date": "2024-09-20", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*260*1*_*_;FR*SOD*S*FAST*260*2*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - SARCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36452640000, + 48.97984750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44036001;FRS44P44036A", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Pulse 50 - Chateaubriant - Patton;CHATEAUBRIANT - Rue Du Général Patton", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-04-26;2021-04-29", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40316900000, + 47.70121700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77107A;FRS77E77107001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH6150BCSKADS949NNAX", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-23", + "description": "CHAUMES-EN-BRIE - Rue Dumont;Chaumes-en-Brie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84154800000, + 48.66428400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "network": "SCI LOUSTALOT", + "operator:email": "compta@greenspot.fr", + "description": "SCI LOUSTALOT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000056011;FRGSPP1000056012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62423647297, + 44.77272002621 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219948;FRS37E219949", + "capacity": "2", + "description": "MODULO - BOURGUEIL - Pl. Marcelin", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E219948;FRS37E219949", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BOURGUEIL - Pl. Marcelin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17219177000, + 47.28483695000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "CCTLB - Médiathèque-Baccarat", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7aadd2e1-78fb-56ba-9c91-5256c6aa36f7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73972700000, + 48.44320200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRG10P69387AA", + "network": "LPA Parking Berthelot - N1 - Zone 1", + "opening_hours": "24/7", + "description": "LPA Parking Berthelot - N1 - Zone 1", + "start_date": "2024-06-26;2024-06-25", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P69387AA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83661709000, + 45.74616929000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | AUBAGNAN - Parking Ecole", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "71c6b2b9-4d8d-5556-8e1f-e6fea9a65f66", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48922200000, + 43.66674100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-13", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "SIGEIF - 1 RUE CLAUDE PERNES - ROSNY-SOUS-BOIS", + "ref:EU:EVSE": "FRSIGPSIGE28712;FRSIGPSIGE28711", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*287*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48729000000, + 48.87323600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "GVA VAULX ABBGAUCHE", + "amenity": "charging_station", + "network": "GVA VAULX ABBGAUCHE", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRCPIE6502285;FRCPIE6506505", + "ref": "FRCPIE6502285;FRCPIE6506505", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91245300000, + 45.77801800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref": "782592", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/YYJ7KQJT6G", + "ref:EU:EVSE": "FRLE2P4961194473432518700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74089000000, + 45.42909100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Riberac | Place General de Gaule", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7380f22e-f948-58d9-a9ab-576be0971340" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33900900000, + 45.24826400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB26031A", + "description": "Réseau AlterBase - St Varent - Place du 14 Juillet", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23268900000, + 46.88854200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-07;2022-07-06;2023-01-09", + "capacity": "38", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRAIRPAIRBUS934401", + "operator": "DRIVECO", + "description": "Airbus - Le Bourget" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42623800000, + 48.95898700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3894EVCP01;LFR3894EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3894EVCP01;LFR3894EVCP02", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LINSELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09154800000, + 50.73113100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "414798", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM45P2769753591345333408", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/YHVKIMCLPK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98657200000, + 47.90023400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ13912;FRA16PWIIZ13911", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ANTIBES PARKING RABIAC ESTAGNOL", + "start_date": "2022-05-23", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*139*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09906000000, + 43.58916200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;22 kW", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/EJBKFGAQ96", + "ref": "578861", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2135543277327984214" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30014600000, + 49.04953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PBALDIJ", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Balladins - Dijon", + "start_date": "2023-09-27;2023-09-20", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06968570000, + 47.35151000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Pers-Jussy, Route De Reignier", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPGYLUWGEFDI", + "ref": "GYLUWGEFDI", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26369449000, + 46.11742700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Montpellier - Hôtel Ibis Millénaire", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPMONHI", + "network": "ELECTRA", + "start_date": "2023-10-13", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90598600000, + 43.61076500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-11-27", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VALLAURIS - Théâtre De La Mer", + "ref:EU:EVSE": "FRP07E06155002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08232000000, + 43.56859000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6690055", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRCPIE6690055", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "description": "TINCQUES BORNE 1 DC", + "network": "TINCQUES BORNE 1 DC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48574300000, + 50.35212700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "VTBYUSAA5F;453951", + "capacity": "2", + "description": "Easy Charge/VTBYUSAA5F;Vienne, Parc Relais Sud", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP5514544872215046342;FRECHPVTBYUSAA5F", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84971800000, + 45.50138100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "start_date": "2022-12-09", + "capacity": "1", + "description": "ENGIE Vianeo - A6 Les Chères Ouest", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP103102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72858000000, + 45.90275600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8120157076050125766", + "capacity": "2", + "amenity": "charging_station", + "ref": "575426", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/F4ZNRA9TDQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72328900000, + 48.60248400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX07*08", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0708", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue de la Bourdonnais 45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29958200000, + 48.85807000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6148658146851415545", + "charging_station:output": "11 kW", + "description": "Freshmile France/LLXOOPIW61QDCQ", + "operator": "Freshmile | FR*FR1", + "ref": "1130445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86265400000, + 45.72017200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-27", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Plateforme Grand Frais - PRELODIS - Chaponnay", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPPRELODIS699701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93126600000, + 45.65140200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Yvignac la Tour-Rue du 8 mai 1945 (parking derrière la poste)", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22391001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17564500000, + 48.34765600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - SANCERGUES - La Chicane", + "ref": "FRS18E181993;FRS18E181994", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SANCERGUES - La Chicane", + "ref:EU:EVSE": "FRS18E181993;FRS18E181994" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91160400000, + 47.15724400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@domelec-auvergne.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "description": "IRVE LOUBEYRAT", + "charging_station:output": "22 kW", + "network": "LOUBEYRAT", + "operator": "DOMELEC", + "owner:ref:FR:SIREN": "432186559" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01000000000, + 45.93000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRPY1P5205608549656509873", + "capacity": "2", + "amenity": "charging_station", + "ref": "1007355", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "PICOTY/e52690aa-e19b-4fcc-81bb-bd5bddf4b3a9", + "network": "PICOTY", + "operator": "Mobilygreen | FR*PY1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09011200000, + 43.93926800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-05-30", + "operator": "BOUYGUES ENERGIES SERVICES", + "description": "ANGLES - Station Service", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8101400122;FRS81E8101400111;FRS81E8101400112;FRS81E8101400121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56484890000, + 43.56538391100 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE401800", + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIONE401800", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "start_date": "2019-03-14", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Garonne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24520400000, + 43.33465900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44152A;FRS44E44152001", + "capacity": "1;2", + "start_date": "2021-04-22;2024-04-22", + "description": "SAINTE-ANNE-SUR-BRIVET - Place De L'Église;OuestCharge - Diva Sp - Sainte-Anne-Sur-Brivet - Eglise", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00609700000, + 47.45999100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-07;2023-09-27", + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77352001;FRS77P77352A", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61JC7JD541PZX91Q19", + "description": "Ozouer-le-Voulgis;OZOUER-LE-VOULGIS - Rue Renard", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77265900000, + 48.66064500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH01E62765009", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-OMER -Rue des carmes", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25358900000, + 50.75152800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E4167;FRS37E4166;FRS37E4168;FRS37E4169", + "amenity": "charging_station", + "start_date": "2019-03-18", + "capacity": "4", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS37E4167;FRS37E4166;FRS37E4168;FRS37E4169", + "network": "MODULO - SAINTE-MAURE-DE-TOURAINE - L'Aquitaine", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINTE-MAURE-DE-TOURAINE - L'Aquitaine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761000000, + 47.10801100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PNFGWPG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/NFGWPG", + "ref": "32827", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37338000000, + 47.73180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-06-09;2022-06-26", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*157*2*_*_;FR*SOD*S*LYON*157*1*_*_", + "opening_hours": "24/7", + "description": "VIL05 - GRATTE-CIEL - BRANLY", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRGLYPLYON15722;FRGLYPLYON15721;FRGLYPLYON15711;FRGLYPLYON15712", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88161600000, + 45.77082600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*MEL*P59496*02", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SALOMÉ - Rue Pasteur", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRMELP5949602", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84218290000, + 50.53570940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 00:00-23:59, Tu 00:00-23:59, We 00:00-23:59, Th 00:00-23:59, Fr 00:00-23:59, Sa 00:00-23:59, Su 09:00-13:00", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "description": "ASL AREA Englos", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPASLAREAENGLOS593201", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96217000000, + 50.62469900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT BOULOGNE", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6586915", + "ref:EU:EVSE": "FRCPIE6586915", + "description": "SONEPAR CONNECT BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60711500000, + 50.69455400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471240", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/RCMGGZK8UV", + "ref:EU:EVSE": "FRLE2P142214106271970409" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22570200000, + 46.62259900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "dd732e34-7514-5d0c-972f-910bc7d97d06", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Libourne | Avenue Gallieni", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23693000000, + 44.91681700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "start_date": "2024-04-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95039001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "AUVERS SUR OISE - Derrière la Hallse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17253980000, + 49.07112440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000103;FRALLPTIS016", + "start_date": "2021-10-22;2021-10-21;2021-10-20;2023-08-22", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "socket:type2_combo:output": "50 kW;350 kW;300 kW", + "capacity": "22;18", + "description": "TISSEO BALMA GRAMONT", + "charging_station:output": "350 kW;50 kW;43 kW;22 kW;300 kW", + "network": "ALLEGO;GreenToWheel;TISSEO BALMA GRAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157000000, + 43.62854000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "SAINT JEAN DE MAURIENNE", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR2071EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2071EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36650700000, + 45.26932900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRM13PQZ8BVWGGCG", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "description": "Cassis, Parking Savon", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811000000, + 43.21352800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/LYKHGRPY0K", + "operator:email": "roaming@freshmile.com", + "ref": "402557", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P5286814605024971163", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94673500000, + 47.69899700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ27211;FRA16PWIIZ27212", + "capacity": "2", + "start_date": "2024-07-20", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*272*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LE TIGNET - PARKING CO-VOITURAGE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84453700000, + 43.63051780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/lhopitalgare", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "377462", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1425233555130795283" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73917000000, + 49.16050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMRCVFT", + "start_date": "2023-06-16", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "description": "Mercure - Lyon L'Isle-d'Abeau", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16684719231, + 45.62721524716 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-19", + "ref:EU:EVSE": "FREBNPM7ZASMMQY6;FREBNP172777559437008228", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "M7ZASMMQY6;477816", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Uvernet-Fours, Pra Loup;Réseau eborn/M7ZASMMQY6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60302000000, + 44.36990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP5310267495125747285", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "EVzen/949C592C-BD68-4A96-87D1-D9892B7B5C27", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1153065", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92393600000, + 44.21510400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NETTO - PUILBOREAU", + "start_date": "2023-02-24", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*595*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR59511;FROTHPOTHR59512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10534000000, + 46.17749300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "96044", + "ref:EU:EVSE": "FREBNPDBT65NAW0K", + "description": "Réseau eborn/DBT65NAW0K", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33709300000, + 45.43521700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346706;FLPBRFXHAM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FREBNPFLPBRFXHAM;FREBNP7853576367119425814", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Alban-Leysse, Place du commerce;Réseau eborn/FLPBRFXHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95553200000, + 45.57850900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP121030", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Cherbourg", + "operator:email": "support@greenflux.com", + "start_date": "2024-01-19", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60646300000, + 49.61663200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626057", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ESA4E2FUK6", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P842516163500127488" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40256200000, + 49.19926500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX14*01", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-06-17", + "opening_hours": "24/7", + "description": "Paris | Rue Broussais 32", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1401", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33661300000, + 48.82844000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLVGKR5NB26T55", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "1084800", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6322640855866490597", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48896200000, + 51.04599900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSIBLU694201", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Les Rives de Condrieu (Camping Siblu) - Condrieu", + "operator:email": "support@driveco.com", + "start_date": "2024-04-03", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77665500000, + 45.46045900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-18", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PGRAVIGNYMAIRIE", + "network": "SIEGE27", + "operator": "SIEGE 27", + "description": "900081" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16242900000, + 49.04785400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22029001", + "charging_station:output": "22 kW", + "start_date": "2023-04-18", + "description": "CANIHUEL - Parking rue Henri Seré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10490300000, + 48.33949200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLIERS-SAINT-FRÉDÉRIC - Pontel", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-01-05", + "ref:EU:EVSE": "FRY03E78683001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88160000000, + 48.81001000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Oria", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE153", + "start_date": "2021-09-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02794300000, + 50.66517200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1041144", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWATL14HUT2QQ", + "ref:EU:EVSE": "FRWATP5490644344131814382", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70701100000, + 47.41979200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE459400", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "ref:EU:EVSE": "FRIONE459400", + "charging_station:output": "350 kW", + "description": "IONITY Rodez", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58660500000, + 44.36975400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E48601;FRS51E48602", + "capacity": "2", + "description": "MODULO - MONTMIRAIL - Pl. de Montléan", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E48601;FRS51E48602", + "network": "MODULO - MONTMIRAIL - Pl. de Montléan", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54542000000, + 48.87045200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "IBOS - Place de Verdun", + "ref:EU:EVSE": "FRS65E65226001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00135000000, + 43.23392000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE000401;FRIENE000402", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE000401;FRIENE000402", + "network": "Guerlesquin", + "description": "Guerlesquin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.59151659000, + 48.53489716000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34178001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MURVIEL LES BEZIERS - Allée Des Tilleuls (Parking Maison De Retraite)", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14638330000, + 43.43939170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile;Morbihan énergies | FR*S56", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-01-26", + "ref": "32839", + "description": "Ploemeur - Boulevard de l'Océan;Mobilité électrique 56/JEAFVZ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "ref:EU:EVSE": "FRS56PJEAFVZ", + "network": "Morbihan Energies;Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49890000000, + 47.73420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "578828", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ABYE1D2DBH", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3584069469877097787", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56040100000, + 45.53511000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30340001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VALLIGUIERES - Rue De La Treille", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57867300000, + 44.00569700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "capacity": "2", + "amenity": "charging_station", + "description": "Delesalle - Calais", + "start_date": "2020-09-24", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPDELESALLEFORD621001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88408100000, + 50.93705200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SCI INCIPIENS", + "ref:EU:EVSE": "FRC2P00702;FRC2P007201", + "amenity": "charging_station", + "capacity": "1", + "network": "SCI INCIPIENS", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "start_date": "2023-07-12", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr", + "ref": "FRC2P007201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04276890000, + 48.77716420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "4f68bd40-89f2-4196-a124-574c808ee030", + "operator": "LUMI'IN", + "start_date": "2022-09-08", + "description": "LA GRANDE BASTIDE", + "ref:EU:EVSE": "FRLUMELAGRANDEBASTIDE11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91000000000, + 43.90000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "ref:EU:EVSE": "FRS33PMB3316911;Non concerné;FRS33PMB3316912", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "197__SDEEG33;IZIVIA", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | Gujan-Mestras | All. Mozart;GUJAN-MESTRAS - ALL. MOZART", + "owner:ref:FR:SIREN": "253303473", + "socket:type2_combo:output": "24 kW", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "ref": "3bd117e7-2698-5301-bdc4-955336a2edaa;FR*SOD*S*MB33*169*1*_*_", + "capacity": "2;3", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07451600000, + 44.61846100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-24", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "NISSAN ESPACE 3 - ST GREGOIRE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE35NSP3", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72120400000, + 48.17905700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "1180764", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP1645688456634389571", + "description": "BornEco/65008debcd2d92de818845e4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35245600000, + 48.97907300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LECLERC ROYAN", + "network": "LECLERC ROYAN", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2PCEGU;FRLE2PHDAM;FRLE2PHTQM;FRLE2PNMAW;FRLE2PUJNL;FRLE2PUNJL", + "charging_station:output": "22 kW", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99356913072, + 45.63094355958 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Saint-Paul-Lez-durance, D11", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PZHH0MOQERH", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71025200000, + 43.68646900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402596", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P7822746455985583393", + "description": "SDEY/Q6IKLNJNWO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28408000000, + 48.19558600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89363737", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "description": "R3 - Norauto Aulnoy les Valenciennes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51124200000, + 50.33316200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/QUNHGB", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "18 kW;22 kW", + "ref:EU:EVSE": "FRFR1PQUNHGB", + "ref": "102314" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75179000000, + 48.57800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-10;2023-10-30", + "description": "Super U - Fontoy", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PSYUFTY", + "charging_station:output": "50 kW;100 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97991409424, + 49.35634857438 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "FSMDLX2G3U;96032", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPFSMDLX2G3U", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/FSMDLX2G3U;Roanne, Clinique du Renaison" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05350000000, + 46.03416700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/BC4DADF2-7C9A-41CE-A915-45988A70680D", + "ref": "1167645", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP3173566139806658122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03361100000, + 46.27577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "BRUMATH - CIMETIERE", + "network": "ES B2G", + "capacity": "2", + "charging_station:output": "43 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*803*1*_*_", + "start_date": "2024-03-19", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR80311;FROTHPOTHR80312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70981791216, + 48.73225078471 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "description": "Ebreuil, Place Saint-James;Réseau eborn/ebreuil", + "ref": "ebreuil;231634", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPEBREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08854000000, + 46.11690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPIXBABVQUXW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/IXBABVQUXW;Château-Arnoux-Saint-Auban, Rue d’Arsonval", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "79300;IXBABVQUXW", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99273800000, + 44.07434300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR40141;FROTHPOTHR40131;FROTHPOTHR40121;FROTHPOTHR40111", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*401*4*_*_;FR*SOD*S*OTHR*401*3*_*_;FR*SOD*S*OTHR*401*1*_*_;FR*SOD*S*OTHR*401*2*_*_", + "start_date": "2022-05-12", + "network": "LA GARANGEOIRE", + "operator:email": "sav@izivia.com", + "description": "CAMPING LA GARANGEOIRE - SAINT-JULIEN-DES-LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71378400000, + 46.66372100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1111905", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2075106888802729245", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLW4Q91XZ2QOOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47838600000, + -20.90275700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Val-de-Meuse, France", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP3439", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 47.99147000000, + 47.99147000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/PYLGWD", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "94235", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PPYLGWD", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13470000000, + 48.89440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Total Charging Services", + "charging_station:output": "7 kW", + "description": "Carglass Services SAS - PANTIN", + "opening_hours": "Mo-Fr 08:00-12:15,Mo-Fr 13:30-19:00,Sa 08:00-12:30,Sa 13:30-17:00", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRTCBP02576", + "owner:ref:FR:SIREN": "425050556", + "ref:EU:EVSE": "FRTCBP02576", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "Carglass Services SAS - PANTIN", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41656185370, + 48.90301143528 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P970414360199413808", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "ref": "892281", + "description": "Freshmile France/LLIVTNCDKRG1FN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24601000000, + 48.18669700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P1068499834875482210", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461832", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/MNJRPSZUVR", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29628600000, + 49.20426600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-28", + "description": "Mazda - Ajaccio - 22kW AC ", + "network": "AJACCIO NORD AUTOMOBILES - MAZDA AJACCIO ", + "owner:ref:FR:SIREN": "323838110", + "ref:EU:EVSE": "FRZMAE22AC59911", + "amenity": "charging_station", + "capacity": "1", + "ref": "59911", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.76302600000, + 41.94708800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE368", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "description": "Sifom" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06095600000, + 47.42941600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LES MUREAUX - Avenue Paul Raoult - Borne 2", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78440003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91281400000, + 48.98915900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20738700000, + 49.97188590000 + ], + [ + 1.20728910000, + 49.97190830000 + ], + [ + 1.20727120000, + 49.97191920000 + ], + [ + 1.20723550000, + 49.97194110000 + ], + [ + 1.20721800000, + 49.97200230000 + ], + [ + 1.20723410000, + 49.97203940000 + ], + [ + 1.20727570000, + 49.97208940000 + ], + [ + 1.20734810000, + 49.97211010000 + ], + [ + 1.20738570000, + 49.97211270000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "ref:EU:EVSE": "FRIOYE460601;FRIOYE460602;FRIOYE460603;FRIOYE460604;FRIOYE460651;FRIOYE460652;FRIOYE460653", + "network": "Gourdan Polignan", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref": "FRIOYE460601;FRIOYE460602;FRIOYE460603;FRIOYE460604;FRIOYE460651;FRIOYE460652;FRIOYE460653", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Gourdan Polignan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58982400000, + 43.06158700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-27;2021-04-13", + "description": "OuestCharge - Diva Sp - Martigne-Sur-Mayenne - Georges;MARTIGNE-SUR-MAYENNE - Rue De La Fontaine Saint-Georges", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53P53146A;FRS53E53146001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66340700000, + 48.19494200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-10-11", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MAUREILLAS - Route De Las Illas", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66106001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80922100000, + 42.48988300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20739370000, + 49.97089490000 + ], + [ + 1.20735610000, + 49.97094380000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE012302;FRIENE012301", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE012302;FRIENE012301", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Guengat", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Guengat", + "operator": "NW IECharge", + "start_date": "2024-01-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22576100000, + 48.03425900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35126001B1", + "network": "OUEST CHARGE", + "description": "GUICHEN - 5 place georges le cornec ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79736200000, + 47.96562600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "MONT D'ANDAINE - Lotissement les Fontainettes", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-LASAUV-001", + "ref:EU:EVSE": "FRS61P61463A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41671300000, + 48.62199870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892374", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLJCKRDIHAQNZX", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P584808216980777907", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27267900000, + 47.79173600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Caraman, Cimetière;Roulez Électrique En Haute-Garonne/VZFZTP", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-08", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PVZFZTP", + "ref": "VZFZTP;49024", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75551000000, + 43.53120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "ref:EU:EVSE": "FRSIPE92050014", + "charging_station:output": "7 kW", + "description": "NANTERRE - Rue Des Ecoles", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21932537302, + 48.88684762211 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Le Grand Hôtel du Luxembourg", + "start_date": "2022-12-27", + "description": "Le Grand Hôtel du Luxembourg", + "amenity": "charging_station", + "ref": "FRCG0E000552;FRCG0E000550;FRCG0E000551", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000552;FRCG0E000550;FRCG0E000551", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70348800000, + 49.27851500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING CHENIER", + "start_date": "2022-07-12", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*187*1*_*_", + "ref:EU:EVSE": "FRM06PNICE18711;FRM06PNICE18712", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26237924265, + 43.72431019570 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Tonneins | Rue ducourneau", + "ref": "dbd5b00b-4ae2-5fa4-9eac-866bf9a5a77a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30878000000, + 44.39103300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - MAIL DES PASSEMENTIERES - DOMONT", + "ref": "FR*SOD*S*SIGE*326*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE32611;FRSIGPSIGE32612", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-02-09", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33894200000, + 49.03022900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Centre Commercial Les Oliviers - Châteauneuf-les-Martigues", + "ref:EU:EVSE": "FRBMPS242149;FRBMPS242147;FRBMPS242148", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "242149;242147;242148", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16296500000, + 43.39058400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3541EVCP02;LFR3541EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "THOUROTTE Juin", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3541EVCP02;LFR3541EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87341600000, + 49.48213400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "24 kW;50 kW;3.7 kW;22 kW", + "network": "CPO CITEOS Mobive", + "capacity": "8", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "db5d630a-fe41-5b4c-9987-dec2e547c1fc", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Agen | Parking du Gravier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61172300000, + 44.20012400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Évry-Courcouronnes - Jean Taris", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8dad5521-e9de-5e4f-af56-0b2abb130890" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43055600000, + 48.64005700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP83170CLSSTADE", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "STADE COMMUNAL - CAMPS-LA-SOURCE", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-08-14", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83170*CLS*STADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09776400000, + 43.38230900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT CYR SUR LOIRE Gaulle", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3732EVCP02;LFR3732EVCP01", + "ref:EU:EVSE": "LFR3732EVCP02;LFR3732EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65765400000, + 47.42367300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;22 kW;60 kW", + "start_date": "2022-11-17;2022-11-21", + "opening_hours": "24/7", + "description": "Intermarché Super - Balma", + "ref:EU:EVSE": "FRPD1PITMBLM", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48864877627, + 43.61468829876 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPSKTP3NLG6S", + "ref": "SKTP3NLG6S", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "description": "Digne les Bains, ZI ST Christophe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18784340000, + 44.07543144000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP59197A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Domaine des Cigognes", + "ref": "FRETIP59197A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10326384480, + 50.53720107568 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E381850071;FRP01E38185007", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;7 kW", + "network": "EFFIA France", + "description": "Parking Grenoble Hoche - Centre - PARK GRENOBLE ALPES METROPOLE", + "start_date": "2023-07-04;2024-05-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72651250000, + 45.18618650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "description": "Carrefour Market - Auchel Allouagne", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT622601", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47372300000, + 50.51444800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "75248", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPCWBZ2DL8DD", + "description": "Réseau eborn/CWBZ2DL8DD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08132800000, + 46.14467700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR52112;FROTHPOTHR52111", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*521*1*_*_", + "operator:email": "sav@izivia.com", + "description": "BRICOCASH - PUSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13925700000, + 47.64711800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRCPIE6723605;FRCPIE6723585;FRCPIE6723595", + "amenity": "charging_station", + "start_date": "2023-10-27", + "ref:EU:EVSE": "FRCPIE6723605;FRCPIE6723585;FRCPIE6723595", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CPMPR STJ ROQU. BORNE 3", + "network": "CPMPR STJ ROQU. BORNE 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69001300000, + 43.63436700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/H2EMHAFSLS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "454038", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3749118022694620825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71291000000, + 48.66920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "description": "CONFLUENCE - PKG N+1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*UNIB*12*9*_*_;FR*SOD*S*UNIB*12*8*_*_;FR*SOD*S*UNIB*12*7*_*_;FR*SOD*S*UNIB*12*11*_*_;FR*SOD*S*UNIB*12*10*_*_;FR*SOD*S*UNIB*12*12*_*_", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096", + "ref:EU:EVSE": "FRURWPUNIB1281;FRURWPUNIB1271;FRURWPUNIB12101;FRURWPUNIB12111;FRURWPUNIB12121;FRURWPUNIB1291", + "start_date": "2021-02-15;2021-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81639200000, + 45.74068400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VAHGUF", + "ref": "232462", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PVAHGUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74903000000, + 48.58560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "capacity": "24", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTNME18B95093;FRTNME18B92941;FRTNME08990399;FRTNME08990395;FRTNME08990391;FRTNME08910318;FRTNME08910938;FRTNME08990136;FRTNME08990376;FRTNME08990384;FRTNME18B95089;FRTNME18B95097", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRTNME18B95093;FRTNME18B92941;FRTNME08990399;FRTNME08990395;FRTNME08990391;FRTNME08910318;FRTNME08910938;FRTNME08990136;FRTNME08990376;FRTNME08990384;FRTNME18B95089;FRTNME18B95097", + "network": "08910938", + "start_date": "2019-09-25", + "description": "08910938" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37151800000, + 51.03120500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile/LDZGF5PWXI", + "ref:EU:EVSE": "FRFR1P542476681682560209", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "626159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47104700000, + 43.31477600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P7280605980691850006", + "ref": "461898", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/QRFJYJHILI", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31450800000, + 49.30215500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12098001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ESTAING - Rue François D'Estaing", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67216000000, + 44.55341100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLMQIZAYF7", + "ref:EU:EVSE": "FRWA3P5213303468949058167", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "789198", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61443300000, + 44.20859000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "LE PLESSIS-MACE - Rue du Bellay;OuestCharge - Diva Sp - Le Plessis-Mace - Bellay", + "amenity": "charging_station", + "start_date": "2021-04-12;2024-04-03", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49E49242001;FRS49P49242A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67610600000, + 47.54266800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-12-16", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LA FLECHE - Allée du Loir", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS72E72154002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08690600000, + 47.69745900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59664001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "WULVERDINGHE - Rue Principale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25539700000, + 50.83198000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44188B;FRS44E44188002", + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Eglise;SAINT-PHILBERT-DE-GRAND-LIEU - Place De L'Église", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-06-04;2024-04-12", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64035100000, + 47.03601000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG 63/FR*S63*P63305*A", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63305A", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref": "518402", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80530200000, + 45.68400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59392003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MAUBEUGE - Parking du Pavillon", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2019-12-09", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97820000000, + 50.27784000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BESSAN - Chemin De La Croix De Redon", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34031001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42501800000, + 43.35762500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-12-13", + "description": "CRETEIL - Rue des archives", + "ref:EU:EVSE": "FRSIPE94028013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45684228465, + 48.78399949631 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*350*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE35012;FRM06PNICE35011", + "operator:email": "sav@izivia.com", + "start_date": "2024-03-06", + "description": "PARKING SAINTE-LUCE CAGNES-SUR-MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14969855698, + 43.66534763011 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "5a3f9c53-30b1-51ea-b09f-8dfaf9006ff3", + "description": "MOBIVE | Monbazillac | Parking Restaurant Semillion" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49057800000, + 44.79363300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 152 BVD CHARLES DE GAULLE - COLOMBES", + "start_date": "2023-08-04", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*431*1*_*_", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSIGPSIGE43111;FRSIGPSIGE43112", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22836600000, + 48.91529600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9007222;FRALLEGO9007221;FRALLEGO9004252;FRALLEGO9004251;FRALLEGO9004171;FRALLEGO9004172;FRALLEGO9007251;FRALLEGO9007252", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9007251;FRALLEGO9007222;FRALLEGO9004252;FRALLEGO9004251;FRALLEGO9004171;FRALLEGO9004172;FRALLEGO9007221;FRALLEGO9007252", + "network": "Allego Carrefour Anglet", + "description": "Allego Carrefour Anglet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49702320000, + 43.49034120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "TARARE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2079EVCP01;LFR2079EVCP02", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR2079EVCP01;LFR2079EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42909800000, + 45.89507600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Mouguerre | Parking Haitz Ondo", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "d8726eee-4a13-54be-9bb8-03848367fddd", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42069500000, + 43.46828800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "dc864317-9aa2-5843-bf50-f8bb596c2d57", + "description": "Caromb - Avenue Jean Moulin", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10568400000, + 44.11117700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GAZERAN - Rue des Sources", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78269002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77395940000, + 48.63575530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3764EVCP01", + "description": "ST HERBLAIN Vannes", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3764EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61387500000, + 47.24931600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMTUL", + "description": "Intermarché - Tulle", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2022-12-20", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77541300000, + 45.27306700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Les Adrets-De-L'Esterel, Place de la Mairie;Réseau eborn/PLT8JLOXFE", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "PLT8JLOXFE;346880", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP2105273124988270571;FREBNPPLT8JLOXFE", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81396400000, + 43.52511500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "917546251", + "network": "e-Vadea;E-VADEA", + "start_date": "2023-07-13", + "charging_station:output": "150 kW;50 kW;22 kW", + "amenity": "charging_station", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "ref": "853632", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA", + "capacity": "13;27", + "description": "e-Vadea - Bouc-Bel-Air - A51 Champouse;E-VADEA/FR*EVA*P13015*A", + "ref:EU:EVSE": "FREVAP13015A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39557400000, + 43.44112700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Hotel Campanile - Metz Nord", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "start_date": "2023-06-27;2023-07-03", + "capacity": "10", + "ref:EU:EVSE": "FRPD1PCPNWOP", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17642990000, + 49.14964880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Fécamp", + "ref:EU:EVSE": "FRDRVPCRFMKT764001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-06-24", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40388100000, + 49.74851700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42218AG", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "ref": "FRESEPS42218AG", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB Zenith", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2019-07-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39130300000, + 45.45466900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "HYDRO EST KEMBS - EXTERIEUR", + "ref": "FR*SOD*S*IZIG*365*7*_*_;FR*SOD*S*IZIG*365*1*_*_;FR*SOD*S*IZIG*365*3*_*_;FR*SOD*S*IZIG*365*5*_*_", + "network": "EDF-EV100", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-20;2021-09-21", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPIZIG36572;FROTHPIZIG36571;FROTHPIZIG36552;FROTHPIZIG36551;FROTHPIZIG36532;FROTHPIZIG36531;FROTHPIZIG36511;FROTHPIZIG36512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51826000000, + 47.65503000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6854905", + "capacity": "2", + "amenity": "charging_station", + "network": "VOTREVISION VOTREVISION", + "ref:EU:EVSE": "FRCPIE6854905", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "VOTREVISION VOTREVISION", + "opening_hours": "Mo 08:00-18:00,Tu 08:00-18:00,We 08:00-18:00,Th 08:00-18:00,Fr 08:00-18:00", + "start_date": "2024-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17806500000, + 43.92900600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PYRFTXHDZQJ", + "description": "Freshmile France/YRFTXHDZQJ", + "ref": "294476", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08822000000, + 49.10750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2024-01-23;2024-01-22", + "description": "ENGIE Vianeo - B&B HOTEL BORDEAUX LAC SUR BRUGE", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59444900000, + 44.88795100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8896973780871553213", + "network": "Freshmile France", + "ref": "782382", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/GR5HJDH3RQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48917800000, + 47.09602900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP28783", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Bourg-Achard, France", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81775400000, + 49.35972100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P516823124213921886", + "operator:email": "roaming@freshmile.com", + "ref": "466128", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/NTGG7P8XLF", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46807000000, + 48.41430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "457512", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/MDE2V8GM3H", + "ref:EU:EVSE": "FRS14P5590721556562085357" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45065600000, + 49.15670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892782", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8033920693323681259", + "description": "MobiSDEC/LLIU23ZA9182RT", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29524300000, + 49.13469300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P530384022645932865", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128120", + "description": "WAAT/FRWATLABFIY96V", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20773800000, + 49.13194200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P501298", + "description": "CHERBOURG EN COTENTIN - Place Rossel", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-04-27", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64284000000, + 49.62848800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81163001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MAZAMET - Rue De L'Egalité - Parking Du Champ De La Ville", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37865000000, + 43.49032900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059599", + "capacity": "8", + "start_date": "2023-06-16;2021-06-07", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680631;531680632;531680629;531680626;531680630;531680625;531680627;531680628", + "opening_hours": "24/7", + "description": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "ref:EU:EVSE": "FRHPCPNF059599", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99260000000, + 43.42240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48092002", + "start_date": "2022-03-01", + "description": "MARVEJOLS - Place Du Barry", + "network": "Reveo", + "charging_station:output": "18 kW;180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29295500000, + 44.55203400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/VOHTCOIT7B", + "operator:email": "roaming@freshmile.com", + "ref": "541937", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P1228088411905274948", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12670000000, + 47.47790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ÉQUIHEN-PLAGE - Place de l'Eglise", + "ref:EU:EVSE": "FRH05E62300002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57129000000, + 50.67926000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Sibiril - Rue du Port", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2927600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07865200000, + 48.68928100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PVZHEMA", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/VZHEMA", + "ref": "25039" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73063000000, + 47.65860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-06-20", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346052171;FRLMSE12346052172;FRLMSE12346052181;FRLMSE12346052182", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B130", + "description": "ROMAGNE VALLEE DES SINGES-1-2;ROMAGNE VALLEE DES SINGES-1-1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28977000000, + 46.24311800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "446957", + "description": "Métropolis/FR*MGP*P93031*C", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93031C", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608600000, + 48.95828500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE91114014", + "description": "BRUNOY - Rue Latérale", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-22", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50343170000, + 48.70184060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Atlante/FRATLFR00335", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP3775433644729731750", + "operator": "Atlante | FR*ATL", + "ref": "1000008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34424600000, + 48.62476700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "NVH", + "start_date": "2022-07-01", + "capacity": "2", + "description": "CSE - BdF - Portiragnes", + "amenity": "charging_station", + "network": "CSE-Central BDF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE1000100978;FRLMSE1000100979", + "ref": "0", + "operator:email": "supervision@nvh-france.fr", + "owner:ref:FR:SIREN": "775657463" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35000000000, + 43.28000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "752044479", + "start_date": "2022-08-22", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "ref:EU:EVSE": "FRMAPP000000006816", + "network": "ATRACHATA", + "capacity": "2", + "amenity": "charging_station", + "description": "ATRACHATA", + "charging_station:output": "11 kW", + "ref": "non concerné", + "operator:email": "direction@adonis-aleria.com", + "operator": "ATRACHATA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.51390250000, + 42.11402080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTE-GEMME-LA-PLAINE - Les Quatres Chemins", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85216001", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10895000000, + 46.46690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSVANNE", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "VANNES", + "capacity": "10", + "start_date": "2022-12-12", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76089500000, + 47.65828100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MAMP*56*1*_*_", + "network": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP5611;FRIZMPMAMP5612", + "socket:type2_combo:output": "24 kW", + "description": "IZIVIA | MARSEILLE 05 - RUE SAINT-PIERRE", + "operator:email": "sav@izivia.com", + "start_date": "2024-03-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39552980000, + 43.29229390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-09-28", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PMATRMV", + "charging_station:output": "100 kW;50 kW;22 kW;187.5 kW", + "description": "Match - Rambervillers", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63664357367, + 48.34110297649 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/RL88SM8IHY", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP2793205503661809842", + "ref": "598281", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98857800000, + 45.46559000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP4531465426415120694", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "1089915", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "description": "EVzen/5A15F5DA-8C90-4C94-8CB8-C2B7F1E064FF", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31065600000, + 47.72559400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "description": "Ibis - Couëron", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PIBSCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67179482845, + 47.24327698105 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Sallanches, Route du Fayet - Sur parcelle B1469", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPCWYOE0KVEJ", + "ref": "CWYOE0KVEJ", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63348600000, + 45.93213140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "e-Totem - 3M - Castelnau Le Lez - Avenue Georges Freche", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP34057B", + "ref": "FRETIP34057B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90562521823, + 43.62579689914 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR21011;FROTHPOTHR21021", + "start_date": "2021-07-07", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "SUPER U - MALESTROIT", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*210*1*_*_;FR*SOD*S*OTHR*210*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40382300000, + 47.80578000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS3611;FRCPSPCAPS3612", + "description": "LONGJUMEAU - GARE DE LONGJUMEAU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*CAPS*36*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2020-03-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29418600000, + 48.70186600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1173231", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LM00PXPBVNYDNW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P816775187062348563", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56612300000, + 44.81213200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "description": "ENRGETICA/4802cf77-aae3-4949-b1a6-86ae1bae533b", + "amenity": "charging_station", + "ref": "705713", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRVISP1643439693159321678", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03993800000, + 43.85369900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "682265", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4779533407059429610", + "description": "Freshmile France/UGEM4LBMME", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91740500000, + 46.53109900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2022-07-22;2023-01-10", + "network": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000088005;FRSWSE1000081571;FRSWSE1000123861", + "ref": "1000088005;1000081571;1000123861", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "WB 22kW VW Voiron;ABB T23 VW Voiron;WB 2x22 VW Voiron", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59288900000, + 45.35384400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/P2SBBU9AIE;Freshmile France/NW2L9MBAJT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8928843371536341202;FRFR1P5577303592555338197", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "694280;694286", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59567900000, + 50.52001500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "description": "Nhood - Villeneuve d'Ascq", + "network": "DRIVECO", + "start_date": "2023-01-10", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 07:00-18:00, Tu 07:00-18:00, We 07:00-18:00, Th 07:00-18:00, Fr 07:00-18:00, Sa 07:00-12:00", + "ref:EU:EVSE": "FRSSDPNHOOD594911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14306500000, + 50.67067300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MAINVILLIERS - Rue de la république", + "network": "MODULO - MAINVILLIERS - Rue de la république", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2022-07-09", + "ref": "FRS28E137395", + "ref:EU:EVSE": "FRS28E137395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47347000000, + 48.44774100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EVB-DC439800001-B", + "start_date": "2022-04-09", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "MOMATECH SARL - TECHOFFICE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TECHOFFICE", + "owner:ref:FR:SIREN": "519644280", + "description": "Parking TECHOFFICE", + "operator:email": "contact@techoffice.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92947550000, + 49.93960940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P2127304754021324865", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "39671", + "opening_hours": "24/7", + "description": "SDEA 10/F3LFNNOE3M" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57755200000, + 48.55096500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLOKR5QDIL", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWATP8146034747862812145", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "706244" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23800200000, + 48.97875900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-11-07", + "ref:EU:EVSE": "FRROSE464", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Garages_Lillois_1", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12393700000, + 50.62697200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VIELMUR / AGOUT - Place De La Bouriatte", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81315001", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09246700000, + 43.62276100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "INTERPARKING - Nice Ruhl Méridien", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "22", + "start_date": "2023-12-21", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26588100000, + 43.69511300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49099D;FRS49E49099004", + "amenity": "charging_station", + "start_date": "2021-04-26;2024-04-05", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Cholet - Sabotiers;CHOLET - Rue des Sabotiers", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89710600000, + 47.04899300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PCFQLDZ", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "86687", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/CFQLDZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99876000000, + 49.58150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62356001", + "description": "FRESNICOURT LE DOLMEN - Rue Léo LaGrange", + "start_date": "2022-11-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58791258659, + 50.42425094706 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "NIMES - Chemin Du Mas De Vignolles", + "ref:EU:EVSE": "FRS30E30189009", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36285900000, + 43.81714400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "ref:EU:EVSE": "FRS56PZCZYVW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "description": "Mobilité électrique 56/ZCZYVW", + "network": "Mobilité électrique 56", + "ref": "85838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33673000000, + 47.88760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "LUSIGNAN INTERMARCHE | B059;LUSIGNAN INTERMARCHE-1-1;LUSIGNAN INTERMARCHE-1-2", + "amenity": "charging_station", + "network": "SOREGIES MOBILITES;SOREGIES", + "start_date": "2015-12-20;2015-12-18", + "opening_hours": "24/7", + "operator:email": "irve@soregies.fr;sav@izivia.com", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRS86PSOREB0592;FRS86PSOREB0591;FRLMSE12346396851;FRLMSE12346396861", + "ref": "FR*SOD*S*SORE*10*1*_*_;B059", + "charging_station:output": "18 kW;22 kW", + "operator": "SOREGIES MOBILITES;IZIVIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11479900000, + 46.42859900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94080I", + "opening_hours": "24/7", + "ref": "348983", + "charging_station:output": "22 kW", + "operator": "Métropolis | FR*MGP", + "description": "Métropolis/FR*MGP*P94080*I" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45605100000, + 48.84609700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRSIGPSIGE14131;FRSIGPSIGE14111;FRSIGPSIGE14121;FRSIGPSIGE14141;FRSIGPSIGE14151;FRSIGPSIGE14161", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*141*5*_*_;FR*SOD*S*SIGE*141*3*_*_;FR*SOD*S*SIGE*141*2*_*_;FR*SOD*S*SIGE*141*1*_*_;FR*SOD*S*SIGE*141*4*_*_;FR*SOD*S*SIGE*141*6*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32101800000, + 48.92301000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRBE1E78545005", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public", + "description": "SAINT CYR l'ECOLE - Avenue Geneviève de Galard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06477520000, + 48.80865470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Rouen Barentin", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89633933", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95922700000, + 49.54012600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Chalais | Chez Fagnard | Aire de Covoiturage", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "c96ffe59-486b-5257-b797-a8ad1c788b9a", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03548800000, + 45.27290700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "COMBS LA VILLE - Stade Alain Mimoun", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE77CVFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55774000000, + 48.67107200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9005332;FRALLEGO9005331;FRALLEGO9003282;FRALLEGO9003281;FRALLEGO9002631;FRALLEGO9002632;FRALLEGO9002633;FRALLEGO9003331;FRALLEGO9003332;FRALLEGO9005411;FRALLEGO9005412", + "ref": "FRALLEGO9005332;FRALLEGO9005331;FRALLEGO9003282;FRALLEGO9003281;FRALLEGO9002631;FRALLEGO9002632;FRALLEGO9002633;FRALLEGO9003331;FRALLEGO9003332;FRALLEGO9005411;FRALLEGO9005412", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Purpan", + "capacity": "11", + "start_date": "2022-12-12", + "description": "Allego Carrefour Purpan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39376000000, + 43.60851700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3370EVCP02;LFR3370EVCP01", + "operator:email": "bornes@lidl.fr", + "description": "SEDAN Forges", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3370EVCP02;LFR3370EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92097600000, + 49.69824800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Rue Des Bourrassols", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM31E31555015", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-12-06", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42637700000, + 43.60106500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "WLQXF6NKY2", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Boen-Sur-Lignon, Boën-sur-Lignon", + "ref:EU:EVSE": "FREBNPWLQXF6NKY2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00450210000, + 45.74561110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5143276061528610540", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKGSXBUE1NENC", + "ref": "892512", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50408000000, + 43.46722900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Universite Diderot", + "ref:EU:EVSE": "FRP07E75113005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37870000000, + 48.82936900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "39110", + "capacity": "3", + "ref:EU:EVSE": "FREBNPVPMUW1NPUD", + "opening_hours": "24/7", + "description": "Réseau eborn/FR*EBN*PVPMUW1NPUD", + "socket:type2_combo:output": "43 kW", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12818100000, + 44.40526800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "A10 - Aire de Cézac (direction Paris)", + "start_date": "2024-06-03", + "capacity": "11", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPAACEZ", + "socket:type2_combo:output": "200 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46009300000, + 45.06702900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E63113001", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Clermont-Ferrand - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10173000000, + 45.77724800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6613825", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED LENS", + "ref:EU:EVSE": "FRCPIE6613825", + "charging_station:output": "22 kW", + "network": "CGED LENS", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82534100000, + 50.45074600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/BAQ6RWB5LG", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79165", + "ref:EU:EVSE": "FREBNPBAQ6RWB5LG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40404700000, + 46.14214100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "ref": "972635;1181949", + "ref:EU:EVSE": "FRWA2P6863094956636625398;FRWATP7670862104572075285", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/FRWA5LHCATMQTX;WAAT/s570551", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24314900000, + 48.83916400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9181754548826417791", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/XYOLENOBWF", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "515138", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25024800000, + 43.55967200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:30", + "capacity": "2", + "network": "KIA METZ", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "321775769", + "ref": "FRTCBP00708", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP00708", + "charging_station:output": "50 kW;43 kW", + "description": "CAR AVENUE - KIA METZ", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16706109596, + 49.14217184032 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref": "578936", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4919129085605335809", + "network": "Freshmile France", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/ODWORPPTTT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89377400000, + 46.85322900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2023-03-16", + "opening_hours": "24/7", + "capacity": "10", + "ref:EU:EVSE": "FRSSDPBOISSET217001", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO", + "description": "Imaginarium Nuits-Saint-Georges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96734800000, + 47.12990100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2907300", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Guimaec-Hent Sant Fiek", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70965400000, + 48.66743900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-10", + "ref:EU:EVSE": "FRS11E11024001", + "network": "Reveo", + "description": "BAGES - Rue Des Elysiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98972222222, + 43.12250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "UNICAP - LOUE AUTOMOBILES", + "ref": "841316b9-e54e-4f4e-87d9-696ccf58a03e", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1PEAC49680", + "owner:ref:FR:SIREN": "449304211", + "description": "Garage Loué Automobiles - 22 kW AC", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13781439000, + 47.99211944000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BUZANCY - Pkg. proxi", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - BUZANCY - Pkg. proxi", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS08E57518;FRS08E57517", + "ref": "FRS08E57518;FRS08E57517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95468500000, + 49.42865100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/LLXA6WFX8ZFZW3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80P5859181069807311894", + "network": "FDE 80", + "ref": "1185172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26066500000, + 49.81333000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - PLOERMEL", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*221*1*_*_", + "capacity": "3", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST22113;FRIZFPFAST22112;FRIZFPFAST22111", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38723658305, + 47.92066328406 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Chaumes-En-Retz - Marchas;CHAUMES-EN-RETZ - Allée Du Marchas", + "capacity": "1;2", + "start_date": "2021-04-21;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44005002;FRS44P44005B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93747800000, + 47.11400500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12;2016-02-05", + "description": "BRAY-SUR-SEINE - Quai De L'Île;Bray-sur-Seine", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61JKZ0MNXBV9QY3Q22", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77051001;FRS77P77051A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23793200000, + 48.41693500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IBIS BUDGET CHATILLON ", + "amenity": "charging_station", + "capacity": "1", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "430105007", + "start_date": "2024-05-14", + "ref:EU:EVSE": "FRGSPP11753472", + "network": "BOISSEE - IBIS BUDGET CHATILLON " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28870516671, + 48.80428001131 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - TAUXIGNY - ZA Node Park – Rue Gilles de Gennes", + "description": "MODULO - TAUXIGNY - ZA Node Park – Rue Gilles de Gennes", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219810;FRS37E219809", + "ref:EU:EVSE": "FRS37E219810;FRS37E219809" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84059900000, + 47.25709300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PHFVGTE", + "ref": "257173", + "description": "Mobilité électrique 56/HFVGTE", + "network": "Mobilité électrique 56", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15921000000, + 47.34910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2023-11-07", + "capacity": "2", + "description": "Ville de Lens - 1 Place de la République", + "amenity": "charging_station", + "network": "Ville de Lens - 1 Place de la République", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRG10P62498E", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P62498E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83273342457, + 50.42754386973 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Saint-Agnant | Avenue Charles de Gaulle", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "ff2b6e99-cc67-58cc-9521-1adffbfeeb2c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96104100000, + 45.87070200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*256*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25612;FRSIGPSIGE25611", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 21 RUE DE MARNES - VILLE-DAVRAY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18465900000, + 48.82742700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "description": "Move In Pure/FCJCBB", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCN1PFCJCBB", + "charging_station:output": "44 kW", + "opening_hours": "24/7", + "ref": "26250", + "socket:type2_combo:output": "44 kW", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82282000000, + 45.74460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/KIXKMOIV8M", + "ref": "454290", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P782626439316329422", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72131000000, + 46.05259800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Turenne | Av. du Sénateur labrousse", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8388f357-0625-5023-8288-f4f5702b7188", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58015600000, + 45.05358900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "network": "AlterBase", + "socket:type2_combo:output": "50 kW", + "description": "Réseau AlterBase - Bressuire - Centre commercial Pont d'Ouit - QC", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB09287A", + "start_date": "2019-02-05", + "charging_station:output": "50 kW;43 kW", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49579600000, + 46.85090750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRADPE91479019", + "charging_station:output": "90 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "90 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "description": "ORY - Parking PRO 1-2 (Réservé exclusivement aux Taxis et VTC)", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36183500000, + 48.73072800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEGRE Renier", + "ref:EU:EVSE": "LFR2582EVCP01;LFR2582EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2582EVCP01;LFR2582EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86920400000, + 47.69295300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-31;2021-11-27", + "ref:EU:EVSE": "FRM38E38421002", + "charging_station:output": "25 kW;22 kW", + "description": "SAINT-MARTIN-D'HERES - Rue De La Houille Blanche - Les taillées" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75722100000, + 45.19191000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ1111;FRA16PWIIZ1112", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*11*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-04-04", + "description": "ANTIBES AZUR ARENA", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07620400000, + 43.60554100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4444729774763339011", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLTOHHABT1HZXQ", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1070706" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26161800000, + 48.46545200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Action - Bergerac", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PACTBER", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45145884676, + 44.83477169615 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPHEQVLNPGAI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "HEQVLNPGAI;32785", + "start_date": "2020-06-21", + "description": "Vinay, Avenue de la Gare;Réseau eborn/HEQVLNPGAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41051900000, + 45.20774400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "16", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-06-19", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPAAARZN", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21676300000, + 43.21998400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E95176047", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "10", + "description": "Parking gare Cormeilles-en-Parisis P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19266670000, + 48.96802990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "FRCPIE6669215;FRCPIE6669225", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-22", + "operator:email": "info@chargepoint.com", + "network": "SUPER U CASTRES BORNE 2", + "ref:EU:EVSE": "FRCPIE6669215;FRCPIE6669225", + "description": "SUPER U CASTRES BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26767400000, + 43.62134600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "description": "Easy Charge/IT4BUYWVOG", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP3199057241014990392", + "charging_station:output": "22 kW;60 kW;90 kW", + "opening_hours": "24/7", + "ref": "756864", + "socket:type2_combo:output": "90 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82780100000, + 48.62417000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "capacity": "5", + "ref": "FR*V75*PPX20*17", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Pelleport 105 bis", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX2017", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40034800000, + 48.86959000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile/R13OWRMEIG", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P760885707086427090", + "ref": "529559", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.55500600000, + 48.02690200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX05*06", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0506", + "description": "Paris | Rue Claude Bernard 16", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34765750000, + 48.83977330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PVVUDTV", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/VVUDTV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "294470" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02753000000, + 48.99760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-25", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Ford -Martigues", + "capacity": "3", + "opening_hours": "Mo 08:00-17:45, Tu 08:00-17:45, We 08:00-17:45, Th 08:00-17:45, Fr 08:00-17:45, Sa 08:30-17:45", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINFORD135001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03997300000, + 43.39914200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "description": "Saint Jouan de l Isle-ZA Kergoët", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22305001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18733400000, + 48.27386500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - St DOULCHARD - Gal De Gaulle", + "description": "MODULO - St DOULCHARD - Gal De Gaulle", + "ref": "FRS18E140155", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E140155" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37337500000, + 47.10136600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GARAGE NELLO CHELI - BEAUNE", + "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-18:00", + "ref:EU:EVSE": "FRZTLE24DC61318;FRZTLE24DC61319", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "307016121", + "start_date": "2021-05-24", + "operator:email": "advenir@zeborne.com", + "socket:type2_combo:output": "24 kW", + "ref": "61319;61318", + "description": "Toyota - Beaune - 24kW DC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86082418000, + 47.02365220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P8567711613911809813", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "opening_hours": "24/7", + "description": "SDEA 10/X7LH2QZYGH", + "charging_station:output": "50 kW;43 kW", + "ref": "521468" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10984900000, + 48.29974400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBI - Place De La Resistance", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "start_date": "2023-10-16", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81004003", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14243600000, + 43.93806000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST9222;FRIZFPFAST9221;FRIZFPFAST9213;FRIZFPFAST9212;FRIZFPFAST9211;FRIZFPFAST9223", + "description": "IZIVIA FAST - MCDONALDS - BEZIERS-COURONDELLE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-04-24", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*92*2*_*_;FR*SOD*S*FAST*92*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22502100000, + 43.36489320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44127001;FRS44P44127A", + "start_date": "2024-04-17;2021-04-27", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "LA PLANCHE - Rue De Nantes;OuestCharge - Diva Sp - La Planche - Nantes", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43601800000, + 47.01779000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77291001;FRS77P77291A", + "capacity": "2", + "start_date": "2023-05-02;2015-07-01", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH618FMNXABED9698TMX", + "description": "LE MESNIL-AMELOT - Rue Du Chapeau;Le Mesnil-Amelot", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59124200000, + 49.01769600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FLÉCHIN - Rue Haute", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62336001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29074300000, + 50.56056200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - THENEUIL - Grande Rue", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "description": "MODULO - THENEUIL - Grande Rue", + "start_date": "2019-03-26", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221442", + "ref:EU:EVSE": "FRS37E221442" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43915800000, + 47.09718100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66364;FRS55E66365", + "description": "MODULO - ST MIHIEL - Pl. Jaques Bailleux", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - ST MIHIEL - Pl. Jaques Bailleux", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS55E66364;FRS55E66365", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54049400000, + 48.89252800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-03-09", + "ref:EU:EVSE": "FRGLYPLYON13322;FRGLYPLYON13321;FRGLYPLYON13311;FRGLYPLYON13312", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "VIL03 - LA DOUA", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*133*1*_*_;FR*SOD*S*LYON*133*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87397600000, + 45.77919000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5917502", + "opening_hours": "24/7", + "ref": "FR*MEL*P59175*02", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "VENDEVILLE - Rue de Seclin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08062400000, + 50.57641600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "description": "Jaguar Land Rover - Boulogne-sur-Mer", + "amenity": "charging_station", + "start_date": "2018-06-01", + "charging_station:output": "7.36 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPJLROPALE623601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60950000000, + 50.69570200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref": "FRCPIE6575095;FRCPIE6658765", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-17", + "description": "SAINT-MAURICE BORNE 2", + "ref:EU:EVSE": "FRCPIE6575095;FRCPIE6658765", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "network": "SAINT-MAURICE BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42548000000, + 48.81795500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P5722828017147064488", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref": "477774", + "description": "Leclerc/MUDXQHMAZH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525600000, + 50.49892300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a93ee8ca-1c31-58f8-b829-a1fc15db3186", + "description": "MOBIVE | Blaye | Cours de la Republique", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66226100000, + 45.12926900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "description": "Viry-Châtillon - Avenue du Président Kennedy", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2af3cd13-6872-5e0b-867b-511947fa5398" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36815400000, + 48.66387200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "description": "Allego NISSAN Valence", + "ref:EU:EVSE": "FRALLEGO0001481", + "amenity": "charging_station", + "capacity": "1", + "network": "Allego NISSAN Valence", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO0001481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93268152000, + 44.92182048000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "Hayange - Liberté", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4035EVCP03;LFR4035EVCP02;LFR4035EVCP01", + "ref": "LFR4035EVCP03;LFR4035EVCP02;LFR4035EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06738200000, + 49.32897100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-SAUVEUR-SUR-TINEE - PARKING NUNGESSER", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE9511;FRM06PNICE9512", + "ref": "FR*SOD*S*NICE*95*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10560600000, + 44.08342600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-23", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - TAINTRUX - Rue de l'épine", + "ref:EU:EVSE": "FRS88E162386;FRS88E162388", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E162386;FRS88E162388", + "network": "MODULO - TAINTRUX - Rue de l'épine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89910000000, + 48.24940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ22411;FRA16PWIIZ22412", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-05", + "description": "SAINT-RAPHAEL - PARKING GABRIEL PERI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*224*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77033500000, + 43.42512800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "585515", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/JVDXH7QTI9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2143842386639796391", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39859600000, + 45.44267900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-04;2023-04-26", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRLLB", + "opening_hours": "24/7", + "description": "Mr. Bricolage - Lillebonne", + "operator": "Power Dot France", + "charging_station:output": "50 kW;100 kW;188 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53055454708, + 49.52187275938 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-28", + "description": "Réseau eborn/DHSSXX0WPX;Scionzier, Parking Malvoisin", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DHSSXX0WPX;30545", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPFCUKKE;FREBNPDHSSXX0WPX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54797000000, + 46.06430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARF - Bornes Publiques/170A9812-9FD4-4F8A-85EA-C6C26D275BAA", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "683228", + "ref:EU:EVSE": "FREVZP4206641892514733318" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43832300000, + 43.75183100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "16", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP07E593500069;FRP07E593500068;FRP07E593500066;FRP07E5935000612;FRP07E5935000611;FRP07E5935000610;FRP07E59350006;FRP07E5935000613;FRP07E5935000614;FRP07E5935000615;FRP07E5935000616;FRP07E593500065", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LILLE - Plaza", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-08-28;2022-10-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05826740000, + 50.63525060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "WVFSVWVVI6;346973", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP2057656752527040912;FREBNPWVFSVWVVI6", + "start_date": "2020-11-20", + "description": "Réseau eborn/WVFSVWVVI6;Retournac, Avenue de la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03682000000, + 45.20158000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/UDZL8RTBFG;Balbigny, Place de Verdun", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "ref": "435237;UDZL8RTBFG", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2021-09-23", + "ref:EU:EVSE": "FREBNP2432200329133975624;FREBNPUDZL8RTBFG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18384000000, + 45.81856000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13;2023-03-14", + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "50 kW;300 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP101105", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A36 Dole Audelange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58042500000, + 47.14738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1009218", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/SPVJLC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3415190484988184331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11892000000, + 43.41460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*PPX12*14", + "opening_hours": "24/7", + "description": "Paris | boulevard de Picpus 7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75PPX1214", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40042800000, + 48.84068510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2946779234383093913", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HXZXDAWWIA", + "ref": "454047", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75561000000, + 46.21200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPBAYERNBMW625101", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-12:00, Sa 14:00-18:00", + "description": "BMW Mini - Saint-Omer", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2022-01-10", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27839700000, + 50.73062700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900053", + "start_date": "2016-07-13", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PDOUAINSCOVOITURAGE", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42073800000, + 49.06049900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SICECO/FR*S21*P21590*A", + "ref:EU:EVSE": "FRS21P21590A", + "ref": "180419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81642700000, + 47.06282000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-10", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551014", + "description": "SAINT-GERMAIN-EN-LAYE - VICTOR HUGO 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09384000000, + 48.89023000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE102", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-06-14", + "owner:ref:FR:SIREN": "839265873", + "description": "Handynamic", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05255400000, + 50.53765300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP3550639573544736187", + "operator": "WAAT SAS | FR*WAT", + "charging_station:output": "6.9 kW;22 kW", + "description": "WAAT/FRWATLESQXYB2F", + "ref": "828300", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38149200000, + 43.30145800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2022-10-19", + "description": "IONITY Montpellier Saint Aunès", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE435900", + "ref": "FRIONE435900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98357200000, + 43.65096000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E41643;FRS51E41644", + "network": "MODULO - WITRY LES REIMS - Pl. Gambetta", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E41643;FRS51E41644", + "description": "MODULO - WITRY LES REIMS - Pl. Gambetta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12089100000, + 49.29095100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "description": "Morêt-Loing-et-Orvanne - Croix du Gué", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "ref": "a26e3283-07db-4ac5-9a25-fc0748bff6ce", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "ref:EU:EVSE": "FRS77P77316E", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78621700000, + 48.33462500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681048;531681045;531681046;531681047", + "description": "SAINT ELOI", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "charging_station:output": "300 kW;54 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF080352", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF080352" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58050000000, + 50.82950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34140001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LIGNAN SUR ORB - Avenue de Montaury - Rue Jacqueline Maillan", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17852222222, + 43.37731390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25047", + "description": "Mobilité électrique 56/RRSVSJ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PRRSVSJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.99905000000, + 47.72030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "971936", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLO2P7TBG1VI76", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2921934569043156723", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07285100000, + 44.11435300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP92051N", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-02-10", + "capacity": "2", + "amenity": "charging_station", + "ref": "599082", + "opening_hours": "24/7", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Madrid;Métropolis/FR*MGP*P92051*N", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26004000000, + 48.88361500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "start_date": "2020-07-09", + "description": "Fiat -Corbeil-Essonnes", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPPRIODFIAT911001", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45563000000, + 48.60828800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "521528141", + "amenity": "charging_station", + "ref": "FRC2P004001;FRC2P004002", + "capacity": "1", + "start_date": "2022-06-30", + "ref:EU:EVSE": "FRC2P004001;FRC2P004002", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "operator": "CAR2PLUG", + "description": "CAMPING AUBERGE LA STENIOLE", + "operator:email": "contact@car2plug.fr", + "network": "CAMPING AUBERGE LA STENIOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83333925886, + 48.11947930709 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "network": "LUMI'IN", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "807940069", + "ref": "e274e464-c94c-11ed-afa1-0242ac120002;ddaaa09a-c94c-11ed-afa1-0242ac120002", + "description": "CHATEAU CAPITOUL ", + "ref:EU:EVSE": "FRLUMECAPITOULCHATEAU11;FRLUMECAPITOULHAMEAU11", + "operator:email": "secretariat@lumi-in.fr", + "capacity": "4;6", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05585280000, + 43.12799930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "a9525369-a3ab-571d-9570-e765e206cbbb", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Gujan-Mestras | 7 Allée Mansart", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07182200000, + 44.61725700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE19UABA", + "capacity": "2", + "amenity": "charging_station", + "description": "SUPER U - UZERCHE", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56078800000, + 45.44000700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "description": "BornEco/6450e4ed2f5a364fea47cfee", + "opening_hours": "24/7", + "ref": "842559", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP3079848523944285574", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76455200000, + 43.95519100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "446729", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P8887934217189974710", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/IVCJMMNKKB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26086300000, + 49.87034000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Miramas, Avenue de la République", + "ref:EU:EVSE": "FRM13PSXIYLXOBHD", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00361600000, + 43.58284200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/EAAJHMSG0A", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7519626243756009640", + "ref": "488847", + "capacity": "4", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99164400000, + 47.50886700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*76*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "VALBONNE PARKING HOTEL DE VILLE", + "ref:EU:EVSE": "FRA16PWIIZ7612;FRA16PWIIZ7611", + "opening_hours": "24/7", + "start_date": "2018-06-14", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00723500000, + 43.64032400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "749313", + "charging_station:output": "22 kW;25 kW;100 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/EPSOXWJL5C", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "socket:type2_combo:output": "22 kW;25 kW;100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7191811298954873942", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710000000, + -21.32388800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Hostellerie Saint Vincent - Beauvais", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-01-04", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSTVBEV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11819763380, + 49.43039285983 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Sisteron, Place du Dauphiné;Réseau eborn/MNVNQJ", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "85955;MNVNQJ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPMNVNQJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94514000000, + 44.19870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "ENGIE MAMP - Bornes publiques/D1C0C06D-F816-4521-A36C-C1A1736473E6", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1068216", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "FREVZP6173569332599540355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41083700000, + 43.26388300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-11-27", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR69631;FROTHPOTHR69611;FROTHPOTHR69621;FROTHPOTHR69641", + "ref": "FR*SOD*S*OTHR*696*4*_*_;FR*SOD*S*OTHR*696*2*_*_;FR*SOD*S*OTHR*696*1*_*_;FR*SOD*S*OTHR*696*3*_*_", + "network": "GROUPE VIKINGS", + "description": "IBIS STYLE - BOURBON LANCY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75358042685, + 46.62265982830 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30320;IGOBQMLJPP", + "description": "Réseau eborn/IGOBQMLJPP;Rosières, Place du Village", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPIGOBQMLJPP", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25520700000, + 44.48219900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/HSL9TJXH2X;Toulon, Allée Rouvière Sainte Musse", + "ref:EU:EVSE": "FREBNPHSL9TJXH2X;FREBNP138136398321247038", + "ref": "HSL9TJXH2X;787005", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-04-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97575100000, + 43.12525000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "network": "ES B2B", + "ref": "FR*SOD*S*OTHR*376*3*_*_;FR*SOD*S*OTHR*376*1*_*_;FR*SOD*S*OTHR*376*2*_*_", + "description": "ES/ RESTAURANT AU PONT DE LILL", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR37632;FROTHPOTHR37621;FROTHPOTHR37611;FROTHPOTHR37631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83139900000, + 48.65507100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOZKTIXF2AZ2B", + "ref": "1017018", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4421783403522076862" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98262800000, + 50.32549200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP33831", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Boulogne-sur-Mer, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67209500000, + 50.73339800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/SPI5X5UEAY", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7944732543651191391", + "charging_station:output": "7.4 kW", + "ref": "441030" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61892600000, + 44.94468600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW - Dijon", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSAVYBMW213001", + "charging_station:output": "50 kW;22.08 kW", + "capacity": "10", + "operator:email": "support@driveco.com", + "start_date": "2022-09-28", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02385100000, + 47.29085100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "786960", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P8055865426417325541", + "description": "Freshmile France/EFLUIY0JSH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51832500000, + 44.89264200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PLENEE JUGON - Rue de la République (parking salle des fêtes)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22185001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39480800000, + 48.36752700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "description": "MAZDA EPINAL GAUCHE ;MAZDA EPINAL DROITE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZMAE22AC49587;FRZMAE22AC49607", + "capacity": "1", + "ref": "49587;49607", + "start_date": "2020-12-03", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "833702582", + "network": "MAZDA EPINAL", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46214600000, + 48.20438800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sodif_Mini_Fouine_Pornic", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-06-23", + "ref:EU:EVSE": "FRROSE321", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12532900000, + 47.12861100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78327001", + "charging_station:output": "22 kW", + "description": "JUZIERS - Impasse Des Tennis", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84393800000, + 48.99148900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRIOYE438952;FRIOYE438905;FRIOYE438903;FRIOYE438901;FRIOYE438902;FRIOYE438904;FRIOYE438906;FRIOYE438907;FRIOYE438908;FRIOYE438951;FRIOYE438953", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE438953;FRIOYE438951;FRIOYE438908;FRIOYE438907;FRIOYE438906;FRIOYE438901;FRIOYE438902;FRIOYE438903;FRIOYE438904;FRIOYE438905;FRIOYE438952", + "network": "Narbonne-Vinassan Nord", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "capacity": "11", + "description": "Narbonne-Vinassan Nord", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08938462000, + 43.21617662000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ERNEE - Avenue General De Gaulle", + "ref:EU:EVSE": "FRS53E53096002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92914402485, + 48.29732894897 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66017002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BARCARES - Av De Paquebot Des Sables" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03858800000, + 42.82843800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE009101;FRIENE009102", + "start_date": "2023-06-12", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Saint-Thelo", + "ref": "FRIENE009101;FRIENE009102", + "network": "Saint-Thelo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82394000000, + 48.25510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "BRETEIL - 2 rue de la hattais ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35040001B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89592000000, + 48.14434400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61305A", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-NEUILLT-001", + "description": "LONGNY LES VILLAGES - Place des Lauriers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90361700000, + 48.54201100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TQ4EGZPKGL", + "ref:EU:EVSE": "FRFR1P8304741033293495279", + "operator:email": "roaming@freshmile.com", + "ref": "487227", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14444200000, + 45.52735700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "start_date": "2018-02-21", + "opening_hours": "24/7", + "description": "Castanet-Tolosan", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRS31PGHPTEX", + "ref": "GHPTEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49984000000, + 43.51460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92026013", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "COURBEVOIE - Rue Watteau", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2024-03-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27336138255, + 48.90544800511 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Bisanne - 73270 - 2", + "amenity": "charging_station", + "start_date": "2024-07-02", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000320;FRCG0E000316;FRCG0E000318;FRCG0E000321;FRCG0E000322", + "network": "Bisanne - 73270 - 2", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "ref": "FRCG0E000320;FRCG0E000316;FRCG0E000318;FRCG0E000321;FRCG0E000322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50298100000, + 45.73755300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*160*1*_*_", + "description": "NICE - FODERE RP", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE16011;FRM06PNICE16012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28907300000, + 43.69891000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Cocumont | Place de L'Église", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "f7e67ac5-7abc-5c9e-b8b2-71e0e1e4f95f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02598500000, + 44.44739900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 43 AVENUE HENRI BARBUSSE - BAGNEUX", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSIGPSIGE30212;FRSIGPSIGE30211", + "start_date": "2022-09-19", + "ref": "FR*SOD*S*SIGE*302*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31563600000, + 48.80169000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "191336;191335;191334", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Bump - B&B HOTEL Bordeaux - Langon", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS191334;FRBMPS191335;FRBMPS191336", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26588550000, + 44.54448430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3057EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3057EVCP01", + "description": "VENDIN LE VIEIL Saint-Auguste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84172900000, + 50.45031800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "ec9cc764-31a4-5ace-82bb-b450dd4f447b", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Brive | 3 Lycées" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52166700000, + 45.15968000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "de5133dd-4d4b-5f34-b5d4-0725751429cd", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Viry-Châtillon - Avenue de l’Aqueduc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36989200000, + 48.66760300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP06000NCEVAL0MBR0SE", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P06000*NCE*VAL0MBR0SE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-01-13;2024-03-01", + "description": "INTENCITY - PARKING VALOMBROSE - NICE", + "operator:email": "contact@e55c.com", + "charging_station:output": "2.3 kW;11.04 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27879200000, + 43.72536400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3414EVCP01;LFR3414EVCP02", + "charging_station:output": "120 kW;22 kW", + "description": "BLAYE Haussmann", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3414EVCP01;LFR3414EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64789100000, + 45.12990700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "Proviridis/606d5b4012c27d000816185b", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;43 kW", + "network": "Proviridis", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPVDP3814958085566767403", + "operator:email": "data.gouv@proviridis.fr", + "ref": "917307", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97683700000, + 50.45262600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "492153;PYIAZJVBWS", + "ref:EU:EVSE": "FREBNP6163358077491685135;FREBNPPYIAZJVBWS", + "description": "Réseau eborn/PYIAZJVBWS;Moustiers-Sainte-Marie, Chemin Marcel Provence", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22246800000, + 43.84603900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP45234A", + "start_date": "2024-05-23", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - IBIS Hotel Orléans", + "ref": "FRETIP45234A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91208200165, + 47.87828377726 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E302110012;FRP01E30211001", + "start_date": "2023-07-04", + "capacity": "16", + "description": "Parking gare de Nîmes Pont-du-Gard P2 - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50383000000, + 43.81704000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-11-16", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT191301", + "operator": "DRIVECO", + "description": "Carrefour Market - Objat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41174300000, + 45.25350100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFGWMD2UBVQ;FREBNP943186897505548568", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Mably, rue de Paris;Réseau eborn/FGWMD2UBVQ", + "ref": "FGWMD2UBVQ;346700", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-11-04", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04832100000, + 46.07042100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR49312;FROTHPOTHR49311;FROTHPOTHR49321;FROTHPOTHR49322", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "ref": "FR*SOD*S*OTHR*493*2*_*_;FR*SOD*S*OTHR*493*1*_*_", + "operator:email": "sav@izivia.com", + "description": "INTERMARCHE - LISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22399200000, + 49.13886700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/DJ0CFESMH8", + "amenity": "charging_station", + "capacity": "1", + "ref": "782409", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2467814951324611160", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99793000000, + 49.57550300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "start_date": "2023-08-09", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10036695;FRUBIE10052018", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "12 rue du Calvaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23688900000, + 49.63280600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1153434", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "24 kW;7.4 kW", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLMT5J9O91SOKQ", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5716007787708765574" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96799000000, + 48.20142600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-21", + "ref:EU:EVSE": "FRTLSE31555032", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TOULOUSE - 6 Rue du Colonel Paul Paillole", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44563000000, + 43.63802000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "694436", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/OWJJ5SAPNR", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRFR1P149797460756652350", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12652700000, + 43.52064800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/CSMXC6RE5P", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P6527653657750534494", + "ref": "461682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31676400000, + 49.12781500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12052001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CAPDENAC GARE - Av. Pasteur", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08292000000, + 44.57456800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "HOUILLES - Service Jeunesee (Ginkgo)", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-11", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78311005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18857493837, + 48.91958921457 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Longue-Jumelles - Republique;LONGUE-JUMELLES - Parking de la République", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-21;2024-04-04;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49P49180A;FRS49E49180001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10777400000, + 47.38067200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS70PFROTEYLESVESL", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIED70/FroteyLesVesl", + "ref": "39040" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18114000000, + 47.62090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HONDSCHOOTE - Rue De Cassel", + "start_date": "2020-10-06", + "ref:EU:EVSE": "FRH14E59309001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57995600000, + 50.97839200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BEAUMONT EN VERON - Rue Paul Langevin", + "ref:EU:EVSE": "FRS37E15074;FRS37E15075", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E15074;FRS37E15075", + "charging_station:output": "0 kW", + "start_date": "2022-03-24", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BEAUMONT EN VERON - Rue Paul Langevin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17002200000, + 47.21173600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS63P63195A", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Lezoux - Lopick", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "start_date": "2022-10-20", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37857390000, + 45.82825800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BERLAIMONT - Rue de Bruxelles", + "ref:EU:EVSE": "FRH02E59068001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81323900000, + 50.20383100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "471261", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "description": "SDEG32/JT0PXWXNVC", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS32P1215030909400048112", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54465200000, + 43.34520900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94017007", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHAMPIGNY-SUR-MARNE - Rue Pierre Marie Derrien", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48934611000, + 48.81801794000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE27612;FRM06PNICE27611", + "start_date": "2024-04-19", + "ref": "FR*SOD*S*NICE*276*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BAIROLS - PARKING VILLAGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12597461501, + 43.98285126835 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "6945aff5-66b6-5b90-87ca-f29642fca4e1", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Saint Antoine de Breuilh | le Bourg (Place de la Halle)", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15402200000, + 44.84524500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*407*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE40712;FRSIGPSIGE40711", + "network": "SIGEIF", + "description": "SIGEIF - GYMNASE GUILLAUMIE - LE PLESSIS-BOUCHARD", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24440000000, + 48.99760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROUEN - Parking Hotel de Ville", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540010", + "start_date": "2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09876300000, + 49.44331100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3409EVCP01;LFR3409EVCP02", + "description": "L'HAY LES ROSES Leclerc", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3409EVCP01;LFR3409EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34677100000, + 48.77174700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | La Souterraine | Rue des Fosses des Canards", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "61140bc8-a1b8-5f05-b099-121fadf18bb1", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48648800000, + 46.23622500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SERIGNAN-DU-COMTAT - Chemin du Grès", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "28e6c217-f44b-5932-9224-4e161a848035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83946400000, + 44.18652400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FR594E59122006", + "network": "pass pass électrique", + "description": "CAMBRAI - Place Eugène Thomas", + "start_date": "2021-09-02;2021-09-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22706300000, + 50.17273400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DEOLS - Gaulle", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR3907EVCP02;LFR3907EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3907EVCP02;LFR3907EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70622800000, + 46.83964300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-08-29", + "ref:EU:EVSE": "FRPD1PITMRBM", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Intermarché - Ribemont", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46584963418, + 49.80122316858 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "H6VUVLTMNF", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPH6VUVLTMNF", + "description": "Vezeronce-Curtin, Parking Place Clodomir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47059440000, + 45.65131390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP83061B", + "amenity": "charging_station", + "ref": "FRETIP83061B", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "description": "e-Totem - LAPEYRE Fréjus", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70703864000, + 43.44080434000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "charging_station:output": "100 kW;188 kW;50 kW;22 kW", + "socket:type2_combo:output": "100 kW;50 kW;188 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCORMLL", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "11", + "description": "Cora - Moncel-lès-Lunéville", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52085605880, + 48.57899585149 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Evron", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-04-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT536001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40388500000, + 48.15238300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42005AC", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Andrézieux Pasteur", + "owner:ref:FR:SIREN": "848778429", + "ref:EU:EVSE": "FRESEPS42005AC", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2021-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25707400000, + 45.52592400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH20112;FROTHPAUCH20111", + "start_date": "2023-12-29", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*AUCH*201*1*_*_", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "description": "AUCHAN - SAINT-OMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27063120000, + 50.73575720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "FRCPIE6821865;FRCPIE6821755;FRCPIE6821705;FRCPIE6821645;FRCPIE6821745", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6821865;FRCPIE6821755;FRCPIE6821705;FRCPIE6821645;FRCPIE6821745", + "capacity": "10", + "description": "MANOIR STATION 8", + "network": "MANOIR STATION 8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72260300000, + 48.55362300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MDOEGXYE2E", + "ref:EU:EVSE": "FRFR1P8178430047766483751", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "368878", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57009300000, + 44.80015600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-07", + "network": "Belib'", + "description": "Paris | Rue Desnouettes 55", + "amenity": "charging_station", + "ref": "FR*V75*P9015*06", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901506", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28691200000, + 48.83570900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5316622317451769981", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "561797", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/YKDY8UTUDA", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25380800000, + 48.83204300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Tesla Supercharger Aire de Saint-Priest", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP1750", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97551300000, + 45.69804200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "opening_hours": "We,Th,Tu,Mo,Fr 09:00-12:00,Tu,Mo,We,Fr,Th 14:00-16:00", + "description": "Freshmile France/LLI4N9U0V2FH74", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892083", + "ref:EU:EVSE": "FRFR1P4872573246077158924", + "socket:type2_combo:output": "120 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25078700000, + 48.77235900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FR3R3P90223027", + "opening_hours": "24/7", + "charging_station:output": "100 kW;7 kW", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW", + "start_date": "2024-09-19", + "description": "R3 - Wittenheim - Agricenter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30717300000, + 47.81871900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/OUXSBPXK6V", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P4560542774436218018", + "opening_hours": "24/7", + "ref": "461868", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03071800000, + 49.02076000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "description": "Rognonas, Place Du Marché", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS13PTGKFDYOF2O", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80589628220, + 43.89907521461 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "884877", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "6.9 kW;7.4 kW", + "ref:EU:EVSE": "FRWA8P6584746256533798111", + "operator": "WAAT SAS | FR*WA8", + "opening_hours": "24/7", + "description": "WAAT/FRWA8LF5RZBZY6", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09240500000, + 48.78467300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Villemoisan - Dunkerque;VILLEMOISAN - Place Flandres - Dunkerque", + "ref:EU:EVSE": "FRS49E49376001;FRS49P49376A", + "start_date": "2024-03-26;2021-04-14", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89171700000, + 47.46287400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "LAGRAVE - Place Toulouse Lautrec", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2018-05-04", + "ref:EU:EVSE": "FRS81E8113100122;FRS81E8113100112;FRS81E8113100111;FRS81E8113100121", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99017548524, + 43.89861667508 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF058915", + "start_date": "2021-06-29", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FRHPCPNF058915", + "network": "TotalEnergies Charge Rapide", + "description": "VEMARS OUEST", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680688" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55165000000, + 49.07267400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS46E46301001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-05", + "description": "SAUZET - Parking Gymnase Sauzet", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25391800000, + 44.41741800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCVA0LBMFFS", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Le palais - 2 Avenue Carnot", + "start_date": "2019-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15478000000, + 47.34644440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LALLAING - Place Jean Jaurès", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59327001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16891800000, + 50.39038100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Riec sur Belon-Rue de la Paix", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2923600", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69115600000, + 47.84313600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PMJUDGW", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/MJUDGW", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "102632" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35627000000, + 47.74650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-03-06", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "DANGE SAINT-ROMAIN-1-1;DANGE SAINT-ROMAIN-1-2", + "opening_hours": "24/7", + "ref": "B132", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346051662;FRLMSE12346051661;FRLMSE12346051651;FRLMSE12346051652", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60611000000, + 46.93734000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRMGPP93005C", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "484766", + "description": "Métropolis/FR*MGP*P93005*C", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49895700000, + 48.94121700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*SIGE*84*3*_*_;FR*SOD*S*SIGE*84*2*_*_;FR*SOD*S*SIGE*84*1*_*_;FR*SOD*S*SIGE*84*4*_*_;FR*SOD*S*SIGE*84*5*_*_;FR*SOD*S*SIGE*84*6*_*_", + "network": "SIGEIF", + "description": "SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS", + "ref:EU:EVSE": "FRSIGPSIGE8461;FRSIGPSIGE8451;FRSIGPSIGE8441;FRSIGPSIGE8421;FRSIGPSIGE8411;FRSIGPSIGE8431", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-01-06", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30658300000, + 48.97289200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP2052650289224017019", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Atlante/FRATL*CHAN1501", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref": "907824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81065100000, + 45.31562100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000081816", + "amenity": "charging_station", + "description": "Howdens Aubervilliers", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "start_date": "2023-05-19", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37426000000, + 48.91402800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "eb0d5a3b-b4b9-52d9-aa42-5fae1958da32", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Montaut | Rue des Annettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19923900000, + 43.12558000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85172001", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LE PERRIER - Rue Du Général De Gaulle", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98991000000, + 46.81993100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "start_date": "2023-07-07", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "description": "COQUELLES", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW", + "ref:EU:EVSE": "FRALLPEVCARSCOQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80772000000, + 50.93445000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*19*1*_*_", + "ref:EU:EVSE": "FRIZMPMAMP1911;FRIZMPMAMP1912", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "description": "IZIVIA | MARSEILLE 08 - AVENUE DE MAZARGUES", + "operator:email": "sav@izivia.com", + "start_date": "2022-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39265200000, + 43.26391400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "description": "Match - Armentières", + "amenity": "charging_station", + "start_date": "2023-11-30;2023-11-27", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22.17025 kW;160 kW", + "ref:EU:EVSE": "FRPD1PMATARM", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87327801677, + 50.68251719919 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/FR*EBN*PEHWYSYEPGP", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPEHWYSYEPGP", + "network": "Réseau eborn", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "85937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18528500000, + 44.07591700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP3487857384483815998", + "charging_station:output": "12 kW;240 kW", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "Norauto - Bornes publiques/02CA02A9-C124-4BF7-A7A0-1EDBA8F5C714", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "240 kW", + "ref": "1029738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88413600000, + 43.98418400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "start_date": "2024-01-21", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Hippo Wash - Cherbourg-en-Cotentin", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PHIPCHR", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59709333333, + 49.60550666670 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "30455;GS486H2R3J", + "ref:EU:EVSE": "FREBNPGS486H2R3J", + "description": "Réseau eborn/GS486H2R3J;Tallard, Place du General de Gaulle", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05640000000, + 44.46290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Intermarché Caulnes", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP22032A", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP22032A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15204760000, + 48.29061810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "PRODUCTEURS PLAIMONT - ST MONT", + "network": "PRODUCTEURS PLAIMONT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR18231;FROTHPOTHR18221;FROTHPOTHR18211;FROTHPOTHR18241", + "start_date": "2021-06-01", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*182*4*_*_;FR*SOD*S*OTHR*182*2*_*_;FR*SOD*S*OTHR*182*1*_*_;FR*SOD*S*OTHR*182*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15635200000, + 43.65059000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-11-27", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS1111;FRCPSPCAPS1112", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LINAS - CHATEAU DEAU", + "ref": "FR*SOD*S*CAPS*11*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26275300000, + 48.62668600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3221641445304212148", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "1195060", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LM1HW00BT23QBC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55167700000, + 44.80623600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "11 kW;7.4 kW", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "description": "CENTER PARCS LES TROIS FORETS - Parking Staff", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP123013", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98235900000, + 48.62191800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "398960", + "network": "Freshmile France", + "description": "Freshmile France/RLS4BR4ZPF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6582199321394859253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12880000000, + 47.37080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SAS ISADIS", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRSUAP49244A", + "amenity": "charging_station", + "capacity": "4", + "ref": "FRSUAP49244A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "SUPER U La Pommeraye - Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85747100000, + 47.34978400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5658002166134119553", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Th,We,Mo,Fr,Tu 09:00-12:00,Mo,We,Tu,Fr,Th 14:00-17:00", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/OAJVPG4P9J", + "ref": "466134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27165400000, + 48.93546700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Le Saint Jean - Ersa", + "ref:EU:EVSE": "FRSSDPSTJEAN202751", + "charging_station:output": "22.08 kW", + "start_date": "2022-07-26", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38050900000, + 42.97628300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHARTRES - Rue du grand faubourg", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRS28E134789", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E134789", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHARTRES - Rue du grand faubourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48139100000, + 48.44354700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "GRSE GARAGE MARINIERE", + "owner:ref:FR:SIREN": "320758378", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "operator:email": "garage.mariniere@scache.fr", + "amenity": "charging_station", + "description": "Parking Garage de la Mariniere", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "50 kW", + "network": "GARAGE DE LA MARINIERE", + "start_date": "2022-12-22", + "opening_hours": "Mo-fr 7:00-19:00,Sa 8:00-12:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36825308788, + 48.63330486819 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "88196", + "description": "SDEA 10/PWW4OVOZ6V", + "ref:EU:EVSE": "FRS10P4864229693033476502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65817100000, + 48.41812700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P1479339386927578911", + "network": "WAAT", + "capacity": "2", + "description": "WAAT/FRWATLMCEBBWOT", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "708698", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77883000000, + 45.80878000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-16;2017-09-11", + "description": "SARTILLY BAIE BOCAGE - Mairie", + "ref:EU:EVSE": "FRS50P50530001", + "operator:email": "e-charge50@sdem50.fr", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45495780000, + 48.75217700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2023-02-23", + "capacity": "1", + "description": "SEMALENS - Place de la Mairie", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8128100112;FRS81E8128100111;FRS81E8128100121;FRS81E8128100122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11151500000, + 43.59208300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;350 kW;43 kW;200 kW", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE475853;FRIOYE475803;FRIOYE475802;FRIOYE475801;FRIOYE475804;FRIOYE475851;FRIOYE475852;FRIOYE475871;FRIOYE475872", + "opening_hours": "24/7", + "network": "Bergerac", + "ref": "FRIOYE475853;FRIOYE475803;FRIOYE475802;FRIOYE475801;FRIOYE475804;FRIOYE475851;FRIOYE475852;FRIOYE475871;FRIOYE475872", + "start_date": "2024-05-15", + "capacity": "9", + "description": "Bergerac", + "socket:type2_combo:output": "200 kW;50 kW;350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44797400000, + 44.83470600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49048001", + "charging_station:output": "22 kW", + "description": "BRIOLLAY - Rue Paul Cézanne", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50321595171, + 47.56512468027 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/RMFJTS", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PRMFJTS", + "ref": "64835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82204000000, + 49.41740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARDRES - Avenue Fernand Buscot", + "ref:EU:EVSE": "FRH11E62038002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-10-06", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98198200000, + 50.85984400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANUEJOLS - Rue Du Countal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30139001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38452400000, + 44.13007300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56P4724161681084489580;FRS56PHUSQJB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "124 kW", + "ref": "1161939;28490", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/HUSQJB;Mobilité électrique 56/LLZBCGDTI1L85L", + "network": "Mobilité électrique 56", + "charging_station:output": "18 kW;124 kW", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13192000000, + 47.52060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NAINTRE BIBLIOTHEQUE-1-2;NAINTRE BIBLIOTHEQUE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346396331;FRLMSE12346396341", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-01-28", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B075" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48267000000, + 46.76305000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRMGPP94059B", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P94059*B", + "ref": "1121535", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57119100000, + 48.81384600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "SIGEIF - 8 RUE GASTON LATOUCHE - SAINT-CLOUD", + "start_date": "2021-04-15", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*111*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE11112;FRSIGPSIGE11111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21872900000, + 48.84541100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ELANCOURT - Place du Général De Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E78208001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94851780000, + 48.76824100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89396963", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Uxegney - Stade Pierre Pretot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36829300000, + 48.18998100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref:EU:EVSE": "Non concerné;FRS16PMB164211;FRS16PMB164212", + "start_date": "2020-05-11", + "owner:ref:FR:SIREN": "251600060", + "ref": "25de1674-0c4e-580c-9758-99d168f93822;FR*SOD*S*MB16*42*1*_*_", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "opening_hours": "24/7", + "description": "MOBIVE | Vars | Parking des Coles;VARS - PARKING DES COLES", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12787800000, + 45.76006700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTGEORGES SUR ALLIER Haut mairie", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE63SABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-05-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24667200000, + 45.71084400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "SAINT BRICE", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-02-07", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW", + "ref:EU:EVSE": "FRALLPEVCARSSTBRC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34916400000, + 49.01001200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3833EVCP03;LFR3833EVCP02;LFR3833EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3833EVCP03;LFR3833EVCP02;LFR3833EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BAVAY - Maubeuge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81055300000, + 50.29732600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "description": "FENOUILLET - Jean Jaures, Place De La Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31182001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39209600000, + 43.67878300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPREJFYYSDM4", + "ref": "78615;REJFYYSDM4", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Forcalquier, Place Notre Dame Du Bourguet;Réseau eborn/REJFYYSDM4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78164900000, + 43.95946500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLKCK1HUA2A3KS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892503", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8518478629119457290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03991200000, + 42.59896200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-05-27;2020-06-19;2020-05-29", + "description": "PARIS - Place Saint Michel", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E75105001;FRP07E751050011", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34334900000, + 48.85289000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Annonay, Rue de la Valette - Parking la Valette;Réseau eborn/AQKP45UGO1", + "ref": "346628;AQKP45UGO1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNP6611340135846086427;FREBNPAQKP45UGO1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67073500000, + 45.24171300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "description": "Road/66a90083105edf001c4de36c", + "amenity": "charging_station", + "charging_station:output": "176 kW;80 kW;44 kW;22 kW", + "capacity": "4", + "ref": "1157301", + "opening_hours": "Th,Mo,We,Fr,Tu,Sa,Su 08:00-18:00", + "ref:EU:EVSE": "FREFLP3311355948854254818", + "operator:email": "roaming-dev@road.io", + "socket:type2_combo:output": "176 kW;80 kW", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86837500000, + 48.94625800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2022-01-19", + "amenity": "charging_station", + "capacity": "1", + "description": "SUPER U - BISCARROSSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR30241;FROTHPOTHR30231;FROTHPOTHR30221;FROTHPOTHR30211", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*302*4*_*_;FR*SOD*S*OTHR*302*3*_*_;FR*SOD*S*OTHR*302*1*_*_;FR*SOD*S*OTHR*302*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16223800000, + 44.38979700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT AURILLAC", + "description": "SONEPAR CONNECT AURILLAC", + "ref:EU:EVSE": "FRCPIE6609045", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref": "FRCPIE6609045", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42977900000, + 44.90100700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "96056", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPBKUKVCUG0Q", + "description": "Réseau eborn/BKUKVCUG0Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25641600000, + 45.44673100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA2P4860430807665416941", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "1181931", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "description": "WAAT/s570509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54419300000, + 44.84956800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SVN7SXCAR1", + "ref": "598008", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6704409810064579553", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80687800000, + 43.89801900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00475", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "owner:ref:FR:SIREN": "441568748", + "ref": "FRTCBP00475", + "opening_hours": "24/7", + "start_date": "2021-09-15", + "description": "Ibis la ciotat", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60197897673, + 43.20610905712 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/UZPSHR", + "ref": "1009293", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRFR1P7184925931859300571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28853000000, + 48.33690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN349701", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "description": "Nissan -Montpellier", + "start_date": "2023-08-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87693100000, + 43.57820700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "description": "Crozon-Route de Châteaulin", + "ref:EU:EVSE": "FRS29E29042002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.41898900000, + 48.24798600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P4725957670335510844", + "description": "SDEA 10/NHQEEP3OJC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "1155585", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51896400000, + 48.12951300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/CIR_12034030320001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P1477025486872064178", + "ref": "575915", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31341900000, + 45.88867500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Régie Services Energie/FR*RSE*P01261*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRRSEP01261A", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94088900000, + 45.95755600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PFTMAHONTOURIS", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/ftmahontouris", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79453", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56315000000, + 50.33940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*182*2*_*_;FR*SOD*S*FAST*182*1*_*_", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST18223;FRIZFPFAST18221;FRIZFPFAST18211;FRIZFPFAST18212;FRIZFPFAST18213;FRIZFPFAST18222", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - REIMS HIPPODROME", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00855620000, + 49.23993530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ROMORANTIN LANTHENAY - Allée des Grandes Bruyères", + "ref:EU:EVSE": "FRS41E5150;FRS41E5151", + "description": "MODULO - ROMORANTIN LANTHENAY - Allée des Grandes Bruyères", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E5150;FRS41E5151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76251300000, + 47.32770100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS72E72300001", + "description": "SAINT MARS LA BRIERE - Allée De La Foret", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "11 kW", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38000020000, + 48.02726000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-06-25", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*90*3*_*_;FR*SOD*S*LYON*90*1*_*_;FR*SOD*S*LYON*90*2*_*_;FR*SOD*S*LYON*90*4*_*_", + "description": "LY703 - HALLE TONY GARNIER", + "ref:EU:EVSE": "FRGLYPLYON9041;FRGLYPLYON9021;FRGLYPLYON9011;FRGLYPLYON9031", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82663600000, + 45.73166800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - LA CELLE GUENAND - Pl. de l'église", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LA CELLE GUENAND - Pl. de l'église", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E215777;FRS37E215778", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E215777;FRS37E215778" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89489900000, + 46.94457600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PQKXRZR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "25072", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/QKXRZR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23566000000, + 47.73600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2023-04-27", + "capacity": "2", + "amenity": "charging_station", + "network": "Mairie de Beaugency - PARKING GRAND MAIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P45028D", + "description": "Mairie de Beaugency - PARKING GRAND MAIL", + "ref:EU:EVSE": "FRG10P45028D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62960000000, + 47.77519760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*142*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-01-19", + "network": "AUCHAN", + "description": "AUCHAN - ST HERBLAIN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPAUCH14211;FROTHPAUCH14212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60708000000, + 47.24662300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 8 AVENUE MENELOTTE - COLOMBES", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRSIGPSIGE22961;FRSIGPSIGE22951;FRSIGPSIGE22931;FRSIGPSIGE22921;FRSIGPSIGE22911;FRSIGPSIGE22941", + "ref": "FR*SOD*S*SIGE*229*6*_*_;FR*SOD*S*SIGE*229*2*_*_;FR*SOD*S*SIGE*229*1*_*_;FR*SOD*S*SIGE*229*3*_*_;FR*SOD*S*SIGE*229*4*_*_;FR*SOD*S*SIGE*229*5*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "start_date": "2021-08-23;2021-08-24;2021-08-25", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25915600000, + 48.92468800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Technopole Arbois", + "network": "CHARGEPOLY", + "capacity": "13", + "charging_station:output": "75 kW;22 kW", + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "opening_hours": "Mo-Fr 08:00-20:00", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo:output": "75 kW", + "operator:email": "operator@chargepoly.com", + "owner:ref:FR:SIREN": "850854993", + "start_date": "2021-10-31;2022-06-24", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32933100000, + 43.49131000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo,Tu,Sa,We,Th 08:00-20:00,Fr 08:00-20:30", + "ref:EU:EVSE": "FRLE2P5382511790993686020", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/QUSUN2DQKD", + "capacity": "4", + "ref": "454326", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17732200000, + 48.65391300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Saint Césaire | les Bujoliers (Lac)", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "662fdf5a-5527-5d57-a93f-6559261a457c", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49606700000, + 45.76436100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Boussy saint antoine - Mairie 2", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE91BSAA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53400500000, + 48.68739800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA88E15196001", + "charging_station:output": "50 kW;43 kW", + "network": "CPO Alizé Liberté Public", + "description": "ST MAMET LA SALVETAT - Allée des Coudercs - Parking aire de jeu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30961200000, + 44.85806800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3706EVCP02;LFR3706EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "DRAGUIGNAN Gambetta", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3706EVCP02;LFR3706EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44464100000, + 43.54610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38185012;FRM38E38185029", + "start_date": "2024-03-25;2021-11-03", + "charging_station:output": "25 kW;22 kW", + "description": "GRENOBLE - Cours De La Libération Et Du Général De Gaulle - Louise Michel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71259100000, + 45.16981000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNP3905184271307271048;FREBNPPSEA6GJAN3", + "description": "Réseau eborn/PSEA6GJAN3;Roanne, Parking de La Berge", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "PSEA6GJAN3;741108", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07140600000, + 46.03334500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3156EVCP01;FRFR1P4793755742288488690;LFR3156EVCP02;LFR3156EVCP03;LFR3156EVCP04", + "amenity": "charging_station", + "ref": "LFR3156EVCP03;529127;LFR3156EVCP01;LFR3156EVCP02;LFR3156EVCP04", + "capacity": "2;8", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "description": "Freshmile/BNEXS6CBJB;BURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33367300000, + 49.31381300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "PONTOISE - Parking Jean-Luc Maire", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "ref:EU:EVSE": "FRP07E955000012;FRP07E95500001;FRP07E955000011", + "start_date": "2022-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09678470000, + 49.05182380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/moulinsroche;Moulins, Achille Roche", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "ref": "120731;moulinsroche", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPMOULINSROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32884000000, + 46.56180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPGAIKD", + "start_date": "2023-08-03", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Gaillard - Kyriad Direct Annemasse", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21994400000, + 46.18388100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E92004005", + "network": "EFFIA France", + "description": "Parking Asnières-sur-Seine Truffaut - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28176000000, + 48.91043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "HMV SAINT DIE 4", + "charging_station:output": "22 kW", + "description": "HMV SAINT DIE 4", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6654415", + "ref": "FRCPIE6654415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96549700000, + 48.29004600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "La Baule , Parking Résidence de la Forêt;Easy Charge/OH8U5KZYGR", + "ref:EU:EVSE": "FRECHPOH8U5KZYGR;FRECHP8838534532228381629", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge", + "ref": "756903;OH8U5KZYGR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35569100000, + 47.28008400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX19*08", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1908", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue David d'Angers 54", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39380000000, + 48.88180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P2528556514291257086", + "operator:email": "roaming@freshmile.com", + "ref": "419082", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ARF6FRWSZ6", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206100000, + 48.09960500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Paris | Rue d'Alexandrie 7", + "ref": "FR*V75*PPX02*02", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX0202", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35088350000, + 48.86800820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1173960", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6709168989341276786", + "description": "Freshmile France/LLZCTDGWHSRVF9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98414300000, + 43.16805200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2023-04-05;2020-12-22", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPVULCAINVOLVO381701", + "description": "Volvo - GROUPE VULCAIN - Grenoble", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69277000000, + 45.17912500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plurien-Rue de montangue (devant salle des fêtes)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS22E22242001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40802100000, + 48.62486600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11262009", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "NARBONNE - Rue Léon Auge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99987268400, + 43.18597412000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZTLE176559;FRZTLE176558", + "amenity": "charging_station", + "capacity": "1", + "network": " SIVAM BY AUTOSPHERE - GIVORS;SIVAM BY AUTOSPHERE - GIVORS", + "opening_hours": "LUN-VEN 08:30-19:00,SAM 08:30-18:00", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Toyota - Givors Extérieur ;Toyota - Givors Extérieur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76479750000, + 45.58661530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "466338", + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/GTF6ZJQHLQ", + "ref:EU:EVSE": "FRS10P1407047098906545171", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06433800000, + 48.25635200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PYPGAPL", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "86675", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/YPGAPL", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64715200000, + 49.74556200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST613;FRIZFPFAST612;FRIZFPFAST611", + "ref": "FR*SOD*S*FAST*6*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - BEAUTOR", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2023-11-20", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34826910000, + 49.66251220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2024-04-19;2021-05-11", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Marsac-Sur-Don - Martrais;MARSAC-SUR-DON - Le Martrais", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44091A;FRS44E44091001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67695400000, + 47.59680100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Limoges-Fourches;LIMOGES-FOURCHES - Rue Du Château", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77252001;FRS77P77252A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH614FJF81C3AAMX98NB", + "start_date": "2016-11-07;2023-05-27", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66521000000, + 48.62632000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/76", + "ref:EU:EVSE": "FRGYMP7639297366550268593", + "ref": "1133535" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79872900000, + 50.93108200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221244;FRS37E221242", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - CERE LA RONDE - Salle socioculturel", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - CERE LA RONDE - Salle socioculturel", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E221244;FRS37E221242" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19024900000, + 47.25723700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "8", + "amenity": "charging_station", + "start_date": "2021-09-07", + "description": "MODULO - BAR LE DUC - Pkg. de la gare", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E66191;FRS55E66184;FRS55E246770;FRS55E246769;FRS55E246756;FRS55E246755;FRS55E66183;FRS55E66192", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BAR LE DUC - Pkg. de la gare", + "ref:EU:EVSE": "FRS55E66191;FRS55E66184;FRS55E246770;FRS55E246769;FRS55E246756;FRS55E246755;FRS55E66183;FRS55E66192" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16697300000, + 48.77318600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2020-02-20;2019-12-10", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "CLM01 - RUE CESAR PAULET", + "ref:EU:EVSE": "FRGLYPLYON121;FRGLYPLYON111;FRGLYPLYON112;FRGLYPLYON122", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*1*1*_*_;FR*SOD*S*LYON*1*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84209900000, + 45.81773600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "operator": "Mobilize Power Solutions", + "description": "Nissan Villenave", + "ref:EU:EVSE": "FRMBZERRJWS", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "ref": "00ac2785-bb91-4ed6-bfb1-8cdb88fb6383", + "capacity": "1", + "start_date": "2023-12-14", + "operator:email": "support@mobilize-ps.fr", + "network": "PIGEON SAN - Nissan Villenave", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56698906422, + 44.79159545898 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "VALDYS SAINT JEAN DE MONT", + "amenity": "charging_station", + "operator": "WATTZHUB", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "iheb.amri@wattzhub.com", + "owner:ref:FR:SIREN": "340500776", + "network": "WATTZHUB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08344960213, + 46.79327392578 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6552195;FRCPIE6593355;FRCPIE6594565", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6552195;FRCPIE6593355;FRCPIE6594565", + "description": "SUPER U BIVIERS BORNE 1", + "start_date": "2022-10-11", + "network": "SUPER U BIVIERS BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642000000, + 45.23892400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5491236049922028583", + "ref": "477783", + "description": "Leclerc/T9THS0ZXQQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363800000, + 45.19216100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-04-01", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Cestas | Place de la République;CESTAS - PLACE DE LA REPUBLIQUE", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS33PMB333312;FRS33PMB333311;Non concerné", + "ref": "c8aad9c9-8bb7-56a1-babb-e4650a889b16;FR*SOD*S*MB33*33*1*_*_", + "owner:ref:FR:SIREN": "253303473", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70182700000, + 44.77175900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "8", + "description": "Sainte-Geneviève-des-Bois - Avenue Gabriel Péri", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "38af3db1-2d79-5ffe-9b74-83cdcb89dc05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31949900000, + 48.64969300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS314005", + "opening_hours": "24/7", + "start_date": "2022-06-29", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Airbus ADS - Toulouse - Parking CSE", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49887100000, + 43.56270900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3674EVCP02;LFR3674EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "NICE - Mitterand", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3674EVCP02;LFR3674EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28605200000, + 43.70972300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAGNES SUR MER - POLYGONE RP", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE6611;FRM06PNICE6612", + "ref": "FR*SOD*S*NICE*66*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2019-01-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12949300000, + 43.66431900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ2012;FRA16PWIIZ2011", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AURIBEAU-SUR-SIAGNE PARKING DU BAYLE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2018-04-18", + "ref": "FR*SOD*S*WIIZ*20*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91365800000, + 43.60771600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "505596", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "Fr,Th,We,Mo,Tu 14:00-19:00,Tu,Mo,Th,Fr,We 08:00-12:00,Sa 09:00-12:00,Sa 14:00-18:00", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IXBHNZDQGH", + "ref:EU:EVSE": "FRFR1P2444434540601063540" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25358200000, + 43.34597200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-09-13", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Bureau Vallée - L’Union", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBVLUNI", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49651382275, + 43.63622227893 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPBJDBRGOTJA;FREBNBJDBRGOTJA", + "ref": "39497;BJDBRGOTJA", + "description": "Saint-Maximin-La-Ste-Baume, Chemin de Réal Vieux;Réseau eborn/BJDBRGOTJA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85885500000, + 43.45233700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1173375", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "description": "EVzen/61EE5F9B-8483-474F-8430-0495530957B4", + "ref:EU:EVSE": "FREVZP2759872572215201841", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17630000000, + 47.50454000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP07E45208001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-09-09", + "description": "MONTARGIS - Parking Doré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73366251356, + 47.99428629623 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/HTXRRAG7VZ;Sahune, Place du Village", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "454404;HTXRRAG7VZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPHTXRRAG7VZ;FREBNP7614210868690687682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25810000000, + 44.41145000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "ref": "1137159", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FREFLP3103665101073917080", + "charging_station:output": "22 kW", + "opening_hours": "Tu,We,Th,Mo,Sa,Su,Fr 08:00-18:00", + "description": "Road/667e88d169b9e2001cbef8e1", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37642500000, + 46.65102100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Chantraine - Maison de Santé", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42937300000, + 48.17497500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "574559", + "description": "Freshmile/Z9THPO26DL", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3011994955581851048" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05672500000, + 48.21113700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Avenue Philippe Auguste 126", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "ref": "FR*V75*PPX11*04", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75PPX1104", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39026400000, + 48.85779570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/P2VQPNZVP8", + "ref:EU:EVSE": "FRFR1P2341240028494834656", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "578942", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.76546400000, + 41.94692800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "description": "Golf de Dinard - Saint-Briac-sur-Mer", + "ref:EU:EVSE": "FRSSDPGOLFDINARD358001", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-07", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.13686200000, + 48.63279000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "description": "900013", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "start_date": "2016-07-08", + "operator": "SIEGE 27", + "ref:EU:EVSE": "FRS27PBERNAYMARKET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60142100000, + 49.09091100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "description": "SICECO/FR*S21*P21086*A", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS21P21086A", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82367900000, + 46.98588700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-13", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78455003", + "description": "NOISY-LE-ROI - 106 Rue Andre Le Bourblanc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05680000000, + 48.84830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-01-10", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - SARTROUVILLE - FUSILLES", + "ref": "FR*SOD*S*QPRK*74*9*_*_;FR*SOD*S*QPRK*74*5*_*_;FR*SOD*S*QPRK*74*4*_*_;FR*SOD*S*QPRK*74*12*_*_;FR*SOD*S*QPRK*74*11*_*_;FR*SOD*S*QPRK*74*10*_*_;FR*SOD*S*QPRK*74*1*_*_;FR*SOD*S*QPRK*74*2*_*_;FR*SOD*S*QPRK*74*3*_*_;FR*SOD*S*QPRK*74*6*_*_;FR*SOD*S*QPRK*74*7*_*_;FR*SOD*S*QPRK*74*8*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRQPKPQPRK7471;FRQPKPQPRK7451;FRQPKPQPRK7441;FRQPKPQPRK74111;FRQPKPQPRK74101;FRQPKPQPRK7411;FRQPKPQPRK74121;FRQPKPQPRK7421;FRQPKPQPRK7431;FRQPKPQPRK7461;FRQPKPQPRK7481;FRQPKPQPRK7491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15732900000, + 48.93871600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP2785928007916109933", + "network": "WAAT", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "697028", + "charging_station:output": "50 kW;22 kW", + "description": "WAAT/FRWATLHFYY1F34", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32945600000, + 43.22705700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE414000", + "start_date": "2021-11-25", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Cœur D'Aquitaine", + "ref": "FRIONE414000", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22935300000, + 44.28652200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-03", + "description": "PONT HEBERT - Rue des Juifs", + "ref:EU:EVSE": "FRS50P50880001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12782490000, + 49.16422030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH61JRJ229GGPBXGQRTW", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "VOINSLES - Rue Du Onze Novembre;Voinsles", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77527A;FRS77E77527001", + "start_date": "2023-05-24;2015-07-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00328900000, + 48.69032700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes", + "name": "Centre d'information du Public EDF", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20606690000, + 49.97184360000 + ], + [ + 1.20594190000, + 49.97175860000 + ], + [ + 1.20588490000, + 49.97175660000 + ], + [ + 1.20588400000, + 49.97171330000 + ], + [ + 1.20588290000, + 49.97165760000 + ], + [ + 1.20593990000, + 49.97165660000 + ], + [ + 1.20606590000, + 49.97157060000 + ], + [ + 1.20607590000, + 49.97153660000 + ], + [ + 1.20622390000, + 49.97152960000 + ], + [ + 1.20622390000, + 49.97157560000 + ], + [ + 1.20636290000, + 49.97165960000 + ], + [ + 1.20640690000, + 49.97165460000 + ], + [ + 1.20640750000, + 49.97168710000 + ], + [ + 1.20640890000, + 49.97175460000 + ], + [ + 1.20635390000, + 49.97175460000 + ], + [ + 1.20621490000, + 49.97184660000 + ], + [ + 1.20621790000, + 49.97188060000 + ], + [ + 1.20606990000, + 49.97187560000 + ], + [ + 1.20606690000, + 49.97184360000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080232", + "charging_station:output": "175 kW;54 kW", + "socket:type2_combo:output": "175 kW", + "capacity": "2", + "description": "RELAIS PORTES DU TARN", + "amenity": "charging_station", + "start_date": "2021-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680592;531680593", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080232", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65900000000, + 43.75290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHEVERNY - Av. Anciens combattants", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E2938;FRS41E2937", + "ref:EU:EVSE": "FRS41E2938;FRS41E2937", + "network": "MODULO - CHEVERNY - Av. Anciens combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45590600000, + 47.51256100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Pontivy - Place Aristide Briand", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PADZEDJ", + "start_date": "2016-11-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96661400000, + 48.06497400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPS8NHBCMLK6G", + "ref": "1017024", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6621138525474656707", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10047200000, + 48.99909400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92040J", + "description": "Metropolis - Express - Issy-les-Moulineaux - Egalité", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "start_date": "2022-05-25", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063816000, + 48.81681135000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPLEMPEREURNISSAN628001", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2020-02-13", + "operator:email": "support@driveco.com", + "description": "Nissan - Lievin", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78845700000, + 50.42694300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AMBULANCES BRUGERE BERNARD", + "description": "AMBULANCES BRUGERE BERNARD", + "owner:ref:FR:SIREN": "444895544", + "capacity": "2", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-12-12", + "socket:type2_combo:output": "120 kW", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "ref:EU:EVSE": "FRC2AEDE0120B1GNAC00060J", + "ref": "FRC2AEDE0120B1GNAC00060J" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38578230000, + 45.39933210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P3643253960232374791", + "network": "Leclerc", + "ref": "446789", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/PWO9NBXWE4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22413000000, + 46.64877300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Saint Genis de Saintonge | Rue du Pont Bouchard", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "16bb7945-6430-5113-88b2-da30dfe5dbc3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56803800000, + 45.48092100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRSAEPMAD", + "network": "SAEMES", + "ref": "FRSAEPMAD", + "description": "SAEMES | Parking Madeleine-Tronchet", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "317032993", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "start_date": "2022-03-25", + "capacity": "505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32420075710, + 48.87113947530 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Allego", + "amenity": "charging_station", + "description": "BAZALP - Kingersheim", + "ref:EU:EVSE": "FRSITE00000210", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2024-06-26", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31566300000, + 47.79056700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "Th,We 08:30-20:30,Mo 12:00-20:30,Fr,Sa 08:30-21:00,Su 08:30-12:00,Tu 08:30-19:00", + "ref": "521441", + "ref:EU:EVSE": "FRLE2P1651089750173597506", + "charging_station:output": "22 kW", + "description": "Leclerc/YQWPOFVGFO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127600000, + -21.21755000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PWV0SZKH55C", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Gardanne, Rue du Stade, Parking Savine", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47446300000, + 43.45630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "488886", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P392323561581530887", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/ORELOOXXEX", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07878100000, + 47.77881700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*5*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ511;FRA16PWIIZ512", + "description": "VALLAURIS PARKING STADE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-04-05", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05381800000, + 43.57595400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "description": "Freshmile France/MRITJNKUD6", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4318356387201739637", + "ref": "419121", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09516400000, + 45.61089600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "start_date": "2024-01-10", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSCICBG", + "description": "SCI - Brive-la-Gaillarde", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48154510000, + 45.14983640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Thônes, Parking Clos", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPYQIQWQ8UZY", + "ref": "YQIQWQ8UZY", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32747770000, + 45.88239121000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP1005025649974762233", + "ref": "1034754", + "capacity": "2", + "description": "ENGIE MAMP - Bornes publiques/79C7B400-67BF-4A34-9767-A3015CD093DE", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38273200000, + 43.26666600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FROTHPOTHR66122;FROTHPOTHR66111;FROTHPOTHR66112;FROTHPOTHR66121", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "NETTO - CAHORS", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*661*2*_*_;FR*SOD*S*OTHR*661*1*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43018200000, + 44.46883600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "vichy1;387725", + "description": "Réseau eborn/vichy1;Vichy, Marseille", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP8382038306180127248;FREBNPVICHY1", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2017-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43490000000, + 46.12470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPQMYSD12SXN", + "ref": "306106;QMYSD12SXN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "La Garde, Afuzi Pôle D'Activités De Toulon -Est, Rue Lambot;Réseau eborn/QMYSD12SXN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03870000000, + 43.14690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR34961;FROTHPOTHR34951;FROTHPOTHR34941;FROTHPOTHR34921;FROTHPOTHR34911;FROTHPOTHR34931", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*349*5*_*_;FR*SOD*S*OTHR*349*1*_*_;FR*SOD*S*OTHR*349*2*_*_;FR*SOD*S*OTHR*349*3*_*_;FR*SOD*S*OTHR*349*4*_*_;FR*SOD*S*OTHR*349*6*_*_", + "opening_hours": "24/7", + "description": "SUPER U - SAINT-GEORGES-SUR-LOIRE", + "start_date": "2022-03-17", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75731000000, + 47.39976400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSOMMA5N1ESG3", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1620283598957604793", + "ref": "1157454", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12698100000, + 49.11186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP30400", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Megève, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "capacity": "9", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63093020000, + 45.87235530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1152963", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLQZ8ZKHL21NAK", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7871385885437489960" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00009800000, + 50.47128600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "description": "Volvo -Thionville", + "start_date": "2023-06-06", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPEMILFREYVOLVO571001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14845400000, + 49.34982600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900097", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "ref:EU:EVSE": "FRS27PHONDOUVILLEMOULIN", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12018700000, + 49.14042200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22145001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Megrit-Rue des Granitiers (parking stade de foot)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24736500000, + 48.37778500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Intermarché - La Teste de Buche", + "owner:ref:FR:SIREN": "751468612", + "ref:EU:EVSE": "FRZIME22AC61148;FRZIME22AC61147", + "amenity": "charging_station", + "ref": "61148;61147", + "capacity": "1", + "description": " Intermarché - La Teste de Buche - 22kW AC ;Intermarché - La Teste de Buche - 22kW AC ", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-05-20", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14725560000, + 44.61094190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Yesss_Prouvy", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE268", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45803000000, + 50.33264200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "start_date": "2021-10-23;2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CONFLANS-SAINTE-HONORINE - Place De La Liberté", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78172002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11628000000, + 49.00515700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-11", + "network": "Bourges Sainte Thorette", + "description": "Bourges Sainte Thorette", + "capacity": "5", + "ref": "FRIOYE416152;FRIOYE416151;FRIOYE416101;FRIOYE416102;FRIOYE416153", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE416152;FRIOYE416151;FRIOYE416101;FRIOYE416102;FRIOYE416153", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24118500000, + 47.09451360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS52P1873353145345503317", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/LLTZKELLC2343W", + "ref": "1034937", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94593900000, + 48.64299000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65440015", + "description": "TARBES - Parking de l'ADAC", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-06-30", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06528100000, + 43.23165400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Rambervilliers", + "start_date": "2023-03-20", + "owner:ref:FR:SIREN": "898270251", + "description": "Rambervilliers", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE006502;FRIENE006501", + "ref": "FRIENE006502;FRIENE006501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62366809000, + 48.36197106000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA GRANDE MOTTE - Rue Frédéric Mistral (Parking Résidence Le Cheops)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34344001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08778611100, + 43.55795000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-LAFM-110", + "description": "LA FERTE MACE - Saint Denis", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61168A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35922300000, + 48.59102800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "559679", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/A3NZTZQNQG", + "ref:EU:EVSE": "FRFR1P6845847974335383483", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97435200000, + 48.60121100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-13", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "description": "Roulez Électrique En Haute-Garonne/JSYUTY;Boudrac", + "opening_hours": "24/7", + "ref": "JSYUTY;120635", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref:EU:EVSE": "FRS31PJSYUTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52673000000, + 43.19170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92004016", + "description": "ASNIERES-SUR-SEINE - Rue Pierre Boudou", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30828130000, + 48.91573910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;150 kW;2 kW", + "ref": "FRCG0E000192;FRCG0E000190;FRCG0E000189;FRCG0E000186;FRCG0E000185;FRCG0E000177;FRCG0E000187;FRCG0E000188;FRCG0E000191", + "amenity": "charging_station", + "start_date": "2022-06-06", + "description": "BMW - Mercure Automobiles Alençon - 61250 - 3", + "opening_hours": "24/7", + "network": "BMW - Mercure Automobiles Alençon - 61250 - 3", + "socket:type2_combo:output": "50 kW;150 kW", + "capacity": "9", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000192;FRCG0E000190;FRCG0E000189;FRCG0E000186;FRCG0E000185;FRCG0E000177;FRCG0E000187;FRCG0E000188;FRCG0E000191" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11840300000, + 48.45456600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE12711;FRM06PNICE12712", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*127*1*_*_", + "start_date": "2021-03-31", + "description": "SAINT-JEANNET - PARKING FERRAGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14024200000, + 43.74614300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Saint Vincent de Tyrosse | Rue Clairacq", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2131aad6-6532-5cb5-a9fc-87212fbbadc6", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30691900000, + 43.66298700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE57RMTA", + "operator": "STATIONS-E", + "amenity": "charging_station", + "capacity": "3", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Route Nationale - RICHEMONT", + "start_date": "2023-04-19", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097400000, + 49.27448200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "2781", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS2781", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - AB SAGAX - Blanc Mesnil", + "charging_station:output": "50 kW;43 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47431250000, + 48.94302550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MONTLOUIS SUR LOIRE Ader", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4041EVCP03;LFR4041EVCP01;LFR4041EVCP02", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4041EVCP03;LFR4041EVCP01;LFR4041EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81001400000, + 47.37338900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Marseille-10E, Traverse de la Roue, Bd de St Loup", + "ref:EU:EVSE": "FRM13PEQOCKTZXOF", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43106600000, + 43.28278100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Chilly - Mazarin Rue de L'Europe", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1b8b8f23-b0a5-50fe-a5cb-5330f6d2f6ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32443600000, + 48.70816300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP84000AVGR0T0NDE", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P84000*AVG*R0T0NDE", + "start_date": "2021-01-11", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "SEMARD ROTONDE - AVIGNON", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82143300000, + 43.93910400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ARES Bordeaux", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3320EVCP01;LFR3320EVCP02;LFR3320EVCP03", + "ref": "LFR3320EVCP01;LFR3320EVCP02;LFR3320EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11697200000, + 44.77120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Centre Commercial - Orange les Vignes", + "ref:EU:EVSE": "FRPD1PTRNORG", + "capacity": "14", + "opening_hours": "24/7", + "start_date": "2023-02-23;2023-07-01;2023-03-17", + "charging_station:output": "50 kW;187.5 kW;22 kW", + "socket:type2_combo:output": "50 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85198894229, + 44.10951889444 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "31966", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPZZEIEVWEMC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/ZZEIEVWEMC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97910000000, + 44.44287500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7783006593822171335", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "466023", + "charging_station:output": "22 kW", + "description": "Freshmile France/H8FAY4PGG0", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640700000, + 48.65596100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-29", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking centre-ville d'Aix-en-Provence - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E13001005", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44485000000, + 43.52346000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRCPSPCAPS5412;FRCPSPCAPS5411", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*54*1*_*_", + "start_date": "2022-09-30", + "description": "PALAISEAU - 15 ROUTE DE SACLAY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23222400000, + 48.71769200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPRGOY0O3953", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/RGOY0O3953;Vocance, Place de l'Eglise", + "ref": "RGOY0O3953;30365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55361300000, + 45.20223500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-01", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR47021;FROTHPOTHR47012;FROTHPOTHR47011;FROTHPOTHR47022", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*470*2*_*_;FR*SOD*S*OTHR*470*1*_*_", + "description": "INTERMARCHE - LA CHARITE SUR LOIRE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02841600000, + 47.18323100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6851220153802630291", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLTZX3OAH1OWEX", + "operator": "Freshmile | FR*FR1", + "ref": "1042050" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02559900000, + 44.92621000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10016185;FRUBIE10086283", + "operator:email": "contact@ubitricity.com", + "start_date": "2024-02-22", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-033", + "ref": "setp0100000128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17872200000, + 49.51347200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "487236", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6554483321661623649", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XK3BRSQEOA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59760000000, + 46.51970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTLSE31555006", + "description": "TOULOUSE - Avenue des Minimes", + "start_date": "2022-02-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43404000000, + 43.62490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892290", + "ref:EU:EVSE": "FRFR1P2139097072636259089", + "description": "Freshmile France/LLIWYM8S6XDY4C", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10819800000, + 49.15821600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461643", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/APLE3YWA6J", + "ref:EU:EVSE": "FRS14P4776415116939231543" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40374800000, + 49.11376200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "VENTENAC-EN MINERVOIS - Rue Du Port", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11405001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85888900000, + 43.24777800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78117004", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BUC - Rue Louis Blériot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13305000000, + 48.78635000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "description": "CCTLB - Xermaménil", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "944531ed-b5fe-5b42-997f-2e5d8e7c6d68" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46132500000, + 48.53303400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/saulxgdspuits", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS70PSAULXGDSPUITS", + "ref": "79864", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27956000000, + 47.69560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "QUERNES - Impasse De La Mairie", + "start_date": "2022-12-14", + "ref:EU:EVSE": "FRH13E62676001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36399634233, + 50.60534260604 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35284001B1", + "description": "ST JOUAN DES GUERETS - 21 rue du val du moulin ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97518600000, + 48.59843100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG63 - ePremium - Clermont Ferrand - Salins;SIEG 63/FR*S63*P63113*F", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "518309", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-09-16", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63113F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08052200000, + 45.77175300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1111890", + "ref:EU:EVSE": "FRFR1P7042799760676743111", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLWJ0G3EG5R4QI", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.31610000000, + -20.94780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21816", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/BGFWHE", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32", + "ref:EU:EVSE": "FRS32PBGFWHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08312200000, + 43.69750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-14", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "ALFORTVILLE - Rue De Charenton", + "ref:EU:EVSE": "FRSIPE94002009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41149597302, + 48.80988291337 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Service Auto Ploeren - 56880 - 1", + "network": "Service Auto Ploeren - 56880 - 1", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-01-30", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "FRCG0E001323;FRCG0E001322;FRCG0E001316;FRCG0E001317;FRCG0E001318;FRCG0E001324", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001323;FRCG0E001322;FRCG0E001316;FRCG0E001317;FRCG0E001318;FRCG0E001324" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80593800000, + 47.66168800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PONCHETTES", + "ref:EU:EVSE": "FRM06PNICE24222;FRM06PNICE24212;FRM06PNICE24211;FRM06PNICE24221", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*242*2*_*_;FR*SOD*S*NICE*242*1*_*_", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27775200000, + 43.69503600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Pont-Du-Casse | Parking Centre Bourg", + "ref": "f98c69e9-6a01-5ecb-98fe-e714214bec6b", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68106200000, + 44.23138000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE38312;FRSIGPSIGE38311", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - PARKING DE LA GARE - SANNOIS", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*383*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26330000000, + 48.97010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE MESNIL-ESNARD - Parking Relais - Route de Paris", + "ref:EU:EVSE": "FRC01E76429002", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15084600000, + 49.40611000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3543EVCP04;LFR3543EVCP03;LFR3543EVCP02;LFR3543EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT JEAN D'ANGELY Grenoblerie", + "ref:EU:EVSE": "LFR3543EVCP04;LFR3543EVCP03;LFR3543EVCP02;LFR3543EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "50 kW;22 kW", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50230500000, + 45.95073200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "0dd6214f-b3ff-588c-b02e-61aff1c44830", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Pons | Place de L'Europe (2)", + "charging_station:output": "50 kW;43 kW", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55176700000, + 45.58084900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/FXFDDN", + "operator:email": "roaming@freshmile.com", + "ref": "34057", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PFXFDDN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56976000000, + 44.03360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "start_date": "2023-06-19", + "amenity": "charging_station", + "capacity": "1", + "description": "CHAUSSEE DE L'ETANG - LE PLESSIS-ROBINSON", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*55C*P92350*LPR*ETANG", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP92350LPRETANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27147100000, + 48.78367400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3737EVCP01;LFR3737EVCP02;LFR3737EVCP03", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3737EVCP01;LFR3737EVCP02;LFR3737EVCP03", + "socket:type2_combo:output": "120 kW", + "description": "BARBEZIEUX Europe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16122600000, + 45.47565100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2022-10-18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMMHG", + "capacity": "4", + "charging_station:output": "100 kW", + "opening_hours": "24/7", + "description": "Intermarché - Morhange", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65313241601, + 48.93328977984 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "description": "Bormes-Les-Mimosas, parking de la BLEQUE", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPLYDKEMDVH2", + "operator:email": "contact@reseau-eborn.fr", + "ref": "LYDKEMDVH2", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34282640000, + 43.14614445000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP74272A", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP74272A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - SCI MIGMAS - LaserMaxx Sillingy", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07294228112, + 45.94226339578 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "100 kW;150 kW;60 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORBLO", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "50 kW;100 kW;150 kW;60 kW;22 kW", + "description": "Cora - Blois" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29647418684, + 47.62429111495 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-12", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Soulac-Sur-Mer Godineau", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT337801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11356300000, + 45.51342700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPSLOHF", + "operator:email": "help@electra.com", + "start_date": "2010-07-02", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Saint-Louis - Hôtel F1 Aéroport Bâle", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52870600000, + 47.60655800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH15611;FROTHPAUCH15612", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-24", + "ref": "FR*SOD*S*AUCH*156*1*_*_", + "description": "AUCHAN - DOMERAT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56766190000, + 46.33936920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "PILLAUD MEAUX", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "PILLAUD MEAUX", + "ref:EU:EVSE": "FRCPIE6776415", + "ref": "FRCPIE6776415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91870200000, + 48.96586900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3020727824953782417", + "network": "Freshmile France", + "ref": "978008", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKGL5K6V1IMP8", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58108100000, + 49.04921800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Léon Frot 26", + "ref:EU:EVSE": "FRV75P901103", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "start_date": "2021-11-25;2021-10-26", + "ref": "FR*V75*P9011*03", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38754800000, + 48.85466400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/V38WQLOKLK", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2220082936246993067", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "ref": "510602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75110700000, + 49.03551100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Aire de Cambarette, France", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP5671", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99017000000, + 43.42396400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,Th,Mo,Tu,Sa,We 08:00-17:45", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "ref": "487218", + "network": "Freshmile France", + "description": "Freshmile France/LYNNVONFVX", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3156933814190206666", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12085200000, + 50.64103200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89283514", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3", + "start_date": "2022-12-15", + "description": "R3 - Norauto Arras" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70275900000, + 50.30825600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1131842817162618878", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/RTYRGHNJ1K", + "ref": "461925", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29852100000, + 49.07365800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12241001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-06", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINTE RADEGONDE - Le champ du moulin", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62508710000, + 44.33995420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LBF6QN3EC", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P4077712337104031549", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref": "972629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30411200000, + 48.74739400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49333A", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Seiches-sur-le-Loir - Coudray", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-04-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35941666000, + 47.57616670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-20", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE GARRIC - Rue Jules Ferry ", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS81E81101001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16761900000, + 44.01086100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-04", + "capacity": "8", + "amenity": "charging_station", + "ref": "FRHPCPNF021485", + "ref:EU:EVSE": "FRHPCPNF021485", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681604;531681605;531681603;531681600;531681599;531681602;531681601;531681598", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS DE BEAULIEU", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10417000000, + 46.17710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COEUR DE CAUSSE - Place de la Mairie", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS46E46138001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56841400000, + 44.64813500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-28", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXKAKPT", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Saint-gérand - Rue de la Croix Macé", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89081700000, + 48.10792700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH04E59178002", + "network": "pass pass électrique", + "description": "DOUAI - Place de l'Arsenal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08591100000, + 50.37411500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Pont Croix-Rue du Docteur Neis", + "ref:EU:EVSE": "FRS29E2921800", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48642900000, + 48.04120600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MAUR-DES-FOSSÉS - Rue André Bollier", + "ref:EU:EVSE": "FRSIPE94068002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2023-05-05", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47433599507, + 48.80379900136 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-22", + "description": "ANGLES SUR L ANGLIN-1-2;ANGLES SUR L ANGLIN-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346050342;FRLMSE12346050341;FRLMSE12346050331;FRLMSE12346050332", + "ref": "B002", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88642000000, + 46.69456100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Saint laurent Sur Manoire (Boulazac Isle Manoire) | Parking Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "87998fd8-01dc-5a4b-99ad-64ccb1d6efcf", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79485400000, + 45.14856700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*59*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE5911;FRSIGPSIGE5912", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 12 RUE AUGUSTE SIMON - MAISONS-ALFORT", + "start_date": "2021-03-19", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42740800000, + 48.80278900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Allego Carrefour Valenciennes", + "amenity": "charging_station", + "network": "Allego Carrefour Valenciennes", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9007382;FRALLEGO9007381", + "ref": "FRALLEGO9007382;FRALLEGO9007381", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51729000000, + 50.33448100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "498014141", + "charging_station:output": "24 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "ZEENCO", + "ref:EU:EVSE": "FRLMSE1000025054", + "network": "ZEENCO", + "description": "Andrieux & Bourcerie 24KW DC", + "opening_hours": "Mo-Fr 8:00-12:00,Mo-Fr 14:00-18:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "franck.legardeur@zeenco.tech", + "start_date": "2021-08-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86000000000, + 46.42000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Pau | Parking Zénith 2", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "3ac44eaa-da16-5ec1-9698-df89b8314379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36615700000, + 43.33249800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85096001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA GARNACHE - Square Du Grand Pont - Place De La Mairie", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83061000000, + 46.89101000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2022-10-18", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "DOUAI", + "ref:EU:EVSE": "FRALLPEVCARSDOUAI", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04702800000, + 50.39753500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3335EVCP02;LFR3335EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "HARFLEUR Engels", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3335EVCP02;LFR3335EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19553800000, + 49.51415600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-04-11", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Brassier Le Carré Blanc - Saint-Herblain", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLCBSTH", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64016220000, + 47.23024440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-01-12", + "description": "Réseau eborn/GIQRFGC9J6;Six-Fours-les-Plages, Rue de Saint Mandrier", + "opening_hours": "24/7", + "ref": "699098;GIQRFGC9J6", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP8893533226676202795;FREBNPGIQRFGC9J6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84018500000, + 43.11140400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP1997600500442340048", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "Norauto - Bornes publiques/D6B4800B-0E72-4DAD-9F7F-38417FDCEF2A", + "capacity": "3", + "opening_hours": "24/7", + "ref": "811089", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88327800000, + 45.02617500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PGAMSJL", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2024-08-26", + "opening_hours": "24/7", + "description": "Gamm Vert - Saint-Julien-l'Ars", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49540641409, + 46.55906061482 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2019-03-26", + "charging_station:output": "22.08 kW", + "description": "Leroy Merlin - Tourcoing - Neuville-en-Ferrain", + "ref:EU:EVSE": "FRE11PLMTOURCOING592121", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13774900000, + 50.73780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP04183A", + "description": "e-Totem - Hotel Restaurant Le Pidanoux", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP04183A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54202500000, + 43.91465800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIXT MARCQ-EN-BAROEUL", + "ref": "FR*SOD*S*OTHR*154*1*_*_;FR*SOD*S*OTHR*154*2*_*_;FR*SOD*S*OTHR*154*3*_*_;FR*SOD*S*OTHR*154*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIXT", + "start_date": "2021-02-22", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "411207012", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR15441;FROTHPOTHR15421;FROTHPOTHR15411;FROTHPOTHR15431", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11130900000, + 50.66547300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6957335;FRCPIE6966165", + "description": "INTER-ST-AVE BORNE 1", + "amenity": "charging_station", + "start_date": "2024-06-21", + "capacity": "4", + "network": "INTER-ST-AVE BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6957335;FRCPIE6966165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73766400000, + 47.68049700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "782529", + "network": "Freshmile France", + "description": "Freshmile France/UCNXMWQKXU", + "ref:EU:EVSE": "FRFR1P5176484253213090620", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38173900000, + 49.37009500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL PARAY-LE-MONIAL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP122058", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-06-27", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11895000000, + 46.46860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLM0L2KR32B9BP", + "ref": "998778", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1192553116985545638" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38023600000, + 43.67304400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Churn - ESSO LE RELAIS DE LA PLAINE - Aleria", + "start_date": "2018-10-19", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPESSORELAISLAPLAINE202701", + "charging_station:output": "44 kW;43 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.51351000000, + 42.11520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9222271228143092505", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MLMXKNWVEM", + "ref": "705950", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19788400000, + 43.70389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHESSRENAULT576001", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "description": "Renault - HESS - Forbach", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88287400000, + 49.17742700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E130887", + "description": "MODULO - EPERNON - Rue nouvelle du Sycomore", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - EPERNON - Rue nouvelle du Sycomore", + "ref": "FRS28E130887", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67909863000, + 48.60777195000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461865", + "description": "MobiSDEC/OIXFQFMHLO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2541615234528052676" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92464200000, + 48.88920200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WAAT", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "ref:EU:EVSE": "FRWA9P7362983414564800663", + "opening_hours": "24/7", + "ref": "1128075", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA6LMTQY569J", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69441600000, + 44.99518600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-01-26", + "ref:EU:EVSE": "FRS50P504101", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "PONTORSON - aire de covoiturage", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49977700000, + 48.55418600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81251001", + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "ST GERMAIN DES PRES - Cimetière - Bourg", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;150 kW", + "start_date": "2024-06-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06650700000, + 43.56186600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRHPCPNF078075", + "owner:ref:FR:SIREN": "531681152;531681156;531681153;531681154;531681155;531681157", + "start_date": "2023-02-20;2023-01-17", + "amenity": "charging_station", + "description": "RELAIS DE BRABOIS", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF078075", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15087700000, + 48.65295600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "ANGERS - Place Imbach;OuestCharge - Diva Sp - Angers - Imbach", + "ref:EU:EVSE": "FRS49E49007023;FRS49P49007W", + "start_date": "2024-04-04;2024-04-05;2021-04-29", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54820500000, + 47.47402800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "ref:EU:EVSE": "FRS60PGOUVIEUX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "46585", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/gouvieux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41495000000, + 49.18790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HAZEBROUCK - Rue du Pont", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH08E59295003", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53914200000, + 50.72017300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLLIAS - Place du Marché", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30085001", + "charging_station:output": "22 kW", + "start_date": "2022-09-29", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47942300000, + 43.95367100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PBUGKFT", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "251914", + "description": "Mobilité électrique 56/BUGKFT", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "socket:type2_combo:output": "44 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37854000000, + 47.76290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP90248215", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Morlaix", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85479600000, + 48.57823600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Metropolis - Express - Sevran - Roger le Maner;Métropolis/FR*MGP*P93071*C", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2022-12-09", + "ref": "484838", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071C", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52818900000, + 48.93910600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "ref:EU:EVSE": "FRSHEE32;FRSHEE33", + "amenity": "charging_station", + "start_date": "2024-03-21", + "network": "Shell- France Aire de Rumaucourt HW", + "ref": "FRSHEE32;FRSHEE33", + "charging_station:output": "300 kW;125 kW;22 kW", + "description": "Shell- France Aire de Rumaucourt HW", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06413514000, + 50.22720996000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E341540033;FRBE1E341540032;FRBE1E34154003", + "capacity": "5", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-09-30;2024-06-17;2024-10-01", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "AMM - Mauguio - Parking Taxis", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95925075844, + 43.57837057316 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-01-10", + "description": "ENGIE Vianeo - A13 Beuzeville Sud", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89369722", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32051100000, + 49.32100400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Nersac | Parking Rue de L'Isle d'Espagnac", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW", + "ref": "e726d4d8-18ed-55d0-ac0a-238caa6e02c7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04952200000, + 45.62487200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Centre ville - BARLIN", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE62BAEA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61770900000, + 50.45862700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-09-08;2023-12-19", + "socket:type2_combo:output": "75 kW;300 kW;0 kW", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "capacity": "11;10", + "ref:EU:EVSE": "FRALLEGO9008032;FRALLEGO9005922;FRALLEGO9005921;FRALLEGO9002462;FRALLEGO9001252;FRALLEGO9001251;FRALLEGO9001082;FRALLPEVCARSFLISS;FRALLEGO9001081;FRALLEGO9002461;FRALLEGO9002463;FRALLEGO9008031", + "opening_hours": "24/7", + "ref": "FRALLEGO9008032;FRALLEGO9008031;FRALLEGO9001082;FRALLEGO9001081;FRALLEGO9001251;FRALLEGO9001252;FRALLEGO9002461;FRALLEGO9002462;FRALLEGO9002463;FRALLEGO9005921;FRALLEGO9005922", + "network": "Carrefour Energies;Allego Carrefour Flins sur Seine", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW", + "description": "Allego Carrefour Flins sur Seine;FLINS SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86416000000, + 48.96643000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3683EVCP01;LFR3683EVCP02", + "description": "ARMENTIERES Mun", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3683EVCP01;LFR3683EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88718000000, + 50.68187300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "BREST - Avenue Amiral Réveillère", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM29E29019002", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48292100000, + 48.38723800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNQGDY5JC7JJ;FREBNPQGDY5JC7JJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Nans-Les-Pins, Avenue Julien Jourdan;Réseau eborn/QGDY5JC7JJ", + "start_date": "2020-08-26", + "ref": "QGDY5JC7JJ;79219" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78525500000, + 43.37155500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "782463", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/ASJPOGWDW9", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3065264110174207798", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983100000, + -21.31707200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "35", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-05-11;2020-07-01;2022-10-21", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "STRASBOURG - HautePierre", + "ref:EU:EVSE": "FRP07E674820013;FRP07E674820012;FRP07E674820011;FRP07E67482001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70931000000, + 48.59190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chantelle, Terrain de tennis;Réseau eborn/chantelle", + "ref:EU:EVSE": "FREBNPCHANTELLE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "ref": "94268;chantelle", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15781000000, + 46.24070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Road/662a131c42984d001b542891", + "socket:type2_combo:output": "22 kW;80 kW", + "opening_hours": "Th,Tu,Mo,We,Fr,Su,Sa 08:00-18:00", + "network": "Road", + "charging_station:output": "3.7 kW;22 kW;80 kW", + "amenity": "charging_station", + "ref": "1078128", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP605649613001810343" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08992800000, + 48.93743400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*268*2*_*_;FR*SOD*S*OTHR*268*3*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "ECOLE DINGENIEURS DE PURPAN - TOULOUSE", + "ref:EU:EVSE": "FROTHPOTHR26821;FROTHPOTHR26831", + "network": "ECOLE DINGENIEURS DE PURPAN SITE TOULOUSE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-11-22;2021-11-25", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39971200000, + 43.60115600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "capacity": "2", + "description": "SONEPAR VERNON", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6605525", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6605525", + "network": "SONEPAR VERNON", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48810700000, + 49.09195800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "598041", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/UVBI4ZPDJG", + "ref:EU:EVSE": "FRFR1P8501246569582937659", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03143900000, + 43.76706700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "27", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P5897640361425320262", + "description": "WAAT/s525589", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "ref": "1187230", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43008900000, + 48.89454400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "698993", + "network": "Freshmile France", + "description": "Freshmile France/S3YZBNLWII", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4121923755887807294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11662100000, + 49.11371600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "12", + "start_date": "2021-08-06", + "ref:EU:EVSE": "FRSYSEETIK", + "network": "L'incroyable", + "operator:email": "aguerin@seeyousun.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "L'incroyable", + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72478100000, + 48.10832600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "674294", + "capacity": "2", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5207295225862207650", + "opening_hours": "24/7", + "description": "Freshmile France/ZXBMMXPZY1", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40347600000, + 49.04210300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Kia - CARDONA - Salon-de-Provence", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPCARDONAKIA133001", + "opening_hours": "24/7", + "start_date": "2020-03-05", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08065300000, + 43.63592100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-05-26", + "description": "Beuzec Cap Sizun-Place de la Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2900800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.51222800000, + 48.07490500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "88229", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P1007560891254441815", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/UATAXSIP73", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38668900000, + 48.23886700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "575987;575984;575990;575966", + "description": "Zephyre/LE006634;Zephyre/LE006635;Zephyre/LE006632;Zephyre/LE006620", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P5009862198809854339;FRZP1P1156260857956938152;FRZP1P8554630475707864079;FRZP1P6973186293016078234", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38280300000, + 43.62714700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE736", + "description": "Mairie_Ste_Gemmes", + "operator": "RossiniEnergy", + "owner:ref:FR:SIREN": "839265947" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55680300000, + 47.42314600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PGLISYMAIRIE", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/glisymairie", + "ref": "64748", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39836000000, + 49.87730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST15513;FRIZFPFAST15512;FRIZFPFAST15511", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-12", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - LEZIGNAN", + "ref": "FR*SOD*S*FAST*155*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75078321150, + 43.18772049024 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4676;FRS41E4677", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - LA VILLE AUX CLERCS - Rue de l'Abreuvoir", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E4676;FRS41E4677", + "description": "MODULO - LA VILLE AUX CLERCS - Rue de l'Abreuvoir", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08588100000, + 47.91885500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "34628", + "ref:EU:EVSE": "FRS60PTILLE", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Tille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11208000000, + 49.46170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2020-12-09", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "DEC03 - EUREXPO - SEPT CHEMINS", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*65*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON6511;FRGLYPLYON6512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93693700000, + 45.74728000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAUMANE - La Paradine,Parking Foyer", + "ref:EU:EVSE": "FRS30E30310001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76263100000, + 44.11829600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-12-22", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Calan - Rue Marc Le Floch", + "ref:EU:EVSE": "FRS56PDDQTSB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32281400000, + 47.87561600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "network": "CBS - Gare de Culoz 1", + "amenity": "charging_station", + "start_date": "2019-06-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P01138A", + "operator:email": "contact@e-totem.fr", + "description": "CBS - Gare de Culoz 1", + "ref": "FRG10P01138A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77932100000, + 45.84312600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - LANEUVEVILLE - Pkg. du cimetière", + "start_date": "2023-03-15", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRN54E187520;FRN54E187519", + "network": "MODULO - LANEUVEVILLE - Pkg. du cimetière", + "ref:EU:EVSE": "FRN54E187520;FRN54E187519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23585000000, + 48.65120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE20212;FRSIGPSIGE20211", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE MAITRE RENAUD - FONTENAY-EN-PARISIS", + "ref": "FR*SOD*S*SIGE*202*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-11-17", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45167300000, + 49.04966200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bleecker Group Genevilliers - 92230 - 3", + "capacity": "7", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001772;FRCG0E001771;FRCG0E001770;FRCG0E001765;FRCG0E001764;FRCG0E001766;FRCG0E001767", + "start_date": "2024-05-20", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001772;FRCG0E001771;FRCG0E001770;FRCG0E001765;FRCG0E001764;FRCG0E001766;FRCG0E001767", + "description": "Bleecker Group Genevilliers - 92230 - 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31422700000, + 48.92476100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "404168155", + "capacity": "1;2", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "ref:EU:EVSE": "FRLMSE11750472;FRLMSE11750373;FRLMSE11749592;FRLMSE11736622;FRLMSE11732115", + "amenity": "charging_station", + "network": "Bornevo Connect", + "description": "Tour First VIP;Tour First S1", + "start_date": "2022-07-20", + "ref": "EVC 11750472;EVC 11749592;EVC 11736622 E61083;BOR-ECOE37374-E37375;EVC 11750373", + "operator": "Bornevo", + "operator:email": "contact@bornevo.com", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15000000000, + 48.53000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e6d416fa-f527-537c-abaa-ea64ffd7b8dc", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Saint-Jouvent | Aire de Covoiturage", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17120300000, + 45.95932600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE85SADA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-25", + "socket:type2_combo:output": "24 kW", + "description": "Camping les Fosses Rouges - LES SABLES D'OLONNE", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74145100000, + 46.47929000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ9312;FRA16PWIIZ9311", + "ref": "FR*SOD*S*WIIZ*93*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2019-10-01", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "GRASSE - PARKING HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93288300000, + 43.62056600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3743EVCP06;LFR3743EVCP05;LFR3743EVCP07;LFR3743EVCP01;LFR3743EVCP02;LFR3743EVCP04;LFR3743EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "AIRE SUR ADOUR Bordeaux", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3743EVCP06;LFR3743EVCP05;LFR3743EVCP07;LFR3743EVCP01;LFR3743EVCP02;LFR3743EVCP04;LFR3743EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26642200000, + 43.73038700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLENEUVE LES MAGUELONE - Gare Sncf", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34337002", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85056166700, + 43.54376670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Saint-Romain-D'Ay, Avenue de Praperrier", + "network": "eborn", + "ref": "NEKQQUXFMO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPNEKQQUXFMO", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66594299000, + 45.16699500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8295564323883589715", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "377492", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YFBVDEVTCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76878000000, + 48.60120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "description": "NEUILLY SUR SEINE - Parmentier", + "ref:EU:EVSE": "FRP07E92051008", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27763580000, + 48.88253930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "KRAXKE7RE5;743001", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Réseau eborn/KRAXKE7RE5;Puy-En-Velay (Le), Boulevard Carnot", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPKRAXKE7RE5;FREBNP3124251050520614671", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87906800000, + 45.04687700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "start_date": "2023-06-16", + "description": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25625700000, + 43.39215200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E83137001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Toulon - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92778430000, + 43.12864690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED CARCASSONNE CGE", + "start_date": "2022-10-17", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6641115", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6641115", + "network": "CGED CARCASSONNE CGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32292400000, + 43.21449300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "ref": "756912;OWECYEJ70R", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "capacity": "6;9", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "Easy Charge/OWECYEJ70R;La Baule , Parking SNCF S2", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP555619199943846282;FRECHPOWECYEJ70R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39004800000, + 47.28824500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Avenue de Niel 28", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1722", + "amenity": "charging_station", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX17*22", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29562820000, + 48.88103200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120488", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MSSQHX", + "ref:EU:EVSE": "FRFR1PMSSQHX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57466000000, + 47.79740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9017*06", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901706", + "description": "Paris | Rue de Rome 81", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31976800000, + 48.88271800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "694424", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/AHQ9T8GJQL", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3423362949387903548" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43721500000, + 48.21917800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPEVERLINEVOLVO880001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Volvo - Epinal", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-07-29", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-17:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47895100000, + 48.17548600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2917200", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "description": "Plomodiern-Rue de la Plage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23501100000, + 48.18067900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LABASTIDE D'ANJOU - Parking de l'Eglise", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS11E11178001", + "start_date": "2024-02-08", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85146235914, + 43.34632017117 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZPEE22AC127535;FRZPEE74AC47259", + "amenity": "charging_station", + "capacity": "1", + "description": "Renault - Proville - 22kW AC ;Renault - Proville - 7kW AC ", + "owner:ref:FR:SIREN": "405267402", + "network": "PMD AUTOMOBILES", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "7.4 kW;22 kW", + "ref": "47259;127535", + "start_date": "2020-11-18;2021-09-03", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20811860000, + 50.16216530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09225002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PAMIERS - Place Des Héros De La Résistance", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61176800000, + 43.11457800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PBPJAZA", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref": "79399", + "charging_station:output": "22 kW", + "network": "FDE 80", + "description": "FDE 80/BPJAZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29526000000, + 49.88780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - CARBONNE", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST3313;FRIZFPFAST3312;FRIZFPFAST3311", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*33*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22081590000, + 43.31018790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44068A;FRS44E44068001", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Guenrouet - Verger;GUENROUET - Rue De L'Abbé Verger", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2024-04-18;2021-04-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95355100000, + 47.51884200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-22;2015-05-28", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Faÿ-les-Nemours;FAY-LES-NEMOURS - Rue Grande", + "ref": "01F5ZAKH61XJC9QZRM3CEVSNFE", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77178001;FRS77P77178A", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67436300000, + 48.23065600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;47 kW;150 kW", + "ref": "1133616", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "ref:EU:EVSE": "FRGYMP7107328188153172716", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84843800000, + 47.93289000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220300;FRS37E220297", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-03", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LES HERMITES - Rue de la fontaine", + "network": "MODULO - LES HERMITES - Rue de la fontaine", + "ref:EU:EVSE": "FRS37E220300;FRS37E220297" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75020500000, + 47.66459700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "bcf7486d-674e-5bf7-b7d7-f04506e6c375", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "CD54 - Audun-le-Roman", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89119800000, + 49.36694900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "capacity": "6", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "Super U Brehal", + "opening_hours": "24/7", + "network": "Super U Brehal", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com", + "owner:ref:FR:SIREN": "518095906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51412000000, + 48.90201000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e9ea71d6-cf1d-5458-bd16-aecae2399a22", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | LEON | Parking Ecole", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30078000000, + 43.87654000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VALENTON - Rue Vincent Bureau", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94074004", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2024-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46398953937, + 48.74300497766 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRCPIE6531355", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRCPIE6531355", + "description": "BUCHELAY BUCHELAY 1", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "network": "BUCHELAY BUCHELAY 1", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66297500000, + 48.98494700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "owner:ref:FR:SIREN": "344190566", + "operator": "GREENSPOT", + "capacity": "3", + "socket:type2_combo:output": "160 kW", + "ref:EU:EVSE": "FRLE2PGMGM", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "network": "Station LE GUA", + "charging_station:output": "160 kW", + "start_date": "2024-01-26", + "description": "Station LE GUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95985400000, + 45.73284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-04-01", + "charging_station:output": "3.7 kW;22 kW", + "ref:EU:EVSE": "FRS33PMB332311;Non concerné;FRS33PMB332312", + "ref": "a1dfe786-82d2-573e-856e-784f24aa3985;FR*SOD*S*MB33*23*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Cadaujac | Parking Église;CADAUJAC - PARKING EGLISE", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52943600000, + 44.75565700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-12-22", + "operator": "Séolis", + "description": "Réseau AlterBase - Villiers en Bois - Zoodyssée", + "ref:EU:EVSE": "FRSEOPAB60044A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39443500000, + 46.14416600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS317002", + "start_date": "2023-06-16", + "description": "Airbus - Blagnac - P00", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38893100000, + 43.62527300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3855EVCP01;LFR3855EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3855EVCP01;LFR3855EVCP02", + "description": "NEUILLY SUR MARNE", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53410000000, + 48.85875000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE36711;FRM06PNICE36712", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-10-08", + "operator:email": "sav@izivia.com", + "description": "NICE - NAPOLEON 3", + "ref": "FR*SOD*S*NICE*367*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22595400000, + 43.68658270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*175*1*_*_", + "start_date": "2022-10-31", + "description": "AIGLUN - PARKING VILLAGE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ17511;FRA16PWIIZ17512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91473700000, + 43.85800500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LOG48IHQH0", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P9085503694621385742", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "454077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37255800000, + 45.41546100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bricomarché - Châtillon-sur-Indre", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-03-23", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PBRCCSI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16737222411, + 46.98666452494 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Charlieu, Impasse De L'Asile", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPDSABFFKF7S", + "operator:email": "contact@reseau-eborn.fr", + "ref": "DSABFFKF7S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17547634000, + 46.15737017000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2022-12-08", + "owner:ref:FR:SIREN": "891624884", + "description": "Chelles - Hôtel Campanile", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPCHEHC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60135000000, + 48.87747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E31555003;FRP07E315550031", + "capacity": "19", + "start_date": "2024-02-15;2020-06-18", + "charging_station:output": "7 kW", + "description": "TOULOUSE - Parking Marengo", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45658500000, + 43.61033600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSYQDJU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/SYQDJU;Annecy, Parking des Marquisats", + "ref": "SYQDJU;79120", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13620000000, + 45.89240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Golbey , Salle Lepage;Easy Charge/MCGNQKQFJH", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref": "MCGNQKQFJH;756885", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "socket:type2_combo:output": "24 kW", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPMCGNQKQFJH;FRECHP6112249244797723374" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42217000000, + 48.20389300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP102110", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A4 Longeville Sud", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66187700000, + 49.13254600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GNRTPG", + "ref": "294389", + "ref:EU:EVSE": "FRFR1PGNRTPG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55377000000, + 46.21880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0903", + "capacity": "4", + "description": "Paris | Rue d'Aumale 28", + "opening_hours": "24/7", + "ref": "FR*V75*PPX09*03", + "start_date": "2021-06-10", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33477740000, + 48.87864300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4637525917710023887", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/KM8GM7ATSN", + "opening_hours": "24/7", + "ref": "441000", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02937000000, + 46.26381800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "start_date": "2021-07-07", + "description": "Best Western - Ajaccio", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBESTWESTERN200901", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75702000000, + 41.93308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS25PRGGHFS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79906", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/RGGHFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28735000000, + 47.04770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E212076;FRS18E212077", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS18E212076;FRS18E212077", + "start_date": "2023-07-07", + "charging_station:output": "0 kW", + "network": "MODULO - LE SUBDRAY - Salle des fêtes", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - LE SUBDRAY - Salle des fêtes", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29271100000, + 47.01067800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MARLY-LE-ROI - Police", + "start_date": "2024-08-27", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78372006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09644880612, + 48.87665975076 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK2681;FRQPKPQPRK2651;FRQPKPQPRK2641;FRQPKPQPRK2631;FRQPKPQPRK2621;FRQPKPQPRK2611;FRQPKPQPRK26101;FRQPKPQPRK26111;FRQPKPQPRK2661;FRQPKPQPRK2671;FRQPKPQPRK2691", + "description": "QPARK - 31006 TOULOUSE - MONTAUDRAN", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*26*9*_*_;FR*SOD*S*QPRK*26*8*_*_;FR*SOD*S*QPRK*26*5*_*_;FR*SOD*S*QPRK*26*4*_*_;FR*SOD*S*QPRK*26*2*_*_;FR*SOD*S*QPRK*26*1*_*_;FR*SOD*S*QPRK*26*10*_*_;FR*SOD*S*QPRK*26*11*_*_;FR*SOD*S*QPRK*26*3*_*_;FR*SOD*S*QPRK*26*6*_*_;FR*SOD*S*QPRK*26*7*_*_", + "start_date": "2022-07-08;2022-07-07;2022-07-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47856400000, + 43.57065700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-22", + "description": "CAHUZAC / VERE - Route De Gaillac", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8105100112;FRS81E8105100111;FRS81E8105100121;FRS81E8105100122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90926185287, + 43.98233007080 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Rely", + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE408900", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE408900", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2019-09-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49105500000, + 47.50029900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRANDPARIGNY - St Berthevin", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P50600001", + "start_date": "2017-02-17", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08983740000, + 48.58665430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25;2015-07-01", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61V21XFV3EBBW23ZCJ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SOIGNOLLES-EN-BRIE - Rue De Champeaux;Soignolles-en-Brie - rue de Champeaux", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77455A;FRS77E77455001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69905000000, + 48.65287400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "RELAIS LA COURNEUVE EST", + "ref": "FRHPCPNF080048", + "owner:ref:FR:SIREN": "531681420;531681418;531681417;531681414;531681415;531681416;531681419;531681421", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-04-28", + "ref:EU:EVSE": "FRHPCPNF080048", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39112000000, + 48.93373000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E220798;FRS41E220797", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - MONDOUBLEAU - Promenade du mail", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - MONDOUBLEAU - Promenade du mail", + "ref": "FRS41E220798;FRS41E220797", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89690700000, + 47.98221100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Séné - Place Foresti", + "operator": "Freshmile", + "start_date": "2016-07-22", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PTJTDLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73666600000, + 47.61880900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*189*2*_*_;FR*SOD*S*LYON*189*1*_*_", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-07-11", + "description": "LY610 - FELIX JACQUIER", + "ref:EU:EVSE": "FRGLYPLYON18922;FRGLYPLYON18921;FRGLYPLYON18912;FRGLYPLYON18911", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84726600000, + 45.77387900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "429996", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92019*A", + "ref:EU:EVSE": "FRMGPP92019A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29049300000, + 48.76595600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Holding - Bethune", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPSOFIDAHOLDING624001", + "start_date": "2020-02-13;2021-06-01", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64865000000, + 50.51271800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2023-06-23", + "description": "ROUEN - Boulevard de l'Europe", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540025;FRC01E76540024", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07876200000, + 49.43188290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/QNCX1RC4JP", + "ref:EU:EVSE": "FRLE2P7465493692935204339", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446801", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02938000000, + 47.90043700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Grignols | Rue du Château d'Eau", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d676fb55-f9d1-5c3b-ab11-9a03f68ffa27", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04140300000, + 44.39061000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NESLES-LA-VALLEE - Allée René Florentin", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS95E95446002", + "charging_station:output": "22 kW", + "start_date": "2024-06-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16726245076, + 49.12956734413 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Green To Wheel", + "network": "BASSO CAMBO", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRALLPTIS024", + "start_date": "2023-05-30", + "description": "BASSO CAMBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39155000000, + 43.56945000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/VFHQDF7H5S", + "opening_hours": "24/7", + "ref": "487272", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8955638796699166381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47736800000, + 48.76455700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Aubagne, Centre de Vie Agora", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PWLDRUCN0MP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60313200000, + 43.28706100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/BO9AYH5BE3;SDEY/QG1IN6DIGG", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "charging_station:output": "43 kW;160 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "network": "SDEY", + "opening_hours": "24/7", + "ref": "782601;782607", + "ref:EU:EVSE": "FRS89P2258520108013438496;FRS89P9114305441546332873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87810800000, + 47.66512100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MANDELIEU - PARKING PORT DE LA RAGUE", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ30912;FRA16PWIIZ30911", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*309*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93998042701, + 43.51772685017 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "454137", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/S01QE8YZCU", + "ref:EU:EVSE": "FRFR1P4259150377032322529", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74540000000, + 46.78300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PPATTON", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Best Western - Tonnay-Charente", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-08-13", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93691836016, + 45.95455374621 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Bourg-D'Oisans, Rue Des Colporteurs;Réseau eborn/HGHRMSS0WP", + "ref": "HGHRMSS0WP;85697", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPHGHRMSS0WP", + "charging_station:output": "50 kW;43 kW", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03424000000, + 45.05550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "capacity": "5", + "ref:EU:EVSE": "FREVZP6694131691198527458", + "description": "Norauto - Bornes publiques/A7C0D339-573F-4A95-8FCA-7EB0E319C8B8", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "charging_station:output": "12 kW;180 kW;63 kW", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "ref": "790125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92692600000, + 45.72015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR63022;FROTHPOTHR63021;FROTHPOTHR63011;FROTHPOTHR63012", + "capacity": "2", + "amenity": "charging_station", + "description": "FFF - FRANCHE COMTE", + "ref": "FR*SOD*S*OTHR*630*1*_*_;FR*SOD*S*OTHR*630*2*_*_", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "start_date": "2023-05-10;2023-05-11", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06205120000, + 47.30235750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Marlhes, Marlhes", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPYLSVBYAJM1", + "ref": "YLSVBYAJM1", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39485110000, + 45.28257530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPUYWWVLHDHN;FREBNP7210072410104270782", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Six-Fours-Les-Plages, Parking ESPACE MALRAUX;Réseau eborn/UYWWVLHDHN", + "start_date": "2022-05-03", + "ref": "UYWWVLHDHN;510659" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84239900000, + 43.09351100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "CAMPING DEVILLAIRS", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "CAMPING DINLY - PENESTIN", + "start_date": "2023-02-17", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR32011;FROTHPOTHR32012", + "ref": "FR*SOD*S*OTHR*320*1*_*_", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47615700000, + 47.47270600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2412817443790231826", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/XOZQ9QYCLQ", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626318", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14345900000, + 43.66580300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1523", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue de l'Arrivée 16", + "ref": "FR*V75*PPX15*23", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32170000000, + 48.84320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLNADCUFGT65PK", + "operator:email": "roaming@freshmile.com", + "ref": "971900", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5940504565258997355", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76141600000, + 48.58078400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPMARCHEAUTOMOBILE592701", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "start_date": "2023-07-12", + "operator:email": "support@driveco.com", + "description": "Marché automobile - Méteren", + "operator": "DRIVECO", + "opening_hours": "Mo 09:30-12:00, Mo 14:00-19:00, Tu 09:30-12:00, Tu 14:00-19:00, We 09:30-12:00, We 14:00-19:00, Th 09:30-12:00, Th 14:00-19:00, Fr 09:30-12:00, Fr 14:00-19:00, Sa 09:30-12:00, Sa 14:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68484500000, + 50.74088200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900100", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PTHUITSIGNOLSUPERETTE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93925700000, + 49.26603600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22091001", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "description": "Kermoroch-Place de l église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20627000000, + 48.62270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY26E78571001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-NOM-LA-BRETECHE - Avenue Des Platanes", + "network": "Seymaborne", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02278000000, + 48.85890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Yesss_Camon", + "ref:EU:EVSE": "FRROSE217", + "operator": "RossiniEnergy", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35512300000, + 49.89995700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "ANDRESY - Place De La Gare", + "ref:EU:EVSE": "FRY01E78015002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04981300000, + 48.97477700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-29", + "network": "Jura", + "description": "Jura", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE408351;FRIOYE408306;FRIOYE408304;FRIOYE408303;FRIOYE408302;FRIOYE408301;FRIOYE408305;FRIOYE408352;FRIOYE408353", + "opening_hours": "24/7", + "ref": "FRIOYE408353;FRIOYE408351;FRIOYE408304;FRIOYE408303;FRIOYE408302;FRIOYE408301;FRIOYE408305;FRIOYE408306;FRIOYE408352", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52289254000, + 46.77614007000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS52P6586438851029303374", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref": "474507", + "network": "SDED52", + "description": "SDED52/MIVDIW60ET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13398100000, + 48.11092800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "POUYASTRUC - Parking Espace Commercial Et Médical", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65369001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17397222222, + 43.27472220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-05-12", + "network": "Périers", + "amenity": "charging_station", + "description": "Périers", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE003901;FRIENE003902", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE003901;FRIENE003902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40054000000, + 49.19410800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34284001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT PONS DE THOMIERES - Place Du Foiralet", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75874166667, + 43.48785830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CALIGNY à Bourg", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-02-23", + "ref:EU:EVSE": "FRS61P61070A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "SE61-CALI-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59525900000, + 48.80829200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7934789720047830714", + "ref": "472170", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/TVE2ZUMRJB", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90763300000, + 45.46952400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PVUSGRP", + "owner:ref:FR:SIREN": "200075240", + "description": "Lavelanet-de-Comminges, Mairie;Roulez Électrique En Haute-Garonne/VUSGRP", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "33403;VUSGRP", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2017-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11904000000, + 43.25520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "24", + "amenity": "charging_station", + "start_date": "2020-12-08", + "ref:EU:EVSE": "FRSSDPGHICLSAINTPHILIBERT59160", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Hôpital Saint Philibert - Lille", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97438600000, + 50.65131700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRCG0E000077;FRCG0E000076", + "description": "BMW NICE PREMIUM Motors – 1", + "operator:email": "info@chargeguru.com", + "network": "BMW NICE PREMIUM Motors – 1", + "ref": "FRCG0E000077;FRCG0E000076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20140500000, + 43.68923700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMEVVFRECHASTEL11", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "792c0a44-6b53-48fa-aa57-1b483e111f4a", + "description": "VVF Rechastel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30000000000, + 44.46000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "944b62c0-ce1d-5699-8c39-9f8f7f0ef84d", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Ascain | Parking Xurio", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61827300000, + 43.34597800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-03", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE54LZLA", + "description": "ZAC Libération - Luneville", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50990400000, + 48.58694800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRBMPS8;FRBMPS17;FRBMPS5;FRBMPS6;FRBMPS7", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "8;5;17;6;7", + "description": "Bump - Paripark - Jardin des Plantes - Paris", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35474930000, + 48.84065200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3092EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3092EVCP01", + "charging_station:output": "22 kW", + "description": "MINIHY TREGUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24445600000, + 48.77748400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-4E, 41 Boulevard Françoise duparc", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PNJ7DFNAEGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40051700000, + 43.30272100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS90PHFZCWL", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "description": "TE90/HFZCWL", + "amenity": "charging_station", + "capacity": "4", + "ref": "242362", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004000000, + 47.48950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PLACE MERMOZ STE MAXIME", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P83120*STM*MERMOZ", + "start_date": "2023-12-21;2019-12-23", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW", + "ref:EU:EVSE": "FR55CP83120STMMERMOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63479400000, + 43.31042800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8063503877762985029;FRFR1P8381673095557557783", + "network": "Freshmile France", + "description": "Freshmile France/N9LEAC2WWK;Freshmile France/LLTE7HABC29MGE", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1122708;398939", + "operator": "Freshmile | FR*FR1", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97070000000, + 46.79000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PSYURDS", + "socket:type2_combo:output": "187.5 kW;50 kW;100 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Super U - Riedisheim", + "capacity": "11", + "charging_station:output": "100 kW;50 kW;22 kW;187.5 kW", + "start_date": "2023-09-14;2023-09-25", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35832297871, + 47.74722368783 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "48322;GCVCJP15M7", + "description": "Peaugres, Route de l'Egalité;Réseau eborn/GCVCJP15M7", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPGCVCJP15M7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72680000000, + 45.28616600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "ref:EU:EVSE": "FRFASE33102", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "ref": "FRFASE33102", + "socket:type2_combo:output": "300 kW", + "network": "Fastned Aire de Rosny-Sud", + "owner:ref:FR:SIREN": "853300010", + "start_date": "2022-12-02", + "charging_station:output": "300 kW", + "description": "Fastned Aire de Rosny-Sud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63310607000, + 48.99229860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SENT*214*6*_*_;FR*SOD*S*SENT*214*5*_*_;FR*SOD*S*SENT*214*3*_*_;FR*SOD*S*SENT*214*1*_*_;FR*SOD*S*SENT*214*2*_*_;FR*SOD*S*SENT*214*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "PARKING THERM PARK", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPSENT21461;FROTHPSENT21411;FROTHPSENT21421;FROTHPSENT21431;FROTHPSENT21441;FROTHPSENT21451", + "start_date": "2021-12-29", + "network": "AQUABELLA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44516900000, + 43.53180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "980640;LLO7B28Z8O6XBW", + "capacity": "2", + "start_date": "2023-10-26", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPLLO7B28Z8O6XBW;FREBNP7607829507000245336", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Novalaise, Parking rue Pré Rampeau;Réseau eborn/LLO7B28Z8O6XBW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77546000000, + 45.59855000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31795;GBMHGY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPGBMHGY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/GBMHGY;Chabeuil, Rue des Ecoles", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01835000000, + 44.89930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*442*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "description": "INTERMARCHE - LE CHAMBON SUR LIGNON", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR44211;FROTHPOTHR44212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31431100000, + 45.05608400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "674198", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "description": "Freshmile France/CRKFHHR17R", + "ref:EU:EVSE": "FRFR1P4448969153864838597", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30415200000, + 50.72875400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "setp0100000185", + "operator:email": "contact@ubitricity.com", + "start_date": "2024-03-22", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-071", + "ref:EU:EVSE": "FRUBIE10000141;FRUBIE10027444" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21254900000, + 49.60274000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1178625", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLV2FE4RM1LK2J", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRFR1P6375717770413864404" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12862100000, + 49.09239000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "99ac5b51-8c7a-5993-a7c9-26234f1aa5de", + "operator:email": "cpo@citeos.com", + "description": "Station-service de Chevigny St-Sauveur", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14548000000, + 47.29540700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8211086522937352495", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IMEFMD4DXW", + "ref": "491883" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58488700000, + 44.16313600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1082802", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLW67E3ULYNVLM", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2937931708193621683", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70042800000, + 49.27751100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "407630862", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P124814;FRZP1P124829", + "ref": "f2efe076-7cf7-466b-b69f-8de4b6d3decd", + "network": "Logis Hôtel les Capucins", + "description": "Logis Hôtel les Capucins - 11 kW AC;Logis Hôtel les Capucins - 22 kW AC", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91005200000, + 47.49283600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11302001", + "description": "PUILAURENS - Parking Du Château", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29555600000, + 42.80388890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VILLENNES SUR SEINE - Mairie", + "start_date": "2023-08-01", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78672001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99860320000, + 48.94017830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "description": "Pulnoy - 10 Av. Léonard de Vinci", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "16861e2b-45d4-5b74-a3d5-98ccf60a6ddc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25072400000, + 48.70171100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SALSES LE CHATEAU - Impasse D'En Valette", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-09-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66190001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91794400000, + 42.83004300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*IKEA*140*9*_*_;FR*SOD*S*IKEA*140*8*_*_;FR*SOD*S*IKEA*140*6*_*_;FR*SOD*S*IKEA*140*16*_*_;FR*SOD*S*IKEA*140*15*_*_;FR*SOD*S*IKEA*140*14*_*_;FR*SOD*S*IKEA*140*13*_*_;FR*SOD*S*IKEA*140*12*_*_;FR*SOD*S*IKEA*140*1*_*_;FR*SOD*S*IKEA*140*10*_*_;FR*SOD*S*IKEA*140*11*_*_;FR*SOD*S*IKEA*140*2*_*_;FR*SOD*S*IKEA*140*3*_*_;FR*SOD*S*IKEA*140*4*_*_;FR*SOD*S*IKEA*140*5*_*_;FR*SOD*S*IKEA*140*7*_*_", + "ref:EU:EVSE": "FRIKAPIKEA14071;FRIKAPIKEA14061;FRIKAPIKEA14031;FRIKAPIKEA14021;FRIKAPIKEA140161;FRIKAPIKEA140151;FRIKAPIKEA140101;FRIKAPIKEA14011;FRIKAPIKEA140111;FRIKAPIKEA140121;FRIKAPIKEA140131;FRIKAPIKEA140141;FRIKAPIKEA14041;FRIKAPIKEA14051;FRIKAPIKEA14081;FRIKAPIKEA14091", + "start_date": "2023-08-31", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "IKEA MULHOUSE - PARKING CLIENTS", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28303400000, + 47.73075100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "PLEURTUIT - 5 rue Ransbach Baumbach (Parking Espace Delta) ", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "ref:EU:EVSE": "FRS35P35228001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06084600000, + 48.57803000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG63 - ePremium - Besse et Saint Anastaise - Gazelle", + "start_date": "2022-10-26", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS63P63038B", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93248020000, + 45.51014600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLMYJK08C1PQ8U", + "ref": "971885", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5264008951593158689" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82897300000, + 46.30736800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-24", + "ref:EU:EVSE": "FRS31PAQCTJP", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Antichan-de-Frontignes;Roulez Électrique En Haute-Garonne/AQCTJP", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "AQCTJP;120629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66760400000, + 42.97380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE93045001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LES LILAS - Rue Léon Renault", + "start_date": "2021-10-18;2021-11-15", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42237000000, + 48.88134100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000918;FRCG0E000917;FRCG0E000919;FRCG0E000920", + "charging_station:output": "22 kW;100 kW;300 kW", + "start_date": "2023-06-19", + "amenity": "charging_station", + "description": "Espace 3000 - Groupe Cassard - Volkswagen Montbéliard - 25400", + "capacity": "4", + "network": "Espace 3000 - Groupe Cassard - Volkswagen Montbéliard - 25400", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRCG0E000918;FRCG0E000917;FRCG0E000919;FRCG0E000920", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81613404000, + 47.48686959000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE21912;FRM06PNICE21911", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*219*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-05-19", + "description": "NICE - PARKING RAIMBALDI", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26616206477, + 43.70623554899 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Pujols | Parking Piscine Malbentre", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "ref": "81150bfd-1e6c-5424-900e-5d27f642f04c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68865000000, + 44.39468000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE 2 - FRANCONVILLE;SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE - FRANCONVILLE", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE35811;FRSIGPSIGE35812;FRSIGPSIGE35911;FRSIGPSIGE35912", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7 kW", + "ref": "FR*SOD*S*SIGE*358*1*_*_;FR*SOD*S*SIGE*359*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22290000000, + 48.99110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "charging_station:output": "90 kW", + "ref:EU:EVSE": "FRC01E76222001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-17", + "operator": "Bouygues E&S", + "description": "DUCLAIR - Avenue du Président Coty ", + "socket:type2_combo:output": "90 kW", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87257800000, + 49.47993400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "OBERHOFFEN", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2223EVCP01", + "ref": "LFR2223EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87126000000, + 48.77140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "amenity": "charging_station", + "ref": "31e9e0ab-7395-5f5b-b00c-e27463667c5a", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Bordeaux | Rue du Cardinal Richaud (Parking Sdeeg)", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56521700000, + 44.88754700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/NJT4HH0Q1O", + "ref": "757041", + "opening_hours": "24/7", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS82P7998519761539870316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89040300000, + 44.11718400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "PARKING RELAIS AGROPARC - AVIGNON", + "ref": "FR*55C*P84140*AVG*AGR0PARC", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP84140AVGAGR0PARC", + "start_date": "2023-09-21", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89236400000, + 43.90987700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3590EVCP01;LFR3590EVCP02;LFR3590EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3590EVCP01;LFR3590EVCP02;LFR3590EVCP03", + "description": "SAUMUR Rouen", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06466900000, + 47.27171300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Intermarché - Guémené-sur-Scorff", + "opening_hours": "24/7", + "start_date": "2024-03-06", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PITMGSS", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20699668836, + 48.06396348238 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "23630;Q1XKQPXDSW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Mauves, Chemin de Halage;Réseau eborn/Q1XKQPXDSW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPQ1XKQPXDSW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83152800000, + 45.03847200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "capacity": "5;7", + "ref": "FRETIP64122P", + "opening_hours": "24/7", + "start_date": "2024-07-18;2024-06-26", + "description": "e-Totem - BIARRITZ Parking Charles Floquet", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP64122P", + "charging_station:output": "100 kW;7.4 kW;22 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55302276200, + 43.47724292048 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCCVVNT", + "description": "Centre Commercial Carrefour - Venette", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77734233912, + 49.41003130201 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Pont-De-Cheruy", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRDRVPCRFMKT382301", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-21", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17538300000, + 45.75169200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPLRICA", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-12-14", + "charging_station:output": "22 kW;400 kW", + "opening_hours": "24/7", + "description": "La Ricamarie - Carrefour", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37484500000, + 45.41113600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "HAMMEL - MARSAC SUR LISLE", + "opening_hours": "24/7", + "start_date": "2023-01-17", + "network": "HAMMEL", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR55441;FROTHPOTHR55431;FROTHPOTHR55421;FROTHPOTHR55411;FROTHPOTHR55451;FROTHPOTHR55461", + "ref": "FR*SOD*S*OTHR*554*5*_*_;FR*SOD*S*OTHR*554*4*_*_;FR*SOD*S*OTHR*554*3*_*_;FR*SOD*S*OTHR*554*1*_*_;FR*SOD*S*OTHR*554*2*_*_;FR*SOD*S*OTHR*554*6*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66451100000, + 45.19553100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6752825;FRCPIE6752805;FRCPIE6751445", + "ref": "FRCPIE6752825;FRCPIE6752805;FRCPIE6751445", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPERUPDC BORNE 4", + "network": "SUPERUPDC BORNE 4", + "operator:email": "info@chargepoint.com", + "start_date": "2023-07-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26209700000, + 45.79020100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8826103655971037465", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/YWIDNJ8YCI", + "operator": "Freshmile | FR*FR1", + "ref": "454197" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47600000000, + 46.62890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref:EU:EVSE": "FRV75P900201", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Boulevard des Capucines 7", + "ref": "FR*V75*P9002*01", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33321000000, + 48.87062800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "682139", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5621577581623252219", + "description": "Freshmile France/CJVNH5W5JF", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86453900000, + 46.38631700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1723", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "description": "Tesla Supercharger Beaune", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83776800000, + 47.01742200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P908484154733437706", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1084773", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLN1HGE4ZWNAF6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23983700000, + 45.29392100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;75 kW;150 kW", + "operator:email": "contact@nexteneo.com", + "network": "SA TRANSPORTS FRANCONY", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 12:00-14:00", + "capacity": "3", + "description": "FRANCONY", + "socket:type2_combo:output": "75 kW;150 kW", + "ref:EU:EVSE": "FR0NXPOOLHJEBL", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13535000000, + 45.68694300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P6596917774396382192", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457536", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/Q7PXNU5TGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40506400000, + 49.02098100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS12E12176002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "ONET LE CHÂTEAU - Rue Des Fauvettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57085700000, + 44.37686600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "884988", + "network": "WAAT", + "description": "WAAT/FRWATLSABVB5MK", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P6577609125172125661", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37283200000, + 43.60063100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49298001;FRS49P49298A", + "start_date": "2021-04-13;2024-04-10;2024-04-09", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "SAINT-LEGER-DES-BOIS - Rue des Ferrieres;OuestCharge - Diva Sp - Saint-Leger-des-Bois - Ferrieres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71059100000, + 47.46076300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CORDES SUR CIEL - Rue Notre Dame", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-18;2024-06-29", + "ref:EU:EVSE": "FRS81E81069002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94885720000, + 44.06417830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRHDFE6268800122;FRHDFE626880011", + "start_date": "0001-01-01", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "RANG DU FLIERS - Rue de l’église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63737875608, + 50.41954602256 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BLARS - Bourg", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-10-01", + "ref:EU:EVSE": "FRS46E46031001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71787500000, + 44.56633600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG 63/FR*S63*P63458*B", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "ref:EU:EVSE": "FRS63P63458B", + "capacity": "3", + "ref": "518465", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18492000000, + 45.47778700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59447001", + "charging_station:output": "11 kW", + "network": "pass pass électrique", + "description": "ONNAING - Rue de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60003300000, + 50.38518500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS29E29183001", + "description": "Plouegat Moysan-Run Ar Roue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60553600000, + 48.56691700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "L'HAY LES ROSES - Rue Ferrer", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94038011", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34851836939, + 48.77877737870 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Lens Noyelles-Godault", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRLMSP90113337", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2024-01-19", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98815100000, + 50.41313300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "b82a4edb-e3f2-5008-81d4-ccbf1c9539de", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Riberac | Place Pradeau debonniere", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33788800000, + 45.24909200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 93 RUE SADI CARNOT - VANVES", + "ref": "FR*SOD*S*SIGE*467*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE46711;FRSIGPSIGE46712", + "operator:email": "sav@izivia.com", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29472970000, + 48.82465450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSLCRES", + "description": "LE CRES", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94149000000, + 43.64224000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "BOURG LES VALENCE - Bastié", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3954EVCP01;LFR3954EVCP02", + "ref": "LFR3954EVCP01;LFR3954EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88454200000, + 44.96116400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "eec014df-1e28-5e5d-a679-27a137b484cc", + "description": "MOBIVE | Morlaas | Place de la Tour", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26422400000, + 43.34450100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BEAUVOIR-SUR-MER - Rue Charles Gallet", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85018001", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04081700000, + 46.91497400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "description": "Allego FR, Tikehau, TJ2 Bourg-en-Bresse", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego FR, Tikehau, TJ2 Bourg-en-Bresse", + "ref": "FRALLEGO8006051;FRALLEGO8006041;FRALLEGO8001931;FRALLEGO8001921;FRALLEGO8001922;FRALLEGO8001932;FRALLEGO8006042;FRALLEGO8006052", + "ref:EU:EVSE": "FRALLEGO8006051;FRALLEGO8006041;FRALLEGO8001931;FRALLEGO8001921;FRALLEGO8001922;FRALLEGO8001932;FRALLEGO8006042;FRALLEGO8006052", + "start_date": "2024-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20844044000, + 46.22052663000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR4034EVCP03;LFR4034EVCP01;LFR4034EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "description": "RIOM - Clermont ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4034EVCP03;LFR4034EVCP01;LFR4034EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11459100000, + 45.88614900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PKFCPRP", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "KFC - Perpignan", + "start_date": "2023-07-18;2023-07-19", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89306310000, + 42.68115850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ZQRMJ7J2UI;85865", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPZQRMJ7J2UI;FREBNZQRMJ7J2UI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ZQRMJ7J2UI;Callas, Chemin Des Frayeres", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53547500000, + 43.59068200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "390923175", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "start_date": "2020-10-28", + "amenity": "charging_station", + "operator:email": "accueil-brico.langon@scaso.fr", + "capacity": "1", + "operator": "LANGON DISTRIBUTION", + "charging_station:output": "22 kW", + "description": "BBJ Mazères", + "network": "BBJ Mazères" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23857700000, + 44.51752500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PELDMRS", + "network": "Power Dot France", + "description": "Electro Depôt - Marseille", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-01-25", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48949690000, + 43.28957590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-19", + "capacity": "2", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "ref:EU:EVSE": "FRE000034111902", + "operator": "Electromaps", + "network": "Association des côtes de Garonne", + "owner:ref:FR:SIREN": "401316971", + "description": "Cadillac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31550000000, + 44.63316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-01", + "ref:EU:EVSE": "FRESEPS42218BR", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SEMOB Michelet", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218BR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38966000000, + 45.43496000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR1011;FROTHPOTHR1012", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2018-07-04", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*10*1*_*_", + "operator:email": "sav@izivia.com", + "description": "OBERSTEINBACH - MAIRIE", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68719700000, + 49.03588900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "IRVE CAGPS ATELIERS REL. 2", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "IRVE CAGPS ATELIERS REL. 2", + "ref:EU:EVSE": "FRCPIE6913905;FRCPIE6913915;FRCPIE6913925;FRCPIE6913945", + "ref": "FRCPIE6913905;FRCPIE6913915;FRCPIE6913925;FRCPIE6913945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37945900000, + 48.65014900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597855", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/GXUJA6EA0H", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6438660694727151820", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65493800000, + 48.70277100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "300 kW;72 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A62 Frontonnais Nord", + "start_date": "2024-02-16;2022-12-14", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP104101", + "charging_station:output": "50 kW;300 kW;72 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36090700000, + 43.81302600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3159223086262784966", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/AERRQIG8TN", + "operator": "Freshmile | FR*FR1", + "ref": "492000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40689900000, + 44.61638500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Volvo - Colmar", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEVERLINEVOLVO680001", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-17:00", + "start_date": "2022-07-27", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36697400000, + 48.09582800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P7752912113134865227", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLYOFK8LIEHOL2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1161732" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20657400000, + 49.28622900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref": "FRS28E128891", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - PIERRES - Pl. Marcel Rouleau", + "network": "MODULO - PIERRES - Pl. Marcel Rouleau", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E128891", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56743100000, + 48.59119700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/PISAGDEROT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461877", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P8958774023521550981", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179000000, + 49.19058200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P1717409996413203194", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1128033", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA6L9RTONUAA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36916300000, + 48.82603300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50270001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-01-04", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "description": "BARNEVILLE CARTERET - Gare Maritime", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79061590000, + 49.37238800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-01-23", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "PONT DE L'ARN - Place Du Moulin", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8120900121;FRS81E8120900111;FRS81E8120900112;FRS81E8120900122", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40567072075, + 43.50416423825 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680599;531680601;531680600;531680594;531680595;531680596;531680597;531680598", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FRHPCPNF059983", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-09-05", + "charging_station:output": "300 kW", + "description": "REL.LA DEFENSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24790000000, + 48.89110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49002001;FRS49P49002A", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-22;2024-03-22;2024-05-14", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Allonnes - Gallart;ALLONNES - Parking Rue Jean Gallart" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02102200000, + 47.29165800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOLESMES - Place du Maréchal Foch - Marché Couvert", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-13", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRS59E59571003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49697170000, + 50.18708390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "10", + "network": "pass pass électrique", + "description": "ARRAS - Allée du 7e Chasseur", + "ref:EU:EVSE": "FRH06E620410161;FRH06E62041016", + "start_date": "2023-11-13;2023-10-23;2024-02-21", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76126910000, + 50.28173800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "ARAMON - Parking Avenue Jean Moulin", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS30E30012001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68084200000, + 43.88897600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-10-13", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Saint-avé - Rue 5 Août 1954", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PHGDFBF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73721500000, + 47.69030300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "ref": "B143", + "ref:EU:EVSE": "FRLMSE12346052761;FRLMSE12346052762", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "socket:type2_combo:output": "120 kW", + "description": "POITIERS REPUBLIQUE HPC-1", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34631000000, + 46.61766000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand;Métropolis/FR*MGP*P93050*A", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref": "446933", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93050A", + "start_date": "2021-10-06", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52954700000, + 48.85689300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-12-03", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB83036A", + "operator": "Séolis", + "description": "Réseau Alterbase - Verruyes - Centre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28876170000, + 46.51659440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "5720d842-fcf2-4e6f-897d-bf0d2b6bfa10", + "network": "Infrastructures de recharge pour véhicules électriques AUTORECHARGE", + "operator": "AUTORECHARGE ", + "owner:ref:FR:SIREN": "849533070", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAU1E0025011", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Agape Hôtel Niort Bessines", + "operator:email": "contact@autorecharge.fr", + "start_date": "2022-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50000000000, + 46.30000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A6 Les Chères Est", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRLMSP89369701", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72961100000, + 45.90311800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Magnac laval | Place de la République", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "b4d4b00e-1e92-5fac-94b3-5fbc59ead9d9", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16707800000, + 46.21491500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E161737;FRS88E161739", + "network": "MODULO - CORCIEUX - Pl. du Général de Gaulle", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS88E161737;FRS88E161739", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CORCIEUX - Pl. du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87923000000, + 48.17260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-06", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "SOYAUX", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSSYAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21161000000, + 45.63482000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3604EVCP02;LFR3604EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3604EVCP02;LFR3604EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "AMILLY Vignes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73585200000, + 47.97750300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-12E, Avenue Jean Compadieu", + "ref:EU:EVSE": "FRM13PUDCFNPL8VK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43225000000, + 43.32013000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "capacity": "3", + "opening_hours": "24/7", + "ref": "30398", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/XEESI7SAZY", + "ref:EU:EVSE": "FREBNPXEESI7SAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56418400000, + 44.94441100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/OUS5RTX2UW", + "ref:EU:EVSE": "FRFR1P253444725418507880", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "801645", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57620300000, + 50.34574600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Ibis Budget - Cosne-Cours-sur-Loire", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBUCCL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-12-23;2023-12-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91935950982, + 47.38301994868 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "charging_station:output": "50 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPIZWGVKKKLW;FREBNP8057382767867569042", + "ref": "346772;IZWGVKKKLW", + "description": "Réseau eborn/IZWGVKKKLW;Manosque, Parking de Pré Combeaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79858000000, + 43.81700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - B&B Mont de Marsan", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP40192A", + "start_date": "2024-01-15", + "ref:EU:EVSE": "FRETIP40192A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44854800000, + 43.91790700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "ref": "FR*SOD*S*OTHR*241*1*_*_", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "PAYS RHENAN - GARE DE SESSENHEIM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR24111;FROTHPOTHR24112", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.98897800000, + 48.79654700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6600295", + "capacity": "2", + "description": "SODALEC-PACE STATION 1", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SODALEC-PACE STATION 1", + "ref:EU:EVSE": "FRCPIE6600295", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76419900000, + 48.14602300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "368941", + "ref:EU:EVSE": "FRFR1P8141891666711784440", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/TWXRC5Z5LN", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56676800000, + 44.86308600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "WAAT", + "amenity": "charging_station", + "ref": "1013463", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s421850", + "ref:EU:EVSE": "FRWA2P8910764242031123599", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35405300000, + 48.74866500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3891EVCP02;LFR3891EVCP01;529232", + "network": "LIDL;Freshmile France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "LFR3891EVCP02;LFR3891EVCP01;FRFR1P3312434974209607353", + "description": "LONGUEAU - L' arc;Freshmile France/G1QR7RBCW6", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "socket:type2_combo:output": "120 kW", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37129300000, + 49.86878400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-16", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ABB T54 HyperU Rumilly 4", + "ref:EU:EVSE": "FRSWSE1000149993", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "ref": "1000149993", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94810000000, + 45.85595200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/MEKQGP7IH8", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "454089", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8898509197890016659" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84660000000, + 46.78260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "description": "Mercedes - Arnas", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDMERCEDES694001", + "operator:email": "support@driveco.com", + "start_date": "2023-06-30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73244200000, + 46.00204900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - AUTHON DU PERCHE - Pl. de la mairie", + "ref": "FRS28E218688;FRS28E218689", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - AUTHON DU PERCHE - Pl. de la mairie", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E218688;FRS28E218689", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-09-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89713700000, + 48.19469100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "973203284", + "start_date": "2021-05-07", + "capacity": "7", + "operator:email": "tente.bornes@laposte.net", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 08:30-17:00", + "charging_station:output": "22 kW", + "operator": "TENTE SAS", + "ref": "EVB-P1929472", + "network": "TENTE", + "description": "Parking Tente" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56750860000, + 48.52013390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P4696678121321292851", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/W0DDDMUY3L", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "39779" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05944000000, + 48.29512800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576140;576137;576152;576134", + "network": "Zephyre", + "description": "Zephyre/LP006A74;Zephyre/LP006A77;Zephyre/LP006A76;Zephyre/LP006A7F", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P1120850544086419139;FRZP1P9136955861825486753;FRZP1P5385190154688558220;FRZP1P9005028590508961291", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60997600000, + 43.11237200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2023-04-05", + "capacity": "2", + "description": "Redeim_Gueret", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88846290000, + 46.18356320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/XVHDDR", + "operator:email": "roaming@freshmile.com", + "ref": "34012", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PXVHDDR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89291000000, + 44.15740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST12612;FRIZFPFAST12611;FRIZFPFAST12613", + "ref": "FR*SOD*S*FAST*126*1*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "start_date": "2024-05-30", + "description": "IZIVIA FAST - MC DONALDS - SAINT-YRIEIX-LA-PERCHE", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20736414418, + 45.51828155420 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VERDES - Pl. de l'église", + "ref:EU:EVSE": "FRS41E4328;FRS41E4329", + "description": "MODULO - VERDES - Pl. de l'église", + "ref": "FRS41E4328;FRS41E4329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42874100000, + 47.95886500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PSULPICE", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "38779", + "description": "Mouv'Oise/SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11842000000, + 49.34640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-10-16", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*41*2*_*_;FR*SOD*S*LYON*41*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON4122;FRGLYPLYON4121;FRGLYPLYON4111;FRGLYPLYON4112", + "opening_hours": "24/7", + "description": "TDL04 - STADE DU SAUZE", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75531800000, + 45.76505400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT CHAPTES - Services Techniques", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30241001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27750300000, + 43.96722100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56P6768595289561952604", + "description": "Mobilité électrique 56/EUTTDT", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "346586" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38363000000, + 47.81070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f77e415b-bcf9-4b98-923e-c2d6202963f4", + "description": "BASTIDE SAINT PAUL", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "ref:EU:EVSE": "FRLUMEBASTIDEVENCE1", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13000000000, + 43.68000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref": "951473", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/d626959f-569a-42ea-addc-aacb8707540f", + "operator": "Mobilygreen | FR*MW1", + "ref:EU:EVSE": "FRMW1P3519150884409516974" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29078000000, + 45.88790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*176*1*_*_", + "operator": "IZIVIA", + "description": "SIGEIF - 30 AVENUE JEAN JAURES - VAIRES-SUR-MARNE", + "ref:EU:EVSE": "FRSIGPSIGE17611;FRSIGPSIGE17612", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63741830000, + 48.87365620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Volvo Construction Equipement France 37 - 78190 - 3", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCG0E001493;FRCG0E001491;FRCG0E001492;FRCG0E001494;FRCG0E001495;FRCG0E001496", + "start_date": "2024-08-27", + "charging_station:output": "22 kW", + "network": "Volvo Construction Equipement France 37 - 78190 - 3", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001493;FRCG0E001491;FRCG0E001492;FRCG0E001494;FRCG0E001495;FRCG0E001496" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98636300000, + 48.76598800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2023-07-07;2023-06-16", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - A83 Deux-Sèvres", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89880158", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50736500000, + 46.42841200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-08", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "description": "ESCOURCE - ZONE DACTIVITES;MOBIVE | Escource | Zone d'Activités", + "ref": "337943c9-1ae6-544a-9715-6cdcdbf959cc;FR*SOD*S*MB40*58*1*_*_", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref:EU:EVSE": "FRS40PMB405814;FRS40PMB405813;FRS40PMB405812;FRS40PMB405811;Non concerné" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97200100000, + 44.14580900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE77MXMA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "MEAUX - La Poste", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88307600000, + 48.95721700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Allego Carrefour Sallanches", + "description": "Allego Carrefour Sallanches", + "amenity": "charging_station", + "start_date": "2022-09-22", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9005352;FRALLEGO9003762;FRALLEGO9003761;FRALLEGO9005351;FRALLEGO9005371;FRALLEGO9005372", + "ref": "FRALLEGO9005352;FRALLEGO9003762;FRALLEGO9003761;FRALLEGO9005351;FRALLEGO9005371;FRALLEGO9005372" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62838270000, + 45.95262150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "ref:EU:EVSE": "LFR3468EVCP03;LFR3468EVCP01;LFR3468EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "ref": "LFR3468EVCP03;LFR3468EVCP01;LFR3468EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "LYS LEZ LANNOY Guesdes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20952100000, + 50.66888800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTPELLIER - Route De Gange", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34172003", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84868500000, + 43.63484000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/SWKGDBKOKM", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSWKGDBKOKM", + "network": "Réseau eborn", + "ref": "37177", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02832200000, + 45.25577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/KBVONDUIIB", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6915060636863502487", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505611", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37051200000, + 48.89841900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2023-08-04;2020-06-22;2023-12-11", + "description": "HYÈRES - Casino", + "ref:EU:EVSE": "FRP07E83069002;FRP07E830690021;FRP07E830690022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13140200000, + 43.11866800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/YP50UQ5XFT;Hyères, Avenue des Monocotyledones", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "YP50UQ5XFT;529946", + "start_date": "2022-06-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP3104059901827481076;FREBNPYP50UQ5XFT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10968900000, + 43.12475000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Narbonne - Hôtel Campanile", + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPNARHC", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-03-08", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98354000000, + 43.16878700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04;2024-03-19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "10", + "description": "Parking gare de Fontainebleau - EFFIA", + "ref:EU:EVSE": "FRP01E77014001;FRP01E770140011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72717800000, + 48.41580200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "network": "SONEPAR LIBOURNE", + "ref:EU:EVSE": "FRCPIE6631655", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "description": "SONEPAR LIBOURNE", + "ref": "FRCPIE6631655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22637100000, + 44.91082100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "ref": "IGJVLDRJPL", + "operator:email": "exploitation@easycharge-vinci.COM", + "description": "GAP , Parking Relais du Stade Nautique", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPIGJVLDRJPL", + "network": "Easycharge services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06130988000, + 44.54188269000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1627", + "ref": "FR*V75*PPX16*27", + "description": "Paris | Avenue Victor Hugo 180", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27621940000, + 48.86581880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20675250000, + 49.97160850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346505", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/XIXGQQFMOL", + "capacity": "3", + "opening_hours": "Tu,We,Mo,Fr,Th 08:00-16:00", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6111330245403507148" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98651900000, + 49.19050300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "opening_hours": "Mo-Sa 07:30-19:00", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779463223", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "operator": "TotalEnergies Marketing France", + "description": "Entrepôt du Bricolage - Bassens", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "charging_station:output": "22 kW", + "capacity": "10", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94937713069, + 45.57229420214 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1180128", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLZ87ATWN319JQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2546203144327301962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39705400000, + 48.25755000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "start_date": "2022-04-06", + "description": "BMW - Brest", + "ref:EU:EVSE": "FRSSDPOUESTBMW292001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46830100000, + 48.42031300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2912400", + "charging_station:output": "22 kW", + "description": "Lesneven-Rue Valy Goz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32038300000, + 48.57349800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11090001", + "description": "CEPIE - Parking Du Stade- Rue Du Mauzac", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24861111111, + 43.10388890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hôtel Mercure Quimper Centre - 22 kW AC", + "network": "Mercure Quimper Centre", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "1e3f92d8-724c-4c7d-b30e-16a49096b038", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "451338511", + "operator:email": "sav@zephyre.fr", + "ref:EU:EVSE": "FRZP1PEAC97501;FRZP1PEAC97414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09301400000, + 47.99417650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AX LES THERMES - La Chapelle 4 Rue St Jerome", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS09E09032002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83701300000, + 42.71950500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PBZJXPH", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/BZJXPH", + "ref": "64712", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79988000000, + 49.81860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*267*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - RETHEL", + "start_date": "2024-09-11", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST26712;FRIZFPFAST26711;FRIZFPFAST26713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37037903525, + 49.52113964246 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-06-01;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44041A;FRS44E44041001", + "description": "OuestCharge - Diva Sp - La Chevroliere - Lemaitre;LA CHEVROLIERE - Rue Alfred Lemaitre", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61073000000, + 47.09186700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "CLAYE-SOUILLY - Charles de Gaulle", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS77E77118003", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68868000000, + 48.94543300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARREFOUR MARKET BRANTÔME", + "network": "CARREFOUR MARKET BRANTÔME", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000085913" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64816054043, + 45.37949195517 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - MONTREUIL EN TOURAINE - Rue du Bourg", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E220169;FRS37E220171", + "ref": "FRS37E220169;FRS37E220171", + "network": "MODULO - MONTREUIL EN TOURAINE - Rue du Bourg", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94856000000, + 47.48711400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "39__CCBP", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "CCBP - Pompey - Parking 2", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "09d3222a-9d2e-5465-832e-11225367352d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13258100000, + 48.77185400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P73182A", + "capacity": "2", + "amenity": "charging_station", + "network": "MAIRIE DE MOUXY", + "description": "MAIRIE DE MOUXY", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P73182A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93532300000, + 45.68311300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "6aeccf52-0570-54b0-b66f-7d686d5eaf7d", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | BELIS - Parking City Stade", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46233500000, + 44.06388500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*292*1*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29212;FRSIGPSIGE29211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 3 RUE CHARLES DE GAULLE - DEUIL-LA-BARRE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32513500000, + 48.97538300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MDF MOBILIER FRANCE", + "ref": "FRCPIE6513335", + "capacity": "2", + "amenity": "charging_station", + "network": "MDF MOBILIER FRANCE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6513335" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10379800000, + 49.07497400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/QK9VIQB32M", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5409532521677317528", + "ref": "454323" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198000000, + 45.04544200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Saint Genies | Place de la Gare", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "63bd6ff4-8af2-5cc1-9191-f743c77c68a6", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25350600000, + 44.99397700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB33137A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "description": "Réseau AlterBase - St Pardoux-Soutiers - Zone Commerciale", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2019-03-05", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29676800000, + 46.57249700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "description": "Airbus ADS - Toulouse - Parking PKS1", + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS314003", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50160800000, + 43.56061400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTMIRAIL Guinotterie", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR1870EVCP01;LFR1870EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR1870EVCP01;LFR1870EVCP02", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55672300000, + 48.87070100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "414753", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/KWO1HTGHLY", + "ref:EU:EVSE": "FRM45P6673703790760718401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89113500000, + 47.86341300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ14922;FRA16PWIIZ14921;FRA16PWIIZ14911;FRA16PWIIZ14912", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*149*1*_*_;FR*SOD*S*WIIZ*149*2*_*_", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "VALBERG - FRONT DE NEIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92884800000, + 44.09525300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2062851768841598744", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLTFLW7WVUFXNK", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "1111896", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.33639600000, + -20.92621400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PBCHPRN", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Brico Cash - Champagne-sur-Oise", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25362368746, + 49.14454331447 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Colombier-Le-Vieux, Place du Marché;Réseau eborn/RL5NBTAUSM", + "ref": "48304;RL5NBTAUSM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRL5NBTAUSM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69543900000, + 45.06615400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Les-Essarts-le-Roi - CC Maison Neuve", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-09-06", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA", + "charging_station:output": "300 kW;150 kW", + "ref:EU:EVSE": "FRELCPLERMN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88427900000, + 48.71940300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "LA CIOTAT - Centre", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-04-26;2023-10-24;2023-07-20", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "21", + "ref:EU:EVSE": "FRP07E13028001;FRP07E130280011;FRP07E130280012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60806184708, + 43.17907967772 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAUDRY MUSEE", + "start_date": "2023-03-23", + "capacity": "2", + "amenity": "charging_station", + "network": "CAUDRY MUSEE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6698905", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6698905" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41133400000, + 50.12514200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHP4565015684994138485", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "756915", + "opening_hours": "24/7", + "description": "Easy Charge/Q01LMEG8IN", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39118000000, + 47.28521000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "description": "ENGIE Vianeo - A81 St-Denis d'Orques", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP103113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32567400000, + 48.02371900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P243552283714538275", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile/DW28ZLLDTL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56233000000, + 48.28403400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue de Grenelle 152", + "ref:EU:EVSE": "FRV75PPX0713", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "ref": "FR*V75*PPX07*13", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31058800000, + 48.85806000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3427518616756091975", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1112634", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMSXD3JF1JVLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75492300000, + 48.61549500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-09", + "capacity": "6", + "network": "DRIVECO", + "description": "Seat -Liévin", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLEMPEREURSEAT628001", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78529100000, + 50.42575800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79888", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SYDED/QJANFK", + "ref:EU:EVSE": "FRS25PQJANFK", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01959900000, + 47.23404300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "ref:EU:EVSE": "FRS18E186607;FRS18E186608", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - BENGY SUR CRAON - Rte. de Bourges", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E186607;FRS18E186608", + "network": "MODULO - BENGY SUR CRAON - Rte. de Bourges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74840700000, + 47.00275600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SUPER U TRUCHTERSHEIM", + "start_date": "2021-12-20", + "capacity": "8", + "operator:email": "exploitation@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "FRESHMILE", + "network": "FRESHMILE", + "owner:ref:FR:SIREN": "343172227" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61000000000, + 48.66000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-01-11;2022-01-01", + "ref": "FR*SOD*S*OTHR*287*17*_*_;FR*SOD*S*OTHR*287*16*_*_;FR*SOD*S*OTHR*287*15*_*_", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPOTHR287171;FRQPKPOTHR287151;FRQPKPOTHR287161", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "description": "QPARK - LA DEFENSE - COROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24673900000, + 48.89085700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BELLEGARDE-MARSSAL - Route de Marsal", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81026001", + "charging_station:output": "22 kW", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28092100000, + 43.91686900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "bench" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20617260000, + 49.97190530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Lacq Audéjos Nord;Labenne Ouest", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "start_date": "2020-06-13;2020-11-13", + "ref": "FRIOYE405252;FRIOYE405251;FRIOYE405203;FRIONE402700;FRIOYE405204;FRIOYE405205;FRIOYE405206;FRIOYE405253", + "network": "Labenne Ouest;IONITY GMBH", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE405252;FRIOYE405251;FRIOYE405203;FRIONE402700;FRIOYE405204;FRIOYE405205;FRIOYE405206;FRIOYE405253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42047300000, + 43.58677500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44155A;FRS44E44155001", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAINT-COLOMBAN - Avenue Du Général De Gaulle;OuestCharge - Diva Sp - Saint-Colomban - Gaulle", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-27;2024-04-12", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58056000000, + 47.01196100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77385001;FRS77P77385A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-14;2015-07-01", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61BXDNWWQ0ST5558Y4", + "description": "Rebais;REBAIS - Avenue Georges Clémenceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23313100000, + 48.84841200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-04;2021-04-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH01E62811002", + "network": "pass pass électrique", + "description": "THÉROUANNE - Résidence les Morins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25815800000, + 50.63579200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - PERNAY - Rue de la mairie", + "description": "MODULO - PERNAY - Rue de la mairie", + "ref:EU:EVSE": "FRS37E5515;FRS37E5514", + "ref": "FRS37E5515;FRS37E5514" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49908000000, + 47.44466300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PDNSWQT", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "32860", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/DNSWQT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34107000000, + 47.77430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "CHM01 - LANESSAN SUD", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*165*3*_*_;FR*SOD*S*LYON*165*1*_*_;FR*SOD*S*LYON*165*2*_*_;FR*SOD*S*LYON*165*4*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON16531;FRGLYPLYON16511;FRGLYPLYON16521;FRGLYPLYON16541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79395800000, + 45.79368100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "320 kW", + "ref": "1131498;1131501", + "amenity": "charging_station", + "charging_station:output": "320 kW;22 kW", + "ref:EU:EVSE": "FRMFCP7461442889200114138;FRMFCP6695021807906533206", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "opening_hours": "24/7", + "capacity": "1;6", + "description": "Mobilize Fast Charge/e2e6ff12-455a-4b5a-9c28-f0ec42694634;Mobilize Fast Charge/f2262d22-a212-4876-b16b-4c419aedd472", + "network": "Mobilize Fast Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18254500000, + 45.68547400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "description": "Volvo - Dechy (PDL 2);Volvo - Dechy ", + "opening_hours": "24/7", + "capacity": "3;5", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPLEMPEREURVOLVO591872;FRSSDPLEMPEREURVOLVO591871", + "start_date": "2023-01-30;2020-01-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12052900000, + 50.34439900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PENBOCH BORNE 1", + "ref:EU:EVSE": "FRCPIE6589125", + "capacity": "2", + "amenity": "charging_station", + "network": "PENBOCH BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6589125", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80018000000, + 47.62158600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "11 kW;7.4 kW", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "594413", + "description": "Leclerc/ICFNBQATMH", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P5723295198023620349" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03041300000, + 50.56099500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Captieux | Place de L'Eglise", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "44e6dcaa-f919-5b9b-92d5-bc1e15f6a84b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26100400000, + 44.29200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "CHAMPAGNE SUR OISE - Rue de Chambly", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95134002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23996336965, + 49.14380550810 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Green To Wheel", + "socket:type2_combo:output": "50 kW", + "network": "CASINO VALENCE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPCAS014", + "description": "CASINO VALENCE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "start_date": "2022-02-10", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87930400000, + 44.90676600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR1401EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR1401EVCP01", + "charging_station:output": "22 kW", + "description": "NICE CAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14314900000, + 43.66568400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PW22UGJSMYD", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Aix-en-Provence, avenue François Argo, Parking Annexe Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35443700000, + 43.49132300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402485", + "description": "SDEY/DU2KLXCRUO", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P2142205193294128554", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39692600000, + 48.29543900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-25", + "description": "CANNES - PARKING PLATANES", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ27812;FRA16PWIIZ27811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*278*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00624380000, + 43.55845730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4721975461568076083", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLNOAX6DY11CY4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971918", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84335500000, + 44.87245800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "description": "Intermarché - Vireux-Molhain", + "amenity": "charging_station", + "start_date": "2024-03-28;2024-04-24", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMRBVIR", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72406493443, + 50.07579681274 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Vallouise, Pelvoux;Réseau eborn/XVHD82BG9X", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPXVHD82BG9X", + "start_date": "2020-06-21", + "ref": "48469;XVHD82BG9X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49003100000, + 44.84408600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP1988328569931589368", + "ref": "1137552", + "capacity": "5", + "charging_station:output": "120 kW;22 kW", + "description": "EVzen/5083A7E2-A38F-4A72-8AC1-E063E1AB708E", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03910500000, + 43.10761300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR60312;FROTHPOTHR60311;FROTHPOTHR60321;FROTHPOTHR60322", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "INTERMARCHE - VILETTE DANTHON", + "ref": "FR*SOD*S*OTHR*603*1*_*_;FR*SOD*S*OTHR*603*2*_*_", + "start_date": "2023-03-08", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13177600000, + 45.79303300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Sury-Le-Comtal, Boulevard M Orelu;Réseau eborn/KWASMIIC7L", + "opening_hours": "24/7", + "ref": "31648;KWASMIIC7L", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPKWASMIIC7L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18468200000, + 45.53895900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ERZCZN;231571", + "start_date": "2017-05-17", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPERZCZN", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ERZCZN;Commentry, Auguste Blanqui" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74365000000, + 46.28690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Epinal - Gare", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2023-12-11", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44197900000, + 48.17830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/B61GBWQAVL", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2860096747393673198", + "opening_hours": "24/7", + "ref": "541730", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.08811200000, + 47.62961000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "ref": "FR*V75*PPX14*11", + "amenity": "charging_station", + "description": "Paris | Avenue Jean Moulin 34", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1411", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32373550000, + 48.82668070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLNADFUIM2B211", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3393054357274344645", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1130442", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76202300000, + 48.58577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "opening_hours": "Mo 09:00-12:30, Mo 14:00-18:00, Tu 09:00-12:30, Tu 14:00-18:00, We 09:00-12:30, We 14:00-18:00, Th 09:00-12:30, Th 14:00-18:00, Fr 09:00-12:30, Fr 14:00-18:00, Sa 09:00-12:30, Sa 14:00-18:00, Su 09:00-12:30, Su 14:00-18:00", + "network": "DRIVECO", + "description": "Les Dunes de Contis (Camping Siblu) - Saint-Julien-en-Born", + "amenity": "charging_station", + "start_date": "2022-03-23", + "ref:EU:EVSE": "FRSSDPSIBLU401701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26149100000, + 44.08249100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "start_date": "2016-09-30", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900126", + "ref:EU:EVSE": "FRS27PMONTREUILMAISONMEDI", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48073400000, + 48.93842600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22042001", + "charging_station:output": "22 kW", + "description": "Coatreven-Rue de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34259200000, + 48.76889000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOUGIVAL - Rue De La Cour Du Moulin", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY05E78092004", + "network": "Seymaborne", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13955100000, + 48.86079200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE169", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "description": "Moy_Park_Marquise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71512500000, + 50.82315300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1108170", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP200330310056057275", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "description": "WAAT/FRWATLFZENSOT7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26663300000, + 48.85974600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE126505;FRIOYE126503;FRIOYE126504;FRIOYE126506;FRIOYE126551;FRIOYE126552;FRIOYE126553", + "capacity": "7", + "description": "Chartres Bois Paris", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "ref:EU:EVSE": "FRIOYE126505;FRIOYE126503;FRIOYE126504;FRIOYE126506;FRIOYE126551;FRIOYE126552;FRIOYE126553", + "network": "Chartres Bois Paris", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57877580000, + 48.46728960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS51E50146;FRS51E50145", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS51E50146;FRS51E50145", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - RILLY LA MONTAGNE - Pkg. de la gare", + "description": "MODULO - RILLY LA MONTAGNE - Pkg. de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04100700000, + 49.16616600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANNEMEZAN - place du château", + "ref:EU:EVSE": "FRS65E65258002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-11-22", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38336600000, + 43.12680400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE001302;FRIENE001301", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE001302;FRIENE001301", + "operator": "NW IECharge", + "description": "Rue", + "network": "Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69244004000, + 50.26380290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PEZENAS - Parking Herault Energies", + "start_date": "2021-11-22", + "ref:EU:EVSE": "FRS34E34199001", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;150 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40988333300, + 43.46018610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Férel - Rue du Pré de la Dame", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PPPYXVZ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34410500000, + 47.48098000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4994207906055272524", + "network": "Freshmile France", + "description": "Freshmile France/P5FSDYQORG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "492045" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93411100000, + 43.95327400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VEZENOBRES - Souville Et Lasparens", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS30E30348001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13826000000, + 44.05069500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Village Maurin - Ford", + "amenity": "charging_station", + "start_date": "2020-10-22", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINFORD661001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90598200000, + 42.66213000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCARP35288A", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "description": "Carrefour Contact Saint-Malo", + "opening_hours": "24/7", + "ref": "FRCARP35288A", + "charging_station:output": "22 kW", + "start_date": "2023-04-07", + "operator:email": "contact@e-totem.fr", + "network": "Carrefour Contact Saint-Malo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97976050000, + 48.66821070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "description": "HOTEL MAISON DES CONSULS", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-01-24", + "ref:EU:EVSE": "FRLUMEMAISONCONSULS11", + "capacity": "3", + "ref": "1eb8e7b4-62ee-474b-acd4-b6023d6614fb", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87458950000, + 43.08868300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Denis d'Oléron | Rue Marc Guyonnet", + "operator": "191__SDEER17", + "ref": "440d9dac-2934-5d1c-b48a-85b2d718d8ac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37808800000, + 46.03020400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE44NABH;FRSE1PSE44NABB;FRSE1PSE44NABC;FRSE1PSE44NABD;FRSE1PSE44NABE;FRSE1PSE44NABF;FRSE1PSE44NABG", + "amenity": "charging_station", + "capacity": "1", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-07-28;2023-06-30", + "charging_station:output": "22 kW", + "description": "Parc Perray Ouest - Nantes", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50899600000, + 47.24658800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "description": "BornEco/64ddfdac5e05ac8c68bbe3e3", + "ref": "906696", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP2263660665890851159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22673100000, + 45.67949400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P5987148440735450552", + "operator:email": "roaming@freshmile.com", + "ref": "446717", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "11", + "description": "Leclerc/HL3QNBDPQC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276200000, + 49.73437300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Salon-de-Provence, Avenue du Dauphiné", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PREOLZZUWZG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09908100000, + 43.65232000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P7577058224129488996", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402503", + "description": "SDEY/G3EJY8H0MI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57964200000, + 47.85128000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "R3 - Montdidier", + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89882148", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "start_date": "2023-12-21", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56693200000, + 49.64700700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P964299566866262417", + "opening_hours": "24/7", + "ref": "1184920", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLWP2WBFW16M6B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98904700000, + 42.53067000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Super U - Liffol-le-Grand", + "start_date": "2023-12-08", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYULLG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57612991499, + 48.32234713267 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/CTXCZNNDNM;Vinezac, Place Chalendas", + "opening_hours": "24/7", + "ref": "CTXCZNNDNM;32668", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPCTXCZNNDNM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32584200000, + 44.53750900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP8185787273238709188", + "description": "CARF - Bornes Publiques/07A6ED91-C96F-4871-AC56-6982896A4AA0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "683225", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49975700000, + 43.77374600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "VILLENEUVE 2 - PKG NIV0", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR81131;FROTHPOTHR81122;FROTHPOTHR81112;FROTHPOTHR81111;FROTHPOTHR81121;FROTHPOTHR81132;FROTHPOTHR81141;FROTHPOTHR81142", + "network": "NHOOD", + "start_date": "2024-04-03", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*811*1*_*_;FR*SOD*S*OTHR*811*2*_*_;FR*SOD*S*OTHR*811*3*_*_;FR*SOD*S*OTHR*811*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14446700000, + 50.62333300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "WXTEE2IGIX;85931", + "ref:EU:EVSE": "FREBNP6243710866748695964;FREBNPWXTEE2IGIX", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Château-Arnoux-Saint-Auban, Pl. de la Résistance;Réseau eborn/WXTEE2IGIX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00962400000, + 44.09517600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPLLSUDE0H32MFHF", + "operator:email": "contact@reseau-eborn.fr", + "description": "Jongieux, Route de la Charvaz", + "socket:type2_combo:output": "24 kW", + "ref": "LLSUDE0H32MFHF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79964658000, + 45.73783902000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "UNION AGRICOLE DU PAYS DE LOIRE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*411*4*_*_;FR*SOD*S*OTHR*411*3*_*_;FR*SOD*S*OTHR*411*1*_*_;FR*SOD*S*OTHR*411*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR41141;FROTHPOTHR41131;FROTHPOTHR41121;FROTHPOTHR41111", + "start_date": "2022-06-14", + "operator:email": "sav@izivia.com", + "description": "UNION AGRICOLE DU PAYS DE LOIRE - BELLEVIGNE-EN-LAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50361700000, + 47.26947400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "597837", + "ref:EU:EVSE": "FRFR1P967474719066230635", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/GKA7W3JCGW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06194400000, + 45.57570700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP29777", + "capacity": "12", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Varneville-Bretteville, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04658900000, + 49.64503600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/A5I8VJ3JUL", + "capacity": "2", + "amenity": "charging_station", + "ref": "440970", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4016505892277419001", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02598400000, + 48.73767400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP02917", + "operator": "Total Charging Services", + "charging_station:output": "7 kW", + "opening_hours": "Mo-Fr 08:00-12:15,Mo-Fr 13:30-19:00,Sa 08:00-12:30,Sa 13:30-17:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP02917", + "description": "Carglass Services SAS - MARIGNANE", + "owner:ref:FR:SIREN": "425050556", + "network": "Carglass Services SAS - MARIGNANE", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22134592913, + 43.41372950125 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P475615210282909988", + "ref": "368818", + "opening_hours": "24/7", + "description": "Freshmile France/DPQRIOQN8V", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57003600000, + 44.82461900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461778", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/J9E72TSRLI", + "ref:EU:EVSE": "FRS14P2728904181661659125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04552900000, + 48.97282400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "network": "SCEA LES FUIES;SCEA LES FUIES ", + "ref": "E175027;E175028", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZMSE175028;FRZMSE175027", + "capacity": "1", + "description": "IES2022032881180001 ;IES2022032881180001", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "437983224", + "opening_hours": "Lu- Ve 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63768000000, + 46.36722800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-12", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Kiloutou_MarcqB", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE383" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11309900000, + 50.66425300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78498001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "POISSY - Rue Jean Claude Mary" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04233900000, + 48.93254500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE469206;FRIOYE469204;FRIOYE469201;FRIOYE469202;FRIOYE469203;FRIOYE469205;FRIOYE469251;FRIOYE469252;FRIOYE469253", + "opening_hours": "24/7", + "start_date": "2023-07-12", + "capacity": "9", + "network": "Saint Junien", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE469206;FRIOYE469204;FRIOYE469201;FRIOYE469202;FRIOYE469203;FRIOYE469205;FRIOYE469251;FRIOYE469252;FRIOYE469253", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Saint Junien" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91979400000, + 45.89778300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Montsurs - Cenere", + "operator": "SPIE CITYNETWORKS", + "start_date": "2021-04-08", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS53P53161A", + "network": "TEM53", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55697500000, + 48.13505880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66138001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "PEYRESTORTES - Rue De L'Europe", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-12", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85692800000, + 42.75495800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2024-04-08", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE013601;FRIENE013602", + "ref": "FRIENE013601;FRIENE013602", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Lacres", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Lacres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74387000000, + 50.59737900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35136002B1", + "network": "OUEST CHARGE", + "description": "JANZE - 10 rue charles lindberg ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48955300000, + 47.95188500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-LTSH-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "VAL AU PERCHE", + "ref:EU:EVSE": "FRS61P61484A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69029700000, + 48.26481400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "694328", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/USCLUJN5UJ", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P278219892908932417", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75677300000, + 45.54369100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "46564", + "ref:EU:EVSE": "FRS31PPWJRPS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/PWJRPS", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18007000000, + 43.74250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92050023", + "start_date": "2023-01-31", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "NANTERRE - Boulevard Pesaro" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21977471173, + 48.89690981228 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000574;FRCG0E000573", + "charging_station:output": "11 kW", + "network": "SCM Ophtabaie - 22190 - 1", + "operator:email": "info@chargeguru.com", + "start_date": "2023-08-22", + "description": "SCM Ophtabaie - 22190 - 1", + "ref": "FRCG0E000574;FRCG0E000573" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78904500000, + 48.54727800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE1932;FRM06PNICE1921;FRM06PNICE1922;FRM06PNICE1931", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE SAINT-ROCH RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-03-01;2022-03-04", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*19*3*_*_;FR*SOD*S*NICE*19*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29296900000, + 43.70875300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Bouglon | Parking Aire de Repos", + "ref": "7a8f5e10-2f4e-58f0-b78c-9ddc700900ef", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10290800000, + 44.38592900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE3351;FRSIGPSIGE3321;FRSIGPSIGE3311;FRSIGPSIGE3331;FRSIGPSIGE3341", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "description": "SIGEIF - 217 RUE DE VERSAILLES - VILLE-DAVRAY", + "start_date": "2020-09-30", + "ref": "FR*SOD*S*SIGE*33*5*_*_;FR*SOD*S*SIGE*33*4*_*_;FR*SOD*S*SIGE*33*3*_*_;FR*SOD*S*SIGE*33*2*_*_;FR*SOD*S*SIGE*33*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16507800000, + 48.81820400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76000026", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROUEN - Rue De Germont", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10609300000, + 49.44106100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST THIBAULT VI", + "ref:EU:EVSE": "LFR2685EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2685EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67640800000, + 48.86813000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "682e586f-01c6-58d0-aff8-298a0b34a367", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | La Jarrie | Rue de la Providence", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00424400000, + 46.12737900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PMONTBETONMAIR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDE82/montbetonmair", + "network": "SDE82", + "ref": "86888", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28907000000, + 44.01140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP83310GRIPRAIRIE", + "start_date": "2021-05-24", + "description": "PRAIRIE DE LA MER GRIMAUD", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83310*GRI*PRAIRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58115000000, + 43.28068700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3571EVCP01;LFR3571EVCP02", + "description": "LUNERAY République", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3571EVCP01;LFR3571EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91583200000, + 49.83220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-04;2024-01-22;2023-12-12", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;200 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMBUC", + "description": "Intermarché - Buc", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "50 kW;200 kW;22.17025 kW;100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11833517812, + 48.76719646701 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPEJWEGJHZDG", + "ref": "EJWEGJHZDG", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Toulon, Rue Henri Poincaré", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-07-23", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94080194000, + 43.11948730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP62060A", + "description": "e-Totem - INTERMARCHE AUXI-LE-CHÂTEAU", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP62060A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11773974963, + 50.22802874031 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking Saint-Étienne Fauriel - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E42218004", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40270000000, + 45.42800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-11-17", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Beaurains", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT622171", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79804400000, + 50.26316400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPSSLHC", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Saint-Sébastien-sur-Loire - Hôtel Campanile", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-02-19", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48639500000, + 47.21160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-12-07", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "ref:EU:EVSE": "FROTHPOTHR52712;FROTHPOTHR52711", + "description": "FFF - MONTGERMONT", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*527*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71002400000, + 48.15165700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-14", + "ref": "FRCPIE6731545", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6731545", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ITM SEYESSES 1 BRVE 1", + "operator:email": "info@chargepoint.com", + "description": "ITM SEYESSES 1 BRVE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31743000000, + 43.48972700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LLPI9NOLF2L2DT", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "ref:EU:EVSE": "FRFR1P84070753379341102", + "ref": "1002879", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50469800000, + 47.17967800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "start_date": "2021-05-27", + "ref:EU:EVSE": "FRURWPUNIB2762;FRURWPUNIB2761;FRURWPUNIB2752;FRURWPUNIB2751;FRURWPUNIB2742;FRURWPUNIB2741;FRURWPUNIB2731;FRURWPUNIB2714;FRURWPUNIB2712;FRURWPUNIB2711;FRURWPUNIB2713;FRURWPUNIB2721;FRURWPUNIB2722;FRURWPUNIB2723;FRURWPUNIB2724;FRURWPUNIB2732", + "description": "VELIZY 2 - PKG P11 NIVEAU M", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*UNIB*27*6*_*_;FR*SOD*S*UNIB*27*1*_*_;FR*SOD*S*UNIB*27*2*_*_;FR*SOD*S*UNIB*27*3*_*_;FR*SOD*S*UNIB*27*4*_*_;FR*SOD*S*UNIB*27*5*_*_", + "network": "UNIBAIL", + "capacity": "2;4", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21864600000, + 48.78047700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7443127805354659848", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/XU0FKMJHGO", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "505746" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53382000000, + 47.02707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Saint-Quentin, France", + "ref:EU:EVSE": "FRTSLP28609", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25355500000, + 49.85899100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/ZVUO3G8E9O", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7159798936702744980", + "operator": "Freshmile | FR*FR1", + "ref": "699074", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68872100000, + 47.83179900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "39", + "operator:email": "roaming@zunder.com", + "network": "Zunder", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "ESZUNP8541475364492883598", + "description": "Zunder/122289", + "socket:type2_combo:output": "50 kW;400 kW", + "charging_station:output": "44 kW;50 kW;400 kW;22 kW", + "operator": "Zunder | ES*ZUN", + "ref": "1033050" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89112100000, + 47.30187900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P1789661072801680417", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457614", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/ZJXRR5YPFP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22115600000, + 49.14311200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAISSAC - Foirail", + "ref:EU:EVSE": "FRS12E12120002", + "network": "Reveo", + "start_date": "2022-02-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82345600000, + 44.38407000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "880170", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA4P4700321334796047481", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA4LOU55UWWJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11843500000, + 49.48385900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49247A;FRS49E49247001", + "start_date": "2021-04-16;2024-04-10", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - La Possonniere - Mairie;LA POSSONNIERE - Place Mairie", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68845900000, + 47.37397900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2021-04-23", + "capacity": "1", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE MANS - Rue de Bellevue", + "ref:EU:EVSE": "FRS72E72181002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20611770451, + 48.01590949701 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LOCQUIGNOL - Pature d'Haisne", + "start_date": "2023-05-12", + "ref:EU:EVSE": "FRH16E59353001", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71312140000, + 50.19997210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TEILLE - Chemin Des Romains;OuestCharge - Diva Sp - Teille - Romains", + "ref:EU:EVSE": "FRS44P44202A;FRS44E44202001", + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2024-04-28;2024-04-18;2021-04-07", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27781300000, + 47.46133600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "ref": "518420", + "capacity": "3", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63342*B", + "ref:EU:EVSE": "FRS63P63342B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10440700000, + 45.55009900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59424001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "NEUF-MESNIL - Rue de Saint Amand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90669800000, + 50.26646800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BEZIERS - Av Jean Moulin", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34032004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22207331657, + 43.34787404968 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-17", + "ref:EU:EVSE": "FRSIPE94028020", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CRETEIL - Rue des Bordieres", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45212607999, + 48.80103676377 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12345904081;FRLMSE12345904082;FRLMSE12345904091;FRLMSE12345904092", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-12-08", + "description": "POITIERS REPUBLIQUE 2-1-2;POITIERS REPUBLIQUE 2-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B142" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34640000000, + 46.61768700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Nontron | Boulevard Gambetta (Parking)", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "1f8c4f08-3096-5e5e-a877-718cc53d4b85", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66208700000, + 45.53261600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE44011;FRSIGPSIGE44012", + "description": "SIGEIF - 7 BOULEVARD CHARLES VAILLANT - TREMBLAY-EN-FRANCE", + "ref": "FR*SOD*S*SIGE*440*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57017575093, + 48.94322982698 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "FOUGERES", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSUZES;FRALLPEVCARSFGERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18091200000, + 48.34716800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "TOULON Résistance", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR0881EVCP01;LFR0881EVCP02", + "ref": "LFR0881EVCP01;LFR0881EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94628300000, + 43.11756300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Sauveterre | Rue Pasteur Rennes", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7695532d-0d2f-589e-895c-3833efe724d9", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94046400000, + 43.40001700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "457090b3-5b09-5ef4-8753-b83ca34c7412", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "description": "SAINT-CHRISTOL - Chemin des Eglantiers", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49099700000, + 44.02965800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA05E78486002", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "description": "LE PERRAY EN YVELINES - Parking (Rue du Planit)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85772480000, + 48.69137820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3996EVCP01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3996EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CHATEAUROUX - Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69778600000, + 46.80557200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-07-06", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PITMYOS", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Intermarché - Yzosse", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02427600000, + 43.70694300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPP4CTJBHF9Q", + "capacity": "2", + "description": "Verclause, Parking du Supermarche;Réseau eborn/P4CTJBHF9Q", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "31984;P4CTJBHF9Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42629700000, + 44.37879700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "operator": "SPIE CITYNETWORKS", + "network": "e-Vadea", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP21111B", + "start_date": "2023-01-19;2022-12-21", + "operator:email": "assistance-commerciale@e-vadea.fr", + "opening_hours": "24/7", + "charging_station:output": "43 kW;22 kW;50 kW;150 kW;300 kW", + "description": "e-Vadea - Brognon - A31 Dijon Spoy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17247240000, + 47.42182830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-01-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCRFMBA", + "description": "Carrefour Market - Bourg-Achard", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81453340000, + 49.35674000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT695501", + "amenity": "charging_station", + "start_date": "2023-09-06", + "capacity": "4", + "charging_station:output": "50 kW", + "description": "Carrefour Market - Amplepuis", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33388400000, + 45.98239500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "description": "SEMOB Mairie Saint Etienne", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42218AQ", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "start_date": "2019-11-21", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218AQ", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38757800000, + 45.44059400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "operator": "IZIVIA", + "capacity": "2", + "network": "DALKIA-EV100", + "amenity": "charging_station", + "ref": "FR*SOD*S*IZIG*452*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "VERDUN - ANTHOUARD", + "ref:EU:EVSE": "FROTHPIZIG45212;FROTHPIZIG45211", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37949000000, + 49.15426000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6873205", + "capacity": "2", + "charging_station:output": "150 kW", + "description": "IRVE METABIEF", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "IRVE METABIEF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6873205", + "start_date": "2024-02-09", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35108000000, + 46.77337100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4590602025828566419", + "description": "Freshmile France/V9N0HA5IKV", + "network": "Freshmile France", + "ref": "699029", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59967600000, + 49.04399600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL RENNES OUEST VILLEJEAN", + "amenity": "charging_station", + "start_date": "2024-03-21", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122057", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71600000000, + 48.11710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/QNWNPEG1Z0", + "capacity": "2", + "opening_hours": "Tu,Th,We,Fr,Mo 08:00-12:00,Th,Tu,We,Mo,Fr 14:00-19:00,Sa 14:00-18:00,Sa 09:00-12:00", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P9163690484072832376", + "ref": "694301", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88118500000, + 43.58305500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Chatellerault, France", + "ref:EU:EVSE": "FRTSLP28780", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54189100000, + 46.83574700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "892350", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4107922667252355408", + "description": "Freshmile France/LLJ5P9TOFRLKYU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33830600000, + 48.00124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P6526094172955042052", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461913", + "description": "MobiSDEC/RHIZSXG2KA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90195600000, + 48.84487200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLV0WRB8B1PYWE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1818541306810518160", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1069287" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43204500000, + 49.29068900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA3LWYNTPGTR", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1127889", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P4403694560609037300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39802700000, + 47.49701100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-04-27", + "ref:EU:EVSE": "FRS50P50173003", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "CHERBOURG EN COTENTIN (EQUEURDREVILLE HAINNEVILLE) - Louise Michel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66402000000, + 49.64200700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2022-12-19", + "ref:EU:EVSE": "FRS81E8116500112;FRS81E8116500111;FRS81E8116500121;FRS81E8116500122", + "description": "MILHARS - chemin de la Rivière", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88071989470, + 44.12825884352 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "description": "RELAIS VIGNELONGUE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "ref:EU:EVSE": "FRHPCENF059650", + "start_date": "2024-08-02", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF059650", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86838100000, + 43.10798400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48099001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "description": "BOURG SUR COLAGNE (CHIRAC) - Place De La Liberté" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26457600000, + 44.52479700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "892749", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P3564205519665206531", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/LLI2WDITY2FS8E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76094800000, + 47.52739400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62746003", + "description": "SAINT-ÉTIENNE-AU-MONT - Route d'Equihen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60342500000, + 50.66685100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-10-30", + "description": "MELLAC - Kervidanou Maison De L'Économie", + "ref:EU:EVSE": "FRS29E29300004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.59220200000, + 47.87122300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2018-07-20", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Ploemeur - Allée Laurent Esvan - Mairie", + "ref:EU:EVSE": "FRS56PXQMKFJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42677100000, + 47.73692400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-LEGER DE MONTBRILLAIS-1-1;SAINT-LEGER DE MONTBRILLAIS-1-2", + "ref:EU:EVSE": "FRLMSE12346052271;FRLMSE12346052272;FRLMSE12346052281;FRLMSE12346052282", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-06-09", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B087" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04370300000, + 47.07126600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "484781", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2022-06-03", + "description": "Metropolis - Citadine - L'Ile-Saint-Denis - Libération;Métropolis/FR*MGP*P93039*A", + "ref:EU:EVSE": "FRMGPP93039A", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33894900000, + 48.93720700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Coulonges-sur-l'Autize - les Halles", + "ref:EU:EVSE": "FRSEOPAB79101P0012A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59730395000, + 46.48260664000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRATLP9102865474247520801", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00541", + "operator": "Atlante | FR*ATL", + "ref": "1088862" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37735000000, + 47.11853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Xertigny - Les Woodies", + "ref:EU:EVSE": "FRLMSP89362837" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39751000000, + 48.04696700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@electromaps.com", + "capacity": "8", + "owner:ref:FR:SIREN": "501380570", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "47 kW", + "description": "CLUB HIPPIQUE DE NICE", + "ref:EU:EVSE": "FRMAPE000024556962", + "ref": "d642bc84-c3e4-4813-be28-38feb316f9ff", + "network": "CLUB HIPPIQUE DE NICE", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19210743904, + 43.69677344676 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-JEAN-DE-MONTS - Place Du 11 Novembre 1918", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85234002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06249000000, + 46.79406000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Collégien", + "network": "Allego Carrefour Collégien", + "start_date": "2023-11-16", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "10", + "ref:EU:EVSE": "FRALLEGO9008622;FRALLEGO9008621;FRALLEGO9008292;FRALLEGO9001171;FRALLEGO9000541;FRALLEGO9000542;FRALLEGO9001172;FRALLEGO9004951;FRALLEGO9004952;FRALLEGO9008291", + "ref": "FRALLEGO9008622;FRALLEGO9008621;FRALLEGO9008292;FRALLEGO9001171;FRALLEGO9000541;FRALLEGO9000542;FRALLEGO9001172;FRALLEGO9004951;FRALLEGO9004952;FRALLEGO9008291" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65937213000, + 48.83941026000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MP898 - TRAVERSE DE LA SEIGNEURIE", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MAMP*72*1*_*_", + "ref:EU:EVSE": "FRIZMPMAMP7212;FRIZMPMAMP7211", + "start_date": "2024-02-19", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41142670000, + 43.24067410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-28", + "description": "Match - Thann", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMATTHN", + "charging_station:output": "50 kW;200 kW;22.17025 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10582267116, + 47.80792557710 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "741084", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNP414669399930873556", + "description": "Réseau eborn/BR33QVBXDK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88973500000, + 44.92944300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6379779369803031489", + "operator:email": "roaming@freshmile.com", + "ref": "1185154", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLXLVFW4CSQGH7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18287700000, + 49.12270700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-04-22;2023-04-16", + "description": "Ibis Budget - Issoire", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PIBSISR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27086100000, + 45.55166800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Châtillon-Sur-Cluses, Route de Taninges;Réseau eborn/UGTSBKUGBT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "UGTSBKUGBT;32902", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPUGTSBKUGBT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58349000000, + 46.08865000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34087B", + "start_date": "2024-08-22", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - 3M - Cournonsec - Parking des Aires", + "opening_hours": "24/7", + "ref": "FRETIP34087B", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70223143062, + 43.54954569176 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*214*4*_*_;FR*SOD*S*OTHR*214*3*_*_;FR*SOD*S*OTHR*214*2*_*_;FR*SOD*S*OTHR*214*1*_*_", + "start_date": "2021-07-21", + "description": "SUPER U - MONDOUBLEAU", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR21431;FROTHPOTHR21411;FROTHPOTHR21421;FROTHPOTHR21441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90780400000, + 47.98190900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "ref": "FR*SOD*S*CAPS*44*1*_*_", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "description": "GIF - GYMNASE COURCELLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-09-01", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRCPSPCAPS4411;FRCPSPCAPS4412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10659600000, + 48.70095300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1687183559375812809", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1183038", + "description": "Freshmile France/LLXU8IG9CBW5LS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51272800000, + 44.82002600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA1P4776564259374279994", + "amenity": "charging_station", + "capacity": "4", + "description": "WAAT/FRWATLCJ2HIM97", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1", + "ref": "501567" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70483500000, + 45.82147200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5317825235281174240", + "ref": "626141", + "description": "Freshmile France/KNIMTITM2R", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84652600000, + 46.00104000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSWSE1000087997", + "network": "SOWATT SOLUTIONS", + "ref": "1000087997", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "WB 2x22 Toyota Chambéry", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88761500000, + 45.60765900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLQNLTAGE15QAH", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1084788", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1268799982108781931", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15737800000, + 45.65037900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPDENTELLIERES593101", + "network": "DRIVECO", + "description": "Imagerie Dentellieres - Orchies", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23106100000, + 50.47161200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E139030", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - NOGENT-LE-ROTROU - Rue Maison Maraine", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E139030", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - NOGENT-LE-ROTROU - Rue Maison Maraine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80373021000, + 48.32166905000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRONIC LOISIRS ANGERS SONO", + "description": "ELECTRONIC LOISIRS ANGERS SONO", + "ref:EU:EVSE": "Non concerné", + "operator:email": "n.elminaoui@electronicloisirs.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "ed48974f-8f1c-4e3c-b232-cc74338863d8", + "owner:ref:FR:SIREN": "520050782", + "operator": "ELECTRONIC LOISIRS ANGERS SONO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50000000000, + 47.48000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRS10P731276374709881948", + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/LLJ5KOK6B1F70Q", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72344000000, + 48.51393900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "747288", + "network": "WAAT", + "description": "WAAT/FRWATL8SNAWGA8", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP2530476874942888459", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32772400000, + 43.22847200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Champagne_Henriot", + "start_date": "2022-11-21", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE471" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93860400000, + 49.01897970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8131700122;FRS81E8131700121;FRS81E8131700111;FRS81E8131700112", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "owner:ref:FR:SIREN": "258100072", + "description": "VILLEFRANCHE D'ALBIGEOIS - Place De La Bascule" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047699900, + 43.89608764600 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRISEEINOUIDALLOUIS", + "network": "ALOUISFACEINTACPUBLIC", + "operator:email": "Contact@inouid.com", + "amenity": "charging_station", + "ref": "EFEC9F1798CE4367B63FDE0635E888D2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ALLOUISMEXIMIEUX", + "owner:ref:FR:SIREN": "330465550", + "start_date": "2002-10-04", + "operator": "INOUID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20365500000, + 45.89361720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-11", + "ref:EU:EVSE": "FRS49E49109001", + "description": "CORON - Rue Eole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63686102600, + 47.12877655029 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mouv'Oise/SMHCLF0RRD", + "amenity": "charging_station", + "ref": "294413", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60PSMHCLF0RRD", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78974000000, + 49.45450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON20211;FRGLYPLYON20212", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*202*1*_*_", + "opening_hours": "24/7", + "description": "LY318 - GUILLOTIERE", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-01-16", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84191370000, + 45.75663400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189014", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "NIMES - Place Gabriel Péri", + "start_date": "2022-02-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36380000000, + 43.83893200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/CNWQDX", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "50 kW;44 kW", + "ref": "102629", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PCNWQDX", + "charging_station:output": "50 kW;44 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01283000000, + 47.89700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2015-10-19", + "opening_hours": "24/7", + "description": "ROCHES PREMARIE ANDILLE-1-1;ROCHES PREMARIE ANDILLE-1-2", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B051", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346402671;FRLMSE12346402681", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36949400000, + 46.47977100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "operator:email": "contact@mobilygreen.fr", + "ref": "1149045", + "amenity": "charging_station", + "capacity": "4", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "description": "Mobilygreen CPO/2b335329-3175-415e-882b-be7d05c98c6f", + "ref:EU:EVSE": "FRMW1P8678389423437235485", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "40 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22004500000, + 43.59407200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 12 RUE MARCEL ALLEGOT - MEUDON", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*15*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE1511;FRSIGPSIGE1512", + "charging_station:output": "22 kW", + "start_date": "2020-08-03", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22716100000, + 48.82148400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRBE1E78621003", + "start_date": "2023-08-24", + "network": "CPO Alizé Liberté Public", + "description": "TRAPPES - Avenue du Mahatma Gandhi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98634210000, + 48.77719160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel Campanile Alençon", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-11-14", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89656385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11553000000, + 48.44820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Chabanais | Place Colbert", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "190__SDEG16", + "ref": "65aa9cc4-c4c6-5973-a25a-5cfd857480b6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71928000000, + 45.87418700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-05", + "ref:EU:EVSE": "FRSE1PSE77CVXA", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Eglise Saint Vincent - Combs-la-Ville", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56903000000, + 48.66425500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSDENAI", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "DENAIN", + "network": "Carrefour Energies", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39034300000, + 50.32585100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "JOUY AUX ARCHES Jean", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3560EVCP01;LFR3560EVCP02", + "ref": "LFR3560EVCP01;LFR3560EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10179200000, + 49.07998100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Av. Frédéric Estèbe", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM31E31555024", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43703300000, + 43.61936300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPKDUPPQ", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Puimoisson, Rue Hoche;Réseau eborn/KDUPPQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref": "78642;KDUPPQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12718000000, + 43.86270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLL3RAE3Q2ES20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3830008827948379609", + "charging_station:output": "22 kW", + "ref": "892623", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56924200000, + 43.51125800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-17", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E75116003", + "charging_station:output": "22 kW;7 kW", + "description": "PARIS - Radio France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27927800000, + 48.85206200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Andilly, Are du Moai;Réseau eborn/G4WP2SQFX7", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2022-09-22", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "598245;G4WP2SQFX7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP8703412921926764940;FREBNPG4WP2SQFX7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07405300000, + 46.06345600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2022-09-22", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "description": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50290400000, + 47.60821400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare d'Annecy - EFFIA", + "ref:EU:EVSE": "FRP01E74010001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12168380000, + 45.90170320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6617515", + "start_date": "2022-11-29", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR SAINT HERBLAIN", + "charging_station:output": "22 kW", + "description": "SONEPAR SAINT HERBLAIN", + "ref": "FRCPIE6617515", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64712700000, + 47.23425700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "CCRCZB;78612", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPCCRCZB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "description": "Réseau eborn/CCRCZB;Entrevaux, Parking de La gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81235000000, + 43.94890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1181958", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P4738176720991240060", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s570549", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43502600000, + 46.67091100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5890924454004671069", + "ref": "477741", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/Z2JIPWRRFU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53448800000, + 46.57480900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "amenity": "charging_station", + "ref": "FR*TCB*P01738;FR*TCB*P01734;FR*TCB*P00954;FR*TCB*P00802;FR*TCB*P01830;FR*TCB*P01835;FR*TCB*P01832;FR*TCB*P01735;FR*TCB*P01733;FR*TCB*P01834;FR*TCB*P01742;FR*TCB*P01789;FR*TCB*P01836;FR*TCB*P01736;FR*TCB*P01788", + "start_date": "2023-08-01;2023-07-25;2023-07-06;2023-07-05;2022-05-09;2023-05-10;2023-09-27;2023-06-01;2023-08-31;2023-11-29", + "description": "AMP | 157-161 chemin de Morgiou;AMP | 59 rue Niels Bohr;AMP | 13bis Av. de Saint Médard (Martigues);AMP | 13bis Av. de Saint Médard;AMP | 128 boulevard Jeanne d'Arc;AMP | 30-36 rue de l'Aiguillette;AMP | 23 av. de Corinthe;AMP | 101 Boulevard Michelet;AMP | 126 rue de Ruffi;AMP | 86 bd. Vauban;AMP | 231 chemin du Vallon de l’Oriol;AMP | Rue Gutenberg – ZA La Roque d’A. 1;AMP | 168 route des Trois Lucs à la Valentine;AMP | 26 rue Ste Cécile;AMP | 527 chemin de la Madrague-Ville;AMP | Avenue Draio de la Mar;AMP | 18 bd. De la Grotte Rolland", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "2;4", + "ref:EU:EVSE": "FRTCBP01788;FRTCBP01789;FRTCBP01743;FRTCBP01742;FRTCBP01836;FRTCBP01734;FRTCBP01733;FRTCBP01832;FRTCBP01830;FRTCBP00954;FRTCBP00802;FRTCBP01835;FRTCBP01735;FRTCBP01834;FRTCBP01736;FRTCBP01738", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11503600000, + 43.39872200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/ZTVN6MH7ZS", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P884777642623142954", + "ref": "515144", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87443100000, + 47.77874200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT626301", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-21", + "description": "Peugeot - Etaples GUEUDET ALLIANCE OPALE", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:15, Tu 08:30-12:00, Tu 14:00-18:15, We 08:30-12:00, We 14:00-18:15, Th 08:30-12:00, Th 14:00-18:15, Fr 08:30-12:00, Fr 14:00-18:15, Sa 08:30-12:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62904400000, + 50.51916500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-05-03", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E29087001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Le Juch-Rue Louis Tymen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25699500000, + 48.06552100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRAM - Rue Du Chanoine Andrieu", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11049002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11166667000, + 43.24388890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Saint Aubin - 22 kW", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "f76e19a8-2b94-43e0-b3be-a337f8ea3a5f", + "network": "UNICAP - GARAGE SAINT AUBIN", + "owner:ref:FR:SIREN": "480055912", + "ref:EU:EVSE": "FRZP1PEAC57503", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13475400000, + 49.17531700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - LES HAUTES RIVIERES- Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57605;FRS08E57604", + "network": "MODULO - LES HAUTES RIVIERES- Pl. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS08E57605;FRS08E57604", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84286500000, + 49.88354200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64799", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PLLQVXS", + "network": "FDE 80", + "description": "FDE 80/LLQVXS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25834000000, + 50.10740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MC DONALDS - LYON SAINT PRIEST", + "ref": "FR*SOD*S*FAST*231*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-09-18", + "ref:EU:EVSE": "FRIZFPFAST23113;FRIZFPFAST23112;FRIZFPFAST23111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93409820000, + 45.72257820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Besne - Pont Neuf;BESNE - Rue Du Pont Neuf", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2024-05-29;2024-04-15;2021-04-21", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44013A;FRS44E44013001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09213000000, + 47.39574500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH616DTB2ER6983K24PN", + "capacity": "2", + "start_date": "2023-05-15;2016-02-01", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77054001;FRS77P77054A", + "description": "La-Brosse-Montceaux;LA BROSSE-MONTCEAUX - Rue Grande", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02141700000, + 48.34334200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000054862;FRGSPP1000054861", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "network": "MAISON GINESTET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MAISON GINESTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49435792261, + 44.80923017730 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E219853;FRS37E219854", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - LA TOUR SAINT GELIN - Rue de l'église", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219853;FRS37E219854", + "network": "MODULO - LA TOUR SAINT GELIN - Rue de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40336000000, + 47.04927700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "operator": "50__CCTT", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "description": "CCTT - Parking Siege - Ecrouves", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "82a07f9b-7733-511e-aecf-c7db483d37df" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86197300000, + 48.68172500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P63454A", + "network": "Mairie de Vertolaye", + "capacity": "2", + "amenity": "charging_station", + "description": "Mairie de Vertolaye", + "ref": "FRG10P63454A", + "start_date": "2023-01-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70465100000, + 45.64493000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "191__SDEER17", + "ref": "53a0bf2b-678e-55c3-9230-1663fcccfe8f", + "description": "MOBIVE | Saint Georges des Coteaux | Rue Denis Papin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67528100000, + 45.75570900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-20", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE26511;FRSIGPSIGE26512", + "charging_station:output": "22 kW", + "description": "SIGEIF - 26 RUE DERMONT - SAINT-GRATIEN", + "ref": "FR*SOD*S*SIGE*265*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27953600000, + 48.97282300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCPIE6473655", + "network": "BORNE PRO&CIE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BORNE PRO&CIE 1", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6473655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94603400000, + 50.31041200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/PHLNTHDLYD", + "ref:EU:EVSE": "FRLE2P3762638102819874027", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "598137" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189900000, + 47.78954500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Brive | Place Thiers", + "ref": "94848e77-cff7-5c9d-aa9e-dcfd273e72bc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53334500000, + 45.15660100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "start_date": "2014-04-22", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB12228B", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Chiché - Aire de covoiturage", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35736300000, + 46.79530600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-10-14", + "ref:EU:EVSE": "Non concerné", + "operator:email": "contact@evbox.com", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "network": "MBC", + "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", + "description": "MBC THORIGNE", + "owner:ref:FR:SIREN": "433188018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59000000000, + 48.15000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CUERS", + "ref": "LFR2567EVCP01", + "ref:EU:EVSE": "LFR2567EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08233500000, + 43.24323600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-13", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SASSENAGE - Parking Relais Engenieres", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38474002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65972590000, + 45.22100710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MOUANS SARTOUX - PARKING ZI ARGILE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ12112;FRA16PWIIZ12111;FRA16PWIIZ12121;FRA16PWIIZ12122", + "charging_station:output": "22 kW", + "start_date": "2021-05-12;2021-05-07", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*121*1*_*_;FR*SOD*S*WIIZ*121*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95504200000, + 43.60721100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/AK6LDZLLUO", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481995", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5897396891029006091" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332600000, + -21.32450800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-12-12;2024-01-09", + "ref:EU:EVSE": "FRPD1PACTNCB", + "description": "Action - Neufchâtel-en-Bray", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43540467109, + 49.73624864408 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ZFXETG;Chavanoz, Parking Route de Loyettes", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "102608;ZFXETG", + "ref:EU:EVSE": "FREBNPZFXETG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19798000000, + 45.76810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "A62 - Aire de Garonne (direction Bordeaux)", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPAAGARB", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00412700000, + 44.04048500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de L'Isle Adam Parmain P+R - EFFIA", + "ref:EU:EVSE": "FRP01E95480001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20983000000, + 49.11566000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-20", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR DOUAI 2", + "charging_station:output": "22 kW", + "description": "SONEPAR DOUAI 2", + "ref": "FRCPIE6677615", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6677615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10364200000, + 50.39488800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "ref:EU:EVSE": "FRECHPLLTFRUYTX2889H;FRECHP3833250518731990929", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "Thionville, Place de la Vieille Porte;Easy Charge/LLTFRUYTX2889H", + "network": "Easycharge services;Easy Charge", + "start_date": "2024-03-06", + "ref": "LLTFRUYTX2889H;1052466" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16679400000, + 49.36009300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-26", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143003", + "description": "ENGIE Vianeo - Charmes - Parc de la Peupleraie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29189400000, + 48.36953900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "453969", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BAZ89ZAKIB", + "ref:EU:EVSE": "FRFR1P1622181217388897353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69600000000, + 46.71420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX0511", + "network": "Belib'", + "amenity": "charging_station", + "start_date": "2021-09-29", + "description": "Paris | Rue Monge 112", + "opening_hours": "24/7", + "ref": "FR*V75*PPX05*11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35074140000, + 48.83927390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2817773896862959475", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLMT457NW1COXO", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1130424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78885500000, + 48.61776400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-04", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGROUPEFIBA218001", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Fiba - Quetigny", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09776900000, + 47.31216100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Saint Quay Portrieux-Place d'Armes", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22325002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83742100000, + 48.65399900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E147553", + "description": "MODULO - ENNORDRES - La Surprise", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - ENNORDRES - La Surprise", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E147553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43529200000, + 47.41191900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "ALC CAR", + "operator:email": "cindyt@groupelge.com", + "owner:ref:FR:SIREN": "799415070", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-12-22", + "charging_station:output": "11 kW", + "network": "AUTOPLUG", + "operator": "GROUPE LGE", + "ref": "cc1d2e0e-7a9b-45b5-9b5b-de5e07ec5ff8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68539296588, + 48.87564000156 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P8903852138163449384", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/JT57QTOIAB", + "ref": "75437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11169600000, + 48.62483500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-18", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8100400522;FRS81E8100400512;FRS81E8100400511;FRS81E8100400521", + "owner:ref:FR:SIREN": "258100072", + "description": "ALBI - Allée du Lude" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14966988600, + 43.92179870600 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref:EU:EVSE": "FRIKAPIKEA4481;FRIKAPIKEA4461;FRIKAPIKEA4441;FRIKAPIKEA44142;FRIKAPIKEA44141;FRIKAPIKEA44132;FRIKAPIKEA44131;FRIKAPIKEA44121;FRIKAPIKEA44101;FRIKAPIKEA4411;FRIKAPIKEA44111;FRIKAPIKEA4421;FRIKAPIKEA4431;FRIKAPIKEA4451;FRIKAPIKEA4471;FRIKAPIKEA4491", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "description": "IKEA CHATRES - PARKING COLLABORATEURS", + "start_date": "2022-07-15;2022-07-13;2023-02-08", + "ref": "FR*SOD*S*IKEA*44*8*_*_;FR*SOD*S*IKEA*44*7*_*_;FR*SOD*S*IKEA*44*6*_*_;FR*SOD*S*IKEA*44*5*_*_;FR*SOD*S*IKEA*44*4*_*_;FR*SOD*S*IKEA*44*2*_*_;FR*SOD*S*IKEA*44*12*_*_;FR*SOD*S*IKEA*44*1*_*_;FR*SOD*S*IKEA*44*10*_*_;FR*SOD*S*IKEA*44*11*_*_;FR*SOD*S*IKEA*44*13*_*_;FR*SOD*S*IKEA*44*14*_*_;FR*SOD*S*IKEA*44*3*_*_;FR*SOD*S*IKEA*44*9*_*_", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83932900000, + 48.72454800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44132A;FRS44E44132001", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "PORNICHET - Parking Du 18 Juin 1940;OuestCharge - Pulse 50 - Pornichet - Juin 1940", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-18;2021-07-09", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34008700000, + 47.25981200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77316001;FRS77P77299A", + "description": "MORET-LOING-ORVANNE - Rue Grande;Morêt-Loing-et-Orvanne - Montarlot", + "start_date": "2023-05-15;2015-05-28", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH612583SBGWNS3MWAKW", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85010200000, + 48.34925500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH01E62525001", + "network": "pass pass électrique", + "description": "LONGUENESSE - Route des Bruyères" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26140900000, + 50.74043300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221486;FRS37E221480", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E221486;FRS37E221480", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - NAZELLES NEGRON - Bd. de l'Avenir", + "description": "MODULO - NAZELLES NEGRON - Bd. de l'Avenir", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96866900000, + 47.42251100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS55E66450;FRS55E66451", + "description": "MODULO - LA CROIX SUR MEUSE - Pl. 40ème RA", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E66450;FRS55E66451", + "network": "MODULO - LA CROIX SUR MEUSE - Pl. 40ème RA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51115400000, + 48.97330100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON14112;FRGLYPLYON14111", + "ref": "FR*SOD*S*LYON*141*1*_*_", + "capacity": "2", + "description": "FOS02 - MARRONNIERS", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-02-04", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86315500000, + 45.82162000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "FRETIN - Rue Alfred Cousin", + "opening_hours": "24/7", + "network": "MEL", + "ref:EU:EVSE": "FRMELP5927301", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59273*01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13360600000, + 50.56058100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jaguar Land Rover - GRIM - Rodez", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "7.36 kW", + "ref:EU:EVSE": "FRSSDPJLRGRIMRODEZ120001", + "start_date": "2018-12-29", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54386000000, + 44.37440100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6577835", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED MONTREUIL", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6577835", + "network": "CGED MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75262800000, + 50.45125100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "466326", + "description": "Leclerc/MX6Q1OAWHF", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P3140384890071241979", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04123100000, + 44.05156600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Braud et Saint Louis | les Nouvelles Possessions | Terres D Oiseaux", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "ea88f9d7-583b-5cc4-bdfd-f72a93725f4f", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70072700000, + 45.28405400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Yerres - Rue Marceau Balliot", + "ref": "e0aa4afd-7374-5927-a111-4d0ca8cf4963" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49572000000, + 48.70765700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "start_date": "2021-02-02;2021-02-08", + "charging_station:output": "50 kW;43 kW;160 kW;22 kW;300 kW", + "ref:EU:EVSE": "FRSITE00000099;FRALLPCAS002", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "50 kW;160 kW;300 kW", + "operator:email": "info.allego.france@allego.eu", + "description": "CASINO SAINT ETIENNE", + "capacity": "8;10", + "network": "ALLEGO;GreenToWheel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42400600000, + 45.44038000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3313EVCP02;LFR3313EVCP01;LFR3313EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ALBI Verdier", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3313EVCP02;LFR3313EVCP01;LFR3313EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12616900000, + 43.91904000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PB0WBD1JFEQ", + "description": "Istres, Place Champollion", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98698400000, + 43.50471400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E179825;FRS88E179823", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-27", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - EPINAL - Quartier Magdeleine", + "operator": "Modulo", + "ref:EU:EVSE": "FRS88E179825;FRS88E179823", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - EPINAL - Quartier Magdeleine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43929000000, + 48.18750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*230*1*_*_", + "start_date": "2023-06-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-RAPHAEL - PARKING RENE GAUTIER", + "ref:EU:EVSE": "FRA16PWIIZ23012;FRA16PWIIZ23011", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76968800000, + 43.42615700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "ref": "1074978", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1719729892301429546", + "network": "Freshmile France", + "description": "Freshmile France/LLQNM5F328DH8J", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15520900000, + 45.64858700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Mr. Bricolage - Pont-Saint-Esprit", + "ref:EU:EVSE": "FRPD1PMBRPSE", + "opening_hours": "24/7", + "start_date": "2023-05-31", + "charging_station:output": "50 kW;100 kW;22 kW;188 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63973560000, + 44.24063790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Bellerive-sur-Allier, Mairie", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPMAIRIE", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "mairie", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40161330000, + 46.11718943000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/ABB3B1A8-4A98-4EF7-8CB1-3223B19A3D6F", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP7246380752298195562", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "ref": "746982" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459000000, + 43.32047900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E60057001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BEAUVAIS - Parking Foch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07926600000, + 49.43090300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mezilhac, Le Village;Réseau eborn/UJHUNV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPUJHUNV", + "ref": "UJHUNV;75089" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35146000000, + 44.80800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPNZUZDQ7AS5", + "operator:email": "contact@reseau-eborn.fr", + "ref": "NZUZDQ7AS5", + "start_date": "2020-06-21", + "description": "Excenevex, Avenue de la Plage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35817540000, + 46.34599980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL BEAUNE SUD 1 PAL CONGRES", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-07-27;2023-07-26", + "ref:EU:EVSE": "FRVIAP122004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84299100000, + 47.01228300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6778533780110858693", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "559781", + "description": "Freshmile France/S141EGXVGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09837200000, + 47.45462000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1305", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX13*05", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue de Choisy 188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35691700000, + 48.83039160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/YKR9MTGPDS", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1261870467747707345", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "479247" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.46906100000, + -21.33869900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-07", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Hôtel le Paddock - Magny-Cours", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPPADDOCK584701", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16566600000, + 46.87096300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "start_date": "2016-12-02", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PEVREUXREPUBLIQUE", + "description": "900080", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15759800000, + 49.02648100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "180434", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS21P21611A", + "description": "SICECO/FR*S21*P21611*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71061200000, + 47.31350900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-GERMAIN-EN-LAYE - Tribunal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78551019", + "start_date": "2024-08-26", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08051316810, + 48.89362512821 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "description": "ScanRoad", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE119", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "start_date": "2021-08-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03474600000, + 50.63073500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLTONJDJMB", + "capacity": "8", + "network": "WAAT", + "amenity": "charging_station", + "charging_station:output": "6.9 kW", + "opening_hours": "24/7", + "ref": "1108167", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP5502267741119964332", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16378600000, + 45.74006300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "7", + "description": "IONITY Champfleury", + "ref": "FRIONE438500", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2022-02-16", + "ref:EU:EVSE": "FRIONE438500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01251500000, + 49.20415100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E42092;FRS51E42093", + "ref": "FRS51E42092;FRS51E42093", + "charging_station:output": "0 kW", + "network": "MODULO - MOURMELON LE GRAND - Rue Marechal Joffre", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - MOURMELON LE GRAND - Rue Marechal Joffre", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36598100000, + 49.14138400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65047002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "description": "AUREILHAN - Salle des Fêtes", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09605000000, + 43.24202000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DE L'ESTEREL", + "owner:ref:FR:SIREN": "531681559;531681558;531681557;531681556;531681555;531681554;531681550;531681543;531681548;531681545;531681549;531681544;531681547;531681546;531681551;531681552;531681553;531681560", + "start_date": "2023-07-12;2023-11-29", + "capacity": "18", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF080360", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080360" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78577000000, + 43.54150300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34148001", + "operator": "Bouygues E&S", + "description": "MARAUSSAN - Place Marcel Barrere", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15696666667, + 43.36590830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-08-05", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Avenue de la Perrière", + "ref:EU:EVSE": "FRS56PWCCSFT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36596600000, + 47.73539600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WRZVCPI5NC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "479232", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4246466590907741603" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76165300000, + 48.59813100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "599094", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-06-23", + "capacity": "2", + "amenity": "charging_station", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Jean Mermoz;Métropolis/FR*MGP*P92051*R", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92051R", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27261000000, + 48.88410100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-26;2020-06-29", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "20", + "description": "Fiat - HESS - Dijon", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPHESSFIAT210001", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06804300000, + 47.35223900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRC2P005201", + "description": "CAFE LA PROMENADE", + "amenity": "charging_station", + "capacity": "1", + "network": "CAFE LA PROMENADE", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P005201", + "charging_station:output": "22.08 kW", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77177840000, + 47.38734870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-19", + "description": "a78a5c9f-1088-4e10-92a6-da3eb1b73a30", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref": "a78a5c9f-1088-4e10-92a6-da3eb1b73a30", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEGERARDROBERT11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84000000000, + 43.14000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | VIELLE ST GIRONS | Parking Eglise", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "197a24e6-a1fd-58de-bb50-b7c97e768da9", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30152300000, + 43.95032700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE31MABA", + "charging_station:output": "24 kW;22 kW", + "description": "La magdelaine sur Tarn Centre commune", + "start_date": "2023-11-30", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54352700000, + 43.81134900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP2823405204592905383", + "capacity": "4", + "description": "BornEco/6474832b8d6bd3eb6ee52754", + "ref": "814566", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58969300000, + 47.25820200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/YLUVTVJOGE", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454371", + "ref:EU:EVSE": "FRLE2P4214877307153406358" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79862500000, + 50.54056100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM13PQUT7OKQ0SX", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Les Pennes-Mirabeau, Parking D113", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30962900000, + 43.41079700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/M2EKAJD91G", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "488868", + "ref:EU:EVSE": "FRS89P5332486415504894444", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63680000000, + 47.80672400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ8411;FRA16PWIIZ8412", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-06-22", + "capacity": "2", + "amenity": "charging_station", + "description": "LE CANNET PARKING GRIGNAN", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*84*1*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01581000000, + 43.56920600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3576230853483752126", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454068", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KEWRJQNRLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66280000000, + 46.43400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Système U - Maxéville", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYSMAX", + "start_date": "2024-05-24", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17310419895, + 48.71064384100 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-15;2020-06-21", + "ref": "1151529;LLYMPLOPA2LWWO", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLYMPLOPA2LWWO;FREBNP5354441163734928985", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "La Tour-du-Pin, Parking du Champ de Mars;Réseau eborn/LLYMPLOPA2LWWO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44385200000, + 45.56261800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026462", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP1060934625992873019", + "charging_station:output": "22 kW", + "network": "EVzen", + "description": "EVzen/5C0AEE82-076B-4079-9FBD-674D10322EBA", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34358800000, + 43.76661100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IBIS - LISIEUX", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR70341;FROTHPOTHR70321;FROTHPOTHR70311;FROTHPOTHR70331;FROTHPOTHR70351;FROTHPOTHR70361", + "start_date": "2023-12-11", + "ref": "FR*SOD*S*OTHR*703*6*_*_;FR*SOD*S*OTHR*703*5*_*_;FR*SOD*S*OTHR*703*4*_*_;FR*SOD*S*OTHR*703*1*_*_;FR*SOD*S*OTHR*703*2*_*_;FR*SOD*S*OTHR*703*3*_*_", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26625410000, + 49.14578920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30200;XHERGSSQS7", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPXHERGSSQS7", + "start_date": "2020-06-21", + "description": "Saint-André-Le-Gaz, Parking - Rue Paul Langevin;Réseau eborn/XHERGSSQS7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300800000, + 45.54321700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/RHLBTLPSI5;Alixan, Parking Rovaltain Face SDED", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "18014;RHLBTLPSI5", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRHLBTLPSI5", + "capacity": "2;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97670000000, + 44.98910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - CHATILLON-SUR-SEINE", + "ref:EU:EVSE": "FROTHPOTHR38422;FROTHPOTHR38421;FROTHPOTHR38411", + "capacity": "1;2", + "start_date": "2022-04-26;2023-02-14", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MIPIOL - INTERMARCHE", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW", + "ref": "FR*SOD*S*OTHR*384*2*_*_;FR*SOD*S*OTHR*384*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57235400000, + 47.86668200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3656335607898449358", + "network": "Freshmile France", + "description": "Freshmile France/F1BQQZEED1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "757059" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44077800000, + 45.43885200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRTSLP29767", + "description": "Tesla Supercharger Deauville, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09651900000, + 49.34502900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892089", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6812180607265189067", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLI8N20HB16BQ7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41855400000, + 48.38487500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01740", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AMP | B319 PArking Codos Rue du STADE (Ex.Parking Bruyères)", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*TCB*P01740" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21666700000, + 43.41666700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "705902", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5871678310504835639", + "description": "Freshmile France/C7FO07OXBQ", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12088900000, + 43.61496000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "PLEUMEUR BODOU - Place Des Droits De L’Homme", + "start_date": "2023-06-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22198003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51628100000, + 48.77349000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mazda - GEX-Cessy - 22kW AC ", + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-17:00", + "ref:EU:EVSE": "FRZMAE22AC50651;FRZMAE22AC50643", + "start_date": "2021-01-05", + "network": "Mazda GEX - GARAGE DAGO", + "amenity": "charging_station", + "capacity": "1", + "ref": "50651;50643", + "owner:ref:FR:SIREN": "393617964", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06224780000, + 46.32660420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-07-20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE329", + "operator": "RossiniEnergy", + "description": "Huttopia_Versailles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16123100000, + 48.79419200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "MAGNANVILLE - Rue De La Mare Pasloue", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78354002", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68336800000, + 48.96683800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE446653;FRIOYE446652;FRIOYE446651;FRIOYE446606;FRIOYE446601;FRIOYE446602;FRIOYE446603;FRIOYE446604;FRIOYE446605", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "start_date": "2023-03-09", + "description": "Pamiers", + "ref": "FRIOYE446653;FRIOYE446652;FRIOYE446651;FRIOYE446606;FRIOYE446601;FRIOYE446602;FRIOYE446603;FRIOYE446604;FRIOYE446605", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "Pamiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64161700000, + 43.07488300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-13;2024-05-15", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "ref:EU:EVSE": "FRS53E53122001;FRS53P53122A", + "amenity": "charging_station", + "description": "JUBLAINS - Parking Du Musée;OuestCharge - Diva Sp - Jublains - Musée", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49866900000, + 48.25474700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-02-14", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66037003", + "network": "Reveo", + "description": "CANET-EN-ROUSSILLON - Quai de Barcelone " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03701400000, + 42.70169100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE009601;FRIENE009602", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-06-12", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE009601;FRIENE009602", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Nissan-Lez-Enserune", + "network": "Nissan-Lez-Enserune" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869000000, + 43.29393900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHANTEPIE - 44 avenue andré bonin ", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35055001B1", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "start_date": "2022-01-01", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62036600000, + 48.08883100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-LEPIN-001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61328A", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "LE PIN AU HARAS - Le Haras du Pin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14600340000, + 48.73978170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5858456441679601239", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "978092", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HSMW2GN3VJ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61761000000, + 48.54010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Roulez Électrique En Haute-Garonne/Boussensecol;Boussens, Ecole", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "start_date": "2017-11-16", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "49039;Boussensecol", + "ref:EU:EVSE": "FRS31PBOUSSENSECOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97132000000, + 43.17640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92044008", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-08-26", + "description": "LEVALLOIS PERRET - Place Georges Pompidou/ Parking Pompidou", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28311900000, + 48.89869100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Borne de l'Hôtel de l'Océan", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000358;FRCG0E000357;FRCG0E000359", + "description": "Borne de l'Hôtel de l'Océan", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-06-29", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000358;FRCG0E000357;FRCG0E000359", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38911700000, + 43.85245900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-20", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "DRAP - PARKING JEAN FERRAT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*166*1*_*_", + "ref:EU:EVSE": "FRM06PNICE16612;FRM06PNICE16611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31988200000, + 43.75482800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "b072b3ec-bfff-51ca-899a-aa91a76c757d", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Clairac | Place Vicoze" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37862900000, + 44.36117900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*307*2*_*_;FR*SOD*S*SIGE*307*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30721;FRSIGPSIGE30711;FRSIGPSIGE30712;FRSIGPSIGE30722", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "SIGEIF - 1 VOIE DE LAULNE - VERRIERES-LE-BUISSON", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-26;2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27050100000, + 48.75206400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "226402;226403;226401", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS226401;FRBMPS226402;FRBMPS226403", + "description": "Bump - U Express - Grans", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07403320000, + 43.60147100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2918EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2918EVCP01", + "description": "ST BRICE COURCELLES Croix M." + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00360000000, + 49.27802100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Brive | Bouriottes", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "75f9b640-1084-5788-b905-9c1175f0a248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55677500000, + 45.16507300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "2_AM0001_SMOYS", + "ref": "7c688370-563a-5dbe-985e-a7106ca13bea", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Draveil - Boulevard du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40577200000, + 48.68571500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP17880PERPHARE", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "LE PHARE - ILE DE RE", + "ref": "FR*55C*P17880*PER*PHARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649000000, + 46.24693000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3158EVCP01;LFR3158EVCP02", + "capacity": "4", + "description": "MOULT Blanc", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3158EVCP01;LFR3158EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18744900000, + 49.11882700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPVDP691733169927687558", + "description": "Proviridis/5e6761cec45ed2000c3e0279", + "socket:type2_combo:output": "100 kW;150 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "917298", + "network": "Proviridis", + "charging_station:output": "100 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69894900000, + 43.44832900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/F2310LROW6;Trigance, D90", + "ref:EU:EVSE": "FREBNPF2310LROW6;FREBNF2310LROW6", + "ref": "50761;F2310LROW6", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44233500000, + 43.76043200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "e-Totem - Hôtel Restaurant du château - CRAON", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP53084A", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRETIP53084A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94701700476, + 47.85171712990 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E35288001", + "description": "Parking Saint-Malo Casino P11 - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02054000000, + 48.65168000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Saint-Martin-d'Auxigny", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT181101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42471800000, + 47.21079800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHQX9SNP7JC", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "30461;HQX9SNP7JC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/HQX9SNP7JC;Val-Des-Pres, Parking l Enclare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67290200000, + 44.91466200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR49832;FROTHPOTHR49831;FROTHPOTHR49821;FROTHPOTHR49812;FROTHPOTHR49811;FROTHPOTHR49822", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-26", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*498*1*_*_;FR*SOD*S*OTHR*498*2*_*_;FR*SOD*S*OTHR*498*3*_*_", + "description": "BRICORAMA - LA CHAPELLE SAINT LUC", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02759000000, + 48.30412100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/J2PTEQVKWN", + "ref:EU:EVSE": "FRFR1P2588544985593723245", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "801615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05768400000, + 48.89498000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "description": "126 Bd Clemenceau/Rue Frederick Lemaitre;125 Bd Clemenceau/Rue Frederick Lemaitre", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "start_date": "2023-10-13", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10077196;FRUBIE10052322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09794400000, + 49.48966700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8050964126847194588", + "network": "Freshmile France", + "ref": "782580", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/G8PCTKKS0J" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18049600000, + 45.83014400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-21", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTLSE31555037", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - Allée Paul sabatiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45487000000, + 43.59634000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PQRBEQB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QRBEQB", + "ref": "242326" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515000000, + 45.39770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/VDR7TGPRAS", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "charging_station:output": "43 kW;50 kW;100 kW", + "ref": "706028", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRS14P7087191283922248389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23031600000, + 49.41633000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS12E12067001", + "operator": "Bouygues E&S", + "start_date": "2023-05-04", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE CLAPIER - Grand'rue-D93", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17228600000, + 43.83122700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLLCRZAMHN", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA3P5278774878941749862", + "ref": "735834", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49047900000, + 43.38812500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-16;2021-04-21", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Le May-sur-Evre - Eglise;LE MAY-SUR-EVRE - Place de l'Eglise", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49193A;FRS49E49193001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89143800000, + 47.13721900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "ref": "65027", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIED70/Hericourteurop", + "ref:EU:EVSE": "FRS70PHERICOURTEUROP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75739000000, + 47.57390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20684860000, + 49.97140520000 + ], + [ + 1.20697870000, + 49.97113000000 + ], + [ + 1.20709900000, + 49.97088380000 + ], + [ + 1.20717390000, + 49.97081460000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH14E59431001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-07-20", + "charging_station:output": "22 kW", + "description": "NIEPPE - Place Du General De Gaulle", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83819900000, + 50.70470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E214038;FRS37E214139", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - ST CYR SUR LOIRE - René Coulon", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - ST CYR SUR LOIRE - René Coulon", + "ref:EU:EVSE": "FRS37E214038;FRS37E214139", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65528244000, + 47.41894606000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "ref": "518366", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63247A", + "description": "SIEG 63/FR*S63*P63247*A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94171900000, + 45.57272400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59104001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BOUSSOIS - Rue du Ponceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03865000000, + 50.29019200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEG32/ZRTKJD", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS32PZRTKJD", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "21841", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75722400000, + 43.99830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94017012", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-06-28", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "CHAMPIGNY SUR MARNE - Avenue Salvador Allende" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55348800000, + 48.80838180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*287*2*_*_;FR*SOD*S*NICE*287*1*_*_", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE28712;FRM06PNICE28711;FRM06PNICE28721;FRM06PNICE28722", + "opening_hours": "24/7", + "start_date": "2024-01-04;2024-01-10", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "SAINT-JEANNET - PEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14496918630, + 43.74336617048 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | La Force | Parking Avenue des ducs de la Force", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "82483f49-abda-5a4e-a668-69a5457c290f", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37568600000, + 44.86725600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE41411;FRSIGPSIGE41412", + "start_date": "2023-04-28", + "description": "SIGEIF - 10 PLACE GENERAL LECLERC - COLOMBES", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*414*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25276900000, + 48.92291400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "description": "ROUEN - ILE LACROIX parking patinoire/piscine", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC01E76540014", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10354130000, + 49.43150900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "BREST PLOUZANE", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR2657EVCP01;LFR2657EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2657EVCP01;LFR2657EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.59803700000, + 48.37585200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "ref": "f22371ba-80ee-5b88-9773-d519458df863", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "description": "MOBIVE | Auzances | Parking Rue Barraud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50037200000, + 46.02618600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "7a3f09e3-bba4-5d75-9220-b46d1a7acb45", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "description": "VILLES-SUR-AUZON - Rue de Villeneuve", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23565400000, + 44.05652800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-10-26", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA05E78003001", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "ABLIS - Rue Badillot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83667360000, + 48.51548530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LES HERBIERS", + "ref:EU:EVSE": "LFR3048EVCP01", + "ref": "LFR3048EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02345400000, + 46.87469900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMRSM", + "capacity": "3", + "description": "Intermarché - Rupt-sur-Moselle", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-11-23", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66038280000, + 47.92212450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Meysse, Rue Chevrière", + "ref:EU:EVSE": "FREBNPXDQPVX", + "ref": "XDQPVX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72489514000, + 44.60970725000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRETIP85233A", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "e-Totem - SICARD St Jean de Beugné", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2024-04-30", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP85233A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08400053783, + 46.52122732627 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCORRRM", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Cora - Remiremont", + "start_date": "2023-04-20", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61204070000, + 48.00336680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT951801", + "description": "Carrefour Market - Menucourt", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-05-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99153400000, + 49.02991500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42186AC", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB 11 novembre Rive de Gier", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42186AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61345400000, + 45.52769200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "start_date": "2021-11-22;2020-02-11", + "description": "CNPE CRUAS - MAISON DE LENERGIE", + "network": "EDF-EV100", + "ref:EU:EVSE": "FROTHPIZIG1461;FROTHPIZIG1451;FROTHPIZIG1441;FROTHPIZIG1431;FROTHPIZIG1421;FROTHPIZIG1411;FROTHPIZIG1462;FROTHPIZIG1471", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IZIG*14*7*_*_;FR*SOD*S*IZIG*14*6*_*_;FR*SOD*S*IZIG*14*5*_*_;FR*SOD*S*IZIG*14*4*_*_;FR*SOD*S*IZIG*14*3*_*_;FR*SOD*S*IZIG*14*2*_*_;FR*SOD*S*IZIG*14*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74667400000, + 44.63482400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CRAC'H", + "description": "SONEPAR CRAC'H", + "start_date": "2023-11-27", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6828315", + "ref:EU:EVSE": "FRCPIE6828315", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.02255800000, + 47.66591700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/C2YSEV8CCC", + "ref:EU:EVSE": "FRFR1P2338347967999754992", + "operator": "Freshmile | FR*FR1", + "ref": "482079" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24630900000, + 48.76989500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-02-16;2024-05-23", + "ref:EU:EVSE": "FRVIAP122019", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL DIEPPE", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07635800000, + 49.89992500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "346430", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P650893427673456173", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/K9AVBWZHUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80192000000, + 45.53690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Aire du Bourbonnais, France", + "ref:EU:EVSE": "FRTSLP17909", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36277836000, + 46.49750668000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/OHF6LP48UT", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3645229484900492580", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Fr,Th,We,Mo,Tu 08:00-19:00,Sa 09:00-18:00", + "ref": "559760" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11367400000, + 49.41435500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "457509", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/M5E6SNDFBJ", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P653564277467194830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47840600000, + 48.98560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "description": "Verquieres, Place de l'Eglise", + "ref:EU:EVSE": "FRS13PSJL0F0PTXN", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91811200000, + 43.83963200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P3884377718131410290", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATL2AA7QJB8", + "operator:email": "exploitation@waat.fr", + "ref": "708683" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41642200000, + 45.44933300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200083640", + "start_date": "2017-04-27", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "AVRANCHES - Place Carnot", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50025002", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36387310000, + 48.68385610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81139002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAUTREC - Avenue de Vielmur - Aire de Camping car", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12989000000, + 43.70334100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF058973", + "capacity": "6", + "owner:ref:FR:SIREN": "531681747;531681744;531681746;531681743;531681742;531681745", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF058973", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS DU VERGER", + "start_date": "2024-03-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26140000000, + 48.72230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS48E48009001", + "network": "Reveo", + "description": "AUMONT AUBRAC - Place Du Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28476600000, + 44.72175600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/CWX3CAM47B", + "ref:EU:EVSE": "FRS56P4276704342464560526", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "ref": "529904" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10344700000, + 47.48678500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59569002", + "description": "SIN-LE-NOBLE - Piscine Tournesol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11602400000, + 50.36209900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "SAINT POL DE LÉON - Parking piscine", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E29250003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.99000100000, + 48.68272100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-12-21", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PGFVWQZ", + "description": "Locminé - Place Joseph Richard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83750800000, + 47.88893300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LATILLE-1-1;LATILLE-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346051761;FRLMSE12346051751;FRLMSE12346051752;FRLMSE12346051762", + "ref": "B048", + "capacity": "1", + "start_date": "2017-05-30", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07669000000, + 46.61877100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP93005E", + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - Citadine - Aulnay-sous-Bois - Jacquard", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2022-03-10", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48856985000, + 48.94913362000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE8951;FRSIGPSIGE8941;FRSIGPSIGE8931;FRSIGPSIGE8911;FRSIGPSIGE8921", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "description": "SIGEIF - 123 BD VICTOR HUGO - CLICHY", + "ref": "FR*SOD*S*SIGE*89*5*_*_;FR*SOD*S*SIGE*89*1*_*_;FR*SOD*S*SIGE*89*2*_*_;FR*SOD*S*SIGE*89*3*_*_;FR*SOD*S*SIGE*89*4*_*_", + "start_date": "2021-01-19;2021-01-18", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31764400000, + 48.90234900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLFR00524", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP6927191956376946906", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref": "1000017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07833600000, + 49.89816200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1000081833", + "description": "Howdens Nanterre", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17241400000, + 48.89369800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "45241490-a487-5b19-b920-51e83c3a407a", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Louhossoa | Parking de L'École", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35044200000, + 43.31613900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS85E85191005", + "operator": "Bouygues E&S", + "description": "LA ROCHE-SUR-YON - Place Du Genet", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43830000000, + 46.65055800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9007802;FRALLEGO9001582;FRALLEGO9001581;FRALLEGO9000331;FRALLEGO9000332;FRALLEGO9002511;FRALLEGO9002512;FRALLEGO9002513;FRALLEGO9007801;FRALLEGO9007831;FRALLEGO9007832", + "amenity": "charging_station", + "network": "Allego Carrefour Angoulins", + "ref:EU:EVSE": "FRALLEGO9007802;FRALLEGO9001582;FRALLEGO9001581;FRALLEGO9000331;FRALLEGO9000332;FRALLEGO9002511;FRALLEGO9002512;FRALLEGO9002513;FRALLEGO9007801;FRALLEGO9007831;FRALLEGO9007832", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Angoulins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10343270000, + 46.11107640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "ref": "FR*SOD*S*MAMP*27*1*_*_", + "description": "IZIVIA | MARSEILLE 07 - RENE SEYSSAUD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRIZMPMAMP2712;FRIZMPMAMP2711", + "network": "IZIVIA", + "start_date": "2023-05-31", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35920800000, + 43.28286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22.17025 kW;160 kW", + "ref:EU:EVSE": "FRPD1PMATCHA", + "capacity": "10", + "start_date": "2023-11-30", + "operator": "Power Dot France", + "description": "Match - Chalons Chanzy", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36573880502, + 48.96373094247 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "505815", + "capacity": "2", + "description": "Réseau eborn/RDH1HYPVXW", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP5855551286891554940", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86119300000, + 45.21769000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "ENGIE MAMP - Bornes publiques/4CC5F8B8-09FB-4E32-9039-37E7D1E1B808", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP3309207530884516486", + "ref": "927783", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38783400000, + 43.28858700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PHOLTER", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-05-30", + "opening_hours": "24/7", + "description": "Basic Fit - Tergnier", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28316962947, + 49.65123381980 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "IMNKKM8CKN", + "description": "Laragne-Monteglin, Parking Veragne", + "ref:EU:EVSE": "FREBNPIMNKKM8CKN", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82644800000, + 44.31362700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP26058A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP26058A", + "start_date": "2024-08-21", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - DASSIN Première Classe BOURG LES VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88252934733, + 44.96459780041 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "network": "QUERCY FROID", + "description": "QUERCY FROID - MOISSAC", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-02-22", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR18721;FROTHPOTHR18711", + "ref": "FR*SOD*S*OTHR*187*1*_*_;FR*SOD*S*OTHR*187*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10728600000, + 44.10937900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*CAPS*2*1*_*_", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS211;FRCPSPCAPS212", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GIF - MARCHE DU PARC", + "operator:email": "sav@izivia.com", + "start_date": "2019-12-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13481800000, + 48.70109200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/TO4Q3BPA2H", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P230332735850601519", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "892659", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11208700000, + 43.85158800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP200101", + "charging_station:output": "210 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Station multi-énergies Saint-Witz", + "owner:ref:FR:SIREN": "909073363", + "socket:type2_combo:output": "210 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52864700000, + 49.09369900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2608028154533331285", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1002870", + "network": "Freshmile France", + "description": "Freshmile France/JGRRPW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71506000000, + 46.99780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U ST LEGER DE LA MARTINIERE", + "operator": "E-TOTEM", + "description": "SUPER U ST LEGER DE LA MARTINIERE", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSUAP79264A", + "opening_hours": "24/7", + "ref": "FRSUAP79264A", + "start_date": "2022-08-08", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12869000000, + 46.22774000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "783669831", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2022-12-09", + "capacity": "3", + "ref:EU:EVSE": "FRFR1EAYRU", + "description": "Loos, Parking Salengro", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "contact@electricite-loos.fr", + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "network": "RME Loos (FR-FR1);RME Loos (FR-FR1) " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01427300000, + 50.61544900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:30-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-09-06;2021-11-30", + "description": "Hyundai La Rochelle", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBARBIER171382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10199200000, + 46.17917200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E134842", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E134842", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - ST DENIS LANNERAY - Rue Jean Moulin", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST DENIS LANNERAY - Rue Jean Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28933900000, + 48.06675000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "20e6d906-5c2d-11ed-9b6a-0242ac120002", + "capacity": "2", + "description": "IBIS GARE SAINT ETIENNE CHATEAUCREUX", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "perrin", + "owner:ref:FR:SIREN": "347412850", + "network": "IBIS CHATEAUCREUX SAINT ETIENNE", + "operator:email": "mcelette@lumilec-electricité.fr", + "start_date": "2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40000000000, + 45.44000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P6224093335471495469", + "description": "SDEA 10/RSDAVBFCEE", + "ref": "39725" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23200300000, + 48.59237400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "514394", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLCM9P5RY9", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWATP5469359644894398278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96523700000, + 43.57959800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-24", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "ST SAUVEUR VILLAGES - Mairie", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P50550001", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41135000000, + 49.13060500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOREZE - Chemin Du Tour Du Parc", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81288001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06719000000, + 43.45049000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;350 kW;43 kW;200 kW", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE482971;FRIOYE482953;FRIOYE482902;FRIOYE482901;FRIOYE482903;FRIOYE482904;FRIOYE482951;FRIOYE482952;FRIOYE482972", + "network": "Nieppe", + "ref:EU:EVSE": "FRIOYE482971;FRIOYE482953;FRIOYE482902;FRIOYE482901;FRIOYE482903;FRIOYE482904;FRIOYE482951;FRIOYE482952;FRIOYE482972", + "opening_hours": "24/7", + "description": "Nieppe", + "start_date": "2024-06-04", + "capacity": "9", + "socket:type2_combo:output": "200 kW;50 kW;350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84043389000, + 50.68678613000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49063001;FRS49P49063A", + "charging_station:output": "22 kW", + "description": "CHALONNES-SUR-LOIRE - Rue des Tonneliers;OuestCharge - Diva Sp - Chalonnes-sur-Loire - Tonneliers", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-16;2024-03-26", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76086800000, + 47.34877200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/VBLWFR", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "86702", + "ref:EU:EVSE": "FRS60PVBLWFR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13907000000, + 49.23830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-28", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH13E62048001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "AUCHEL - rue Léon Blum" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46845200000, + 50.50759700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30147001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "LEZAN - Allée De La Gare", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05149100000, + 44.01708900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1149672", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Mobilité électrique 56/LLXUDBUVJ2AO2K", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56P8342457573460366570" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.90686200000, + 47.55016200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "MILLAC-1-2;MILLAC-1-1", + "opening_hours": "24/7", + "start_date": "2016-03-15", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B068", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346396511;FRLMSE12346396521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68699500000, + 46.18983100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Métropolis/FR*MGP*P94079*A;Metropolis - Citadine - Villiers-sur-Marne - Trottin", + "ref:EU:EVSE": "FRMGPP94079A", + "start_date": "2021-09-09", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "446942", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54402200000, + 48.82765300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 7 RUE VAUDETARD - ISSY-LES-MOULINEAUX", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*12*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE1212;FRSIGPSIGE1211", + "start_date": "2020-08-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27665700000, + 48.82704500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBE1E78297003", + "operator": "Bouygues E&S", + "start_date": "2023-06-06", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "network": "CPO Alizé Liberté Public", + "description": "GUYANCOURT - Place Charlotte Perriand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07886760000, + 48.76654980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Thaon Les Vosges - ZA Innova 3000 2", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89397420" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40705000000, + 48.25417800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Mouthiers Sur Boeme | Place du Champ de Foire", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "a6847a58-68e7-5dfe-bc40-c0c75d843a3c", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12381500000, + 45.55366900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE68EGPV", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "charging_station:output": "24 kW;22 kW", + "description": "Pierre & Vacances - EGUISHEIM", + "socket:type2_combo:output": "24 kW", + "opening_hours": "Mo-Th 08:00-22:00", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31226400000, + 48.04491800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9990352;FRALLEGO9990351;FRALLEGO9990342;FRALLEGO9990341;FRALLEGO9990132;FRALLEGO9003881;FRALLEGO9001882;FRALLEGO9001881;FRALLEGO9003882;FRALLEGO9990131", + "start_date": "2023-02-13", + "amenity": "charging_station", + "network": "Allego Carrefour Saran", + "description": "Allego Carrefour Saran", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9990352;FRALLEGO9990351;FRALLEGO9990342;FRALLEGO9990341;FRALLEGO9990132;FRALLEGO9003881;FRALLEGO9001882;FRALLEGO9001881;FRALLEGO9003882;FRALLEGO9990131", + "operator:email": "info@allego.eu", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88804000000, + 47.96080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ONNAING Jaurès", + "ref": "LFR4029EVCP01;LFR4029EVCP02;LFR4029EVCP03;LFR4029EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4029EVCP01;LFR4029EVCP02;LFR4029EVCP03;LFR4029EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61231600000, + 50.38975700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT ALBAN - Rue Des Lilas", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31467001", + "charging_station:output": "22 kW", + "start_date": "2021-11-16", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41315600000, + 43.69349400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Digne les bains, Parking du Tampinet;Réseau eborn/XFCI1JOWWR", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "743016;XFCI1JOWWR", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-09-27", + "ref:EU:EVSE": "FREBNP3380461436652890619;FREBNPXFCI1JOWWR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23145500000, + 44.09157700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLKIEH8SK1NT9W", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8178082789251769207", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892524", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91142200000, + 46.75152400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "description": "PARIS - Saint Sulpice -3", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E751060034;FRP07E751060033;FRP07E75106003;FRP07E751060031;FRP07E751060032", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "42", + "start_date": "2020-10-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33347900000, + 48.85120600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPZQJLTS8LZQ", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/ZQJLTS8LZQ", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "78639" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74997300000, + 43.81097200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Tu,We,Mo,Su,Th,Sa,Fr 08:00-18:00", + "description": "Road/655644a84710a2001c4e12eb", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP3599027760118988866", + "operator:email": "roaming-dev@road.io", + "ref": "965198", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68117500000, + 44.83910800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E57463001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking gare de Metz - EFFIA", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17514000000, + 49.10888000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING N-1 SAVENAY 4", + "network": "PARKING N-1 SAVENAY 4", + "socket:type2_combo:output": "62 kW", + "amenity": "charging_station", + "charging_station:output": "62 kW", + "capacity": "1", + "ref": "FRCPIE6609195", + "ref:EU:EVSE": "FRCPIE6609195", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93643300000, + 47.37214800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPDXM6EBUDLM", + "charging_station:output": "22 kW", + "description": "Réseau eborn/DXM6EBUDLM;Davezieux, Place de la Poste", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "32698;DXM6EBUDLM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70591000000, + 45.25732400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1181937", + "ref:EU:EVSE": "FRWA2P7875637180763464090", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570513", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04347600000, + 43.15188600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3996229541716027466", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "782514", + "description": "Freshmile France/VIIPWCIIPV", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85236800000, + 48.79106100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00621", + "owner:ref:FR:SIREN": "751131202", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "network": "HOTEL VAL DE VIENNE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hotel Val de Vienne - Le Vigeant", + "ref": "FRTCBP00621", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66041860000, + 46.19207290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LAN1EK83QC", + "opening_hours": "We,Fr,Th,Tu,Mo 13:30-19:00,Th,Mo,Fr,We,Tu 08:30-12:00", + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P463800311912645094", + "network": "Freshmile France", + "charging_station:output": "50 kW;43 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "477663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12008700000, + 49.03466200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Nissan - Segny", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN011701", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-12", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07028000000, + 46.30048300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2904600", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Douarnenez-Rue Berthelot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33014900000, + 48.09203300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/LLSSP4KNN1BJYQ", + "opening_hours": "24/7", + "ref": "1026831", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P5501060640429515999" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55479000000, + 48.58950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LE006E70;Zephyre/LE006E73", + "ref:EU:EVSE": "FRZP1P6366107249816187207;FRZP1P75803391778030289", + "opening_hours": "24/7", + "ref": "576050;576056", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32137200000, + 43.97322600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Régie Services Energie/FR*RSE*P01423*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481269", + "ref:EU:EVSE": "FRRSEP01423A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82216600000, + 45.96022200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "64640", + "description": "FDE 80/argoulesval", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PARGOULESVAL", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82272000000, + 50.34710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MC DONALDS VOIRON", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST18712;FRIZFPFAST18711;FRIZFPFAST18713", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-08-09", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*187*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59197630000, + 45.35914070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2021-04-14;2024-04-29;2024-04-22", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44015002;FRS44E0440008;FRS44P44015B", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "BLAIN - Rue Pierre Waldeck Rousseau;OuestCharge - Diva Sp - Blain - Rousseau", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76703800000, + 47.47727100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77003001;FRS77P77003A", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2023-05-24;2016-01-22", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH6058QXP88C4EMXM9MN", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Amponville;AMPONVILLE - Chemin Des Manneries" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53197600000, + 48.27912100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON9822;FRGLYPLYON9821;FRGLYPLYON9811;FRGLYPLYON9812", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-08-06", + "description": "BRN05 - HOPITAUX EST", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*98*2*_*_;FR*SOD*S*LYON*98*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90454400000, + 45.74676500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E215835;FRS37E215836", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - DESCARTES - Pl. Milo Freslon", + "start_date": "2019-03-18", + "description": "MODULO - DESCARTES - Pl. Milo Freslon", + "ref:EU:EVSE": "FRS37E215835;FRS37E215836", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70021078000, + 46.97447173000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Lignol - Place Corentin Le Floch", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PRAGKJL", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27127400000, + 48.03678600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "operator": "E-TOTEM", + "network": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRG10P45092A", + "ref:EU:EVSE": "FRG10P45092A", + "description": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62609700000, + 47.96227500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "operator": "IZIVIA", + "description": "AUCHAN - TOURS NORD", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH15011;FROTHPAUCH15012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*150*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69930390000, + 47.42755220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*234*1*_*_", + "description": "SIGEIF - 1 PLACE DE SOUVENIR FRANCAIS - PUTEAUX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE23411;FRSIGPSIGE23412", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-05-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23294800000, + 48.88308900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "25 kW;44 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "21811", + "operator": "Freshmile | FR*CN1", + "description": "Move In Pure/YNDRQT", + "socket:type2_combo:output": "25 kW;44 kW", + "ref:EU:EVSE": "FRCN1PYNDRQT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82992000000, + 46.10890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P7063988366313216399", + "description": "Leclerc/LLOWPLKUW2OKPS", + "ref": "978056" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54545100000, + 45.16660800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Sainte Marie de Ré | Chemin des Sables", + "ref": "7feaa056-ef51-5859-aea6-48f8fa1b4ef2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31662600000, + 46.15524600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Piscine Caneton - DRAVEIL", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE91DBPA", + "start_date": "2021-08-31", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40771900000, + 48.67354600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Maussane-Les-Alpilles, Maison De Retraite", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRABAPBHH4EKNEYH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80578000000, + 43.72151600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3620EVCP01", + "ref": "LFR3620EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "GATTIERES Baronne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19863000000, + 43.76656000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRENOBLE - Place Saint-Bruno", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185030;FRM38E38185016", + "start_date": "2024-03-27;2022-02-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71363300000, + 45.18600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTE-MESME - Rue Charles Legaigneur", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-12-04", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78569001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96105930000, + 48.53110040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1144536662520129100", + "ref": "1002882", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLPMR6BE718G59", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18407700000, + 49.11433400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "110 kW", + "ref:EU:EVSE": "FRPD1PACCLMG", + "description": "hotelF1 - Limoges", + "start_date": "2024-08-28;2024-09-04", + "charging_station:output": "110 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29101163052, + 45.88824768179 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref": "V4BCPZSKGF;598290", + "ref:EU:EVSE": "FREBNP4461353084098836571;FREBNPV4BCPZSKGF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/V4BCPZSKGF;Bonneville, Quai du Parquet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40600200000, + 46.07710300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Woippy - Hôtel Ibis", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPWOIHI", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-06-18", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17832400000, + 49.15035500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Suresnes Charles Peguy - EFFIA", + "ref:EU:EVSE": "FRP01E92073003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22616090000, + 48.86884010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-01", + "network": "ASNF BORNE 1", + "amenity": "charging_station", + "capacity": "4", + "description": "ASNF BORNE 1", + "ref:EU:EVSE": "FRCPIE6660255;FRCPIE6660165", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6660255;FRCPIE6660165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.43138200000, + 48.42549900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "ref": "CBGWRNLZUG;756834", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "capacity": "4;6", + "ref:EU:EVSE": "FRECHP4364770915488804042;FRECHPCBGWRNLZUG", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "socket:type2_combo:output": "24 kW", + "network": "Easycharge services;Easy Charge", + "description": "Easy Charge/CBGWRNLZUG;Le Chesnay-Rocquencourt , Avenue Dutarte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11859000000, + 48.82555000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-11-15;2021-11-16", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX19*17", + "description": "Paris | Avenue Secrétan 4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1917", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37089120000, + 48.88217560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2329780234106249779", + "operator:email": "roaming@freshmile.com", + "ref": "370106", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "description": "Freshmile France/HIVI0H64KL", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59423500000, + 44.84554900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Dalayrac 19", + "start_date": "2021-08-17", + "ref:EU:EVSE": "FRV75PPX0208", + "opening_hours": "24/7", + "ref": "FR*V75*PPX02*08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33509700000, + 48.86818100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "741006", + "description": "Freshmile France/FVL8IDQLIP", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P572692907519126832", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38042800000, + 43.33825300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:30-12:00, Mo 13:30-19:30, Tu 07:30-12:00, Tu 13:30-19:30, We 07:30-12:00, We 13:30-19:30, Th 07:30-12:00, Th 13:30-19:30, Fr 07:30-12:00, Fr 13:30-19:30", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUNOYERPREDEMATH749401", + "description": "Pre de Math - Annecy", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-12-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16666000000, + 45.93137900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22256001", + "description": "Quemper Guezennec-Rue de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10570000000, + 48.70467000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PEYRIAC DE MER - Place Joseph Aubin Fabre", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS11E11285001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95972222222, + 43.08777780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-19:00", + "ref": "55087;55086", + "network": "GARAGE NELLO CHELLI - DIJON", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "307016121", + "description": "Toyota - Dijon - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-02-19", + "ref:EU:EVSE": "FRZTLE22AC55087;FRZTLE22AC55086", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06579900000, + 47.35448100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/JJGA8L3JV7", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "32032", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2813103467838698673" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02841600000, + 48.28616200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "86660", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/SEFWCP", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PSEFWCP", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52470000000, + 50.01240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-02-21", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*70*2*_*_;FR*SOD*S*FAST*70*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - MABLY", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST7013;FRIZFPFAST7011;FRIZFPFAST7012;FRIZFPFAST7021;FRIZFPFAST7022;FRIZFPFAST7023", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05531700000, + 46.06644500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-20;2024-04-16;2024-04-21", + "amenity": "charging_station", + "description": "MONTOIR-DE-BRETAGNE - Avenue De L'Ile-De-France;OuestCharge - Diva Sp - Montoir-De-Bretagne - Ile-De-France", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44103B;FRS44E44103002", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15204300000, + 47.33017700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61281F27RSXT6EQ5NW", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-25;2015-05-28", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Maison-Rouge-en-Brie;MAISON-ROUGE-EN-BRIE - Place Du Tilleul", + "ref:EU:EVSE": "FRS77P77272A;FRS77E77272001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15118800000, + 48.55897500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGYMP58251097170339358", + "operator:email": "emobility.exploit@greenyellow.fr", + "description": "GreenYellow Shift Mobility/83", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref": "1074861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06873100000, + 47.35099700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-10-17", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E221259;FRS37E221261", + "network": "MODULO - ATHEE SU CHER - Pl. de la mairie", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E221259;FRS37E221261", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ATHEE SU CHER - Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91642900000, + 47.32288500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - VAUBECOURT - Rue Ernest Chaudron", + "charging_station:output": "0 kW", + "ref": "FRS55E66185;FRS55E66186", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - VAUBECOURT - Rue Ernest Chaudron", + "ref:EU:EVSE": "FRS55E66185;FRS55E66186", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11409900000, + 48.93786300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "CAL05 - HOTEL DE VILLE - RADIANT", + "start_date": "2021-09-17", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*118*2*_*_;FR*SOD*S*LYON*118*1*_*_", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRGLYPLYON11811;FRGLYPLYON11812;FRGLYPLYON11821;FRGLYPLYON11822", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84435000000, + 45.79781800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "operator": "Mobilize Power Solutions", + "ref": "ef6ce240-a396-4a69-9175-020862f9bdc5", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "network": "CARITI ", + "description": "CARITI NOGENT LE ROUTROU", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMBZEXPDPX", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83097000000, + 48.33117700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-10-22", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Hôtel Najeti - Bondues", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPAVENTIMAERODROME599101", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08381800000, + 50.68625300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6557675;FRCPIE6678495", + "amenity": "charging_station", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "start_date": "2023-01-24", + "capacity": "4", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6557675;FRCPIE6678495", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT ST-ETIENNE1", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40000500000, + 45.46168200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "585557", + "description": "Leclerc/UKTY6ATECR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3868416392351379998", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551300000, + 47.79450400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "GOURS - PARKING EGLISE;MOBIVE | Gours | Parking Église", + "ref:EU:EVSE": "FRS33PMB334011;Non concerné;FRS33PMB334012", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref": "FR*SOD*S*MB33*40*1*_*_;cefe8247-9b87-513e-9bd9-9e89a1d80d29", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02234200000, + 44.99288600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Les Ulis - Espace de la République", + "ref": "94f2fa06-fd5e-52d6-91ec-73409dd23e3f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17022000000, + 48.68177400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO0000061", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRALLEGO0000061", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "description": "Allego NISSAN Laxou", + "operator:email": "info@allego.eu", + "start_date": "2021-10-18", + "network": "Allego NISSAN Laxou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12875320000, + 48.69270320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CAPESTANG Toulouse", + "ref": "LFR3179EVCP01", + "ref:EU:EVSE": "LFR3179EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03493000000, + 43.32523200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-LAURENT-DU-VAR - ESPLANADE DU LEVANT", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2019-10-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*75*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE7512;FRM06PNICE7511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19261400000, + 43.67405600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*205*1*_*_", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FREJUS - PARKING SAINTE CROIX - DOLTO", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ20512;FRA16PWIIZ20511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74128400000, + 43.43702400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3573871363370290495", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "ref": "419154", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/UNQ35Y4FOV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54009500000, + 47.44477700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-02-09;2024-06-20", + "ref:EU:EVSE": "FRPD1PMBCSJU", + "description": "Mr. Bricolage - Saint-Junien", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91941070000, + 45.89682570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKODGS1EZY2", + "ref": "KODGS1EZY2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Saint-Marcellin-En-Forez, Parking rue du 8 mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16770010000, + 45.49804810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "ref:EU:EVSE": "FREVZP8521399893782999292", + "description": "EVzen/1CCCA4C3-26A9-4B82-BF94-A0C9223F84B4", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref": "1096134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15642400000, + 47.01000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "NANCY - Saint Dizier", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-06-06", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "10", + "ref:EU:EVSE": "FRP07E543950031;FRP07E54395003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18390780000, + 48.68983240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNNT6A1CNH1A;FREBNPNT6A1CNH1A", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "NT6A1CNH1A;79195", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Figanieres, 4 Avenue des Marthes;Réseau eborn/NT6A1CNH1A", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49701700000, + 43.57118100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Road/663396b1fab7db001c17c5b4", + "ref": "1072803", + "network": "Road", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "opening_hours": "Mo,Sa,Su,Th,Tu,Fr,We 08:00-18:00", + "ref:EU:EVSE": "FREFLP4977306232932069330" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27021600000, + 47.49448700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP121009", + "start_date": "2023-05-17", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Première Classe Bourges", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201100000, + 47.04652900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/G9SVHKLSTF", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P596669879128661077", + "ref": "368833", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57284600000, + 44.83027000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FR*V75*PPX11*13", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "description": "Paris | Avenue Philippe Auguste 65", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39234860000, + 48.85366100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3309185659545898102", + "network": "Freshmile France", + "charging_station:output": "100 kW;22 kW", + "socket:type2_combo:output": "100 kW;22 kW", + "opening_hours": "Mo,We,Th,Tu 07:00-17:30,Fr 07:00-16:30", + "ref": "541736", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CPXF2LLPM8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31410200000, + 48.92663800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-07-21;2021-10-21", + "ref:EU:EVSE": "FRSSDPPERICAUD191001", + "operator:email": "support@driveco.com", + "description": "Volvo - Brive la Gaillarde", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47507000000, + 45.14037100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PBRETEUILHOUDOUARD", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900001", + "opening_hours": "24/7", + "start_date": "2016-02-15", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91807600000, + 48.83617700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21200*A", + "ref:EU:EVSE": "FRS21P21200A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180362" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97864600000, + 47.26020600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78481003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE PECQ - Piscine", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09482200000, + 48.88015700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref:EU:EVSE": "FRQPKPQPRK9591;FRQPKPQPRK9581;FRQPKPQPRK9571;FRQPKPQPRK9561;FRQPKPQPRK9521;FRQPKPQPRK95101;FRQPKPQPRK9511;FRQPKPQPRK9531;FRQPKPQPRK9541;FRQPKPQPRK9551", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*95*8*_*_;FR*SOD*S*QPRK*95*7*_*_;FR*SOD*S*QPRK*95*2*_*_;FR*SOD*S*QPRK*95*10*_*_;FR*SOD*S*QPRK*95*1*_*_;FR*SOD*S*QPRK*95*3*_*_;FR*SOD*S*QPRK*95*4*_*_;FR*SOD*S*QPRK*95*5*_*_;FR*SOD*S*QPRK*95*6*_*_;FR*SOD*S*QPRK*95*9*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-22", + "network": "QPARK", + "description": "QPARK - PERPIGNAN - CLEMENCEAU", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88974400000, + 44.01301700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP1771949078234084075", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "671585", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATL9MA6Q6DK", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67992200000, + 46.80673000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2021-12-10", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE416100", + "capacity": "3", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE416100", + "description": "IONITY Bourges St Thorettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24071400000, + 47.09467500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E127011;FRS51E127010", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E127011;FRS51E127010", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - VITRY LE FRANCOIS - Av. du quai des fontaines", + "network": "MODULO - VITRY LE FRANCOIS - Av. du quai des fontaines", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58168100000, + 48.72836100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "start_date": "2016-04-05", + "ref:EU:EVSE": "FRS77P77398A", + "ref": "01F5ZAKH613YAZN3S2J4AMDG4C", + "description": "Sablonnière", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29573000000, + 48.87522100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20852300000, + 49.97217400000 + ], + [ + 1.20853750000, + 49.97218640000 + ], + [ + 1.20851140000, + 49.97220240000 + ], + [ + 1.20848600000, + 49.97218300000 + ], + [ + 1.20847800000, + 49.97216700000 + ], + [ + 1.20847800000, + 49.97214500000 + ], + [ + 1.20849200000, + 49.97213000000 + ], + [ + 1.20853100000, + 49.97210400000 + ], + [ + 1.20855700000, + 49.97209400000 + ], + [ + 1.20857800000, + 49.97209100000 + ], + [ + 1.20860100000, + 49.97209000000 + ], + [ + 1.20862300000, + 49.97209300000 + ], + [ + 1.20866750000, + 49.97210680000 + ], + [ + 1.20863900000, + 49.97212430000 + ], + [ + 1.20860600000, + 49.97211100000 + ], + [ + 1.20855400000, + 49.97211600000 + ], + [ + 1.20852600000, + 49.97213400000 + ], + [ + 1.20851600000, + 49.97215500000 + ], + [ + 1.20851700000, + 49.97216200000 + ], + [ + 1.20852300000, + 49.97217400000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080299", + "start_date": "2023-06-02", + "capacity": "8", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "RELAIS LA COURNEUVE OUEST", + "owner:ref:FR:SIREN": "531681429;531681424;531681425;531681422;531681423;531681426;531681427;531681428", + "ref:EU:EVSE": "FRHPCPNF080299", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39387000000, + 48.93482000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS41E3803", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "start_date": "2019-04-26", + "description": "MODULO - VENDOMOISE - Chemin des coulisses", + "ref": "FRS41E3803", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VENDOMOISE - Chemin des coulisses" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23997400000, + 47.67146900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56P6407428429984546320", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "description": "Mobilité électrique 56/LXYAI8QKSC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "ref": "541922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52500000000, + 48.05270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3408880331338310312", + "amenity": "charging_station", + "description": "Freshmile France/LLHQ3XZ8B6R8OB", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "892008", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48071600000, + 45.33525500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Montrouge - Jules Ferry", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "ref:EU:EVSE": "FRMGPP92049B", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378000, + 48.81256199000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Peugeot - SAGG - Amplepuis", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2020-02-27", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPSAGGPEUGEOT695501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 07:30-12:00, Mo 14:00-18:30, Tu 07:30-12:00, Tu 14:00-18:30, We 07:30-12:00, We 14:00-18:30, Th 07:30-12:00, Th 14:00-18:30, Fr 07:30-12:00, Fr 14:00-18:30, Sa 08:00-11:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32648100000, + 45.98139000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAMPING Sunêlia l-Hippocampe", + "amenity": "charging_station", + "start_date": "2021-07-28", + "capacity": "1", + "description": "CAMPING Sunêlia l-Hippocampe", + "ref:EU:EVSE": "FRC2P001201", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "324577816", + "charging_station:output": "22.08 kW", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01763010025, + 44.10531997681 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446666", + "ref:EU:EVSE": "FRLE2P395370754862021257", + "description": "Leclerc/AVEKYZHJ5W" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76681900000, + 48.54503600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Pons | Place des Marronniers", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "d485f7d6-cbc3-5561-b656-2b82b03f8979", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54855900000, + 45.57797700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "description": "CITROEN - BRIANCON", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE05BACA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-12-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62529000000, + 44.88308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "25", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-10-29", + "description": "GOSB - Askia - Parking 1", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "22 kW;7 kW", + "ref:EU:EVSE": "FRS91E914790011;FRS91E91479001;FRBE1E91479001;FRBE1E914790011;FRBE1E914790012;FRS91E914790012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36965000000, + 48.73304000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P4906862932185691094", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "454302", + "capacity": "12", + "network": "Leclerc", + "description": "Leclerc/MCOGHNKVCW", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341000000, + 49.51190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PCLGWBICPBU", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Gignac-la-Nerthe, Boulevard Perrier", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23536000000, + 43.39324000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P1268857966510862508", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/ZX1OHTORO0", + "ref": "402713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21000000000, + 47.82238000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ROQUEFORT - PARKING INTERMARCHE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-06-13", + "ref:EU:EVSE": "FRA16PWIIZ5912;FRA16PWIIZ5911", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*59*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04336400000, + 43.66801100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7596627329619019971", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/AMWLUY3DJK", + "operator": "Freshmile | FR*FR1", + "ref": "465960" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93601400000, + 47.06370600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-11", + "owner:ref:FR:SIREN": "891118473", + "description": "Skill Telecom - Lannion", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PSKTLNN", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44390740000, + 48.73380360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPPYFXTRHNOV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint-Andre-D'Apchon, Parking place de la mairie;Réseau eborn/PYFXTRHNOV", + "ref": "PYFXTRHNOV;182681", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93146300000, + 46.03127400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Norauto - Bornes publiques/FA576BEE-D06E-42FA-8B45-E9CEFE26620C", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP3585171441211084486", + "ref": "977684", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75424500000, + 43.60450500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "COMMUNE VAL DISERE", + "operator": "IZIVIA", + "description": "COMMUNE VAL DISERE - CENTRE VILLAGE", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-07-19", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR66612;FROTHPOTHR66611", + "ref": "FR*SOD*S*OTHR*666*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98002700000, + 45.44940400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPE4GOEZZJSK", + "ref": "E4GOEZZJSK", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Marcellaz-Albanais, Rue des écoles", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99885601000, + 45.87370383000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-03", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/NFH22CALUW;Les Salles-sur-Verdon, Place Gleb Sivirine", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNFH22CALUW;FREBNP6026355290636874135", + "ref": "NFH22CALUW;370214" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20875600000, + 43.77316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING DOMAINE LE MIDI - BARBATRE", + "ref:EU:EVSE": "FROTHPOTHR35812;FROTHPOTHR35811", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*358*1*_*_", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18587300000, + 46.94512800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896601", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Th,Mo,We,Fr,Tu 08:30-17:30", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3767619056124665120", + "charging_station:output": "22 kW", + "description": "Freshmile France/HNRRDP5IDY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33544500000, + 50.36314500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRTSLP16456", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Aire des Portes d'Angers, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49123300000, + 47.49906300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "575429", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/ET9YQKHSFE", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P687193585791777412", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70871700000, + 48.52607300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Audi - ByMyCar - Limonest", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARAUDI697601", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-08-24", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77271300000, + 45.80455000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PSTGERMAINCAMPEGLISE", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "description": "900074", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40543000000, + 49.04884700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Paimpol-Parking de la gare", + "ref:EU:EVSE": "FRS22E22162001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04847500000, + 48.77629900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "36716;36717", + "ref:EU:EVSE": "FRZKAE24DC36716;FRZKAE22AC36717", + "amenity": "charging_station", + "capacity": "1", + "network": "KIA - Village Auto", + "owner:ref:FR:SIREN": "384794418", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "start_date": "2020-08-01", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "socket:type2_combo:output": "24 kW", + "operator": "ZEBORNE", + "description": " KIA - Village Auto (Pamiers) - 24 kW DC ;KIA - Village Auto (Pamiers) - 22kW AC " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63067900000, + 43.10844500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE279", + "description": "FPB_Cosnes", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92528000000, + 47.38240900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78172007", + "charging_station:output": "22 kW", + "description": "CONFLANS-SAINTE-HONORINE - Rue René Albert", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09187120995, + 48.99145302242 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE431453;FRIOYE431452;FRIOYE431451;FRIOYE431401;FRIOYE431402;FRIOYE431403;FRIOYE431404", + "ref:EU:EVSE": "FRIOYE431453;FRIOYE431452;FRIOYE431451;FRIOYE431401;FRIOYE431402;FRIOYE431403;FRIOYE431404", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "description": "Saugon Ouest", + "network": "Saugon Ouest", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49254340000, + 45.18892420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-07-02;2024-05-31", + "charging_station:output": "50 kW;43 kW;22 kW;3.7 kW", + "network": "Territoire de Energie TE53;TEM53", + "ref:EU:EVSE": "FRS53P53014A;FRS53E53014002", + "description": "AZE - Rue De Terre Rouge;OuestCharge - Quick Charger Evtronic - Aze - Rouge", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68459100000, + 47.82966900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "VIELLE-AURE - Route de St Lary", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS65E65465001", + "start_date": "2022-08-04", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32667000000, + 42.82560500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE007001;FRIENE007002", + "start_date": "2023-05-25", + "owner:ref:FR:SIREN": "898270251", + "network": "Bonvillet", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE007001;FRIENE007002", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Bonvillet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04629800000, + 48.09957900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "description": "LA GRANDE MOTTE - Quai Pompidou", + "charging_station:output": "75 kW;24 kW;22 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRS34E34344007;FRS34E34344008", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "75 kW;24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08275060000, + 43.55911330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-02-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BELFORET-EN-PERCHE", + "ref:EU:EVSE": "FRS61P61196A", + "ref": "SE61-BELF-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52562200000, + 48.37522900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892491", + "ref:EU:EVSE": "FRFR1P4975485501400043735", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLK8BPQZY12L05", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02946600000, + 48.99303700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-08-31", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBMJCXM", + "ref": "BMJCXM", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "description": "Pinsaguel, Mairie", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39033000000, + 43.50690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92004029", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ASNIERES-SUR-SEINE - Rue de Belfort", + "start_date": "2023-01-03", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26821250000, + 48.90817190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000202;FRCG0E000201;FRCG0E000203;FRCG0E000204", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRCG0E000202;FRCG0E000201;FRCG0E000203;FRCG0E000204", + "start_date": "2022-06-06", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "network": "BMW MINI - Marseille Grand Sud Auto - 13008 - 2", + "charging_station:output": "22 kW;50 kW;150 kW", + "description": "BMW MINI - Marseille Grand Sud Auto - 13008 - 2", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39234800000, + 43.27372400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - NOTRE-DAME RP", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2021-06-04", + "ref:EU:EVSE": "FRM06PNICE1331;FRM06PNICE1332;FRM06PNICE1341;FRM06PNICE1342", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*13*4*_*_;FR*SOD*S*NICE*13*3*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26818000000, + 43.70411000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "DAX - QUARTIER DU SABLAR;MOBIVE | Dax | Quartier du Sablar", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS40PMB40512;FRS40PMB40511;Non concerné", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-04-15", + "owner:ref:FR:SIREN": "254001399", + "ref": "FR*SOD*S*MB40*5*1*_*_;d4aa95ab-3632-5918-b4b7-d7c76fe75fd7", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05570000000, + 43.71314200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE59BRGA", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Citroën - Bourbourg", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20464500000, + 50.93862800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Super U - Saint-Yrieix-sur-Charente", + "ref": "238079;238080", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS238079;FRBMPS238080", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12537800000, + 45.67316600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "CHALETTE S/ LOING", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3006EVCP02;LFR3006EVCP01", + "ref:EU:EVSE": "LFR3006EVCP02;LFR3006EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73948900000, + 48.01260800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Brive | Parking", + "opening_hours": "24/7", + "ref": "d30e86e8-6334-5e8d-8877-7eb41372ab31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52792800000, + 45.15729400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d5fcd622-2716-58c2-bfe7-c80a067c27b5", + "description": "Yerres - Rue Jules Ferry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47697600000, + 48.71426400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-19", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000AVGP0NT", + "amenity": "charging_station", + "capacity": "1", + "description": "PARKING PONT DES DEUX EAUX - AVIGNON", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84000*AVG*P0NT", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84368600000, + 43.94621100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR3990EVCP01;LFR3990EVCP02;LFR3990EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "description": "ARVEYRES - Nouguey", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3990EVCP01;LFR3990EVCP02;LFR3990EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25781100000, + 44.90996900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PVDTPSA", + "description": "Le Village des Talents Créatifs - Puget-sur-Argens", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2021-11-09", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69317400000, + 43.45229300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "VDPQRVEOZH;237745", + "ref:EU:EVSE": "FREBNPVDPQRVEOZH", + "description": "Réseau eborn/VDPQRVEOZH;Manosque, Parking Guilhempierre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78056000000, + 43.83339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VUY2EBKCXJ", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1477774484067573873", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398975", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33156300000, + 46.90606100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking Gare de Beaune Nord - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E21054001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84788840000, + 47.02295310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "Citeos Nancy", + "amenity": "charging_station", + "ref": "639d4294-ed2d-5bc1-93c6-73bd184fb363", + "network": "CPO CITEOS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "operator": "41__Citeos Nancy", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20307700000, + 48.68509700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "JYRCFTINHR;529922", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJYRCFTINHR;FREBNP6009710688882497127", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Toulon, Parking Museum Départemental;Réseau eborn/JYRCFTINHR", + "start_date": "2022-06-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91064600000, + 43.14225600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-01", + "ref:EU:EVSE": "FROTHPOTHR47412;FROTHPOTHR47411", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*474*1*_*_", + "description": "GROUPE EDENIS - MURET - LES 3 FONTAINES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "GROUPE EDENIS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31684600000, + 43.44194100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1195333", + "network": "Freshmile France", + "description": "Freshmile France/LM1HWDWBF1J28M", + "ref:EU:EVSE": "FRFR1P1618661908548855884", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53113300000, + 44.85738400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10081681;FRUBIE10075904;FRUBIE10025553;FRUBIE10078611", + "operator:email": "contact@ubitricity.com", + "ref": "setp0100000118;setp0100000121", + "start_date": "2023-12-08", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "description": "UBI-LHSM-179", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11952800000, + 49.51638900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510500", + "description": "Freshmile France/IZHQAZZMW0", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3433124315487328451" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71642500000, + 50.47148300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555011", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-05-13", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - Rue Henri Vallée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46259000000, + 43.57417000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJWX7L1CMZ069", + "ref": "892446", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Th,Tu,Fr,Mo,We 08:00-19:00", + "ref:EU:EVSE": "FRFR1P8488644345636071492" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27415600000, + 47.83944200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "461889", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P3367143744327799755", + "description": "MobiSDEC/QADLCK0CXV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45776900000, + 49.14252500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLESPY - Villespy 1", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-01-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11439001", + "charging_station:output": "50 kW;22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09819100000, + 43.31853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78160002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHEVREUSE - Parking Centre", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03781900000, + 48.70498140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCTLB - Bénaménil", + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "81ad165b-1bc4-51ac-859a-b00fdc1c63cb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67331100000, + 48.56970300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS70PMELISEYGARE", + "opening_hours": "24/7", + "description": "SIED70/meliseygare", + "ref": "79849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57684000000, + 47.75300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59067002", + "network": "pass pass électrique", + "charging_station:output": "25 kW;22 kW", + "description": "BERGUES - Place Henri Billiaert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43244840733, + 50.96849357238 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "start_date": "2022-07-15", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "ref:EU:EVSE": "FRS35P35288009B1", + "description": "ST MALO - 6 place de la plage (Parking Plage Rochebonne) ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98848100000, + 48.66375300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref": "704489", + "network": "SIEG 63", + "capacity": "3", + "description": "SIEG 63/FR*S63*P63124*B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63124B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19287400000, + 45.73136800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@freshmile.com", + "owner:ref:FR:SIREN": "215701061", + "charging_station:output": "24 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Bouzonville Place du Marché", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator": "FRESHMILE", + "start_date": "2021-02-19", + "network": "FRESMILE", + "ref:EU:EVSE": "FRFR1EZTBC1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53253600000, + 49.29243600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79825", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "description": "SDEG32/QDBEGF", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "ref:EU:EVSE": "FRS32PQDBEGF", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60016000000, + 43.66760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARCUEIL - Rue Paul Bert", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94003002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-05", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32882900000, + 48.80406100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-26", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE25612;FRM06PNICE25611", + "ref": "FR*SOD*S*NICE*256*1*_*_", + "operator:email": "sav@izivia.com", + "description": "SAINT-LAURENT-DU-VAR - PARKING JEAN MEDECIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18983791468, + 43.67429377820 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "199493f9-407b-5ce8-a899-eff8822ae4da", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Marsac Sur L'Isle | Impasse du Vieux Moulin", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66136900000, + 45.18733800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE39112;FRSIGPSIGE39111", + "description": "SIGEIF - ECOLE LE VILLAGE - SAINT-LEU-LA-FORET", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*391*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24565470000, + 49.01834320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76457001", + "charging_station:output": "22 kW", + "start_date": "2022-10-12", + "description": "MOULINEAUX - Rue Louis Moguen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96722070000, + 49.34200290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "SOMMIERES Cévennes", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR0879EVCP03;LFR0879EVCP02;LFR0879EVCP04;LFR0879EVCP01", + "socket:type2_combo:output": "120 kW", + "ref": "LFR0879EVCP03;LFR0879EVCP02;LFR0879EVCP04;LFR0879EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09001100000, + 43.78879900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "a85b1354-9cc0-5153-a133-fbe84edf1e81", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Loulay | Place Jean Moulin", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51184600000, + 46.04566000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDE82/mauza", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PMAUZA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "934335", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24075000000, + 44.08860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "AVENUE RAYMOND CROLAND - LE PLESSIS-ROBINSON", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92350LPRCR0LAND", + "start_date": "2024-09-04", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92350*LPR*CR0LAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27739800000, + 48.78512100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR4111EVCP02;LFR4111EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "BREST GUIPAVAS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4111EVCP02;LFR4111EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.44291300000, + 48.41414200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Intermarché Super - Moustajon", + "ref:EU:EVSE": "FRPD1PITMMTJ", + "start_date": "2024-09-04", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59848941220, + 42.80843255001 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/SMK51LMAB7;Trept, Place des Anciens Combattants AFN", + "ref:EU:EVSE": "FREBNPSMK51LMAB7", + "ref": "75167;SMK51LMAB7", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31973500000, + 45.68719000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "start_date": "2023-12-18", + "amenity": "charging_station", + "ref": "FRETIP77333A", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - Hotel Ibis Nemours", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP77333A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71864900000, + 48.26559400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "50 kW;100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "capacity": "11", + "description": "Cora - Courrières", + "ref:EU:EVSE": "FRPD1PCORCOU", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94494330444, + 50.44474052557 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Pechbonnieu", + "ref:EU:EVSE": "FRDRVPCRFMKT311401", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-05-06", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46583000000, + 43.70756800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bornes SIE-ELY", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "ABONDANT - Château", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELYE28001001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44062000000, + 48.78308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*170*1*_*_", + "start_date": "2023-11-07", + "ref:EU:EVSE": "FROTHPAUCH17012;FROTHPAUCH17011", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "description": "AUCHAN - DARDILLY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76595140000, + 45.82107760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6778465;FRCPIE6779665", + "start_date": "2023-12-07", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW;150 kW", + "description": "SAT CHARGING BORNE CC", + "opening_hours": "24/7", + "network": "SAT CHARGING BORNE CC", + "ref": "FRCPIE6778465;FRCPIE6779665", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90410300000, + 50.30001400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/BMGYU8HPTS", + "ref:EU:EVSE": "FRFR1P8885374178537765962", + "operator": "Freshmile | FR*FR1", + "ref": "782577" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87393500000, + 48.77668200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75P901204", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "description": "Paris | Rue Abel 2", + "opening_hours": "24/7", + "ref": "FR*V75*P9012*04", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37487700000, + 48.84629500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLYFI9ROY2DB1Z", + "ref:EU:EVSE": "FRFR1P4945450730110610399", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1153011", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52593000000, + 48.52730900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Labouheyre, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP5675", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92682000000, + 44.20279900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/L6GDDDH42A", + "ref:EU:EVSE": "FRFR1P9000925169367218993", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref": "682172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897700000, + 48.44749100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "ref:EU:EVSE": "FR3R3P89363746", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "description": "R3 - Norauto Dury les Amiens", + "start_date": "2023-12-21", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27737000000, + 49.86160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461772", + "description": "MobiSDEC/IVMBTJCG7K", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P512063802153533373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26972900000, + 49.31702400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT VICTOR ET MELVIEU - Le Bourg de St Victor", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12251001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83340000000, + 44.05057100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA5P6363967617970373003", + "amenity": "charging_station", + "capacity": "1", + "ref": "932046", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5LOUVAFNPX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64181400000, + 44.78753300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49353001;FRS49P49353A", + "description": "TRELAZE - Village Sainte Parking Perreyeux;OuestCharge - Diva Sp - Trelaze - Perreyeux", + "charging_station:output": "22 kW", + "start_date": "2021-04-20;2024-04-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50959800000, + 47.45658200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8111200112;FRS81E8111200111;FRS81E8111200113", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "LABASTIDE DE LEVIS - Rue des écoles", + "start_date": "2024-06-24", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01291300000, + 43.92874200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF039295", + "socket:type2_combo:output": "175 kW", + "description": "RELAIS ROCADE CHARTRES", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681778;531681779;531680534;531680535", + "network": "TotalEnergies Charge Rapide", + "capacity": "2;4", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "50 kW;175 kW", + "start_date": "2024-04-18;2020-12-21", + "ref:EU:EVSE": "FRHPCPNF039295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52043800000, + 48.43634700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "LATRONQUIERE - Place du foirail", + "ref:EU:EVSE": "FRS46E46160002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07906200000, + 44.79914500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25048", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/ZVHKXW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PZVHKXW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17315000000, + 47.96450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DOUAI - Palais de Justice Pont du Rivage", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59178011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07807700000, + 50.37038400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923000", + "description": "Querrien-Place de l'Église", + "start_date": "2023-04-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.53691400000, + 47.95982700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-13;2024-02-23", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94068011", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "charging_station:output": "22 kW;7 kW", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Ronsard 1 et 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47095880000, + 48.80676850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-03", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346051242;FRLMSE12346051241;FRLMSE12346051232;FRLMSE12346051231", + "description": "BUXEROLLES-1-1;BUXEROLLES-1-2", + "opening_hours": "24/7", + "ref": "B012", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35242000000, + 46.59822100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Metropolis - Proximité - Rueil-Malmaison - Paul Doumer;Métropolis/FR*MGP*P92063*J", + "capacity": "4", + "start_date": "2021-07-05", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92063J", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "340661" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19137500000, + 48.88364700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE6361;FRSIGPSIGE6351;FRSIGPSIGE6311;FRSIGPSIGE6321;FRSIGPSIGE6331;FRSIGPSIGE6341", + "description": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*SIGE*63*6*_*_;FR*SOD*S*SIGE*63*5*_*_;FR*SOD*S*SIGE*63*4*_*_;FR*SOD*S*SIGE*63*1*_*_;FR*SOD*S*SIGE*63*2*_*_;FR*SOD*S*SIGE*63*3*_*_", + "start_date": "2020-11-04", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24092910000, + 48.82613110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "Allego Carrefour Saint Clement de Riviere", + "amenity": "charging_station", + "ref": "FRALLEGO9990332;FRALLEGO9990322;FRALLEGO9009161;FRALLEGO9009162;FRALLEGO9009181;FRALLEGO9009182;FRALLEGO9990321;FRALLEGO9990331", + "start_date": "2023-08-08", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Saint Clement de Riviere", + "ref:EU:EVSE": "FRALLEGO9990332;FRALLEGO9990321;FRALLEGO9009161;FRALLEGO9009162;FRALLEGO9009181;FRALLEGO9009182;FRALLEGO9990322;FRALLEGO9990331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84418870000, + 43.64915470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000058481", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "description": "Howdens Champigny", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52489000000, + 48.81916500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "17644b25-b5d4-5e53-bd32-c2ff42f5bf26", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Anglet | Parking Izadia" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52123000000, + 43.52685900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS85E85114001", + "operator": "Bouygues E&S", + "description": "JARD-SUR-MER - Rue Biaille De Langibaudière", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57682000000, + 46.41642000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-08", + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9005142;FRALLEGO9005132;FRALLEGO9001681;FRALLEGO9000131;FRALLEGO9000132;FRALLEGO9001682;FRALLEGO9005131;FRALLEGO9005141", + "amenity": "charging_station", + "description": "Allego Carrefour Alençon", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Alençon", + "ref": "FRALLEGO9005142;FRALLEGO9005132;FRALLEGO9001681;FRALLEGO9000131;FRALLEGO9000132;FRALLEGO9001682;FRALLEGO9005131;FRALLEGO9005141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06078800000, + 48.43303000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3107EVCP01;LFR3107EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "BARENTIN Curie", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3107EVCP01;LFR3107EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96080400000, + 49.53637000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "E.Leclerc - Loudun", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW;80 kW", + "ref:EU:EVSE": "FRPD1PLCLLDN", + "charging_station:output": "120 kW;50 kW;22 kW;80 kW", + "capacity": "9", + "start_date": "2023-12-11;2023-11-28", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08981140000, + 47.00936330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "description": "La Ravoire, Place des fées;Réseau eborn/DZTEO5VMC9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPDZTEO5VMC9;FREBNP6709358081256022820", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "DZTEO5VMC9;346667" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96590600000, + 45.57173000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "11 kW;7 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "20", + "opening_hours": "24/7", + "description": "EVzen/16DB8FD8-D0B5-43DB-BC0C-866941DEE15D", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP6920948486935708322", + "ref": "1022955" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46251600000, + 49.23322800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PGMVTRB", + "opening_hours": "24/7", + "description": "Gamm Vert - Tarbes", + "start_date": "2023-10-09;2023-10-10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07255980000, + 43.26852200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRE11PLM344201", + "start_date": "2020-10-21", + "charging_station:output": "22.08 kW", + "description": "Leroy Merlin - Béziers", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 07:00-20:30, Tu 07:00-20:30, We 07:00-20:30, Th 07:00-20:30, Fr 07:00-20:30, Sa 07:00-20:30, Su 07:00-20:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28571800000, + 43.33670800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP07181A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP07181A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-18", + "description": "e-Totem - Ibis Loriol Le Pouzin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75658419044, + 44.75653661856 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-04-16", + "network": "INTERMARCHE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR15911;FROTHPOTHR15921", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*159*2*_*_;FR*SOD*S*OTHR*159*1*_*_", + "operator:email": "sav@izivia.com", + "description": "INTERMARCHE - ANIZY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44331000000, + 49.50468100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MANNES BORNE 1", + "network": "MANNES BORNE 1", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRCPIE6967225;FRCPIE6967235", + "ref": "FRCPIE6967225;FRCPIE6967235", + "opening_hours": "24/7", + "start_date": "2024-08-05", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40452700000, + 48.80538900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TFZRLAD58K", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "466194", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P875652043658946161", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73469100000, + 48.54033900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP122070", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-09-05", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL CAEN MEMORIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40036300000, + 49.20046800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XOPBHY1L2B", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8662477816687285682", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1025367", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47946300000, + 43.56572200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN301001", + "description": "Nissan - Ales", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "start_date": "2024-01-04", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11216900000, + 44.10988400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4533813712038316382", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "515069", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MP5DRUW85N" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63734200000, + 48.13088800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Kyriad - Rouen - Sud Val de Reuil", + "amenity": "charging_station", + "start_date": "2022-08-10", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPKYRIAD271001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18812100000, + 49.24878400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "description": "MODULO - LA LOUPE - Pl. de l'hôtel de ville", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LA LOUPE - Pl. de l'hôtel de ville", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS28E134195", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E134195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01420800000, + 48.47168200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P4625071028252315303", + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/XPVDAUWIUL", + "ref": "75446", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13865100000, + 48.05975200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P7237808727556902992", + "operator:email": "exploitation@waat.fr", + "ref": "1155507", + "description": "WAAT/FRWA9L1XDQKIW7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26234000000, + 43.44925600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P50430001", + "charging_station:output": "22 kW", + "description": "LESSAY - Le rond Point", + "start_date": "2016-08-18", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52762780000, + 49.21219130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-14", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "SAINT JUERY - Place De La Mairie", + "ref:EU:EVSE": "FRS81E8125700112;FRS81E8125700111;FRS81E8125700121;FRS81E8125700122", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21120948458, + 43.94938575657 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "RELAIS COURBEVOIE", + "owner:ref:FR:SIREN": "531681614;531681612;531681611;531681608;531681609;531681606;531681607;531681610;531681613", + "ref:EU:EVSE": "FRHPCPNF078207", + "opening_hours": "24/7", + "charging_station:output": "300 kW;54 kW", + "socket:type2_combo:output": "300 kW", + "ref": "FRHPCPNF078207", + "network": "TotalEnergies Charge Rapide", + "capacity": "9", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2023-08-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25667700000, + 48.90440100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49015004;FRS49P49015D", + "charging_station:output": "22 kW", + "start_date": "2021-04-28;2024-03-27", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Avrille - Maison Medicale;AVRILLE - Parking Maison Médicale", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58995100000, + 47.49956800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PCOUDRAY", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "46597", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Coudray" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83392000000, + 49.41260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "HAZEBROUCK - Rue François Dominique Depoorter", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH08E59295008", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53421300000, + 50.72017300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "DOMAZAN - Avenue Du Pont", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30103001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65198000000, + 43.92943100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "network": "Morbihan Energies", + "description": "Josselin - Place d'Alzey", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLBRBBU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54601800000, + 47.95412500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B008", + "description": "BIARD-1-1;BIARD-1-2", + "start_date": "2015-10-02", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346390261;FRLMSE12346390251", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30572400000, + 46.57666000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP93079B", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "start_date": "2023-03-24", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Villetaneuse - Division Leclerc;Métropolis/FR*MGP*P93079*B", + "ref": "484856", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34424200000, + 48.95591200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "start_date": "2024-03-22", + "amenity": "charging_station", + "charging_station:output": "200 kW;300 kW;22 kW", + "ref": "FRSHEE80;FRSHEE79", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSHEE80;FRSHEE79", + "socket:type2_combo:output": "300 kW", + "network": "Shell Aire du Domaine d'Harcourt HW", + "description": "Shell Aire du Domaine d'Harcourt HW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77405413000, + 49.24265753000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E574630013;FRBE1E574630012;FRBE1E574630011;FRBE1E57463001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-09-01", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "30", + "network": "CPO Alizé Liberté Public", + "description": "METZ - Parking Théâtre Comédie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17368360000, + 49.12136670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89370719", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A1 Phalempin Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04608400000, + 50.53158400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "be6043f8-6b48-5270-afca-47b18d1c2240", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Meme les Carrieres | Route de la Gare", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14214800000, + 45.64436100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "description": "FRUGES P1", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-02-29", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE62FABA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13427800000, + 50.51374900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "RENNES CESSON", + "start_date": "2023-11-16", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRALLPEVCARSRECES", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59067000000, + 48.11275000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3716EVCP02;LFR3716EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LES ULIS Horn", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3716EVCP02;LFR3716EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19916200000, + 48.67819000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "PLOUGASTEL-DAOULAS - Rue Malraux", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM29E29189001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.37074100000, + 48.37197000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "133474", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP1406834586669866356", + "description": "Réseau eborn/W26C6ONSBL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44698700000, + 45.40980700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9140705607026825865", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "741000", + "description": "Freshmile France/CMPLB7WHDW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08017200000, + 48.02775000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "description": "STRASBOURG - Citadelle Dock", + "start_date": "2024-02-22", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E67482006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77986930000, + 48.57212300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Mison, Les Armands;Réseau eborn/Z3QABMCZC1", + "ref": "134764;Z3QABMCZC1", + "ref:EU:EVSE": "FREBNPZ3QABMCZC1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85836600000, + 44.26642600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP6236501170272389176", + "opening_hours": "We,Su,Fr,Mo,Tu,Th,Sa 08:00-18:00", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref": "1019499", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/65cdedf9645fd9001cf63f16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25959000000, + 46.00007900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAS EPONA - MOUANS-SARTOUX", + "ref": "FR*SOD*S*OTHR*277*1*_*_;FR*SOD*S*OTHR*277*2*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SAS EPONA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR27721;FROTHPOTHR27711", + "start_date": "2021-11-16", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97463200000, + 43.62045300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6606675", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT CABESTANY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6606675", + "charging_station:output": "22 kW", + "network": "SONEPAR CONNECT CABESTANY", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92278600000, + 42.69161600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "477711", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3978459931350613803", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VCFWJE8H9N" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39965900000, + 45.48381800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s540964", + "ref": "1168857", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P3022889038752110161", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11467600000, + 50.62547300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MGD8YQM75S", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "471114", + "ref:EU:EVSE": "FRFR1P1977632373440307399", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41319600000, + 45.92446400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-03", + "ref:EU:EVSE": "FRTCBP00124", + "network": "ACCOR Hotels", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "434017455", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mercure Forbach", + "ref": "FRTCBP00124", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89970500000, + 49.17850400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/CJIGQX5EEN", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5903838984419789328", + "ref": "521237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99682600000, + 45.99453100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPMAURINVOLKSWAGEN040001", + "description": "Volkswagen - Digne", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "start_date": "2021-01-29", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18476200000, + 44.07567300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Cast-Rue de la Fontaine", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2902500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.13965100000, + 48.15922200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDEA 10/F6SJHLNDHA", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "88232", + "ref:EU:EVSE": "FRS10P3618632484981662678" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03163100000, + 48.31102500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/1948447;GHO Lyon Bron", + "owner:ref:FR:SIREN": "819283276", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC43460;FRZP1PEAC43459;FRZP1PEAC43458;FRZP1P6867669927830277130;FRZP1PEAC43457", + "ref": "575897;ac15ed04-777d-4c5a-9b14-c3d146bf3bb9", + "network": "GHO Lyon Bron;Zephyre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92887100000, + 45.72493400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-05-04", + "amenity": "charging_station", + "capacity": "1", + "description": "MagnificEscapade", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE83", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50139900000, + 48.45471700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PABBEVILMAIR", + "description": "FDE 80/Abbevilmair", + "ref": "64613", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83478000000, + 50.10610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST16012;FRIZFPFAST16011;FRIZFPFAST16013", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - MAUBOURGUET", + "start_date": "2024-06-25", + "ref": "FR*SOD*S*FAST*160*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04220590000, + 43.44267850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MAVES - Rue du Cèdre", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - MAVES - Rue du Cèdre", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4706;FRS41E4707", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4706;FRS41E4707" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36274900000, + 47.74415400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "120617", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mouv'Oise/Thelle", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PTHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28560000000, + 49.17790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VAV02 - HOTEL DE VILLE", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON7431;FRGLYPLYON7411;FRGLYPLYON7421;FRGLYPLYON7441", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*74*4*_*_;FR*SOD*S*LYON*74*1*_*_;FR*SOD*S*LYON*74*2*_*_;FR*SOD*S*LYON*74*3*_*_", + "start_date": "2021-05-20", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91989200000, + 45.77751900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - MONTLOUIS SUR LOIRE - Leonard de Vinci", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - MONTLOUIS SUR LOIRE - Leonard de Vinci", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E214072;FRS37E214071", + "ref": "FRS37E214072;FRS37E214071" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80232797000, + 47.39714715000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mobilité électrique 56/JFWBRE", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PJFWBRE", + "ref": "39062", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77101000000, + 47.88080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRG10P17300A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "ref:EU:EVSE": "FRG10P17300A", + "network": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15429800000, + 46.16296400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ESSEY-LES-NANCY - Pkg. Relais Mouzimpre", + "ref:EU:EVSE": "FRN54E187832;FRN54E187831", + "ref": "FRN54E187832;FRN54E187831", + "network": "MODULO - ESSEY-LES-NANCY - Pkg. Relais Mouzimpre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22521000000, + 48.70250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 27 RUE MICHELET - IVRY-SUR-SEINE", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2021-11-19", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*207*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE20712;FRSIGPSIGE20711", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37586000000, + 48.80719600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "amenity": "charging_station", + "capacity": "4", + "network": "Groupe Donjon - Audi Les Ulis - 2", + "opening_hours": "24/7", + "description": "Groupe Donjon - Audi Les Ulis - 2", + "socket:type2_combo:output": "225 kW;150 kW", + "ref": "FRCG0E001891;FRCG0E001892;FRCG0E001893;FRCG0E001894", + "charging_station:output": "225 kW;150 kW;22 kW", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001891;FRCG0E001892;FRCG0E001893;FRCG0E001894" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19490500000, + 48.67720700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "Yutz parking Aragon", + "start_date": "2024-03-11", + "ref:EU:EVSE": "FRLMSE1234571371", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779987486", + "operator": "ZEENCO", + "charging_station:output": "25 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "ZEENCO", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18916500000, + 49.35897200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Burie | Rue de Verdun (Place des Platanes)", + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "e0f18feb-49be-57c9-99aa-f81bb3cd37b0", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42225700000, + 45.77407200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE86SACA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "CARREFOUR CTC - ST MARTIN LA PALLU", + "start_date": "2023-12-21", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30662200000, + 46.73012500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLOMIERS - Parking Lauragais", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-02", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRA31E31149003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33374380000, + 43.60983270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "FIGEAC Ratier", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3686EVCP02;LFR3686EVCP01", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3686EVCP02;LFR3686EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01198400000, + 44.60417900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38120001", + "start_date": "2022-11-30", + "capacity": "1;7", + "description": "PALLUEL - Parking Le Fontanil Cornillon (CITIZ);FONTANIL-CORNILLON - P+R Le Fontanil Cornillon-Palluel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66084800000, + 45.25388100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "description": "Saint Germain Laprade,Place de l'europe", + "ref:EU:EVSE": "FREBNPRH3HDEMXJD", + "ref": "RH3HDEMXJD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96790901000, + 45.03794690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4236169165292766610", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "706118", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/O3NWKI9IIG", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90441700000, + 49.20623500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "AUBERVILLIERS - Théâtre", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-27", + "ref:EU:EVSE": "FRP07E930010021;FRP07E93001002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38343503500, + 48.91059858000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/NYDEBU;Chabeuil, Aéroport - Unamed Road", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPNYDEBU", + "ref": "31792;NYDEBU", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96484000000, + 44.91650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "description": "Bobigny - Hôtel Campanile", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPBOBHC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45702800000, + 48.90573600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-07-04;2024-08-02", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Limoges République - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E87085003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26178000000, + 45.83205000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6644565;FRCPIE6644555;FRCPIE6644635;FRCPIE6644645", + "capacity": "8", + "description": "HAILO FR BORNE 4", + "amenity": "charging_station", + "network": "HAILO FR BORNE 4", + "opening_hours": "24/7", + "ref": "FRCPIE6644565;FRCPIE6644555;FRCPIE6644635;FRCPIE6644645", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73097800000, + 46.48044700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "description": "Easy Charge/QPBGH8RU9O", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "756924", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHP3018607257020950760" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34236800000, + 48.62371200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX18*07", + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "start_date": "2021-08-17", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1807", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35910000000, + 48.88610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "487239", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8328120644212719057", + "description": "Freshmile France/YIQW3O95EW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77622000000, + 45.56782000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Avenue de Flandre 10", + "ref:EU:EVSE": "FRV75P901901", + "ref": "FR*V75*P9019*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36996100000, + 48.88472000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLQ6ML81I131PP", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P4875493516464645905", + "ref": "1112679", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71146800000, + 48.55056400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-19:00", + "ref:EU:EVSE": "FRSSDPDMD448001", + "operator:email": "support@driveco.com", + "start_date": "2022-08-04", + "description": "MG Motor - Saint-Herblain", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62353400000, + 47.25182800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22213001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plouer sur Rance-Rue de la poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00498200000, + 48.52690100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-13", + "description": "LEUCATE - Place Pierre Gonzales", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;100 kW", + "network": "Reveo", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRS11E112020011;FRS11E11202001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02444444444, + 42.91138890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mercedes Benz - EMB Léman Annemasse -22kW AC ", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "start_date": "2019-12-10", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZPEE22AC28235;FRZPEE22AC28236", + "opening_hours": "Mo-Fr 06:30-19:00,Sat 08:00-18:00", + "network": "Mercedes Benz - EMB Léman Annemasse", + "owner:ref:FR:SIREN": "829900414", + "ref": "28235;28236", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26143330000, + 46.20144830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS09E09244001", + "description": "PAILHES - Place Des Eglise", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44380000000, + 43.10180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80P6552064595202483505", + "operator:email": "roaming@freshmile.com", + "ref": "412043", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/LXGKYT9YHC", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33379200000, + 50.10802900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*43*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST4313;FRIZFPFAST4312;FRIZFPFAST4311", + "start_date": "2024-01-16", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - RILLIEUX-LA-PAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88771560000, + 45.81490520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44073B;FRS44E44073002", + "amenity": "charging_station", + "description": "HERIC - Rue De L'Océan;OuestCharge - Diva Sp - Heric - Océan", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-04-15;2024-05-02", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65389300000, + 47.41419500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Forges;FORGES - Rue De L'Église", + "ref": "01F5ZAKH61QEC61D29D0JQPXP2", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77194001;FRS77P77194A", + "start_date": "2023-05-15;2016-08-11", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96140100000, + 48.41899500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;52 kW;150 kW", + "socket:type2_combo:output": "52 kW;150 kW", + "ref": "927123", + "description": "GreenYellow Shift Mobility/62", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref:EU:EVSE": "FRGYMP4520947532105439005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82782000000, + 48.08201000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220422;FRS37E220423", + "start_date": "2021-05-29", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E220422;FRS37E220423", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - LUYNES - Allée Aimé Richardeau", + "network": "MODULO - LUYNES - Allée Aimé Richardeau", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55631700000, + 47.38387300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "a81f939e-4f7e-53a2-8bf1-4a865b251bda", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator": "38__Blénod", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BLENOD LES PONT A MOUSSON - Blénod-lès-Pont-à-Mousson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05204700000, + 48.88356800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "808490288", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "network": "SARL Aumont", + "description": "SARL Aumont", + "opening_hours": "24/7", + "start_date": "2024-05-23", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16648000000, + 48.72593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "description": "Nissan Dax - CAR 40-64", + "ref": "7fbcc9d9-8f85-4e37-b7da-986b8b041c6e;13f1dfad-7793-4251-9793-75b031e10042", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "ref:EU:EVSE": "FRMBZEBOPRH;FRMBZEAKUJR", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "start_date": "2024-04-15", + "network": "Nissan Dax - CAR 40-64" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05653570318, + 43.71978883074 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-05", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94076009", + "description": "VILLEJUIF - Avenue De La Division Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37041291534, + 48.78563505263 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref": "FRCPIE6535055", + "ref:EU:EVSE": "FRCPIE6535055", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "BUCHELAY RAMBOUILLET 1", + "operator:email": "info@chargepoint.com", + "start_date": "2023-07-31", + "description": "BUCHELAY RAMBOUILLET 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85080400000, + 48.65186300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P4681604556623347638", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref": "446855", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/WFAMGXB1VA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513200000, + 43.64557100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "description": "GALGON - PARKING MAIRIE;MOBIVE | Galgon | Parking Mairie", + "ref:EU:EVSE": "FRS33PMB333911;Non concerné;FRS33PMB333912", + "ref": "FR*SOD*S*MB33*39*1*_*_;a8a4f8bf-bd2e-59fb-b351-3ac4633fb2c9", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27407300000, + 44.99225600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-25", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Nueil les Aubiers - Place Colun", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB73067A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58792319000, + 46.95686714000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPDERW", + "network": "DRIVECO", + "description": "Airbus - Blagnac - C80 - parking extérieur", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-01-26", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34722900000, + 43.63358000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2745EVCP02;LFR2745EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "ST MARCEL Cassin", + "ref:EU:EVSE": "LFR2745EVCP02;LFR2745EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86770700000, + 46.77252800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*45*3*_*_;FR*SOD*S*NICE*45*2*_*_;FR*SOD*S*NICE*45*1*_*_", + "description": "NICE - SAINTE HELENE RP", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE4512;FRM06PNICE4511;FRM06PNICE4521;FRM06PNICE4531", + "start_date": "2019-01-05;2019-01-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23224704088, + 43.68180402714 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*180*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "ROQUESTERON - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ18012;FRA16PWIIZ18011", + "start_date": "2022-10-11", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00478800000, + 43.87434100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLXYLG3O02KQZR", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7859625161342302326", + "network": "Freshmile France", + "ref": "1133571", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.53079000000, + 42.40091800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "start_date": "2023-02-02", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBRCLLB", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "description": "Bricomarché - Luxeuil-les-Bains", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36312290000, + 47.80982150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPX12ABRPVCW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/X12ABRPVCW;L'Isle-D'Abeau, Avenue Henri Bergson", + "ref": "X12ABRPVCW;30182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21895000000, + 45.62100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Osny - CC Osny 2", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPOSNCC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08068000000, + 49.07245700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2024-02-14;2024-03-19", + "ref:EU:EVSE": "FRP07E31555012;FRP07E315550121;FRP07E315550122", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "TOULOUSE - Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41471910000, + 43.59464020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPQLKVQH0DOT", + "ref": "QLKVQH0DOT;85940", + "description": "Manosque, Avenue du Dr Bernard Foussier;Réseau eborn/QLKVQH0DOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80513600000, + 43.82935200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP7356416248911022989;FRECHPJSNTKCLBH0", + "start_date": "2022-12-07", + "ref": "JSNTKCLBH0;682115", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Easy Charge/JSNTKCLBH0;Le Chesnay-Rocquencourt, Carrefour de la Redingote", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12707000000, + 48.82238000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A4 Brumath Ouest", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "start_date": "2023-02-02", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP102104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69195100000, + 48.72381100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20763890000, + 49.97155680000 + ], + [ + 1.20755030000, + 49.97175260000 + ], + [ + 1.20744890000, + 49.97173360000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/RFHEYE", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PRFHEYE", + "ref": "160721", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66470000000, + 45.27980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-06-25", + "ref:EU:EVSE": "FRV75PPX0912", + "opening_hours": "24/7", + "ref": "FR*V75*PPX09*12", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Paul Escudier 2", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33174750000, + 48.88064360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1084803", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1991726160069018999", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLVKS4BAMITUF9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41529700000, + 47.68345100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-05-10", + "network": "DRIVECO", + "description": "Volvo - Rodez", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPFABREVOLVO128501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58350000000, + 44.36929100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SYDED/villerbartho", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "ref": "79897", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS25PVILLERBARTHO", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67085000000, + 47.05910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E224964;FRS18E224965", + "charging_station:output": "0 kW", + "ref": "FRS18E224964;FRS18E224965", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-11-11", + "description": "MODULO - St AMAND-MONTROND - Rte. de Bourges", + "network": "MODULO - St AMAND-MONTROND - Rte. de Bourges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48081800000, + 46.73803900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAURECOURT - Gymnase", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78382003", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06360580000, + 49.00133370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - SAINT ETIENNE - CHAVANELLE", + "start_date": "2022-11-07", + "ref": "FR*SOD*S*QPRK*44*8*_*_;FR*SOD*S*QPRK*44*7*_*_;FR*SOD*S*QPRK*44*5*_*_;FR*SOD*S*QPRK*44*4*_*_;FR*SOD*S*QPRK*44*2*_*_;FR*SOD*S*QPRK*44*1*_*_;FR*SOD*S*QPRK*44*10*_*_;FR*SOD*S*QPRK*44*11*_*_;FR*SOD*S*QPRK*44*3*_*_;FR*SOD*S*QPRK*44*6*_*_;FR*SOD*S*QPRK*44*9*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQPKPQPRK44111;FRQPKPQPRK44101;FRQPKPQPRK4411;FRQPKPQPRK4421;FRQPKPQPRK4431;FRQPKPQPRK4441;FRQPKPQPRK4451;FRQPKPQPRK4461;FRQPKPQPRK4471;FRQPKPQPRK4481;FRQPKPQPRK4491", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39235900000, + 45.43419700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81063001", + "start_date": "2022-02-22", + "description": "CASTELNAU DE LEVIS - Rue Sicard Alaman" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08546000000, + 43.93825200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE409400", + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2019-08-28", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Poitiers Jaunay-Clan", + "ref:EU:EVSE": "FRIONE409400", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37111900000, + 46.70183600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-07", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "ref:EU:EVSE": "FRS50P50602004", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "CHERBOURG EN COTENTIN (TOURLAVILLE) - Moulin Guibert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57176700000, + 49.63935200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Touquin;TOUQUIN - Place De La Mairie", + "ref:EU:EVSE": "FRS77E77469001;FRS77P77469A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH613JA6ST9Z9TX9QQBD", + "start_date": "2016-08-31;2023-05-17", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01174400000, + 48.73556100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "SARTHE SARGE LE MANS NORD", + "capacity": "8", + "owner:ref:FR:SIREN": "531680455;531680458;531680454;531680456;531680459;531680460;531680457;531680461", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080138", + "ref": "FRHPCPNF080138", + "start_date": "2022-08-10;2023-11-14", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25520000000, + 48.05580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-04-22", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E242698;FRS41E242699", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - YVOY LE MARRON - Pkg. de l’église", + "network": "MODULO - YVOY LE MARRON - Pkg. de l’église", + "ref:EU:EVSE": "FRS41E242698;FRS41E242699" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85230600000, + 47.63300200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/TLSDKV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "48292", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PTLSDKV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75489000000, + 47.64210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "DAR02 - PARKING DU PANORAMA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2023-08-16", + "ref:EU:EVSE": "FRGLYPLYON19311;FRGLYPLYON19312", + "ref": "FR*SOD*S*LYON*193*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75066300000, + 45.81772600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Metropolis - Proximité - Châtenay-Malabry - Roger Salengro", + "start_date": "2021-07-05", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92019D", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27218497000, + 48.76457362000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPSOFIDADS625001", + "start_date": "2019-11-27", + "network": "DRIVECO", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "description": "DS - Saint Omer", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26804600000, + 50.74491500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-07", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ST LEGER DU BOURG DENIS - Parking Salle Polyvalente", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76599001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15983010000, + 49.43175670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/MQMCLP8KZX", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "626372", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2535461649712192067" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13354600000, + 45.78077100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "8289a88f-45c9-5452-9b1e-cb5c174c2cb8", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Biganos | Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97569200000, + 44.64143000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "SAINT OUEN L'AUMONE - Rue du 8 mai 1945", + "ref:EU:EVSE": "FRS95E95572005", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-23", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10558370000, + 49.04505250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "ref:EU:EVSE": "FRSITE00000203", + "operator:email": "info.allego.france@allego.eu", + "description": "PATHE LIEVIN", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77615240000, + 50.42339280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LECLERC SURGERE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2PAFGQ2;FRLE2PAFGQ1", + "operator": "GREENSPOT", + "description": "LECLERC SURGERE", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74000621457, + 46.11220347444 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PYSFQV000CI", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "La Barben, Route des Feissiniers, Parking Tennis", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17641300000, + 43.62989900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P1179567641705097923", + "operator:email": "roaming@freshmile.com", + "description": "SDEY/EUJTDP202S", + "amenity": "charging_station", + "capacity": "4", + "ref": "782619", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99299300000, + 47.69666700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*35*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ3511;FRA16PWIIZ3512", + "start_date": "2018-07-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "CAILLE PARKING DE LA MOULIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73120900000, + 43.77903000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "160 kW;60 kW", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "597858", + "network": "Freshmile France", + "charging_station:output": "22 kW;50 kW;60 kW;160 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2858272494815550228", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GY3ENDUNAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996800000, + 43.49045700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-05", + "description": "Retail Park Grand Frais - Azay-le-Rideau", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PRETAZA", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47401466613, + 47.26758176688 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "30251", + "network": "Réseau eborn", + "description": "Réseau eborn/DCNJKNE4HQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPDCNJKNE4HQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48280500000, + 45.29550800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3144358371379219464", + "charging_station:output": "22 kW", + "ref": "1041579", + "operator:email": "support@evzen.com", + "description": "ENGIE MAMP - Bornes publiques/53949B56-B3FD-4827-80BA-4321E2DB59C1", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36995700000, + 43.31272500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref": "FR*SOD*S*OTHR*635*1*_*_;FR*SOD*S*OTHR*635*2*_*_", + "amenity": "charging_station", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "SUPER U - MARANS", + "ref:EU:EVSE": "FROTHPOTHR63523;FROTHPOTHR63522;FROTHPOTHR63521;FROTHPOTHR63511", + "start_date": "2023-05-23;2023-11-23", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99191600000, + 46.31328000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNFOR8KTMTNA;FREBNPFOR8KTMTNA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "85892;FOR8KTMTNA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/FOR8KTMTNA;Pourrieres, Impasse Des Romarins", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73680900000, + 43.50392000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJLQKAG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Monteleger, Parc Forêt d'Orient;Réseau eborn/JLQKAG", + "ref": "JLQKAG;31876", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92192000000, + 44.86594000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref": "FR*SOD*S*OTHR*331*4*_*_;FR*SOD*S*OTHR*331*3*_*_;FR*SOD*S*OTHR*331*1*_*_;FR*SOD*S*OTHR*331*2*_*_", + "start_date": "2022-03-07", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR33121;FROTHPOTHR33111;FROTHPOTHR33131;FROTHPOTHR33141", + "description": "U EXPRESS - SAINT-ROGATIEN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07655300000, + 46.14952800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "521243", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CN71UXKBKD", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5793937176892443428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57887000000, + 43.35958900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX15*28", + "start_date": "2021-09-07", + "ref:EU:EVSE": "FRV75PPX1528", + "opening_hours": "24/7", + "description": "Paris | Rue Balard 108", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27870000000, + 48.83730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "description": "Freshmile France/X42UOLEHM3", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "370181", + "ref:EU:EVSE": "FRFR1P4526591502657378161", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075100000, + 48.87181800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-09", + "description": "Domaine les Oréades", + "network": "DRIVECO", + "capacity": "2", + "opening_hours": "Mo 08:00-12:00, Mo 13:00-17:00, Tu 08:00-12:00, Tu 13:00-17:00, We 08:00-12:00, We 13:00-17:00, Th 08:00-12:00, Th 13:00-17:00, Fr 08:00-12:00, Fr 13:00-17:00, Sa 08:00-12:00, Sa 13:00-17:00, Su 08:00-12:00, Su 13:00-17:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDOMAINELESOREADES404601", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07732800000, + 44.49601800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PVALREUILGARE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27", + "description": "900108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22422100000, + 49.27568400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22113004", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Lannion-Boulevard Louis Guillou (parking Kermaria)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.45639400000, + 48.72757800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY36E78133001", + "description": "CHAMBOURCY - Rue de la Croix Blanche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04192210000, + 48.90365690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE223", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "description": "Sorofi_Villeurbanne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89245900000, + 45.76726400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78029002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AUBERGENVILLE - Avenue De La Division Leclerc", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85624700000, + 48.95844300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "ref:EU:EVSE": "FRIOYE409853;FRIOYE409852;FRIOYE409851;FRIOYE409806;FRIOYE409805;FRIOYE409804;FRIOYE409803", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE409853;FRIOYE409852;FRIOYE409851;FRIOYE409806;FRIOYE409805;FRIOYE409804;FRIOYE409803", + "opening_hours": "24/7", + "network": "Valleiry Sud", + "start_date": "2022-11-22", + "description": "Valleiry Sud", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96305600000, + 46.09629600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "description": "SDED52/YV5RIITPOT", + "opening_hours": "24/7", + "ref": "248263", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P2101553266221792785" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86549100000, + 48.58954700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65415001", + "start_date": "2022-03-02", + "description": "SEGUS - Parking Mairie", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07573000000, + 43.07032000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Riscle", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-02-23", + "capacity": "4", + "operator:email": "support@iecharge.io", + "network": "Riscle", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE004401;FRIENE004402", + "ref:EU:EVSE": "FRIENE004401;FRIENE004402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07286425000, + 43.65675516000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34299002", + "operator": "Bouygues E&S", + "description": "SERIGNAN - Rue Valéssie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28180381939, + 43.28248027360 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "CETON - Rue des Fontaines", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-CETON-001", + "ref:EU:EVSE": "FRS61P61079B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74778780000, + 48.22588600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLI4EPKQ72IF9C", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7881321061551314115", + "ref": "892080", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64799100000, + 48.90295300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "description": "Roulez Électrique En Haute-Garonne/SJTZZY", + "opening_hours": "24/7", + "ref": "49030", + "network": "Roulez Électrique En Haute-Garonne", + "ref:EU:EVSE": "FRS31PSJTZZY", + "charging_station:output": "18 kW;22 kW", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78860400000, + 42.98470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - Annecy", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPCOCHETVOLVO743301", + "start_date": "2020-11-24", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08705800000, + 45.92446300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "2 kW;50 kW;22 kW", + "capacity": "5", + "description": "BMW - ESPACE BIENVENUE - ROYAN - 17110 - 2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "FRCG0E000198;FRCG0E000095;FRCG0E000094;FRCG0E000093;FRCG0E000096", + "opening_hours": "Sa 14:00-18:00,Fr 14:00-19:00,Th 14:00-19:00,We 14:00-19:00,Tu 14:00-19:00,Mo 14:00-19:00,Sa 09:00-12:00,Fr 08:00-12:00,Th 08:00-12:00,We 08:00-12:00,Tu 08:00-12:00,Mo 08:00-12:00", + "ref:EU:EVSE": "FRCG0E000198;FRCG0E000095;FRCG0E000094;FRCG0E000093;FRCG0E000096", + "start_date": "2022-04-06", + "operator:email": "info@chargeguru.com", + "network": "BMW - ESPACE BIENVENUE - ROYAN - 17110 - 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99049900000, + 45.61685200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "CARROS - PARKING PEM", + "ref": "FR*SOD*S*NICE*104*2*_*_;FR*SOD*S*NICE*104*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE10422;FRM06PNICE10411;FRM06PNICE10412;FRM06PNICE10421", + "charging_station:output": "22 kW", + "start_date": "2021-01-20;2020-11-27", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20252100000, + 43.76668400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Moliets | Avenue de L'Océan", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "cb535ab8-7176-597e-8c75-bc0e442192b1", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38506600000, + 43.85149400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-01-26", + "opening_hours": "24/7", + "description": "France Pare Brise - Bar-Le-Duc", + "ref:EU:EVSE": "FRSE1PSE55BDPA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13782000000, + 48.78758300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "169669;169666;169668", + "description": "Bump - Hotel Revotel - Nancy Centre Gare - Nancy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS169669;FRBMPS169666;FRBMPS169668", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17049630000, + 48.68948440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3586EVCP01;LFR3586EVCP03;LFR3586EVCP02", + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3586EVCP01;LFR3586EVCP03;LFR3586EVCP02", + "description": "MORLAIX Vinci" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82666600000, + 48.59115000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM13PCU18L59EFY", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Marseille-6E, Boulevard Notre Dame", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37363700000, + 43.28764600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "135586", + "description": "TE90/UNQYWG", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90PUNQYWG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058000000, + 47.64490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING MAIRIE GRIMAUD", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310GRIMAIRIE", + "amenity": "charging_station", + "ref": "FR*55C*P83310*GRI*MAIRIE", + "start_date": "2013-02-01", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52295700000, + 43.27443100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "441006", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/M9KFBBOZNC", + "ref:EU:EVSE": "FRFR1P3959031593928625350", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63213600000, + 44.98545200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "U Express - Saint-Arnoult", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PSYUSAN", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-05-21", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93654594205, + 48.57205031041 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPPJVJCPOJL2", + "description": "Réseau eborn/PJVJCPOJL2", + "ref": "237733" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56983600000, + 45.35003800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "ref:EU:EVSE": "FRFASE33115", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "start_date": "2023-02-08", + "socket:type2_combo:output": "300 kW", + "description": "Fastned Aire de Keskastel-Ouest", + "ref": "FRFASE33115", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW", + "network": "Fastned Aire de Keskastel-Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06455700000, + 48.97492300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-03-14;2023-12-21;2024-01-17;2023-12-07", + "opening_hours": "24/7", + "network": "ES B2B", + "description": "ES/ HAGUENAU - PARKING SILO ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPSENT91882;FROTHPSENT91862;FROTHPSENT91822;FROTHPSENT918142;FROTHPSENT918141;FROTHPSENT918132;FROTHPSENT918122;FROTHPSENT918121;FROTHPSENT91812;FROTHPSENT918112;FROTHPSENT918111;FROTHPSENT918101;FROTHPSENT918102;FROTHPSENT91811;FROTHPSENT918131;FROTHPSENT918151;FROTHPSENT918152;FROTHPSENT918161;FROTHPSENT918171;FROTHPSENT91821;FROTHPSENT91831;FROTHPSENT91832;FROTHPSENT91841;FROTHPSENT91842;FROTHPSENT91851;FROTHPSENT91852;FROTHPSENT91861;FROTHPSENT91871;FROTHPSENT91872;FROTHPSENT91881;FROTHPSENT91891;FROTHPSENT91892", + "ref": "FR*SOD*S*SENT*918*9*_*_;FR*SOD*S*SENT*918*8*_*_;FR*SOD*S*SENT*918*7*_*_;FR*SOD*S*SENT*918*6*_*_;FR*SOD*S*SENT*918*5*_*_;FR*SOD*S*SENT*918*17*_*_;FR*SOD*S*SENT*918*1*_*_;FR*SOD*S*SENT*918*10*_*_;FR*SOD*S*SENT*918*11*_*_;FR*SOD*S*SENT*918*12*_*_;FR*SOD*S*SENT*918*13*_*_;FR*SOD*S*SENT*918*14*_*_;FR*SOD*S*SENT*918*15*_*_;FR*SOD*S*SENT*918*16*_*_;FR*SOD*S*SENT*918*2*_*_;FR*SOD*S*SENT*918*3*_*_;FR*SOD*S*SENT*918*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78122389762, + 48.81356849840 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyères, Place Gabriel Péri;Réseau eborn/N0JCAPMP2S", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP1291559637313533138;FREBNPN0JCAPMP2S", + "opening_hours": "24/7", + "start_date": "2021-11-19", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "454419;N0JCAPMP2S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12567900000, + 43.11976500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "48454", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPJZZFBPHZN0", + "description": "Réseau eborn/JZZFBPHZN0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60619200000, + 44.54616400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-02", + "description": "INTERMARCHE - REALMONT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR44821;FROTHPOTHR44811;FROTHPOTHR44812;FROTHPOTHR44822", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*448*2*_*_;FR*SOD*S*OTHR*448*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18171600000, + 43.77073500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2666266900825644571", + "ref": "477705", + "network": "Freshmile France", + "description": "Freshmile France/TULYZ5QK8S", + "charging_station:output": "50 kW;22 kW", + "opening_hours": "Mo,Th,We,Fr,Tu 14:00-17:00,Fr,We,Mo,Tu,Th 09:00-11:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25618100000, + 48.95653800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10099083;FRUBIE10055581;FRUBIE10051877;FRUBIE10043836;FRUBIE10005259;FRUBIE10093672", + "start_date": "2023-05-31;2023-06-01", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "55 Rue du 329ème - le Havre;55 Rue du 329ème -le Havre;77 Rue du 329ème - le Havre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12313900000, + 49.50361100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1807840970021119498", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/HSC6UVAWYO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505578", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07264600000, + 43.13142500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Station-service de l'aire de Nîmes-Marguerittes Sud", + "charging_station:output": "50 kW;43 kW", + "ref": "55a8873e-1502-520d-be1b-1335e4698600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44922700000, + 43.87523300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLSX1S5EFDHFRF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5152195449560452837", + "operator": "Freshmile | FR*FR1", + "ref": "1026726" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51634400000, + -20.89475000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/G4DK6RTQ3D", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P5941074483974467692", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "812376", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267000000, + 49.16067500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Bertelière", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC108345;FRZP1PEAC108337;FRZP1PEAC92044;FRZP1P128984;FRZP1PEAC108319", + "ref": "e3c80cb7-9bbf-42a1-bcce-0d29401fa2a7", + "capacity": "1", + "description": "La Bertelière - 7,4 kW AC;La Bertelière - 22 kW AC", + "owner:ref:FR:SIREN": "348343385", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15170464000, + 49.46655340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT-HILAIRE - Rue Du Lotissement", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11344001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30916700000, + 43.09444400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-03", + "description": "BAILLY - Fontenay", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78043002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07396000000, + 48.83673000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e6c7bb58-8945-59aa-8e99-8aba02a5b3a8", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "49__VILLE DE NANCY", + "opening_hours": "24/7", + "description": "VILLE DE NANCY - Rue de Phalsbourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18121700000, + 48.68366700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66210001", + "description": "THUIR - Impasse Pierre Semard", + "start_date": "2017-08-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75863700000, + 42.63440300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref:EU:EVSE": "FRIKAPIKEA18891;FRIKAPIKEA18851;FRIKAPIKEA18841;FRIKAPIKEA188261;FRIKAPIKEA188251;FRIKAPIKEA188231;FRIKAPIKEA188211;FRIKAPIKEA188201;FRIKAPIKEA188191;FRIKAPIKEA188151;FRIKAPIKEA188141;FRIKAPIKEA188121;FRIKAPIKEA188111;FRIKAPIKEA188101;FRIKAPIKEA18771;FRIKAPIKEA18721;FRIKAPIKEA18711;FRIKAPIKEA18731;FRIKAPIKEA18741;FRIKAPIKEA18751;FRIKAPIKEA18761;FRIKAPIKEA18762;FRIKAPIKEA18811;FRIKAPIKEA188131;FRIKAPIKEA188161;FRIKAPIKEA188171;FRIKAPIKEA188181;FRIKAPIKEA18821;FRIKAPIKEA188221;FRIKAPIKEA188241;FRIKAPIKEA18831;FRIKAPIKEA18861;FRIKAPIKEA18871;FRIKAPIKEA18881;FRIKAPIKEA18911;FRIKAPIKEA18921;FRIKAPIKEA18931;FRIKAPIKEA18941", + "amenity": "charging_station", + "ref": "FR*SOD*S*IKEA*189*3*_*_;FR*SOD*S*IKEA*188*8*_*_;FR*SOD*S*IKEA*188*7*_*_;FR*SOD*S*IKEA*188*5*_*_;FR*SOD*S*IKEA*188*4*_*_;FR*SOD*S*IKEA*188*25*_*_;FR*SOD*S*IKEA*188*24*_*_;FR*SOD*S*IKEA*188*23*_*_;FR*SOD*S*IKEA*188*22*_*_;FR*SOD*S*IKEA*188*18*_*_;FR*SOD*S*IKEA*188*17*_*_;FR*SOD*S*IKEA*188*12*_*_;FR*SOD*S*IKEA*188*11*_*_;FR*SOD*S*IKEA*188*1*_*_;FR*SOD*S*IKEA*187*7*_*_;FR*SOD*S*IKEA*187*5*_*_;FR*SOD*S*IKEA*187*4*_*_;FR*SOD*S*IKEA*187*1*_*_;FR*SOD*S*IKEA*187*2*_*_;FR*SOD*S*IKEA*187*3*_*_;FR*SOD*S*IKEA*187*6*_*_;FR*SOD*S*IKEA*188*10*_*_;FR*SOD*S*IKEA*188*13*_*_;FR*SOD*S*IKEA*188*14*_*_;FR*SOD*S*IKEA*188*15*_*_;FR*SOD*S*IKEA*188*16*_*_;FR*SOD*S*IKEA*188*19*_*_;FR*SOD*S*IKEA*188*20*_*_;FR*SOD*S*IKEA*188*2*_*_;FR*SOD*S*IKEA*188*21*_*_;FR*SOD*S*IKEA*188*26*_*_;FR*SOD*S*IKEA*188*3*_*_;FR*SOD*S*IKEA*188*6*_*_;FR*SOD*S*IKEA*188*9*_*_;FR*SOD*S*IKEA*189*1*_*_;FR*SOD*S*IKEA*189*2*_*_;FR*SOD*S*IKEA*189*4*_*_", + "opening_hours": "24/7", + "description": "IKEA BAYONNE - PARKING PMR;IKEA BAYONNE - PARKING COLLABORATEURS;IKEA BAYONNE - PARKING CLIENTS", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "start_date": "2023-12-12;2023-12-07", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44421370000, + 43.48053690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-15", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "RENNES - 43 boulevard de verdun ", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35238010B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68990300000, + 48.11788800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG 63/FR*S63*P63055*A", + "ref": "518264", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRS63P63055A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81957800000, + 45.83807700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/IEBNZSOUQ4", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2989985226250077574", + "network": "Freshmile France", + "ref": "466050", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51500200000, + 48.12402700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026828", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31P2422536099223396218", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/LLNBOQ74X1COE6", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47731300000, + 42.78800800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NOISY-LE-SEC - Avenue Victor Hugo", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-11-10", + "ref:EU:EVSE": "FRSIPE93053004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46782060000, + 48.89237520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001015;FRCG0E001008;FRCG0E001700", + "description": "Sterling Automobiles - 31750 - (150 kW)", + "network": "Sterling Automobiles - 31750 - (150 kW)", + "start_date": "2023-05-17", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001015;FRCG0E001008;FRCG0E001700", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53239500000, + 43.51958400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE22611;FRM06PNICE22612", + "description": "TOURNEFORT - PARKING COURBAISSE", + "start_date": "2023-05-23", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*226*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18557911041, + 43.92552782393 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Agen | Monseigneur Pouzet | Côté Carnot", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "ref": "8415fa4d-5466-55a5-9469-73409b51871a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61989400000, + 44.20684800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE36711;FRSIGPSIGE36712", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-24", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - PLACE DE LAPPEL DU 18 JUIN 1940 - HERBLAY-SUR-SEINE", + "ref": "FR*SOD*S*SIGE*367*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16580000000, + 48.99000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76237001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "EPINAY SUR DUCLAIR - Route de Betteville", + "charging_station:output": "22 kW", + "start_date": "2022-11-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83636400000, + 49.52473700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3784EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "VAL DE MODER", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3784EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59183500000, + 48.84348200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Langoiran | Place de L’Église", + "capacity": "2", + "amenity": "charging_station", + "ref": "cca0e233-189d-5ecf-a0ae-1a89dab5b4f3", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40015800000, + 44.70862800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39007", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDE82/NUMQRW", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PNUMQRW", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47746000000, + 44.24030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PLACE FRANCOIS TOUREL - CAVAILLON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP84300CVLT0UREL", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84300*CVL*T0UREL", + "start_date": "2024-08-27", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03528100000, + 43.83426500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "JANZE Chauveliere", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3594EVCP02;LFR3594EVCP01", + "ref:EU:EVSE": "LFR3594EVCP02;LFR3594EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48967600000, + 47.95692200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Labruguière", + "ref:EU:EVSE": "FRPD1PITMLBU", + "opening_hours": "24/7", + "charging_station:output": "50 kW;100 kW;22 kW;188 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27348330000, + 43.54777240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346859;OMDPXMBHFV", + "ref:EU:EVSE": "FREBNPOMDPXMBHFV;FREBNP1787179768938638972", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-12-21", + "description": "Réseau eborn/OMDPXMBHFV;La Motte, Parking Boulevard André Bouis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53473100000, + 43.49274000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP64122V", + "amenity": "charging_station", + "description": "e-Totem - BIARRITZ Avenue de la Pioche", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref": "FRETIP64122V", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56273936683, + 43.47254130306 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chaussea - Évreux", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCHAEVR", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17140259168, + 49.01114879487 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market Riom-Es-Montagnes", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-04-23", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT154001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66846200000, + 45.28725900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Chanas - Intermarché", + "ref:EU:EVSE": "FRELCPCHAIM", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-08-23", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886800000, + 45.32471600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-19;2023-01-25", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR56632;FROTHPOTHR56631;FROTHPOTHR56622;FROTHPOTHR56612;FROTHPOTHR56611;FROTHPOTHR56621", + "description": "INTERMARCHE - AUTUN", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*566*3*_*_;FR*SOD*S*OTHR*566*2*_*_;FR*SOD*S*OTHR*566*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27634400000, + 46.96838400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6753035;FRCPIE6753145;FRCPIE6753155", + "description": "CAAPIMMOPERTUIS BORNE 7-8", + "ref": "FRCPIE6753035;FRCPIE6753145;FRCPIE6753155", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CAAPIMMOPERTUIS BORNE 7-8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49987500000, + 43.68104800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P3825962415142124446", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "446552", + "description": "Freshmile France/MLRG4EJHTC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139300000, + 49.04118400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9005*01", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "description": "Paris | Place du Panthéon 17", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P900501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34503200000, + 48.84571500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2638166362964498505", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/JGTXAAQTG7", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "529337", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39030600000, + 43.87983000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP1772", + "description": "Tesla Supercharger Valence", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87808100000, + 44.91895300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8029052500947823333", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/MJDWGUEGAV", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "477675", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52473300000, + 46.84668300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR0NXPOOLJ49KF", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "NEXTENEO", + "network": "Lac d’Annecy Camping", + "description": "Lac d’Annecy Camping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17815100000, + 45.83084700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1088757", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/LLWRL3YVW23N13", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P7153652171361339498" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92421400000, + 48.89074200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12198001", + "charging_station:output": "22 kW", + "description": "RIEUPEYROUX - Av. De Rouergue/ Route De Severou", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24167000000, + 44.30847700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5L23SEC8U5", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P1775556114259983195", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "932022", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56047800000, + 48.83714900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Saint-Melaine-sur-Aubance - Brousse;SAINT-MELAINE-SUR-AUBANCE - Parking Armand Brousse", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-28;2024-04-03;2024-04-04", + "ref:EU:EVSE": "FRS49E49308001;FRS49P49308A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49700600000, + 47.37057500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "DOURGNE - Rue De La Boal", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-01-16", + "ref:EU:EVSE": "FRS81E8108100112;FRS81E8108100111;FRS81E8108100121;FRS81E8108100122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13670100000, + 43.48343600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681769;531681768;531681770;531681772;531681771", + "start_date": "2024-03-14", + "capacity": "5", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF002877", + "ref": "FRHPCPNF002877", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "description": "RELAIS TREMBLAY EN France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56460000000, + 48.96380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46042004", + "start_date": "2022-07-21", + "description": "CAHORS - Carrefour Regourd", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42747400000, + 44.46778500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65007001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "description": "ANDREST - Parking pôle commercial" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06461000000, + 43.31848000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH03E59606001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2019-12-12;2021-11-03", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "VALENCIENNES - Rue du Dauphiné" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51543600000, + 50.33942400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2919500", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plouguerneau-Rue Bel Air" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50386200000, + 48.60655600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NOGENT SUR MARNE - Passage Jules Marcel Nicole", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-12-28", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94052004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47879576700, + 48.83697846340 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90212099", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-05-24", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B Hôtel Dijon Nord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06905500000, + 47.35080200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ac70b9c2-f640-57f9-a447-e87b57963394", + "description": "MOBIVE | Bergerac | Rue Mouney Sully" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48251800000, + 44.85312300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*471*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE47112;FRSIGPSIGE47111", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-05", + "description": "SIGEIF - 2 RUE JULES VEDRINES - NOISY-LE-GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56690130000, + 48.84228380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Allego Carrefour Saint Jean de Vedas", + "amenity": "charging_station", + "network": "Allego Carrefour Saint Jean de Vedas", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9009431;FRALLEGO9005961;FRALLEGO9005962;FRALLEGO9006191;FRALLEGO9006192;FRALLEGO9009432;FRALLEGO9009461;FRALLEGO9009462", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9009431;FRALLEGO9005961;FRALLEGO9005962;FRALLEGO9006191;FRALLEGO9006192;FRALLEGO9009432;FRALLEGO9009461;FRALLEGO9009462" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84857600000, + 43.57183900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ST POL DE LEON", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4168EVCP01;LFR4168EVCP02;LFR4168EVCP03", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4168EVCP01;LFR4168EVCP02;LFR4168EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79560260000, + 47.66879280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "045216cd-f5b4-5966-949d-f8ea26d581b2", + "operator": "202__TE64", + "description": "MOBIVE | Lacq | Chemin du Moulin", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61695800000, + 43.41199500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHALLANS - Place Du Foirail", + "ref:EU:EVSE": "FRS85E85047002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87194600000, + 46.84864700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18", + "ref:EU:EVSE": "FRALLEGO8008622;FRALLEGO8002322;FRALLEGO8002122;FRALLEGO8002121;FRALLEGO8002321;FRALLEGO8002381;FRALLEGO8002382;FRALLEGO8008621", + "capacity": "8", + "description": "Allego FR, Bazalp Orléans Saran", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRALLEGO8008622;FRALLEGO8002322;FRALLEGO8002122;FRALLEGO8002121;FRALLEGO8002321;FRALLEGO8002381;FRALLEGO8002382;FRALLEGO8008621", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego FR, Bazalp Orléans Saran" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89058100000, + 47.95850900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CEBAZAT Départementale 2009", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3718EVCP01;LFR3718EVCP02", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3718EVCP01;LFR3718EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11001700000, + 45.81860100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-09-05", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PKRDTNC", + "operator": "Power Dot France", + "description": "Best Western - Trignac", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20596271891, + 47.29693846603 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "96083;MWSKGX", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/MWSKGX;Saint-Paul, Rue des anciens combattants", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPMWSKGX", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57513000000, + 45.48420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CENTRAL MOTOR LYON NORD", + "ref:EU:EVSE": "FREVMP7648", + "owner:ref:FR:SIREN": "780096376", + "operator": "EV MAP SAS", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "capacity": "3", + "description": "HYUNDAI CENTRAL AUTOS CALUIRE ET CUIRE", + "opening_hours": "Mo-Fr 08:00-19:00", + "socket:type2_combo:output": "60 kW", + "operator:email": "contact@evmap.fr", + "start_date": "2024-01-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86806490000, + 45.80758390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PETXFTM", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;80 kW", + "opening_hours": "24/7", + "charging_station:output": "22 kW;50 kW;80 kW", + "capacity": "11", + "description": "Kiabi - Faches-Thumesnil", + "start_date": "2024-01-15", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08572633485, + 50.58431762211 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*OAZS*223*1*_*_;FR*SOD*S*OAZS*223*3*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRE04POAZS22332;FRE04POAZS22312;FRE04POAZS22311;FRE04POAZS22331", + "description": "IZIVIA | AIRE DE COVOITURAGE DE VALENCE NORD", + "opening_hours": "24/7", + "network": "FLEX-E", + "start_date": "2022-06-08;2022-10-20", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88831500000, + 44.96627800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRESEPS42218BW", + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "ref": "FRESEPS42218BW", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "description": "SEMOB - Voltaire", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-05-02", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39154313453, + 45.42792298731 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2018-06-20", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*13*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR1311;FROTHPOTHR1312", + "network": "TIERS", + "description": "ETABLISSEMENT MGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13025100000, + 48.65278600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6931325;FRCPIE6931295;FRCPIE6931215;FRCPIE6931305", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ELOTEL STATION 2*", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6931325;FRCPIE6931295;FRCPIE6931215;FRCPIE6931305", + "start_date": "2024-05-28", + "network": "ELOTEL STATION 2*" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80292400000, + 43.62825400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2482569068611391652", + "ref": "761460", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Freshmile France/JJUUQQVTYZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74732000000, + 45.62072900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP121053", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Hôtel Campanile Nimes Centre", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36400000000, + 43.82280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "782472", + "ref:EU:EVSE": "FRFR1P1868360932594223623", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IPYVK0DJ6C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43988100000, + 49.37899300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Renault - Trucks Metz", + "amenity": "charging_station", + "start_date": "2023-12-27", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT570701", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24519200000, + 49.11779000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GQ1TNKNZLU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6871409987080161230", + "ref": "597849", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19986400000, + 44.03313400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - GOMMERVILLE - Rte. de Voves", + "description": "MODULO - GOMMERVILLE - Rte. de Voves", + "ref:EU:EVSE": "FRS28E129084", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E129084", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94420300000, + 48.34704900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P1647354583003605919", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/L9PDURSKHV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34749700000, + 49.19752900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P4718853370446717762", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA6LPNGZXPJR", + "operator:email": "exploitation@waat.fr", + "ref": "1128081" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41293200000, + 50.48700200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-20", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MARIGNY LE LOZON - aire de covoiturage", + "ref:EU:EVSE": "FRS50P502921", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24917150000, + 49.08978340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PUYLAURENS - Avenue De Revel", + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-17", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8121900222;FRS81E8121900221;FRS81E8121900211;FRS81E8121900212", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00585824574, + 43.56722953376 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF067705", + "amenity": "charging_station", + "start_date": "2024-03-21", + "ref": "FRHPCPNF067705", + "capacity": "4", + "socket:type2_combo:output": "300 kW;54 kW", + "opening_hours": "24/7", + "charging_station:output": "300 kW;54 kW", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS LA POMME", + "owner:ref:FR:SIREN": "531681774;531681773", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45391200000, + 43.29189600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Angers - Gendarme;ANGERS - Parking Chapeau de Gendarme", + "start_date": "2021-04-29;2024-04-04;2024-04-05", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49007D;FRS49E49007004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55526800000, + 47.45091100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "48940", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/Cirelesmello", + "ref:EU:EVSE": "FRS60PCIRELESMELLO", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35850000000, + 49.27540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-LAURENT-BLANGY - 8 Rue Laurent Gers", + "ref:EU:EVSE": "FRH06E62753001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80160600000, + 50.29924400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30028001", + "description": "BAGNOLS SUR CEZE - Parking Rue De Carcaixent", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62243800000, + 44.16053900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/LMHCBG", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25077", + "capacity": "3", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PLMHCBG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.37608000000, + 47.75810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-02", + "description": "Carrosserie Bricka", + "owner:ref:FR:SIREN": "531125672", + "ref:EU:EVSE": "FRLMSE1234609769", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ZEENCO", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74942400000, + 48.93207500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref": "484817", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93066B", + "opening_hours": "24/7", + "description": "Metropolis - Express - Saint-Denis - Georges Sand;Métropolis/FR*MGP*P93066*B", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36452900000, + 48.90734700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSGAP1M2029", + "operator:email": "contact@sga-industries.com", + "network": "Réseau de recharge DEBELEC", + "operator": "SGA Industries", + "amenity": "charging_station", + "capacity": "3", + "description": "M2029", + "start_date": "2022-03-01", + "charging_station:output": "22 kW;1.7 kW", + "opening_hours": "Mo-Fr 09:00-16:00", + "owner:ref:FR:SIREN": "507500775" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93788700000, + 43.26799800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "793681313", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRAU1E0023", + "network": "AUTORECHARGE SAS", + "start_date": "2022-05-01", + "operator:email": "contact@autorecharge.fr", + "description": "Hôtel Kyriad Angers Beaucouzé", + "ref": "562957", + "operator": "AUTORECHARGE SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61729376097, + 47.46216679206 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;160 kW", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073365;909073369;909073368;909073367;909073363;909073364;909073366", + "description": "ENGIE Vianeo - A81 St-Denis d'Orques", + "amenity": "charging_station", + "start_date": "2023-02-14", + "charging_station:output": "300 kW;22 kW;63 kW;160 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRLMSP89369719", + "capacity": "4;2;6;1;5;7;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32567500000, + 48.02371800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint Sulpice lauriere | Place du 8 Mai 1945", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "13166f84-aac3-5723-b529-2ee1cfd9ca13", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48005700000, + 46.04882200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-03-22", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE60BVNA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Espace Nautique Canada - BEAUVAIS", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06194800000, + 49.45588500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-12-07", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSSETEE", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "SETE", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69192000000, + 43.46266000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3694EVCP01;LFR3694EVCP02;LFR3694EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3694EVCP01;LFR3694EVCP02;LFR3694EVCP03", + "description": "DENAIN France", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40935600000, + 50.31898600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-13E, Rue des Glycines", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PEIJQU5GBZX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42744000000, + 43.32901000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/PIPMPI1GSK;Arâches-La-Frasse, D106 Route de la Barliette", + "ref:EU:EVSE": "FREBNPPIPMPI1GSK", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "85745;PIPMPI1GSK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63658000000, + 46.03355000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PCLAIROIX", + "capacity": "2", + "amenity": "charging_station", + "ref": "86765", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/clairoix", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84540000000, + 49.44080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIMCHAZ", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "capacity": "9", + "start_date": "2022-08-18", + "operator": "Power Dot France", + "description": "Darty - Hazebrouck", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54962180091, + 50.73751050966 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "LLPMROK71FNEE0;978059", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLPMROK71FNEE0;FREBNP2129014654417574470", + "opening_hours": "24/7", + "description": "Sanary-Sur-Mer, Avenue du Deuxième Spahis;Réseau eborn/LLPMROK71FNEE0", + "start_date": "2023-12-01", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80365200000, + 43.12025400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP5739636638703593339", + "network": "Road", + "amenity": "charging_station", + "capacity": "4", + "ref": "1112070", + "operator:email": "roaming-dev@road.io", + "charging_station:output": "2.3 kW;7.4 kW;22 kW", + "operator": "Road | FR*EFL", + "description": "Road/666af9af1acef6001c392d9f", + "opening_hours": "Tu,Sa,Mo,Fr,Su,Th,We 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01261900000, + 47.66399700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "start_date": "2021-10-01", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*250*3*_*_;FR*SOD*S*OTHR*250*2*_*_;FR*SOD*S*OTHR*250*1*_*_;FR*SOD*S*OTHR*250*4*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR25031;FROTHPOTHR25021;FROTHPOTHR25011;FROTHPOTHR25041", + "operator:email": "sav@izivia.com", + "description": "SUPER U - LA CHATAIGNERAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74567600000, + 46.64654600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "ref:EU:EVSE": "FRCPIE6601025;FRCPIE6601035;FRCPIE6601045;FRCPIE6605985;FRCPIE6606025", + "amenity": "charging_station", + "ref": "FRCPIE6601025;FRCPIE6601035;FRCPIE6601045;FRCPIE6605985;FRCPIE6606025", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MANUTAN 9", + "operator:email": "info@chargepoint.com", + "capacity": "10", + "network": "MANUTAN 9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46193700000, + 48.96822500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3690517894077976279", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WGALU8RLGY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398984", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70260700000, + 46.85125100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P7411023629219139945", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "description": "WAAT/s437343", + "ref": "412292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36934600000, + 48.90391500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "60 kW;48 kW", + "ref:EU:EVSE": "FRFR1P7806814089871407723", + "charging_station:output": "22 kW;60 kW;48 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/ZBOK49QJWD", + "network": "Freshmile France", + "opening_hours": "Sa 09:00-11:00,Mo,We,Fr,Th,Tu 08:00-11:00,Th,Fr,Mo,We,Tu 14:00-18:00,Sa 14:00-17:00", + "operator": "Freshmile | FR*FR1", + "ref": "626348" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303900000, + 44.83122700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1234606331", + "start_date": "2023-12-19", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1234606331", + "socket:type2_combo:output": "92 kW", + "capacity": "3", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "charging_station:output": "92 kW;22 kW", + "description": "EVBOX 90kW HANDBALL Chambery", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90362700000, + 45.58088200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3197107685639717151", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "892380", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJCX4IS4M5OC1", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22787300000, + 45.79590600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPRENAULTTRUCKS713801", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "description": "Renault - Trucks Chalon sur Saône", + "operator:email": "support@driveco.com", + "start_date": "2024-02-16", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86930600000, + 46.77206200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST GEORGES SUR EURE - Eglise", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E240833", + "network": "MODULO - ST GEORGES SUR EURE - Eglise", + "ref:EU:EVSE": "FRS28E240833" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35350800000, + 48.41816700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "socket:type2:output": "22kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20566166870, + 49.97157490191 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P8357326754410108598", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/MHAS1DBV2O", + "ref": "75461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85283600000, + 48.50145700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LE0067F6;Zephyre/LE006E74", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P6554300150643656889;FRZP1P6563818107588653478", + "ref": "576059;575999", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63762600000, + 46.01773800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage_David", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2023-04-20", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE608" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18621230000, + 46.86134280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39028", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PRNYVZB", + "description": "SDE82/RNYVZB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04943000000, + 44.27290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*13*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST1313;FRIZFPFAST1311;FRIZFPFAST1312", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-01-16", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - LE MANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21548900000, + 47.97537300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4430;FRS41E4431", + "capacity": "2", + "description": "MODULO - BLOIS - Square du 11 Novembre 1918", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4430;FRS41E4431", + "network": "MODULO - BLOIS - Square du 11 Novembre 1918" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33411500000, + 47.58941200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Milly", + "ref": "38812", + "ref:EU:EVSE": "FRS60PMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99741000000, + 49.50160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "OUL01 - FRANCISQUE JOMARD", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FRGLYPLYON5022;FRGLYPLYON5011;FRGLYPLYON5012;FRGLYPLYON5021", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*50*1*_*_;FR*SOD*S*LYON*50*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79816000000, + 45.71574900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT HIPPOLYTE DU FORT - Parking Edf, Boulevard Des Remparts", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30263001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85424500000, + 43.96372900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "25073", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PGVDKQE", + "description": "Mobilité électrique 56/GVDKQE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43320000000, + 47.99440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "capacity": "2", + "ref": "3d958256-e732-4060-8f85-b8782bb660c3", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLUMECAMPINGLESOUSBOIS11", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "operator": "LUMI'IN", + "description": "CAMPING LE SOUS BOIS " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48000000000, + 44.49000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "capacity": "4", + "description": "Mobilygreen CPO/e4fa94ef-801c-4232-af2e-386bedc481c4", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P8735967121723225143", + "ref": "1070397", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "40 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88964000000, + 42.73910600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*182*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2021-08-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 1 RUE DE LEGALITE - ISSY-LES-MOULINEAUX", + "ref:EU:EVSE": "FRSIGPSIGE18212;FRSIGPSIGE18211", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26527800000, + 48.81956200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "ref": "FRCG0E001568;FRCG0E001565;FRCG0E001566;FRCG0E001567", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2021-06-25", + "charging_station:output": "22 kW;225 kW;100 kW", + "network": "Espace 3000 - Groupe Cassard - Audi Chaumont - 52000", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "description": "Espace 3000 - Groupe Cassard - Audi Chaumont - 52000", + "ref:EU:EVSE": "FRCG0E001568;FRCG0E001565;FRCG0E001566;FRCG0E001567" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14600900000, + 48.08442500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE10001476132;FRLMSE10001476131", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "start_date": "2023-07-06", + "opening_hours": "24/7", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "819731589", + "description": "Herlindis", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33141900000, + 50.36448600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "ref:EU:EVSE": "FRS40PMB405714;FRS40PMB405713;FRS40PMB405712;FRS40PMB405711;Non concerné", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "start_date": "2020-05-27", + "ref": "FR*SOD*S*MB40*57*1*_*_;57e478a4-fc8d-55a5-a9e8-b8b121e89f3e", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "description": "MOBIVE | Dax | Place St Pierre;DAX - PLACE ST PIERRE", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04952500000, + 43.70918700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "start_date": "2024-05-31", + "ref:EU:EVSE": "FRSE1PSE77MXZA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "MEAUX - Place du marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87929800000, + 48.95527600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ETAMPES", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSETPES", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15950600000, + 48.42986000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3435EVCP01;LFR3435EVCP02;LFR3435EVCP03;LFR3435EVCP04", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LAON Mendès", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3435EVCP01;LFR3435EVCP02;LFR3435EVCP03;LFR3435EVCP04", + "charging_station:output": "50 kW;22 kW", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64332500000, + 49.58074200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTPELLIER - Rue Yves Montand - Parc 2000", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRM34E34172010", + "start_date": "2022-01-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82049800000, + 43.61948200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Chapelle-En-Valgaudemar, Immeuble Les Glaciers;Réseau eborn/UIV8WSGZS3", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPUIV8WSGZS3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "UIV8WSGZS3;79129" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19380100000, + 44.81712000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EQLLJPVXCO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "510470", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3339742513389475202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66541000000, + 44.85796000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "ORSAY - Hôpital Paris-Saclay (privé)", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E914710012;FRP07E914710011;FRP07E91471001;FRP07E914710013", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-01", + "capacity": "33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19159510000, + 48.71578400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Saint-Just-Saint-Rambert, Parking Médiathèque", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPWUFELBWHT7", + "ref": "WUFELBWHT7", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26300780000, + 45.50767330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2024-02-22", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "socket:type2_combo:output": "50 kW;300 kW", + "description": "Montpellier - Auchan Celleneuve", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPMONCA", + "capacity": "11", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83935300000, + 43.61086000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E77171001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Esbly P1 P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80860900000, + 48.90304300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6634505", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED CGED BRIGNAIS", + "start_date": "2023-01-05", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6634505", + "operator:email": "info@chargepoint.com", + "network": "CGED CGED BRIGNAIS", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76871800000, + 45.67595400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "description": "Gap, Parking Relais du stade Nautique", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "charging_station:output": "22 kW;50 kW;60 kW", + "opening_hours": "24/7", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSPNW8OHGXT", + "socket:type2_combo:output": "60 kW", + "ref": "SPNW8OHGXT", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06127559000, + 44.54181494000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX17*05", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue de la Jonquière 66", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1705", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32115810000, + 48.89416530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20653860000, + 49.97159580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "521270", + "charging_station:output": "22 kW", + "description": "Freshmile France/FLFXSLPUEB", + "ref:EU:EVSE": "FRFR1P2886304952117647970", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60638000000, + 48.69764500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "amenity": "charging_station", + "start_date": "2023-03-24", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "ref:EU:EVSE": "FRTCBP01253", + "ref": "FRTCBP01253", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "480120203", + "charging_station:output": "22 kW", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33590261534, + 46.91060667443 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1588122137965151240", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/ESLPQIB7IA", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "514997", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62049100000, + 46.50972700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-31", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Morlaix", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "ref:EU:EVSE": "FRSSDPOUESTBMW296001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.81731700000, + 48.59274600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Loperhet-Route de Dirinon", + "ref:EU:EVSE": "FRS29E29140001", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.30713000000, + 48.38324700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11123001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DUILHAC SOUS PEYREPERTUSE - Parking Route Du Château", + "start_date": "2022-02-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56527777778, + 42.86166670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "E175271;E175270", + "start_date": "2023-03-31", + "description": "FORD SAINT AFFRIQUE ; FORD SAINT AFFRIQUE ", + "amenity": "charging_station", + "capacity": "1", + "network": "SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRZPEE175271;FRZPEE175270", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "socket:type2_combo:output": "24 kW", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "480169119" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85340808806, + 43.95452555323 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CASTILLON EN COUSERANS - Boulevard Des Comtes De Foix", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS09E09085001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03153400000, + 42.92248400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/ZROITA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PZROITA", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "64760", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00316000000, + 50.00940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MC DONALDS - SALAISE SUR SANNE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-09-24", + "ref:EU:EVSE": "FRIZFPFAST27811;FRIZFPFAST27812;FRIZFPFAST27813", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*278*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80660440000, + 45.34200350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "LE CROISIC - Parking De La Place Du 8 Mai", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS44E44049001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51249599457, + 47.29614257813 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS77E77131004", + "charging_station:output": "22 kW", + "description": "COULOMMIERS - Montbillard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09399626814, + 48.82082305784 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ibis Budget et Greet LA ROCHELLE", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Ibis Budget et Greet LA ROCHELLE", + "ref:EU:EVSE": "FRGSPP1000085958;FRGSPP1000085919" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14076500000, + 46.15729100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST NICOLAS DES MOTETS - Rue de la poste", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E220235;FRS37E220234", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E220235;FRS37E220234", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST NICOLAS DES MOTETS - Rue de la poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03727600000, + 47.58528600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "498c2fbd-b637-5892-ab2b-2cbf26eff94c", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCTLB - Vitrimont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43991900000, + 48.60013500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRG10P94073A", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P94073A", + "description": "Garage de la Senia", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-12-23", + "socket:type2_combo:output": "100 kW", + "network": "Garage de la Senia" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38471500000, + 48.75422300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "49102032-f0cf-573d-9a3f-007b702f33e3", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40", + "description": "MOBIVE | LUXEY - Parking Rue des Ecoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52116100000, + 44.26420700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue de Savoie", + "network": "SIPPEREC", + "start_date": "2024-05-17", + "ref:EU:EVSE": "FRSIPE94068027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48161806992, + 48.81047975448 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "HôTEL DE FRANCE BORNE 1", + "description": "HôTEL DE FRANCE BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6518615", + "ref": "FRCPIE6518615", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95560500000, + 46.31925900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P7491907149342337422", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/UOYKCV6CWL", + "ref": "782589" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26345600000, + 48.46609600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "7c6090ac-abde-57bc-9c87-5d5f672f24e3", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Bouniagues | Parking N21", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52616200000, + 44.75946000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB38069A", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - Niort - Patinoire", + "start_date": "2023-06-16", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48823878000, + 46.31882199000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20679920000, + 49.97213290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Airbus - Marignane - parking A5", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS313002", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23033200000, + 43.43839200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHOISY LE ROI Villeneuve", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3348EVCP01;LFR3348EVCP02", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3348EVCP01;LFR3348EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42552200000, + 48.75710500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "505809", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "description": "Orléans Métropole/T0XMNJU9T9", + "operator": "Orléans Métropole | FR*M45", + "ref:EU:EVSE": "FRM45P879206978084051343" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97223800000, + 47.96613800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-21", + "description": "SAINT AUBAN - PARKING VILLAGE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*153*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ15312;FRA16PWIIZ15311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72553700000, + 43.84822600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/V99LMKPLKF", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "578993", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4636966585027498124" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39339600000, + 47.17002600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-02-12", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBCPSLS", + "opening_hours": "24/7", + "description": "Bricopro Bricolage - Saint-Laurent-de-la-Salanque", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01575379216, + 42.77349641215 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "ref": "KHJBBVINUJ;UTIMKUAQVQ", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPUTIMKUAQVQ;FREBNPKHJBBVINUJ", + "operator:email": "contact@reseau-eborn.fr", + "description": "Toulon, Parking Font Pre Borne 1;Toulon, Parking Font Pre Borne 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97218364000, + 43.12926791000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-12-22", + "description": "Jeuxey - KFC", + "ref:EU:EVSE": "FRELCPJEUKF", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47667700000, + 48.19941300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E132020071;FRP07E13202007", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MARSEILLE - La Criée", + "start_date": "2024-04-29;2023-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36616847767, + 43.29246979834 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-08", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "ref": "FRCPIE6705505", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6705505", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR DEMO MATHIEU", + "description": "SONEPAR DEMO MATHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48786700000, + 48.84837000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "ref:EU:EVSE": "FRECHPD4JETRQTHU", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "D4JETRQTHU", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "description": "Chateaubriant BCM , Fournil du Castel", + "start_date": "2023-03-08", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38353400000, + 47.70610897000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP103111", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "start_date": "2023-02-24", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A10 Châtellerault-Antran", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52243800000, + 46.90685900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20653540000, + 49.97206180000 + ], + [ + 1.20651930000, + 49.97204930000 + ], + [ + 1.20653410000, + 49.97179400000 + ], + [ + 1.20651600000, + 49.97175690000 + ], + [ + 1.20640750000, + 49.97168710000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P871870783369269739", + "description": "Freshmile France/LLW51UE6BF12T5", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "1086786", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30840300000, + 46.55308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX08*06", + "start_date": "2021-06-25", + "description": "Paris | Rue de Rome 46", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0806", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32256830000, + 48.87839120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2015724247118101736", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLMSYEMOI2EEG0", + "ref": "1130430", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75370200000, + 48.60618100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPELYSEEVOLVO772101", + "opening_hours": "Mo 09:00-18:30, Tu 09:00-18:30, We 09:00-18:30, Th 09:00-18:30, Fr 09:00-18:30, Sa 10:00-17:30", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-02-02;2022-01-27", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO", + "description": "Volvo - Avon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72935700000, + 48.41790800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79900", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25PFRASNEGARE", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/Frasnegare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15813000000, + 46.85750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS18E200419;FRS18E200420", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ST SATUR - Résistance", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - ST SATUR - Résistance", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS18E200419;FRS18E200420", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85782900000, + 47.33696500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "88ef85e9-de48-4f6d-ba13-85556123f161", + "capacity": "2", + "network": "GEDIBOIS BATI COLMAN", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 13:30-18:00", + "operator": "GEDIBOIS BATI COLMAN", + "ref:EU:EVSE": "Non concerné", + "operator:email": "commercial@bati-colman.fr", + "owner:ref:FR:SIREN": "817537236", + "start_date": "2023-01-04", + "charging_station:output": "22 kW", + "description": "GEDIBOIS BATI COLMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04250100000, + 49.13835100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*109*9*_*_;FR*SOD*S*QPRK*109*8*_*_;FR*SOD*S*QPRK*109*7*_*_;FR*SOD*S*QPRK*109*6*_*_;FR*SOD*S*QPRK*109*5*_*_;FR*SOD*S*QPRK*109*4*_*_;FR*SOD*S*QPRK*109*2*_*_;FR*SOD*S*QPRK*109*15*_*_;FR*SOD*S*QPRK*109*14*_*_;FR*SOD*S*QPRK*109*12*_*_;FR*SOD*S*QPRK*109*11*_*_;FR*SOD*S*QPRK*109*10*_*_;FR*SOD*S*QPRK*109*1*_*_;FR*SOD*S*QPRK*109*13*_*_;FR*SOD*S*QPRK*109*16*_*_;FR*SOD*S*QPRK*109*17*_*_;FR*SOD*S*QPRK*109*19*_*_;FR*SOD*S*QPRK*109*3*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-21;2023-12-20", + "network": "QPARK", + "ref:EU:EVSE": "FRQPKPQPRK10981;FRQPKPQPRK10971;FRQPKPQPRK10961;FRQPKPQPRK10951;FRQPKPQPRK10941;FRQPKPQPRK109171;FRQPKPQPRK109161;FRQPKPQPRK109151;FRQPKPQPRK109141;FRQPKPQPRK109131;FRQPKPQPRK10911;FRQPKPQPRK109101;FRQPKPQPRK109111;FRQPKPQPRK109121;FRQPKPQPRK109191;FRQPKPQPRK10921;FRQPKPQPRK10931;FRQPKPQPRK10991", + "operator:email": "sav@izivia.com", + "description": "QPARK - BREST CHRU P2 GUILVINEC 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52710700000, + 48.40056000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81038001", + "charging_station:output": "22 kW", + "description": "BRENS - D13-D4 Boucherie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91035900000, + 43.88920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE403600", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2019-07-17", + "ref": "FRIONE403600", + "description": "IONITY Montélimar Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78134000000, + 44.51389800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44160001;FRS44P44160A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Saint-Gereon - Maitres;SAINT-GEREON - Rue Des Maîtres", + "start_date": "2024-04-18;2021-04-26", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19686900000, + 47.36991800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77389003;FRS77P77389C", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2024-03-06", + "description": "LA ROCHETTE - Honoré Daumier;La Rochette - Honoré Daumier", + "ref": "d4300bf9-262a-4b08-8390-bd68c9627a89" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66298900000, + 48.51970100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680846;531680849;531680847;531680848", + "ref:EU:EVSE": "FRHPCPNF078556", + "start_date": "2022-08-02", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "REL.LA DENTELLE D'ALENCON", + "ref": "FRHPCPNF078556", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12650000000, + 48.45720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2020-06-09", + "capacity": "4", + "network": "MOBIVE - SYDEC 40", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "description": "JOSSE - ENTREE PARKING COVOITURAGE", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRS40PMB406412;FRS40PMB406411;FRS40PMB406413;FRS40PMB406414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22440900000, + 43.64021300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-07-13", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEPRULV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "La trinité-sur-mer - Cours des Quais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.02918500000, + 47.58929700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2022-07-20;2022-07-19", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON17021;FRGLYPLYON17012;FRGLYPLYON17011;FRGLYPLYON17022", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*170*1*_*_;FR*SOD*S*LYON*170*2*_*_", + "description": "RIL04 - CENTRE AQUATIQUE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88767600000, + 45.81700800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "320 kW", + "socket:type2_combo:output": "320 kW", + "ref:EU:EVSE": "FRMFCP6590024412326588746", + "amenity": "charging_station", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "description": "Mobilize Fast Charge/5dc17a68-2b5c-4172-b767-6ff36e2abca9", + "opening_hours": "24/7", + "ref": "1138524", + "network": "Mobilize Fast Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30465600000, + 46.55232800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2021-07-26;2020-09-25", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLEMPEREURSIEGE591871", + "description": "Siège Groupe Lempereur", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11860800000, + 50.34358200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6589935", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED BEAUVAIS", + "network": "CGED BEAUVAIS", + "ref:EU:EVSE": "FRCPIE6589935", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11934500000, + 49.41097300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LC5TWHDA5O", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P4404677124302126525", + "ref": "559871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963400000, + 46.82118100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "09588663-76e6-54e7-9c52-a0b519f5ab1d", + "description": "MOBIVE | Le Teich | Rue de la Petite Foret", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02615200000, + 44.63231100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ERAGNY SUR OISE - Rue de la papeterie - Parking de la gare", + "ref:EU:EVSE": "FRS95E95218001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09094600000, + 49.01784900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSKLPSG", + "description": "LA SEGUINIERE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94111000000, + 47.05561000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SERVIAN - Entrepreneurs", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3976EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3976EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31871000000, + 43.39174000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PHKAUJ09YVD", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Aix-En-Provence, Boulevard du Roi René" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45073200000, + 43.52409900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/K8AQTKTMH6", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402542", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P651990375316367002", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29340000000, + 48.08561000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "SAINT-RAPHAEL - PARKING BOULEVARD JEAN MOULIN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ28811;FRA16PWIIZ28812", + "charging_station:output": "22 kW", + "start_date": "2024-07-25", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*288*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78756980000, + 43.42706100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "706103", + "description": "Freshmile France/V38EOKLVWI", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5045442319957519630" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84535900000, + 49.20795300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PNETSST", + "start_date": "2023-06-16;2023-06-29", + "description": "Netto - Soustons", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32199995337, + 43.74703004990 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "346799", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/L4TPSNGBZU", + "ref:EU:EVSE": "FREBNP7474160539425054430" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85066000000, + 45.33388600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/504ABB4B-6C31-4673-8639-838089AFBFC7", + "ref:EU:EVSE": "FREVZP6884691109902896511", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1008543", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07858500000, + 43.21950900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR60822;FROTHPOTHR60821;FROTHPOTHR60812;FROTHPOTHR60811", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "description": "BRICOMARCHE - PONT A MOUSSON 2", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*608*2*_*_;FR*SOD*S*OTHR*608*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05754600000, + 48.92006400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/ZVYQDEGDC3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPZVYQDEGDC3", + "ref": "96041" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32255100000, + 45.42439300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Chavanod, Crêt d'Esty", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLLYO9ZZIOAX5MQ", + "charging_station:output": "24 kW;22 kW", + "ref": "LLYO9ZZIOAX5MQ", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-07-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05757900000, + 45.88438600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B HOTEL MARSEILLE LA VALENTINE SAINT MENET", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-18;2024-03-26", + "ref:EU:EVSE": "FRVIAP122027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51012900000, + 43.28770100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "294341", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/UXYEWT", + "ref:EU:EVSE": "FRFR1PUXYEWT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29063000000, + 48.17470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX15*02", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Rue Lacordaire 56", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136000000, + 48.84140300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529571", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3486756430863841994", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RETLG65TD9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12032300000, + 48.67408000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPNOVOTEL847001", + "capacity": "10", + "charging_station:output": "22.08 kW", + "description": "Hôtel Novotel - Sorgues (Avignon Nord)", + "operator:email": "support@driveco.com", + "start_date": "2022-03-03", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88812500000, + 43.98597700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PPITRESFRENIFRENEAUX", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-06-14", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900044", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21945400000, + 49.32446300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Duault-Place Ty Duaod", + "ref:EU:EVSE": "FRS22E22052001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43409000000, + 48.36135500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "JOUARS-PONTCHARTRAIN - Rue Du Grand Commun", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2022-02-15", + "ref:EU:EVSE": "FRY11E78321001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89244600000, + 48.78067400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRROSE176", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2021-11-29", + "opening_hours": "24/7", + "description": "PowerLille", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07567300000, + 50.62074750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLP6FIQ87Y", + "network": "WAAT", + "ref:EU:EVSE": "FRWATP84155541686234640", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "ref": "1123851", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81551400000, + 45.78983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "network": "Gueux", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Gueux", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "ref:EU:EVSE": "FRIOYE402605;FRIOYE402604;FRIOYE402603;FRIOYE402606;FRIOYE402651;FRIOYE402652;FRIOYE402653", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE402605;FRIOYE402604;FRIOYE402603;FRIOYE402606;FRIOYE402651;FRIOYE402652;FRIOYE402653" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92410000000, + 49.24441230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "332219", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/FR*S52*P52017C", + "ref:EU:EVSE": "FRS52P52017C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00548200000, + 47.95073700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65286005", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LOURDES - Rue Sainte-Marie", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05541000000, + 43.09586000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE001801;FRIENE001802", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRIENE001801;FRIENE001802", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Champniers", + "operator": "NW IECharge", + "description": "Champniers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727000000, + 45.69493000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-04-07", + "network": "Reveo", + "description": "POPIAN - Place de l'Olivier", + "ref:EU:EVSE": "FRS34E34208001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53563779190, + 43.61929994026 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-02-23", + "opening_hours": "24/7", + "description": "ALENCON - Place Maréchal F.Foch", + "ref": "SE61-ALEN-001", + "ref:EU:EVSE": "FRS61P61001A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08352400000, + 48.43015810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QP7WQ717RY", + "ref:EU:EVSE": "FRFR1P1248597213125539396", + "operator": "Freshmile | FR*FR1", + "ref": "346268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04361100000, + 49.06444000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/YURPYW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref:EU:EVSE": "FRS31PYURPYW", + "ref": "33367" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11694000000, + 43.41190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "start_date": "2021-02-01", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPMAURINFORD132001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Ford - Arles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64201100000, + 43.69962400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-05-04", + "capacity": "3", + "network": "Carrefour Contact Saint-Martin-de-Bellevue", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "Carrefour Contact Saint-Martin-de-Bellevue", + "ref:EU:EVSE": "FRCARP74282A", + "ref": "FRCARP74282A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13116400000, + 45.96306500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "acc38e38-be6b-11ed-afa1-0242ac120002", + "ref:EU:EVSE": "FRLUMEPERSEDES11", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "description": "Hôtel des Persèdes ", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2023-03-09", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44578790000, + 44.58948890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "6ca49640-1f04-54a2-9c68-2a76cd0403c3", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Trojan les Bains | Rue des Pêcheurs", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20927400000, + 45.84428400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Saint denis en Val - Salle de la Gaïté", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE45SABA", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-29", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95454100000, + 47.87908300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "1008447", + "capacity": "2", + "description": "BornEco/657c1d46d66357a549454d9c", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP5174637726395099126", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30532500000, + 48.73054800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3452EVCP02;LFR3452EVCP01", + "description": "LANGRES Dijon", + "ref": "LFR3452EVCP02;LFR3452EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33226600000, + 47.84130100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Vauvenargues, 5 Boulevard Moraliste", + "ref:EU:EVSE": "FRM13PMMOMS4MYOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59896700000, + 43.55541500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P7402012012838548268", + "capacity": "2", + "description": "SDEY/VSJQ80Q6ZS", + "amenity": "charging_station", + "ref": "488901", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21166000000, + 47.85600800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "539474817", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "network": "GARAGE CHENE -TOTAL ENERGIES - CITROEN", + "description": "Elvi 22kw;EvBox DC", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Pascal Chene", + "operator:email": "garage.chene@gmail.com", + "ref:EU:EVSE": "FR515600001;Non concerné", + "start_date": "2021-02-02;2022-02-02", + "ref": "a7ce55c2-9856-4232-8cdc-fdd006f6c4d5;EVB-P212223833" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84000000000, + 45.79000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "33", + "ref": "923307", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5117140003369370126", + "description": "Freshmile France/AXHSHWVSFT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76861000000, + 48.85620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Super U - Marmande", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUMAR", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18233450000, + 44.50450680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Villars, Parking rue de l'hôtel de ville;Réseau eborn/RZTN1YKWP7", + "ref:EU:EVSE": "FREBNPRZTN1YKWP7", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "RZTN1YKWP7;96122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35303200000, + 45.46750600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Fastned Aire de Jonchets - Les Récompenses", + "operator": "Fastned France", + "description": "Fastned Aire de Jonchets - Les Récompenses", + "ref": "FRFASE33022", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFASE33022", + "start_date": "2021-12-27", + "capacity": "4", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93150000000, + 48.42860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "CAMPING SANDAYA - ATUR", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR8812;FROTHPOTHR8811", + "ref": "FR*SOD*S*OTHR*88*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-04-22", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77958800000, + 45.14879800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/H88YLRP16P;Usson-En-Forez, Parking place du souvenir", + "ref": "85973;H88YLRP16P", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPH88YLRP16P", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94187200000, + 45.38925600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPPBNDNA", + "ref": "PBNDNA;102626", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/PBNDNA;Lathuile, Route du Bout du Lac", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21297000000, + 45.79100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2022-06-22", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*419*3*_*_;FR*SOD*S*OTHR*419*2*_*_;FR*SOD*S*OTHR*419*1*_*_;FR*SOD*S*OTHR*419*4*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U - BEAUCOUZE", + "ref:EU:EVSE": "FROTHPOTHR41941;FROTHPOTHR41921;FROTHPOTHR41911;FROTHPOTHR41931", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62373900000, + 47.47279700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PAWDWMR", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "86753", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/AWDWMR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61431000000, + 44.85140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP427106", + "description": "Tesla Supercharger Bourg-en-Bresse, France", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24395700000, + 46.21742400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ESOO1VY323", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P718983386419217531", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "944496", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33924500000, + 48.95442300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c73d5c35-ff0d-5243-be92-1774cf973c2f", + "charging_station:output": "50 kW;43 kW", + "description": "Station-service de l'aire du Val de Meuse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49851500000, + 47.97504600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3145238350850435052", + "capacity": "2", + "description": "Freshmile France/WSZO153YAE", + "amenity": "charging_station", + "ref": "1009224", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.63290100000, + -20.92927500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P7847275485324608621", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLV6PDAX8IBG3M", + "charging_station:output": "25 kW;22 kW", + "ref": "1170438" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37989600000, + 49.18982500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "696527", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P5285811598419703944", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP009E74", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95461600000, + 47.70388100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "SCI_Maison_Transport", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE404", + "start_date": "2022-09-18", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12785800000, + 50.65676000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78567001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-MARTIN-LA-GARENNE - Chemin De La Désirée", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68946200000, + 49.04033700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53E53210001;FRS53P53210A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Denis-D'Anjou - Henri;SAINT-DENIS-D'ANJOU - Place Henri Iv", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-02;2024-05-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43962700000, + 47.79127900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "PORT VENDRES – Avenue Castellane", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66148001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10499600000, + 42.51598100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "description": "IKEA NANTES - EMPU", + "amenity": "charging_station", + "start_date": "2023-07-05;2023-01-04", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "ref:EU:EVSE": "FRIKAPIKEA10252;FRIKAPIKEA10251;FRIKAPIKEA10241;FRIKAPIKEA10231;FRIKAPIKEA10221;FRIKAPIKEA10211", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*102*2*_*_;FR*SOD*S*IKEA*102*1*_*_;FR*SOD*S*IKEA*102*3*_*_;FR*SOD*S*IKEA*102*4*_*_;FR*SOD*S*IKEA*102*5*_*_", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63321300000, + 47.22219900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35176001B1", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "GUIPRY - 8 rue de vannes ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84429000000, + 47.82508900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Ubitricity France Network", + "charging_station:output": "5.5 kW", + "owner:ref:FR:SIREN": "389643859", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS62E10009735", + "start_date": "2022-03-23", + "description": "ZAC Coubertin à Calais", + "operator": "ubitricity" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83694440000, + 50.95194440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "description": "Freshmile France/FTM4TZJ6VT", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3615619765937299826", + "ref": "559709", + "opening_hours": "We,Tu,Mo,Th,Fr 08:00-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71117100000, + 48.60871300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Roulez Électrique En Haute-Garonne/NXQUHM", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "ref:EU:EVSE": "FRS31PNXQUHM", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref": "33400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74389900000, + 43.09350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "SCEAUX - Avenue Franklin Roosevelt", + "ref:EU:EVSE": "FRSIPE92071004", + "start_date": "2021-05-19;2021-05-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29668800000, + 48.77699100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WARSEMANN AUTO PASSION - 37170 - 1", + "network": "WARSEMANN AUTO PASSION - 37170 - 1", + "start_date": "2023-04-05", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000755", + "ref": "FRCG0E000755", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70246600000, + 47.33091700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE20111;FRM06PNICE20112", + "start_date": "2022-10-18", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "CAP-DAIL - PARKING MARESCALCHI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*201*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41135982986, + 43.72664448330 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Le Passage | Placette Ricard", + "ref": "dff2b0a8-9a8c-5521-8a37-e0a27ed00c77" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60451100000, + 44.19279900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE33912;FRSIGPSIGE33911", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - ANGLE RUE DE VERDUN/RUE DU CHATEAU PARKING - BESSANCOURT", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2023-03-30", + "ref": "FR*SOD*S*SIGE*339*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21165600000, + 49.03801800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76020001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ANNEVILLE AMBOURVILLE - Route De La Forge", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-05", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88677400000, + 49.46140900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LOURCHES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4093EVCP01;LFR4093EVCP02;LFR4093EVCP03", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4093EVCP01;LFR4093EVCP02;LFR4093EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34526300000, + 50.31186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Bellegarde En Marche | Place de Treix", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6a432aae-4f81-5878-859f-8d1e002070e0", + "charging_station:output": "22 kW", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29763000000, + 45.98220400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/Montricoux", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PMONTRICOUX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "46642", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61830000000, + 44.07700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-06;2023-12-13;2024-03-01", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "PLAGE DU DEBARQUEMENT - LA CROIX-VALMER", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83420CRVDEBARQUEMENT", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83420*CRV*DEBARQUEMENT", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55665800000, + 43.19058800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3658EVCP01;LFR3658EVCP02", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "VIRE Caen", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3658EVCP01;LFR3658EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87831000000, + 48.85771400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PITMCPV", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-04-04;2023-04-05;2023-11-29", + "capacity": "19", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché Super - Capvern", + "opening_hours": "24/7", + "socket:type2_combo:output": "187.5 kW;160 kW;200 kW;100 kW;60 kW;150 kW", + "charging_station:output": "187.5 kW;50 kW;100 kW;22 kW;60 kW;200 kW;160 kW;150 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35479069213, + 43.11204886163 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ZVO21H4TWD;Castellane, Parking de La Boudousque", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "ZVO21H4TWD;347015", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPZVO21H4TWD;FREBNP2535209077824693814", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51508900000, + 43.84643400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP62570A", + "start_date": "2023-11-30", + "description": "e-Totem - RAPID'EAU MERICOURT", + "ref": "FRETIP62570A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87291384493, + 50.40505272039 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "start_date": "2023-07-04", + "operator:email": "support@alizecharge.fr", + "description": "Parking Nantes Aristide Briand - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E44109006", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56332000000, + 47.21728000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-11-20", + "ref:EU:EVSE": "FRDRVPCRFMKT340701", + "description": "Carrefour Market - Montpellier Croix d'Argent", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85514000000, + 43.59008800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPDECPL", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "socket:type2_combo:output": "300 kW;225 kW", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "charging_station:output": "300 kW;225 kW", + "operator": "ELECTRA", + "description": "Dechy - CC Le Parc du Luc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10677900000, + 50.34270300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR53631;FROTHPOTHR53621", + "amenity": "charging_station", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "INTERMARCHE - BOULOC", + "start_date": "2023-01-09", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*536*2*_*_;FR*SOD*S*OTHR*536*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40351100000, + 43.78377200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-13", + "charging_station:output": "7 kW", + "network": "SAINT-MAURICE MAIRIE 1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCPIE6733865", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6733865", + "description": "SAINT-MAURICE MAIRIE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42623600000, + 48.81822900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P1837321713342436141", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "529646", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/TD9JKXMCX6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84408100000, + 47.00910400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "PARLY STATION 1", + "start_date": "2021-01-27", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRURWPUNIB552;FRURWPUNIB551;FRURWPUNIB542;FRURWPUNIB541;FRURWPUNIB531;FRURWPUNIB512;FRURWPUNIB511;FRURWPUNIB521;FRURWPUNIB522;FRURWPUNIB532", + "ref": "FR*SOD*S*UNIB*5*5*_*_;FR*SOD*S*UNIB*5*3*_*_;FR*SOD*S*UNIB*5*2*_*_;FR*SOD*S*UNIB*5*1*_*_;FR*SOD*S*UNIB*5*4*_*_", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11891600000, + 48.82749200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "782496", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/FGZWXSCGAV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5407744678224305533" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32510200000, + 46.17974400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP7320", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "capacity": "9", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Aire de la Vendée, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11793000000, + 46.57323300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8093375139376169908", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VWZBSK1GBY", + "operator": "Freshmile | FR*FR1", + "ref": "346259" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03647900000, + 49.01035600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "ELECTROMAPS", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "operator:email": "oscar@electromaps.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FR000012308585", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "812328128", + "description": "Résidence les calanques", + "network": "Résidence les calanques", + "start_date": "2022-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.65788830176, + 41.90857930904 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461973", + "ref:EU:EVSE": "FRS14P2591157222391794975", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/UW8EXZVJSE", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37176800000, + 49.13832100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "LUC LA PRIMAUBE - Place St Jean", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS12E12133001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56180290000, + 44.29174390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4LR5LB3YCQ", + "ref:EU:EVSE": "FRWA4P415065470820115399", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "ref": "880176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11828500000, + 49.48386100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2024-04-08", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LOIRE - Route de Bourg d'Iré", + "ref:EU:EVSE": "FRS49E49260002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97844398000, + 47.61577987671 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81065007", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CASTRES - Boulevard Vittoz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24343200000, + 43.60324700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VILLEREAU - Ruelle Bataille - Parking Salle du Bocage", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH16E59619001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69798840000, + 50.24641250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "TREILLIERES - 5 Rue De La Mairie;OuestCharge - Diva Sp - Treillieres - Mairie (5)", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44209C;FRS44E44209002", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2024-06-11;2024-05-31;2021-04-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62683100000, + 47.33121500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-02-19", + "opening_hours": "24/7", + "network": "SIEG63", + "charging_station:output": "50 kW;43 kW", + "operator:email": "info-usager.silene@spie.com", + "description": "SIEG63 - EV-QC45 - St Germain Lembron - Coustilles", + "ref:EU:EVSE": "FRS63P63352B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25478080000, + 45.46027380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH02E59617001", + "description": "VIEUX-MESNIL - Rue de Boussières", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86177200000, + 50.25250300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CAZOULS LES BEZIERS - 3 Rue Pierre Et Marie Curie (Parking Atelier Régie Municipale)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34069001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11180000000, + 43.38690280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRETEIL - 49 Avenue Pierre Brossolette - Parking", + "start_date": "2024-04-08", + "ref:EU:EVSE": "FRSIPE94028031", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46357190000, + 48.79042640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "B&B Le Touquet", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP90266886", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2024-05-14", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62453400000, + 50.50954700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "4c053ccd-89ba-5468-b212-34bf914d2a34", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Marsac Sur L'Isle | Place de la Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65988200000, + 45.18456600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE44411;FRSIGPSIGE44412", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*444*1*_*_", + "start_date": "2024-01-19", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 8 RUE LUDWIG VAN BEETHOVEN - VITRY SUR SEINE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38127930000, + 48.79825030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRALLEGO9007012;FRALLEGO9004292;FRALLEGO9004291;FRALLEGO9007011;FRALLEGO9007291;FRALLEGO9007292", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Epernay", + "ref:EU:EVSE": "FRALLEGO9007012;FRALLEGO9004292;FRALLEGO9004291;FRALLEGO9007011;FRALLEGO9007291;FRALLEGO9007292", + "description": "Allego Carrefour Epernay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96289900000, + 49.04900400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3352EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "AIXE SUR VIENNE", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3352EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15120000000, + 45.80250500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Jurancon | Rue Louis Barthou", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "3f8d3a30-8de0-5dc3-8ab9-49274f77d3f0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39135900000, + 43.28593100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAIRANNE - Chemin de Beauregard", + "ref": "669880d8-f0a3-53de-914a-65f363890440", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93246700000, + 44.22898200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-09-29", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78506001", + "description": "PRUNAY-EN-YVELINES - Rue d'Orphin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79491650000, + 48.52895770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3708EVCP02;LFR3708EVCP01;LFR3708EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3708EVCP02;LFR3708EVCP01;LFR3708EVCP03", + "description": "JONAGE Nationale", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05026400000, + 45.79743600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PJARCOU", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Jardiland - Coutances", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42859129378, + 49.06997032813 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Hyères, ZAC Le Palyvestre", + "ref:EU:EVSE": "FREBNPRJYQTZVSYG", + "ref": "RJYQTZVSYG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14181844000, + 43.10362668000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref": "761925", + "opening_hours": "24/7", + "charging_station:output": "43 kW;22 kW;50 kW;150 kW", + "socket:type2_combo:output": "50 kW;150 kW", + "description": "E-VADEA/FR*EVA*P34095*A", + "network": "E-VADEA", + "ref:EU:EVSE": "FREVAP34095A", + "capacity": "40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79562200000, + 43.54626500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Gamm Vert - Soustons", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;22 kW;60 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "start_date": "2024-02-28", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCRISOU", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33281107302, + 43.74601121692 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Vertus", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT511301", + "opening_hours": "24/7", + "start_date": "2024-09-09", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01015000000, + 48.89643800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2020-09-09", + "ref:EU:EVSE": "FRESEPS42218AW", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Ursules", + "owner:ref:FR:SIREN": "848778429", + "ref": "FRESEPS42218AW", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38622900000, + 45.43581100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG56181;FROTHPIZIG561421;FROTHPIZIG561401;FROTHPIZIG561341;FROTHPIZIG561331;FROTHPIZIG561321;FROTHPIZIG561311;FROTHPIZIG561301;FROTHPIZIG561231;FROTHPIZIG561221;FROTHPIZIG561211;FROTHPIZIG561201;FROTHPIZIG561191;FROTHPIZIG561171;FROTHPIZIG561121;FROTHPIZIG561111;FROTHPIZIG56111;FROTHPIZIG561101;FROTHPIZIG561131;FROTHPIZIG561141;FROTHPIZIG561151;FROTHPIZIG561161;FROTHPIZIG561181;FROTHPIZIG561241;FROTHPIZIG561251;FROTHPIZIG561261;FROTHPIZIG561271;FROTHPIZIG561281;FROTHPIZIG561291;FROTHPIZIG56131;FROTHPIZIG561351;FROTHPIZIG561361;FROTHPIZIG561371;FROTHPIZIG561381;FROTHPIZIG561391;FROTHPIZIG56141;FROTHPIZIG561411;FROTHPIZIG56151;FROTHPIZIG56171;FROTHPIZIG56191", + "start_date": "2024-01-29;2022-07-18;2022-07-19", + "network": "EDF-EV100", + "description": "HYDRO SE LA MOTTE-SERVOLEX - PUBLIC", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IZIG*561*9*_*_;FR*SOD*S*IZIG*561*8*_*_;FR*SOD*S*IZIG*561*7*_*_;FR*SOD*S*IZIG*561*5*_*_;FR*SOD*S*IZIG*561*41*_*_;FR*SOD*S*IZIG*561*40*_*_;FR*SOD*S*IZIG*561*34*_*_;FR*SOD*S*IZIG*561*33*_*_;FR*SOD*S*IZIG*561*32*_*_;FR*SOD*S*IZIG*561*31*_*_;FR*SOD*S*IZIG*561*3*_*_;FR*SOD*S*IZIG*561*30*_*_;FR*SOD*S*IZIG*561*29*_*_;FR*SOD*S*IZIG*561*28*_*_;FR*SOD*S*IZIG*561*27*_*_;FR*SOD*S*IZIG*561*25*_*_;FR*SOD*S*IZIG*561*24*_*_;FR*SOD*S*IZIG*561*19*_*_;FR*SOD*S*IZIG*561*17*_*_;FR*SOD*S*IZIG*561*15*_*_;FR*SOD*S*IZIG*561*10*_*_;FR*SOD*S*IZIG*561*1*_*_;FR*SOD*S*IZIG*561*11*_*_;FR*SOD*S*IZIG*561*12*_*_;FR*SOD*S*IZIG*561*13*_*_;FR*SOD*S*IZIG*561*14*_*_;FR*SOD*S*IZIG*561*16*_*_;FR*SOD*S*IZIG*561*18*_*_;FR*SOD*S*IZIG*561*20*_*_;FR*SOD*S*IZIG*561*21*_*_;FR*SOD*S*IZIG*561*22*_*_;FR*SOD*S*IZIG*561*23*_*_;FR*SOD*S*IZIG*561*26*_*_;FR*SOD*S*IZIG*561*35*_*_;FR*SOD*S*IZIG*561*36*_*_;FR*SOD*S*IZIG*561*37*_*_;FR*SOD*S*IZIG*561*38*_*_;FR*SOD*S*IZIG*561*39*_*_;FR*SOD*S*IZIG*561*4*_*_;FR*SOD*S*IZIG*561*42*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87342000000, + 45.63792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6883475", + "description": "OXYMAX1 STATION 2", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-05-16", + "ref:EU:EVSE": "FRCPIE6883475", + "network": "OXYMAX1 STATION 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09308400000, + 48.41140900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLLQFRE3NOU1M6", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2410515445167286544", + "operator": "Freshmile | FR*FR1", + "ref": "1171380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47262600000, + 45.21708400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - B&B HOTEL LYON SAINT-PRIEST", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP122045", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90774900000, + 45.70807500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5167017763240687848", + "ref": "892077", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLI2T0PJ21SQ0A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31633600000, + 43.32296000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Chalon-sur-Saône, France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP30249", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83510558000, + 46.79624650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/NME8JL5XVW", + "ref": "479208", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6524887214606404673", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24360000000, + 46.75360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "start_date": "2021-05-04", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS16PMB166712;FRS16PMB166711", + "opening_hours": "24/7", + "network": "MOBIVE - SDEG 16", + "charging_station:output": "22 kW", + "description": "JARNAC - PLACE JEAN JAURES", + "ref": "FR*SOD*S*MB16*67*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17408800000, + 45.68163600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/BM0HFP9CGY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "456795", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P5251141249511647174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02765900000, + 49.33881000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "ref": "1128012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LURJXH3YT", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P6902152489901744569" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00212100000, + 46.16433500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2018-04-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PERIERS - Place de la Halle", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50190001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40608210000, + 49.18689570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "operator:email": "fr.duhamel@bouygues-es.com;support@alizecharge.fr", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-10-04;2023-12-06", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8117100122;FRS81E8117100111;FRS81E81171001;FRS81E8117100121", + "operator": "Bouygues E&S;BOUYGUES ENERGIES SERVICES", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "owner:ref:FR:SIREN": "258100072", + "charging_station:output": "50 kW;43 kW", + "description": "MONTANS - Aire de covoiturage A68" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84395200000, + 43.84342800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2023-01-20", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF059743", + "amenity": "charging_station", + "capacity": "4", + "description": "RELAIS BIDART EST", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF059743", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680968;531680966;531680965;531680967", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59730800000, + 43.42222600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "description": "SAINT CHELY D'APCHER - Place Du Foirail", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS48E48140003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27740100000, + 44.80282300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/WFJUNQY8TV", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P8970225673968297112", + "network": "Mobilité électrique 56", + "ref": "565076", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86300000000, + 47.60140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62893001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "WIMEREUX - Rue du Château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61956400000, + 50.77813700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E29500003", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-08-30", + "description": "ERGUE GABERIC - Lestonan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02180800000, + 48.01942900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PEKGZCS", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2016-08-13", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Saint-gonnery - Place Pierre Anne Beurel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82046000000, + 48.12327000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052462;FRLMSE12346052451;FRLMSE12346052452;FRLMSE12346052461", + "description": "SENILLE-1-1;SENILLE-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-12-05", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B097" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61404000000, + 46.77956000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-04-08", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93048G", + "charging_station:output": "2.3 kW;22 kW", + "ref": "484802", + "description": "Metropolis - Citadine - Montreuil - Général de Gaulle;Métropolis/FR*MGP*P93048*G", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43332200000, + 48.86826600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2021-07-23", + "description": "Réseau AlterBase - Niort - Moulin du Roc ", + "ref:EU:EVSE": "FRSEOPAB79191P0045A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46752300000, + 46.32804900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "24/7", + "network": "Atlante", + "socket:type2_combo:output": "300 kW", + "ref": "1071804", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00365", + "ref:EU:EVSE": "FRATLP1474565338932876946" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70586100000, + 47.33076500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89363555", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-14", + "description": "ENGIE Vianeo - Golbey - Piscine Germain Creuse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045000000, + 48.19058400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "operator:email": "info@electromaps.com", + "owner:ref:FR:SIREN": "333245181", + "amenity": "charging_station", + "capacity": "3", + "description": "Gamm Vert Aoste", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "ref:EU:EVSE": "FRMAPP000000007825", + "opening_hours": "Mo-Sa 09:00-12:00 14:00-19:00, Su 9:00-12:30", + "network": "Electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61000000000, + 45.59000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "VENANSAULT - Parking Maison De La Culture", + "ref:EU:EVSE": "FRS85E85300001", + "start_date": "2024-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51163000000, + 46.68434900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OLLIOULES", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSOLLIO", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "start_date": "2023-06-20", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87637000000, + 43.12479000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRJRCPFTNA00001", + "operator": "Jerecharge.com", + "opening_hours": "Mo-Su 08:00-18:00", + "socket:type2_combo:output": "180 kW;60 kW", + "owner:ref:FR:SIREN": "905083895", + "charging_station:output": "22 kW;180 kW;60 kW", + "network": "Jerecharge.com", + "start_date": "2023-07-01", + "ref": "ddbf6466-c1fd-42d8-93e2-cdc1b64a99d4", + "description": "Corbeil - Emile Zola", + "operator:email": "contact@jerecharge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46706700000, + 48.62031500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-11-29", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBCHDY", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Mr. Bricolage - Hendaye" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76892385711, + 43.34954366570 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWKHCVF4ZLP", + "ref": "WKHCVF4ZLP", + "description": "Pierrelatte, Ferme aux crocodiles", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70472835000, + 44.35463006000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Th,Fr,Mo,We,Tu 14:00-17:00", + "charging_station:output": "22 kW", + "description": "Freshmile France/BDY183MWVK", + "ref:EU:EVSE": "FRFR1P1435751212418411480", + "operator": "Freshmile | FR*FR1", + "ref": "471012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027300000, + 48.93701900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-02-23", + "description": "Ibis Budget - Macon Sud", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBSMAC", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80460354109, + 46.28144052960 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPGHGFD1VXML", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/GHGFD1VXML;La Motte-Chalancon, Parking du Village", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "GHGFD1VXML;31843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38123500000, + 44.48623300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - The Originals City Saint Aunes", + "ref:EU:EVSE": "FRETIP34240A", + "socket:type2_combo:output": "100 kW;150 kW", + "start_date": "2024-02-21", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP34240A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97584400000, + 43.64911100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DOMOLANDES", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR22441;FROTHPOTHR22431;FROTHPOTHR22411;FROTHPOTHR22421;FROTHPOTHR22451", + "start_date": "2021-02-15", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "DOMOLANDES - SAINT GEOURS DE MAREMNE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*224*2*_*_;FR*SOD*S*OTHR*224*1*_*_;FR*SOD*S*OTHR*224*3*_*_;FR*SOD*S*OTHR*224*4*_*_;FR*SOD*S*OTHR*224*5*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23646800000, + 43.71136600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "description": "CHAMPLAN - JEAN JAURES", + "ref": "FR*SOD*S*CAPS*50*1*_*_", + "start_date": "2021-06-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS5012;FRCPSPCAPS5011", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29123300000, + 48.70044800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4164055007126884342", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "368908", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/PRJWTYLPXL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57925800000, + 44.85663400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLIKB1HM41", + "network": "WAAT", + "ref:EU:EVSE": "FRWA1P5310360224469935095", + "amenity": "charging_station", + "charging_station:output": "6.9 kW;7.4 kW", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1", + "ref": "932082" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93173300000, + 45.73847800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "398924;1052481", + "network": "Freshmile France", + "description": "Freshmile France/LII6X0QIDC;Freshmile France/LLQ2C2X55M725Q", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6607911807140356580;FRFR1P3772307217296404756", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65500000000, + 47.05330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1000114228", + "description": "ABB 11kW Panss", + "amenity": "charging_station", + "capacity": "1", + "ref": "1000114228", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2022-11-24", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29986500000, + 45.54392200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/G53AI8R0G2", + "ref": "471057", + "ref:EU:EVSE": "FRFR1P3432517842378960706", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09079800000, + 45.65971100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-03", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Loc+ - Toulon", + "ref:EU:EVSE": "FRSSDPLOC831301", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02940900000, + 43.13938400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - ANET - Rue LENOTRE", + "network": "MODULO - ANET - Rue LENOTRE", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E139423;FRS28E139424", + "ref": "FRS28E139423;FRS28E139424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44039400000, + 48.85790600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EVB-P21011574", + "operator:email": "contact@hotel-du-porge.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo-Su 8:00-20:00", + "ref:EU:EVSE": "Non concerné", + "start_date": "2022-04-14", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "850830043", + "operator": "BOIS CHERI - HOTEL DU PORGE", + "description": "Parking HOTEL DU PORGE", + "network": "HOTEL DU PORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09031270000, + 44.86805180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/XW3KNONHEE", + "ref": "39728", + "ref:EU:EVSE": "FRS10P2240066707369008605" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08586500000, + 48.32531200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "3358ab10-d83f-4b38-9d3b-610ac4fd1e27;585101", + "network": "Logis Hôtel la Chatellenie;Zephyre", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P39538;FRZP1P6105544276308855732", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Logis Hôtel la Chatellenie 1 - 22 kW AC;Zephyre/LP009E8F", + "owner:ref:FR:SIREN": "523052298", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65581300000, + 46.12113200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hotel_Beauregard", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRROSE512", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2023-01-18", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14200120000, + 45.87710250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PVUYNGD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDE82/VUYNGD", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "38932" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19525000000, + 44.08410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*101*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - AMIENS LA BRETECHE", + "ref:EU:EVSE": "FRIZFPFAST10111;FRIZFPFAST10112;FRIZFPFAST10113", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-06-04", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28762810000, + 49.90083980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-27;2024-04-10", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49123001;FRS49P49123A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "DISTRE - ZAC Champs Blanchard;OuestCharge - Diva Sp - Distre - Blanchard", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11918800000, + 47.23173800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PRIBECOURT", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "description": "Mouv'Oise/Ribecourt", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "294410", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92251000000, + 49.51060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-17", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*24*1*_*_;FR*SOD*S*LYON*24*2*_*_", + "ref:EU:EVSE": "FRGLYPLYON2422;FRGLYPLYON2421;FRGLYPLYON2412;FRGLYPLYON2411", + "description": "LY504 - JOLIOT CURIE - LES BATTIERES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78299400000, + 45.75443900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189023", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "charging_station:output": "60 kW;150 kW", + "start_date": "2021-12-24", + "description": "NIMES - Rue John Mac Adam", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34015700000, + 43.81366900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Vannes - Rue Jean Marie Bécel", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PPVGAUH", + "start_date": "2016-10-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77215400000, + 47.65802800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP90295589", + "start_date": "2024-06-13", + "description": "ENGIE Vianeo - B&B HOTEL SAINT-WITZ", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55358200000, + 49.08868300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref:EU:EVSE": "FRMW1P161368864646046885", + "amenity": "charging_station", + "capacity": "4", + "description": "Mobilygreen CPO/6d7f7588-1bd3-4be3-8b4a-69045a7c8873", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1132488", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06570000000, + 45.88747300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-29", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE HOUDART - ROISSY-EN-FRANCE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*156*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE15612;FRSIGPSIGE15611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51532100000, + 49.00621100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRBE1E81297001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-10-25;2022-09-30", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "network": "CPO Alizé Liberté Public", + "description": "TERSSAC - SARL BCA - BURO Club" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07899800000, + 43.91755300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89601389", + "capacity": "1", + "description": "ENGIE Vianeo - A19 Loiret", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2023-07-07;2023-05-05", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47259900000, + 48.08431200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Mimizan | Rue du Jardin Public;MIMIZAN - RUE DU JARDIN PUBLIC", + "ref": "c9ea067c-8d7d-53cd-840f-385fd410e81b;FR*SOD*S*MB40*68*1*_*_", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "ref:EU:EVSE": "FRS40PMB406812;FRS40PMB406811;Non concerné;FRS40PMB406813;FRS40PMB406814", + "operator": "199__SYDEC40;IZIVIA", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "start_date": "2020-05-26", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22732200000, + 44.20258700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE77MAFA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "CC Bassée-Montois - Clinique Vétérinaire", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-12-20", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23267100000, + 48.41518300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9990201;FRALLEGO9003382;FRALLEGO9003381;FRALLEGO9003082;FRALLEGO9003081;FRALLEGO9990191;FRALLEGO9990192;FRALLEGO9990202", + "capacity": "8", + "network": "Allego Carrefour Hazebrouck", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Hazebrouck", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9990201;FRALLEGO9003382;FRALLEGO9003381;FRALLEGO9003082;FRALLEGO9003081;FRALLEGO9990191;FRALLEGO9990192;FRALLEGO9990202", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54567800000, + 50.73873200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3610EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3610EVCP01", + "charging_station:output": "22 kW", + "description": "CORBENAY Thomas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29824700000, + 47.88103900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM31E31561001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "L'UNION - Rue Du Somport Parking Grande Halle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48141400000, + 43.65579200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "description": "Evians-Les-Bains, Avenue des Grottes", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMCO5MCQGLW", + "ref": "MCO5MCQGLW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59628696000, + 46.40028687000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "510554", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3416180315691077176", + "network": "Freshmile France", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PMNDERSS7U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08563200000, + 49.91905300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-10-01;2020-06-18", + "description": "BUSSY ST GEORGES - Parking Relais", + "ref:EU:EVSE": "FRP07E77058001;FRP07E770580011;FRP07E770580012", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70781000000, + 48.83620100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUVZMY6BLLA;FREBNP3900779074367471319", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/UVZMY6BLLA;Arsac-En-Velay, Parking Mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "UVZMY6BLLA;346949", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94333000000, + 44.99135000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-03-25", + "description": "Nice - Stade Allianz Riviera", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPNICST", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19650200000, + 43.70911900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E75110001", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Paris gare de l'Est P2 - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35975000000, + 48.87631000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "SONEPAR PONTARLIER", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6621925", + "ref": "FRCPIE6621925", + "network": "SONEPAR PONTARLIER", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33784100000, + 46.91607400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Barjouville , Pierres Missigault", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "ref": "AI6HVCTTMU", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHPAI6HVCTTMU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46463345400, + 48.41380902000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Avenue de Versailles 53", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1610", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX16*10", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27452660000, + 48.84786190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4378235551714018051", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LSZFYN", + "ref": "471102", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99686600000, + 48.66911300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRTCBP00839", + "start_date": "2022-12-07", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "791433501", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP00839", + "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00", + "charging_station:output": "22 kW", + "description": "Atelier de l'Aluminium Chanopost", + "network": "Atelier de l'Aluminium Chanopost", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77176221534, + 45.71252984033 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8376138181916853808", + "ref": "1169391", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/LLZS8WPTZBK4PM", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00893500000, + 49.07550300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-25;2020-03-20", + "capacity": "5", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-19:00", + "ref:EU:EVSE": "FRSSDPJPVKIA831001", + "operator:email": "support@driveco.com", + "description": "Kia - Toulon", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97799000000, + 43.12791800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-08-08", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E29100001", + "description": "KERLAZ - Rue De Douarnenez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.27342000000, + 48.09182500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CARCASSONNE - Chemin De La Madeleine", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11069003", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39402000000, + 43.22167600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "cf229dad-8820-4494-be2d-f9eb3048ec28", + "owner:ref:FR:SIREN": "421676388", + "ref:EU:EVSE": "FRZP1PEAC65814;FRZP1PEAC92835", + "network": "Logis Hôtel de la Paix", + "description": "Hôtel de la Paix - 22 kW AC", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32291154000, + 43.73157534000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57624;FRS08E57623", + "description": "MODULO - RIMOGNE- Rue de la gare", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "network": "MODULO - RIMOGNE- Rue de la gare", + "ref:EU:EVSE": "FRS08E57624;FRS08E57623", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53958400000, + 49.84184200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PDFJTTX", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/DFJTTX", + "network": "FDE 80", + "ref": "79480" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09820000000, + 49.94660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*243*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-12", + "description": "IZIVIA FAST - MC DONALDS - SABLE SUR SARTHE", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST24313;FRIZFPFAST24311;FRIZFPFAST24312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29916719207, + 47.83828405048 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-19;2024-04-22", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "BOUVRON - Rue Louis Guihot;OuestCharge - Diva Sp - Bouvron - Guihot", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44023A;FRS44E44023001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84840300000, + 47.41835200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHALMAISON - Rue Henri Jules Brugeail;Chalmaison", + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61KHC09TQDPBX6EE2Z", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77076001;FRS77P77076A", + "start_date": "2016-05-30;2023-05-12", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25072900000, + 48.48267400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000054875;FRGSPP1000054874", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NOVOTEL LA ROCHELLE", + "network": "NOVOTEL LA ROCHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15847498652, + 46.16170217487 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219878;FRS37E219879", + "start_date": "2023-10-07", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E219878;FRS37E219879", + "network": "MODULO - JAULNAY – Pkg. de l’église", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - JAULNAY – Pkg. de l’église", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41392600000, + 46.94827800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "ref": "05c4eb7a-3acf-51a7-8139-323f34d0ae94", + "capacity": "2", + "amenity": "charging_station", + "description": "CCTLB - Jolivet", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50092300000, + 48.60398200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P69382DA", + "amenity": "charging_station", + "capacity": "4", + "network": "SPLM Parking Bourse - N1 - Zone 2", + "opening_hours": "24/7", + "start_date": "2024-06-26;2024-06-25", + "operator:email": "contact@e-totem.fr", + "description": "SPLM Parking Bourse - N1 - Zone 2", + "ref:EU:EVSE": "FRG10P69382DA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83688330000, + 45.76499620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | PARENTIS-EN-BORN | Place Bouchard", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "2d50417f-26ae-55ee-9e12-229751c2ca70", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07146400000, + 44.34872000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE27411;FRSIGPSIGE27412", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*274*1*_*_", + "description": "SIGEIF - 42 RUE GARDENAT LAPOSTOL - SURESNES", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-05-13", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22394300000, + 48.87384000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "amenity": "charging_station", + "ref": "FRCPIE6497765;FRCPIE6497755;FRCPIE6495345", + "capacity": "4", + "start_date": "2021-09-07", + "ref:EU:EVSE": "FRCPIE6497765;FRCPIE6497755;FRCPIE6495345", + "description": "GVA VÉNISSIEUX AC2", + "network": "GVA VÉNISSIEUX AC2", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86466800000, + 45.71713300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Leclerc/LLX90O8PF1R53V", + "ref": "1155495", + "capacity": "10", + "ref:EU:EVSE": "FRLE2P31941014219132651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01165900000, + 43.23884900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Clergoux | Domaine de Sédières", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "df2ad259-ca9c-55e3-bed3-4ff368d6f915" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95101500000, + 45.29144500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - Mauléon - rue de la Fontaine Noire", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB16007A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74845700000, + 46.92355700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20848530000, + 49.97230750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-03-10", + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "ref:EU:EVSE": "FRAGXP01173B", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com", + "description": "Pays de Gex - ePremium - Gex - MJC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06059500000, + 46.33444300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ARGELES SUR MER 8 Mai", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR0981EVCP01;LFR0981EVCP02", + "ref": "LFR0981EVCP01;LFR0981EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03006400000, + 42.54548700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA TRONCHE - Hôpital Couple Enfant", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM38E38516003", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-09", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74076410000, + 45.20179750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*128*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ST PAUL DE VENCE - PARKING VILLAGE", + "ref:EU:EVSE": "FRA16PWIIZ12811;FRA16PWIIZ12812", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12196300000, + 43.70119000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "694226", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HMDWQISHYA", + "capacity": "9", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7045154494058455987" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54088200000, + 45.31377800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PACTSTA", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Action - Sainte-Austreberthe", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03536441964, + 50.36337491080 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPSBGEQE8DZY;FREBNSBGEQE8DZY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "SBGEQE8DZY;50731", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/SBGEQE8DZY;Le Bourguet, D252", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51863200000, + 43.78295500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPLBLHO", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "start_date": "2024-03-27", + "description": "Le Boulou - Hôtel Le Neoulous" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82149600000, + 42.52044000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2024-02-12", + "ref:EU:EVSE": "FRP07E06069001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRASSE - H. Cresp" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92130100000, + 43.65735600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-01", + "ref": "FRCPIE6682045", + "ref:EU:EVSE": "FRCPIE6682045", + "charging_station:output": "22 kW", + "network": "SONEPAR CESSON-SEVIGNE", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CESSON-SEVIGNE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62250400000, + 48.10286400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/CBKQJQZV8O", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "756837", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP5042540473241840742", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42838700000, + 46.69610100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP143012", + "start_date": "2022-12-13", + "description": "ENGIE Vianeo - Chantraine - Impasse Payonne", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44083100000, + 48.16984500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/JZHDPB", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PJZHDPB", + "charging_station:output": "22 kW", + "ref": "213053", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58555000000, + 49.56080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX06*07", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue du Four 38", + "amenity": "charging_station", + "start_date": "2021-08-17", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0607", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33146620000, + 48.85245090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RFKYFA0B17", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "521351", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9107838020024304930" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55033200000, + 48.83297200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-10-21", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Afa - Mairie", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMAIRIEAFA201671", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79707100000, + 41.98381500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22360002", + "description": "TREGUEUX - Place F. Mitterand (parking mairie)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73690500000, + 48.49019600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS18E148843", + "network": "MODULO - LA CELLE-CONDE - Mairie", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LA CELLE-CONDE - Mairie", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E148843", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18557399000, + 46.79318772000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "capacity": "2", + "description": "Camping la Belle Etoile", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "info@compinglabelleetoile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "277fec15-9af5-4f6b-b791-8f0a0b536ae2", + "network": "Camping la Belle Etoile", + "owner:ref:FR:SIREN": "802241182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67000000000, + 48.52000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P867051978214182516", + "ref": "32083", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/HSYIJGUBSD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49812100000, + 48.49222400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-03", + "capacity": "2", + "description": "ALBI - Pratgraussals - Chemin Pratgraussals", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81004010", + "operator": "Bouygues E&S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13537500000, + 43.93153900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-17", + "description": "IKEA DIJON - PARKING CLIENTS", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*82*9*_*_;FR*SOD*S*IKEA*82*8*_*_;FR*SOD*S*IKEA*82*7*_*_;FR*SOD*S*IKEA*82*26*_*_;FR*SOD*S*IKEA*82*22*_*_;FR*SOD*S*IKEA*82*21*_*_;FR*SOD*S*IKEA*82*2*_*_;FR*SOD*S*IKEA*82*18*_*_;FR*SOD*S*IKEA*82*16*_*_;FR*SOD*S*IKEA*82*15*_*_;FR*SOD*S*IKEA*82*14*_*_;FR*SOD*S*IKEA*82*12*_*_;FR*SOD*S*IKEA*82*11*_*_;FR*SOD*S*IKEA*82*10*_*_;FR*SOD*S*IKEA*82*1*_*_;FR*SOD*S*IKEA*82*13*_*_;FR*SOD*S*IKEA*82*17*_*_;FR*SOD*S*IKEA*82*19*_*_;FR*SOD*S*IKEA*82*20*_*_;FR*SOD*S*IKEA*82*23*_*_;FR*SOD*S*IKEA*82*24*_*_;FR*SOD*S*IKEA*82*25*_*_;FR*SOD*S*IKEA*82*3*_*_;FR*SOD*S*IKEA*82*4*_*_;FR*SOD*S*IKEA*82*5*_*_;FR*SOD*S*IKEA*82*6*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIKAPIKEA8271;FRIKAPIKEA8261;FRIKAPIKEA8241;FRIKAPIKEA8231;FRIKAPIKEA82261;FRIKAPIKEA82251;FRIKAPIKEA82241;FRIKAPIKEA82231;FRIKAPIKEA82221;FRIKAPIKEA82211;FRIKAPIKEA82201;FRIKAPIKEA82191;FRIKAPIKEA82151;FRIKAPIKEA82141;FRIKAPIKEA82131;FRIKAPIKEA82111;FRIKAPIKEA82101;FRIKAPIKEA8211;FRIKAPIKEA82121;FRIKAPIKEA82161;FRIKAPIKEA82171;FRIKAPIKEA82181;FRIKAPIKEA8221;FRIKAPIKEA8251;FRIKAPIKEA8281;FRIKAPIKEA8291" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06409600000, + 47.33992100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-28;2024-04-25", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "description": "OuestCharge - Pulse 50 - Port-Saint-Pere - Riviere;PORT-SAINT-PERE - La Riviere", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS44E44133001;FRS44P44133A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74197200000, + 47.13127200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77316006", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MORÊT-LOING-ET-ORVANNE - Croix du Gué", + "charging_station:output": "22 kW", + "start_date": "2024-05-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78621590000, + 48.33465300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62757001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SAINT-MARTIN-AU-LAËRT - Place Cotillon Belin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23770000000, + 50.75389900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221522;FRS37E221521", + "start_date": "2023-11-02", + "description": "MODULO - NEUILLE LE LIERRE - Pl. de la gare", + "network": "MODULO - NEUILLE LE LIERRE - Pl. de la gare", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221522;FRS37E221521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90856200000, + 47.50995900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VERDUN - Av. Général Mangin", + "ref": "FRS55E66596;FRS55E66597", + "ref:EU:EVSE": "FRS55E66596;FRS55E66597", + "description": "MODULO - VERDUN - Av. Général Mangin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38864600000, + 49.16197500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "BRN07 - MERMOZ-PINEL", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*146*1*_*_;FR*SOD*S*LYON*146*2*_*_", + "ref:EU:EVSE": "FRGLYPLYON14622;FRGLYPLYON14611;FRGLYPLYON14612;FRGLYPLYON14621", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88770500000, + 45.73019200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59320*02", + "network": "MEL", + "ref:EU:EVSE": "FRMELP5932002", + "operator": "TotalEnergies Charging Services", + "description": "ENGLOS - Rue Paul Procureur", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95625211000, + 50.62817956000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "PETIT MENIN 3 DECATHLON - Neuville-en-Ferrain", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "opening_hours": "Mo 09:30-19:30, Tu 09:30-19:30, We 09:30-19:30, Th 09:30-19:30, Fr 09:30-19:30, Sa 09:30-19:30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCEETRUS596562", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14040000000, + 50.74124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT VALENCIENNES", + "ref:EU:EVSE": "FRCPIE6580765", + "network": "SONEPAR CONNECT VALENCIENNES", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6580765", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47783400000, + 50.34291100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471252", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/ST9EIX80RW", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRLE2P784268777946957042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493300000, + 45.74169300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "ff8d2fef-3bae-5001-a6ef-ac97a7e96726", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Gujan-Mestras | Pem Rue de L'Yser | Droite", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06850000000, + 44.64056000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "f7d8f8d7-fb17-5661-a0f2-1f60a125e23e", + "description": "Savigny-sur-Orge - Rue du Mail (Place Davout)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35280600000, + 48.67472100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "description": "CASINO AIX EN PROVENCE", + "amenity": "charging_station", + "start_date": "2023-07-16;2023-09-26;2023-07-17;2022-12-14;2021-05-05;2023-09-18", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "ref:EU:EVSE": "FRSITE00000002;FRALLPCAS004", + "network": "ALLEGO;GreenToWheel;CASINO AIX EN PROVENCE", + "operator:email": "info.allego.france@allego.eu", + "socket:type2_combo:output": "50 kW;350 kW;300 kW", + "capacity": "14;12;16", + "charging_station:output": "50 kW;43 kW;350 kW;22 kW;300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41745200000, + 43.53288300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3830EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3830EVCP01", + "description": "MARSEILLE - Lyon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36630900000, + 43.32720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PEDUESRUBU4", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Istres, Gymnase Donadieu", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98879100000, + 43.50764300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - GERARDMER - Rue de la basse des Rupts", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-08-24", + "ref:EU:EVSE": "FRS88E181161;FRS88E181159", + "ref": "FRS88E181161;FRS88E181159", + "network": "MODULO - GERARDMER - Rue de la basse des Rupts" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88182000000, + 48.07130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GREOLIERE LES NEIGES - PARKING STATION", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ23812;FRA16PWIIZ23811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2023-09-20", + "ref": "FR*SOD*S*WIIZ*238*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96765800000, + 43.82977500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1848564366951015712", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/B9F5WIHHBL", + "operator": "Freshmile | FR*FR1", + "ref": "440979" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.13942100000, + 14.65067500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-03;2023-08-01", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMDTPRP", + "description": "Mondial Tissus - Perpignan", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89012590000, + 42.67537060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32749", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/YLM0HHUMDL", + "ref:EU:EVSE": "FREBNPYLM0HHUMDL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96331100000, + 45.27200600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARF - Bornes Publiques/366DA9E5-C295-45AD-B9EC-911517B8A0A6", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "593324", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP7995430079720388764" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55156200000, + 43.98945800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*581*1*_*_", + "description": "INTERMARCHE - MORLAAS", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR58111;FROTHPOTHR58112", + "start_date": "2023-02-09", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25536900000, + 43.34652400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-17", + "ref": "RNFAUC;231565", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/RNFAUC;Montluçon, Denis Papin", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPRNFAUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59832000000, + 46.34440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSNJTCRYXPQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Saint-Geoire-En-Valdaine, Place André Chaize;Réseau eborn/SNJTCRYXPQ", + "ref": "SNJTCRYXPQ;94451" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63678500000, + 45.45587300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "300 kW;72 kW", + "description": "ENGIE Vianeo - A52 Manon des Sources", + "start_date": "2023-06-19", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP104107", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "50 kW;300 kW;72 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57801400000, + 43.40091700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8395582115248734839", + "network": "Freshmile France", + "description": "Freshmile France/LLKTJMM0V14AK7", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1009254", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30283200000, + 43.20475700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX13*10", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue Fernand Braudel 21", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-10-06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1310" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37246430000, + 48.83623020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Freshmile France/ZISHTQLCPD", + "operator:email": "roaming@freshmile.com", + "ref": "477744", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRFR1P8911952463691808569", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139500000, + 49.04258000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2022-06-21;2023-11-30", + "opening_hours": "Mo 07:00-23:00, Tu 07:00-23:00, We 07:00-23:00, Th 07:00-23:00, Fr 07:00-23:00, Sa 07:00-23:00, Su 07:00-23:00", + "description": "Avis Location - Figari", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPOLLANDINIAVIS201141", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.09896000000, + 41.49846900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900042", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PFLEURYANDREPUBLIQUE", + "start_date": "2016-07-08", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35633300000, + 49.35987000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E21555001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-06-05", + "description": "SAINT JULIEN - Rue De Saint Anne", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81674100000, + 48.45232400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "SAINT REMY LES CHEVREUSE - Beauplan", + "ref:EU:EVSE": "FRY03E78575003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08160880000, + 48.71528940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-08-09", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "description": "Microcosme", + "ref:EU:EVSE": "FRROSE130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869400000, + 50.71461800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "937881", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWATP582069917563037453", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLW3F95E73", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59341300000, + 44.16849600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE413000", + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2020-12-18", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "ref": "FRIONE440100", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59865100000, + 45.61009500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - SEZANNE - Pl. du Champ Benoist", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E42863;FRS51E42862", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - SEZANNE - Pl. du Champ Benoist", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS51E42863;FRS51E42862", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72069100000, + 48.72174500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65127001", + "description": "CAPVERN - Parking salle des fetes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31966000000, + 43.10244000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681576;531681571;531681570;531681568;531681569;531681567;531681566;531681565;531681561;531681562;531681564;531681563;531681574;531681575;531681572;531681573", + "ref": "FRHPCPNF080365", + "capacity": "16", + "amenity": "charging_station", + "start_date": "2023-07-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080365", + "socket:type2_combo:output": "300 kW", + "description": "RELAIS DE MEUNG SUR LOIRE", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64172100000, + 47.82101300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEZE - Place des Tonneliers", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34157002", + "charging_station:output": "22 kW", + "start_date": "2022-02-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60487514244, + 43.42278367501 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "25054", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PTHSFCS", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/THSFCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12340000000, + 47.90590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P879300366069011696", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "446555", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/O2O5X8CIOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96149900000, + 49.04477700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "330284", + "description": "Métropolis/FR*MGP*P92063*C;Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17234900000, + 48.88533100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2020-07-08", + "capacity": "2", + "amenity": "charging_station", + "description": "Renault - Limeil", + "ref:EU:EVSE": "FRSSDPMAURINRENAULT944501", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48626300000, + 48.74204100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC2P005901", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRC2P005901", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "description": "CHATEAU DU FEY", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr", + "network": "CHATEAU DU FEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33090700000, + 48.01435000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "ref": "1c56aaca-a92f-11ed-afa1-0242ac120002", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-03-24", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "Hotel des grand Vins", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELGRANDVINS11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69694470000, + 46.18693920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Amou | Av. de la Digue", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "3f611901-52a5-5e38-bced-cc02600cc8dc", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74467000000, + 43.59151300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE31VACA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-03", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "VILLEMUR ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50420600000, + 43.86629700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRBHMP6827901449552114334", + "operator": "Borneco | FR*BHM", + "description": "BornEco/6453bc722f5a364fea63fee6", + "charging_station:output": "7.4 kW;22 kW", + "ref": "1086342" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03728600000, + 47.08429300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/WZWROIDFBO", + "ref": "454344", + "ref:EU:EVSE": "FRLE2P1277233492883054115" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726800000, + 45.59468600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Le Puy-Sainte-Reparade, Rue de L'Hotel de Ville", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PGK9NJGGDFX", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43521600000, + 43.66389400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P217965635852949382", + "description": "SDEY/GDSFD1GRQ5", + "ref": "402506" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79853600000, + 47.81622000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*89*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ8911;FRA16PWIIZ8912", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-07", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "LE CANNET PARKING BUFFON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99378800000, + 43.56911800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/RJEPQK", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1915656791535726912", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "294380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04393000000, + 48.45010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-08-08", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUALE", + "description": "Super U - Alès", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09015083513, + 44.14095471259 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Mont-Dauphin, Le Fort", + "ref": "LWVJGTCWAV", + "ref:EU:EVSE": "FREBNPLWVJGTCWAV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62342882200, + 44.66996772000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP6051638632639158784", + "network": "CARF - Bornes Publiques", + "description": "CARF - Bornes Publiques/C361F4BD-F52E-42FB-B2FF-0CF97C15E3C0", + "operator:email": "support@evzen.com", + "ref": "377811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40044200000, + 43.73949200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR77661;FROTHPOTHR77651;FROTHPOTHR77641;FROTHPOTHR77631;FROTHPOTHR77621;FROTHPOTHR77611", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "ES/ SUPER U LINGOLSHEIM", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-10-04;2024-02-23", + "ref": "FR*SOD*S*OTHR*776*5*_*_;FR*SOD*S*OTHR*776*2*_*_;FR*SOD*S*OTHR*776*1*_*_;FR*SOD*S*OTHR*776*3*_*_;FR*SOD*S*OTHR*776*4*_*_;FR*SOD*S*OTHR*776*6*_*_", + "opening_hours": "24/7", + "network": "ES B2B", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69013597004, + 48.56349863267 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPR8PQPHRS5Y", + "ref": "R8PQPHRS5Y", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-08-05", + "description": "Argonay, Pace Arthur Lavy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13872910000, + 45.94507980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPTUNFILFNT4", + "start_date": "2020-06-21", + "description": "Aiguilles, Parking Hôpital;Réseau eborn/TUNFILFNT4", + "ref": "TUNFILFNT4;75011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86909500000, + 44.78191500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*389*9*_*_;FR*SOD*S*OTHR*389*7*_*_;FR*SOD*S*OTHR*389*6*_*_;FR*SOD*S*OTHR*389*16*_*_;FR*SOD*S*OTHR*389*14*_*_;FR*SOD*S*OTHR*389*12*_*_;FR*SOD*S*OTHR*389*11*_*_;FR*SOD*S*OTHR*389*1*_*_;FR*SOD*S*OTHR*389*10*_*_;FR*SOD*S*OTHR*389*13*_*_;FR*SOD*S*OTHR*389*15*_*_;FR*SOD*S*OTHR*389*2*_*_;FR*SOD*S*OTHR*389*3*_*_;FR*SOD*S*OTHR*389*4*_*_;FR*SOD*S*OTHR*389*5*_*_;FR*SOD*S*OTHR*389*8*_*_", + "start_date": "2022-05-18;2022-05-19;2022-04-25", + "opening_hours": "24/7", + "network": "EKOSPORT", + "ref:EU:EVSE": "FROTHPOTHR38981;FROTHPOTHR38971;FROTHPOTHR38931;FROTHPOTHR389161;FROTHPOTHR389151;FROTHPOTHR389141;FROTHPOTHR389121;FROTHPOTHR389111;FROTHPOTHR389101;FROTHPOTHR38911;FROTHPOTHR389131;FROTHPOTHR38921;FROTHPOTHR38941;FROTHPOTHR38951;FROTHPOTHR38961;FROTHPOTHR38991", + "operator:email": "sav@izivia.com", + "description": "EKOSPORT - SAINT-ALBAN-LEYSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95860800000, + 45.57325200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2465364101817966413", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/RP1ODR0UNU", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref": "346466" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44448000000, + 46.65340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Loudéac, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP30329", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75798146000, + 48.19322354000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WEWO1M3ZLV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5721781138338674783", + "ref": "935421", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51820400000, + 48.83244300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*TCB*P01859", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP01859", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "AMP | Avenue de Mazargues" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38789000000, + 43.26989000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5388746272249046054", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1017048", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLRKRB7F22BEUQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29980300000, + 48.56447000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS22E22206002", + "description": "Plouagat-Parking de La Grande Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00051500000, + 48.53617900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mazda - Brive - 22kW AC", + "start_date": "2021-01-05", + "ref": "50719", + "network": "PAROT AUTOMOTIVE - MAZDA BRIVE ", + "owner:ref:FR:SIREN": "349214825", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZMAE22AC50719", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48836440000, + 45.14751500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-08-23;2022-05-23;2022-05-24", + "description": "Tosso1_Wingles;MWingles_Parking_Ar;Mairie_Wingles", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE405;FRROSE346;FRROSE355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85351200000, + 50.49472500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MANTES-LA-VILLE - Place du marché", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78362003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71115500000, + 48.98008500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Meyrargues", + "capacity": "18", + "network": "Meyrargues", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE451652;FRIOYE451651;FRIOYE451610;FRIOYE451609;FRIOYE451607;FRIOYE451606;FRIOYE451605;FRIOYE451604;FRIOYE451601;FRIOYE451602;FRIOYE451603;FRIOYE451608;FRIOYE451611;FRIOYE451612;FRIOYE451653;FRIOYE451654;FRIOYE451655;FRIOYE451656", + "start_date": "2023-06-06", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE451656;FRIOYE451653;FRIOYE451652;FRIOYE451651;FRIOYE451610;FRIOYE451609;FRIOYE451607;FRIOYE451606;FRIOYE451605;FRIOYE451604;FRIOYE451601;FRIOYE451602;FRIOYE451603;FRIOYE451608;FRIOYE451611;FRIOYE451612;FRIOYE451654;FRIOYE451655", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49384100000, + 43.63236800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2024-05-27;2021-04-12", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "LAVAL - Rue Du Vieux Saint-Louis;OuestCharge - Diva Sp - Laval - Louis", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS53E53130003;FRS53P53130E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77107490000, + 48.07760500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLLIOURE - Place Du 8 Mai 1945 B02;COLLIOURE - Place Du 8 Mai 1945 B01", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-05-15;2016-12-18", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66053001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "network": "Reveo", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08342400000, + 42.52606300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20606660000, + 49.97146720000 + ], + [ + 1.20609980000, + 49.97146980000 + ], + [ + 1.20612980000, + 49.97146790000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Vimoutiers", + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE010802;FRIENE010801", + "network": "Vimoutiers", + "amenity": "charging_station", + "start_date": "2023-09-27", + "capacity": "4", + "operator:email": "support@iecharge.io", + "ref": "FRIENE010802;FRIENE010801", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19423802000, + 48.93977500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35093002B1", + "description": "DINARD - 3 rue raphael veil (Parking des Halles) ", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05825500000, + 48.63141600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-SAGE-001", + "description": "ST GERMAIN DU CORBEIS", + "ref:EU:EVSE": "FRS61P61397A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06538200000, + 48.42278200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892461", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJYET1MT29ZIY", + "ref:EU:EVSE": "FRFR1P3101693273982630009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06479300000, + 47.31288000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PLABEGEAUTAN", + "description": "Labège, Autan;Roulez Électrique En Haute-Garonne/Labegeautan", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-10-05", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "46546;Labegeautan", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53437000000, + 43.53060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92050001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-12-14", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "NANTERRE - Rue de Suresnes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21170110000, + 48.88545320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "HYUNDAI JEAN CAUVIN - 06130 - 2", + "amenity": "charging_station", + "start_date": "2022-09-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000519;FRCG0E000442;FRCG0E000431;FRCG0E000430;FRCG0E000432", + "operator:email": "info@chargeguru.com", + "description": "HYUNDAI JEAN CAUVIN - 06130 - 2", + "ref": "FRCG0E000519;FRCG0E000442;FRCG0E000431;FRCG0E000430;FRCG0E000432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95425500000, + 43.63326100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "BEAULIEU-SUR-MER - PORT DE PLAISANCE", + "ref:EU:EVSE": "FRM06PNICE17622;FRM06PNICE17621", + "start_date": "2023-05-23", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*176*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33491107839, + 43.70855853038 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Mezin | Parking Piscine", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "1ac9b33a-4065-5f9d-90ea-fbe58479e572", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26179200000, + 44.05667900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE31411;FRSIGPSIGE31412", + "ref": "FR*SOD*S*SIGE*314*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE JEAN MERMOZ - MAISONS-LAFFITTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-01", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14171100000, + 48.94789500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS226864;FRBMPS226865;FRBMPS226863;FRBMPS226866", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "226863;226866;226865;226864", + "charging_station:output": "22 kW;150 kW", + "description": "Bump - Auchan Supermarché - BORMES LES MIMOSAS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35058930000, + 43.13794080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA FERE", + "ref": "LFR3301EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3301EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35206000000, + 49.66183800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "fa9148a9-7abb-5d02-9124-bbf5c5958641", + "description": "MOBIVE | Cornil | Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69195800000, + 45.21153600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Les Ulis - Rue de l'Aube", + "ref": "e05b66b1-19a3-5987-b85f-0a26be59262d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17328600000, + 48.68605400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP78000VERARMES", + "description": "INDEPENDANCE ORANGERIE - VERSAILLES", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P78000*VER*ARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12039200000, + 48.80144500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4282EVCP02;LFR4282EVCP01", + "capacity": "4", + "ref": "LFR4282EVCP02;LFR4282EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "MARSEILLE LES OLIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44343500000, + 43.32445800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMAGE", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW;50 kW;100 kW", + "start_date": "2022-12-11", + "capacity": "11", + "description": "Intermarché - Agen", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "50 kW;100 kW;22 kW;24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61891350182, + 44.18261116434 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ntjbdngwvua;Bellenaves, Champ de foire", + "ref:EU:EVSE": "FREBNPNTJBDNGWVUA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "ntjbdngwvua;37615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08009000000, + 46.19850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "e-Totem - Thionville Square René Schwartz", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP57672D", + "opening_hours": "24/7", + "start_date": "2024-04-10", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP57672D", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16956050000, + 49.36190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking Saint-Malo Esplanade Bourse P4 - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E35288006", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02470000000, + 48.64630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-04", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Villevieille", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT302501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09278900000, + 43.80513100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPMHD5MKUFAK", + "ref": "MHD5MKUFAK", + "capacity": "2", + "description": "Panissieres, Parking route de cottance", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33678660000, + 45.79286620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-05", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "INTERMARCHE - NANTES", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR50712;FROTHPOTHR50711", + "ref": "FR*SOD*S*OTHR*507*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55145200000, + 47.22469000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "402716500", + "ref": "FRCPIE6715655", + "capacity": "2", + "amenity": "charging_station", + "operator": "Charge Point", + "start_date": "2023-04-25", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6715655", + "charging_station:output": "22 kW", + "description": "Intermarché Saint Jeoire", + "operator:email": "support.eu@chargepoint.com", + "network": "Intermarché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46190334954, + 46.13522476921 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AYAHQAUM1C", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7639544154282175202", + "opening_hours": "24/7", + "ref": "398831", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78942200000, + 50.27924300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10064662;FRUBIE10057997", + "description": "Beaulieu H.L.M. Harfleur", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19797100000, + 49.51343800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/OAKCAJ6OZP", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2917829860560742558", + "ref": "741027", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77630500000, + 49.52149100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-01", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - 76 rue Alfred Dumeril", + "capacity": "4", + "ref:EU:EVSE": "FRTLSE31555046", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45049000000, + 43.59183000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "370139", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1944013309800990477", + "description": "Freshmile France/PA2YDVV83M", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24076000000, + 48.90030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLV6OVEFPRCY3P", + "ref:EU:EVSE": "FRS14P4132739352707091815", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1084815", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27778500000, + 49.24361600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12077001", + "description": "CORNUS - Parking De La Vayssière", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17895400000, + 43.90460400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA3P2879787473411452575", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "694037", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLJJ6GOXB0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76877000000, + 43.65077300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-08;2021-04-07", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49220001;FRS49P49220A", + "charging_station:output": "22 kW", + "description": "MORANNES - Rue de la Croix Verte;OuestCharge - Diva Sp - Morannes - Croix Verte", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41799300000, + 47.74505300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref:EU:EVSE": "FRS70PFAUCOGNEYMER", + "ref": "65018", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIED70/Faucogneymer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56167000000, + 47.84130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH14E59536001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINTE MARIE CAPPEL - La Place", + "network": "pass pass électrique", + "start_date": "2023-07-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50888534483, + 50.78380334694 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E214046;FRS37E214048", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - LARCAY - Rue du 08 Mai 1945", + "network": "MODULO - LARCAY - Rue du 08 Mai 1945", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E214046;FRS37E214048", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77859839000, + 47.36839944000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "ref": "518375", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63263*A", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63263A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01327100000, + 45.78400100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FERRIÈRE-LA-GRANDE - Rue Roger Salengro", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59230001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99437200000, + 50.25375000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34003001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-27", + "description": "AGDE CLAPE - Rue Du Gouverneur", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51801944444, + 43.28560830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-12", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CHEVILLY-LARUE - Parking de la Piscine", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94021005", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35927620000, + 48.76809620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE29222;FRM06PNICE29221;FRM06PNICE29211;FRM06PNICE29212", + "capacity": "2", + "start_date": "2023-11-30;2023-11-29", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CAGNES-SUR-MER - BIR HAKEIM", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*292*1*_*_;FR*SOD*S*NICE*292*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15187361422, + 43.65722462788 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Les Eyzies de Tayac Sireuil | Avenue de le Prehistoire", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "124d0eb7-1c77-51dd-bb22-fb2ca7ad8951", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01121500000, + 44.93870200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE41911;FRSIGPSIGE41912", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*419*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 2 AVENUE DE GRAFENBERG - PLACE JEAN MOULIN - PUISEUX-EN-FRANCE", + "start_date": "2023-05-09", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50295400000, + 49.05923200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9990081;FRALLEGO9990072;FRALLEGO9004152;FRALLEGO9004151;FRALLEGO9004072;FRALLEGO9004071;FRALLEGO9990071;FRALLEGO9990082", + "start_date": "2022-06-22", + "capacity": "8", + "description": "Allego Carrefour Venette", + "amenity": "charging_station", + "network": "Allego Carrefour Venette", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9990081;FRALLEGO9990072;FRALLEGO9004152;FRALLEGO9004151;FRALLEGO9004072;FRALLEGO9004071;FRALLEGO9990071;FRALLEGO9990082", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78093170000, + 49.40809630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3920EVCP01;LFR3920EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "SISTERON - Genets", + "ref": "LFR3920EVCP01;LFR3920EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91089600000, + 44.23602900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Sare | Parking Annexe de la Mairie", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7273c25a-a321-57bc-8480-c19efe39809f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57940100000, + 43.31341900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "52__COVE", + "amenity": "charging_station", + "ref": "b1973d8a-4acf-5e5a-912b-463ce12b32aa", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARPENTRAS - Rue de Château Dubesson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04111400000, + 44.03389200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA05E78071001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BOINVILLE-LE-GAILLARD - Salle polyvalente" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87093200000, + 48.49268780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3198EVCP02;LFR3198EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3198EVCP02;LFR3198EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "CHATEAUBERNARD Angoulême" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29897000000, + 45.68305400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMSML", + "charging_station:output": "60 kW;50 kW;22 kW", + "description": "Intermarché - Soumoulou", + "socket:type2_combo:output": "60 kW", + "start_date": "2022-08-16", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18379000000, + 43.26457000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lucinges, Place de la Vignule;Réseau eborn/PIDK70DETG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "PIDK70DETG;85772", + "ref:EU:EVSE": "FREBNPPIDK70DETG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31765000000, + 46.19112000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Le safari Etréchy", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP91226A", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP91226A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19606370228, + 48.48625886012 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PCORSTM", + "owner:ref:FR:SIREN": "891118473", + "description": "Cora - Sainte-Marguerite", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "22 kW;50 kW;100 kW;187.5 kW", + "opening_hours": "24/7", + "start_date": "2023-03-14;2023-05-18", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96974800000, + 48.27195430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT801201", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-06-18", + "description": "Carrefour Market - Rue Moulins", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66042300000, + 50.27513200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "ref:EU:EVSE": "FRESEPS42207AE", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB Royet de la Bastie", + "opening_hours": "24/7", + "ref": "FRESEPS42207AE", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50516200000, + 45.46712200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-05-10;2021-07-09;2021-07-08", + "description": "CNPE PALUEL - PARKING CIP;CNPE PALUEL - PARKING SUD EXTERIEUR", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG24251;FROTHPIZIG242281;FROTHPIZIG242261;FROTHPIZIG242251;FROTHPIZIG242241;FROTHPIZIG242231;FROTHPIZIG242211;FROTHPIZIG242181;FROTHPIZIG242141;FROTHPIZIG242121;FROTHPIZIG242111;FROTHPIZIG24211;FROTHPIZIG24191;FROTHPIZIG24141;FROTHPIZIG241101;FROTHPIZIG24111;FROTHPIZIG24151;FROTHPIZIG24161;FROTHPIZIG24171;FROTHPIZIG242101;FROTHPIZIG242131;FROTHPIZIG242151;FROTHPIZIG242161;FROTHPIZIG242171;FROTHPIZIG242191;FROTHPIZIG242201;FROTHPIZIG24221;FROTHPIZIG242221;FROTHPIZIG242271;FROTHPIZIG24231;FROTHPIZIG24241;FROTHPIZIG24261;FROTHPIZIG24271;FROTHPIZIG24281;FROTHPIZIG24291", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IZIG*242*5*_*_;FR*SOD*S*IZIG*242*3*_*_;FR*SOD*S*IZIG*242*28*_*_;FR*SOD*S*IZIG*242*27*_*_;FR*SOD*S*IZIG*242*26*_*_;FR*SOD*S*IZIG*242*23*_*_;FR*SOD*S*IZIG*242*22*_*_;FR*SOD*S*IZIG*242*21*_*_;FR*SOD*S*IZIG*242*2*_*_;FR*SOD*S*IZIG*242*20*_*_;FR*SOD*S*IZIG*242*19*_*_;FR*SOD*S*IZIG*242*16*_*_;FR*SOD*S*IZIG*242*14*_*_;FR*SOD*S*IZIG*242*11*_*_;FR*SOD*S*IZIG*242*10*_*_;FR*SOD*S*IZIG*241*7*_*_;FR*SOD*S*IZIG*241*4*_*_;FR*SOD*S*IZIG*241*10*_*_;FR*SOD*S*IZIG*241*1*_*_;FR*SOD*S*IZIG*241*5*_*_;FR*SOD*S*IZIG*241*6*_*_;FR*SOD*S*IZIG*241*9*_*_;FR*SOD*S*IZIG*242*1*_*_;FR*SOD*S*IZIG*242*12*_*_;FR*SOD*S*IZIG*242*13*_*_;FR*SOD*S*IZIG*242*15*_*_;FR*SOD*S*IZIG*242*17*_*_;FR*SOD*S*IZIG*242*18*_*_;FR*SOD*S*IZIG*242*24*_*_;FR*SOD*S*IZIG*242*25*_*_;FR*SOD*S*IZIG*242*4*_*_;FR*SOD*S*IZIG*242*6*_*_;FR*SOD*S*IZIG*242*7*_*_;FR*SOD*S*IZIG*242*8*_*_;FR*SOD*S*IZIG*242*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63472000000, + 49.85863000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "description": "LBG1-1 BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6836725;FRCPIE6837515", + "start_date": "2022-11-10", + "network": "LBG1-1 BORNE 2", + "ref:EU:EVSE": "FRCPIE6836725;FRCPIE6837515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08451200000, + 45.93498700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P975100489339437846", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "892470", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLK6GA1U3GNYU0", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73294400000, + 48.53479500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL MAUREPAS", + "start_date": "2024-03-20", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122023", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92196900000, + 48.76105000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/OEKE1PI8DM", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "574574", + "ref:EU:EVSE": "FRFR1P4039146645249209287", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00959200000, + 50.61748300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "description": "Tesla Supercharger Dijon, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP16734", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04348475000, + 47.27174890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "242380", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/EXBJBK", + "ref:EU:EVSE": "FRFR1PEXBJBK", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33274000000, + 48.87850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/MEXJIN27J7", + "ref:EU:EVSE": "FRS14P3013427366490305460", + "ref": "461829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90539700000, + 49.30886500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "St-Pierre-De-Mezoargues, Pl. Georges de Régis", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS13PKUZGIQ9EMY", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64866100000, + 43.85901200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "network": "WAAT", + "ref": "1128126", + "description": "WAAT/FRWATLDP3NV8JO", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P327014250088693150", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03606600000, + 42.90783600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P500871", + "description": "BRIX - Le Beauparlé", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-08-07", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59030010000, + 49.56359530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-15", + "ref:EU:EVSE": "FRS81E8114000212;FRS81E8114000211;FRS81E8114000221;FRS81E8114000222", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "LAVAUR - Place Stalingrad", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81466149576, + 43.69834557683 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681823;531681824;531681825;531681826;531681827;531681828;531681829;531681830", + "description": "RELAIS PARC CHANOT", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "start_date": "2024-06-26", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF059298", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF059298" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39378200000, + 43.27427900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHANAC - Allée Du 19 Mars 1962", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48039001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34666400000, + 44.46541900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Limerzel - Place de L'église", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-12", + "ref:EU:EVSE": "FRS56PYHQTBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35359700000, + 47.63652500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAZIERS - Rue Paul Langevin", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59654001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10211000000, + 50.38736700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2925900", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Pol de Leon-Rue Pen Ar Pont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98884600000, + 48.67831400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/EKLYRW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PEKLYRW", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "21892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.13333000000, + 47.81780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346051931;FRLMSE12346051932;FRLMSE12346051941;FRLMSE12346051942", + "opening_hours": "24/7", + "start_date": "2016-12-01", + "network": "SOREGIES MOBILITES", + "description": "MAUPREVOIR-1-1;MAUPREVOIR-1-2", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B065" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51656000000, + 46.17256900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93014A", + "ref": "446948", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P93014*A;Metropolis - Proximité - Clichy-sous-Bois - Place 11 Novembre 1918", + "capacity": "4", + "start_date": "2021-10-27", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646000000, + 48.91039100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "description": "BRUNOY - Place De L'arrivée", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE91114001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50667162514, + 48.70013740976 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Atlante/FRATLFR00292", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "1035354", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP7846036262810941694" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30599000000, + 43.60483900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Dardilly", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000083698", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76399100000, + 45.80710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-04-15", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM59E59017001", + "charging_station:output": "11 kW", + "description": "ARMENTIERES - Rue de Comines", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88090180000, + 50.68070130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85191012", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-13", + "description": "LA ROCHE-SUR-YON - Parking Sydev" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42291000000, + 46.66445900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSLIBNE", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW", + "description": "LIBOURNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22019800000, + 44.90082900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-02", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "ref": "FR*SOD*S*MAMP*37*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "description": "IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE - MASTER", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZMPMAMP3711;FRIZMPMAMP3712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31658000000, + 43.35928000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMATGRN", + "network": "Power Dot France", + "start_date": "2023-12-07", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Match - Grenay", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74084961860, + 50.44649227918 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2023-03-01", + "description": "Saint-Mandrier-Sur-Mer, Chemin Des Aubépines", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGM4SFCKU5P", + "network": "eborn", + "ref": "GM4SFCKU5P", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92742900000, + 43.07506800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "description": "EVzen/EE210B14-BC4F-4B30-854D-64A70331E487", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "1114107", + "ref:EU:EVSE": "FREVZP8850620325842732014", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38977400000, + 46.70669400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBIAUR", + "description": "Ibis - Auray", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-04-26", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01335216141, + 47.66273653249 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPHMQVVL", + "description": "Saint-Martin-En-Vercors, Place du Monument au;Réseau eborn/HMQVVL", + "start_date": "2020-06-12", + "ref": "HMQVVL;31942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44251000000, + 45.02020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP30156A", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "FRETIP30156A", + "operator:email": "contact@e-totem.fr", + "description": "e-totem - IBIS NIMES EST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42008700000, + 43.85741100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref": "FR*SOD*S*OTHR*197*4*_*_;FR*SOD*S*OTHR*197*3*_*_;FR*SOD*S*OTHR*197*1*_*_;FR*SOD*S*OTHR*197*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR19741;FROTHPOTHR19731;FROTHPOTHR19721;FROTHPOTHR19711", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U - GEMOZAC", + "start_date": "2021-06-21", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67862100000, + 45.57528100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-11-27", + "owner:ref:FR:SIREN": "200056232", + "ref:EU:EVSE": "FRCPSPCAPS2511;FRCPSPCAPS2512", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*25*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "SACLAY - STADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16841700000, + 48.73061400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3386284909266241770", + "operator:email": "roaming@freshmile.com", + "ref": "674273", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WSZEY4Y1GS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521000000, + 43.53536800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref:EU:EVSE": "FRVISP1133590033329550798", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "capacity": "1", + "description": "ENRGETICA/468c4999-e8e4-4530-a785-b3f8abe59323", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "754176", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75359400000, + 44.28849300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/VAOKV8QVO0", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "972038", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRFR1P3252461661739440520", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49416600000, + 50.36284700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "ref": "1000081554;1000081560", + "capacity": "1;2", + "ref:EU:EVSE": "FRSWSE1000081560;FRSWSE1000081554", + "charging_station:output": "24 kW;50 kW;22 kW", + "socket:type2_combo:output": "50 kW;24 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "ABB T54 VW Albertville;ABB T24 VW Albertville", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40793200000, + 45.66286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9169237008329062684", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521309", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JSFZN0RULV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07493200000, + 43.56341800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Gevrey Chambertin - Place des Marronniers", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMAIRIEGEVREY212206", + "operator:email": "support@driveco.com", + "start_date": "2023-02-09", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97571100000, + 47.22770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "start_date": "2022-06-01", + "charging_station:output": "18 kW", + "description": "LANGEY", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS28E137317;FRS28E137316", + "ref": "FRS28E137317;FRS28E137316", + "capacity": "1", + "owner:ref:FR:SIREN": "200080869", + "operator:email": "lionel.chauvet@energie28.fr", + "opening_hours": "24/7", + "network": "FR*S28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18617300000, + 48.04402200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "lesjardinsdelasud@orange.fr", + "start_date": "2021-07-09", + "owner:ref:FR:SIREN": "529349599", + "opening_hours": "Mo-Sa 08:00-20:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "22 kW", + "network": "Les Jardins de la Sud", + "description": "Parking Jardins de la Sud", + "ref": "EVB-P2020517", + "operator": "DE LEPERVANCHE Céline" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19743601178, + 44.99300423181 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "39794", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/UMJPQGG6NH", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2500552369036893861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08103000000, + 48.29427100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLSTZOWBN0", + "ref:EU:EVSE": "FRWATP7714798374400513143", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "801984", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05748800000, + 47.33826500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "HAUTEVILLE SUR MER - Place des Robans", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50590001", + "start_date": "2016-08-18", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55680280000, + 48.97748890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TREBAS - Impasse De La Gare", + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81303001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47871100000, + 43.94439200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "901573139", + "start_date": "2023-01-09", + "ref:EU:EVSE": "FRIPKPCDM", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRIPKPCDM", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71557344223, + 48.98915326500 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2023-07-25", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS49P49069B", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "50 kW;43 kW", + "description": "OuestCharge - ePremium - Oree-d Anjou - Mauges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18914400000, + 47.28610600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/H6Z4SAH2KZ", + "ref:EU:EVSE": "FRS60P8444150966818874636", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "346598" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60310700000, + 49.30745800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH13E62119008", + "operator": "Bouygues E&S", + "description": "BETHUNE - Boulevard Victor Hugo", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64310218465, + 50.53001365151 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30174001", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "MONTAREN SAINT MEDIERS - Parking Ecole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38082900000, + 44.02800900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/URGRZH", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PURGRZH", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "24745", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00925000000, + 47.77760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346396611;FRLMSE12346396621", + "start_date": "2017-10-18", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ANGLIERS-1-1;ANGLIERS-1-2", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B003", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11231600000, + 46.94514800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - ePremium - Vincennes - Petit Parc", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42866225000, + 48.84385680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*125*1*_*_", + "capacity": "2", + "start_date": "2021-02-10", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE12512;FRSIGPSIGE12511", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - PARKING JACOBSEN - COURTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60414900000, + 48.91677300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ORVILLIERS - Mairie", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E78474001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63998000000, + 48.85853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "24;25;22;23", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel Campanile Nevers", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "909073386;909073385;909073384;909073387", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89696188", + "start_date": "2024-03-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15035000000, + 47.01554100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "7171aa1e-eac9-5beb-8a43-d67edf33eef1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Merignac | Impasse des Caducées | Pôle Médical", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08231600000, + 45.69619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CITROEN - CERANS FOULLETOURTE", + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE72CABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-11-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07338900000, + 47.82471400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Romorantin", + "ref": "FRALLEGO9005562;FRALLEGO9005561;FRALLEGO9003272;FRALLEGO9003271;FRALLEGO9002532;FRALLEGO9002531;FRALLEGO9001932;FRALLEGO9001931;FRALLEGO9002533;FRALLEGO9005501;FRALLEGO9005502", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9005562;FRALLEGO9005561;FRALLEGO9003272;FRALLEGO9003271;FRALLEGO9002532;FRALLEGO9002531;FRALLEGO9001932;FRALLEGO9001931;FRALLEGO9002533;FRALLEGO9005501;FRALLEGO9005502", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Romorantin", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74914500000, + 47.33818900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "MOLSHEIM - Route Ecospace", + "ref": "LFR3646EVCP03;LFR3646EVCP01;LFR3646EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3646EVCP01;LFR3646EVCP02;LFR3646EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50001400000, + 48.53290600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-22", + "description": "SEILH - Allée De L'Europe", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM31E31541001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34830200000, + 43.69596500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/UUKLIN1F3L", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPUUKLIN1F3L", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30488" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61107200000, + 45.92134600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "419118", + "ref:EU:EVSE": "FRFR1P2132187202004543642", + "network": "Freshmile France", + "description": "Freshmile France/MR6MQ1MPFP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64044600000, + 44.77402100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-26;2020-06-04;2023-03-01;2020-06-17", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "24", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E75109003;FRP07E751090031;FRP07E751090032", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Montholon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34592100000, + 48.87683100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/BJ9ZXKARJE", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP1728374236461488908", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "749418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07095900000, + 45.09490300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "176 kW;22 kW", + "opening_hours": "Fr,Su,Sa,We,Tu,Mo,Th 08:00-18:00", + "network": "Road", + "socket:type2_combo:output": "176 kW", + "amenity": "charging_station", + "ref": "1072137", + "description": "Road/6630e95dc8c612001cff1739", + "capacity": "3", + "ref:EU:EVSE": "FREFLP2166377980678343454", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22036800000, + 47.77557600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Douai - EFFIA", + "ref:EU:EVSE": "FRP01E59178001", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08942970000, + 50.36959190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6610415;FRCPIE6610335", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FRCPIE6610415;FRCPIE6610335", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "STATION SUPER U BELLEVIGNY DC", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "STATION SUPER U BELLEVIGNY DC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42936947000, + 46.77610545000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPWVOTTGZPHU", + "ref": "30548;WVOTTGZPHU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/WVOTTGZPHU;Taninges, Parking Salle des Fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59052000000, + 46.10580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1182078", + "description": "WAAT/s570523", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P766851720406662265", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40499300000, + 43.29333700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/HELMIXFOE8", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "559718", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9159555600660489143", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43721800000, + 42.62085800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 08:00-12:00", + "ref": "FRTCBP00691", + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP00691", + "charging_station:output": "22 kW", + "description": "PSA Agents France", + "owner:ref:FR:SIREN": "811425065", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-09-05", + "network": "DA COSTA AUTOMOBILES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04155559145, + 47.50852503293 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4851520490264731938", + "opening_hours": "24/7", + "description": "Freshmile/ZZZQYISOQJ", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529868" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54619000000, + 50.73808500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPGCAHYUNDAI355101", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "description": "Hyundai - GCH - Rennes", + "amenity": "charging_station", + "start_date": "2022-10-07;2022-11-10", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59829200000, + 48.11419000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2905300", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "description": "Le Faou-Route de Rumengol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.17674700000, + 48.29395300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P9027376704536871998", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/LLKGXP4CHU0PTM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892845" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03045800000, + 48.33594400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "418658290", + "ref": "f8daa8b7-a2fd-40e7-af9c-2662df48ac61", + "network": "Hôtel & Restaurant ARGI-EDER", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Argi-Eder - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC121760", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49579278000, + 43.30730570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E129232;FRS08E129231", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS08E129232;FRS08E129231", + "operator": "Modulo", + "description": "MODULO - LAUNOIS SUR VENCE - Rue Louis Joly", + "opening_hours": "24/7", + "start_date": "2022-04-23", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LAUNOIS SUR VENCE - Rue Louis Joly" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54027000000, + 49.65470800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/domartetoile", + "ref": "64784", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PDOMARTETOILE", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12083000000, + 50.07410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - TROYES SAINT ANDRE", + "start_date": "2024-07-10", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*200*2*_*_;FR*SOD*S*FAST*200*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST20022;FRIZFPFAST20021;FRIZFPFAST20011;FRIZFPFAST20012;FRIZFPFAST20013;FRIZFPFAST20023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04294000000, + 48.27907000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-23;2024-04-29;2024-04-18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44151B;FRS44E44151002;FRS44E0440126", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAINT-ANDRE-DES-EAUX - Rue Des Marais;OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Marais", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30075500000, + 47.31911300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77031001;FRS77P77031A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-25;2016-06-22", + "description": "BERNAY-VILBERT - Avenue Du Général Leclerc;Bernay-Vilbert - Salle des fêtes", + "ref": "01F5ZAKH617HMA9QVJ43VQ9F5W", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93824600000, + 48.67509100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Lotissement MAEWA", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGOBPMAEWAPETITPEROU", + "start_date": "2024-05-31", + "network": "GMOB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "911886703", + "operator:email": "contact@gmob.fr", + "ref": "4d99748f-3968-42f4-b1e8-553bd6456ba9", + "operator": "G-MOB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.51336700000, + 16.25920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LIGUEIL - Allée des Cyclamens", + "description": "MODULO - LIGUEIL - Allée des Cyclamens", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219716;FRS37E219713", + "ref": "FRS37E219716;FRS37E219713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82033100000, + 47.04247600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "28484", + "ref:EU:EVSE": "FRS56PGJHPTX", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/GJHPTX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64181000000, + 47.83800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "ref": "FRG10P45293A", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRG10P45293A", + "network": "AGGLOMERATION MONTARGOISE - SAINT MAURICE SUR FESSARD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "AGGLOMERATION MONTARGOISE - SAINT MAURICE SUR FESSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61870095502, + 47.99189111194 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Sainte Bazeille | Place Docteur Belot | Droite", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "11d145d5-eed0-51e0-a444-5d772db5bfa4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09544800000, + 44.53030800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 15 RUE DE VERDUN - SURESNES", + "ref:EU:EVSE": "FRSIGPSIGE24312;FRSIGPSIGE24311", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-04-06", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*243*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22766000000, + 48.87125000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "21813", + "socket:type2_combo:output": "50 kW;44 kW", + "capacity": "3", + "description": "Move In Pure/XRAUSA", + "ref:EU:EVSE": "FRCN1PXRAUSA", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28620000000, + 45.83740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "971999", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P5466525064391075537", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/LLNOOAH6V28DL6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41642500000, + 46.11266800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saujon | Place Richelieu", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "db308fbd-93e2-5d4d-8d89-7fb71432967c", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92546400000, + 45.67624400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "ref:EU:EVSE": "FRSE1PSE91EPBA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Piscine Pierre Bonningue - Epinay sous Senart", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52418500000, + 48.70172300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CDG - Parking P1 - Niveau bleu", + "ref:EU:EVSE": "FRADPE772820012;FRADPE77282001;FRADPE772820011", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2022-11-30", + "network": "ADP Groupe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54144200000, + 49.01387000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FENOUILLET - ROUTE DE PARIS", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3778EVCP01", + "ref": "LFR3778EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40733200000, + 43.68084700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRENOBLE - Rue Marceau", + "ref:EU:EVSE": "FRM38E38185028", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72189420000, + 45.18297870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHÂTEAU-GAILLARD - Rue Jean Mermoz", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA15E01089001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31283200000, + 45.97618400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6221706233711528431", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/SW0I6KKZAI", + "opening_hours": "24/7", + "ref": "479223", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29817600000, + 48.89450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-03-21", + "capacity": "4", + "description": "hotelF1 - Solaize", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PACCSOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82380747898, + 45.63762421376 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "WKHYWYQLE4;75266", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPWKHYWYQLE4", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/WKHYWYQLE4;Yvoire, Parking Pré Ponce" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32507200000, + 46.36785100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-06-19", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "socket:type2_combo:output": "50 kW;300 kW", + "ref:EU:EVSE": "FRELCPDIEAU", + "description": "Dieppe - Auchan", + "opening_hours": "24/7", + "charging_station:output": "50 kW;300 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07772800000, + 49.90905500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E94071003", + "operator": "Bouygues E&S", + "start_date": "2023-09-06", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Sucy-en-Brie village - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52240000000, + 48.77012200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR GRESY", + "ref": "FRCPIE6664205", + "charging_station:output": "22 kW", + "description": "SONEPAR GRESY", + "operator:email": "info@chargepoint.com", + "start_date": "2022-12-12", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6664205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92147000000, + 45.71605200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPJJWKFPHI8F", + "ref": "JJWKFPHI8F", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "description": "Ancenis Saint Géron , Tape à l'Œil 1", + "start_date": "2023-03-08", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19816100000, + 47.37428090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX20*05", + "description": "Paris | Boulevard de Charonne 158", + "start_date": "2021-06-23", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX2005", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39414330000, + 48.85691510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6475395475908052816", + "capacity": "2", + "description": "Freshmile France/LLO5I1CC02NX2S", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "971939" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18512900000, + 48.11285400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "ref:EU:EVSE": "FRV75PPX0403", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "3", + "ref": "FR*V75*PPX04*03", + "opening_hours": "24/7", + "description": "Paris | Rue Malher 13", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36137800000, + 48.85648000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "377441", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2148334040803677144", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/EOGRMLSQTW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12840500000, + 48.65873700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-16", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:30, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-18:30, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD111001", + "capacity": "4", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Ford - Narbonne", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97965800000, + 43.15472300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Saint Agathon-Rue Hent Meur (parking salle des sports)", + "ref:EU:EVSE": "FRS22E22272001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10447900000, + 48.55711000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "PORTEL DES CORBIERES - Chemin Des Platrieres Parking Terra Vinea", + "ref:EU:EVSE": "FRS11E11295002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92809800000, + 43.05165900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZTLE22AC60302;FRZTLE22AC57831;FRZTLE22AC57830;FRZTLE22AC60301;FRZTLE24DC63446", + "description": "Toyota - Annemasse - 22kW AC D ;Toyota - Annemasse - 22kW AC G ;Toyota - Annemasse - 24kW DC ", + "ref": "60302;57831;57830;60301;63446", + "network": "TOYOTA ANNEMASSE - DEGENEVE;TOYOTA ANNEMASSE - DEGENEVE", + "start_date": "2021-04-16;2021-05-04;2021-06-16", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "owner:ref:FR:SIREN": "796680668", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21747830000, + 46.18586770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/LXINTQKPIH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P5298145658975606567", + "charging_station:output": "22 kW", + "ref": "892911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73126900000, + 48.48487700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "64808", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/nouvionmairie", + "ref:EU:EVSE": "FRS80PNOUVIONMAIRIE", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77945000000, + 50.21160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - GRAND FORT PHILIPPE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST7513;FRIZFPFAST7512;FRIZFPFAST7511", + "ref": "FR*SOD*S*FAST*75*1*_*_", + "start_date": "2024-02-07", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11344400000, + 50.98950500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "NORT-SUR-ERDRE - Place Du Champ De Foire;OuestCharge - Diva Sp - Nort-Sur-Erdre - Foire", + "start_date": "2021-04-02;2024-05-02", + "ref:EU:EVSE": "FRS44P44110B;FRS44E44110002", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50120000000, + 47.43769400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "start_date": "2023-05-22;2016-08-31", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Mauregard;MAUREGARD - Allée Du Château", + "ref": "01F5ZAKH61Z5005NWZFCN4S2YP", + "ref:EU:EVSE": "FRS77E77282001;FRS77P77282A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58167900000, + 49.03389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "ARQUES - Rue Henri Puypes", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62040001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29579900000, + 50.73174700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "MODULO - LUZILLE - Pl. du 8 Mai", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-11-13", + "ref": "FRS37E221323;FRS37E221326", + "ref:EU:EVSE": "FRS37E221323;FRS37E221326", + "description": "MODULO - LUZILLE - Pl. du 8 Mai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06085700000, + 47.26099700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BELLEVILLE SUR MEUSE - Pl. Maginot", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - BELLEVILLE SUR MEUSE - Pl. Maginot", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E66276;FRS55E66277", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66276;FRS55E66277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37993900000, + 49.17532500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON12222;FRGLYPLYON12221;FRGLYPLYON12211;FRGLYPLYON12212", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*122*1*_*_;FR*SOD*S*LYON*122*2*_*_", + "description": "LY808 - GRANGE BLANCHE - BULLUKIAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87595800000, + 45.74298500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HOUPLIN-ANCOISNE - Rue Pasteur", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5911601", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59116*01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00015400000, + 50.56156900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Jaguar Land Rover - Manosque - Churn", + "ref:EU:EVSE": "FRSSDPJLRSVAMANOSQUE041301", + "charging_station:output": "7.36 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84051900000, + 43.86420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6567135", + "network": "SONEPAR CONNECT MARCQ-EN-BAREUL", + "description": "SONEPAR CONNECT MARCQ-EN-BAREUL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6567135", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11554200000, + 50.65380500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Leclerc/ZYKZJX4FHI", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P5270684562917770556", + "ref": "454386", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07830100000, + 47.64704200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Francs | Mairie", + "operator": "197__SDEEG33", + "ref": "8fd5d831-7fe2-53ba-b54a-d331978b25b9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00703300000, + 44.94543100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "76a588dc-9f76-5c44-bd1e-a4ce2e3ba230", + "description": "Yerres - Rue Raymond Poincaré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49990400000, + 48.72169000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego NISSAN LAON", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-07-28", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO0000311", + "description": "Allego NISSAN LAON", + "ref": "FRALLEGO0000311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65660000000, + 49.57927200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR2491EVCP02;LFR2491EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "ANDUZE Gard", + "ref:EU:EVSE": "LFR2491EVCP02;LFR2491EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97288700000, + 44.06187300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-MARTIN-VESUBIE - PARKING MAIRIE", + "start_date": "2019-11-26", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*82*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE8212;FRM06PNICE8211", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25649400000, + 44.07036600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ21311;FRA16PWIIZ21312", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "ROQUEBRUNE-SUR-ARGENS - PARKING DES DOUANES", + "amenity": "charging_station", + "start_date": "2023-07-18", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*213*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63861000000, + 43.44569600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/HV7UHB3KKC", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2653149978340509264", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "370112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92990000000, + 49.51772000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Mon Brico - Bressuire", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBRBRE", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48134555271, + 46.83295251333 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "492084;CMTC5TQSOW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPCMTC5TQSOW;FREBNP6973795629935904959", + "description": "Huez, Quartier Vieil Alpe;Réseau eborn/CMTC5TQSOW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06444000000, + 45.09059000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARF - Bornes Publiques/0B1B7295-2206-42B1-8951-22521F6E8E76", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP667365660507639672", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "626567" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44416000000, + 43.88006000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2024-01-03", + "description": "METZ- Saint Thiebault", + "ref:EU:EVSE": "FRP07E57463001;FRP07E574630012;FRP07E574630011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17846100000, + 49.11253200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sainte-Tulle, Place du Théatre;Réseau eborn/DBC1X2LWNF", + "ref": "78657;DBC1X2LWNF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDBC1X2LWNF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76524700000, + 43.78668700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "description": "Road/65e0563691127b001c5ab699", + "ref:EU:EVSE": "FREFLP1160179357251099784", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW", + "ref": "1024368", + "operator:email": "roaming-dev@road.io", + "opening_hours": "Fr,Sa,Su,Mo,Tu,Th,We 08:00-18:00", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53426700000, + 45.59045300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-06-23", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP121023", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Kyriad Torcy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65753100000, + 48.83873400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TJPREQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "232513", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PTJPREQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32317000000, + 50.37870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1118", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "ref": "FR*V75*PPX11*18", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | avenue de la République 105", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38622430000, + 48.86322210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1009125", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CZWNSB", + "ref:EU:EVSE": "FRFR1P7034760193480323939", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.50020000000, + -20.89060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 07:00-12:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2022-03-03;2022-03-10", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPGSVISTVICTORET137301", + "operator:email": "support@driveco.com", + "description": "GSVI - Marseille", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23079700000, + 43.41872200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PCARSIXMALBROUCK", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900067", + "opening_hours": "24/7", + "network": "SIEGE27", + "start_date": "2016-10-06", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67357600000, + 49.15323800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21425*A", + "network": "SICECO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS21P21425A", + "ref": "232348", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33941000000, + 47.62687400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Seymaborne", + "description": "SAINT-GERMAIN-EN-LAYE - Parking des Rotondes", + "ref:EU:EVSE": "FRY03E78551002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06877000000, + 48.89459100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@qwello.fr", + "operator": "Qwello", + "capacity": "2", + "description": "Place du Relais", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-03", + "owner:ref:FR:SIREN": "913705380", + "network": "Qwello", + "ref": "FRQWCE7XHMH", + "ref:EU:EVSE": "FRQWCE7XHMH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88391905297, + 46.82951901965 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "1108176;1108173", + "charging_station:output": "6.9 kW", + "capacity": "4;6", + "opening_hours": "24/7", + "description": "WAAT/FRWATLR5M0ECHG;WAAT/FRWATLLAKYHSAQ", + "ref:EU:EVSE": "FRWATP8532998623192262676;FRWATP8321980882959910266", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16378600000, + 45.74006100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Ile Rose", + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2021-12-21", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE431500", + "ref": "FRIONE431500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18307800000, + 43.98527900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - ST MEMMIE - Rue de Poix", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST MEMMIE - Rue de Poix", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRS51E40802;FRS51E40803", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E40802;FRS51E40803", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38420800000, + 48.95369500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "owner:ref:FR:SIREN": "200041309", + "ref": "30f25474-1acf-4cfa-a862-8fa83b682e2f", + "network": "Ecocharge77", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRS77P77131C", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "description": "Coulommiers - Parking des Tanneries", + "socket:type2_combo:output": "24 kW", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08793000000, + 48.81177200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRHPCPNF080339", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRHPCPNF080339", + "start_date": "2023-01-27", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681181;531681176;531681180;531681175;531681177;531681178;531681179;531681174", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW", + "description": "RELAIS DE CREUX MOREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71215700000, + 47.11293500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GIGEAN - Parc De La Mairie", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "start_date": "2022-02-15", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34113002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71252777770, + 43.49960820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/VVLALM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PVVLALM", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "21881" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35777000000, + 47.70790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TA02FFLDQM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "892905", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2716383328953370538", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12863300000, + 49.24404800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRMGPP92051A", + "amenity": "charging_station", + "start_date": "2022-12-09", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Bretteville;Métropolis/FR*MGP*P92051*A", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "capacity": "2;5", + "charging_station:output": "25 kW;22 kW", + "ref": "599046", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25557800000, + 48.87579400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Volvo - Cannes", + "amenity": "charging_station", + "capacity": "10", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "start_date": "2020-05-25", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-17:00, Tu 08:00-12:00, Tu 14:00-17:00, We 08:00-12:00, We 14:00-17:00, Th 08:00-12:00, Th 14:00-17:00, Fr 08:00-12:00, Fr 14:00-17:00, Sa 08:00-12:00, Sa 14:00-17:00", + "ref:EU:EVSE": "FRSSDPCAVALLARIVOLVO062501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00963700000, + 43.58437000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRC2P002504;FRC2P002503;FRC2P002501;FRC2P002502;FRC2P002505;FRC2P002506", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "owner:ref:FR:SIREN": "537855009", + "network": "KALLISTE RIVE SUD", + "start_date": "2022-04-11", + "operator": "CAR2PLUG", + "description": "KALLISTE RIVE SUD", + "operator:email": "contact@car2plug.fr", + "ref:EU:EVSE": "FRC2P002504;FRC2P002503;FRC2P002501;FRC2P002502;FRC2P002505;FRC2P002506" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79703840000, + 41.85874031255 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/FKHA6QWCW9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529877", + "ref:EU:EVSE": "FRLE2P3393015445901040235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60543900000, + 47.40316500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Libourne | Rue Schwandorf | Dagueys;LIBOURNE - RUE SCHWANDORF - DAGUEYS", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné;FRS33PMB3315211;FRS33PMB3315212;FRS33PMB3315213;FRS33PMB3315214", + "opening_hours": "24/7", + "operator": "197__SDEEG33;IZIVIA", + "ref": "FR*SOD*S*MB33*152*1*_*_;e1eb3f59-e02b-5108-a7fd-29b56118f028", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-05-29", + "charging_station:output": "50 kW;43 kW", + "capacity": "3;4", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24454500000, + 44.94697500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Château Porcien Centre C3", + "start_date": "2024-03-28", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE08CADA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24687300000, + 49.52848700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBHMP3861563729965139264", + "ref": "814563", + "description": "BornEco/646759c62f5a364fea25cae4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26322800000, + 49.85105300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P1393483074695530497", + "capacity": "26", + "ref": "446888", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Leclerc/ZYW3BNYUDP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944800000, + 44.61754100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Mallemort, Parking de L'Auratoir", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PZKWGVJNQDL", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17751200000, + 43.72839400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "description": "SDEY/WKQMCXPLVY", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS89P8414132943233578876", + "ref": "488907" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34758100000, + 47.87453700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ6512;FRA16PWIIZ6511", + "description": "GRASSE PARKING ALAMBIC", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-06-26", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*65*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93660500000, + 43.64090700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "398828", + "opening_hours": "Tu,Th,We,Mo,Fr 10:00-14:00", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/AA86CZDAIR", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5103515647225812689", + "capacity": "4", + "network": "Freshmile France", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92311000000, + 48.75930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Spar - Saze", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-03-18", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSPASAZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68383930000, + 43.94733860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "CXDGTIEHUK;230911", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Huez, Avenue des Jeux;Réseau eborn/CXDGTIEHUK", + "ref:EU:EVSE": "FREBNPCXDGTIEHUK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06775900000, + 45.09145000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "593345", + "ref:EU:EVSE": "FREVZP4118368598588609435", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARF - Bornes Publiques/A9959385-D59F-405F-A090-FB4F879C498D", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46224000000, + 43.79928000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR67621;FROTHPOTHR67611", + "description": "SUPER U - DECAZEVILLE", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*676*1*_*_;FR*SOD*S*OTHR*676*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25952800000, + 44.55800100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP4431279297730331805;FREBNPAIHVVWVFXZ", + "opening_hours": "24/7", + "ref": "AIHVVWVFXZ;492075", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "description": "Réseau eborn/AIHVVWVFXZ;Die, Rue de Pluvianne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37594000000, + 44.75102000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DCO2FHPJTD;32638", + "description": "Réseau eborn/DCO2FHPJTD;Rosans, Camping Municipal", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDCO2FHPJTD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47106300000, + 44.38937500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*363*1*_*_", + "start_date": "2022-03-24", + "description": "CAMPING LOREE DU BOIS - LES MATHES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR36312;FROTHPOTHR36311", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17906800000, + 45.72982500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/L6DAT3JJ7M", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P435456247460698897", + "operator": "Freshmile | FR*FR1", + "ref": "1009140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47178500000, + -21.32741500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Angers Espace Anjou, France", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP33154", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52466800000, + 47.46675700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/NRQVYBAGVU", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P5935461987181682352", + "ref": "477681", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070200000, + 43.30887100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS422701", + "description": "Volkswagen - ByMyCar - Saint-Etienne", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-09-14", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38346800000, + 45.47108100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/H1FDA2VWZ8", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6577920115765895355", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "578882" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88983400000, + 42.61057700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Perros Guirec-Rue A. Le Braz (parking du port)", + "ref:EU:EVSE": "FRS22E22168002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44176100000, + 48.80740400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "388876997", + "ref:EU:EVSE": "FRZKAE22AC88248;FRZKAE24DC88247", + "description": "KIA - Denney - 24kW DC ;KIA - Denney - 22kW AC ", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-10-27", + "network": "KIA DENNEY AUTOMOBILES", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "socket:type2_combo:output": "24 kW", + "ref": "88248;88247", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88720730000, + 47.64853920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE299", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2022-04-25", + "opening_hours": "24/7", + "description": "Huttopia_Douarnenez", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.36026200000, + 48.10244400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-04", + "description": "FONTENAY-MAUVOISIN - Mairie", + "ref:EU:EVSE": "FRY01E78245001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65389280000, + 48.96582160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-08", + "description": "Larzac", + "network": "Larzac", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE432553;FRIOYE432552;FRIOYE432551;FRIOYE432505;FRIOYE432504;FRIOYE432501;FRIOYE432502;FRIOYE432503;FRIOYE432506", + "ref": "FRIOYE432553;FRIOYE432552;FRIOYE432551;FRIOYE432505;FRIOYE432504;FRIOYE432501;FRIOYE432502;FRIOYE432503;FRIOYE432506", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18310710000, + 43.98529870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "description": "OuestCharge - Diva Sp - Bazougers - Tannerie;BAZOUGERS - Impasse De La Tannerie", + "ref:EU:EVSE": "FRS53P53025A;FRS53E53025001", + "amenity": "charging_station", + "start_date": "2021-04-06;2024-05-15", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58105100000, + 48.02047600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66004002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-06-12", + "description": "LES ANGLES - Rue Des Tennis", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07162400000, + 42.57456500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-08", + "ref": "FRIENE007901;FRIENE007902", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRIENE007901;FRIENE007902", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Dourdan", + "network": "Dourdan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01999200000, + 48.54675300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "ANTRAIN - 9 rue de fougeres (VAL COUESNON)", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "ref:EU:EVSE": "FRS35P35004001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48039400000, + 48.45608500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SE61-MABO-001", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "LA MADELEINE BOUVET", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61241A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90238000000, + 48.47146800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892464", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6608296033337547706", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJZI2PFA147ER", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96558300000, + 48.63213900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Capens, ZAC Serres;Roulez Électrique En Haute-Garonne/QJMSEM", + "ref:EU:EVSE": "FRS31PQJMSEM", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "86867;QJMSEM", + "start_date": "2018-07-06", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25396000000, + 43.34360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2024-02-21", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92004035", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ASNIERES-SUR-SEINE - Rue de la Station", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28406227889, + 48.90631129314 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "opening_hours": "Sa 09:00-18:00,Fr 09:00-19:00,Th 09:00-19:00,We 09:00-19:00,Tu 09:00-19:00,Mo 09:00-19:00", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "network": "BMW - Altitude 71 Macon - 71000 - 1", + "charging_station:output": "22 kW;150 kW", + "description": "BMW - Altitude 71 Macon - 71000 - 1", + "ref": "FRCG0E000252;FRCG0E000251;FRCG0E000250", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000252;FRCG0E000251;FRCG0E000250" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84393402000, + 46.33470958000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE14222;FRM06PNICE14221", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BELVEDERE - PARKING PLACE COUR INFERIEUR", + "operator:email": "sav@izivia.com", + "start_date": "2021-09-21", + "ref": "FR*SOD*S*NICE*142*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32093500000, + 44.01464300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Dax | Place de la Chalosse", + "ref": "f5b60a8f-1391-5deb-b0a3-5307d7c49090", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04046600000, + 43.70717600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BEAUVAIS - Place des Halles", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE60BVAA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-23", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08494400000, + 49.43024500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "amenity": "charging_station", + "description": "Bump - SERL - Genas", + "ref:EU:EVSE": "FRBMPS165808;FRBMPS165807", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "ref": "165807;165808", + "capacity": "2;4", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98542870000, + 45.72632540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3362EVCP01", + "ref:EU:EVSE": "LFR3362EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CALAIS Gustave Lamarle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86935800000, + 50.93977500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Allassac | Place Allegre", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "61d853a5-d5d9-5c04-bb46-7a718fec860d", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47580200000, + 45.25761100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "32aba3ea-a8fa-5bc3-ba49-21d155afbeb1", + "description": "Marolles-en-Hurepoix - Route de Saint Vrain" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30417700000, + 48.56010800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "PARKING LAUTIER SIVERGUES", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P84400*SVG*PARKING", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84400SVGPARKING", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2019-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40381200000, + 43.82887000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4120EVCP03;LFR4120EVCP01;LFR4120EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "LIMOUX Alet", + "ref:EU:EVSE": "LFR4120EVCP03;LFR4120EVCP01;LFR4120EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23201800000, + 43.04413900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;105 kW;120 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-06-07;2024-06-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PZOCPZN", + "description": "Zone Commerciale - Pézenas", + "operator": "Power Dot France", + "socket:type2_combo:output": "120 kW;105 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41879077917, + 43.45259233120 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "529934;U20PVEFMDS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP3599580115509569246;FREBNPU20PVEFMDS", + "start_date": "2022-06-14", + "description": "Réseau eborn/U20PVEFMDS;Hyeres, Place du Belvédère" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13128600000, + 43.03864700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Freshmile France/LT9ZDLYLLD", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "446546", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRFR1P4049695397380146695", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57530700000, + 45.29810500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E21231006", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking de Dijon Darcy - DIVIAPARK", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03395000000, + 47.32339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT306001", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Carrefour Market - Vauvert", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27304900000, + 43.68868700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUEVBPQ8MI8", + "description": "Saint-Germain, Place du Champ des Pauvres;Réseau eborn/UEVBPQ8MI8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "UEVBPQ8MI8;32680" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45123100000, + 44.55526100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "FLEURY MICHON", + "operator": "IZIVIA", + "description": "FLEURY MICHON - POUZAUGES", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR48231;FROTHPOTHR48211;FROTHPOTHR48221;FROTHPOTHR48241;FROTHPOTHR48251;FROTHPOTHR48261", + "ref": "FR*SOD*S*OTHR*482*6*_*_;FR*SOD*S*OTHR*482*1*_*_;FR*SOD*S*OTHR*482*2*_*_;FR*SOD*S*OTHR*482*3*_*_;FR*SOD*S*OTHR*482*4*_*_;FR*SOD*S*OTHR*482*5*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2022-09-09", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81560400000, + 46.74934200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "801591", + "ref:EU:EVSE": "FRFR1P4543620210249823877", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/D4GOUTGVDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07422300000, + 49.21785300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10085124;FRUBIE10027521", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref": "setp0100000164", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-03-07", + "description": "UBI-LHSM-192" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13057300000, + 49.50017000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "ref:EU:EVSE": "FRFR1P3936018460053519392", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/KNUSGV", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "79588", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944000000, + 44.92180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "ref:EU:EVSE": "FRTLSE31555020", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TOULOUSE - 25 Rue de l'Ukraine", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41321000000, + 43.57982000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8381091400616241138", + "charging_station:output": "22 kW", + "description": "Freshmile France/TBP9DOPXZ7", + "operator": "Freshmile | FR*FR1", + "ref": "529637" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95302200000, + 49.02668500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P8741332694912334386", + "operator:email": "roaming@freshmile.com", + "ref": "457590", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/X48FPHUJQU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52641800000, + 49.13565800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARVIEU - Route De La Creyssilie Parking Garage Municipal", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12011001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66213400000, + 44.19092000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78193001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "DAMPIERRE EN YVELINES - Chateau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98749010000, + 48.70624880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-05;2024-04-21;2021-05-28", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Valanjou - Mairie;VALANJOU - Rue de la Mairie", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49E49153001;FRS49P49153A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60094900000, + 47.21522200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS70PSKHFUU", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "description": "SIED70/SKHFUU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79828" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59030000000, + 47.45460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BOESEGHEM - Rue De La Chapelle", + "ref:EU:EVSE": "FRH14E59087001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43811600000, + 50.66241800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "description": "ST PIERRE DE PLESGUEN - 9 rue de l'Egalité ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35308001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91031800000, + 48.44630400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "518330", + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "start_date": "2022-10-19", + "description": "SIEG 63/FR*S63*P63141*A;SIEG63 - ePremium - Durtol - Chataigniers", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63141A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05066600000, + 45.79590700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6485421292877596333", + "ref": "515090", + "description": "Freshmile France/QJPMFY9VDG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12614900000, + 43.51690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "description": "SDEG32/AVQXQB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32P7890016207463800250", + "ref": "347033", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04353500000, + 43.94990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CACHAN - Rue Camille Desmoulins", + "ref:EU:EVSE": "FRSIPE94016002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33460000000, + 48.79430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "TOURRETTE-LEVENS - PARKING CRECHE", + "start_date": "2023-08-01", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE26112;FRM06PNICE26111", + "ref": "FR*SOD*S*NICE*261*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27400119082, + 43.78882519096 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "7791efbb-cbcb-589d-99fd-21c76dae8e83", + "description": "MOBIVE | Sainte Alvere | Parking Avenue Jules Ferry", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80971500000, + 44.94642300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PARKING GARE NORD - SAINT-LEU-LA-FORET", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39611;FRSIGPSIGE39612", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref": "FR*SOD*S*SIGE*396*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24240000000, + 49.01580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PETIT COURONNE - Zénith de la Métropole Rouen Normandie", + "start_date": "2023-04-03", + "socket:type2_combo:output": "90 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76497003", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05848300000, + 49.39206200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "YVRE L'EVEQUE RN 23", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3556EVCP01", + "ref:EU:EVSE": "LFR3556EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24548500000, + 48.00158000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "operator": "193__Syndicat de la Diège", + "amenity": "charging_station", + "ref": "1fc0100b-625e-59c4-a6e5-ec3b25987a9d", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | Ussel | Place Marcel Pagnol", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31248000000, + 45.54965000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "description": "Lacoste - Route de Bonnieux", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "80814baa-6e24-5777-b2e8-0fab9e3a16af" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27374200000, + 43.83240800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2023-02-10", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "PLACE DEVOS - GARCHES", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92380GARDEV0S", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW", + "ref": "FR*55C*P92380*GAR*DEV0S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18653900000, + 48.84475200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4038EVCP04;LFR4038EVCP03;LFR4038EVCP02;LFR4038EVCP01", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LAMOTTE-BEUVRON Vierzon", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4038EVCP04;LFR4038EVCP03;LFR4038EVCP02;LFR4038EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02548400000, + 47.58543200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Intermarché - Pont-du-Château", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMPDC", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2024-01-26;2024-01-06", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24246730797, + 45.80015765180 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Leger-Sur-Roanne, Parking aéroport;Réseau eborn/NLVCDQEOPZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPNLVCDQEOPZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "96068;NLVCDQEOPZ", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00257600000, + 46.05196700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP77390G", + "description": "e-Totem - Roissy-en-Brie - Gymnase Nelson Mandela", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP77390G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64439370509, + 48.79055379078 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "Cora - Évreux", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRPD1PCOREVR", + "opening_hours": "24/7", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13364890000, + 49.02335360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Saint-Symphorien-Sur-Coise", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT695901", + "opening_hours": "24/7", + "start_date": "2024-06-24", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46163600000, + 45.63614200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc Millau", + "socket:type2_combo:output": "50 kW", + "capacity": "8", + "ref:EU:EVSE": "FREMIPLECLERCMILLAU", + "start_date": "2022-06-23", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator:email": "thomas.millerand@millau.leclerc", + "operator": "Leclerc Millau", + "owner:ref:FR:SIREN": "341760148", + "network": "Leclerc Millau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04000000000, + 44.08000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - VIRY NOUREUIL", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "ref": "FR*SOD*S*AUCH*175*1*_*_", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPAUCH17512;FROTHPAUCH17511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25868741531, + 49.64300710839 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ONYX INFO BORNE PARKING", + "opening_hours": "Mo 08:30-17:30,Tu 08:30-17:30,We 08:30-17:30,Th 08:30-17:30,Fr 08:30-17:30", + "ref": "FRCPIE6799975", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-02", + "charging_station:output": "11 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6799975", + "description": "ONYX INFO BORNE PARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21963400000, + 49.35637300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892296", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4049109176396070930", + "network": "Freshmile France", + "description": "Freshmile France/LLJ2H7CNY2IO14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74158200000, + 45.58664200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Rue de Tolbiac 145", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*V75*P9013*05", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901305" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35814600000, + 48.82603900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "466116", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3992794111128297353", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/N4XRQBUHJY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78975500000, + 48.61372900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Mont-Saint-Michel", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP3972", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54328300000, + 48.56817100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLRKN077V1IP59", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1032183", + "ref:EU:EVSE": "FRFR1P6162004550095028665", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66019200000, + 48.58964500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "description": "R3 - Portet-Sur-Garonne", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89660153", + "operator:email": "exploitation@r3-charge.fr", + "start_date": "2024-06-24", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38917000000, + 43.53740800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/EUQ9MLUPEK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1343026859852606142", + "ref": "461706" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18599900000, + 49.34824800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULONJAC - Prat de la Fon, Derrière Bar Restaurant Le Claux de Belvezet", + "start_date": "2022-09-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12281001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00040500000, + 44.38113500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA5P6208203878729456495", + "description": "WAAT/FRWA5LOZGIHIZH", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "1041333", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37611300000, + 43.88518500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Trementines - Ravel", + "ref:EU:EVSE": "FRS49P49355A", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-04-21", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78939020000, + 47.12269847000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8111700122;FRS81E8111700112;FRS81E8111700111;FRS81E8111700121", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "LABESSIERE-CANDEIL - Place Saint Anne", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00511200000, + 43.80179300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680579;531680580", + "start_date": "2021-05-06", + "capacity": "2", + "description": "RELAIS HERRENWALD", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF050214", + "ref": "FRHPCPNF050214", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70980000000, + 48.70800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS46E46192001", + "description": "MEYRONNE - Parking Mairie", + "network": "Reveo", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57731100000, + 44.87722100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PMEFKNE", + "start_date": "2016-09-09", + "description": "Noyal-muzillac - Rue du Presbytère" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45708300000, + 47.59238900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-04-01", + "operator": "Bouygues E&S", + "description": "COURCHELETTES - Rue Emile Macra (MAIRIE)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH04E59178016", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06184790000, + 50.34326910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Quimper-Boulevard du Finistère", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09365700000, + 48.01360700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Delerue", + "start_date": "2023-11-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49296530000, + 48.79569550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346051412;FRLMSE12346051411;FRLMSE12346051421;FRLMSE12346051422", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "B023", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2017-11-03", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "description": "CHATELLERAULT - MANUFACTURE-1-2;CHATELLERAULT - MANUFACTURE-1-1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53507000000, + 46.81348000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;50 kW;150 kW", + "capacity": "4", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92063S", + "network": "METROPOLIS", + "start_date": "2022-04-05", + "description": "Metropolis - Express - Rueil-Malmaison - Auguste Perret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566000, + 48.88946877000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE7161;FRSIGPSIGE7151;FRSIGPSIGE7141;FRSIGPSIGE7131;FRSIGPSIGE7121;FRSIGPSIGE7111", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*SIGE*71*6*_*_;FR*SOD*S*SIGE*71*4*_*_;FR*SOD*S*SIGE*71*1*_*_;FR*SOD*S*SIGE*71*2*_*_;FR*SOD*S*SIGE*71*3*_*_;FR*SOD*S*SIGE*71*5*_*_", + "start_date": "2020-11-10", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25463740000, + 48.83219490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "932976", + "description": "Atlante/FRATL*BLOI0001", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP7800173045546873077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33663100000, + 47.61329100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000081802", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Rouen", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11317200000, + 49.39704900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Biarritz | Rue Augusta", + "ref": "6276077d-3389-545a-bf93-522d06a29332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54690700000, + 43.47718400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MONTAIGU-VENDEE - Place Du Pont Jarley", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85146001", + "start_date": "2024-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31215000000, + 46.97409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ISLE D ABEAU", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "start_date": "2022-08-07", + "ref:EU:EVSE": "FRALLPEVCARSISLDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22494000000, + 45.61392000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3051EVCP01", + "description": "AUDIERNE Kerivoas", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3051EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.55502200000, + 48.02693500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "100 kW;200 kW;50 kW;160 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "200 kW;160 kW;100 kW", + "capacity": "10", + "start_date": "2024-01-06", + "description": "Lidl - Brioude", + "ref:EU:EVSE": "FRPD1PLIDBRI", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37402475215, + 45.31366868282 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Cluses, Rue Pré Benevix - Cœur de ville", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPPLHDMFICPU", + "ref": "PLHDMFICPU", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58130480000, + 46.06103450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/6824395B-80A6-437A-B426-3018151E6F6E", + "socket:type2_combo:output": "50 kW", + "ref": "1114056", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP6851772525683769136", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95001700000, + 47.69383800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Supermarché Match - Fournes-en-Weppe", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PGSTFEW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-12-13", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90000338168, + 50.58371488521 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "95981", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPICY3X7IVQQ", + "description": "Réseau eborn/ICY3X7IVQQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17425400000, + 46.15816800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP13063A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "start_date": "2023-08-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP13063A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - IBIS Style MIRAMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99297540000, + 43.58980720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-09-18;2021-12-07", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SEMVR", + "description": "SEMVR - ROUBAIX - WINSTON CHURCHILL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR168151;FROTHPOTHR168141;FROTHPOTHR168341;FROTHPOTHR168351", + "ref": "FR*SOD*S*OTHR*168*35*_*_;FR*SOD*S*OTHR*168*15*_*_;FR*SOD*S*OTHR*168*14*_*_;FR*SOD*S*OTHR*168*34*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17975000000, + 50.68911000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6971605", + "capacity": "2", + "amenity": "charging_station", + "description": "SOLERO FOUCAUDIERE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-07-15", + "network": "SOLERO FOUCAUDIERE 1", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6971605" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19154800000, + 47.97425400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6202256903850048569", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "741012", + "charging_station:output": "22 kW", + "description": "Freshmile France/GDFCGE3FAO", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42649400000, + 43.29657700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "CENTER PARCS LAC D'AILETTE", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2024-06-14", + "ref:EU:EVSE": "FRVIAP123001", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68590000000, + 49.46422100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/AVIZJCCHFM", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "492003", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7480038170858577348" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35517500000, + 48.98067100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSUAP07129A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-05-19", + "network": "SUPER U LAMASTRE", + "ref": "FRSUAP07129A", + "description": "SUPER U LAMASTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55932600000, + 44.97522900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6040655165966344589", + "ref": "466095", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LZRLYBKPBE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18303400000, + 48.96186000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Gevrey-Chambertin - Mairie", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-02-09", + "ref:EU:EVSE": "FRSSDPMAIRIEGEVREY212201", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97155500000, + 47.22584200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E134333", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - CHATEAUNEUF EN THYMERAIS - Halles", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E134333", + "description": "MODULO - CHATEAUNEUF EN THYMERAIS - Halles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24234700000, + 48.58155000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "1155594", + "description": "SDEA 10/VTLPHAV5IB", + "ref:EU:EVSE": "FRS10P5996170178402418814" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57243300000, + 48.50890400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1119924", + "capacity": "5", + "network": "WAAT", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P613443037734177821", + "description": "WAAT/FRWATLKVSZC2YN", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99738200000, + 43.93311800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRS50P50484003", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "description": "ST HILAIRE DU HARCOUET (ST MARTIN DE LANDELLES) - Haut du Bourg", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16949990000, + 48.54534170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT SULPICE LA POINTE - Avenue Pasteur", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81271001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68571200000, + 43.77352700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "fence" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20959510000, + 49.97183110000 + ], + [ + 1.20935980000, + 49.97196770000 + ], + [ + 1.20911100000, + 49.97212250000 + ], + [ + 1.20840920000, + 49.97203600000 + ], + [ + 1.20837560000, + 49.97210610000 + ], + [ + 1.20844680000, + 49.97217700000 + ], + [ + 1.20853270000, + 49.97229180000 + ], + [ + 1.20848530000, + 49.97230750000 + ], + [ + 1.20843500000, + 49.97232420000 + ], + [ + 1.20836210000, + 49.97219860000 + ], + [ + 1.20830430000, + 49.97213120000 + ], + [ + 1.20823710000, + 49.97210000000 + ], + [ + 1.20811340000, + 49.97217180000 + ], + [ + 1.20814420000, + 49.97219170000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680641;531680639;531680640;531680642", + "ref:EU:EVSE": "FRHPCPNF078238", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRHPCPNF078238", + "description": "RELAIS MILLE ETANGS", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-09-27;2021-06-08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59500000000, + 46.71610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49018002;FRS49P49018B", + "description": "BAUGE - Place du Marché;OuestCharge - Diva Sp - Bauge - Marche", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-21;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10612200000, + 47.54255600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "896727", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/LLLDRKF6519NJN", + "ref:EU:EVSE": "FRS60P6941343531956716240" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23267500000, + 49.67838800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2024-09-09", + "ref:EU:EVSE": "FRH09E59293002", + "description": "HAVERSKERQUE - Rue de l'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53966710000, + 50.64138560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GENERAC - Grand Rue", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-08-11;2021-11-03", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30128001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34863400000, + 43.72913500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/LLYCXQS2D6C5J5", + "amenity": "charging_station", + "ref": "1151880", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRS56P4923426215007165136" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.02827800000, + 47.59185000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-10-02", + "description": "MIGNALOUX-BEAUVOIR-1-1;MIGNALOUX-BEAUVOIR-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "B066", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346390361;FRLMSE12346390351", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41389700000, + 46.54146600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP94015B", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "ref": "599136", + "description": "Metropolis - Citadine - Bry-sur-Marne - Charles de Gaulle;Métropolis/FR*MGP*P94015*B", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52034200000, + 48.83574400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*100*1*_*_;FR*SOD*S*SIGE*100*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-11", + "ref:EU:EVSE": "FRSIGPSIGE10021;FRSIGPSIGE10012;FRSIGPSIGE10011;FRSIGPSIGE10022", + "network": "SIGEIF", + "description": "SIGEIF - RUE ARMENGAUD - SAINT-CLOUD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21700700000, + 48.85051200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PAU - Parking Courte durée Gare SNCF", + "start_date": "2024-02-01", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E64445009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37116145541, + 43.29266726434 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2022-12-27;2023-03-23;2023-01-13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89369698", + "capacity": "1", + "description": "ENGIE Vianeo - A5 Villeneuve l'Archevèque", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55493400000, + 48.24311700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "d8c45886-fb94-559a-b6cb-f446ab3232d5", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Ruffec | Parking des Ambassadeurs", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19768500000, + 46.02815500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Centre aquatique - MARCONNE", + "ref:EU:EVSE": "FRSE1PSE62MAPA", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03233000000, + 50.36427300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Chartres", + "amenity": "charging_station", + "network": "Allego Carrefour Chartres", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9990501;FRALLEGO9990481;FRALLEGO9002913;FRALLEGO9002912;FRALLEGO9002911;FRALLEGO9001332;FRALLEGO9001331;FRALLEGO9002001;FRALLEGO9002002;FRALLEGO9990482;FRALLEGO9990502", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9990501;FRALLEGO9990481;FRALLEGO9002913;FRALLEGO9002912;FRALLEGO9002911;FRALLEGO9001332;FRALLEGO9001331;FRALLEGO9002001;FRALLEGO9002002;FRALLEGO9990482;FRALLEGO9990502", + "start_date": "2024-03-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51820600000, + 48.45021800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Epernay Valentin", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR3617EVCP03;LFR3617EVCP02;LFR3617EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3617EVCP03;LFR3617EVCP02;LFR3617EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95309200000, + 49.02669900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31032001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "AUSSONNE - Place De La Mairie", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31804700000, + 43.68282900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "94448;YWRAKBDU72", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPYWRAKBDU72", + "description": "La Morte, Place De La Mairie;Réseau eborn/YWRAKBDU72" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85641400000, + 45.02921700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RGPNLAOCAJ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "515099", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2769702674154335557", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94082700000, + 47.71970500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-12-18", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TIGNES - Rosset", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E732960013;FRP07E73296001;FRP07E732960011;FRP07E732960012;FRP07E732960014", + "capacity": "40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90883400000, + 45.46836580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/R4CFXQWYOD", + "ref": "306112", + "ref:EU:EVSE": "FREBNPR4CFXQWYOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97480100000, + 43.12893100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1078047", + "network": "Road", + "charging_station:output": "120 kW;22 kW", + "description": "Road/661e63bd482c8f001c37c3e5", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FREFLP6659317091862362", + "socket:type2_combo:output": "120 kW", + "operator:email": "roaming-dev@road.io", + "opening_hours": "Su,Th,Sa,Mo,Tu,We,Fr 08:00-18:00", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47348300000, + 45.21451300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "COMMUNE VAL DISERE", + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*282*1*_*_", + "start_date": "2021-11-25", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "COMMUNE VAL DISERE - LA DAILLE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR28211;FROTHPOTHR28212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96561900000, + 45.45979200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6608085", + "description": "CGED AIX", + "network": "CGED AIX", + "charging_station:output": "22 kW", + "ref": "FRCPIE6608085", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37912900000, + 43.48846500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "La Grand-Croix, Place du Général de Gaule;Réseau eborn/BRUPTZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "85964;BRUPTZ", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPBRUPTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56981000000, + 45.50550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "charging_station:output": "24 kW", + "description": "WAAT/s546225", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P2474598231397469784", + "capacity": "3", + "ref": "1178445", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70349100000, + 47.34091400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "515054", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LGT1LJMVAS", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5548305766071155702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66300100000, + 47.92060500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00371", + "capacity": "2", + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "ref:EU:EVSE": "FRTCBP00371", + "start_date": "2021-08-12", + "description": "WARNING Lille", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03287000000, + 50.56886100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "441009", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6809245023433804223", + "description": "Freshmile France/MS24BWDH9Z", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18397700000, + 48.42329100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2022-09-30", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Dieppe", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHYUNDAIDIEPPE763701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10404100000, + 49.90658100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2903100", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "description": "Clohars Carnoet-Rue de Doelan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58649600000, + 47.79562400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P1425604054995557622", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "88223", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/VPNHU2ZDUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39587200000, + 48.05381500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "network": "Zephyre;GHO Evry", + "opening_hours": "24/7", + "ref": "575873;7b7d31a4-240c-4551-a349-d2eaefe74a4b", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "description": "Zephyre/1909459;GHO Evry", + "owner:ref:FR:SIREN": "328195169", + "ref:EU:EVSE": "FRZP1PEAC48213;FRZP1P8752605389702936966;FRZP1PEAC48211;FRZP1PEAC48212;FRZP1PEAC48214", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42378100000, + 48.61670200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "fivalCambrai", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-05-25", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE89" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22397000000, + 50.15722800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PABBEVILPONT", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/Abbevilpont", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80", + "ref": "64625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83241000000, + 50.10460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*170*1*_*_;FR*SOD*S*FAST*170*2*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - ORLEANS", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST17023;FRIZFPFAST17022;FRIZFPFAST17021;FRIZFPFAST17011;FRIZFPFAST17012;FRIZFPFAST17013", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90784534141, + 47.87961940427 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - VENDOME - AV. Jean Moulin", + "amenity": "charging_station", + "network": "MODULO - VENDOME - AV. Jean Moulin", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E4745;FRS41E4746", + "charging_station:output": "0 kW", + "ref": "FRS41E4745;FRS41E4746", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05740100000, + 47.80658400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "598182", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P8566936094323747173", + "description": "Mouv'Oise/TDJLDI1R6F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03810600000, + 49.42502200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-05-28", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*79*4*_*_;FR*SOD*S*LYON*79*3*_*_;FR*SOD*S*LYON*79*1*_*_;FR*SOD*S*LYON*79*2*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY605 - FOCH - LYAUTEY", + "ref:EU:EVSE": "FRGLYPLYON7941;FRGLYPLYON7921;FRGLYPLYON7911;FRGLYPLYON7931", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84290300000, + 45.76892900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LA VILLE AUX DAMES - Pl. du 8 mai 1945", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - LA VILLE AUX DAMES - Pl. du 8 mai 1945", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E215550;FRS37E215551", + "ref": "FRS37E215550;FRS37E215551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77246000000, + 47.38737000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "25076", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/MYDKMD", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PMYDKMD", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21965000000, + 47.71340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "description": "DOMAINE DE VALINCHES", + "capacity": "4", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-06-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05732886881, + 45.45730543706 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1172880", + "description": "Obornes/9", + "operator:email": "ops@obornes.fr", + "charging_station:output": "360 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "network": "Obornes", + "ref:EU:EVSE": "FRORVP1152794072638209175", + "operator": "Obornes | FR*ORV", + "socket:type2_combo:output": "360 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16393900000, + 47.21666300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-11-25", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*214*1*_*_", + "description": "SIGEIF - MAIL DE LA JUSTICE MAROLLES-EN-BRIE", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE21411;FRSIGPSIGE21412", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54224313532, + 48.72921747711 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-08", + "charging_station:output": "22 kW;225 kW", + "socket:type2_combo:output": "225 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Groupe Donjon - Volkswagen Arpajon - 91290 - 1", + "network": "Groupe Donjon - Volkswagen Arpajon - 91290 - 1", + "ref:EU:EVSE": "FRCG0E002111;FRCG0E002109;FRCG0E002112", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E002111;FRCG0E002109;FRCG0E002112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24167855000, + 48.59911308000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Rouen Parc des Expos", + "start_date": "2023-11-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89944372", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06301400000, + 49.39971800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Matha | Place du Château d'Eau", + "ref": "b58c5fae-877a-5668-ae10-337d7cfd4a79", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31735000000, + 45.86998900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE87SACA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Parking Mairie 87800 SAINT-HILAIRE-LES-PLACES", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15893000000, + 46.64505000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ROBOTIC COVER CONCEPT", + "operator:email": "robotic@rcc.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "420783946", + "description": "Toul, rue Maurice Bokanowski", + "opening_hours": "24/7", + "ref": "e81469d6-a6dc-11ed-afa1-0242ac120002", + "network": "ROBOTIC COVER CONCEPT", + "start_date": "2023-01-06", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRA54P002024212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93420000000, + 48.70158000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "ARLES Libération", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2708EVCP01", + "ref:EU:EVSE": "LFR2708EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64325100000, + 43.69956200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-28;2021-11-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GRENOBLE - Place Jean Achard", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;7 kW", + "ref:EU:EVSE": "FRM38E38185001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72939000000, + 45.18938000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Saint-Jeoire, Clos Saint François;Réseau eborn/YRJ3UX21SF", + "ref:EU:EVSE": "FREBNPYRJ3UX21SF", + "ref": "YRJ3UX21SF;85805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45734000000, + 46.13820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "175 kW", + "ref": "505590", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/IBDZ4WIOAT", + "opening_hours": "24/7", + "capacity": "22", + "charging_station:output": "175 kW;22 kW", + "ref:EU:EVSE": "FRFR1P4452915179152500084", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237000000, + 46.19182000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E930700011;FRP07E93070001", + "description": "SAINT-OUEN - L'îlot N7", + "start_date": "2024-09-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32826000000, + 48.91222930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ISP5MCPLRA;477813", + "start_date": "2022-01-28", + "description": "Châtel, Lac de Vonne;Réseau eborn/ISP5MCPLRA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP7133552889654130145;FREBNPISP5MCPLRA", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84055000000, + 46.25796000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Bouguenais - KFC", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-09-09", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPBOUKF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58633100000, + 47.18880400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking gare d'Etampes P+R - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "10", + "ref:EU:EVSE": "FRP01E91223001;FRP01E912230011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15991870000, + 48.43822180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-04", + "amenity": "charging_station", + "ref": "FRCPIE6648325;FRCPIE6648295", + "capacity": "3", + "description": "HIEXMLV BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6648325;FRCPIE6648295", + "network": "HIEXMLV BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83253700000, + 48.84853700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP25018465240567976;FRECHPNGEJDB7SE2", + "start_date": "2023-03-08", + "ref": "749232;NGEJDB7SE2", + "description": "Easy Charge/NGEJDB7SE2;Tours, Maginot", + "network": "Easycharge services;Easy Charge", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70140500000, + 47.42554900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1812", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX18*12", + "description": "Paris | Rue Ordener 120", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33949990000, + 48.89327680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20723030000, + 49.97147480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZDY9IC0LN9", + "ref:EU:EVSE": "FRFR1P6187142649388111197", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "370202", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57558800000, + 44.84326900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Rue des Pyrénées 127", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9020*04", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P902004", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40380200000, + 48.85709400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "opening_hours": "Th,Mo,We,Tu,Fr 06:30-19:30", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P79737711124925597", + "network": "Freshmile France", + "ref": "626240", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RBUT3DZJBH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017600000, + 42.11461900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2022-09-09", + "ref:EU:EVSE": "FRSSDPBAZINHYUNDAI520001", + "description": "Hyundai -Chaumont", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14479800000, + 48.10263500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plouguiel-Place anciens combattants", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22221001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23856200000, + 48.79757300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11206002", + "start_date": "2022-02-17;2022-01-31", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LIMOUX - Rue D'Aude", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21527777778, + 43.05666670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00;Mo-sat 09:00-19:00,Sun 09:00-18:00", + "ref": "55849;55848", + "ref:EU:EVSE": "FRZPEE24DC55848;FRZPEE22AC55849", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "owner:ref:FR:SIREN": "529221210", + "description": "INTENZ Chateau-Thierry by Autosphere VW - 22KW AC ;INTENZ Chateau-Thierry by Autosphere VW - 24KW DC ", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-03-08", + "network": "AUTO AVENIR RELAIS - CHÂTEAU THIERRY - VW", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40199620000, + 49.03761110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09285001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SEIX - Avenue De La Baraque", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20300000000, + 42.86400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/VYEBQY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PVYEBQY", + "network": "FDE 80", + "ref": "34655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83891000000, + 50.11030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST4811;FRIZFPFAST4812;FRIZFPFAST4813", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-01-30", + "ref": "FR*SOD*S*FAST*48*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - CAMBRAI AV. DE VALENCIENNES", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25103080503, + 50.18428103638 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2021-04-14;2024-04-16;2024-04-22", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Le Landreau - Moulins;LE LANDREAU - Rue Des Moulins", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44079A;FRS44E44079001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30713500000, + 47.20548500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77214A;FRS77E77214001", + "network": "Ecocharge77", + "description": "Gressy;GRESSY - Rue D'Olympie", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-08-31;2023-05-18", + "ref": "01F5ZAKH61MVDX55W13APA2PV6", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67161100000, + 48.96543500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "1059489", + "description": "GreenYellow Shift Mobility/71", + "ref:EU:EVSE": "FRGYMP2463192932203254607", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "We,Tu,Su,Mo,Fr,Th,Sa 06:00-20:00", + "charging_station:output": "22 kW;150 kW", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22936300000, + 49.50979300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E220476;FRS37E220458", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - CHAMBRAY LES TOURS - Fourbisserie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHAMBRAY LES TOURS - Fourbisserie", + "ref:EU:EVSE": "FRS37E220476;FRS37E220458" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69710430000, + 47.34927895000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "VILLE DE NANCY - Parking Vaudemont - Ville de Nancy", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "1d66bb55-4723-5791-bb6d-37504d37371d", + "operator": "49__VILLE DE NANCY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18235700000, + 48.69529800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY707 - DEBOURG", + "ref": "FR*SOD*S*LYON*100*4*_*_;FR*SOD*S*LYON*100*3*_*_;FR*SOD*S*LYON*100*2*_*_;FR*SOD*S*LYON*100*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON10041;FRGLYPLYON10031;FRGLYPLYON10011;FRGLYPLYON10021", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2021-07-15;2021-07-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83564700000, + 45.73064000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "ref": "cf9d16a6-4bc4-4f2b-96f9-2878000c1f22", + "capacity": "1", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "description": "SUD AUTO (Nissan Orthez)", + "network": "SUD AUTO (Nissan Orthez);AUTOMOBILES ORTHEZIENNES", + "ref:EU:EVSE": "FRMBZEFRPQL;FRMBZEHSTRA", + "start_date": "2024-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74531430006, + 43.47958374023 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "e-mobility@sap.com", + "capacity": "14", + "operator": "SAP Labs France SAS | FR*SLF", + "opening_hours": "24/7", + "ref": "1156311", + "charging_station:output": "22 kW", + "description": "SAP Labs/d7d519f3-1f77-48b6-af07-b65425e41c0b", + "ref:EU:EVSE": "FRSLFP474468005845590563", + "network": "SAP Labs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39074900000, + 49.20085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "WAAT 4 CHENES 14", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6627515;FRCPIE6627505;FRCPIE6541055;FRCPIE6541085", + "description": "WAAT 4 CHENES 14", + "ref": "FRCPIE6627515;FRCPIE6627505;FRCPIE6541055;FRCPIE6541085", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58981200000, + 48.77737900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/A12RW4GWRR", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P6762988650846390626", + "ref": "529871", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961000000, + 48.31750800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "27f5e304-0eb7-5ade-84d9-f54f2cf34f06", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Langon | Place de la Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24512500000, + 44.55313100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9f052726-8ac1-566f-9c46-712779082753", + "description": "Ris-Orangis - Rue Eugène Freyssinet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41712800000, + 48.65782200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-07;2022-07-06;2022-07-08;2024-09-30;2024-09-20", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Airbus - Elancourt;Airbus - Elancourt - Cube MOB ENERGY", + "capacity": "48;20", + "charging_station:output": "22.08 kW;7.36 kW;2.20 kW;5.50 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRAIRPEKUW;FRAIRPAIRBUS78990P1", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97187400000, + 48.79809700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LANGON Fargues", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3331EVCP03;LFR3331EVCP01;LFR3331EVCP02", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3331EVCP03;LFR3331EVCP01;LFR3331EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26084300000, + 44.54364400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-15", + "ref": "FR*SOD*S*NICE*5*2*_*_", + "ref:EU:EVSE": "FRM06PNICE522;FRM06PNICE521", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - CESSOLE RP", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25011400000, + 43.72334900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*190*5*_*_;FR*SOD*S*WIIZ*190*2*_*_;FR*SOD*S*WIIZ*190*1*_*_;FR*SOD*S*WIIZ*190*3*_*_;FR*SOD*S*WIIZ*190*4*_*_", + "description": "MANDELIEU-LA NAPOULE - PARKING PLACE DE FRANCE", + "owner:ref:FR:SIREN": "240600585", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-05;2022-08-03", + "ref:EU:EVSE": "FRA16PWIIZ19051;FRA16PWIIZ19041;FRA16PWIIZ19031;FRA16PWIIZ19011;FRA16PWIIZ19021", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93897700000, + 43.54578800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/sarrbcovoit", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2609725589323868782", + "ref": "454461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04749000000, + 48.71900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Brit Hotel - Perpignan", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PBRTPPN", + "amenity": "charging_station", + "start_date": "2023-09-05", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88474010153, + 42.65967905084 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "capacity": "3", + "description": "Réseau eborn/FR*EBN*PQPPN534ID0", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPQPPN534ID0", + "socket:type2_combo:output": "43 kW", + "ref": "32980", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38994400000, + 44.40626700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/B65645AC-C921-4551-8562-ED955671A054", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP492330902065636165", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "922101", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40909400000, + 43.26484100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "ARCACHON - Centre ville Plage", + "capacity": "27", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2020-07-01;2024-01-11;2022-11-28", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E330090011;FRP07E33009001;FRP07E330090012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17140900000, + 44.66184200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPD5L0ETPPMV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "D5L0ETPPMV;32713", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/D5L0ETPPMV;Valence, Pont du Rhône" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88526500000, + 44.93144800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "756876;KBHAWTZPA1", + "amenity": "charging_station", + "capacity": "6;9", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPKBHAWTZPA1;FRECHP3433731997163458843", + "start_date": "2023-03-08", + "description": "Easy Charge/KBHAWTZPA1;Châteaubriant, Le Général", + "network": "Easycharge services;Easy Charge", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38764300000, + 47.70494600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP143025;FRVIAP143031", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-06-22", + "description": "ENGIE Vianeo - Epinal - BMI Parking P1", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45747100000, + 48.17742100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/KETVBA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5589515274887156005", + "charging_station:output": "22 kW", + "ref": "1009284", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24099300000, + 45.87718400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1006", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "ref": "FR*V75*PPX10*06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue du Buisson Saint Louis 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37248200000, + 48.87179000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile/JNCVUHJ9T2", + "ref": "574526", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4195586205035563177" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43081000000, + 45.56770200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "100 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "operator:email": "support@driveco.com", + "description": "BMW Mini - Juvisy sur Orge", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRSSDPINDIGO912601", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37159000000, + 48.68765200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "735264", + "amenity": "charging_station", + "network": "SYDED", + "description": "SYDED/GQUH2Z082H", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "socket:type2_combo:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25P8540250873721604314", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27218100000, + 47.14774400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS18E96889", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BOURGES - Lahitolle", + "ref:EU:EVSE": "FRS18E96889", + "network": "MODULO - BOURGES - Lahitolle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41563200000, + 47.08144000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "description": "MILON LA CHAPELLE - Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78406001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04958320000, + 48.72664260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - 28006 CHARTRES - REPUBLIQUE", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FRQPKPQPRK551;FRQPKPQPRK541;FRQPKPQPRK531;FRQPKPQPRK521", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "QPARK", + "start_date": "2022-12-12", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*5*3*_*_;FR*SOD*S*QPRK*5*2*_*_;FR*SOD*S*QPRK*5*4*_*_;FR*SOD*S*QPRK*5*5*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48109900000, + 48.44655900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2017-10-12", + "description": "CASTRES - Parking College Jean Jaures", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106500122;FRS81E8106500111;FRS81E8106500112;FRS81E8106500121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23744877838, + 43.60814930571 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE410300", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Lochères", + "start_date": "2019-12-12", + "ref": "FRIONE410300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21279500000, + 45.61178700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "description": "ST JOSEPH - Parking de la Mairie", + "ref:EU:EVSE": "FRS50P507002", + "socket:type2_combo:output": "100 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52734700000, + 48.53346900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77486A;FRS77E77486001", + "ref": "01F5ZAKH61BST212NKJMVXM29X", + "start_date": "2023-05-25;2016-08-31", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Vaudoy-en-Brie;VAUDOY-EN-BRIE - Place De L'Église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08020500000, + 48.68838500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "REL.ORLEANS GIDY", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "owner:ref:FR:SIREN": "531680921;531680920;531680916;531680915;531680917;531680918;531680919;531680914", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRHPCPNF080172", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-01-30;2022-12-28;2022-12-21;2023-02-07", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86030000000, + 47.97610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E244572;FRS41E244573", + "charging_station:output": "0 kW", + "ref": "FRS41E244572;FRS41E244573", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - DHUIZON - Salle des fêtes", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - DHUIZON - Salle des fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65813400000, + 47.59010400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/CVJQYU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PCVJQYU", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "22005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78023000000, + 47.63260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON20111;FRGLYPLYON20112", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-04-03", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*201*1*_*_", + "description": "LY101 - QUAI SAINT-VINCENT - MARTINIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82702000000, + 45.76834890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "description": "Metropolis - Proximité - Issy-les-Moulineaux - Ernest Renan", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28357617000, + 48.82950414000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPHESSOPEL257701", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2019-12-26", + "operator:email": "support@driveco.com", + "description": "Opel - HESS - Besançon", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93932500000, + 47.21562200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76681001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SOTTEVILLE LES ROUEN - Hôtel de ville", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-06;2021-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08959910000, + 49.41453310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/YJFU0A6IJ3", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P6957545784281511697", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "892731" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558900000, + 43.50467800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Sainte Colombe | Parking Mairie;SAINTE COLOMBE - PARKING MAIRIE", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB33*133*1*_*_;649142f0-450d-5183-abb3-dd28f8035068", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "FRS33PMB3313312;Non concerné;FRS33PMB3313311", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06199000000, + 44.87916900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95580001", + "start_date": "2024-06-28;2024-04-23", + "description": "SAINT-WITZ - Parking du gymnase/rue Robquin", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56036960000, + 49.08869870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSITE00000184", + "operator": "Allego", + "start_date": "2023-12-18", + "description": "LAON - BERTRAND", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65540631000, + 49.56875824000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/OTM9WEDT93", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454311", + "ref:EU:EVSE": "FRLE2P2754846470345530362", + "capacity": "40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157000000, + 44.95960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Charleval, Place André Leblanc", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PROAELTYHGN", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24671100000, + 43.71960900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P3256424230784824911", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402707", + "description": "SDEY/ZMWXUS8EQA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60794300000, + 47.76733400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CANNES PARKING BRAILLE", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ4012;FRA16PWIIZ4011", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-07-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*40*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02220500000, + 43.55481700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Th,Mo,Tu,We 07:30-21:30,Sa 10:00-23:45,Su 10:00-22:00,Sa,Su 00:00-01:00,Fr 07:00-23:45", + "ref:EU:EVSE": "FRFR1P8827278517584103616", + "description": "Freshmile France/M1POXHVSQW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "14", + "charging_station:output": "50 kW;100 kW;7.4 kW;22 kW", + "socket:type2_combo:output": "50 kW;100 kW", + "ref": "471105", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344400000, + 48.91954800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Retail Park L'Aigle (61)", + "charging_station:output": "187.5 kW;50 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PRPAAIG", + "start_date": "2024-09-25", + "capacity": "9", + "operator": "Power Dot France", + "socket:type2_combo:output": "187.5 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64528679957, + 48.75995477757 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/NVJ5E3O6YT", + "ref:EU:EVSE": "FREBNNVJ5E3O6YT", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "50758" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91776200000, + 43.41243000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1057116", + "ref:EU:EVSE": "FREVZP6813462562115270166", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENGIE MAMP - Bornes publiques/2F061F64-F827-46D6-87E9-71779D0CA6BA", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38010600000, + 43.31006400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-06-02", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR64511;FROTHPOTHR64512", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*645*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "INTERMARCHE - ONCY-SUR-ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46699300000, + 48.39349900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPX2OY3JOEPQ;FREBNX2OY3JOEPQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/X2OY3JOEPQ;Salernes, Place Clemenceau", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "X2OY3JOEPQ;75353", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23322500000, + 43.56287800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "KZDPHHY9QV;32755", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPKZDPHHY9QV", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/KZDPHHY9QV;Laffrey, Camping Grandes Sagnes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77562600000, + 45.02077700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "capacity": "1;2", + "start_date": "2022-10-14;2022-03-14", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR33752;FROTHPOTHR33751;FROTHPOTHR33741;FROTHPOTHR33731;FROTHPOTHR33721;FROTHPOTHR33711;FROTHPOTHR33761;FROTHPOTHR33762", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "SUPER U - GRAND-FORT-PHILIPPE", + "ref": "FR*SOD*S*OTHR*337*3*_*_;FR*SOD*S*OTHR*337*2*_*_;FR*SOD*S*OTHR*337*1*_*_;FR*SOD*S*OTHR*337*4*_*_;FR*SOD*S*OTHR*337*5*_*_;FR*SOD*S*OTHR*337*6*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11142200000, + 50.98890400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLSONFL1B1X9AH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3832497008156408206", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1086561", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16173800000, + 49.13587200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1537", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX15*37", + "opening_hours": "24/7", + "description": "Paris | Place du Commerce 5", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29213600000, + 48.84545050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.21042190000, + 49.97188760000 + ], + [ + 1.21035220000, + 49.97182890000 + ], + [ + 1.21030120000, + 49.97181510000 + ], + [ + 1.21018050000, + 49.97179270000 + ], + [ + 1.21003570000, + 49.97181510000 + ], + [ + 1.20937050000, + 49.97223430000 + ], + [ + 1.20931150000, + 49.97238270000 + ], + [ + 1.20933030000, + 49.97250860000 + ], + [ + 1.20941340000, + 49.97257760000 + ], + [ + 1.20962370000, + 49.97270750000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "705944", + "description": "Freshmile France/KWJ35E2BFJ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1749976670074055101", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97103900000, + 49.53518700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPEDENAUTOBMW110001", + "start_date": "2022-05-30;2022-05-19", + "operator:email": "support@driveco.com", + "description": "BMW - Carcassonne", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38547100000, + 43.20741200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "ref:EU:EVSE": "FRS27PVERNEUILGARE", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900049", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92948800000, + 48.74251000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Lanvollon-Rue des fontaines", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22121001", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98305210000, + 48.63135020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": " Intermarché - Challans - 22kw AC ;Intermarché - Challans - 22kw AC ", + "ref:EU:EVSE": "FRZIME22AC128390;FRZIME22AC128389", + "start_date": "2022-04-08", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "ref": "128389;128390", + "charging_station:output": "22 kW", + "network": "ITM CHALLANS DISTRIBUTION", + "owner:ref:FR:SIREN": "487080210", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28688170000, + 45.61908760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE247", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "description": "Avenir_Communication", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11873600000, + 47.40626820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BUCHELAY - Rue Du Lot", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78118004", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67391400000, + 48.99010100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIOYE410353;FRIOYE410352;FRIOYE410306;FRIOYE410303;FRIOYE410302;FRIOYE410305;FRIOYE410351", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE410353;FRIOYE410352;FRIOYE410306;FRIOYE410303;FRIOYE410302;FRIOYE410305;FRIOYE410351", + "network": "Lochères", + "opening_hours": "24/7", + "description": "Lochères", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50182511000, + 47.30967912000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/B3UGVAMI5V", + "ref:EU:EVSE": "FRS52P8206737892717361840", + "operator:email": "roaming@freshmile.com", + "ref": "378654", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62113700000, + 47.89594300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRS65E65440002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "TARBES - Place Brauhauban", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07488600000, + 43.23129500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE005302;FRIENE005301", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Couleuvre", + "start_date": "2023-03-09", + "description": "Couleuvre", + "ref:EU:EVSE": "FRIENE005302;FRIENE005301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89676700000, + 46.67597600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34310001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "THEZAN LES BEZIERS - Parking Impasse Georges Rastoul", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16800277778, + 43.42194170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61121D", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "L'AIGLE - Médiathèque", + "ref": "SE61-LAIG-004", + "start_date": "2017-12-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62515590000, + 48.76630410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9079560925301616175", + "ref": "892041", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLHU7YHXF1J6VY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16492300000, + 41.39052100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PSFQDKY", + "ref": "79765", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/SFQDKY", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16670000000, + 43.29870100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92004002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-06-02", + "capacity": "0", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - Rue Henri Say" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27698500000, + 48.91528500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW - Garage Alart Perpignan - 66000 - 1", + "network": "BMW - Garage Alart Perpignan - 66000 - 1", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRCG0E000134;FRCG0E000135;FRCG0E000136", + "ref": "FRCG0E000134;FRCG0E000135;FRCG0E000136", + "start_date": "2022-05-02", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84836487000, + 42.69347043000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE11511;FRM06PNICE11521", + "ref": "FR*SOD*S*NICE*115*2*_*_;FR*SOD*S*NICE*115*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "start_date": "2021-02-02", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "BONSON - PARKING STADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18720921842, + 43.86209150424 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e20940c8-309f-5eae-8e75-42d857a99090", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Peyrehorade | Parking Arrière Piscine", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10154800000, + 43.54379700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE57ABFA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "Rue nationale - APACH", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-26", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52868100000, + 49.41339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Intermarché SUPER - Longeville-sur-Mer", + "ref": "226851;226850;226852;226849", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS226851;FRBMPS226852;FRBMPS226850;FRBMPS226849", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49681770000, + 46.42448780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "DIVION Freres Caron", + "ref:EU:EVSE": "LFR3368EVCP01", + "ref": "LFR3368EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52174400000, + 50.47162500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PGKPELSRB0P", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-7E, 7 Place Saint-Victor", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36607900000, + 43.29068500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "description": "TE90/XCGVER", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRS90PXCGVER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref": "135589" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891000000, + 47.63470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990STRLICES", + "amenity": "charging_station", + "start_date": "2013-02-01", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref": "FR*55C*P83990*STR*LICES", + "operator:email": "contact@e55c.com", + "description": "PARKING ESPACE DES LICES ST TROPEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64061200000, + 43.26950700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3693EVCP01;LFR3693EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3693EVCP01;LFR3693EVCP02", + "description": "TOULON Deville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97931500000, + 43.12855100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUSRB", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Système U - Sarralbe", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02652753824, + 48.98512624088 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "JOLS2OGPGU;182684", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJOLS2OGPGU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/JOLS2OGPGU;Saint-Romain-Les-Atheux, Saint Romain les Atheux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37620300000, + 45.35628000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "description": "Fastned Quimper", + "socket:type2_combo:output": "400 kW", + "charging_station:output": "400 kW", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "853300010", + "ref:EU:EVSE": "FRFASE33219", + "start_date": "2023-12-21", + "ref": "FRFASE33219", + "network": "Fastned Quimper" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07520700000, + 48.01224200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E06004001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare d'Antibes - EFFIA", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12014000000, + 43.58715000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/JJAKCW9HAW", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP1253398022874090733", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "399008", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82656200000, + 44.31360400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/G9AWPT4DAO", + "ref": "301198", + "ref:EU:EVSE": "FREBNPG9AWPT4DAO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06957000000, + 43.12051300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IBIS BUDGET - AIX EN PROVENCE", + "start_date": "2022-08-30", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "HOTELS IBIS", + "ref": "FR*SOD*S*OTHR*458*3*_*_;FR*SOD*S*OTHR*458*2*_*_;FR*SOD*S*OTHR*458*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR45832;FROTHPOTHR45831;FROTHPOTHR45822;FROTHPOTHR45821;FROTHPOTHR45811;FROTHPOTHR45812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36881100000, + 43.49518600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5227474224482128459", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/OUGLHBJSNW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "493374", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16647200000, + 47.01609600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "description": "Anatole France Danton-Douanes", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-02", + "ref:EU:EVSE": "FRUBIE10008344;FRUBIE10085447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12268700000, + 49.49491600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471174", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4021477112375782655", + "description": "Freshmile France/SHP7YQXTW6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87766500000, + 45.81031100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31149055", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-05-04", + "description": "COLOMIERS - 6 Esplanade des Ramassiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35333000000, + 43.59987000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,We,Th,Tu 09:00-19:00,Mo 09:00-17:00,Sa 09:00-18:00", + "ref": "419085", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/AVPIZQYZVQ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P402801486901377578" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32366000000, + 46.55260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1138386", + "opening_hours": "24/7", + "network": "MobiSDEC", + "description": "MobiSDEC/LLW545C4AY8144", + "ref:EU:EVSE": "FRS14P1449926250798536090", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19841100000, + 48.89591500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "owner:ref:FR:SIREN": "448762948", + "capacity": "1", + "start_date": "2023-08-09", + "description": "Zephyre/LP0095A4;Zephyre/LP009585;Logis Hôtel le Sablier du Temps", + "network": "Zephyre;Logis Hôtel le Sablier du Temps", + "opening_hours": "24/7", + "ref": "576302;576227;f90fc6a4-4943-4382-8f05-36480ed03b69", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr", + "ref:EU:EVSE": "FRZP1P130808;FRZP1P1205428895193813039;FRZP1P130798;FRZP1P77510403740869898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93734300000, + 45.09483400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-10", + "ref:EU:EVSE": "FRS11E11367001", + "network": "Reveo", + "description": "SAISSAC - Saint Jean" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16111111111, + 43.36222220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78049002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-01-08", + "network": "Seymaborne", + "description": "BAZEMONT - Ecole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86546000000, + 48.92764000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "description": "CCTLB - Parking Bichat-Lunéville", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ee83d86f-c98b-54f8-b06b-edab3ab18a60", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50647000000, + 48.58483500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66228001", + "network": "Reveo", + "description": "VILLENEUVE DE LA RIVIERE - Avenue Du Canigou", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80083500000, + 42.69298000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIKAPIKEA3491;FRIKAPIKEA3481;FRIKAPIKEA3461;FRIKAPIKEA3451;FRIKAPIKEA3441;FRIKAPIKEA3431;FRIKAPIKEA34101;FRIKAPIKEA3411;FRIKAPIKEA3421;FRIKAPIKEA3471", + "description": "IKEA PLAISIR - PARKING COLLABORATEURS BS", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "start_date": "2021-12-27", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*34*6*_*_;FR*SOD*S*IKEA*34*5*_*_;FR*SOD*S*IKEA*34*4*_*_;FR*SOD*S*IKEA*34*2*_*_;FR*SOD*S*IKEA*34*10*_*_;FR*SOD*S*IKEA*34*1*_*_;FR*SOD*S*IKEA*34*3*_*_;FR*SOD*S*IKEA*34*7*_*_;FR*SOD*S*IKEA*34*8*_*_;FR*SOD*S*IKEA*34*9*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96782000000, + 48.83056400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "description": "LA RICHARDAIS - 4 rue jean langlais ", + "ref:EU:EVSE": "FRS35P35241001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03614700000, + 48.60751000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref": "518276", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "start_date": "2022-10-19", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63070*A;SIEG63 - ePremium - Ceyrat - Vialle", + "ref:EU:EVSE": "FRS63P63070A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06021700000, + 45.73998400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5172388202181984219", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VZL9GPAYNT", + "operator": "Freshmile | FR*FR1", + "ref": "598068" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42815700000, + 43.20517600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS32PTURUTF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "21836", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/TURUTF", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04601900000, + 43.60440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PANTIN - Rue des Grilles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE93055006", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2024-06-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40959444527, + 48.89090241432 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-08-22", + "amenity": "charging_station", + "ref": "FRCG0EXX1162;FRCG0EXX1134;FRCG0EXX1133;FRCG0E001140;FRCG0E001130;FRCG0E001128;FRCG0E001125;FRCG0E001123;FRCG0E001122;FRCG0E001120;FRCG0E001119;FRCG0E001121;FRCG0E001124;FRCG0E001126;FRCG0E001127;FRCG0E001129;FRCG0E001131;FRCG0E001132;FRCG0E001139;FRCG0EXX1161", + "capacity": "20", + "opening_hours": "24/7", + "network": "PLD Auto - Audi Aix les Milles - 10A", + "description": "PLD Auto - Audi Aix les Milles - 10A", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;7 kW", + "ref:EU:EVSE": "FRCG0EXX1134;FRCG0EXX1133;FRCG0E001140;FRCG0E001130;FRCG0E001128;FRCG0E001125;FRCG0E001123;FRCG0E001122;FRCG0E001120;FRCG0E001119;FRCG0E001121;FRCG0E001124;FRCG0E001126;FRCG0E001127;FRCG0E001129;FRCG0E001131;FRCG0E001132;FRCG0E001139;FRCG0EXX1161;FRCG0EXX1162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41207700000, + 43.50838400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-03", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING BARLA", + "ref:EU:EVSE": "FRM06PNICE23111;FRM06PNICE23112", + "ref": "FR*SOD*S*NICE*231*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28634666324, + 43.70080685285 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "6306d2b1-1953-59ea-bc42-ae386a39b4d9", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Boe | Rue Rigoulet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63034800000, + 44.17993500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE37111;FRSIGPSIGE37112", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*371*1*_*_", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "description": "SIGEIF - 2 RUE MARCELIN BERTHELOT PARKING DE LA GARE - LA FRETTE-SUR-SEINE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18100000000, + 48.97960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-09-30", + "ref:EU:EVSE": "FRC01E76366001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE HOULME - Place des Canadiens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03936300000, + 49.50693600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "BRIVE LA GAILLARDE Alvitre", + "ref:EU:EVSE": "LFR3436EVCP01;LFR3436EVCP02", + "ref": "LFR3436EVCP01;LFR3436EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50917000000, + 45.15313400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bourganeuf | Route de la Cascade", + "operator": "194__SDEC23", + "ref": "9f573482-10db-5698-990c-f56ab2fe6ac8", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75600400000, + 45.94936800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PFAUDOAS", + "opening_hours": "24/7", + "ref": "38959", + "charging_station:output": "22 kW", + "network": "SDE82", + "description": "SDE82/faudoas", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95794000000, + 43.82500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P84440*RBN*R0ULET", + "amenity": "charging_station", + "start_date": "2024-08-12", + "capacity": "1", + "ref:EU:EVSE": "FR55CP84440RBNR0ULET", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "RUE OSCAR ROULET - ROBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10764100000, + 43.84732400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3691EVCP01", + "description": "NANTES Beaujoire", + "ref": "LFR3691EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51030000000, + 47.25882600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Intermarché - Longwy", + "start_date": "2023-11-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMLGW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75122991874, + 49.51544798089 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP5870937904353530936", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/YJUCBYQK33", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "749469" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91472100000, + 46.06752100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP69259A", + "amenity": "charging_station", + "description": "e-Totem - SUPER U Vénissieux", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP69259A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85862387143, + 45.73039575142 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Cinéville - Saint-Sébastien-sur-Loire", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "capacity": "9", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCINSSB", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48887081933, + 47.19050474368 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-11-16", + "amenity": "charging_station", + "description": "Carrefour Market - Château-Landon", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT775701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69544700000, + 48.14536600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "description": "Saint-Jean-de-Védas - Kyriad Direct", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPSJVHC", + "start_date": "2022-09-29", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571000000, + 43.56750500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "BRICORAMA - BEAUNE", + "ref:EU:EVSE": "FROTHPOTHR57222;FROTHPOTHR57211;FROTHPOTHR57212;FROTHPOTHR57221", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "start_date": "2023-02-01", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*572*1*_*_;FR*SOD*S*OTHR*572*2*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84548300000, + 47.04162000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6759465", + "description": "SONEPAR MELUN", + "network": "SONEPAR MELUN", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6759465", + "start_date": "2023-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69564300000, + 48.53262300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1309134237720311786", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIN9KDH82BXV2", + "ref": "896610" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10150300000, + 47.81070500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9007*03", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900703", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Avenue de Villars 9", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31368000000, + 48.85266500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4563118303755830205", + "ref": "971831", + "description": "Freshmile France/LLMOKWYAL1AJBP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37775300000, + 50.06360600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRTSLP1747", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Tesla Supercharger Lille - Lesquin", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08988800000, + 50.58336800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLTWZYR9UJGGUL", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8414946029220339437", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1069263", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.04868100000, + 14.61652100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "LOCKIT", + "ref:EU:EVSE": "FR0NXPOOL3LXWP", + "operator": "NEXTENEO", + "description": "LOCKIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74172800000, + 45.98055800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1084863", + "ref:EU:EVSE": "FRS14P5454677968205067293", + "opening_hours": "24/7", + "network": "MobiSDEC", + "description": "MobiSDEC/LLV6MC8GS1QD4Y", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45451600000, + 49.32778000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12213001", + "charging_station:output": "22 kW", + "start_date": "2021-08-11;2021-08-12", + "network": "Reveo", + "description": "SAINT BEAUZELY - Avenue Déodat Alaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95800800000, + 44.16653800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATL2XGT9WUL", + "network": "WAAT", + "ref": "805263", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA5P844826557877760265", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33075200000, + 46.15150800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-19", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Sarrigne - Mairie", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49326A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38316600000, + 47.50183200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-25", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "description": "FIAC - Allée du Golf", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81092001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93803550000, + 43.67436460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS VALENCE DAME BLANCHE", + "capacity": "8", + "amenity": "charging_station", + "ref": "FRHPCPNF007357", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681441;531681437;531681435;531681436;531681434;531681438;531681439;531681440", + "start_date": "2023-05-11;2023-09-26;2023-05-09", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF007357", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90841800000, + 44.94020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46087001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "DEGAGNAC - Garage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31251600000, + 44.66479300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "298642", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56POTFVUHHRFE", + "charging_station:output": "22 kW", + "description": "Mobilité électrique 56/OTFVUHHRFE", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22297200000, + 47.36830500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "VALENCIENNES - Boulevard d'Harpignies", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59606006", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52847300000, + 50.36395600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "description": "Ploumoguer-Rue du Stade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2920100", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.72291100000, + 48.40317500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-03-30", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "LE PERREUX SUR MARNE - Rue Gallieni", + "ref:EU:EVSE": "FRSIPE94058004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50396600000, + 48.85112100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Saint Nazaire Trignac", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP90230123", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20967400000, + 47.29162300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Sagelat | Auberge de la Nauze (Parking)", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "ffa80fb5-4fd1-5a46-ba78-495cf36c75bc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01218500000, + 44.78662500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 13 RUE PAUL BELMONDO - NOISY-LE-GRAND", + "ref": "FR*SOD*S*SIGE*483*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE48312;FRSIGPSIGE48311", + "network": "SIGEIF", + "start_date": "2024-04-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55399990000, + 48.83422570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "PUGET SUR ARGENS", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-23", + "ref:EU:EVSE": "FRALLPEVCARSPUGETS", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70375800000, + 43.44371600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "1;2;4", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "ITM CLERMONT DE L'OISE 2;ITM CLERMONT DE L'OISE 1;ITM ST GEORGES DE MONS;MAIRIE ORMOY VILLERS;SUPER U BRUAY SUR L'ESCAUT;ITM PIERRE DE BRESSE ;MAIRIE PEROY LES GOMBRIES", + "ref:EU:EVSE": "FRLIBP003740000001958;FRLIBP003740000001891;FRLIBP003740000001861;FRLIBP003740000001894;FRLIBP003740000001935;FRLIBP003740000001936;FRLIBP003740000001947", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "description": "ITM CLERMONT DE L'OISE 2;ITM CLERMONT DE L'OISE 1;ITM ST GEORGES DE MONS;MAIRIE ORMOY VILLERS;SUPER U BRUAY SUR L'ESCAUT;ITM PIERRE DE BRESSE ;MAIRIE PEROY LES GOMBRIES", + "ref": "FRLIBP003740000001958;FRLIBP003740000001891;FRLIBP003740000001861;FRLIBP003740000001894;FRLIBP003740000001935;FRLIBP003740000001936;FRLIBP003740000001947", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0E-11, + 0E-11 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "e6668fd8-fe4e-55a9-8262-b87848c72a0a", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Biarritz | Rue Raoul Follereau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54894500000, + 43.48694200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "charging_station:output": "50 kW;43 kW", + "description": "LA CHATAIGNERAIE - Avenue du Géneral de Gaulle - Parking Super U", + "start_date": "2024-05-16", + "ref:EU:EVSE": "FRS85E85059002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74649500000, + 46.64659500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "capacity": "8", + "ref": "FRALLEGO8009012;FRALLEGO8009001;FRALLEGO8009002;FRALLEGO8009011;FRALLEGO8009021;FRALLEGO8009022;FRALLEGO8009031;FRALLEGO8009032", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO8009012;FRALLEGO8009001;FRALLEGO8009002;FRALLEGO8009011;FRALLEGO8009021;FRALLEGO8009022;FRALLEGO8009031;FRALLEGO8009032", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Drome Energies Bourg de Peage", + "network": "Allego Drome Energies Bourg de Peage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03791250000, + 45.00604050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST CHAMOND", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2993EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2993EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52003600000, + 45.47888200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "ref:EU:EVSE": "FRPD1PLAVGRA", + "opening_hours": "24/7", + "description": "Restaurant La Villa Bersol - Gradignan", + "start_date": "2024-02-27;2024-02-26", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64093103146, + 44.77455462133 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPVHUBJ7QBC6;FREBNP961137379097451312", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref": "346955;VHUBJ7QBC6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/VHUBJ7QBC6;Le Val, Pkg. de la Mairie Place de la Libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07231100000, + 43.43909800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Camping la Boutinardière", + "owner:ref:FR:SIREN": "403747389", + "start_date": "2023-05-23", + "amenity": "charging_station", + "capacity": "1", + "ref": "VQG0D15002", + "ref:EU:EVSE": "FREVMPVQG0D15002", + "opening_hours": "24/7", + "charging_station:output": "20 kW", + "description": "Camping La Boutinardière", + "socket:type2_combo:output": "20 kW", + "operator:email": "support@evmap.fr", + "operator": "EV MAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05460020000, + 47.09791580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PETXTHV", + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-27", + "description": "McDonald's - Thionville", + "opening_hours": "24/7", + "charging_station:output": "50 kW;100 kW", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13936184233, + 49.35795211517 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "ref:EU:EVSE": "FRE11PLMGRENOBLE381201", + "amenity": "charging_station", + "description": "Leroy Merlin - Saint-Egrève - Grenoble", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-10-28;2017-03-20", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66494900000, + 45.24200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2022-11-29", + "ref:EU:EVSE": "FRESEPS42275AE", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SEMOB Albert Raimond", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42275AE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37788800000, + 45.46773100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "INRS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*14*2*_*_;FR*SOD*S*OTHR*14*1*_*_", + "start_date": "2018-06-19", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR1412;FROTHPOTHR1411;FROTHPOTHR1421;FROTHPOTHR1422", + "network": "TIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15279300000, + 48.65226900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "BORNE KYRIAD STATION 1", + "ref": "FRCPIE6941005", + "network": "BORNE KYRIAD STATION 1", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6941005", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26815200000, + 46.19768400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896667", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Freshmile France/ZKPBHRQOWL", + "ref:EU:EVSE": "FRFR1P5963379306337892238", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98105700000, + 43.42576600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL FRÉJUS PUGET-SUR-ARGENS", + "ref:EU:EVSE": "FRVIAP639926", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71351900000, + 43.43880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "465996", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P177909794449258059", + "charging_station:output": "22 kW", + "description": "Freshmile France/DTYZ0PBUZR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84741000000, + 44.68418500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPAUTODIFHYUNDAI130111", + "description": "Hyundai - Autodif - La Valentine", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49023100000, + 43.29098200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1177116", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLTE03SDKY8ZDE", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2486996245299970521", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.33640500000, + -20.95857400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E130014", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS28E130014", + "network": "MODULO - ORGERES-EN-BEAUCE - Rue de l'Arsenal", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - ORGERES-EN-BEAUCE - Rue de l'Arsenal", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68281900000, + 48.14601200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6600733831549710428", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/XOUSTRWIIJ", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "462021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37125900000, + 49.18035900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LL1OA0T5O", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1127922", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P6108355298406895035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42703600000, + 48.81817800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-20", + "ref:EU:EVSE": "FRS50P50341001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "MONTEBOURG - Place de la Mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38201920000, + 49.48788260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "description": "REALMONT - Place Corduries", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-06-14", + "ref:EU:EVSE": "FRS81E8122200222;FRS81E8122200211;FRS81E8122200212;FRS81E8122200221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18720603000, + 43.77533721900 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "REL.LES VOLCANS-D'AUVERGNE EST VL", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF070641", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF070641", + "network": "TotalEnergies Charge Rapide", + "start_date": "2022-08-05", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680558;531680557;531680555;531680554;531680552;531680559;531680556;531680553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11460000000, + 46.05730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-04;2021-06-07", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Angers - Lafayette;ANGERS - Place Lafayette", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49007R;FRS49E49007018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55306900000, + 47.46292500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "48961", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/Chamblydg", + "ref:EU:EVSE": "FRS60PCHAMBLYDG", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24680000000, + 49.16560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH07E59390001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "MASNY - Rue des Hallots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20407900000, + 50.33764300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30041001", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BLAUZAC - Rd736" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36701400000, + 43.96427200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le faouët - Rue Cours Carré", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PHGVJHQ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49935400000, + 48.03215900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2024-03-01", + "description": "ENGIE Vianeo - B&B Hôtel Quimper Nord Douarnenez", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP90186484", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07410800000, + 48.01151100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2023-01-26", + "description": "Métropolis/FR*MGP*P93066*G;Metropolis - Citadine - Saint-Denis - 19 mars 1962", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93066G", + "ref": "484832", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408000000, + 48.94793900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "description": "Shell Criquetôt - Le Havre", + "operator:email": "customerservice@shellrecharge.com", + "capacity": "7", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "FRSHEE183;FRSHEE182", + "charging_station:output": "150 kW;125 kW;22 kW", + "network": "Shell Criquetôt - Le Havre", + "ref:EU:EVSE": "FRSHEE183;FRSHEE182", + "opening_hours": "24/7", + "start_date": "2023-08-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26538000000, + 49.64421600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUTEL EUROPE GmbH/250", + "operator:email": "evsupport.eu@autel.com", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "29 kW", + "socket:type2_combo:output": "29 kW", + "opening_hours": "24/7", + "ref": "1111119", + "network": "AUTEL EUROPE GmbH", + "operator": "Autel Netherlands B.V. | FR*AUT", + "ref:EU:EVSE": "FRAUTP7665116343507410757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22322900000, + 48.89573300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A13 Morainvilliers Sud", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89370717", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95122900000, + 48.94198100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2bcf4cb4-8f69-5623-8cf7-b6e29afa3354", + "operator": "203__SEHV", + "description": "MOBIVE | Bosmie L'Aiguille | Rue Jean Ferrat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20466400000, + 45.77837800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Boulangerie Ange - MONTATAIRE", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-07-13", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE60MABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45372500000, + 49.25893400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRALLEGO9006882;FRALLEGO9006881;FRALLEGO9000971;FRALLEGO9000972;FRALLEGO9006721;FRALLEGO9006722", + "network": "Allego Carrefour Thiers", + "description": "Allego Carrefour Thiers", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9006882;FRALLEGO9006881;FRALLEGO9000971;FRALLEGO9000972;FRALLEGO9006721;FRALLEGO9006722", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50925800000, + 45.83977900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOURCOING Forest", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR3717EVCP09;LFR3717EVCP08;LFR3717EVCP01;LFR3717EVCP02;LFR3717EVCP03;LFR3717EVCP04;LFR3717EVCP05;LFR3717EVCP06;LFR3717EVCP07", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "15", + "charging_station:output": "360 kW;22 kW;180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "360 kW;180 kW", + "ref:EU:EVSE": "LFR3717EVCP09;LFR3717EVCP08;LFR3717EVCP01;LFR3717EVCP02;LFR3717EVCP03;LFR3717EVCP04;LFR3717EVCP05;LFR3717EVCP06;LFR3717EVCP07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16092700000, + 50.73769300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PBV9ES5PSGD", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-14E, Boulevard Simon Bolivar", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00000000000, + 43.34564000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSXRR7LO13E;FREBNP1661224837919936273", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Toulon, Parking Ange SICCARDI;Réseau eborn/SXRR7LO13E", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2022-09-27", + "ref": "SXRR7LO13E;741114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98291300000, + 43.12874300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/Z7C3K9UPQY", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626345", + "ref:EU:EVSE": "FRFR1P3894964808909583980", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13410900000, + 47.90784900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PINTJAR", + "opening_hours": "24/7", + "operator": "Power Dot France", + "description": "Intermarché - Jarny", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-03-19;2024-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87234277826, + 49.16127714366 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/D321K1JB15;Toulon, Pkg co-voiturage Escaillon, Route de Marseille", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-01-11", + "opening_hours": "24/7", + "ref": "D321K1JB15;369007", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP2308014825515114164;FREBNPD321K1JB15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738000000, + 43.12855000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1005432", + "capacity": "8", + "network": "Road", + "opening_hours": "We,Mo,Sa,Fr,Su,Th,Tu 08:00-18:00", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP5161568142685160845", + "description": "Road/657c2335012133001b36eda2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83347000000, + 48.75580800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*254*1*_*_;FR*SOD*S*OTHR*254*2*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR25411;FROTHPOTHR25421", + "network": "ADVANCED CONFORT SYSTEMS", + "opening_hours": "24/7", + "start_date": "2021-10-07", + "description": "ADVANCED CONFORT SYSTEMS - BRESSUIRE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47511000000, + 46.83676500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6603165", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6603165", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "LUMELEC MAZEROLLES", + "network": "LUMELEC MAZEROLLES", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69196900000, + 46.40792600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLOIDUQLH1PNC0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6700859634214230659", + "ref": "971948" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21990000000, + 46.16936900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s488740", + "network": "WAAT", + "amenity": "charging_station", + "ref": "1152222", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA2P8409681554101304388", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68993300000, + 45.24738800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7284211291069355160", + "ref": "1173273", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLYZREV7CDFX94" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59723300000, + 44.83191200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALFEN 2x22 MG VENISSIEUX B (Parking Extérieur);ALFEN 2x22 MG VENISSIEUX A (Parking Extérieur)", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSWSE1234623318;FRSWSE1234623329", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "ref": "1234623318;1234623329", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2024-02-26", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88033500000, + 45.72043900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "446576", + "description": "Freshmile France/RC3V7VKDRM", + "ref:EU:EVSE": "FRFR1P2711446579171490353", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62090400000, + 47.46554000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "14", + "ref:EU:EVSE": "FRSSDPCLINIQUEFINOSELLO200901", + "opening_hours": "24/7", + "description": "Clinique Ajaccio - Finosello", + "start_date": "2024-09-26", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.74724600000, + 41.94435500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Rue Jean-Michel Hérault", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "lionel.chauvet@energie28.fr", + "owner:ref:FR:SIREN": "200080869", + "ref:EU:EVSE": "FRS28ESDE28TREON1B1P1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FR*S28", + "operator": "ENERGIE EURE-ET-LOIR", + "start_date": "2020-11-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32233500000, + 48.67621200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "74984", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/CXZBMR0ZO1", + "ref:EU:EVSE": "FRS10P2253469607379458316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70807700000, + 48.23399200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P8331665115953408864;FRZP1P6634048017261143360;FRZP1P3249272031182845564;FRZP1P8894615875131254016", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP200228;Zephyre/LP200233;Zephyre/LP20022C;Zephyre/LP20022B", + "ref": "1114185;1114110;1114122;1114170", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76794200000, + 47.63940600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265952;839265953", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE624", + "operator": "RossiniEnergy", + "description": "Ferme_aux_3_Granges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21209280000, + 45.62612620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77475B", + "opening_hours": "24/7", + "ref": "2481c84b-d649-4785-ac68-f93f18a42fbd", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Trilport - Mairie - DC", + "start_date": "2024-06-18", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94724600000, + 48.95867500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - LYON CHARCOT", + "ref": "FR*SOD*S*FAST*140*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST14011;FRIZFPFAST14012;FRIZFPFAST14013", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-04", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80533229509, + 45.75435036458 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BLOIS - Quai Saint Jean", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BLOIS - Quai Saint Jean", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E4539;FRS41E4540", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E4539;FRS41E4540" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33891400000, + 47.58797400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PVILLERS", + "opening_hours": "24/7", + "ref": "38827", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Villers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39031000000, + 49.20750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-02-04", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*54*2*_*_;FR*SOD*S*LYON*54*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON5421;FRGLYPLYON5411;FRGLYPLYON5412;FRGLYPLYON5422", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "description": "TDL02 - HOTEL DE VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77823700000, + 45.76080400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT LAURENT DES ARBRES - Parking Centre Socio-Culturel", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30278001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69815000000, + 44.05299300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PFSRMLH", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-10-13", + "description": "Guéhenno - Parking Rue Nationale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64135600000, + 47.89152100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "466215", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P879932498458878764", + "description": "Freshmile France/UZSVN0XKFV", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34955600000, + 45.89832200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilygreen CPO/27519d35-ea06-4650-b58f-652408524ab3", + "operator:email": "contact@mobilygreen.fr", + "ref": "951353", + "capacity": "8", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMW1P4949193259507706534", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57449900000, + 47.20542800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 11 RUE FERNAND LEGER - WISSOUS", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE19112;FRSIGPSIGE19111", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*191*1*_*_", + "start_date": "2021-09-22", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32953700000, + 48.73908700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "capacity": "6", + "socket:type2_combo:output": "200 kW", + "amenity": "charging_station", + "description": "AUDI Volkswagen Skoda Trignac - 44570 - 2", + "opening_hours": "24/7", + "network": "AUDI Volkswagen Skoda Trignac - 44570 - 2", + "ref:EU:EVSE": "FRCG0E001666;FRCG0E001665;FRCG0E001713;FRCG0E001714;FRCG0E001715;FRCG0E001716", + "charging_station:output": "200 kW;22 kW;100 kW", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001666;FRCG0E001665;FRCG0E001713;FRCG0E001714;FRCG0E001715;FRCG0E001716" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18555200000, + 47.32332500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89900347", + "description": "ENGIE Vianeo - Hôtel Campanile de l'Union", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-12-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47164600000, + 43.64537100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "6c00433a-51a2-5b30-860e-c9699fa84d51", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "description": "MOBIVE | Mont de Marsan | Parking Pole d'Echange Multimodal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50301600000, + 43.88491400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "start_date": "2024-05-31", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77SACA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Chemin de l'école - SAINT-HILLIERS", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25839500000, + 48.62105300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Feurs", + "ref:EU:EVSE": "FRALLEGO9005992;FRALLEGO9005761;FRALLEGO9004022;FRALLEGO9004021;FRALLEGO9003982;FRALLEGO9003981;FRALLEGO9005762;FRALLEGO9005991", + "description": "Allego Carrefour Feurs", + "start_date": "2022-12-08", + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9005992;FRALLEGO9005761;FRALLEGO9004022;FRALLEGO9004021;FRALLEGO9003982;FRALLEGO9003981;FRALLEGO9005762;FRALLEGO9005991" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22691900000, + 45.72176000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3794EVCP01;LFR3794EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3794EVCP01;LFR3794EVCP02", + "description": "ROHRBACH LES BITCHE - Strasbourg", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28551200000, + 49.04732600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "description": "MONTPELLIER - Route De Vauguières", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-05;2022-02-20", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34172023", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91068333300, + 43.60398000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPK2DBFDWT9W", + "ref": "K2DBFDWT9W", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Toulon, Boulevard Desaix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94582419000, + 43.12513713000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7498044575873563266", + "network": "Freshmile France", + "ref": "694334", + "description": "Freshmile France/VLIGQ2PRQT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57934000000, + 50.51663900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "CHAVILLE - Atrium", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-03", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E92022001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19230000000, + 48.81269000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPO54IWFIUPP", + "network": "Réseau eborn", + "ref": "96116", + "description": "Réseau eborn/O54IWFIUPP", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51626000000, + 45.41653400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPSMPHK", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Saint-Martin-sur-le-Pré - Hôtel Kyriad", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35511200000, + 48.97935000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E77475001", + "description": "Parking gare de Trilport sud P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94943000000, + 48.95950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6635955", + "description": "SONEPAR LE VINOUX", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6635955", + "network": "SONEPAR LE VINOUX", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68509600000, + 45.21478100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "EH4SWQBAHY;756846", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "description": "Easy Charge/EH4SWQBAHY;La Baule , Parking Honoré de Balzac", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHP8340123383337142142;FRECHPEH4SWQBAHY", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.37861800000, + 47.28234000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1710", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Rue Dulong 67", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref": "FR*V75*PPX17*10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31510000000, + 48.88630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/HTQSBOQOG8", + "amenity": "charging_station", + "ref": "466041", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7637703304068489344", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50160900000, + 45.10077500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP01909", + "start_date": "2023-09-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "description": "AMP | Route d’Apt, parking de l’école", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*TCB*P01909" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36462800000, + 43.40136900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "466191", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4645433064763167892", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/TBLCLSJ4PF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52194500000, + 47.57543200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPEDENAUTOBMW191001", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW Mini - Brive la Gaillarde", + "start_date": "2022-05-19", + "opening_hours": "Mo 00:00-23:59, Tu 00:00-23:59, We 00:00-23:59, Th 00:00-23:59, Fr 00:00-23:59, Sa 00:00-23:59, Su 00:00-23:59", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48139500000, + 45.14843300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "description": "Nevez-Rue de Port Manech", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2915300", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.79139700000, + 47.81833300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "FERRALS-LES-CORBIERES - Av De La Mer", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11140001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72737900000, + 43.14333600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": " Lu- Ve 07:30-19:00, Sa 10:00-18:00;Lu- Ve 07:30-19:00, Sa 10:00-18:00", + "network": "Mercedes Benz Bordeaux - BEGLES", + "ref": "E47244;E175701;E175560", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZPEE47244;FRZPEE175560;FRZPEE175701", + "capacity": "1", + "owner:ref:FR:SIREN": "784175531", + "socket:type2_combo:output": "50 kW;25 kW", + "operator:email": "advenir@zeborne.com", + "start_date": "2020-11-18;2023-06-27;2023-05-31", + "charging_station:output": "50 kW;25 kW;22 kW", + "operator": "ZEborne", + "description": "Mercedes - Bègles 25kW DC ;INGE-DC50kW-MERCEDES - Bègles ;Mercedes - Bègles 22kW AC " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53907560000, + 44.81651480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAVELANET - Place Jeanne D'Arc", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS09E09160002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85033400000, + 42.93541500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/BTSJDPSCWJ", + "capacity": "2", + "amenity": "charging_station", + "ref": "505530", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80P7322872934896976965", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78809700000, + 49.69999300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - LA HAYE-DU-PUITS", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*29*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-03-18", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST2913;FRIZFPFAST2911;FRIZFPFAST2912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54055760000, + 49.27824930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "DREFFEAC - Grande Rue;OuestCharge - Diva Sp - Dreffeac - Rue", + "amenity": "charging_station", + "start_date": "2024-04-18;2021-04-21", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44E44053001;FRS44P44053A", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05701200000, + 47.47488200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77142003;FRS77P77142C", + "description": "CRECY-LA-CHAPELLE - Arquebuse;Crécy-la-Chapelle / Arquebuse", + "start_date": "2023-09-13", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "7f6d92c9-06da-418a-a8f1-520a5d05352b", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90885600000, + 48.85835200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CHÂTEAU DE LA CHAIZE", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000094333;FRGSPP1000094332;FRGSPP1000094331;FRGSPP1000094334", + "description": "CHÂTEAU DE LA CHAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63396114813, + 46.08939683034 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E220266;FRS37E220265", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E220266;FRS37E220265", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ROUZIERS DE TOURAINE - Rue du 11 Novembre", + "network": "MODULO - ROUZIERS DE TOURAINE - Rue du 11 Novembre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64893365000, + 47.51457851000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "CCTLB - Vallois", + "opening_hours": "24/7", + "ref": "9100cd7f-3079-5cf2-b3de-5ea181eabaee", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55039200000, + 48.46342400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "ref:EU:EVSE": "FRG51PDECATHLON597002", + "start_date": "2022-09-13", + "description": "Decathlon - Marcq-en-Baroeul (Domyos)", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 07:00-19:00, Tu 07:00-19:00, We 07:00-19:00, Th 07:00-19:00, Fr 07:00-19:00, Sa 09:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08851300000, + 50.68665700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "a3e4a470-aef7-5496-8676-7d207c9c7177", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "MOBIVE | MALEMORT | Rue Fouchet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56643300000, + 45.17056100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-05-18", + "network": "SIPPEREC", + "description": "SUCY EN BRIE - Avenue Georges Pompidou", + "ref:EU:EVSE": "FRSIPE94071002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52336900000, + 48.77114300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "description": "CHAMPADIS BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CHAMPADIS BORNE 2", + "start_date": "2024-08-28", + "ref:EU:EVSE": "FRCPIE6543575;FRCPIE6528265", + "ref": "FRCPIE6543575;FRCPIE6528265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83039400000, + 47.57144400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P6897167658612413927", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "505794", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/U7TAQTYQRD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253800000, + 46.63950300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Les Salles-De-Castillon | Mairie;LES SALLES-DE-CASTILLON - MAIRIE", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "FRS33PMB338111;Non concerné;FRS33PMB338112", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref": "FR*SOD*S*MB33*81*1*_*_;f1552b3f-781e-5add-8024-93cc3cfc61c4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00113900000, + 44.91209000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB49018A", + "operator:email": "bo_dgic@seolis.net", + "description": "Réseau AlterBase - Niort - L'Acclameur", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2017-05-23", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40743690000, + 46.31578950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20834340000, + 49.97211790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "12", + "description": "Airbus - Marignane - Parking W4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS3130015", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23102100000, + 43.43348100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "INGRE France", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "180 kW", + "ref": "LFR3189EVCP01", + "ref:EU:EVSE": "LFR3189EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85781800000, + 47.90180100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Orléans Métropole/EF6ASZTSVN", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM45P6907759564883487187", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "ref": "414729", + "operator": "Orléans Métropole | FR*M45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83385000000, + 47.86555000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "natural": "coastline", + "source": "BD TOPO Hydrographie 2017-04" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20396780000, + 49.97936040000 + ], + [ + 1.20402930000, + 49.97931730000 + ], + [ + 1.20412180000, + 49.97926110000 + ], + [ + 1.20428610000, + 49.97914760000 + ], + [ + 1.20457110000, + 49.97896670000 + ], + [ + 1.20468040000, + 49.97890810000 + ], + [ + 1.20496570000, + 49.97872000000 + ], + [ + 1.20511400000, + 49.97858560000 + ], + [ + 1.20518680000, + 49.97849510000 + ], + [ + 1.20522370000, + 49.97843720000 + ], + [ + 1.20524670000, + 49.97837730000 + ], + [ + 1.20526010000, + 49.97831460000 + ], + [ + 1.20526400000, + 49.97816470000 + ], + [ + 1.20525110000, + 49.97809440000 + ], + [ + 1.20522840000, + 49.97802580000 + ], + [ + 1.20517400000, + 49.97791090000 + ], + [ + 1.20510720000, + 49.97771040000 + ], + [ + 1.20503330000, + 49.97755300000 + ], + [ + 1.20500130000, + 49.97747260000 + ], + [ + 1.20491790000, + 49.97730960000 + ], + [ + 1.20488610000, + 49.97722470000 + ], + [ + 1.20486260000, + 49.97714080000 + ], + [ + 1.20485460000, + 49.97705080000 + ], + [ + 1.20487630000, + 49.97687060000 + ], + [ + 1.20489570000, + 49.97679360000 + ], + [ + 1.20492360000, + 49.97671490000 + ], + [ + 1.20502910000, + 49.97648830000 + ], + [ + 1.20510660000, + 49.97634390000 + ], + [ + 1.20531060000, + 49.97601260000 + ], + [ + 1.20551200000, + 49.97563280000 + ], + [ + 1.20562470000, + 49.97547900000 + ], + [ + 1.20583540000, + 49.97515510000 + ], + [ + 1.20592610000, + 49.97499290000 + ], + [ + 1.20596370000, + 49.97491170000 + ], + [ + 1.20601120000, + 49.97482880000 + ], + [ + 1.20611750000, + 49.97462010000 + ], + [ + 1.20614660000, + 49.97454690000 + ], + [ + 1.20615490000, + 49.97446880000 + ], + [ + 1.20614210000, + 49.97423870000 + ], + [ + 1.20612480000, + 49.97421680000 + ], + [ + 1.20606170000, + 49.97418720000 + ], + [ + 1.20600100000, + 49.97413240000 + ], + [ + 1.20588800000, + 49.97401570000 + ], + [ + 1.20582600000, + 49.97395820000 + ], + [ + 1.20576580000, + 49.97388720000 + ], + [ + 1.20554390000, + 49.97369980000 + ], + [ + 1.20548900000, + 49.97363790000 + ], + [ + 1.20527950000, + 49.97345510000 + ], + [ + 1.20521090000, + 49.97338490000 + ], + [ + 1.20510200000, + 49.97331330000 + ], + [ + 1.20493950000, + 49.97317970000 + ], + [ + 1.20485240000, + 49.97312180000 + ], + [ + 1.20467330000, + 49.97302490000 + ], + [ + 1.20449810000, + 49.97289830000 + ], + [ + 1.20427230000, + 49.97274400000 + ], + [ + 1.20397410000, + 49.97254830000 + ], + [ + 1.20373890000, + 49.97234450000 + ], + [ + 1.20365070000, + 49.97227670000 + ], + [ + 1.20347800000, + 49.97215740000 + ], + [ + 1.20339820000, + 49.97208880000 + ], + [ + 1.20315070000, + 49.97191990000 + ], + [ + 1.20289270000, + 49.97172830000 + ], + [ + 1.20282200000, + 49.97168050000 + ], + [ + 1.20274820000, + 49.97163900000 + ], + [ + 1.20266200000, + 49.97159640000 + ], + [ + 1.20250690000, + 49.97152860000 + ], + [ + 1.20242180000, + 49.97149410000 + ], + [ + 1.20231450000, + 49.97145650000 + ], + [ + 1.20222420000, + 49.97140760000 + ], + [ + 1.20211610000, + 49.97131530000 + ], + [ + 1.20208750000, + 49.97129600000 + ], + [ + 1.20194910000, + 49.97123110000 + ], + [ + 1.20184800000, + 49.97117390000 + ], + [ + 1.20174230000, + 49.97113010000 + ], + [ + 1.20167330000, + 49.97111290000 + ], + [ + 1.20158590000, + 49.97110080000 + ], + [ + 1.20104050000, + 49.97108200000 + ], + [ + 1.20077800000, + 49.97105930000 + ], + [ + 1.20069500000, + 49.97104460000 + ], + [ + 1.20062060000, + 49.97102020000 + ], + [ + 1.20035570000, + 49.97090930000 + ], + [ + 1.20025450000, + 49.97085480000 + ], + [ + 1.19967250000, + 49.97049230000 + ], + [ + 1.19954760000, + 49.97039970000 + ], + [ + 1.19946320000, + 49.97034370000 + ], + [ + 1.19912570000, + 49.97015720000 + ], + [ + 1.19904270000, + 49.97010210000 + ], + [ + 1.19888940000, + 49.96998570000 + ], + [ + 1.19880220000, + 49.96992960000 + ], + [ + 1.19870800000, + 49.96987610000 + ], + [ + 1.19850950000, + 49.96977710000 + ], + [ + 1.19842450000, + 49.96973900000 + ], + [ + 1.19833510000, + 49.96970620000 + ], + [ + 1.19832150000, + 49.96969610000 + ], + [ + 1.19814880000, + 49.96961810000 + ], + [ + 1.19804340000, + 49.96956530000 + ], + [ + 1.19791380000, + 49.96948710000 + ], + [ + 1.19779620000, + 49.96942510000 + ], + [ + 1.19768650000, + 49.96937590000 + ], + [ + 1.19748400000, + 49.96927230000 + ], + [ + 1.19728120000, + 49.96917680000 + ], + [ + 1.19721850000, + 49.96913900000 + ], + [ + 1.19713860000, + 49.96907490000 + ], + [ + 1.19709770000, + 49.96904920000 + ], + [ + 1.19704980000, + 49.96902600000 + ], + [ + 1.19701530000, + 49.96901470000 + ], + [ + 1.19699170000, + 49.96901260000 + ], + [ + 1.19692800000, + 49.96904220000 + ], + [ + 1.19685330000, + 49.96910490000 + ], + [ + 1.19682500000, + 49.96911880000 + ], + [ + 1.19679750000, + 49.96910850000 + ], + [ + 1.19677840000, + 49.96909840000 + ], + [ + 1.19676790000, + 49.96907850000 + ], + [ + 1.19676730000, + 49.96905510000 + ], + [ + 1.19674990000, + 49.96903690000 + ], + [ + 1.19669840000, + 49.96899480000 + ], + [ + 1.19661690000, + 49.96893790000 + ], + [ + 1.19652520000, + 49.96889070000 + ], + [ + 1.19628090000, + 49.96878740000 + ], + [ + 1.19621000000, + 49.96874410000 + ], + [ + 1.19611290000, + 49.96869410000 + ], + [ + 1.19602570000, + 49.96863980000 + ], + [ + 1.19579200000, + 49.96851150000 + ], + [ + 1.19571390000, + 49.96847440000 + ], + [ + 1.19554120000, + 49.96840060000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-23", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*163*1*_*_", + "description": "PUGET THENIERS - PARKING EGLISE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ16312;FRA16PWIIZ16311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89576200000, + 43.95596400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009251", + "description": "Freshmile France/YAWUDBMRNX", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2546987127204171004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94082700000, + 45.69617900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Boulangerie Feuillette - Angers", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PBLGANG", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53907477948, + 47.44877705001 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK4LDSG7HH6", + "ref": "K4LDSG7HH6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Nances, Route du Lac", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80112421000, + 45.57460782000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2024-06-21", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Le Coudray-Montceaux - Hôtel Mercure", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPLCMHM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48936800000, + 48.52486200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "MARSEILLE - Hippodrome Borely", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "ref:EU:EVSE": "FRP07E13202012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37681000000, + 43.25824000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6709155;FRCPIE6709175", + "amenity": "charging_station", + "description": "SUPER U DOZULE BORNE 1", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6709155;FRCPIE6709175", + "operator:email": "info@chargepoint.com", + "network": "SUPER U DOZULE BORNE 1", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03905900000, + 49.23265300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "GAP , Parking Verdun", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "HGBPTTZQAT", + "ref:EU:EVSE": "FRECHPHGBPTTZQAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07665642200, + 44.56080886000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A71 L'Allier Doyet", + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP101108", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2022-12-22", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80237700000, + 46.35500500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8545749639106259560", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLX0I90J4H2H0P", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1173915", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49121500000, + 44.86243700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX0811", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue la Boétie 37", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "ref": "FR*V75*PPX08*11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31466300000, + 48.87370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "120605", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/TFJPLY", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PTFJPLY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43221000000, + 48.53560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-20", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPINGEOCHEMINLORETTO200001", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Ajaccio - Chemin de Loretto" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73231300000, + 41.93042000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SYDED/mandeuresuper", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25PMANDEURESUPER", + "ref": "79915", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81312000000, + 47.44800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E205323;FRS18E205324", + "network": "MODULO - RIANS - Pl. de l'église", + "capacity": "2", + "description": "MODULO - RIANS - Pl. de l'église", + "amenity": "charging_station", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E205323;FRS18E205324" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61345925000, + 47.18535428000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78346001", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LONGNES - Centre", + "start_date": "2024-03-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58623000000, + 48.92149000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*119*8*_*_;FR*SOD*S*QPRK*119*7*_*_;FR*SOD*S*QPRK*119*6*_*_;FR*SOD*S*QPRK*119*5*_*_;FR*SOD*S*QPRK*119*24*_*_;FR*SOD*S*QPRK*119*23*_*_;FR*SOD*S*QPRK*119*22*_*_;FR*SOD*S*QPRK*119*16*_*_;FR*SOD*S*QPRK*119*15*_*_;FR*SOD*S*QPRK*119*14*_*_;FR*SOD*S*QPRK*119*12*_*_;FR*SOD*S*QPRK*119*11*_*_;FR*SOD*S*QPRK*119*1*_*_;FR*SOD*S*QPRK*119*10*_*_;FR*SOD*S*QPRK*119*13*_*_;FR*SOD*S*QPRK*119*17*_*_;FR*SOD*S*QPRK*119*19*_*_;FR*SOD*S*QPRK*119*20*_*_;FR*SOD*S*QPRK*119*2*_*_;FR*SOD*S*QPRK*119*21*_*_;FR*SOD*S*QPRK*119*25*_*_;FR*SOD*S*QPRK*119*3*_*_;FR*SOD*S*QPRK*119*4*_*_;FR*SOD*S*QPRK*119*9*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-06-28;2024-05-31", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQPKPQPRK11971;FRQPKPQPRK11961;FRQPKPQPRK11951;FRQPKPQPRK11941;FRQPKPQPRK11931;FRQPKPQPRK119251;FRQPKPQPRK119241;FRQPKPQPRK119221;FRQPKPQPRK119191;FRQPKPQPRK119171;FRQPKPQPRK119161;FRQPKPQPRK119151;FRQPKPQPRK119131;FRQPKPQPRK119101;FRQPKPQPRK11911;FRQPKPQPRK119111;FRQPKPQPRK119121;FRQPKPQPRK119141;FRQPKPQPRK119201;FRQPKPQPRK11921;FRQPKPQPRK119211;FRQPKPQPRK119231;FRQPKPQPRK11981;FRQPKPQPRK11991", + "network": "QPARK", + "description": "QPARK - VICHY - 4 CHEMINS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45064980000, + 46.10417180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8104200122;FRS81E8104200121;FRS81E8104200111;FRS81E8104200112", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "BURLATS - Place Du 8 Mai 1945", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2018-01-30", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31780579953, + 43.63630472235 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIONE404500", + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Cambarette Nord", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2019-07-25", + "ref": "FRIONE404500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99038500000, + 43.42387800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2023-06-23", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44169A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "description": "OuestCharge - ePremium - Saint Julien de Concelles - Heurthauds", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38574400000, + 47.25318900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "24 kW;22 kW", + "description": "SAINT-PIERRE-LES-NEMOURS - Font Sèche", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS77E77431002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68569018000, + 48.26578400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF078611", + "socket:type2_combo:output": "175 kW", + "description": "RELAIS L'ADOUR", + "amenity": "charging_station", + "start_date": "2022-12-09", + "capacity": "4", + "owner:ref:FR:SIREN": "531680891;531680890;531680893;531680892", + "opening_hours": "24/7", + "ref": "FRHPCPNF078611", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27580000000, + 43.73910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-03-09", + "ref": "FRS41E117721;FRS41E117722", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - LAMOTTE BEUVRON- Rue Ernest Gaugiran", + "description": "MODULO - LAMOTTE BEUVRON- Rue Ernest Gaugiran", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E117721;FRS41E117722", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02632600000, + 47.60115800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "18173", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/YVPZUN", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PYVPZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36581000000, + 47.74890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-08-11", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "LY321 - PART-DIEU OUEST", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON17812;FRGLYPLYON17811", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*178*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85793900000, + 45.75714500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP91326A", + "socket:type2_combo:output": "50 kW;100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;150 kW;22 kW", + "start_date": "2023-02-03", + "opening_hours": "24/7", + "ref": "484721", + "description": "Metropolis - Express - Juvisy-sur-Orge - Cour de France;Métropolis/FR*MGP*P91326*A", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37082300000, + 48.69076300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPBYMYCAR385001", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2020-01-17", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Opel - ByMyCar - Voiron", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57861000000, + 45.38230100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "description": "IRVE CAGPS MAGELLAN 3", + "amenity": "charging_station", + "network": "IRVE CAGPS MAGELLAN 3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6591125;FRCPIE6591115;FRCPIE6591105;FRCPIE6591095;FRCPIE6591135;FRCPIE6591145;FRCPIE6591165", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref": "FRCPIE6591125;FRCPIE6591115;FRCPIE6591105;FRCPIE6591095;FRCPIE6591135;FRCPIE6591145;FRCPIE6591165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43602300000, + 48.63252600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "454293", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/L1KKD299J9", + "ref:EU:EVSE": "FRLE2P9181789241268628906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40592300000, + 47.93877200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "17dc619b-cb65-58b0-aaab-783463b2bc30", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Saint-Yzan-De-Soudiac | Parking Mairie", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41002800000, + 45.13987700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95268002", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GARGE LES GONESSE - Parking Degas", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39324300000, + 48.97755000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "12;8", + "operator": "Allego", + "charging_station:output": "43 kW;50 kW;300 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "start_date": "2022-01-24;2022-01-31", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRSITE00000016;FRALLPTIS018", + "description": "ARCOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038000000, + 48.53897000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3185EVCP02;LFR3185EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "ANGOULEME Bordeaux", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3185EVCP02;LFR3185EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13648000000, + 45.64481000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Aix-En-Provence, Rue André Ampère (Paap)", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PRSPVF85Q8I", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37065300000, + 43.49056800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "402467", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P2390981854173095532", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/CQTIPBKW32", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56187100000, + 47.89936400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ29312;FRA16PWIIZ29311", + "description": "SAINT-RAPHAEL - PARKING ECOLE JEAN MOULIN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*293*1*_*_", + "start_date": "2024-07-25", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77771270000, + 43.42889880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/diesenchamps", + "ref:EU:EVSE": "FRFR1P7239777406216446083", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "377435", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67412000000, + 49.17760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Novotel - Blois", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-11-17", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRPD1PNOVBLO", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561116798, + 47.59183089055 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/AZ12ROASTI", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNAZ12ROASTI", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "50743" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14473400000, + 43.22647800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "Norauto - Bornes publiques/1F131AB9-5931-456F-9CAD-7987BBAF3A32", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP2085713407425938260", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "697538", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84675300000, + 43.57044700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LR2P - QUETEHOU", + "ref:EU:EVSE": "FROTHPOTHR61612;FROTHPOTHR61611", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-14", + "opening_hours": "24/7", + "network": "LR2P", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*616*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30082900000, + 49.59240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Saint-Sauveur-En-Rue, Parking espace Jean Roux", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQOFKA776QB", + "ref": "QOFKA776QB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49469010000, + 45.26926890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/GJ3MKVO5IB;Les-Estables, Place Rechausseyre", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "346736;GJ3MKVO5IB", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPGJ3MKVO5IB;FREBNP5848327525011595092", + "start_date": "2020-11-20", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15323000000, + 44.90396000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL PARIS ROMAINVILLE NOISY-LE-SEC", + "ref:EU:EVSE": "FRVIAP122030", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-05-13", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44188500000, + 48.89234400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/N3JWK6WYPH", + "amenity": "charging_station", + "ref": "756978", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P629193665526804503", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71717100000, + 48.64182700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX15*11", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Paris | Rue de la Convention 75", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1511", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28489040000, + 48.84256780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/OB8ETW7HKF", + "ref": "594404", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5803753026727028356", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31019400000, + 45.68013200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-06-21", + "network": "DRIVECO", + "description": "Hôtel Castell'Verde - Porto-Vecchio", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCASTELL201011", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26935200000, + 41.53500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "description": "900040", + "start_date": "2021-06-16", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PRUGLESLIBERTE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71108000000, + 48.82432600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "evran-Rue de l'Apothicaire", + "ref:EU:EVSE": "FRS22E22056001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98160000000, + 48.38190100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE PORT-MARLY - 10 Rue De Paris", + "ref:EU:EVSE": "FRY15E78502001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11234440000, + 48.87912500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE198", + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "FTCS_Fretin", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12968900000, + 50.58568900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLXTTABXWA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "577511", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWATP829547380367465471" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44302300000, + 48.91909300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Sarthe Nord", + "ref": "FRIOYE403352;FRIOYE403351;FRIOYE403301;FRIOYE403302;FRIOYE403303;FRIOYE403304;FRIOYE403353", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "description": "Sarthe Nord", + "ref:EU:EVSE": "FRIOYE403352;FRIOYE403351;FRIOYE403303;FRIOYE403301;FRIOYE403302;FRIOYE403304;FRIOYE403353", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16714455000, + 47.80700877000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS52P2929521181062451693", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref": "1052535", + "description": "SDED52/LLTZKISTV1DS4H", + "network": "SDED52", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94905700000, + 48.64067700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LOURDES - SICA", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65286010", + "charging_station:output": "22 kW", + "start_date": "2022-12-01", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04643600000, + 43.09305500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Triel-sur-Seine", + "amenity": "charging_station", + "description": "Triel-sur-Seine", + "start_date": "2023-01-13", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE002701;FRIENE002702", + "ref:EU:EVSE": "FRIENE002701;FRIENE002702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01180067000, + 48.96648010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-09", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT BAUZILLE DE MONTMEL - Rue du Claud de la Dame", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E3424200", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95548770000, + 43.77164960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-ARGE-002", + "ref:EU:EVSE": "FRS61P61006B", + "description": "ARGENTAN - Pl. du Général Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02513200000, + 48.74078800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "seamark:buoy_special_purpose:colour": "yellow", + "seamark:buoy_special_purpose:shape": "pillar", + "seamark:light:character": "Fl", + "seamark:light:colour": "yellow", + "seamark:light:group": "3", + "seamark:light:period": "12", + "seamark:name": "Penly 1", + "seamark:topmark:colour": "yellow", + "seamark:topmark:shape": "x-shape", + "seamark:type": "buoy_special_purpose", + "source": "Arrêté préfectoral N° 20 / 2010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18916670000, + 49.98400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LM0WMH5YCYL61I", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRFR1P4141521191294026975", + "operator": "Freshmile | FR*FR1", + "ref": "1183260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77349500000, + 48.58764600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-01-13", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Martres-Tolosane", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PHQDVPR", + "ref": "HQDVPR", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01180000000, + 43.20010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD591401", + "start_date": "2020-09-24", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Ford - Groupe Dugardin - Dunkerque", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35629500000, + 51.01649700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "BMW - Auvergne Auto Aurillac - 15000 - 1", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "BMW - Auvergne Auto Aurillac - 15000 - 1", + "ref:EU:EVSE": "FRCG0E000254;FRCG0E000253;FRCG0E000014", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000254;FRCG0E000253;FRCG0E000014", + "start_date": "2024-07-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46577200000, + 44.91880300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "3c380d96-a62a-11ed-afa1-0242ac120002", + "ref:EU:EVSE": "FRLUMERHONEAVISAN11", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "RHONEA BOUTIQUE DE VISAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94908830000, + 44.31341340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive;MOBIVE - SDEPA 64", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*MB64*127*1*_*_;0eda505c-69a8-5787-b2ad-0eb5c61f4494", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "256402041", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "charging_station:output": "50 kW;43 kW", + "description": "PAU - RUE THOMAS EDISON;MOBIVE | Pau | Rue Thomas Edison", + "ref:EU:EVSE": "FRS64PMB6412711;Non concerné", + "operator": "202__TE64;IZIVIA", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32650000000, + 43.32505600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "description": "Andimed Santé - Saint-Memmie", + "start_date": "2023-10-04", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE51SABA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39328600000, + 48.94501800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RAMSAY", + "operator:email": "freddy.borneco@gmail.com", + "amenity": "charging_station", + "capacity": "1", + "network": "BORNECO", + "opening_hours": "24/7", + "operator": "BORNECO ", + "start_date": "2023-08-30", + "ref:EU:EVSE": "FRBHMERAMSAYA1", + "charging_station:output": "11 kW", + "ref": "FR*BHM*ELEVPARKA*1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30218340000, + 48.75652320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3314EVCP02;LFR3314EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR3314EVCP02;LFR3314EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "STE SAVINE Leclerc", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03326700000, + 48.29146900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Vitrolles, Place de L'Aire", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PG7ZCV4KJPS", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25032000000, + 43.45926200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/VN6VPKVCYJ", + "ref:EU:EVSE": "FRS89P5337236587898648540", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402647" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12184300000, + 47.90355100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2020-02-04", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP78000VERMAIRIE", + "ref": "FR*55C*P78000*VER*MAIRIE", + "operator:email": "contact@e55c.com", + "description": "AVENUE DU GENERAL DE GAULE VERSAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12905600000, + 48.80083300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2382299294574184659", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/O0FFV7GKYB", + "operator": "Freshmile | FR*FR1", + "ref": "412073" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37942100000, + 47.41106600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Super U - Montrabé", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-02-03;2023-01-03", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUMTR", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53355192055, + 43.64481431586 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "31828;BIE1NOC2IO", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPBIE1NOC2IO", + "description": "Génissieux, Place du Marché;Réseau eborn/BIE1NOC2IO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08504200000, + 45.08062700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Fastned Aire d’Écot Sud", + "operator": "Fastned France", + "description": "Fastned Aire d’Écot Sud", + "ref:EU:EVSE": "FRFASE33027", + "start_date": "2021-11-30", + "capacity": "8", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRFASE33027", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72890310000, + 47.44042440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING SANDAYA - MUIDES-SUR-LOIRE", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FROTHPOTHR9312;FROTHPOTHR9311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*93*1*_*_", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52910500000, + 47.66603600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLN4JXA552HYZ1;Hyères, Quartier La Blocarde", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-09-29", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP368442067651355005;FREBNPLLN4JXA552HYZ1", + "ref": "LLN4JXA552HYZ1;1052520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14206700000, + 43.11806100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FT0LK4QOQ6;Les Abrets, Rue Clément Gondrand", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPFT0LK4QOQ6", + "start_date": "2020-06-21", + "ref": "64001;FT0LK4QOQ6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58514700000, + 45.53657500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "FFF - CLAIREFONTAINE", + "start_date": "2022-07-13", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*431*4*_*_;FR*SOD*S*OTHR*431*1*_*_;FR*SOD*S*OTHR*431*2*_*_;FR*SOD*S*OTHR*431*3*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "ref:EU:EVSE": "FROTHPOTHR43142;FROTHPOTHR43122;FROTHPOTHR43121;FROTHPOTHR43111;FROTHPOTHR43112;FROTHPOTHR43131;FROTHPOTHR43132;FROTHPOTHR43141", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92244700000, + 48.61701600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XXZV8DAA0C", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2469529667751684482", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "529814", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04443300000, + 48.72012000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Saint-André-de-Cubzac, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP34042", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42489400000, + 45.01224200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3922395919178182635", + "network": "Freshmile France", + "ref": "1062303", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOO3P1L01SIY3", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81668200000, + 47.54301500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "ref": "53905694-7292-5f3d-b0c3-f246f32fca85", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "Non concerné", + "description": "NICE-77 promenade des Anglais", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24989100000, + 43.69241000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P577568630572298625", + "network": "Freshmile France", + "description": "Freshmile France/XGGXMZDHIA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "598368", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41225100000, + 43.47780500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P6043730191955421107", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/LLXIWNCJ22HCHJ", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1117146" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99564600000, + 49.25330900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP009592;Zephyre/LP009E73", + "ref": "874227;576266", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P980814126931722634;FRZP1P2332315844454231392", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11741000000, + 48.17205800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE412", + "description": "Kyriad_Cambrai", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-09-07", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20696800000, + 50.17647900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78624004", + "charging_station:output": "22 kW", + "start_date": "2024-07-04", + "description": "TRIEL-SUR-SEINE - Aire de Stationnement les Châtelaines", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01514000000, + 48.97678400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "CD54 - Siège - Parking Président - Nancy;CD54 - Siège - Parking Visiteur 1 - Nancy;CD54 - Siège - Parking Visiteur 2 - Nancy", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "90d87870-b48b-59c3-ba28-12e047e60553;5e5428ee-55e6-55d4-a59f-c43841837ac7;9529ff6d-592f-5478-863b-bd3051912044", + "opening_hours": "24/7", + "capacity": "2;4", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16686100000, + 48.67957700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS66E66171005;FRS66E661710033", + "start_date": "2022-12-13", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "description": "SAINT-CYPRIEN - Capitainerie - Quai Arthur Rimbaud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03744028000, + 42.61990440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IKEA*114*8*_*_;FR*SOD*S*IKEA*114*7*_*_;FR*SOD*S*IKEA*114*6*_*_;FR*SOD*S*IKEA*114*5*_*_;FR*SOD*S*IKEA*114*13*_*_;FR*SOD*S*IKEA*114*12*_*_;FR*SOD*S*IKEA*114*11*_*_;FR*SOD*S*IKEA*114*10*_*_;FR*SOD*S*IKEA*114*1*_*_;FR*SOD*S*IKEA*114*2*_*_;FR*SOD*S*IKEA*114*3*_*_;FR*SOD*S*IKEA*114*4*_*_;FR*SOD*S*IKEA*114*9*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "start_date": "2023-04-06", + "capacity": "1", + "ref:EU:EVSE": "FRIKAPIKEA11491;FRIKAPIKEA11481;FRIKAPIKEA11471;FRIKAPIKEA11451;FRIKAPIKEA11441;FRIKAPIKEA11431;FRIKAPIKEA114111;FRIKAPIKEA114101;FRIKAPIKEA11411;FRIKAPIKEA114121;FRIKAPIKEA114131;FRIKAPIKEA11421;FRIKAPIKEA11461", + "description": "IKEA FRANCONVILLE - ZONE CLIENTS 2", + "opening_hours": "24/7", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21226500000, + 48.98689200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "description": "MONTGERMONT - 8 rue newton(za ecoparc)", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35189001B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70725800000, + 48.15556000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG63 - ePremium - Anzat-Le-Luguet - Parking Entree", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS63P63006B", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2023-08-01", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04208259000, + 45.33291829000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892134", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Tu,Mo,Th,Fr,Su,Sa,We 00:00-07:30,Sa,Fr,Mo,We,Tu,Th 19:00-23:59,Su 13:00-23:59", + "description": "Freshmile France/LLIK06Y5F130FX", + "ref:EU:EVSE": "FRFR1P5187891770762310807", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20402400000, + 48.67245100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31P1674388110627333549", + "description": "Roulez Électrique En Haute-Garonne/JGVGCS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "347021", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86602800000, + 43.10990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BOBIGNY - 41 Avenue Jean Jaurès", + "network": "SIPPEREC", + "start_date": "2022-08-16", + "ref:EU:EVSE": "FRSIPE93008005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44081110000, + 48.90114040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000785;FRCG0E000776;FRCG0E000786", + "charging_station:output": "22 kW;225 kW", + "socket:type2_combo:output": "225 kW", + "network": "SNAB Volkswagen Saint Leonard - 62200 - 1", + "start_date": "2023-03-14", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "SNAB Volkswagen Saint Leonard - 62200 - 1", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000785;FRCG0E000776;FRCG0E000786" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60943420000, + 50.69708250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE20711;FRM06PNICE20712", + "description": "NICE - PARKING 115 MADELEINE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*207*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23668169728, + 43.70123047292 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "05eff450-e892-57e8-9bbd-7e500def93d9", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Beauville | Place Carré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88222800000, + 44.27736300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE34512;FRSIGPSIGE34511", + "capacity": "2", + "description": "SIGEIF - 22 RUE DES BUSSYS INTERSECTION RUE HENRI COUDERT - EAUBONNE", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2023-02-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*345*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27439000000, + 48.98000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76116001", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BOOS - Parking Salle Polyvalente", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20004710000, + 49.38823950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3943EVCP02;LFR3943EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "50 kW;22 kW", + "ref": "LFR3943EVCP02;LFR3943EVCP01", + "description": "FRANQUEVILLE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15407200000, + 49.40453400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Pontarion | Place des Macons de la Creuse", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "194__SDEC23", + "ref": "d5537076-5f2f-5f03-bc03-09083226c2a0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84979600000, + 45.99788800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "description": "SDE82/EBTDSH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "38968", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PGRISOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30265000000, + 43.82710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "ROUTE D'ENTRECASTEAUX - SAINT ANTONIN DU VAR", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP83510SAVMA1R1E", + "ref": "FR*55C*P83510*SAV*MA1R1E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28731700000, + 43.50708800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3771EVCP03;LFR3771EVCP02;LFR3771EVCP01", + "description": "MONTPON MENESTEROL Villefranche", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3771EVCP03;LFR3771EVCP02;LFR3771EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14043400000, + 45.00634900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "start_date": "2022-11-22", + "ref:EU:EVSE": "FRPD1PITMDIZ", + "operator": "Power Dot France", + "description": "Intermarché - Dieuze", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72189145767, + 48.81851664351 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP8944589295167724665;FREBNPBH9RGRYWWL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Charvonnex, RD 1203;Réseau eborn/BH9RGRYWWL", + "opening_hours": "24/7", + "ref": "BH9RGRYWWL;346637", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16400000000, + 45.97767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-11-28", + "network": "Réseau e-Totem Infrastructures", + "capacity": "5;7", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122D", + "charging_station:output": "100 kW;7.4 kW;22 kW;150 kW", + "description": "e-Totem - BIARRITZ Parking Iraty", + "ref:EU:EVSE": "FRETIP64122D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53854035598, + 43.46612969155 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCACSDS", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-03-16", + "description": "Carrefour Contact - Salies-du-Salat", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96140168595, + 43.10193350894 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT651001", + "description": "Carrefour Market - Lourdes", + "start_date": "2024-02-07", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04493000000, + 43.08781600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCRXCC", + "capacity": "4", + "opening_hours": "24/7", + "description": "Croix - CC Gare de Croix - Wasquehal", + "start_date": "2023-04-18", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14046000000, + 50.67862000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR5411;FROTHPOTHR5412", + "start_date": "2020-10-29", + "description": "VILLE DE NEMOURS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*54*1*_*_", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69606460000, + 48.26890480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "E.LECLERC BORNE 2 DC", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "description": "E.LECLERC BORNE 2 DC", + "start_date": "2023-06-22", + "ref": "FRCPIE6741255;FRCPIE6741505", + "ref:EU:EVSE": "FRCPIE6741255;FRCPIE6741505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53703200000, + 43.24758900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P7385544293699069788", + "description": "Freshmile France/LLK891G4J2M2KZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "892482", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46996300000, + 49.17687300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV07E72264003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SABLE SUR SARTHE - Place De La République", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32829900000, + 47.83898800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLMOS5DGWVFBTT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3106308734445242272", + "ref": "971849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34402700000, + 48.07550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP1728", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Lorient - Caudan", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33126300000, + 47.78803500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5305832215117352225", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IOUZSC0GRQ", + "ref": "454053" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09860000000, + 47.07740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20724600000, + 50.68494000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/LLU9V3PTB504CZ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P2093124315713129644", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1052514", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44680000000, + 49.15375800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12148001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MONTBAZENS - Place Du Portail-Haut Face Au N°58 Avenue Planhol", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22742300000, + 44.47418800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA4P5834157114915517768", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "880152", + "operator": "WAAT SAS | FR*WA4", + "description": "WAAT/FRWA4LBLBUVOPL", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11768000000, + 49.48408400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-05;2021-04-28;2024-04-19", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49P49269A;FRS49E49269001", + "description": "SAINT-CHRISTOPHE-DU-BOIS - Rue de la Chapelle;OuestCharge - Diva Sp - Saint-Christophe-du-Bois - Chapelle", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94252700000, + 47.02935900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "56 kW", + "ref:EU:EVSE": "FRS81E8106500922;FRS81E8106500921;FRS81E8106500911;FRS81E8106500912", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-06-14", + "description": "CASTRES - HOPITAL - Centre Hospitalier - Parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26281289667, + 43.56670187909 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-27", + "charging_station:output": "22 kW", + "description": "HENIN BEAUMONT - Square Ilot Carnot", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH21E6242700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95000000000, + 50.42160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS44E44213002", + "charging_station:output": "22 kW", + "description": "LOIREAUXENCE - Rue Des Deux Provinces" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02821505100, + 47.46865463000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS63P63415B", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG63 - ePremium - Sauxillanges - Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36987280000, + 45.55000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AULNOY-LEZ-VALENCIENNES - Rue Henri Turlet", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH03E59032001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53072700000, + 50.33103600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CLARET - Parking Du Stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34078001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90460277778, + 43.86042220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GENTILLY - Rue Robert Marchand", + "start_date": "2023-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94037004", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34916021349, + 48.81576081623 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90273159", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B Hôtel Montlhéry", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25889100000, + 48.62809100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "ccbf3dc7-8c54-555f-acb6-2513c3a86efb", + "description": "MOBIVE | Terrasson | Parking Jeanne d'Arc", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30229800000, + 45.12618300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-01", + "description": "SIGEIF - 85 BOULEVARD DE LA REPUBLIQUE - CHATOU", + "ref:EU:EVSE": "FRSIGPSIGE45311;FRSIGPSIGE45312", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*453*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15300790000, + 48.89785180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "EPINAL", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-15", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLPEVCARSEPNAL", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47922200000, + 48.19693700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "Saint Gaudens - Suberville", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4198EVCP01;LFR4198EVCP02;LFR4198EVCP03;LFR4198EVCP04", + "ref": "LFR4198EVCP01;LFR4198EVCP02;LFR4198EVCP03;LFR4198EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73987200000, + 43.11213600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "b8ecca5d-9c12-5560-92b2-5e4d91244c11", + "description": "MOBIVE | Saint Jean Pied de Port | Parking Jai Alai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23358800000, + 43.16553100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-DIDIER - Chemin le Tour du Pont", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "b8c6b204-13a0-53ed-912c-2e3b29d4eab2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10852200000, + 44.00498000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT LEGER EN YVELINES - Rue du Lavoir", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78562001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76803710000, + 48.72061600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3858EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SAVIGNEUX 80 Duguet", + "ref:EU:EVSE": "LFR3858EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06812800000, + 45.60913800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-03-03", + "amenity": "charging_station", + "description": "KFC - Andrézieux", + "capacity": "3", + "charging_station:output": "22 kW;50 kW;60 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PKFCADZ", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29528064949, + 45.52411303313 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Toulon, Plage du Mourillon Entrée Ouest 2;Réseau eborn/ANLPJGMNN8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPANLPJGMNN8;FREBNP7883015845268330973", + "ref": "ANLPJGMNN8;510647", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94563800000, + 43.10793500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "psasupport@evbox.com", + "network": "EVBOX", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "start_date": "2021-09-03", + "ref:EU:EVSE": "FREVBE7U4KNFB4LM7CM2ZIUQRFO3BK44", + "description": "Citro-Puy", + "owner:ref:FR:SIREN": "453406365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43050000000, + 43.57690340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCURLGU", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-15", + "description": "Cuir Center - Longueau", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37159881845, + 49.86770390084 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT455001", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2024-09-16", + "opening_hours": "24/7", + "description": "Carrefour Market Gien", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64412300000, + 47.68897500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42218BF", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Montat", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref": "FRESEPS42218BF", + "start_date": "2021-09-15", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40185000000, + 45.44050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG7491;FROTHPIZIG7481;FROTHPIZIG7471;FROTHPIZIG74191;FROTHPIZIG74181;FROTHPIZIG74171;FROTHPIZIG74101;FROTHPIZIG7411;FROTHPIZIG74111;FROTHPIZIG74121;FROTHPIZIG74131;FROTHPIZIG74141;FROTHPIZIG74151;FROTHPIZIG74161;FROTHPIZIG7421;FROTHPIZIG7431;FROTHPIZIG7441;FROTHPIZIG7451;FROTHPIZIG7461", + "ref": "FR*SOD*S*IZIG*74*9*_*_;FR*SOD*S*IZIG*74*8*_*_;FR*SOD*S*IZIG*74*7*_*_;FR*SOD*S*IZIG*74*6*_*_;FR*SOD*S*IZIG*74*4*_*_;FR*SOD*S*IZIG*74*3*_*_;FR*SOD*S*IZIG*74*17*_*_;FR*SOD*S*IZIG*74*13*_*_;FR*SOD*S*IZIG*74*10*_*_;FR*SOD*S*IZIG*74*1*_*_;FR*SOD*S*IZIG*74*11*_*_;FR*SOD*S*IZIG*74*12*_*_;FR*SOD*S*IZIG*74*14*_*_;FR*SOD*S*IZIG*74*15*_*_;FR*SOD*S*IZIG*74*16*_*_;FR*SOD*S*IZIG*74*18*_*_;FR*SOD*S*IZIG*74*19*_*_;FR*SOD*S*IZIG*74*2*_*_;FR*SOD*S*IZIG*74*5*_*_", + "network": "EDF-EV100", + "description": "CNPE FLAMANVILLE - HDF - RD", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-02-11", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87731586641, + 49.53624191555 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "ÉCURIE MAGNE STATION 1", + "description": "ÉCURIE MAGNE STATION 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6892675", + "opening_hours": "Su 08:00-22:00,Mo 08:00-22:00,Tu 08:00-22:00,We 08:00-22:00,Th 08:00-22:00,Fr 08:00-22:00,Sa 08:00-22:00", + "start_date": "2024-03-06", + "ref": "FRCPIE6892675" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02260700000, + 50.67647800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5874896252852988277", + "operator:email": "roaming@freshmile.com", + "ref": "598347", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/IMLPHRRBEG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72339100000, + 46.42051900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-02-23", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRVIAP122020", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - B&B HOTEL NANTES REZÉ SAINT-SÉBASTIEN", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48548500000, + 47.21095000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "368917", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1166742304871960807", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QRHB3TMWPV", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12267000000, + 49.14250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Volvo - Vannes", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-02", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPPEMZECVOLVO564501", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:30, Mo 14:00-19:00, Tu 08:00-12:30, Tu 14:00-19:00, We 08:00-12:30, We 14:00-19:00, Th 08:00-12:30, Th 14:00-19:00, Fr 08:00-12:30, Fr 14:00-19:00, Sa 08:00-12:30, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69798500000, + 47.64655400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1036227", + "ref:EU:EVSE": "FRFR1P3905618935696051314", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Tu,Mo,Fr,We,Th 08:00-12:00,Fr,Tu,Mo,We,Th 14:00-18:00", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLTMT6G8P8NXYC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37626100000, + 47.37739800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E109655", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - NEUVY S/ BARANGEON - Mairie", + "network": "MODULO - NEUVY S/ BARANGEON - Mairie", + "ref": "FRS18E109655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25506000000, + 47.31485000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892770", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLIU1PP5FJ8NSQ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P7647418963909235192", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23434900000, + 49.41895700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "1127991", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P5423717137863088698", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5LSDJR6PND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87424200000, + 46.27132300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-03-16", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "GRANVILLE - Mairie", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P502182", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59654010000, + 48.83752540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81192001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "MURAT/VEBRE - Avenue Du Languedoc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85983700000, + 43.68306300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059788", + "description": "RELAIS LIMOURS BRIIS SOUS FORGES", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "capacity": "23", + "start_date": "2023-09-04;2023-08-31;2023-10-17", + "owner:ref:FR:SIREN": "531681636;531681637;531681635;531681631;531681632;531681633;531681626;531681628;531681625;531681622;531681624;531681623;531681618;531681615;531681616;531681617;531681619;531681621;531681620;531681629;531681627;531681630;531681634", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF059788", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14800000000, + 48.63400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS48E48194001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "VIALAS - Avenue Valadonnez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89820000000, + 44.33342600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-22", + "network": "Morbihan Energies", + "description": "Pontivy - Parking Jégourel", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRS56PBTK4GPLMA5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96845776904, + 48.07004146678 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH06E62041004", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARRAS - Place Emile Breton", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78243500000, + 50.28643400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30003002", + "network": "Reveo", + "description": "AIGUES MORTES - Rue Du Faubourg De La Fraternité", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18762900000, + 43.56858200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-01-11", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLJKNWD", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "La trinité-porhoët - Rue du Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54521200000, + 48.09728600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B109", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-11-06", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346052562;FRLMSE12346052552;FRLMSE12346052551;FRLMSE12346052561", + "description": "VOUILLE BEAUREGARD -1-1;VOUILLE BEAUREGARD -1-2", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18175000000, + 46.64537000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW", + "description": "Métropolis/FR*MGP*P93048*K", + "opening_hours": "24/7", + "ref": "484811", + "ref:EU:EVSE": "FRMGPP93048K", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44370700000, + 48.86197200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - Niort - Centre commercial Intermarché - DC 24 kW", + "capacity": "1;2", + "network": "AlterBase", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79191P0229B", + "start_date": "2023-06-16", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "owner:ref:FR:SIREN": "200091049", + "socket:type2_combo:output": "24 kW", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43790200000, + 46.30384300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref": "1161264", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP4988110603173305256", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61221200000, + 49.54708100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89397434", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Epinal - ZA Le Saut le Cerf 2", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46750400000, + 48.19942000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMAPP000000008484", + "network": "ESPACE CARROSSERIE DIJON", + "description": "Espace carrosserie Dijon", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "nchevalier@amplitude-auto.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06787740000, + 47.35155160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS88E145650;FRS88E145648", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E145650;FRS88E145648", + "network": "MODULO - XONRUPT LONGEMER - All. des Ecoliers", + "start_date": "2022-08-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - XONRUPT LONGEMER - All. des Ecoliers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92487600000, + 48.08136400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSBRIVE", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies", + "start_date": "2023-07-21", + "description": "BRIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53263000000, + 45.15861000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "VALENTON Duranton", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3627EVCP03;LFR3627EVCP02;LFR3627EVCP01", + "ref": "LFR3627EVCP03;LFR3627EVCP02;LFR3627EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44790200000, + 48.76144100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-10E, Chemin la Valbarelle À St-Marcel", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PFBQTAZPU5O", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43951000000, + 43.28123000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "106931;CSEKWHVUFM", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPCSEKWHVUFM", + "description": "Réseau eborn/CSEKWHVUFM;Vars, Office de Tourisme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68998700000, + 44.59437600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7231350245628386099", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1194661", + "description": "Freshmile France/LLXLVJZ581TE46", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07668200000, + 49.07587400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Ibis Budget - Quimper", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIBSQPR", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "start_date": "2023-10-26;2023-10-17", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.03320145281, + 47.97936922095 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "CTXZPJCMCY;75026", + "opening_hours": "24/7", + "description": "Chorges, La Gare;Réseau eborn/CTXZPJCMCY", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "ref:EU:EVSE": "FREBNPCTXZPJCMCY", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27106000000, + 44.54660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - VIAS - Parking Gambetta", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP34332C", + "ref": "FRETIP34332C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41974000000, + 43.31087000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - HAZEBROUCK", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*229*4*_*_;FR*SOD*S*OTHR*229*1*_*_;FR*SOD*S*OTHR*229*2*_*_;FR*SOD*S*OTHR*229*3*_*_", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR22941;FROTHPOTHR22931;FROTHPOTHR22911;FROTHPOTHR22921", + "opening_hours": "24/7", + "start_date": "2021-08-24", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54424000000, + 50.73067500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6596525", + "ref": "FRCPIE6596525", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Su 00:00-24:00,Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00", + "network": "PROTHEOS STATION 1", + "start_date": "2022-10-12", + "description": "PROTHEOS STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48718000000, + 47.21039600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/X8A9OQR4ED", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5599683955840461078", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "377489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20849200000, + 48.10966100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLILRHEXW5", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA1P7217588670134647540", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "781599", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72298400000, + 48.65045400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "472185", + "description": "Freshmile France/FQ7UX0N0KS", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P37193625340745085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90689500000, + 49.22343700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1000117525;FRSWSE1000117509", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "description": "ABB 22kW Citroën Anthy;ABB 22kW Citroen Anthy 2", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000117525;1000117509", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43136600000, + 46.35018800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7013912143890368731", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JBSMDYN6DU", + "operator": "Freshmile | FR*FR1", + "ref": "466059" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731700000, + 49.31773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2023-08-17;2023-08-22", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 14:00-18:00, Tu 07:00-12:00, Tu 14:00-18:00, We 07:00-12:00, We 14:00-18:00, Th 07:00-12:00, Th 14:00-18:00, Fr 07:00-12:00, Fr 14:00-18:00", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPAPEX344001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Apex Location - Lunel Viel", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07590400000, + 43.67567200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "ref": "FRS28E139678;FRS28E139679", + "description": "AUNEAU Complexe sportif", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "200080869", + "operator:email": "lionel.chauvet@energie28.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E139678;FRS28E139679", + "network": "FR*S28", + "start_date": "2022-06-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76017700000, + 48.46200300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e75e4340-be0a-49dd-adf9-4cf098145c81", + "description": "Artzamendi Cambo les Bains", + "operator:email": "fcascino@agencecd6440.fr", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "centre médical Artzamendi", + "opening_hours": "24/7", + "operator": "SDC CENTRE MEDICAL ARTZAMENDI", + "charging_station:output": "22 kW", + "start_date": "2022-09-05", + "owner:ref:FR:SIREN": "891652950" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40372900000, + 43.35805500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "39773", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8268368595727239833", + "description": "SDEA 10/VDP80ZN7FA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68210600000, + 48.44088200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "928419;576068", + "ref:EU:EVSE": "FRZP1P574065380543571594;FRZP1P4266340921502382901", + "description": "Zephyre/LP003B27;Zephyre/LP00386B", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32552400000, + 48.18699100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRROSE523", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "ABC_carrosserie", + "operator": "RossiniEnergy", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40156150000, + 46.86899370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/molieres", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PMOLIERES", + "ref": "64904", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36029000000, + 44.18950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST11123;FRIZFPFAST11122;FRIZFPFAST11121;FRIZFPFAST11112;FRIZFPFAST11111;FRIZFPFAST11113", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - FALAISE", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*111*1*_*_;FR*SOD*S*FAST*111*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20195600000, + 48.89354800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-04-10;2021-09-08", + "ref:EU:EVSE": "FRS49P49129A;FRS49E49129001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "description": "OuestCharge - Quick Charger Evtronic - Ecouflant - Eperviere;ECOUFLANT - Rue Epervière", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50869600000, + 47.50672100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60P9012896869410308317", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "896691", + "description": "Mouv'Oise/LLLDGDCLMGBPG9", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95623400000, + 49.10527700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-18", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*29*1*_*_;FR*SOD*S*LYON*29*2*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON2912;FRGLYPLYON2911;FRGLYPLYON2921;FRGLYPLYON2922", + "description": "CHB01 - PLACE MARSONNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73444100000, + 45.78528800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30200001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "POMPIGNAN - Place De L'Eglise", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85761500000, + 43.89357400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PZRNMMN", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "description": "Mobilité électrique 56/ZRNMMN", + "opening_hours": "24/7", + "ref": "39074", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36220000000, + 47.75370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "30 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "MONTA;LAST MILES SOLUTIONS", + "owner:ref:FR:SIREN": "814699492", + "operator:email": "contact@rirodo.fr", + "opening_hours": "24/7", + "start_date": "2022-11-02;2022-02-11", + "operator": "MONTA;LAST MILES SOLUTIONS", + "ref:EU:EVSE": "FRRIRE2804856", + "description": "PARKING NEGRESKO", + "socket:type2_combo:output": "30 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39000000000, + 43.27000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "951464", + "charging_station:output": "3.7 kW;22 kW", + "description": "Mobilygreen CPO/b729e2ac-5005-4971-8d3b-d2a604184cca", + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P5329651486632035321", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42965000000, + 46.65710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE16511;FRSIGPSIGE16512", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*165*1*_*_", + "start_date": "2021-07-21", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 23 BVD RICHARD WALLACE - PUTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23971000000, + 48.87981200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-12-15", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E89209001", + "description": "JOUY - Rue des Jacquins - Bornes publiques", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98448330000, + 48.16838900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Laval Changé", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89876982", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75181300000, + 48.09047600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref:EU:EVSE": "FRS40PMB404911;Non concerné;FRS40PMB404912;FRS40PMB404913;FRS40PMB404914", + "socket:type2_combo:output": "50 kW;36 kW", + "description": "BENESSE MARENNE - D28 AIRE DE COVOITURAGE;MOBIVE | Benesse Marenne | D28 Aire de Covoiturage", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "operator": "199__SYDEC40;IZIVIA", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "ref": "885419d1-ae4a-5db2-af7f-7f8fea19b0f4;FR*SOD*S*MB40*49*1*_*_", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39689600000, + 43.63103100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-05-17", + "capacity": "2", + "amenity": "charging_station", + "description": "LE MEE SUR SEINE - AVENUE DE LA RESISTANCE", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MERA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62788500000, + 48.54112000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSCLYSL", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "CLAYE SOUILLY", + "start_date": "2022-10-21", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66372600000, + 48.94736500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SOMAIN Michel", + "ref:EU:EVSE": "LFR3350EVCP03;LFR3350EVCP02;LFR3350EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3350EVCP03;LFR3350EVCP02;LFR3350EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28324700000, + 50.35465500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COURNONTERRAL - Rue Piscine Poséïdon", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34088001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72759800000, + 43.55336600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/YOVTZBLZ6Y;Dieulefit, Parking des Grands Pres", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "31816;YOVTZBLZ6Y", + "ref:EU:EVSE": "FREBNPYOVTZBLZ6Y" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06040300000, + 44.52208200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521399", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7252125591879725266", + "description": "Freshmile France/YKHMXYULO0", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08322600000, + 49.00326900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-04;2022-03-01", + "capacity": "6", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MEAUX - Parking Cité Administrative", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E77284003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88689160000, + 48.95612100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP1935228529839824412", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "1162707", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/LLRURJLL3JIOW4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90259000000, + 43.12726700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "22 kW;150 kW;11 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAVIJL", + "opening_hours": "24/7", + "description": "Avignon - Jardiland", + "operator": "ELECTRA", + "start_date": "2024-04-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87465900000, + 43.91815800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E75115002", + "description": "Parking Paris gare Montparnasse Pasteur dépose minute - EFFIA", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31714900000, + 48.83845900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "JULSOL BORNE 1", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6626215;FRCPIE6626205", + "ref": "FRCPIE6626215;FRCPIE6626205", + "start_date": "2022-10-12", + "description": "JULSOL BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76689800000, + 44.39476700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "I89XUJ039I;756858", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "description": "Easy Charge/I89XUJ039I;Le Chesnay-Rocquencourt , Rue de Louvenciennes", + "socket:type2_combo:output": "24 kW", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPI89XUJ039I;FRECHP467299047079796297" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13736000000, + 48.82647000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX16*15", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1615", + "opening_hours": "24/7", + "description": "Paris | Boulevard Émile Augier 20", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27400000000, + 48.86030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/SCG80SXBHI", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4434798537562280096", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "412106", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24298700000, + 49.38597400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-12-07", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP01002", + "ref": "FRTCBP01002", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "393397435", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "description": "IBIS Rouge Falaise", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700611, + 48.90683364868 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "578933", + "ref:EU:EVSE": "FRFR1P4680463612939520511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/NR1CEVICM8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79055800000, + 41.93261700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "opening_hours": "Mo 10:00-12:00, Mo 15:00-18:00, Tu 10:00-12:00, Tu 15:00-18:00, We 10:00-12:00, We 15:00-18:00, Th 10:00-12:00, Th 15:00-18:00, Fr 17:00-19:00, Sa 10:00-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBPM921301", + "operator:email": "support@driveco.com", + "description": "Hyundai - Issy-les-Moulineaux", + "start_date": "2022-03-03", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25070500000, + 48.81785500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "description": "LANDIVISIAU - Avenue Du Coat Meur", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E29105004", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07009460000, + 48.50835870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11069008", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "CARCASSONNE - Parking Souterain Andre Chenier", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35150800000, + 43.21695400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "341f7fa7-168e-4b8c-a799-26c4c58278e2", + "owner:ref:FR:SIREN": "489635391", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Garage Horizon Automobiles - 22 kW AC", + "network": "UNICAP - Garage Horizon Automobiles", + "ref:EU:EVSE": "FRZP1PEAC69518", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29422703000, + 46.36645647000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - MONTCORNET - Village historique", + "description": "MODULO - MONTCORNET - Village historique", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS08E57692;FRS08E57691", + "ref:EU:EVSE": "FRS08E57692;FRS08E57691" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62525700000, + 49.82811600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79438", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PPBCCRA", + "network": "FDE 80", + "description": "FDE 80/PBCCRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04167000000, + 50.03360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MC DONALDS - BEAUFORT EN VALLEE", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*250*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST25012;FRIZFPFAST25011;FRIZFPFAST25013", + "start_date": "2024-09-09", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22412000000, + 47.43657390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44028001;FRS44P44028A", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "LE CELLIER - Place Saint-Méen;OuestCharge - Diva Sp - Le Cellier - Saint-Meen", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-18;2021-05-17", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34823400000, + 47.31913200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Château-Landon;CHATEAU-LANDON - Rue Du Gatinais", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2015-05-28;2023-05-17", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77099001;FRS77P77099A", + "ref": "01F5ZAKH610W301VEXX0C9G8HD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70119000000, + 48.14958600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "CARREFOUR FIGEAC", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000056005", + "description": "CARREFOUR FIGEAC", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02451946686, + 44.60613271768 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - AVOINE - Pl. de l'église", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - AVOINE - Pl. de l'église", + "ref": "FRS37E219933;FRS37E219934", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E219933;FRS37E219934", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18304333000, + 47.20550704000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "operator": "44__CCCPH", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bcb7b766-7331-5f61-a161-69b76c543809", + "description": "CCCPH - Tucquegnieux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90002100000, + 49.31122200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SPLM Parking Villette", + "network": "SPLM Parking Villette", + "ref:EU:EVSE": "FRG10P69383BB", + "amenity": "charging_station", + "start_date": "2024-08-01", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "capacity": "3;4", + "charging_station:output": "7.4 kW", + "ref": "FRG10P69383BB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86278579000, + 45.75870069000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "52735f57-68a4-5a18-a2e8-667c152a0ca2", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | ARS-EN-RÉ | Rue de Graffaud", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52082400000, + 46.20973200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 36 RUE DE LEGLISE - MORANGIS", + "ref": "FR*SOD*S*SIGE*279*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE27912;FRSIGPSIGE27911", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33933600000, + 48.70590700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6499325", + "ref:EU:EVSE": "FRCPIE6499325", + "network": "GVA ECULLY AC", + "start_date": "2022-10-12", + "description": "GVA ECULLY AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79543100000, + 45.77545600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRLE2P76793826572781726", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "706109", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/VGLWGT1XND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828500000, + 45.38837700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "9e61d4ff-cd40-5e17-8639-29b66770be8a", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Issigeac | D14 | Parking", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60805500000, + 44.73090400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "description": "Réseau AlterBase - Plaine et Vallées / Oiron - Centre", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB22026A", + "start_date": "2016-01-06", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08293332000, + 46.90095884000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Pays de Gex - ePremium - Peron - Eglise", + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "start_date": "2020-03-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRAGXP01288A", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92609600000, + 46.18919300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBI Juery", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR0982EVCP01", + "ref:EU:EVSE": "LFR0982EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18191300000, + 43.93787000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "charging_station:output": "3 kW", + "description": "VARCES-ALLIERES-ET-RISSET - Poste", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38524004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68321214069, + 45.08864743251 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-05-20;2022-03-10", + "ref:EU:EVSE": "FRA16PWIIZ13622;FRA16PWIIZ13621;FRA16PWIIZ13612;FRA16PWIIZ13611", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*136*1*_*_;FR*SOD*S*WIIZ*136*2*_*_", + "network": "WIIIZ", + "description": "VALBONNE - PARKING BUISNESS POLE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04087000000, + 43.62708000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "86762", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PCHOISYAUBACLEC", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/choisyaubaclec", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87829000000, + 49.43800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PATLSGM", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-29", + "opening_hours": "24/7", + "description": "Esso - Saint-Geours-de-Maremne", + "charging_station:output": "50 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "187.5 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23184749301, + 43.71287998607 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Tallard, Parking Intermarché;Réseau eborn/YPBNINMYNO", + "ref:EU:EVSE": "FREBNPYPBNINMYNO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "YPBNINMYNO;32635", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03450700000, + 44.45879500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGRPSO", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-01-19", + "description": "Grosseto-Prugna - Sofitel", + "socket:type2_combo:output": "24 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.78050100000, + 41.88358900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "16", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-07;2023-03-30;2022-12-14", + "ref:EU:EVSE": "FRP07E060880101;FRP07E06088005;FRP07E060880051", + "description": "NICE - Magnan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24376000000, + 43.69107000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:30-17:30,Tu 08:30-17:30,We 08:30-17:30,Th 08:30-17:30,Fr 08:30-17:30", + "ref": "FRCPIE6689255", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-16", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6689255", + "description": "TINCQUES BORNE 2 AC", + "operator:email": "info@chargepoint.com", + "network": "TINCQUES BORNE 2 AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48488100000, + 50.35207200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "description": "Easy Charge/LLP8K0JJQ1M3L7", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP1304162966652214935", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "998763" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31397800000, + 43.43853200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP143022", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Chaumousey - Réservoir de Bouzey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35221600000, + 48.16717600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20835770000, + 49.97123810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/GMQ6WNJ7DC", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "597846", + "ref:EU:EVSE": "FRFR1P3001418579184331256", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61512800000, + 48.57647700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0701", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX07*01", + "start_date": "2022-02-04", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Chanaleilles 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31901230000, + 48.85304030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/SSWRWK", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PSSWRWK", + "charging_station:output": "50 kW;44 kW", + "ref": "86822", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56737500000, + 44.83788100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2021-04-07;2021-12-06", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "description": "Hyundai - Groupe Dugardin - Faches", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUGARDINHYUNDAI591551", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08756700000, + 50.58517500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22372001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Tremuson-Rue du Bouchon (parking salle municipale)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85185900000, + 48.52265200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E179112;FRS18E179113", + "description": "MODULO - ST AMAND-MONTROND - Av. Jean Jaurès(Hôpital)", + "charging_station:output": "0 kW", + "ref": "FRS18E179112;FRS18E179113", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST AMAND-MONTROND - Av. Jean Jaurès(Hôpital)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49495700000, + 46.72550100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RED AND WHITE ", + "owner:ref:FR:SIREN": "813213600", + "amenity": "charging_station", + "capacity": "1", + "description": "RED AND WHITE ", + "ref:EU:EVSE": "Non concerné", + "start_date": "2023-01-25", + "ref": "3be1f9c0-1f23-11ee-be56-0242ac120002", + "opening_hours": "Mo-Fr 09:00-17:00", + "operator": "RED AND WHITE ", + "charging_station:output": "7.4 kW", + "operator:email": "redandwhite.vtc@gmail.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12920767452, + 44.29974582239 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/HNYSCUGFWO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P8885429844009341060", + "ref": "32098", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72706900000, + 48.51718000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81004013", + "charging_station:output": "50 kW;43 kW", + "description": "ALBI - Stadium - Rue Colonnel Teyssier", + "start_date": "2022-01-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16638130000, + 43.92157070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Chartres Gasville;Chartres Gasville", + "ref:EU:EVSE": "FRIOYE126451;FRIOYE126405;FRIOYE126404;FRIONE126400;FRIOYE126401;FRIOYE126402;FRIOYE126452;FRIOYE126453", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2019-03-14;2018-10-26", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "network": "IONITY GMBH;Chartres Gasville", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE126451;FRIOYE126405;FRIOYE126404;FRIONE126400;FRIOYE126401;FRIOYE126402;FRIOYE126452;FRIOYE126453", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58000800000, + 48.46878200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Saffre - Echeveau", + "ref:EU:EVSE": "FRS44P44149A", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57997000000, + 47.50087300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77341001;FRS77P77341A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Noyen-sur-Seine;NOYEN-SUR-SEINE - Rue De L'Église", + "ref": "01F5ZAKH614YDA9431KPAVPBE3", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-15;2016-05-30", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35106000000, + 48.45281000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-OMER - parking-Place Suger", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62765002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25186400000, + 50.75306300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - LA CHAPELLE SUR LOIRE - Pl. Albert Ruelle", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - LA CHAPELLE SUR LOIRE - Pl. Albert Ruelle", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E225457;FRS37E225458", + "ref": "FRS37E225457;FRS37E225458" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22246400000, + 47.24819900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PAAVVNR", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Larmor-plage - Boulevard de Port Maria", + "start_date": "2016-08-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38456100000, + 47.70391000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*154*1*_*_;FR*SOD*S*LYON*154*2*_*_", + "start_date": "2022-03-31", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "GIV01 - PARKING PREVERT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON15422;FRGLYPLYON15421;FRGLYPLYON15411;FRGLYPLYON15412", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76839100000, + 45.58392600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOUFFLERS - Rue des Ecoles", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "FR*MEL*P59390*03", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRMELP5939003", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22850800000, + 50.66040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSEPRIC690091", + "description": "SEPRIC - Champagne Mont d'Or", + "start_date": "2019-06-06", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78118700000, + 45.80382200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BORNE HYPER U STATION 2", + "ref": "FRCPIE6590315;FRCPIE6583555", + "start_date": "2021-04-02", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6590315;FRCPIE6583555", + "operator:email": "info@chargepoint.com", + "description": "BORNE HYPER U STATION 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37995800000, + 49.30126800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454257", + "ref:EU:EVSE": "FRLE2P87326916956735550", + "description": "Leclerc/DZPQJFHGIZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976300000, + 48.01980900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Pellegrue | Parking du Cimetière", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "ref": "cee62e22-c112-5842-a7c5-104e876e649f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07709100000, + 44.74275200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Évry-Courcouronnes - Villa Rochefort", + "ref": "5915c02a-48df-5244-bb20-cb234fb14fac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43700400000, + 48.62426100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "description": "CASINO TOURS LA RICHE", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14;10", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2021-11-22;2021-11-24", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "ref:EU:EVSE": "FRALLPCAS011;FRSITE00000007", + "network": "ALLEGO;GreenToWheel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65665800000, + 47.37656700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2612EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2612EVCP01", + "charging_station:output": "22 kW", + "description": "CHARANCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59301600000, + 45.52713400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PRN6NE1CSIN", + "operator:email": "support@evzen.com", + "description": "Entressens, Gymnase Arcelli" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93361900000, + 43.59184000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS88E243966;FRS88E243968", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - MATTAINCOURT - Chemin des luthiers", + "network": "MODULO - MATTAINCOURT - Chemin des luthiers", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E243966;FRS88E243968" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13101900000, + 48.28082000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-09-09", + "description": "ANTIBES - PARKING PALMIERS", + "ref:EU:EVSE": "FRA16PWIIZ24212;FRA16PWIIZ24211", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*242*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11411400000, + 43.56981900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "377432", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1005397614719750438", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/carlingfron", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71804000000, + 49.16690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-04-25", + "charging_station:output": "50 kW;100 kW;22 kW;187.5 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "description": "Mr. Bricolage - Champniers", + "ref:EU:EVSE": "FRPD1PMRBCHP", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17765130000, + 45.68867110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "346673;EDRVAH0JV8", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/EDRVAH0JV8;La-Chaise-Dieu, Parking Gare SNCF", + "start_date": "2020-11-20", + "ref:EU:EVSE": "FREBNP6224052146700862612;FREBNPEDRVAH0JV8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69669000000, + 45.31652000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "EVzen/1CD6D564-50F7-43A0-AFCB-1AFEB2302C1E", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "ref": "1148238", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP1369012354628707517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23437300000, + 47.23268900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*591*1*_*_;FR*SOD*S*OTHR*591*2*_*_", + "description": "INTERMARCHE - MORTAGNE AU PERCHE", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR59121;FROTHPOTHR59111;FROTHPOTHR59112;FROTHPOTHR59122", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55992700000, + 48.50792300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLLBHRC", + "capacity": "2", + "description": "La Balme-De-Sillingy, Lac", + "amenity": "charging_station", + "network": "eborn", + "ref": "LLBHRC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03261000000, + 45.97130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31951;XEAAPBSHGL", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPXEAAPBSHGL", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Saint-Sorlin-En-Valloire, Place des Gauds;Réseau eborn/XEAAPBSHGL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95413400000, + 45.29137600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-01-22", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Hôtel Campanile Dijon-Sud Marsannay", + "ref:EU:EVSE": "FRVIAP121032", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01715900000, + 47.28102500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLZSE4D4V264QQ", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1169388", + "ref:EU:EVSE": "FRFR1P4069469114333624822", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02979100000, + 49.15162000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRV75PPX1319", + "opening_hours": "24/7", + "ref": "FR*V75*PPX13*19", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Jeanne D'Arc 157", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35923480000, + 48.83655830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "578885", + "description": "Freshmile France/HF3BZTMM7P", + "ref:EU:EVSE": "FRFR1P8764180750480357064", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76945300000, + 50.63343000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPSIBLU442501", + "opening_hours": "Mo 09:00-12:30, Mo 14:00-17:30, Tu 09:00-12:30, Tu 14:00-17:30, We 09:00-12:30, We 14:00-17:30, Th 09:00-12:30, Th 14:00-17:30, Fr 09:00-12:30, Fr 14:00-17:30, Sa 09:00-12:30, Sa 14:00-17:30, Su 09:00-12:30, Su 14:00-17:30", + "operator:email": "support@driveco.com", + "start_date": "2022-05-24", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW", + "description": "Les Pierres Couchées (Camping Siblu) - Saint-Brevin-les-Pins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15123500000, + 47.20389800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-07-26", + "capacity": "2", + "description": "900046", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PGIVERNYTOURISTIQUE1", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53010200000, + 49.07475620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BREHAND - 13 Rue de Penthièvre", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-04-18", + "ref:EU:EVSE": "FRS22E22015001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.57304400000, + 48.40316100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SARTROUVILLE - Parking Dijou", + "ref:EU:EVSE": "FRY03E78586006", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15277000000, + 48.93932000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BDS_Genie_Climat", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE145", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-09-23", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04234900000, + 50.56390800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1029864", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLTVXBUCZ7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP7017694026656555363", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03060500000, + 43.14303000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "IONITY GMBH", + "ref": "FRIONE446600", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Pamiers", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE446600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64162400000, + 43.07495800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E43901;FRS51E43900", + "network": "MODULO - CHATILLON SUR MARNE - Rue de Madeleine", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHATILLON SUR MARNE - Rue de Madeleine", + "start_date": "2020-12-11", + "ref": "FRS51E43901;FRS51E43900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75817500000, + 49.10055700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CIZOS - parking com com", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65148001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50691000000, + 43.26722000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF088461", + "owner:ref:FR:SIREN": "531681734;531681733;531681732;531681730;531681731;531681729;531681728;531681726;531681725;531681724;531681727;531681735", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "description": "Relais Chartreux", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF088461", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "start_date": "2024-03-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01660000000, + 47.32250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34175001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-12-05", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MOUREZE - Parking Office du Tourisme", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36119435870, + 43.61713931123 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-18", + "description": "Saint-jean-brévelay - Rue des Genêts", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PHRLQKX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72318700000, + 47.84437600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "510530", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7529415233487873488", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MQXVLYFBDW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36583100000, + 48.74221300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30321002", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-09-28", + "description": "SOMMIERES - Place des Aires" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08581000000, + 43.78191000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volkswagen - SLBA - Bruay", + "network": "DRIVECO", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2020-09-11", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPSAIPVOLKSWAGEN598601", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54871100000, + 50.38970800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC2P006801", + "ref": "FRC2P006801", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "network": "GYROVOSGES", + "operator:email": "contact@car2plug.fr", + "description": "GYROVOSGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56520060000, + 48.20287180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMEJRIMMO11", + "capacity": "5", + "description": "017a012b-1701-4a2c-a262-2d5dfd1ff1fd", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-02-15", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82832482232, + 43.78639927025 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Château L'Eveque | Route de Royer", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "290e7f73-1b55-59ad-9287-4632af495cb7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68774000000, + 45.24278000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE33TAEA", + "start_date": "2023-11-07", + "operator": "STATIONS-E", + "capacity": "2", + "description": "Le 180 - LA TESTE DE BUCH", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15705200000, + 44.61627200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1130514", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "description": "BornEco/6683f58aaf6adae311a11fdc", + "ref:EU:EVSE": "FRBHMP4847248295266840557", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89281000000, + 43.75799000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P7056144693562015644", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/SZKATEV5AC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "22", + "ref": "492057" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008600000, + 50.71344100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Roquevaire, 23 Allée Alfred Rinn", + "ref:EU:EVSE": "FRM13PUIKFXKPWLN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60420100000, + 43.34857700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/BX2FMMHQG6", + "ref": "402455", + "ref:EU:EVSE": "FRS89P1435605999320825725", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42688800000, + 48.16737100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363730", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "start_date": "2023-04-19", + "description": "R3 - Norauto Montbeliard", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81251200000, + 47.50095800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5780258690960940996", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/CSYLN7MJO0", + "amenity": "charging_station", + "ref": "674201", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96047400000, + 45.70781900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-10;2023-03-15", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUEAN", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "Super U - Eaunes", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37263300000, + 43.41793850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPVZZKPP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/VZZKPP;Châteaudouble, Place de l'église", + "start_date": "2020-06-11", + "ref": "VZZKPP;31801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09518000000, + 44.89940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP1152816766460852280", + "capacity": "2", + "description": "CARF - Bornes Publiques/97BBD38A-F72F-4418-9160-266374714746", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "612871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49425400000, + 43.78100600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "FFF - MAIRIE DE JEUMONT", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "ref": "FR*SOD*S*OTHR*792*1*_*_;FR*SOD*S*OTHR*792*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR79212;FROTHPOTHR79211;FROTHPOTHR79221;FROTHPOTHR79222", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09861300000, + 50.54367040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Châteauneuf-Sur-Isère, Quai de l'Isère;Réseau eborn/DRERGYFIWV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDRERGYFIWV", + "ref": "DRERGYFIWV;31807" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93693300000, + 45.01566900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "121565;XWOZOZWQ4X", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/XWOZOZWQ4X;Saint-Bonnet-En-Champsaur, Gendarmerie", + "ref:EU:EVSE": "FREBNPXWOZOZWQ4X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07552800000, + 44.68344100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-11", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "description": "DOMAINE DE LA MARINA - MESSANGES", + "opening_hours": "24/7", + "network": "CAMPING RESASOL", + "ref:EU:EVSE": "FROTHPOTHR39811;FROTHPOTHR39812", + "ref": "FR*SOD*S*OTHR*398*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39437600000, + 43.79727900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8779050653429937600", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MHD8X0KU4L", + "ref": "510524" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66883200000, + 47.80954500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP29575", + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Epinal, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47747810000, + 48.20083010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2459349473752484782", + "ref": "896634", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LR8TGUULFU", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26319300000, + 43.37836400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-12", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 13:30-18:00, Sa 08:00-12:00", + "capacity": "1", + "ref": "FRTCBP02466", + "owner:ref:FR:SIREN": "981092794", + "operator": "TotalEnergies Marketing France", + "network": "GARAGE MERCIER", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP02466", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Garage Mercier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70151500000, + 49.43088200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8082189239184658614", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/PDDDCJBIC9", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "479214" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760800000, + 49.09464400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22212001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plouec du Trieux-Place de la paix", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.19142500000, + 48.67439300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "831156278", + "start_date": "2021-03-24;2021-03-30", + "network": "Mazda Lille - Kodo Automobiles", + "opening_hours": " Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-17:45", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "57006;56657", + "description": "Mazda - Lille (Villeneuve-d'Ascq) - 22kW AC ;Mazda - Lille (PARKING) - 22kW AC PARKING ", + "ref:EU:EVSE": "FRZMAE22AC57006;FRZMAE22AC56657", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03166920000, + 50.64211080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-07-04", + "ref:EU:EVSE": "FRROSE360", + "operator": "RossiniEnergy", + "description": "Groupe_Element_entrepot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10453370000, + 50.54462200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78401003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MEULAN-EN-YVELINES - Quai Albert Joly", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-08-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90828400000, + 49.00429400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20700720000, + 49.97212200000 + ], + [ + 1.20684790000, + 49.97209290000 + ], + [ + 1.20679920000, + 49.97213290000 + ], + [ + 1.20676530000, + 49.97215640000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Val Neuvy", + "description": "Val Neuvy", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "charging_station:output": "350 kW", + "ref": "FRIOYE459205;FRIOYE459204;FRIOYE459201;FRIOYE459202;FRIOYE459203;FRIOYE459206", + "start_date": "2024-05-17", + "ref:EU:EVSE": "FRIOYE459205;FRIOYE459204;FRIOYE459201;FRIOYE459202;FRIOYE459203;FRIOYE459206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85618200000, + 48.27114700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "start_date": "2021-04-20;2024-05-24", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53P53136A;FRS53E53136001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "LOIGNE-SUR-MAYENNE - Rue D'Anjou;OuestCharge - Diva Sp - Loigne-Sur-Mayenne - Anjou", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74718100000, + 47.87102900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ILLE SUR TET - Rue Arago", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2017-09-26", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66088001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62260500000, + 42.67122200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20770820000, + 49.97082760000 + ], + [ + 1.20756010000, + 49.97085120000 + ], + [ + 1.20739370000, + 49.97089490000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Montauban B", + "description": "Montauban B", + "ref": "FRIENE011502;FRIENE011501", + "ref:EU:EVSE": "FRIENE011502;FRIENE011501", + "start_date": "2023-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36582000000, + 44.03920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "description": "ETRELLES - 15 P.A de la Vigne ", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35109001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19410100000, + 48.06633400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "description": "St Maurice lès Charencey - Station communale", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "charging_station:output": "43 kW;160 kW", + "network": "61mobility", + "amenity": "charging_station", + "start_date": "2023-07-19", + "socket:type2_combo:output": "160 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61278A", + "ref": "SE61-STMACHA-002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76097882800, + 48.65207586000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5568643176463859304", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJ2K5AFV2O88U", + "ref": "892311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.96472600000, + 48.82874300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-08", + "owner:ref:FR:SIREN": "200075240", + "ref:EU:EVSE": "FRS31PUCRLEP", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "description": "Roulez Électrique En Haute-Garonne/UCRLEP;Tarabel, Ecole", + "opening_hours": "24/7", + "ref": "UCRLEP;49027", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67391000000, + 43.51160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92050011", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2024-03-21", + "operator": "Bouygues E&S", + "description": "NANTERRE - Avenue de la République", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22326000000, + 48.91202200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "MIDAS_1", + "opening_hours": "24/7", + "description": "MIDAS_1", + "ref:EU:EVSE": "FRCG0E000478", + "start_date": "2024-05-15", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.10247200000, + 49.29970800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING GABRIEL FAURE", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*181*1*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-10-11", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE18111;FRM06PNICE18112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26538500000, + 43.69579800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Damazan | Salle des Fêtes", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "ac0b33b7-3b7e-5dc1-8250-d81644f7ab82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27423100000, + 44.29120600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE32011;FRSIGPSIGE32012", + "description": "SIGEIF - 17 RUE LAZARE CARNOT - BROU-SUR-CHANTEREINE", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-12-14", + "ref": "FR*SOD*S*SIGE*320*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63176100000, + 48.88236600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "charging_station:output": "90 kW", + "capacity": "2", + "description": "Bump - Spirit Energies - Cormeilles-en-Parisis", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS202086", + "ref": "202086", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19488380000, + 48.95180840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PONT SAINTE MAXENCE", + "ref:EU:EVSE": "LFR3260EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3260EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59657800000, + 49.30769900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Agen | Rue Diderot | 002", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "ref": "65e8b307-2362-5efa-a088-cdc62938199b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61961300000, + 44.20055200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "6a4e3a08-ff1d-5572-82ab-1d2007f808cb", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Sainte-Geneviève-des-Bois - Rue Léo Lagrange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34384000000, + 48.63391100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP78140VLZMOZART", + "network": "ELECTRIC 55 CHARGING", + "description": "MOZART - VELIZY", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "2.3 kW;22.08 kW", + "ref": "FR*55C*P78140*VLZ*MOZART", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17085500000, + 48.78394900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3462EVCP02;LFR3462EVCP04;LFR3462EVCP03;LFR3462EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "MONT DE MARSAN Juin", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3462EVCP02;LFR3462EVCP04;LFR3462EVCP03;LFR3462EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47539500000, + 43.90501300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PITMBAI", + "amenity": "charging_station", + "start_date": "2021-05-11", + "description": "Intermarché - Bailleul", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74437200000, + 50.73112700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/QHL8YCFSIR;Fraisses, Parking place Jean Rist", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "QHL8YCFSIR;95996", + "ref:EU:EVSE": "FREBNPQHL8YCFSIR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26608400000, + 45.38913200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "start_date": "2023-11-16", + "amenity": "charging_station", + "description": "e-Totem - Starwash Avesnes", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP59036A", + "ref": "FRETIP59036A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93622516876, + 50.12862663096 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Grenoble Montorge - Téléphérique - PARK GRENOBLE ALPES METROPOLE", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;7 kW", + "start_date": "2024-07-01", + "network": "EFFIA France", + "capacity": "10", + "ref:EU:EVSE": "FRP01E381850041;FRP01E38185004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72502000000, + 45.19189000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-12-06", + "capacity": "4", + "description": "Carrefour Market - Montalieu", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT383901", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40371200000, + 45.81015300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ZW7N7BPXFX;102623", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPZW7N7BPXFX", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "description": "Réseau eborn/ZW7N7BPXFX;Saint-Marcellin, Place du Champ de Mars", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;43 kW", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31921000000, + 45.15520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*513*1*_*_", + "capacity": "2", + "description": "ES/ EGELHOF-HOLDING - NEUVE-EGLISE", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR51311;FROTHPOTHR51312", + "network": "ES B2B", + "operator:email": "sav@izivia.com", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31291800000, + 48.33595100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MOLSHEIM BORNE P2-02", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRCPIE6721065;FRCPIE6721145", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "MOLSHEIM BORNE P2-02", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6721065;FRCPIE6721145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53153100000, + 48.54110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QHOHHOBGVO", + "opening_hours": "Mo,Tu,Fr,Th,We 07:30-19:00", + "socket:type2_combo:output": "160 kW;60 kW", + "capacity": "5", + "ref:EU:EVSE": "FRFR1P5069982907877676785", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "529541", + "network": "Freshmile France", + "charging_station:output": "22 kW;60 kW;160 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54140900000, + 43.47796700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRUBIE10099360;FRUBIE10091710;FRUBIE10093725;FRUBIE10095460", + "start_date": "2023-04-17", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "30 Rue Georges Boissaye du Bocage - Sainte-Adresse ; 30 Rue Georges Boissaye du Bocage - Sainte-Adresse " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07383300000, + 49.51041700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "74960", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/YSEGUQ", + "ref:EU:EVSE": "FRFR1PYSEGUQ", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57113000000, + 44.87830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "socket:type2_combo:output": "180 kW;240 kW;400 kW", + "operator:email": "support@alizecharge.fr", + "description": "TOULOUSE - Avenue Jean Chaubet", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "240 kW;180 kW;400 kW", + "ref:EU:EVSE": "FRTLSE31555051", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48350000000, + 43.60654000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "892053", + "network": "Freshmile France", + "description": "Freshmile France/LLHUDJR8729BFQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5367391450878316322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78391000000, + 47.66730400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/LJYDD69MZG", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461817", + "ref:EU:EVSE": "FRS14P8760780325161048032" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54519800000, + 49.19519800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12095001", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "ESCANDOLIERES - Le Bourg - Parking D253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33944600000, + 44.46841600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA3P1300845409696658045", + "ref": "1075233", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATL9PMV0WOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83492700000, + 45.58561400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-21;2021-04-27;2024-03-25;2024-03-26", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Murs-Erigne - De Grand Clos;MURS-ERIGNE - Mail de Grand Clos", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "capacity": "1;4", + "ref:EU:EVSE": "FRS49P49223A;FRS49E49223001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52858600000, + 47.39686400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-01-24", + "network": "SARTHE IRVE", + "description": "BEAUMONT SUR SARTHE - Place de la Libération", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS72E72029001", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12832620000, + 48.22611170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-07", + "ref:EU:EVSE": "FRH14E59647002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "WATTEN - Place Du Rivage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20967000000, + 50.83158500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44186002;FRS44P44186B", + "amenity": "charging_station", + "start_date": "2024-04-26;2021-04-22", + "description": "OuestCharge - Diva Sp - Sainte-Pazanne - Verdelet;SAINTE-PAZANNE - Rue Du Verdelet", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81225700000, + 47.10315900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG 63/FR*S63*P63300*A;SIEG63 - ePremium - Riom - Jeanne D Arc", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63300A", + "ref": "518393", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11427900000, + 45.89031100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59344001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LEVAL - Rue Roger Martin", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83958800000, + 50.18871700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34010001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ANIANE - Avenue de Saint Guilhem", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58514300000, + 43.68740800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRETEIL - Boulevard Jean Baptiste Oudry", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-08-20", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46006115806, + 48.77389331506 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-26;2023-11-23", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE7712;FRM06PNICE30712;FRM06PNICE30711;FRM06PNICE7711", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA TOUR-SUR-TINEE - PARKING VILLAGE;LA-TOUR-SUR-TINEE - PARKING VILLAGE", + "ref": "FR*SOD*S*NICE*307*1*_*_;FR*SOD*S*NICE*77*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18385300000, + 43.94713500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Biron | Parking Bellevue", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6e2b87f2-6b60-55b5-aa91-ec09ca50d87f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87059300000, + 44.63078300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*429*1*_*_", + "start_date": "2023-07-25", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE42911;FRSIGPSIGE42912", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - AVENUE DU CHEMIN VERT - ZONE PORTUAIRE PARKING DU PORT DE PLAISANCE - LISLE-ADAM", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21795100000, + 49.12177600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "MONT DE MARSAN", + "start_date": "2022-06-22", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLPEVCARSMTDMA", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48020700000, + 43.90151400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3175EVCP01;LFR3175EVCP04;LFR3175EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "THIERS Lagrange", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3175EVCP01;LFR3175EVCP04;LFR3175EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53202400000, + 45.84812600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Mourenx | Boulevard de la République", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9d6ee8a3-7909-50e8-a266-ed0ee5b05d5e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63011300000, + 43.37091400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "LA TOUR-D'AIGUES - Rue Claude Haut", + "ref": "490e8a33-c18c-5bee-a81f-0100a9c57b53" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54838300000, + 43.72857700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "description": "LES ESSARTS LE ROI - Place du Marché", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78220001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89387020000, + 48.71890150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "SAINT ASTIER - Glaneurs", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4268EVCP04;LFR4268EVCP03;LFR4268EVCP02;LFR4268EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4268EVCP04;LFR4268EVCP03;LFR4268EVCP02;LFR4268EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53881100000, + 45.14829400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PITMTOU", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché Super - Toucy", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-04-10", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31289777771, + 47.72144868149 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPN9XQ3KEFL9", + "ref": "N9XQ3KEFL9", + "capacity": "2", + "amenity": "charging_station", + "description": "Montélimar, Place Emile Loubet", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-21", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74804300000, + 44.55819700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP94078A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - LAPEYRE Villeneuve st Georges", + "ref:EU:EVSE": "FRETIP94078A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44374882419, + 48.75798397334 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cora - Verdun", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-06", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORVRD", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40830736235, + 49.14274224923 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Etrepagny", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT271501", + "operator:email": "support@driveco.com", + "start_date": "2024-05-15", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62732300000, + 49.30279000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2019-06-20", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "ref:EU:EVSE": "FRESEPS42218AD", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRESEPS42218AD", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Centre des Congrès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40332600000, + 45.42699500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG3351;FROTHPIZIG3341;FROTHPIZIG3311;FROTHPIZIG3321;FROTHPIZIG3331;FROTHPIZIG3361;FROTHPIZIG3371;FROTHPIZIG3381;FROTHPIZIG3391", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "network": "EDF-EV100", + "start_date": "2020-10-16", + "amenity": "charging_station", + "ref": "FR*SOD*S*IZIG*33*5*_*_;FR*SOD*S*IZIG*33*4*_*_;FR*SOD*S*IZIG*33*3*_*_;FR*SOD*S*IZIG*33*1*_*_;FR*SOD*S*IZIG*33*2*_*_;FR*SOD*S*IZIG*33*6*_*_;FR*SOD*S*IZIG*33*7*_*_;FR*SOD*S*IZIG*33*8*_*_;FR*SOD*S*IZIG*33*9*_*_", + "capacity": "1", + "description": "CHATOU", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16977900000, + 48.89695200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GHISTELINCK BORNE 1 AC", + "ref:EU:EVSE": "FRCPIE6845415;FRCPIE6845395", + "description": "GHISTELINCK BORNE 1 AC", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6845415;FRCPIE6845395", + "opening_hours": "Mo 08:00-11:30,Mo 14:00-17:00,Tu 08:00-11:30,Tu 14:00-17:00,We 08:00-11:30,We 14:00-17:00,Th 08:00-11:30,Th 14:00-17:00,Fr 08:00-11:30,Fr 14:00-17:00", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36157200000, + 50.98957800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "294473", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WLYDJRRTX4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PWLYDJRRTX4", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09606000000, + 49.10070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-11-08", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Nantes-Ouest", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP121046", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63535400000, + 47.22724200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PKGVDHE", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KGVDHE", + "ref": "242347" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479000000, + 47.51790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Aire du Jura, France", + "socket:type2_combo:output": "250 kW;150 kW", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRTSLP21027", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "charging_station:output": "250 kW;150 kW", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52220900000, + 46.77464700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "454071", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KNWRUJWIAS", + "ref:EU:EVSE": "FRFR1P1753178359233595615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57350000000, + 46.86860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "462009", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P5466721239414660198", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/WRQX6K3RY5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67284800000, + 48.85339700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "description": "MobiSDEC/ZZNFVRZSHY", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P9012383173411568667", + "ref": "598143", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761300000, + 49.01914900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "ref": "1128165", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLYUBNAU26", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P6478615670415258856" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02390300000, + 44.92846900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P501295", + "description": "CHERBOURG EN COTENTIN - Trottebecq", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-04-27", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61197700000, + 49.63595600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LISLE SUR TARN - Pôle Multimodal", + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81145002", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80633200000, + 43.85461900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059448", + "owner:ref:FR:SIREN": "531681876;531681877", + "socket:type2_combo:output": "150 kW", + "capacity": "2", + "charging_station:output": "150 kW", + "description": "RELAIS PARC IMPERIAL", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF059448", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25150000000, + 43.70770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRANDRIEU - Rue Du Couvent", + "ref:EU:EVSE": "FRS48E48070001", + "network": "Reveo", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63191400000, + 44.78275600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/AVMWS0NNYA", + "operator:email": "roaming@freshmile.com", + "ref": "541904", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P1963917969750501664", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54930000000, + 47.95370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62160008", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BOULOGNE-SUR-MER - Place Frédéric Sauvage", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60216000000, + 50.72311000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Santec - Place de Mescren 1", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E29273001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02585000000, + 48.70299100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Vannes - Rue Anita Conti", + "start_date": "2017-11-24", + "ref:EU:EVSE": "FRS56PBJXJWS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78849600000, + 47.67047500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTMORILLON CENTRE-1-2;MONTMORILLON CENTRE-1-1", + "ref:EU:EVSE": "FRLMSE12346052031;FRLMSE12346052032;FRLMSE12346052041;FRLMSE12346052042", + "ref": "B072", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-09-25", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86969400000, + 46.42581600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRMGPP93027C", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref": "1121619", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP", + "description": "Métropolis/FR*MGP*P93027*C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38406500000, + 48.92295500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BRUNOY - Rue de Montgeron", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE91114007", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-12-01", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49189082891, + 48.69293838445 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "976544", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "capacity": "23", + "description": "Atlante/FRATLFR00307", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;100 kW;300 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP4983007614321337434" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43278700000, + 44.97535200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "opening_hours": "24/7", + "network": "ZEENCO", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRLMSE10000986352;FRLMSE10000986351;FRLMSE10000986343;FRLMSE10000986341;FRLMSE10000986342;FRLMSE10000986353", + "description": "Orange Gap;Orange Gap ", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-09-08", + "operator:email": "franck.legardeur@zeenco.tech", + "owner:ref:FR:SIREN": "852425289" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06855900000, + 44.55000500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "PULLMAN", + "operator": "ELECTROMAPS", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "operator:email": "oscar@electromaps.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMAPE000000006659", + "description": "PULLMAN", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "831530365", + "start_date": "2022-02-11", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45000000000, + 43.61000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85212001", + "socket:type2_combo:output": "50 kW", + "description": "SAINTE-FLORENCE - Les 4 Chemins De L'Oie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13728000000, + 46.81169900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9008372;FRALLEGO9001432;FRALLEGO9001431;FRALLEGO9001282;FRALLEGO9001281;FRALLEGO9000441;FRALLEGO9000442;FRALLEGO9008361;FRALLEGO9008362;FRALLEGO9008371", + "network": "Allego Carrefour Saint-Egrève", + "amenity": "charging_station", + "description": "Allego Carrefour Saint-Egrève", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9008372;FRALLEGO9001432;FRALLEGO9001431;FRALLEGO9001282;FRALLEGO9001281;FRALLEGO9000441;FRALLEGO9000442;FRALLEGO9008361;FRALLEGO9008362;FRALLEGO9008371", + "start_date": "2023-12-01", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66423600000, + 45.23843100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "ref": "FR*SOD*S*MAMP*43*1*_*_", + "ref:EU:EVSE": "FRIZMPMAMP4311;FRIZMPMAMP4312", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-05", + "description": "IZIVIA | MARSEILLE 06 - BOULEVARD PAUL DOUMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37542300000, + 43.28474000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Match - Le Quesnoy", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-12-07;2023-11-29", + "ref:EU:EVSE": "FRPD1PMATLQN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63611769286, + 50.24956865537 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30431;AVPMF7FPWF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPAVPMF7FPWF", + "description": "Orpierre, Parking UCPA;Réseau eborn/AVPMF7FPWF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69435900000, + 44.31279100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP8306785102209190714", + "ref": "377778", + "description": "CARF - Bornes Publiques/8C44E3B4-E0FC-406A-A255-BBA4F44A6DBC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51297800000, + 43.78242100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-02-13;2024-02-16", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBSCHT", + "description": "Ibis - Chaintré", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79013831784, + 46.25467784147 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPEYJPJJQYRV", + "ref": "EYJPJJQYRV;75047", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Névache, Office de Tourisme;Réseau eborn/EYJPJJQYRV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60775500000, + 45.01974100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - WELDOM - MONTREJEAU", + "ref": "FRETIP31390A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP31390A", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56405000000, + 43.08829400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - LIMOGES", + "ref": "FR*SOD*S*OTHR*203*28*_*_;FR*SOD*S*OTHR*203*27*_*_;FR*SOD*S*OTHR*203*26*_*_;FR*SOD*S*OTHR*203*25*_*_;FR*SOD*S*OTHR*203*24*_*_;FR*SOD*S*OTHR*203*23*_*_;FR*SOD*S*OTHR*203*21*_*_;FR*SOD*S*OTHR*203*17*_*_;FR*SOD*S*OTHR*203*15*_*_;FR*SOD*S*OTHR*203*16*_*_;FR*SOD*S*OTHR*203*18*_*_;FR*SOD*S*OTHR*203*19*_*_;FR*SOD*S*OTHR*203*20*_*_;FR*SOD*S*OTHR*203*22*_*_", + "ref:EU:EVSE": "FROTHPOTHR203271;FROTHPOTHR203201;FROTHPOTHR203191;FROTHPOTHR203181;FROTHPOTHR203171;FROTHPOTHR203161;FROTHPOTHR203151;FROTHPOTHR203211;FROTHPOTHR203221;FROTHPOTHR203231;FROTHPOTHR203241;FROTHPOTHR203251;FROTHPOTHR203261;FROTHPOTHR203281", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-08;2021-06-08", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25269700000, + 45.84308200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAULX - BUHOTERIE", + "ref:EU:EVSE": "FRCPSPCAPS3311;FRCPSPCAPS3312", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*CAPS*33*1*_*_", + "start_date": "2020-02-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26182300000, + 48.68950700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6466811027947229028", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LM1HVTL37ZRF30", + "ref": "1195195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63930400000, + 44.84488300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref:EU:EVSE": "FRVISP6129878278903464383", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "ENRGETICA/8e82c787-c765-408a-a391-2338ec28f2e6", + "charging_station:output": "22 kW", + "ref": "584909", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64688100000, + 44.25166100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1072713", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P8904469464077525796", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLUQS6GUV2LJRM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83317900000, + 46.69450300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref": "1000081564", + "capacity": "3", + "description": "ABB T54 VW Crolles", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1000081564", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89012300000, + 45.27135400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "735198", + "capacity": "2", + "description": "Freshmile France/UTK8EYPJQ7", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8281458564393543262", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63380700000, + 43.45108900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPKEOL771401", + "charging_station:output": "22.08 kW", + "description": "Keol - Saint-Pierre-lès-Nemours", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67506100000, + 48.26990100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LUISANT - Av. de la république", + "ref": "FRS28E137351", + "network": "MODULO - LUISANT - Av. de la république", + "ref:EU:EVSE": "FRS28E137351" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46521600000, + 48.41768800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@jasdetournel.com", + "start_date": "2023-06-14", + "opening_hours": "08:00-20:00", + "owner:ref:FR:SIREN": "878593979", + "operator": "MANGENIE", + "amenity": "charging_station", + "capacity": "1", + "description": "JAS DE TOURNELS", + "ref:EU:EVSE": "Non concerné", + "network": "JAS DE TOURNELS", + "ref": "3c6ac069-be13-4a17-9ce8-d931c21eceac", + "charging_station:output": "11 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64497600000, + 43.19718400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1690840456659016813", + "ref": "39680", + "description": "SDEA 10/J4HVLFJXYB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51698200000, + 48.39993200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP6807111338398871572", + "network": "WAAT", + "description": "WAAT/FRWATLLNPBND5L", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "706235", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36665000000, + 43.83033500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "EIRL_Garage", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE439", + "operator": "RossiniEnergy", + "start_date": "2022-09-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11152500000, + 50.70221100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-02", + "ref:EU:EVSE": "FRS81E8130600121;FRS81E8130600112;FRS81E8130600111;FRS81E8130600122", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "258100072", + "description": "VALDERIES - Place De La Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23358607300, + 44.01228714000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "901573139", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "start_date": "2023-01-09", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING", + "description": "INTERPARKING - Normandie (Mantes-la-Jolie)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151000000, + 48.98856000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Cholet - Plessis;CHOLET - Boulevard Delhumeau Plessis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49099G;FRS49E49099007", + "charging_station:output": "22 kW", + "start_date": "2021-04-27;2024-04-27", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87770000000, + 47.05618000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/BQQLUY", + "capacity": "4", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PBQQLUY", + "ref": "86681" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08133000000, + 49.42960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "description": "CAMBLAIN-CHATELAIN - Rue Jean Jaurès", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH13E62197001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46424463995, + 50.48358881130 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "NIMES - Allée De L'Amérique Latine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36330300000, + 43.82118700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PZGBPNA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Plouharnel - Rue du Tramway" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11239600000, + 47.59902800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CENON SUR VIENNE-1-2;CENON SUR VIENNE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B014", + "operator": "SOREGIES MOBILITES", + "start_date": "2016-01-15", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346396791;FRLMSE12346396801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53584000000, + 46.77338000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Metropolis - ePremium - Vincennes - Lejemptel", + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP94080G", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43712014000, + 48.84624221000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*137*5*_*_;FR*SOD*S*SIGE*137*2*_*_;FR*SOD*S*SIGE*137*1*_*_;FR*SOD*S*SIGE*137*3*_*_;FR*SOD*S*SIGE*137*4*_*_;FR*SOD*S*SIGE*137*6*_*_", + "start_date": "2021-06-07", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 153 AVENUE GABRIEL PERI - GENNEVILLIERS", + "ref:EU:EVSE": "FRSIGPSIGE13761;FRSIGPSIGE13751;FRSIGPSIGE13741;FRSIGPSIGE13731;FRSIGPSIGE13711;FRSIGPSIGE13721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29429950000, + 48.92294380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78490005", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03", + "description": "PLAISIR - Avenue De Saint Germain" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94892800000, + 48.82687000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89626444", + "start_date": "2023-05-04", + "description": "ENGIE Vianeo - Hôtel Campanile Lens", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81784300000, + 50.45335100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "907fcc64-8b5b-520e-b4f8-d946a17b8375", + "opening_hours": "24/7", + "description": "MOBIVE | Charme | Place de la Mairie", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11647400000, + 45.95381900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "operator": "STATIONS-E", + "amenity": "charging_station", + "capacity": "3", + "network": "Stations-e", + "description": "Les Bains de Docks - LE HAVRE", + "ref:EU:EVSE": "FRSE1PSE76HBDA;FRSE1PSE76HBDB", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12882800000, + 49.48733100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "start_date": "2022-09-21", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSBRTIN", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies", + "description": "BARENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96883600000, + 49.53536000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3910EVCP02;LFR3910EVCP01;LFR3910EVCP03", + "operator:email": "bornes@lidl.fr", + "description": "CHAUMONT - Brottes", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3910EVCP02;LFR3910EVCP01;LFR3910EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14465600000, + 48.09157200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31555012", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Rue Henri Desbals", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-20", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41427900000, + 43.58222000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "BMT481UC66;236035", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/BMT481UC66;Roanne, Avenue de Paris", + "ref:EU:EVSE": "FREBNPBMT481UC66", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06902800000, + 46.04747200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/I1BMCT7WYC", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3980496344045998074", + "operator": "Freshmile | FR*FR1", + "ref": "626090" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71289800000, + 48.03440900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-09-15", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "69", + "description": "PARIS - Magenta - Niveau -5", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E751100053;FRP07E751100052;FRP07E751100051;FRP07E75110005;FRP07E751100054;FRP07E751100055;FRP07E751100056" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35584100000, + 48.87566100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Roussillon, Place de la République;Réseau eborn/REMDRY", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "48421;REMDRY", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPREMDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80239000000, + 45.36210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2022-10-06", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Rosny-sous-Bois - B&B Hotels", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPRONIH", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47552700000, + 48.87816700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Chantilly - Gouvieux - EFFIA", + "start_date": "2024-05-21;2024-07-26", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E60141001;FRP01E601410012", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46015600000, + 49.18713600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6611305", + "start_date": "2023-04-05", + "capacity": "2", + "description": "LE HAUT DICK BORNE 1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6611305", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "LE HAUT DICK BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23861400000, + 49.30977100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNV7ICDQ3LVR;FREBNPV7ICDQ3LVR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "V7ICDQ3LVR;75359", + "description": "Sanary-Sur-Mer, 71 Boulevard George Clemenceau;Réseau eborn/V7ICDQ3LVR", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80637900000, + 43.11704900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA2P8444224558126014039", + "network": "WAAT", + "description": "WAAT/s570530", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "1181961", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11269300000, + 49.04178900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7826475845551983387", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529769", + "description": "Freshmile France/X1F885A2LS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.55057300000, + 42.21469400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-17", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "network": "KIA COLMAR CAR AVENUE", + "charging_station:output": "24 kW;22 kW", + "description": "CAR AVENUE - KIA COLMAR", + "owner:ref:FR:SIREN": "479081903", + "ref:EU:EVSE": "FRTCBP00703", + "socket:type2_combo:output": "24 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP00703", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:02;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37873744233, + 48.11208081973 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLUL17YVX2L7TC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1084794", + "ref:EU:EVSE": "FRFR1P7553181744153675228", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51286300000, + -20.89339300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "start_date": "2020-06-18", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPMAURINMERCEDES030001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Mercedes Moulins - Avernes", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30373000000, + 46.60223700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2906700", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Guerlesquin-Hent Toull Kerzers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58379700000, + 48.51530500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALZONNE - Chemin De Cayrol", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11172001;FRS11E11009001", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;3 kW", + "start_date": "2023-03-02;2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17421300000, + 43.25534300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1PEAC128775", + "owner:ref:FR:SIREN": "352054019", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Logis La Forestière", + "description": "La Forestière - 22 kW AC", + "ref": "db10c91e-3330-483e-b867-074617d97431", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23850542000, + 44.45195780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E46444;FRS08E46445", + "network": "MODULO - RETHEL - Pl. de la république", + "capacity": "2", + "description": "MODULO - RETHEL - Pl. de la république", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS08E46444;FRS08E46445", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36531800000, + 49.50867500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1084869", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "FDE 80/LLW64T7A41OGWR", + "ref:EU:EVSE": "FRS80P4358573199941085510", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77959300000, + 50.21179200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MC DONALDS - EQUEURDREVILLE", + "start_date": "2024-07-10", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST20611;FRIZFPFAST20612;FRIZFPFAST20613", + "ref": "FR*SOD*S*FAST*206*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68622784926, + 49.66069458378 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "GUEMENE-PENFAO - Place De L'Eglise - Besle;ABBARETZ - Rue De La Mairie;OuestCharge - Diva Sp - Guemene-Penfao - Besle", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44P44067B;FRS44E44001001;FRS44E44067002", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-13;2024-04-19", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86604300000, + 47.69755300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "start_date": "2023-05-24;2016-02-01", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77040001;FRS77P77040A", + "description": "Boissise-le-Roi - Centre;BOISSISE-LE-ROI - Rue Des Vignes", + "ref": "01F5ZAKH61V1G21XD9YK3CT4W9", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57059300000, + 48.52544400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GREENSPOT", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "description": "CREDIT AGRICOLE AMBARES ", + "start_date": "2024-06-04", + "ref:EU:EVSE": "FRGSPP1000085948", + "network": "CREDIT AGRICOLE AMBARES ", + "owner:ref:FR:SIREN": "434651246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48503257078, + 44.92745981345 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219796;FRS37E219793", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - RIVARENNES - Allée des Prés Sillauts", + "ref:EU:EVSE": "FRS37E219796;FRS37E219793", + "network": "MODULO - RIVARENNES - Allée des Prés Sillauts", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35220841000, + 47.26778016000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Langonnet - Place Morvan Leiz Breizh", + "start_date": "2016-12-09", + "ref:EU:EVSE": "FRS56PAAYULB", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49143400000, + 48.10378800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "description": "Biocoop Granville", + "network": "Biocoop Granville", + "amenity": "charging_station", + "ref:EU:EVSE": "FRG10P50647A", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P50647A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55961310759, + 48.83673315762 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Bayonne | Rue lasseguette", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0cbb6ab8-481c-527e-872f-1bb398001483", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47958700000, + 43.48065200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*249*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 47 RUE BERTHIE ALBRECHT - SAINT GRATIEN", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE24912;FRSIGPSIGE24911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28406800000, + 48.96599200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref": "23996", + "operator": "Freshmile | FR*CN1", + "description": "Move In Pure/UJFDGE", + "ref:EU:EVSE": "FRCN1PUJFDGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70583000000, + 45.75890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/RDK5HXTJBQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "896682", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P4705521367176124563" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42169400000, + 47.79024400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "251600060", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "ref": "FR*SOD*S*MB16*69*1*_*_;2c3e5a98-eb79-5879-9311-6dba9d6e0635", + "description": "MOBIVE | Confolens | Parking du Lycée;CONFOLENS - PARKING DU LYCEE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS16PMB166913;FRS16PMB166912;FRS16PMB166911;Non concerné;FRS16PMB166914", + "start_date": "2021-05-20", + "charging_station:output": "50 kW;43 kW", + "capacity": "3;4", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67305700000, + 46.00418700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Courlay - Salle des Fêtes", + "ref:EU:EVSE": "FRSEOPAB07005A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2015-07-07", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56710900000, + 46.77914300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "26", + "charging_station:output": "24 kW;50 kW;90 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "description": "ORY - BAT (Réservé exclusivement aux taxis parisiens)", + "start_date": "2024-06-27;2022-12-13", + "socket:type2_combo:output": "24 kW;50 kW;90 kW", + "ref:EU:EVSE": "FRADPE914790012;FRADPE772940013;FRADPE914790111;FRADPE914790112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36375800000, + 48.73349400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3349EVCP01;LFR3349EVCP02;LFR3349EVCP03", + "charging_station:output": "120 kW;22 kW", + "description": "MAUGUIO Baillargues", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3349EVCP01;LFR3349EVCP02;LFR3349EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01177500000, + 43.62414600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PONT-DE-CLAIX - Cosmocité", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38317003", + "charging_station:output": "25 kW;22 kW", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70140000000, + 45.14084530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*109*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ10912;FRA16PWIIZ10911", + "description": "ANTIBES PARKING JULES GREC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-11-26", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11811100000, + 43.58929900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1031463", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLT751CPH2F05K", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P993274544792743859" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12624500000, + 48.61906200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACTALB", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "80 kW", + "opening_hours": "24/7", + "start_date": "2024-04-10", + "capacity": "9", + "description": "Action - Albert", + "operator": "Power Dot France", + "charging_station:output": "22 kW;80 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66041211337, + 49.99561736495 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFUSMB1T2DL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FUSMB1T2DL;Reallon, La Station", + "ref": "FUSMB1T2DL;85685", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36156700000, + 44.57599100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPSEYHC", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Seyssins - Campanile Grenoble Sud", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-07-19", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69717300000, + 45.16008700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking Vincennes Marché - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E94080004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43654000000, + 48.84818000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6666475", + "network": "SONEPAR SIX-FOURS", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR SIX-FOURS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6666475", + "start_date": "2023-01-17", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84565400000, + 43.11634000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "socket:type2_combo:output": "22 kW;60 kW", + "amenity": "charging_station", + "description": "Easy Charge/LLUVD2G8G17YLN;Geneuille, Rue Courbe", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "ref": "1065237;LLUVD2G8G17YLN", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPLLUVD2G8G17YLN;FRECHP1278035058820522911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97182200000, + 47.32304300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-29", + "ref": "FR*V75*PPX20*14", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Boulevard Mortier 15", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX2014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40870000000, + 48.86570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ICW8FUK8MQ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4927792432197196473", + "ref": "472203", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68806100000, + 48.57846600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-10-12", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0408", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris | Rue Sainte-Croix de la Bretonnerie 37", + "ref": "FR*V75*PPX04*08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35437510000, + 48.85850450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626036", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DBUNVRBU3K", + "ref:EU:EVSE": "FRFR1P356926625085145699" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35559800000, + 49.39980600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ford -Draguignan", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAURINFORD833001", + "opening_hours": "Mo 09:00-17:45, Tu 09:00-17:45, We 09:00-17:45, Th 09:00-17:45, Fr 09:00-17:45, Sa 09:00-17:45", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "start_date": "2021-01-28", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44755000000, + 43.53165300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22278004", + "description": "SAINT BRIEUC - Rue des Promenades", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75709700000, + 48.51456100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E117712", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E117712", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SANCOINS - Pl. du champ de foire", + "description": "MODULO - SANCOINS - Pl. du champ de foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92143963000, + 46.82955189000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "TOYOTA LE CANNET - STAR AUTO", + "ref": "53268;66598;66599", + "amenity": "charging_station", + "capacity": "1", + "description": "Toyota - Le Cannet - 24kW DC ;Toyota - Le Cannet - 22kW AC ", + "opening_hours": "Mo-sat 08:30-19:00", + "owner:ref:FR:SIREN": "315044321", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRZTLE22AC66598;FRZTLE22AC66599;FRZTLE24DC53268", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-22;2021-02-05", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01256400000, + 43.57607900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEA 10/LLZ83K035KPFDW", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "1173498", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P264785752288480261", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33779900000, + 48.25659700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/LLXA6JGMH1N82B", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "1123371", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRS80P2634999992063624374", + "opening_hours": "24/7", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15282700000, + 49.74024900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-14", + "ref:EU:EVSE": "FRIZFPFAST8813;FRIZFPFAST8812;FRIZFPFAST8811", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*88*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - MARSEILLE CHEMIN DU LITTORAL", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34182980000, + 43.35100420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44E44122001;FRS44P44122A", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-04-14;2024-04-24;2024-04-25", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "PETIT-MARS - Allée Des Ajoncs;OuestCharge - Diva Sp - Petit-Mars - Ajoncs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45349000000, + 47.39808700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77288003;FRS77P77288C", + "ref": "6de75104-bddd-491a-9905-b95b787922af", + "capacity": "2", + "description": "MELUN - Maréchal Foch;Melun - Maréchal Foch", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "socket:type2_combo:output": "24 kW", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66173000000, + 48.53669000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH01E62226001", + "network": "pass pass électrique", + "description": "CLARQUES - Aire de covoiturage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26096100000, + 50.66315500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221413;FRS37E221415", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E221413;FRS37E221415", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - FRANCUEIL - Pkg. Charles de Gaulles", + "description": "MODULO - FRANCUEIL - Pkg. Charles de Gaulles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08455100000, + 47.31413600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "ref": "FRS55E66319;FRS55E66320", + "charging_station:output": "0 kW", + "description": "MODULO - MONTIERS SUR SAULX - Rue de l'abbaye", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MONTIERS SUR SAULX - Rue de l'abbaye", + "ref:EU:EVSE": "FRS55E66319;FRS55E66320" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27022700000, + 48.55864900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-02-20", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "GRI01 - AVENUE JEAN ESTRAGNAT", + "ref:EU:EVSE": "FRGLYPLYON1322;FRGLYPLYON1321;FRGLYPLYON1312;FRGLYPLYON1311", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*13*1*_*_;FR*SOD*S*LYON*13*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78962800000, + 45.60958500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAPINGHEM - Rue Poincaré", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59160*01", + "ref:EU:EVSE": "FRMELP5916001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96568695200, + 50.64512215000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:30-12:00, Mo 13:30-19:00, Tu 08:30-12:00, Tu 13:30-19:00, We 08:30-12:00, We 13:30-19:00, Th 08:30-12:00, Th 13:30-19:00, Fr 08:30-12:00, Fr 13:30-19:00, Sa 08:30-12:00, Sa 13:30-18:00", + "start_date": "2018-07-12", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPJLRJFC760001", + "charging_station:output": "7.36 kW", + "operator:email": "support@driveco.com", + "description": "Jaguar Land Rover - JFC - Rouen", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06574000000, + 49.44730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6570445;FRCPIE6570455", + "amenity": "charging_station", + "capacity": "4", + "network": "SUPERU FLASSANS SUPER U 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6570445;FRCPIE6570455", + "description": "SUPERU FLASSANS SUPER U 2", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20411200000, + 43.37361900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/WV21IYOQMR", + "opening_hours": "24/7", + "ref": "529898", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P657073616593969309" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00184600000, + 49.28107500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Le Fieu | le Bourg Parking Angle Rue de la Gravette", + "capacity": "2", + "amenity": "charging_station", + "ref": "829834e9-a1b2-5cdf-837c-79c12e8b77f7", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03242700000, + 45.05923800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "fce40701-e5c3-57d3-848b-68aad0b237ba", + "description": "Bretigny-sur-Orge - Chemin de la Tuilerie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30758300000, + 48.61755400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO0001921;FRALLEGO0001592;FRALLEGO0001591;FRALLEGO0001411", + "description": "Allego NISSAN Aix-en-Provence", + "amenity": "charging_station", + "capacity": "4", + "network": "Allego NISSAN Aix-en-Provence", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO0001921;FRALLEGO0001592;FRALLEGO0001591;FRALLEGO0001411", + "operator:email": "info@allego.eu", + "start_date": "2024-03-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43154986000, + 43.52842880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "VERDUN - Driant", + "ref": "LFR3994EVCP03;LFR3994EVCP02;LFR3994EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3994EVCP03;LFR3994EVCP02;LFR3994EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38246400000, + 49.16596000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ASPREMONT - PARKING VILLAGE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-12-26", + "ref:EU:EVSE": "FRM06PNICE9221;FRM06PNICE9222", + "ref": "FR*SOD*S*NICE*92*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24453000000, + 43.78436800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "SAINT-RAPHAEL - PARKING PHARMACIE DAGAY", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ21811;FRA16PWIIZ21812", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*218*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85710900000, + 43.43222400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "90 kW", + "operator:email": "roaming@freshmile.com", + "ref": "466248", + "amenity": "charging_station", + "description": "Freshmile France/VUNAICL53Z", + "ref:EU:EVSE": "FRFR1P5766369363446827203", + "network": "Freshmile France", + "socket:type2_combo:output": "90 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14959200000, + 47.64209300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-03;2023-02-28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBRCST", + "description": "Mr. Bricolage - Castres", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27007018546, + 43.58978467916 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "743013;QXCNNGKKJJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPQXCNNGKKJJ;FREBNP7414549510879039659", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/QXCNNGKKJJ;Belmont De La Loire, Place de l'église", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34618400000, + 46.16540100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "597192", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP7079458844234520863", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "description": "CARF - Bornes Publiques/52948FDE-1CE5-4462-BD34-8B5A6EF684DA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59377000000, + 44.08281000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-01-12;2021-04-26;2023-08-16;2023-05-30;2022-08-13;2022-08-17", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "22", + "ref:EU:EVSE": "FRP07E59350002;FRP07E593500021;FRP07E593500022", + "description": "LILLE - Rue Piétonnes - Le 31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06503200000, + 50.63415500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "30503", + "amenity": "charging_station", + "network": "Réseau eborn", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/KDBQHXLRTS", + "ref:EU:EVSE": "FREBNPKDBQHXLRTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79799200000, + 45.88890700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/SAURCW;Le Cheylard, Place de la Libération", + "ref": "SAURCW;30311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPSAURCW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42219000000, + 44.90650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Première Classe Honfleur", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121011", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25109000000, + 49.41160500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5660504560733645788", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505743", + "description": "Freshmile France/WXCAUXDWQZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52423700000, + 43.16952100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX12*11", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "description": "Paris | Rue Antoine-Julien Henard 3", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38921100000, + 48.84154000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8688404379398833832", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "529499", + "description": "Freshmile France/OURCDLLPBN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16664500000, + 49.14831100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:30-12:15, Mo 14:00-19:00, Tu 08:30-12:15, Tu 14:00-19:00, We 08:30-12:15, We 14:00-19:00, Th 08:30-12:15, Th 14:00-19:00, Fr 08:30-12:15, Fr 14:00-19:00, Sa 09:00-12:30, Sa 14:00-18:00", + "capacity": "8", + "network": "DRIVECO", + "description": "BMW - Saint-Malo", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW354001", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-12-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98684700000, + 48.62581200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900004", + "network": "SIEGE27", + "start_date": "2016-05-26", + "ref:EU:EVSE": "FRS27PCORMEILLESDEGAULLE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37694900000, + 49.24707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "180401", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SICECO/FR*S21*P21492*A", + "ref:EU:EVSE": "FRS21P21492A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79480400000, + 47.00871800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78551007", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "SAINT-GERMAIN-EN-LAYE - Rue de Poissy", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08893000000, + 48.89895000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRRM1PRCCCAN03DCPKGCLIENTSAV;FRRM1PRCCCAN01DCPKGCLIENT", + "socket:type2_combo:output": "50 kW", + "description": "Riviera Car Center - Le Cannet", + "capacity": "2", + "operator": "TANAY Electricité", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "ref": "RCC-CAN-03-DC-PKGCLIENT-SAV;RCC-CAN-01-DC-PKGCLIENT", + "operator:email": "tanayelectricite@hotmail.com", + "network": "Riviera Car Center", + "start_date": "2022-10-11", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00;24/7", + "owner:ref:FR:SIREN": "421334566" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01260474391, + 43.57438496198 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP5046809240723600068", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "1069470", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLBU8XJFIN", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92838300000, + 45.73175300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "start_date": "2020-10-21", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Hauconcourt", + "ref": "FRIONE432400", + "ref:EU:EVSE": "FRIONE432400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17184500000, + 49.21511600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS51E40906;FRS51E40907", + "description": "MODULO - SERMAIZE LES BAINS - Rue de St. Dizier", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E40906;FRS51E40907", + "network": "MODULO - SERMAIZE LES BAINS - Rue de St. Dizier", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91256700000, + 48.78397200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "ref": "a7dd68cb-0fc3-4e81-8ba6-cd8bd5a165c7", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS77P77175B", + "socket:type2_combo:output": "24 kW", + "description": "Evry-Grégy-sur-Yerre - Grande rue", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63319600000, + 48.65285700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531680889", + "start_date": "2022-11-18", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "ref:EU:EVSE": "FRHPCPNF080348", + "description": "RELAIS DE FALAISES DE WIDEHEM OUEST", + "ref": "FRHPCPNF080348", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63740000000, + 50.57660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-09-29", + "description": "LAROQUE - Rue du Mazet - Entrée supermarché", + "ref:EU:EVSE": "FRS34E34128001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72107222222, + 43.92666110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PXNARGA", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-09-30", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Guidel - Place le Montagner" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49311600000, + 47.79262400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2184389903094598135", + "network": "Freshmile France", + "description": "Freshmile France/RNOIXUVWZ9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "896643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05886600000, + 49.22009800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "599061", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-12-29", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "2;8", + "ref:EU:EVSE": "FRMGPP92051F", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Montrosier;Métropolis/FR*MGP*P92051*F", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27916500000, + 48.88087200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-20;2023-03-15", + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "description": "Fiat - HESS - Besançon", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 08:30-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHESSFIAT257701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93991800000, + 47.21547200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRC2P003701;FRC2P003702", + "network": "L'Hôtel Particulier", + "amenity": "charging_station", + "capacity": "1", + "description": "L'HOTEL PARTICULIER NANCY", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P003701;FRC2P003702", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "start_date": "2022-06-04", + "owner:ref:FR:SIREN": "517676805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18423561840, + 48.69547087754 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*GACO*4*4*_*_;FR*SOD*S*GACO*4*3*_*_;FR*SOD*S*GACO*4*2*_*_;FR*SOD*S*GACO*4*1*_*_;FR*SOD*S*GACO*4*5*_*_;FR*SOD*S*GACO*4*6*_*_;FR*SOD*S*GACO*4*7*_*_", + "description": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLGCPGACO451;FRLGCPGACO411;FRLGCPGACO421;FRLGCPGACO431;FRLGCPGACO441;FRLGCPGACO461;FRLGCPGACO471", + "start_date": "2020-09-22", + "network": "GARENNE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "219200359", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25577400000, + 48.90508600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "931819ca-a0bd-5527-88df-a334a5debbe5", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW", + "description": "MOBIVE | Gujan-Mestras | Av du Marechal de lattre de Tassigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11569200000, + 44.63972800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE19ABCA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "INTERMARCHE - ALLASSAC", + "start_date": "2023-12-21", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46093700000, + 45.25196200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "977702", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "description": "BornEco/6564cdc4d66357a549e9dfb2", + "ref:EU:EVSE": "FRBHMP2596407640117788708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47876000000, + 47.51740500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "Mo,Sa,Th,Tu,Fr,We 08:30-20:00,We,Mo,Th,Sa,Fr,Tu 08:30-19:30,Tu,Mo,Th,Sa,We 06:30-19:30,Fr 06:30-20:00", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2586098283763379886", + "description": "Leclerc/QH4GD1TUH4", + "ref": "472323" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87661000000, + 46.17930200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PWQEE1Y2BAW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Martigues, Avenue du Président Salvadore Allende", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05663300000, + 43.40860100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "402566", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/NPWU1NKGAH", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P7057197930855085572", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63387100000, + 47.70402700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*73*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2018-06-14", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ7312;FRA16PWIIZ7311", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "VALBONNE PARKING GARBEJAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04522800000, + 43.62406900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Touquet Normal", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "528932627", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "charging_station:output": "22 kW", + "description": "Touquet, Place Edouard VII", + "operator:email": "advenir@freshmile.com", + "operator": "FRESHMILE", + "ref:EU:EVSE": "FRFR1PGBTVFCOXRK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58654971640, + 50.52024529238 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "capacity": "5", + "description": "Le Saint-Jean - Saint-Jean-de-Soudain", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSTJSJS", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42799200000, + 45.56862130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "32644;LBOH42YD32", + "description": "Espinasses, Place Amédée Turel;Réseau eborn/LBOH42YD32", + "ref:EU:EVSE": "FREBNPLBOH42YD32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22918000000, + 44.46490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1072422", + "description": "ENGIE MAMP - Bornes publiques/8257BA57-AA25-44AC-99F8-AC95FA1FB666", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP7296312884050067307", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36615000000, + 43.30430200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*681*1*_*_;FR*SOD*S*OTHR*681*2*_*_", + "capacity": "1", + "start_date": "2023-08-08", + "ref:EU:EVSE": "FROTHPOTHR68121;FROTHPOTHR68111", + "description": "UTILE SAINT VICTOR LA COSTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65020342068, + 44.06891501424 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/YZD20EWHZI;Riorges, Parking gallieni", + "ref:EU:EVSE": "FREBNPYZD20EWHZI", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "133459;YZD20EWHZI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05270800000, + 46.04631300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref": "346841;O2ILRGMRRA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/O2ILRGMRRA;Lescheraines, Place des Cantalous", + "ref:EU:EVSE": "FREBNPO2ILRGMRRA;FREBNP1857740457164425126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10636200000, + 45.71459800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2022-03-31", + "amenity": "charging_station", + "capacity": "1", + "description": "HYPER U - MURS-ERIGNE", + "ref": "FR*SOD*S*OTHR*372*9*_*_;FR*SOD*S*OTHR*372*8*_*_;FR*SOD*S*OTHR*372*7*_*_;FR*SOD*S*OTHR*372*4*_*_;FR*SOD*S*OTHR*372*11*_*_;FR*SOD*S*OTHR*372*10*_*_;FR*SOD*S*OTHR*372*1*_*_;FR*SOD*S*OTHR*372*12*_*_;FR*SOD*S*OTHR*372*2*_*_;FR*SOD*S*OTHR*372*3*_*_;FR*SOD*S*OTHR*372*5*_*_;FR*SOD*S*OTHR*372*6*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR37271;FROTHPOTHR37261;FROTHPOTHR37251;FROTHPOTHR37241;FROTHPOTHR37231;FROTHPOTHR37221;FROTHPOTHR37211;FROTHPOTHR372101;FROTHPOTHR372111;FROTHPOTHR372121;FROTHPOTHR37281;FROTHPOTHR37291", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53059800000, + 47.39842400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "978038", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6204924519999544750", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLP2EVQPAA3FKH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23162100000, + 50.75655600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRTSLP29983", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Rodez, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56509100000, + 44.37768900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892062", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLHYM3I892BB2I", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3231019603631592911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82433700000, + 43.10086200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Gamm Vert -Guines", + "opening_hours": "Mo 09:00-12:15, Mo 14:00-19:00, Tu 09:00-12:15, Tu 14:00-19:00, We 09:00-12:15, We 14:00-19:00, Th 09:00-12:15, Th 14:00-19:00, Fr 09:00-12:15, Fr 14:00-19:00, Sa 09:00-12:15, Sa 14:00-19:00", + "start_date": "2022-05-06", + "ref:EU:EVSE": "FRSSDPGAMMVERTGUINES623401", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88529500000, + 50.86292200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLRAQINOK152Q0", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1020585", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1409243795503764370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95216700000, + 48.38454700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plelo-Rue des écoles (parking en face la poste)", + "ref:EU:EVSE": "FRS22E22182001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94767200000, + 48.55673600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CENTRAL AUTO - MAZDA BREST", + "ref:EU:EVSE": "FRZMAE22AC49544;FRZMAE22AC49575", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "780096376", + "ref": "49544;49575", + "capacity": "1", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00;Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2020-12-03", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "operator": "ZEBORNE", + "description": "Mazda - Brest - 22kW AC " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47419000000, + 48.42734200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "3", + "description": "Auto_Genest", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE306", + "operator": "RossiniEnergy", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51975000000, + 47.06813100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78281001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GOUSSONVILLE - Rue Des Coutures", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76896200000, + 48.92129600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-11", + "ref:EU:EVSE": "FRIOYE438652;FRIOYE438651;FRIOYE438606;FRIOYE438605;FRIOYE438607;FRIOYE438608;FRIOYE438653", + "capacity": "7", + "network": "Vérités", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE438652;FRIOYE438651;FRIOYE438606;FRIOYE438605;FRIOYE438607;FRIOYE438608;FRIOYE438653", + "opening_hours": "24/7", + "description": "Vérités", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58695680000, + 46.37849330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Ernee - Gaulle", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS53P53096A", + "network": "TEM53", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-04-21", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92914400000, + 48.29733000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "charging_station:output": "50 kW", + "description": "BANYULS-SUR-MER - Port de Plaisance", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-09-13", + "ref:EU:EVSE": "FRS66E66016004", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13302100000, + 42.48046300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Auriolles", + "description": "Auriolles", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE008401;FRIENE008402", + "ref": "FRIENE008401;FRIENE008402", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03531910000, + 44.74553060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "description": "BAIS - 1 rue des acacias ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35014001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29127200000, + 48.01049000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "charging_station:output": "43 kW;160 kW", + "network": "61mobility", + "amenity": "charging_station", + "start_date": "2022-08-10", + "socket:type2_combo:output": "160 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "MESSEI - Rue de Surville", + "ref:EU:EVSE": "FRS61P61278A", + "ref": "SE61-MESS-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53688900000, + 48.71086100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "529277", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7927512046243079085", + "charging_station:output": "22 kW", + "description": "Freshmile France/GXZPR6RW7D", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58749400000, + 49.05461700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PEJLYVF", + "start_date": "2018-04-16", + "ref": "79768;EJLYVF", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "description": "Roulez Électrique En Haute-Garonne/EJLYVF;Lagardelle-sur-Lèze, Puits" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38962000000, + 43.41410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COURBEVOIE - Rue Joseph Riviere", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92026009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25672250000, + 48.90256380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCG0E000276;FRCG0E000278", + "start_date": "2022-06-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000276;FRCG0E000278", + "description": "GEDIMAT CASTELLI - 20538 - 2", + "operator:email": "info@chargeguru.com", + "network": "GEDIMAT CASTELLI - 20538 - 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27444400000, + 41.60200600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-02;2023-11-16", + "operator": "IZIVIA", + "description": "ISOLA 2000 - PARKING FRONT DE NEIGE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE15022;FRM06PNICE15012;FRM06PNICE15011;FRM06PNICE15021", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*150*1*_*_;FR*SOD*S*NICE*150*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15843800000, + 44.18615900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "cf848567-1931-5d50-892b-9cf452ece585", + "description": "MOBIVE | Rion des landes | Place Guillaume (Fronton)", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91823800000, + 43.91973100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE60BVJA", + "description": "Jardins Rostand - BEAUVAIS", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10449000000, + 49.43852600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "description": "Bump x Groupe Parot Ford Périgueux - Trélissac", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "247471", + "ref:EU:EVSE": "FRBMPS247471", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79391240000, + 45.19845980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR1346EVCP01;LFR1346EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "WASQUEHAL", + "ref": "LFR1346EVCP01;LFR1346EVCP02", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13555200000, + 50.67827400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "1da20bf3-b21c-5f2f-a52f-a5d0620c0b2a", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Brive | Pôle D’Echanges Multimodal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47942800000, + 45.14868300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "description": "Saint-Michel-sur-Orge - Rue de l'Église", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "95c03a79-7db5-5588-9469-933d5d94156f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30316200000, + 48.63034800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP92140CLMFERRAR1", + "start_date": "2021-03-25;2021-03-23", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92140*CLM*FERRAR1", + "amenity": "charging_station", + "capacity": "1", + "description": "PLACE FERRARI - CLAMART", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26284100000, + 48.79898500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "STE MAXIME Couloubrier", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3692EVCP03;LFR3692EVCP02;LFR3692EVCP01", + "ref:EU:EVSE": "LFR3692EVCP03;LFR3692EVCP02;LFR3692EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61320000000, + 43.32769400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2023-10-03", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "ref:EU:EVSE": "FRPL1PBTWINPL1590002", + "operator:email": "support@driveco.com", + "description": "LEPLEIN Lille - Btwin village - Entrée principale", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08347300000, + 50.61737100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPOMHSNRMBVM", + "charging_station:output": "22 kW", + "description": "Réseau eborn/OMHSNRMBVM;Saint Ferréol Trente Pas, Place De La Mairie", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "OMHSNRMBVM;106934" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21894900000, + 44.42874300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP44162A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP44162A", + "opening_hours": "24/7", + "description": "e-Totem - LAPEYRE St Herblain", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61258314668, + 47.24892483283 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Montélimar P1 - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E26198001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74600800000, + 44.56032800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT599401", + "network": "DRIVECO", + "description": "Carrefour Market - Estaires", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-04-17", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70725000000, + 50.64304800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP5514597322226943891", + "description": "Réseau eborn/RXIEJHAHQH", + "ref": "492189" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72572900000, + 44.93142300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*487*1*_*_", + "start_date": "2022-09-15", + "charging_station:output": "3.68 kW", + "description": "BOULANGER VARTELEC - BAGNOLS SUR CEZE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR48712;FROTHPOTHR48711", + "network": "BOULANGER VARTELEC", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62755900000, + 44.15898900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Th,We,Fr,Tu,Sa,Mo 06:15-20:00", + "amenity": "charging_station", + "description": "Freshmile France/GEKQLCBJQX", + "capacity": "4", + "network": "Freshmile France", + "ref": "597834", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6769846035323929661" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76262200000, + 48.63025700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10092018;FRUBIE10034977", + "description": "La cote de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21275000000, + 49.59244400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LQVZYC", + "ref": "86795", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PLQVZYC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57738000000, + 47.79860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555025", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "TOULOUSE - Barrière de Lombez", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41918900000, + 43.59550950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "446582", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/RZMEWGYXIY", + "ref:EU:EVSE": "FRFR1P2783094207852097436", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75239400000, + 46.18586900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/VK9H0DVFDH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461985", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P3138346018927191369", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34287800000, + 49.21312300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BROMMAT - Parking Salles des Fêtes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12036001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-12-01", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68449000000, + 44.83054600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78278002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "operator": "Bouygues E&S", + "description": "GOUPILLIERES - Stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76717737339, + 48.88029682939 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "JUIGNE-SUR-LOIRE - Impasse du Rocher;OuestCharge - Diva Sp - Juigne-sur-Loire - Rocher", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49167001;FRS49P49167A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-03-26;2021-04-23", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48453200000, + 47.40455600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/vesoul2", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PVESOUL2", + "ref": "64967" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14939000000, + 47.61850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20852550000, + 49.97189010000 + ], + [ + 1.20847540000, + 49.97186790000 + ], + [ + 1.20841250000, + 49.97181560000 + ], + [ + 1.20836240000, + 49.97177870000 + ], + [ + 1.20830290000, + 49.97174820000 + ], + [ + 1.20822770000, + 49.97172600000 + ], + [ + 1.20812620000, + 49.97171600000 + ], + [ + 1.20778580000, + 49.97167990000 + ], + [ + 1.20769110000, + 49.97166290000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HARDIFORT - Contour De L'Eglise", + "start_date": "2020-10-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59282001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48582700000, + 50.82133500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "VITRE - 5 place du champ de foire ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35360002B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20703000000, + 48.11958000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63193A", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63193*A", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref": "518348", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19676000000, + 45.76825800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3463522332298353475", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "472314", + "description": "Freshmile France/ZUMX4SSUME", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73614200000, + 48.60646400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21827", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS32PHXJWUA", + "charging_station:output": "22 kW", + "description": "SDEG32/HXJWUA", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87320200000, + 43.63000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-20", + "description": "CACHAN - Rue Cousté", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94016007", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33647720000, + 48.79476633000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE27212;FRM06PNICE27211;FRM06PNICE27221;FRM06PNICE27222", + "start_date": "2023-10-25", + "description": "LEVENS - GENERAL DE GAULLE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*272*2*_*_;FR*SOD*S*NICE*272*1*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23221551639, + 43.85484201461 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "7a6f5e41-12db-5897-8c48-9a420c0da7a0", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Cyprien | Place Mackenheim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04413400000, + 44.86840100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - ARISTIDE MAILLOL - MONTIGNY-LES-CORMEILLES", + "ref": "FR*SOD*S*SIGE*404*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-24", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE40412;FRSIGPSIGE40411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20313000000, + 48.99400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76536001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "RONCHEROLLES SUR LE VIVIER - Rue De L'Église", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18434200000, + 49.46761800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3191EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3191EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LONGWY Saintignon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77394200000, + 49.52386500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "42416f64-4929-56ab-942b-607d6ba62658", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Argentat | Place Bad-Koenig", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93949900000, + 45.09402000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "5f49ddbd-becb-5352-916f-6af1e0f7b704", + "capacity": "2", + "description": "ROUSSILLON - Parking des Sablons", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28972200000, + 43.90238700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "CAMBRAI - Avenue Victor Hugo", + "start_date": "2021-09-10;2021-09-14", + "ref:EU:EVSE": "FR594E59122003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24928400000, + 50.17500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "BRESSUIRE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3388EVCP01;LFR3388EVCP02", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3388EVCP01;LFR3388EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48426200000, + 46.83868600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "start_date": "2024-06-30", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMPSC", + "description": "Intermarché - Prayssac", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18665084789, + 44.50159900088 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPGH4VMCSAZK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "GH4VMCSAZK;30149", + "description": "Réseau eborn/GH4VMCSAZK;Gresse-En-Vercors, Parking Public - RD8A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56859000000, + 44.90253800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "e-Totem - DASSIN KYRIAD TRAPPES", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP78621A", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP78621A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00375102582, + 48.77020108712 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PCORHAG", + "start_date": "2023-07-13", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "11", + "description": "Cora - Haguenau", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83590700000, + 48.80197000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Bosc-Le-Hard", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRDRVPCRFMKT768501", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-07-04", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17636000000, + 49.62853800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "description": "Novotel Poitiers Futuroscope", + "socket:type2_combo:output": "200 kW", + "start_date": "2022-10-15", + "ref:EU:EVSE": "FRERAP", + "network": "eranovum", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "909764680", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "contact-france@eranovum.energy", + "operator": "ERANOVUM E-MOBILITY FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34000000000, + 46.57000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*195*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "ref:EU:EVSE": "FROTHPAUCH19511;FROTHPAUCH19512", + "description": "AUCHAN - PAU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33365530000, + 43.30507260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6806735", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "description": "CTM NEUILLY BORNE1", + "charging_station:output": "22 kW", + "network": "CTM NEUILLY BORNE1", + "ref": "FRCPIE6806735", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27029400000, + 48.88376400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;60 kW", + "description": "SAINT MARTIN D'HERES Glairons;Freshmile/QS8BTQA6LW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3562EVCP02;LFR3562EVCP01;FRFR1P654073740906581518", + "operator": "Freshmile | FR*FR1;LIDL France", + "ref": "LFR3562EVCP02;529547;LFR3562EVCP01", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "charging_station:output": "120 kW;22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76157400000, + 45.18663800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "ref": "FR*V75*P9014*03", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Boulevard Edgar Quinet 9", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901403" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32389100000, + 48.84119800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "120 kW;60 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3403661473601195868;LFR3346EVCP02;LFR3346EVCP03;LFR3346EVCP01", + "ref": "559748;LFR3346EVCP02;LFR3346EVCP03;LFR3346EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "charging_station:output": "120 kW;22 kW;60 kW", + "description": "Freshmile/LRNQPLHRUT;BLETTERANS Chalon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46525300000, + 46.74858800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "description": "Tesla Supercharger Nantes - La Chapelle-sur-Erdre", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1742", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54998200000, + 47.28270800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P2131521741835465841", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "ref": "491967", + "opening_hours": "24/7", + "description": "Freshmile France/VZTNJWZFYA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10321400000, + 48.88856800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "start_date": "2024-03-13", + "description": "R3 - Gien Val Solgne", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89882123", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64090100000, + 47.70600400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P2288226675013575839", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/TPQYPCO3UW", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "461955", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84516800000, + 49.01180600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-10", + "ref:EU:EVSE": "FRS12E12300001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VILLEFRANCHE DE ROUERGUE - Parking Ruelles", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03385300000, + 44.35154700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5L8BIBCXMH", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P6391490711534577770", + "ref": "1130607", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37956300000, + 48.67416800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "VERNANTES - Place de la Mairie;OuestCharge - Diva Sp - Vernantes - Mairie", + "amenity": "charging_station", + "start_date": "2024-04-06;2021-04-15;2024-04-27", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49P49368A;FRS49E49368001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05369500000, + 47.39353600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81130001", + "start_date": "2023-10-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAGARRIGUE - Avenue de Castres", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27614100000, + 43.58087700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2024-07-10", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "ref:EU:EVSE": "FRHPCENF057010", + "network": "TotalEnergies Charge Rapide", + "capacity": "10", + "ref": "FRHPCPNF057010", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS DE VILLEJUIF", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36637300000, + 48.78551600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PUY L'EVEQUE - Rue de Dunant", + "ref:EU:EVSE": "FRS46E46231001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13549100000, + 44.50560600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21903", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PPCHBYA", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/PCHBYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68978000000, + 47.77820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59239001", + "charging_station:output": "22 kW", + "description": "FLINES-LEZ-RACHES - Rue Dupire", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18244300000, + 50.42585400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923300", + "description": "Quimperle-Place du Barzaz Breizh" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.54633900000, + 47.87433600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Péaule - Place Saint Gaudence", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PWDVXQA", + "start_date": "2016-10-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35815700000, + 47.58033400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHAUVIGNY CITE MEDIEVALE-1-2;CHAUVIGNY CITE MEDIEVALE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "B026", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2017-11-16", + "ref:EU:EVSE": "FRLMSE12346051522;FRLMSE12346051511;FRLMSE12346051512;FRLMSE12346051521", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64652800000, + 46.57301300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-12-08", + "amenity": "charging_station", + "description": "Metropolis - Citadine - Aubervilliers - Waldeck Rochet", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93001B", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36812169000, + 48.91444906000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE7611;FRSIGPSIGE7612", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-12-23", + "description": "SIGEIF - RUE CHARLES DE GAULLE - JOUY-EN-JOSAS", + "ref": "FR*SOD*S*SIGE*76*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15286300000, + 48.76869300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRATLP8917257586104730092", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "799176", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFRATL*Gree7101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031100000, + 45.66341100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000081813", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Lagny", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "start_date": "2023-05-19", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68025300000, + 48.87108600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Hendaye | Quai de la Floride", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "ref": "d9709924-4bd0-5b33-bc36-0f24f49d26c3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78118500000, + 43.36827900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85164001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NOTRE-DAME-DE-MONTS - Rue De L'Église", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.13172900000, + 46.83122300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "charging_station:output": "0 kW", + "start_date": "2023-11-23", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Salaise", + "ref": "FRALLEGO9008842;FRALLEGO9008841;FRALLEGO9006112;FRALLEGO9006111;FRALLEGO9002823;FRALLEGO9001032;FRALLEGO9001031;FRALLEGO9000241;FRALLEGO9000242;FRALLEGO9002821;FRALLEGO9002822", + "network": "Allego Carrefour Salaise", + "ref:EU:EVSE": "FRALLEGO9008842;FRALLEGO9008841;FRALLEGO9006112;FRALLEGO9006111;FRALLEGO9002823;FRALLEGO9001032;FRALLEGO9001031;FRALLEGO9000241;FRALLEGO9000242;FRALLEGO9002821;FRALLEGO9002822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80523145000, + 45.34195565000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*11*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "ref:EU:EVSE": "FRIZMPMAMP1121;FRIZMPMAMP1122", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com", + "description": "IZIVIA | MARSEILLE 09 - AVENUE DE LUMINY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43669600000, + 43.23037700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRPD1PMARGAU", + "description": "Mairie de Gauchy - Salle Polyvalente", + "start_date": "2024-04-15", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28847989207, + 49.83390216219 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/IBSXDFRIST", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP2979658746527930339", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "492114", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285200000, + 45.29281500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/7046E9BF-770B-4A16-A515-F0862FD5F8C6", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "ref": "1149810", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP7704508193556086003", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92074700000, + 47.48761700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "hotelF1 - Oullins", + "ref:EU:EVSE": "FRPD1PHF1OLS", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82035940000, + 45.71507870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LPQNUV;Saint-Etienne-Les-Orgues, Parking de la Poste", + "ref:EU:EVSE": "FREBNPLPQNUV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref": "78651;LPQNUV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78116000000, + 44.04300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP17241A", + "ref": "FRETIP17241A", + "description": "e-Totem - BRICONAUTES MONTGUYON", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17674387623, + 45.21179056501 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR17511;FROTHPOTHR17521", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-05-25", + "opening_hours": "24/7", + "description": "CANCE - CAMPING LOUS SEURROTS", + "ref": "FR*SOD*S*OTHR*175*1*_*_;FR*SOD*S*OTHR*175*2*_*_", + "network": "CANCE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31633000000, + 44.08898500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6990555", + "start_date": "2024-03-20", + "ref:EU:EVSE": "FRCPIE6990555", + "opening_hours": "24/7", + "network": "AUSSOIS CENTRE VILLAGE", + "charging_station:output": "22 kW", + "description": "AUSSOIS CENTRE VILLAGE", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74116500000, + 45.22717800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LM0QUGDXV1GP9W", + "ref:EU:EVSE": "FRFR1P7379545522468005516", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1183977" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57161900000, + 44.82084700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP123010", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "description": "CENTER PARCS LES TROIS FORETS - Parking C", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99461300000, + 48.61008400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "257203", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "capacity": "10", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/WZNSAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243000000, + 49.41210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRSUAP34111A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSUAP34111A", + "start_date": "2022-02-10", + "description": "SUPER U GANGES", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW", + "network": "SUPER U GANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70723200000, + 43.92909500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1086639", + "ref:EU:EVSE": "FRFR1P7298878133540401594", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLTY7BO1223V6J", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65066000000, + 49.07274900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMERCURE473001", + "description": "Mercure - Villeneuve sur Lot", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70022800000, + 44.42348200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref": "FRS28E134403", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E134403", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VILLEMEUX SUR EURE - Rue de la libération", + "network": "MODULO - VILLEMEUX SUR EURE - Rue de la libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46055656000, + 48.67393864000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P6162230465154158367", + "description": "SDEA 10/R2KKTURY5F", + "ref": "32137" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78985500000, + 48.26409900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "708671", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P611847329422891969", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5LBW5OXT72" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67795200000, + 45.19205600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST LO - Ronchettes", + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2018-01-11", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "215005026", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P505022", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06482200000, + 49.10437300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "ref:EU:EVSE": "FRS81E8127300213;FRS81E8127300211;FRS81E8127300212", + "description": "TANUS - Place de l'Eglise", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31778300000, + 44.10192900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF078546", + "start_date": "2021-06-17;2021-06-18", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680700;531680697;531680698;531680699", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRHPCPNF078546", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "175 kW", + "description": "RELAIS DE L ESTALOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43220000000, + 44.97830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Becon-les-Granits - Tilleuls;BECON-LES-GRANITS - Avenue des Tilleuls", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49026A;FRS49E49026001", + "start_date": "2024-03-26;2021-05-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79987600000, + 47.50232000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/BHPKTX", + "ref": "64832", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PBHPKTX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82202000000, + 49.41330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAILLY-SUR-LA-LYS - Rue de la Lys", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "11 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH09E62736001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76985600000, + 50.65772200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30133003", + "network": "Reveo", + "start_date": "2022-02-24", + "description": "LE GRAU DU ROI - Parking Quai 19 Mars 1962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13598000000, + 43.54002900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P3864936588331435163", + "ref": "1162728", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/LLYCXRM6L2A29P", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07605500000, + 47.58383700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B107", + "start_date": "2016-01-08", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346390541;FRLMSE12346390531", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "VIVONNE-1-1;VIVONNE-1-2", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26271600000, + 46.42594900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP94054B", + "ref": "419985", + "opening_hours": "24/7", + "start_date": "2021-10-04", + "owner:ref:FR:SIREN": "885354860", + "description": "Métropolis/FR*MGP*P94054*B;Metropolis - Citadine - Orly - Hautes Bornes", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40733000000, + 48.74948700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PLACE DE LA LIBERATION - SARCELLES", + "capacity": "2", + "start_date": "2021-03-23", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE11011;FRSIGPSIGE11012", + "ref": "FR*SOD*S*SIGE*110*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37794500000, + 48.99638000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LIMONEST - Rue de l'Etang", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E69116001", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77756490000, + 45.80962170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89369693", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-27;2022-12-26", + "description": "ENGIE Vianeo - A6 La Forêt", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71412800000, + 47.10525200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "9e8dd976-b20d-53a5-bc22-0111832c87c0", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "190__SDEG16", + "description": "MOBIVE | Saint Christophe | Place de L'Église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85009900000, + 46.00300800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE62NACA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Médiathèque - NOYELLES-GODAULT", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99355600000, + 50.41733700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Port de Bouc", + "description": "Allego Carrefour Port de Bouc", + "amenity": "charging_station", + "start_date": "2023-06-06", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9007742;FRALLEGO9007741;FRALLEGO9007452;FRALLEGO9007451;FRALLEGO9004541;FRALLEGO9002431;FRALLEGO9001622;FRALLEGO9001621;FRALLEGO9002432;FRALLEGO9002433;FRALLEGO9004542", + "ref": "FRALLEGO9007742;FRALLEGO9007741;FRALLEGO9007452;FRALLEGO9007451;FRALLEGO9004541;FRALLEGO9002431;FRALLEGO9001622;FRALLEGO9001621;FRALLEGO9002432;FRALLEGO9002433;FRALLEGO9004542" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00063750000, + 43.41266630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LILLE HELLEMMES Jacquard", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3318EVCP01;LFR3318EVCP02", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3318EVCP01;LFR3318EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10338800000, + 50.63413900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CORNEBARRIEU - Parking Jules Ferry", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31150001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32679200000, + 43.64998400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPP9AXQ55PSR;FREBNP6636683027695905307", + "ref": "P9AXQ55PSR;529928", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2022-06-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Hyères, Parking Avenue de la Bergerie;Réseau eborn/P9AXQ55PSR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14880600000, + 43.04787600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "896628", + "network": "Freshmile France", + "capacity": "14", + "description": "Freshmile France/LLL55C85P1XCOI", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P1246939250685364083", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57164700000, + 47.79936600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-06-21", + "ref:EU:EVSE": "FRP07E751010015;FRP07E751010014;FRP07E751010013;FRP07E751010012", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "37", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Louvre Samaritaine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34038690000, + 48.86022260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "749430", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP5220784476053293947", + "description": "Réseau eborn/G0F2IUTCE8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06767900000, + 45.09141300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "978224", + "network": "Road", + "opening_hours": "Fr,Su,Tu,We,Sa,Th,Mo 08:00-18:00", + "ref:EU:EVSE": "FREFLP6594508454174064769", + "amenity": "charging_station", + "capacity": "1", + "description": "Road/6569cc21e025c5001c33333d", + "charging_station:output": "11 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45602300000, + 47.18581300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR29931;FROTHPOTHR29911;FROTHPOTHR29921", + "charging_station:output": "3.68 kW", + "network": "DOMAINE DE LESPERON", + "ref": "FR*SOD*S*OTHR*299*3*_*_;FR*SOD*S*OTHR*299*1*_*_;FR*SOD*S*OTHR*299*2*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "RESIDENCE LES THERMES - DAX", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-01-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05568400000, + 43.71110300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6608655", + "capacity": "2", + "network": "SONEPAR CONNECT THIONVILLE", + "description": "SONEPAR CONNECT THIONVILLE", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6608655", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13628900000, + 49.35473700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPF0HLVDBZUM", + "ref": "F0HLVDBZUM", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Ramatuelle, Boulevard Du Huit Mai 1945", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61083600000, + 43.21721960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s570501;WAAT/FRWATLFNE5SR08", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWATP7477264167763992111;FRWA2P6339273901803068971", + "ref": "1184678;706202", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43252200000, + 47.09606500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/QZFN3KUU9F", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "698987", + "ref:EU:EVSE": "FRFR1P8466087981721546120", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11381700000, + 49.11353500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ACCOR Hotels", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "Novotel Saint Brieuc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-08-13", + "owner:ref:FR:SIREN": "478811458", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP00425", + "ref:EU:EVSE": "FRTCBP00425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76201300000, + 48.50864900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/WHR7FFWALM", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7660191443104175413", + "ref": "454176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05870000000, + 46.60000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Hyundai - Valauto - Lomme", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-12-21", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00", + "ref:EU:EVSE": "FRSSDPVALAUTOHYUNDAI591601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00772800000, + 50.64455500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-09-29", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Le Conquet-Place de Brest", + "ref:EU:EVSE": "FRS29E29040001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.77022400000, + 48.36058400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2082672856899592720", + "ref": "101747", + "description": "SDEA 10/DPY7WNXRYD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50275600000, + 48.35764100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "575924", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P5208226951954448467", + "description": "Zephyre/CIR_12108007470003", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00071900000, + 47.51716300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Régie Services Energie/FR*RSE*P01021*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRRSEP01021A", + "ref": "481263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82161000000, + 45.99336100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64700", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/airainesseym", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PAIRAINESSEYM", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94523000000, + 49.96490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST17513;FRIZFPFAST17511;FRIZFPFAST17512", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-28", + "ref": "FR*SOD*S*FAST*175*1*_*_", + "description": "IZIVIA FAST - MCDONALDS - GUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64303670000, + 49.90423390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SAINT AMAND LONGPRE - Place du 11 Aout 1944", + "ref": "FRS41E4911;FRS41E4912", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E4911;FRS41E4912", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SAINT AMAND LONGPRE - Place du 11 Aout 1944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01733000000, + 47.68865000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE MANS - Rue de Coeffort", + "ref:EU:EVSE": "FRS72E72181007", + "start_date": "2021-11-08", + "charging_station:output": "11 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19946582615, + 47.99459993143 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LY713 - CHEVREUL", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*87*3*_*_;FR*SOD*S*LYON*87*1*_*_;FR*SOD*S*LYON*87*2*_*_;FR*SOD*S*LYON*87*4*_*_", + "opening_hours": "24/7", + "start_date": "2021-06-21", + "ref:EU:EVSE": "FRGLYPLYON8741;FRGLYPLYON8731;FRGLYPLYON8721;FRGLYPLYON8711", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83685300000, + 45.74983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BEAULIEU LES LOCHES - Mail St Pierre", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - BEAULIEU LES LOCHES - Mail St Pierre", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E215630;FRS37E215631", + "start_date": "2023-09-23", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E215630;FRS37E215631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01133700000, + 47.13275100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-05", + "description": "Sulniac - 7 rue René Cassin", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PCHEKHW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.57069600000, + 47.67529900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2021-10-21", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P42279A", + "operator:email": "contact@e-totem.fr", + "network": "RENAULT AGENCE LOSANGE", + "description": "RENAULT AGENCE LOSANGE", + "ref": "FRG10P42279A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26215600000, + 45.51818900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPAUCH12912;FROTHPAUCH12911", + "network": "AUCHAN", + "ref": "FR*SOD*S*AUCH*129*1*_*_", + "operator:email": "sav@izivia.com", + "description": "AUCHAN - LA SEYNE-SUR-MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85803500000, + 43.11256900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*220*5*_*_;FR*SOD*S*SIGE*220*3*_*_;FR*SOD*S*SIGE*220*2*_*_;FR*SOD*S*SIGE*220*1*_*_;FR*SOD*S*SIGE*220*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "description": "SIGEIF - 12 RUE DES FUSILLE DE CHATEAUBRIAND - CHENNEVIERES-SUR-MARNE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE22051;FRSIGPSIGE22021;FRSIGPSIGE22011;FRSIGPSIGE22031;FRSIGPSIGE22041", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-03-08;2022-03-09;2022-04-07;2022-06-07", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53513200000, + 48.79908700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRCG0E003244;FRCG0E003243;FRCG0E003242;FRCG0E003241;FRCG0E003240;FRCG0E003245", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRCG0E003244;FRCG0E003243;FRCG0E003242;FRCG0E003241;FRCG0E003240;FRCG0E003245", + "description": "Jallu berthier - Ford Abbeville - 80132 - 1", + "start_date": "2023-07-22", + "charging_station:output": "300 kW;22 kW;100 kW", + "operator:email": "info@chargeguru.com", + "network": "Jallu berthier - Ford Abbeville - 80132 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86902200000, + 50.09730100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/XZ5BGZA7KF", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P8640962324318086613", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref": "454359", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38698600000, + 45.75260500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "description": "MOBIVE | Beurlay | Place de la Mairie", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "037102ae-0dfb-5e36-b6fb-aed5edac1215", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83811900000, + 45.86110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "ANGERVILLE Espace Simone Veil", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "ref:EU:EVSE": "FRSE1PSE91ABDA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00088800000, + 48.31138000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "ref:EU:EVSE": "FRA68P68021001", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "130025265", + "start_date": "2020-01-14", + "capacity": "10", + "network": "Réseau de recharge ABC", + "operator:email": "contact@societe-operateur.com", + "description": "Picpus", + "operator": "Société Y" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48710500000, + 48.34534500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3701EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3701EVCP01", + "description": "BEZIERS Saint Nazaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18349400000, + 43.33708900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRENOBLE - Rue Victor Lastella - Chambre des Métiers", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38185005", + "start_date": "2022-02-19;2022-02-07", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70401100000, + 45.18440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-12-21", + "description": "Réseau eborn/SASKL5PCVO;Toulon, Place Sadi Carnot, Avenue de Valbourdin", + "ref:EU:EVSE": "FREBNPSASKL5PCVO;FREBNP9067758494756838028", + "ref": "346934;SASKL5PCVO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92022000000, + 43.13027100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FWNUUR", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3094035799177283836", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "ref": "1112676", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09649000000, + 49.45510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-09-15", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E94068005", + "description": "SAINT-MAUR-DES-FOSSÉS - La Varenne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51482340000, + 48.79584570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Barcelonnette, Place Aimé Gassier;Réseau eborn/AP4KK13HNF", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNP2218591903240099605;FREBNPAP4KK13HNF", + "start_date": "2020-06-21", + "ref": "AP4KK13HNF;346625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65151300000, + 44.38584000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "start_date": "2023-01-06", + "description": "Aubergenville - CC Family Village", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85935500000, + 48.96404000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E91377002", + "network": "EFFIA France", + "description": "Parking gare de Massy TGV - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26148020000, + 48.72577340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED EPC SOLUTIONS", + "ref": "FRCPIE6652065", + "description": "CGED EPC SOLUTIONS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6652065", + "operator:email": "info@chargepoint.com", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11555100000, + 47.74652600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1167144", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRECHP5272944696594724033", + "description": "Easy Charge/LLTFRQ3OB1MNR4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14961400000, + 49.36932400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*PPX19*05", + "start_date": "2021-08-05", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1905", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36910000000, + 48.89170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529274", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/GWQCTT01WA", + "ref:EU:EVSE": "FRFR1P2188334215092800909", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14954300000, + 49.15113900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Saint Roch 3", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FR*V75*PPX01*01", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX0101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33148560000, + 48.86429390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/HJ4XH5K9DO", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P803330427193334275", + "operator": "Freshmile | FR*FR1", + "ref": "574571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01650000000, + 50.61827900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPOCEANEHYUNDAI853001", + "network": "DRIVECO", + "description": "Hyundai - Challans", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-01-19", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90291300000, + 46.85473500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS22E22229001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-29", + "charging_station:output": "22 kW", + "description": "PLOUNEVEZ QUINTIN - Parking de l’église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23156000000, + 48.29049600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11262006", + "operator": "Bouygues E&S", + "description": "NARBONNE - Quai Vallière", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01130900000, + 43.17991900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "313643108", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Super U - Saint Barthelemy d'Anjou - 22kW AC ", + "start_date": "2021-07-01", + "ref": "65280;65281", + "network": "Super U - Saint Barthelemy d'Anjou", + "ref:EU:EVSE": "FRZSUE22AC65281;FRZSUE22AC65280", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51178345000, + 47.48421863000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VERNIOLLE - Zac Delta Sud, Rue Marie Curie", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS09E09332001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64651500000, + 43.07349900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/NUUUFQ", + "amenity": "charging_station", + "ref": "79402", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PNUUUFQ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31097000000, + 49.89120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - FOURMIES", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*56*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST5611;FRIZFPFAST5612;FRIZFPFAST5613", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03356020000, + 50.02690960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS44P44087A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-04-30", + "description": "OuestCharge - Pulse 50 - Machecoul - Reliquet", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81621900000, + 46.99730600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61M7ERN7WVVETNSWC1", + "description": "Jouarre;JOUARRE - Rue De La Croix Mission", + "ref:EU:EVSE": "FRS77P77238A;FRS77E77238001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-11;2016-09-02", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12381400000, + 48.92767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "FRGYMP6773484852046704621", + "capacity": "5", + "charging_station:output": "22 kW;180 kW;200 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "ref": "1090986", + "description": "GreenYellow Shift Mobility/88", + "socket:type2_combo:output": "200 kW;180 kW", + "operator": "GreenYellow | FR*GYM", + "opening_hours": "Su,Th,Mo,We,Sa,Tu,Fr 06:00-22:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53193100000, + 48.83332300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221214;FRS37E221212", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - COTEAUX SUR LOIRE - Ingrandes", + "ref": "FRS37E221214;FRS37E221212", + "network": "MODULO - COTEAUX SUR LOIRE - Ingrandes", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26690900000, + 47.28261300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "description": "CCTLB - Marainviller", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "77a1cd38-cedb-5353-82dc-d5c69faaf959" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60147200000, + 48.58979600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*108*4*_*_;FR*SOD*S*LYON*108*2*_*_;FR*SOD*S*LYON*108*1*_*_;FR*SOD*S*LYON*108*3*_*_", + "description": "LY316 - VILLETTE - POMPIDOU", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-08-04", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON10821;FRGLYPLYON10811;FRGLYPLYON10831;FRGLYPLYON10841", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86162500000, + 45.75860700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "operator": "Mobilize Power Solutions", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMBZELYSAY", + "network": "FOURRAGE ST NAZAIRE", + "ref": "8b1ea200-f635-49b0-82a4-92491cfe7387", + "start_date": "2023-07-10", + "description": "FOURRAGE ST NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24280400000, + 47.26018700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WattzHub", + "ref": "903795", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "description": "WattzHub/64b670055e05ac8c68fa54f2", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WattzHub | FR*SMI", + "ref:EU:EVSE": "FRSMIP7253641094782172685" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.99165700000, + 48.72290500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "CGED CALAIS _", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6542695", + "ref": "FRCPIE6542695", + "description": "CGED CALAIS _", + "start_date": "2022-08-09", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83603200000, + 50.94352900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P9042644091897273148", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/ZFEKUTTULE", + "ref": "454374" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767900000, + 48.86253900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref:EU:EVSE": "FRS33PMB3311912;FRS33PMB3311911;Non concerné", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "description": "SAINT GERMAIN LA RIVIERE - PARKING MAISON DU FRONSADAIS;MOBIVE | Saint Germain la Riviere | Parking Maison du Fronsadais", + "ref": "FR*SOD*S*MB33*119*1*_*_;cb5a24eb-04cd-52bd-a813-bd545a584be4", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32744100000, + 44.94614000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Savigny-sur-Orge - Rue Marie Chauvet", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "50f1f85d-d989-545a-81b9-e5861ae634ec", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34413900000, + 48.67961100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPHNUW", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Airbus - Montoir de Bretagne - Parking P2 Extérieur", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16030100000, + 47.31755400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "ST ANDRE DE CUBZAC", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3326EVCP01;LFR3326EVCP02", + "ref": "LFR3326EVCP01;LFR3326EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42695600000, + 45.01387700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - MAX BAREL RP", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*62*2*_*_", + "ref:EU:EVSE": "FRM06PNICE6222;FRM06PNICE6221", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28711071480, + 43.70046664102 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ19412;FRA16PWIIZ19411", + "start_date": "2022-10-27", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*194*1*_*_", + "charging_station:output": "22 kW", + "description": "AURIBEAU-SUR-SIAGNE - PARKING MALLET", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90962300000, + 43.60133000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/sarrbcinestar", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8785851443519508964", + "charging_station:output": "22 kW", + "ref": "454455", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06064000000, + 48.73390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Brit Hotel - Tours", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBTHTRS", + "start_date": "2023-04-17", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69990378437, + 47.42484175880 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "UJZXTSOGHT;30122", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Corps, Parking RN 85;Réseau eborn/UJZXTSOGHT", + "ref:EU:EVSE": "FREBNPUJZXTSOGHT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94773100000, + 44.81716900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "description": "EVzen/ccdb6e72-6bc7-4d39-84a8-5ac50729d113", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP8982083218792370938", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref": "986196" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46581600000, + 48.19746800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "39", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP07E34172001;FRP07E341720011;FRP07E341720012;FRP07E341720013", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONTPELLIER - Peyrou Pitot", + "start_date": "2023-12-20;2023-01-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87091780000, + 43.61266650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "bourbon;231532", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPBOURBON", + "charging_station:output": "22 kW", + "description": "Bourbon-l'Archambault, Jean Bignon;Réseau eborn/bourbon", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05220000000, + 46.58330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHPLLUVBEQKC2744K;FRECHP3634346363662452920", + "ref": "1150095;LLUVBEQKC2744K", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "description": "Remiremont, Parking Batardeau;Easy Charge/LLUVBEQKC2744K", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58863300000, + 48.01602400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP143007", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-01-17", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Uxegney - Stade Pierre Pretot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36829400000, + 48.18998200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "159451", + "ref:EU:EVSE": "FRFR1PBRUTSG", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BRUTSG", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "socket:type2_combo:output": "7.4 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25574000000, + 45.55130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "description": "Paris | Avenue Ledru Rollin 155", + "amenity": "charging_station", + "ref": "FR*V75*PPX11*01", + "opening_hours": "24/7", + "start_date": "2021-06-30", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37833820000, + 48.85532670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "742947", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/JJBX8EKGQ6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P877660562610360950", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09677900000, + 48.81827300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Clinique Mitterie - Wasquehal", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPCLINMITTERIE591601", + "capacity": "4", + "start_date": "2021-11-29", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99237300000, + 50.65447500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "description": "900069", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "start_date": "2016-10-17", + "operator": "SIEGE 27", + "ref:EU:EVSE": "FRS27PBEAUMONTROGECARNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77552500000, + 49.08068900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - BOURGES - Pkg. Anatole France", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E98496", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BOURGES - Pkg. Anatole France", + "ref": "FRS18E98496" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40308834000, + 47.08186564000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78420001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MONTFORT-L'AMAURY - Place Robert Brault", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-11-05", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81013000000, + 48.77770420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - BOULOGNE SUR MER - LUMIERE", + "amenity": "charging_station", + "ref": "FR*SOD*S*QPRK*70*9*_*_;FR*SOD*S*QPRK*70*8*_*_;FR*SOD*S*QPRK*70*5*_*_;FR*SOD*S*QPRK*70*3*_*_;FR*SOD*S*QPRK*70*26*_*_;FR*SOD*S*QPRK*70*2*_*_;FR*SOD*S*QPRK*70*20*_*_;FR*SOD*S*QPRK*70*16*_*_;FR*SOD*S*QPRK*70*15*_*_;FR*SOD*S*QPRK*70*14*_*_;FR*SOD*S*QPRK*70*10*_*_;FR*SOD*S*QPRK*70*1*_*_;FR*SOD*S*QPRK*70*11*_*_;FR*SOD*S*QPRK*70*12*_*_;FR*SOD*S*QPRK*70*13*_*_;FR*SOD*S*QPRK*70*17*_*_;FR*SOD*S*QPRK*70*18*_*_;FR*SOD*S*QPRK*70*19*_*_;FR*SOD*S*QPRK*70*21*_*_;FR*SOD*S*QPRK*70*22*_*_;FR*SOD*S*QPRK*70*23*_*_;FR*SOD*S*QPRK*70*24*_*_;FR*SOD*S*QPRK*70*25*_*_;FR*SOD*S*QPRK*70*4*_*_;FR*SOD*S*QPRK*70*6*_*_;FR*SOD*S*QPRK*70*7*_*_", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPQPRK7091;FRQPKPQPRK7081;FRQPKPQPRK7071;FRQPKPQPRK7061;FRQPKPQPRK7041;FRQPKPQPRK70221;FRQPKPQPRK70211;FRQPKPQPRK70201;FRQPKPQPRK70121;FRQPKPQPRK70111;FRQPKPQPRK70101;FRQPKPQPRK7011;FRQPKPQPRK70131;FRQPKPQPRK70141;FRQPKPQPRK70151;FRQPKPQPRK70161;FRQPKPQPRK70171;FRQPKPQPRK70181;FRQPKPQPRK70191;FRQPKPQPRK7021;FRQPKPQPRK70231;FRQPKPQPRK70241;FRQPKPQPRK70251;FRQPKPQPRK70261;FRQPKPQPRK7031;FRQPKPQPRK7051", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2022-12-19;2024-07-12", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60724300000, + 50.72191000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "588707", + "charging_station:output": "24 kW;7.4 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRWATP6755388424872779311", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "description": "WAAT/FRWATLGMUYMQBH", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68131600000, + 44.85816200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5;9", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "La Réserve;IONITY La Réserve", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "start_date": "2019-11-19;2020-10-10", + "operator": "IONITY", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE412606;FRIOYE412604;FRIOYE412603;FRIOYE412602;FRIOYE412601;FRIONE412600;FRIOYE412605;FRIOYE412651;FRIOYE412652;FRIOYE412653", + "network": "La Réserve;IONITY GMBH", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE412606;FRIOYE412604;FRIOYE412603;FRIOYE412602;FRIOYE412601;FRIONE412600;FRIOYE412605;FRIOYE412651;FRIOYE412652;FRIOYE412653" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19726700000, + 47.97449300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50770001", + "opening_hours": "24/7", + "start_date": "2021-09-15", + "charging_station:output": "22 kW", + "network": "e-charge50", + "description": "PIROU - Huguet de Semonville", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59606300000, + 49.16655600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2015-07-01;2024-10-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77512A;FRS77E77512001", + "description": "Villeneuve-sur-Bellot;VILLENEUVE-SUR-BELLOT - Rue Du Pont", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61FTXDZBQKSYMRJR4Q", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34302100000, + 48.86105300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13;2022-06-27", + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680755;531680754;531680753;531680752;531680751;531680749;531680748;531680750", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS LORRAINE LES RAPPES", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FRHPCPNF080197" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86240000000, + 48.26850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - VERNOU EN SOLOGNE - Pl. de l'église", + "ref:EU:EVSE": "FRS41E2929;FRS41E2928", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - VERNOU EN SOLOGNE - Pl. de l'église", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E2929;FRS41E2928", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68104600000, + 47.50054900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PLYQNFS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/LYQNFS", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "21908" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41565000000, + 47.79030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8775070283005082288", + "operator:email": "roaming@freshmile.com", + "ref": "892890", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KR6PZL5IRM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10396200000, + 49.22553000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "484736", + "description": "Métropolis/FR*MGP*P92040*G", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040G", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26817200000, + 48.83272800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPM3AUTOPEUGEOT201671", + "amenity": "charging_station", + "description": "Peugeot - M3 Auto - Ajaccio", + "charging_station:output": "22.08 kW", + "start_date": "2020-07-01", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.78882000000, + 41.95303500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E78255002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "description": "FRENEUSE - Place Des Saules" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07824900000, + 49.31018400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/FHLQ03DZIG", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref": "694382", + "ref:EU:EVSE": "FRLE2P540288080250802790" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089700000, + 45.04597600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "description": "MASSIGNAC - PLACE DU CHAMP DE FOIRE;MOBIVE | Massignac | Place du Champ de Foire", + "opening_hours": "24/7", + "ref": "02a3ec38-47bc-57a1-a598-807ef8e1bf63;FR*SOD*S*MB16*23*1*_*_", + "start_date": "2020-06-01", + "ref:EU:EVSE": "FRS16PMB162312;Non concerné;FRS16PMB162311", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65294500000, + 45.77994900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VIGNY - Opposé au 2 rue des Saules", + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95658001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92730500000, + 49.07659000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref": "FRALLEGO8009942;FRALLEGO8009941;FRALLEGO8009921;FRALLEGO8005551;FRALLEGO8005542;FRALLEGO8005541;FRALLEGO8005531;FRALLEGO8001101;FRALLEGO8001102;FRALLEGO8005532;FRALLEGO8005552;FRALLEGO8005561;FRALLEGO8005562;FRALLEGO8009922;FRALLEGO8009931;FRALLEGO8009932", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego FR, Groupe Bertrand, TV4 Beauvais", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO8009942;FRALLEGO8009941;FRALLEGO8009932;FRALLEGO8009931;FRALLEGO8009922;FRALLEGO8005562;FRALLEGO8005561;FRALLEGO8005552;FRALLEGO8005551;FRALLEGO8005541;FRALLEGO8005532;FRALLEGO8005531;FRALLEGO8001101;FRALLEGO8001102;FRALLEGO8005542;FRALLEGO8009921", + "network": "Allego FR, Groupe Bertrand, TV4 Beauvais", + "start_date": "2024-04-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11442172000, + 49.43599599000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/DHAZIJAXIY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P6192194619868938920", + "charging_station:output": "22 kW", + "ref": "446687" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441600000, + 47.18261100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "La destrousse, Avenue du Mistral", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PPMKAPXPJIE", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60471000000, + 43.37650500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "699122", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P9156172456829423118", + "network": "SDEY", + "opening_hours": "24/7", + "description": "SDEY/UPNNKKIGTR", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14309500000, + 48.16594800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ4812;FRA16PWIIZ4811", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*48*1*_*_", + "start_date": "2018-07-03", + "description": "MOUGINS PARKING PISCINE DES CAMPELIERES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99857400000, + 43.58082600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "477633", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/FAHNNHQAL5", + "ref:EU:EVSE": "FRFR1P4603270732229904808", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18492700000, + 45.66470800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSATBLT", + "opening_hours": "24/7", + "start_date": "2024-01-29", + "description": "Casino - Blotzheim", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50343782821, + 47.59270691179 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP5849302018635170600", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/MHHDUPFFMV", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "598263", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95297900000, + 45.30410400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1029537", + "operator:email": "support@evzen.com", + "description": "ENGIE MAMP - Bornes publiques/17FC658B-703B-40A1-B5CD-63FB350A6EC6", + "ref:EU:EVSE": "FREVZP775993882961414858", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23289000000, + 43.42090400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR65211", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-01-25", + "description": "ES/ CREDIT AGRICOLE - SAINT-DIE-DES-VOSGES", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "ref": "FR*SOD*S*OTHR*652*1*_*_", + "network": "ES B2B", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94645500000, + 48.28414700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Annemasse, Rue Fernand David", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPGTJY9D5ZAF", + "operator:email": "contact@reseau-eborn.fr", + "ref": "GTJY9D5ZAF", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23403100000, + 46.19174920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Beaumont, Grande Rue", + "ref:EU:EVSE": "FREBNPGM910S6PBS", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref": "GM910S6PBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10131740000, + 46.09467330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "SCA ALINEA - LAUTREC", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "network": "SCA ALINEA", + "ref:EU:EVSE": "FROTHPOTHR34641;FROTHPOTHR34631;FROTHPOTHR34621;FROTHPOTHR34611", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*346*3*_*_;FR*SOD*S*OTHR*346*2*_*_;FR*SOD*S*OTHR*346*1*_*_;FR*SOD*S*OTHR*346*4*_*_", + "start_date": "2022-03-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14809200000, + 43.68937900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/Q8JLYNSB4D", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P588229540390829119", + "network": "Freshmile France", + "ref": "892638", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50691800000, + 45.85937400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1605", + "ref": "FR*V75*PPX16*05", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Avenue de Versailles 112", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26989310000, + 48.84379290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FRG66VW9M5", + "ref": "510488", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3113801076883351386", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27164300000, + 46.18446700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEVERLINE683901", + "capacity": "3", + "operator:email": "support@driveco.com", + "description": "Volvo - Mulhouse", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-17:00", + "start_date": "2022-11-24", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37985400000, + 47.77643200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PEVREUXCOMCOM", + "operator": "SIEGE 27", + "description": "900119" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15753700000, + 49.00910900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Mael Carhaix-Rue de l'église", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22137001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42382500000, + 48.28397100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "444910418", + "amenity": "charging_station", + "start_date": "2020-11-18", + "capacity": "1", + "description": "Intermarché - Morlaix - 22kW AC ", + "ref": "47222", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZIME22AC47222", + "network": "Intermarché MORLAIX - COMADU", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82937490000, + 48.57501420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE255", + "amenity": "charging_station", + "description": "SCI_DIV", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44611500000, + 50.49817800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-06", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78123005", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "CARRIERES-SOUS-POISSY - Rue Daniel Blevarque" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02298585493, + 48.93977223618 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2021-11-26", + "opening_hours": "24/7", + "network": "Cœur d'Aquitaine", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE414052;FRIOYE414003;FRIOYE414002;FRIOYE414001;FRIOYE414004;FRIOYE414051;FRIOYE414053", + "ref": "FRIOYE414052;FRIOYE414003;FRIOYE414002;FRIOYE414001;FRIOYE414004;FRIOYE414051;FRIOYE414053", + "description": "Cœur d'Aquitaine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 52.01377200000, + -0.20300300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/UX0C74ZEDL", + "ref": "332216", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "4", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS52P5233882100792245893", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00537600000, + 47.95070800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TARBES - PARKING MAIRIE - Rue Georges Clémenceau", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65440012", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07803900000, + 43.23325400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Andel", + "description": "Andel", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-05-15", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE005802;FRIENE005801", + "ref:EU:EVSE": "FRIENE005802;FRIENE005801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52917800000, + 48.48015800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VALRAS PLAGE - Parking Magrou", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34324003", + "start_date": "2023-12-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29028448325, + 43.24455639601 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "description": "DAMIGNY à Pôle Universitaire", + "ref": "SE61-DAMIGNY-002", + "opening_hours": "24/7", + "start_date": "2019-03-25", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS61P61143B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05907700000, + 48.44395300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1157031", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLKM8Z58XMKV5E", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5318920898612046534" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38439200000, + 46.84881800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-09", + "network": "Freshmile", + "description": "Saint-Gaudens", + "ref:EU:EVSE": "FRS31PVTFJDY", + "ref": "VTFJDY", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72878800000, + 43.11010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "ASNIERES-SUR-SEINE - Rue Olympe de Gouges", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-12-04", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE92004012", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31857060000, + 48.91837600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRCG0E000160;FRCG0E000159", + "capacity": "2", + "network": "BMW Bavaria Motors Ollioules", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-02-18", + "description": "BMW Bavaria Motors Ollioules", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000160;FRCG0E000159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84624579000, + 43.12165184000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE122;FRM06PNICE121", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - PHILIBERT RP", + "start_date": "2021-08-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*1*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28309000000, + 43.69922300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "c82f8c4c-5999-5be0-be3a-91aeed7825d2", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Sore | Parking Place de la Poste", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58123200000, + 44.32295200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Boucle des Dinandiers - FAMECK", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-26", + "ref:EU:EVSE": "FRSE1PSE57FAEA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12107000000, + 49.30978900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "184473;184476;184475;184474", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Hérouville-Saint-Clair", + "operator:email": "exploitation@bump-charge.com", + "ref:EU:EVSE": "FRBMPS184476;FRBMPS184473;FRBMPS184475;FRBMPS184474" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33364090000, + 49.18811090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4124EVCP02;LFR4124EVCP01;LFR4124EVCP03;LFR4124EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4124EVCP02;LFR4124EVCP01;LFR4124EVCP03;LFR4124EVCP04", + "description": "VITRY EN ARTOIS Nationale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97710900000, + 50.33234900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PI53KWZZUZ8", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-9E, 16 Rue Emile Zola", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39962200000, + 43.24787000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "764702d0-22fa-52d5-964c-f5cc9c930081", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "description": "Évry-Courcouronnes - Rue Ampère", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40573300000, + 48.62028900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P84000*AVG*MA1R1ESUD", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2020-11-27", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "MAIRIE SUD ROCADE - AVIGNON", + "ref:EU:EVSE": "FR55CP84000AVGMA1R1ESUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82197900000, + 43.92950200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUCH Salengro", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4117EVCP01;LFR4117EVCP04;LFR4117EVCP02;LFR4117EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4117EVCP01;LFR4117EVCP04;LFR4117EVCP02;LFR4117EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59984900000, + 43.66460700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PSYUVAL", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "description": "Super U - Valdahon", + "amenity": "charging_station", + "start_date": "2023-04-24;2023-04-11", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33559689802, + 47.14954890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Manigod, Chef Lieu;Réseau eborn/CPJSS61PNE", + "ref:EU:EVSE": "FREBNPCPJSS61PNE", + "ref": "CPJSS61PNE;85775", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37050000000, + 45.85950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "694208", + "capacity": "8", + "socket:type2_combo:output": "120 kW;22 kW;60 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/FSNNG1M2HO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2657002615212060245", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "120 kW;22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43582800000, + 47.42967000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Aix-en-Provence Malacrida P+R - METROPOLE AIX MARSEILLE PROVENCE", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E13001002", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47016460000, + 43.51409830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPJHNMPLBVVS", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "JHNMPLBVVS;23634", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/JHNMPLBVVS;Bourg-Saint-Andeol, Place du Champs de Mars" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64377400000, + 44.37147700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-04", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "231559;JPWBTH", + "description": "Montluçon, Marx Dormoy;Réseau eborn/JPWBTH", + "ref:EU:EVSE": "FREBNPJPWBTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59894000000, + 46.33860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "charging_station:output": "3.68 kW", + "capacity": "2", + "description": "ES/ BISCHWILLER GARE", + "amenity": "charging_station", + "start_date": "2022-08-31", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR46311;FROTHPOTHR46312", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*463*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.85133000000, + 48.76619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "971966", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1615160174831994091", + "description": "Freshmile France/LLP2IXR1729D8P", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09061700000, + 49.09267900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10012930;FRUBIE10034919", + "operator:email": "contact@ubitricity.com", + "ref": "setp0100000194", + "description": "UBI-LHSM-133", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09661100000, + 49.50569400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1459796158830957002", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "529502", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/OVFYCFMIF5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93503100000, + 48.29335800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT JEAN - Allées Victor Hugo", + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-12-16;2022-04-14", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31488053", + "charging_station:output": "22 kW;90 kW;180 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50157700000, + 43.66402800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "491958", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRFR1P5871783765773412633", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SJWL0JJWCZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45660100000, + 43.49055300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461820", + "ref:EU:EVSE": "FRS14P2385455607021306191", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LNBVCEOPZC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20182200000, + 48.89260500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TREBES - Place Du 19 Mars 62", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS11E11397001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44385700000, + 43.21044200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E781170011;FRY03E78117001", + "capacity": "8", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;3 kW", + "network": "Seymaborne", + "start_date": "2023-12-10;2022-09-12", + "description": "BUC - Rue des Frères Robin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12619900000, + 48.77428900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "CCTLB - Bertrichamps", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "35d7ef6d-30aa-5980-8352-5fcbf747f8ea" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79252800000, + 48.42951200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "SIED70", + "ref:EU:EVSE": "FRS70P6052018585206894072", + "description": "SIED70/RQEQVHLYFO", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "735258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58892500000, + 47.65083300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62584001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "MONT BERNENCHON - RUE DES ECOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58752400000, + 50.58475000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35271001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "ST GEORGES DE REINTEMBAULT - 51 rue Jean Janvier (Place Alexandre Dubois) " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24396800000, + 48.50638600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-10-06", + "amenity": "charging_station", + "ref": "518300", + "opening_hours": "24/7", + "description": "SIEG63 - ePremium - Clermont Ferrand - Rodade;SIEG 63/FR*S63*P63113*C", + "ref:EU:EVSE": "FRS63P63113C", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10808900000, + 45.79353000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLYH1203S2QQD6", + "ref:EU:EVSE": "FRFR1P5621783891556681805", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1153509", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80324000000, + 45.57750700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PVYUUWX", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "21822", + "network": "SDEG32", + "description": "SDEG32/VYUUWX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59219900000, + 43.49190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "ALFORTVILLE - Rue Port L'Anglais", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94002002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-21", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41410000000, + 48.80550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LS Group - Volkswagen Reuil Malmaison - 92500 - 2", + "ref:EU:EVSE": "FRCG0E001277;FRCG0E001275;FRCG0E001276;FRCG0E001278", + "network": "LS Group - Volkswagen Reuil Malmaison - 92500 - 2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "FRCG0E001278;FRCG0E001277;FRCG0E001275;FRCG0E001276", + "operator:email": "info@chargeguru.com", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18901660000, + 48.88280856000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE24012;FRM06PNICE24011", + "start_date": "2023-06-12", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*240*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "SAINT-LAURENT-DU-VAR - PARKING RASCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18627050617, + 43.68031476450 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Nérac | Médiathèque | Gauche", + "ref:EU:EVSE": "Non concerné", + "ref": "64b95a2f-14c6-5307-b56a-21022cf2cb2d", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34230400000, + 44.13499500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-08", + "operator": "IZIVIA", + "description": "SIGEIF - 21 AVENUE DE PARIS - CHATILLON", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE3851;FRSIGPSIGE3841;FRSIGPSIGE3831;FRSIGPSIGE3821;FRSIGPSIGE3811;FRSIGPSIGE3861", + "capacity": "1", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*38*6*_*_;FR*SOD*S*SIGE*38*5*_*_;FR*SOD*S*SIGE*38*4*_*_;FR*SOD*S*SIGE*38*1*_*_;FR*SOD*S*SIGE*38*2*_*_;FR*SOD*S*SIGE*38*3*_*_", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28990500000, + 48.80456800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-06", + "description": "MALAUNAY - Place de la Mairie", + "ref:EU:EVSE": "FRC01E76402001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04086500000, + 49.52366600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3343EVCP01;LFR3343EVCP02", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "description": "JOUE LES TOURS", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3343EVCP01;LFR3343EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65137300000, + 47.34710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "b79fb6af-b29b-5804-86e1-988bdfbc5e17", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Sorlin de Conac | Port de Vitrezay", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71250900000, + 45.32842800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDE82/savenes", + "capacity": "2", + "amenity": "charging_station", + "ref": "39025", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PSAVENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20036900000, + 43.82869500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES", + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2021-12-27", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP92260FARLANGEV1N" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28310700000, + 48.78348500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3677EVCP01;LFR3677EVCP02", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3677EVCP01;LFR3677EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "RUFFEC Garenne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18385700000, + 46.02485500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-03-29", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMLTY", + "description": "Intermarché Super - Lentigny", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98351075369, + 45.99285953989 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/KAKUUL;Coucouron, Place du 14 Juillet", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPKAKUUL", + "ref": "25271;KAKUUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97075000000, + 44.80310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-12-06", + "ref:EU:EVSE": "FRETIP71230A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP71230A", + "description": "e-Totem - Intermarché Gueugnon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07071060670, + 46.60409048970 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PCOHAUR", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Contact Hotel - Aurillac", + "start_date": "2024-01-07", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44430740000, + 44.91118800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT333201", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-02-16;2023-12-05", + "description": "Carrefour Market - Le Taillan-Médoc", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772200000, + 44.91280300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-01-12", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPAXPHC", + "description": "Aix-en-Provence - Hôtel Campanile Pont de l'Arc", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628000000, + 43.51220700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "ref": "FR*SOD*S*OTHR*58*3*_*_;FR*SOD*S*OTHR*58*2*_*_;FR*SOD*S*OTHR*58*1*_*_;FR*SOD*S*OTHR*58*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-12-09", + "description": "CCI - OUST MAREST - OUST-MAREST", + "network": "CCI - OUST MAREST", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR5821;FROTHPOTHR5811;FROTHPOTHR5831;FROTHPOTHR5841" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46358500000, + 50.06204500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6769685", + "start_date": "2023-08-03", + "capacity": "2", + "amenity": "charging_station", + "network": "ATMOSPHERES BORNE", + "description": "ATMOSPHERES BORNE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6769685", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85221300000, + 45.66071200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3692426727417155614", + "opening_hours": "24/7", + "ref": "782436", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KNICVTLTDG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16311700000, + 44.42822900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "ref": "FR*V75*P9008*03", + "amenity": "charging_station", + "description": "Paris | Rue Louis Murat 2", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900803", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30954200000, + 48.87585400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4271058857173389445", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "541697", + "description": "Freshmile France/UATPZ39SAM", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22415400000, + 49.24686900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "130 kW", + "socket:type2_combo:output": "130 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Tesla Supercharger Mougins", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1754", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01115500000, + 43.60365900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "892164", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLISKTTRBAZEKD", + "ref:EU:EVSE": "FRFR1P4872223712714543060", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97212200000, + 45.11879100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-15", + "opening_hours": "24/7", + "description": "R3 - Norauto Beauvais", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "ref:EU:EVSE": "FR3R3P89283501", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11163000000, + 49.40940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P5162973566299623382", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/O0GXWLZLG0", + "ref": "461859", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83820900000, + 48.83251000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12220001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-06-29", + "charging_station:output": "22 kW", + "description": "SAINT EULALIE DE CERNON - Chemin de Millau - La Maurine - Cote Vieille", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13733000000, + 43.98321400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA5P3272430252448870276", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref": "972626", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5L8LOV7NZM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05767500000, + 48.79791600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "OuestCharge - Quick Charger Evtronic - Segre - Promenade;SEGRE - Aire Co Promenade", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS49E49331002;FRS49P49331B", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "start_date": "2021-08-25;2024-04-01", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86948300000, + 47.69788000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2021-04-07", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "GAILLAC Hautepoul - Place Hautepoul", + "ref:EU:EVSE": "FRS81E8109900112;FRS81E8109900111;FRS81E8109900121;FRS81E8109900122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89701027577, + 43.90104616247 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "RELAIS NOISY LE GRAND", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "socket:type2_combo:output": "300 kW", + "ref": "FRHPCPNF007701", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681862;531681859;531681860;531681861;531681863", + "ref:EU:EVSE": "FRHPCPNF007701", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54740900000, + 48.83783500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS46E46102002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2021-05-25", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "description": "FIGEAC - Boulevard du colonel Teulie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03622900000, + 44.61142200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-09", + "ref:EU:EVSE": "FRS56PZMMMWQ", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Berné - Place de la Mairie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39380700000, + 47.99553800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DECHY - Centre Hospitalier", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH04E59170002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10036200000, + 50.33691000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2921600", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pluguffan-Rue de Cornouaille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.18113000000, + 47.97905700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "SAINT-MANDÉ - TER Avenue Daumesnil", + "start_date": "2022-02-16", + "ref:EU:EVSE": "FRSIPE94067006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41362000000, + 48.83377900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "B&B Strasbourg Nord Artisans", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP90284173", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-05-30", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72162400000, + 48.66235300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | La Roche Chalais | Place de L'Etoile", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "5801d5fb-f27d-5b20-add0-5c953a4c0258", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01107300000, + 45.15093600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*49*1*_*_", + "description": "SIGEIF - 2 AVENUE DE LA CRISTALLERIE - SEVRES", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2021-03-11", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSIGPSIGE4912;FRSIGPSIGE4911", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22243700000, + 48.82664600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9006651;FRALLEGO9006652", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9006651;FRALLEGO9006652", + "opening_hours": "24/7", + "network": "Allego Carrefour Lattes", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "description": "Allego Carrefour Lattes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93997200000, + 43.58147800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "456504877", + "ref:EU:EVSE": "FRLMS11732114", + "operator:email": "jfturpin@irdimmo.fr", + "opening_hours": "Mo-FR 8:00-17:00", + "amenity": "charging_station", + "description": "GROUPE IRD", + "network": "GROUPE IRD", + "ref": "6c92a157-0252-486b-840b-de0df725f1e4", + "charging_station:output": "22 kW", + "operator": "GROUPE IRD", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11000000000, + 50.66000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "a775b654-d9da-5cd9-a3ff-72d63c83e737", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bayonne | Rue Jules labat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47764800000, + 43.49351100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FONTENAY-LE-COMTE - Pôle D'Échange Multi Usage - Rue Gérard Guérin", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-16", + "ref:EU:EVSE": "FRS85E85092003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80859000000, + 46.46200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Valenciennes", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9002593;FRALLEGO9002591;FRALLEGO9000041;FRALLEGO9000021;FRALLEGO9000022;FRALLEGO9000042;FRALLEGO9002592;FRALLEGO9007691;FRALLEGO9007692", + "network": "Allego Carrefour Valenciennes", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9007692;FRALLEGO9002593;FRALLEGO9000042;FRALLEGO9000021;FRALLEGO9000022;FRALLEGO9000041;FRALLEGO9002591;FRALLEGO9002592;FRALLEGO9007691", + "capacity": "9", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51728000000, + 50.33475000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3653EVCP02;LFR3653EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "ST ETIENNE Proust", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3653EVCP02;LFR3653EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38353800000, + 45.40697900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "La Boucherie - Saint-Dizier", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLBCSDZ", + "start_date": "2023-07-23", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96393643530, + 48.62336733271 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "HFHFSNPFL8", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPHFHFSNPFL8", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Roanne, place Gabriel Péri" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06644650000, + 46.02855990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "746988", + "ref:EU:EVSE": "FREVZP3773318762725405548", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38396900000, + 44.03857400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PFSTCSM", + "description": "First Grill 45 - La Chapelle-Saint-Mesmin", + "start_date": "2023-05-20", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85334358835, + 47.89623785834 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRE11PLMTASSIN691601", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 06:00-20:00, Tu 06:00-20:00, We 06:00-20:00, Th 06:00-20:00, Fr 06:00-20:00, Sa 06:00-20:00, Su 08:00-18:00", + "operator:email": "support@driveco.com", + "description": "Leroy Merlin - Tassin-la-Demi-Lune", + "start_date": "2017-12-21", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78698000000, + 45.76960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "e-Totem - Golf de Gonville", + "ref": "FRETIP01360A", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP01360A", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96003479841, + 46.21423318504 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-17", + "ref:EU:EVSE": "FROTHPOTHR14711;FROTHPOTHR14712", + "ref": "FR*SOD*S*OTHR*147*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCVL - VAUGNERAY - PLACE DE LEGLISE", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65733300000, + 45.73841500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6954085", + "capacity": "2", + "amenity": "charging_station", + "description": "INDAVER EUR LOON PLAGE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "INDAVER EUR LOON PLAGE 1", + "operator:email": "info@chargepoint.com", + "start_date": "2024-06-13", + "ref": "FRCPIE6954085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23727000000, + 51.00219000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "735162", + "network": "Freshmile France", + "description": "Freshmile France/KWCFZHSDUU", + "ref:EU:EVSE": "FRFR1P1579180215350732855", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42550200000, + 48.25624400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo Camions - Trucks Only - A6 La Forêt", + "operator": "Greenflux", + "socket:type2_combo:output": "100 kW;400 kW", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "100 kW;400 kW", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP111105", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71259000000, + 47.10580600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "1137243", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2184892263124319975", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLWXZW6AERECFB", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60388700000, + 44.88509600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPAMPLITUDEBMW371702", + "capacity": "2", + "amenity": "charging_station", + "description": "BMW Mini - Tours", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-11-30", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70467800000, + 47.33131000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "735129", + "description": "Freshmile France/DVAXW5HCGW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRFR1P7973828727810752198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18482000000, + 48.64713100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "capacity": "5", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHESSRENAULT900001", + "amenity": "charging_station", + "description": "Renault - HESS - Belfort", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88130900000, + 47.64177200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E130534", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRS28E130534", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - JANVILLE-EN-BEAUCE - Pkg. Bretonnerie", + "network": "MODULO - JANVILLE-EN-BEAUCE - Pkg. Bretonnerie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88546900000, + 48.20115700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "462027", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P4121283266289302613", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/Y6SL8CGLG1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76735200000, + 49.06642200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P2209500620331549806", + "ref": "1127970", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LL8VIKDXK", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67128500000, + 47.34486700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50390001", + "start_date": "2018-01-25", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "ST SAUVEUR LE VICOMTE - Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52969830000, + 49.38637390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROQUEMAURE - Place De l'Eglise", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81228001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62323600000, + 43.81368300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF078061", + "amenity": "charging_station", + "start_date": "2021-05-27", + "capacity": "1", + "ref:EU:EVSE": "FRHPCPNF078061", + "description": "RELAIS AUBERVILLIERS PERIPHERIQUE EXTERIEUR", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "175 kW", + "owner:ref:FR:SIREN": "531680589" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37480000000, + 48.90080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49P49007L", + "network": "SIEML", + "start_date": "2021-04-09", + "description": "OuestCharge - Diva Sp - Angers - Ecriture" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52475900000, + 47.48715400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PLAFRETTE", + "opening_hours": "24/7", + "ref": "46579", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/LaFrette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87953000000, + 49.19500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "RIEULAY - Rue Suzanne Lanoy", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH07E59501001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25450000000, + 50.38008500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA CALMETTE - Zac Du Petit Verger", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS30E30061001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25748900000, + 43.92247700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PURNMJP", + "description": "Mobilité électrique 56/URNMJP", + "socket:type2_combo:output": "50 kW;44 kW", + "ref": "251917", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38847000000, + 47.92040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP90234579", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Nimes Centre", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36406000000, + 43.82287600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRMGPP93070F", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P93070*F", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "1193908", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34413800000, + 48.90977600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-28", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "amenity": "charging_station", + "charging_station:output": "300 kW;125 kW;22 kW", + "description": "Shell Aire d'Armor et d'Argoat - St Gilles", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRSHEE93;FRSHEE92;FRSHEE256", + "capacity": "10", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref": "FRSHEE93;FRSHEE92;FRSHEE256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86680000000, + 48.16588300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E26235001", + "start_date": "2023-05-11", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PIERRELATTE - Route de SAINT PAUL", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70571698383, + 44.37251909051 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A6 Venoy Soleil Levant", + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89369697", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67333400000, + 47.78846800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "8c513aeb-699e-5c2f-8267-0898fc1ef4db", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Ambazac | Place du 19 Mars 1962", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40047800000, + 45.95831000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Maison Médicale - Auxi Le Château", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE62ABCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11691800000, + 50.22823700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "start_date": "2023-06-16", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSTHVLE", + "network": "Carrefour Energies", + "description": "THIONVILLE", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14103000000, + 49.35434000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3809EVCP01;LFR3809EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LIEVIN - Marle", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3809EVCP01;LFR3809EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78536700000, + 50.42727600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PGOTPNEEIKG", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Pertuis, Place Granier", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50198300000, + 43.69285500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/FGFFNEVI2C;Forcalqueiret, Parking La Farandole", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPFGFFNEVI2C;FREBNP2308482248146873005", + "start_date": "2022-09-27", + "ref": "FGFFNEVI2C;598239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08201500000, + 43.33606200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "541733", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BAHAHGV1PV", + "ref:EU:EVSE": "FRFR1P4092320830771939021", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.63923600000, + 41.90931500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Gamm Vert - Le Controis-en-Sologne", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PINVCES", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-11-03;2023-10-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43463310402, + 47.42959506873 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529943;YHQFQ5KDAE", + "description": "Réseau eborn/YHQFQ5KDAE;Brenon, PLACE communale des Henry", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP6795716272834430390;FREBNPYHQFQ5KDAE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2022-06-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54383100000, + 43.76633300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "1042473", + "network": "Road", + "description": "Road/65e05cd560ab16001bd0f0e0", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP4428340151505891280", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "opening_hours": "Su,Tu,Fr,Sa,Th,We,Mo 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72394200000, + 48.83165300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR26421;FROTHPOTHR26411", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "network": "CSP PARIS FASHION GROUP", + "description": "CSP PARIS FASHION GROUP - LE VIGAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*264*2*_*_;FR*SOD*S*OTHR*264*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61983400000, + 43.98971900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6604545", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT ROUSSET", + "network": "SONEPAR CONNECT ROUSSET", + "ref": "FRCPIE6604545", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61028500000, + 43.46618600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "505551", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CCY2LZBR5C", + "ref:EU:EVSE": "FRFR1P7192469105442604033", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23140600000, + 47.23343900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "ref": "1153770", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/s517169", + "ref:EU:EVSE": "FRWA2P3584800694664233360", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87692600000, + 45.74562700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLYZRZNYS7M2RS", + "socket:type2_combo:output": "24 kW", + "ref": "1155948", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5971608271495359987" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61264200000, + 44.88188400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ALFEN 2x22 TOYOTA TOURNON", + "ref:EU:EVSE": "FRSWSE1234636582", + "ref": "1234636582", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31839700000, + 45.64296900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Tu,Fr,We,Mo,Th 09:00-18:00", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/FC0CGPMFFS", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1033853953067360885", + "ref": "578867", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062600000, + 47.44773500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "start_date": "2020-03-04", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "description": "Kia - Dunkerque", + "ref:EU:EVSE": "FRSSDPEURAUTOKIA596401", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35660000000, + 51.01670100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2900600", + "description": "Benodet-Avenue de la Mer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10674700000, + 47.87693000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "88226", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/BCIKXNCWR9", + "ref:EU:EVSE": "FRS10P8157918592048251549" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70221900000, + 48.23623100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP20016C", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P6415723007970261411", + "ref": "1119867", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79026300000, + 43.77655400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE683", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2023-07-24", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "description": "SCI_DIV_Onnaing", + "owner:ref:FR:SIREN": "839265947" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61033920000, + 50.37096430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PABBEVITAL", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/Abbevital", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64616", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82875000000, + 50.10390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-08-30", + "ref:EU:EVSE": "FRIZFPFAST14723;FRIZFPFAST14722;FRIZFPFAST14721;FRIZFPFAST14713;FRIZFPFAST14711;FRIZFPFAST14712", + "ref": "FR*SOD*S*FAST*147*1*_*_;FR*SOD*S*FAST*147*2*_*_", + "description": "IZIVIA FAST - MCDONALDS - DAMMARIE-LES-LYS", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65266127840, + 48.52287476378 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4582;FRS41E4583", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E4582;FRS41E4583", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - THEILLAY - Rue de la Pierre", + "network": "MODULO - THEILLAY - Rue de la Pierre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03553000000, + 47.31321000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "description": "Mouv'Oise/CQFN6TJ9B0", + "ref": "598149", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P8807660106869590035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04812500000, + 49.41260100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON6212;FRGLYPLYON6211", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*62*1*_*_", + "start_date": "2022-05-19", + "description": "VIL02 - TETE DOR - STALINGRAD", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85970500000, + 45.77915700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30302001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT VICTOR LA COSTE - Avenue 8 Mai", + "network": "Reveo", + "start_date": "2022-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64160900000, + 44.06185900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "21907", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/EFEJZZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PEFEJZZ", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39986000000, + 47.83340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WHUT1OA2QQ", + "ref:EU:EVSE": "FRFR1P508576613813562205", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "761478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26174000000, + 43.69997400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRN54E242951;FRN54E181516;FRN54E181517;FRN54E242950", + "network": "MODULO - NANCY - Pkg. Kennedy - T2", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "0 kW", + "description": "MODULO - NANCY - Pkg. Kennedy - T2", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRN54E242951;FRN54E181516;FRN54E181517;FRN54E242950", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2024-06-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17377100000, + 48.68625900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE LOUISE MICHEL - BOUFFEMONT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE19611;FRSIGPSIGE19612", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*196*1*_*_", + "start_date": "2021-09-22", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32247200000, + 49.04530700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Commune de Moutiers", + "network": "Commune de Moutiers", + "start_date": "2023-03-25", + "amenity": "charging_station", + "charging_station:output": "30 kW", + "capacity": "1", + "ref:EU:EVSE": "FRCG0E001757", + "opening_hours": "24/7", + "ref": "FRCG0E001757", + "socket:type2_combo:output": "30 kW", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53063400000, + 45.48377100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE10001534402;FRLMSE10001534401", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "819731589", + "description": "Herlindis", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33189400000, + 50.36639900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HINX - PLACE DE LA MAIRIE;MOBIVE | Hinx | Place de la Mairie", + "ref": "FR*SOD*S*MB40*63*1*_*_;1e9e77b2-08f3-5a5a-a0ca-27ce8fd81f3c", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "ref:EU:EVSE": "Non concerné;FRS40PMB406311;FRS40PMB406312;FRS40PMB406313;FRS40PMB406314", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-05-28", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92768500000, + 43.70288500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "LUCON - Gymnase des Commées", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE85LADA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17652500000, + 46.46345600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSLCHPSL", + "start_date": "2022-08-04", + "network": "Carrefour Energies", + "description": "LA CHAPELLE SAINT LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22494000000, + 45.61391600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4070EVCP02;LFR4070EVCP01;LFR4070EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4070EVCP02;LFR4070EVCP01;LFR4070EVCP03", + "description": "CHENNEVIERES SUR MARNE;CHENNEVIERES SUR MARNE " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55842200000, + 48.79445100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT DREZERY – Allée de la Liberté", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM34E34249001", + "operator": "Bouygues E&S", + "start_date": "2023-08-29", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97931590000, + 43.73287102821 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-17", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "KVYTWM;231556", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/KVYTWM;Montluçon, Europe", + "ref:EU:EVSE": "FREBNPKVYTWM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59689000000, + 46.35110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "892608", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4175087499146656932", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLL0WKWBD1CG1T" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21951600000, + 46.15591300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-15", + "network": "INDIGO FRANCE", + "description": "NEUILLY SUR SEINE - Inkermann", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E92051003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27501900000, + 48.88701600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCWDDIHOIZF", + "capacity": "2", + "description": "La Roche-De-Rame, Voie Communale 2;Réseau eborn/CWDDIHOIZF", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "CWDDIHOIZF;30395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58003100000, + 44.75017100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2023-06-07", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "Rungis - Best Western Paris Orly Airport", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPRUNBW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35105600000, + 48.75293100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare Saint-Quentin-En-Yvelines P+R - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-06-27", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E78423002", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04314000000, + 48.78828000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRCPIE6639505;FRCPIE6639455;FRCPIE6639495", + "amenity": "charging_station", + "start_date": "2022-10-19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDS BORNE 2", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6639505;FRCPIE6639455;FRCPIE6639495", + "description": "SDS BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192000000, + 44.92092700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP6062000144088235728;FRECHPLLRG3Y47TLZ2L2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "Easy Charge/LLRG3Y47TLZ2L2;Neufchâteau, Parking des Acacias", + "start_date": "2024-01-16", + "network": "Easycharge services;Easy Charge", + "ref": "LLRG3Y47TLZ2L2;1084731", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69261400000, + 48.35562100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*PPX17*19", + "start_date": "2021-12-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1719", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Brémontier 19", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30350120000, + 48.88495070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4919868109405471054", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/XZ5WPWTVHV", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466284", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42584600000, + 47.33325300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Boulevard Murat 15", + "ref:EU:EVSE": "FRV75P901608", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9016*08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25821300000, + 48.84665300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4671848312860937313", + "ref": "346364", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BCLQK08V8L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394000000, + 48.50730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Hyundai - Bourges", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPBPM180001", + "operator:email": "support@driveco.com", + "start_date": "2022-10-12", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37634400000, + 47.11605700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2916200", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Pleyben-Place Charles de Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.96946200000, + 48.22561300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2024-07-28;2024-07-26", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS11E11170005", + "network": "Reveo", + "description": "GRUISSAN - AYGAUDES - Parking des Ayguades" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12860800000, + 43.12993800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "OFFICE PUBLIC DE L'HABITAT DE LA SOMME", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lun-Ven 08:30-17:00", + "operator:email": "advenir@zeborne.com", + "network": " AMSOM HABITAT - MOUGINS;AMSOM HABITAT - MOUGINS", + "description": " AMSOM HABITAT - MOUGINS - AMIENS 7kW AC ;AMSOM HABITAT - MOUGINS - AMIENS 7kW AC ;AMSOM HABITAT - MOUGINS - AMIENS 22kW AC;AMSOM HABITAT - MOUGINS - AMIENS 22kW AC ;AMSOM HABITAT - MOUGINS - AMIENS 7kW AC", + "ref:EU:EVSE": "FRZPEE177610;FRZPEE177608;FRZPEE177607;FRZPEE177605;FRZPEE177612;FRZPEE177613", + "charging_station:output": "7.4 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29841880000, + 49.91909480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MASSAT - Place De L'Eglise", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS09E09182001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34709200000, + 42.88911500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PDJGFUS", + "description": "FDE 80/DJGFUS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "102251", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44307000000, + 49.98610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST32113;FRIZFPFAST32111;FRIZFPFAST32112", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*321*1*_*_", + "description": "IZIVIA FAST - MCDONALDS - CASTELNAUDARY", + "start_date": "2024-09-26", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95561300000, + 43.30007700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44064001;FRS44P44064A", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2024-04-18;2021-05-03", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Gorges - Roche;GORGES - Rue De La Roche", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30052400000, + 47.10116800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "description": "ETREPILLY - Stade", + "ref:EU:EVSE": "FRS77E77173001", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93439310939, + 49.03183264226 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGYMP5060947914001082182", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "description": "GreenYellow Shift Mobility/78", + "operator": "GreenYellow | FR*GYM", + "ref": "1030635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73531200000, + 48.57836900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - SAVIGNE SUR LATHAN - Rue de la gare", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "start_date": "2023-11-01", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220277;FRS37E220278", + "description": "MODULO - SAVIGNE SUR LATHAN - Rue de la gare", + "ref": "FRS37E220277;FRS37E220278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32290300000, + 47.44250600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCTLB - Magnières", + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d1bcaea9-cc10-53b9-a82c-8a00b4dba9fa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56620700000, + 48.44487400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-15;2023-11-14", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "network": "Vallée Carburants", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "owner:ref:FR:SIREN": "337844559", + "operator:email": "contact@c4energies.com", + "description": "Vallée Carburants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04892000000, + 49.64236000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "83a97732-ab8a-5e2f-95c4-c9287c282cd7", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "203__SEHV", + "description": "MOBIVE | VAL-D'ISSOIRE | Avenue de Bellac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91970100000, + 46.10877500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "VALENTON - Rue du Colonel Fabien", + "ref:EU:EVSE": "FRSIPE94074001", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47044030000, + 48.74411770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-24", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6530215", + "network": "SONEPAR CONNECT ST-ETIENNE3", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "description": "SONEPAR CONNECT ST-ETIENNE3", + "ref:EU:EVSE": "FRCPIE6530215" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39970500000, + 45.46208200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Leclerc/T1K60S6LOO", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "574565", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P8803656465112318177", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283700000, + 47.04146300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Targon | Rue du Poids Public-Place du 11 Novembre", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "854eef07-2c3d-5ddd-9f31-c0c2da1b5fae", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26518100000, + 44.73456600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSEOPAB53083A", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Pamproux - Pôle Santé", + "start_date": "2022-10-23", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05215140000, + 46.39653680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS443403", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-06", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Airbus Atlantic - Nantes - Parking A350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58919200000, + 47.17065300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLIERS LE BEL", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR2872EVCP01;LFR2872EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR2872EVCP01;LFR2872EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39041000000, + 49.00052000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "LA TRINITE - PARKING DE LA GARE", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*364*1*_*_", + "ref:EU:EVSE": "FRM06PNICE36411;FRM06PNICE36412", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31268780000, + 43.74319540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-28", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ16811;FRA16PWIIZ16812", + "ref": "FR*SOD*S*WIIZ*168*1*_*_", + "network": "WIIIZ", + "description": "BEUIL - PARKING MAIRIE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98972700000, + 44.09482500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P6097321996860579167", + "ref": "682187", + "description": "Freshmile France/MSBCETCWQU", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73223400000, + 47.99728900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bricorama - Limoges", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;187.5 kW;100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "start_date": "2024-01-26;2024-01-29", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PBOULIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27530370000, + 45.80590210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPL2KTMFZATR", + "description": "Réseau eborn/L2KTMFZATR;Saint-Mandrier-Sur-Mer, Boulevard Saint-Asile", + "opening_hours": "24/7", + "ref": "79237;L2KTMFZATR", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90734300000, + 43.07108300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Saint-Georges - Hôtel Cantal Cottages", + "start_date": "2023-12-27", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPSTGHC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13880200000, + 45.03056900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-09-29;2023-12-13", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NÎMES - Parking Porte Auguste", + "ref:EU:EVSE": "FRP07E301890251;FRP07E30189025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36440190000, + 43.84007470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPPT7FIXFEYY;FREBNPT7FIXFEYY", + "ref": "PT7FIXFEYY;102635", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Le Lavandou, Boulevard De Lattre Tassigny;Réseau eborn/PT7FIXFEYY", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36969600000, + 43.13788900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/NGOKGIG3FX", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP491860719792459931", + "capacity": "3", + "opening_hours": "24/7", + "ref": "756888", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04884200000, + 43.91800500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-01-10", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "description": "ENGIE Vianeo - A13 Beuzeville Sud", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP102102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32051200000, + 49.32100500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2218074598015105107", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "491991", + "charging_station:output": "22 kW", + "description": "Freshmile France/PQQFEQWKFX", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27743100000, + 43.52549100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0821", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX08*21", + "description": "Paris | Rue Tronchet 19", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32616700000, + 48.87236000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1111956", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLWQ7OS5S1KL5D", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2155927802100072960" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43306600000, + 45.44757600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:30, Mo 14:00-19:00, Tu 08:00-12:30, Tu 14:00-19:00, We 08:00-12:30, We 14:00-19:00, Th 08:00-12:30, Th 14:00-19:00, Fr 08:00-12:30, Fr 14:00-19:00, Sa 09:00-12:30, Sa 14:00-19:00", + "network": "DRIVECO", + "start_date": "2021-05-07", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPMAURINRENAULT911001", + "description": "Renault - Corbeil-Essonnes", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45217600000, + 48.61125900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "257212", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25PBESACEFS", + "opening_hours": "24/7", + "description": "SYDED/Besacefs", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96365000000, + 47.22730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E206002;FRS18E206001", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS18E206002;FRS18E206001", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - GRACAY - Pl. Gapion", + "network": "MODULO - GRACAY - Pl. Gapion" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84443388000, + 47.14286071000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MAREIL-MARLY - Cimetière", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78367001", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07318000000, + 48.88102000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-01", + "description": "QPARK - 83005 TOULON - LIBERTE", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*18*2*_*_;FR*SOD*S*QPRK*18*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRQPKPQPRK1821;FRQPKPQPRK1811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92987800000, + 43.12615400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-14", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CAGNAC LES MINES - Place Emile Grand", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8104800122;FRS81E8104800111;FRS81E8104800112;FRS81E8104800121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14036626157, + 43.98591543903 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE408000", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "description": "IONITY Blois Villerbon", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE408000", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38775700000, + 47.66588500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-23;2024-04-12", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Saint-Lumine-De-Coutais - Chatellier;SAINT-LUMINE-DE-COUTAIS - Place Notre-Dame Du Chatellier", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44174001;FRS44P44174A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72709200000, + 47.05582100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61NHB83D9ESKR7X5BM", + "network": "Ecocharge77", + "description": "SALINS - Rue De Courcelles;Salins", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77439A;FRS77E77439001", + "start_date": "2023-05-15;2016-08-11", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02339400000, + 48.42199300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080045", + "capacity": "5", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "ref:EU:EVSE": "FRHPCENF080045", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "start_date": "2022-12-21", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS MANOSQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85092782500, + 43.84343386000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-06-08", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS41E206464;FRS41E206465;FRS41E206487;FRS41E206488", + "capacity": "4", + "charging_station:output": "0 kW", + "network": "MODULO - LE CONTROIS EN SOLOGNE- Rue des entrepreneurs", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - LE CONTROIS EN SOLOGNE- Rue des entrepreneurs", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E206464;FRS41E206465;FRS41E206487;FRS41E206488" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44557100000, + 47.43298100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PWMNCFY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/WMNCFY", + "ref": "48286", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77606000000, + 47.52220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*182*1*_*_", + "capacity": "2", + "description": "SRM01 - ROUTE DU MONT THOU", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON18212;FRGLYPLYON18211", + "network": "GRAND LYON", + "start_date": "2022-07-19", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82261200000, + 45.83580600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "446939", + "ref:EU:EVSE": "FRMGPP92002D", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P92002*D", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132900000, + 48.75483800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 07:45-12:00, Mo 13:30-19:00, Tu 07:45-12:00, Tu 13:30-19:00, We 07:45-12:00, We 13:30-19:00, Th 07:45-12:00, Th 13:30-19:00, Fr 07:45-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT622001", + "description": "Peugeot - Boulogne Sur Mer", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60999000000, + 50.69789900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT BAGNOLET", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6595195", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6595195", + "start_date": "2022-10-12", + "description": "SONEPAR CONNECT BAGNOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43320500000, + 48.87325700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "description": "Leclerc/G7YCDUZGUS", + "ref": "694385", + "ref:EU:EVSE": "FRLE2P6443309994980805092", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68560400000, + 48.13912100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint Cibard | Rd N°21-Ld Pimpine-Parking Mairie", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "e7953d7c-6c9e-53ef-a49a-7fd748b877d9", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02335200000, + 44.93989200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "network": "VOLTI", + "description": "MONTMAGNY - Rue Jules Ferry", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS95E95427001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33795818288, + 48.96197439615 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Allego", + "ref:EU:EVSE": "FRALLPASF022;FRSITE00000018", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "capacity": "14", + "description": "CHAVAGNES ASF", + "network": "ALLEGO", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364000000, + 46.87354000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P2965400007691939115", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446741", + "description": "Leclerc/JTNVJKIPME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74550800000, + 50.48681500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "amenity": "charging_station", + "description": "Marseille, Campus Luminy", + "capacity": "4", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PRKX3ZSAXIM", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "11 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43830300000, + 43.23193200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7621157744074382936", + "ref": "402671", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/XHZG9LHHIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05021300000, + 48.30523400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ30612;FRA16PWIIZ30611", + "start_date": "2024-07-11", + "ref": "FR*SOD*S*WIIZ*306*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ST-CEZAIRE-SUR-SIAGNE PARKING AROMATECH", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81870436704, + 43.65251824064 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/VEVCZWWHW9;Freshmile France/OAZ5L2OFUL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "4;10", + "ref": "505647;505716", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6297339255144442027;FRFR1P3073391410801356701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02495700000, + 47.30279400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "description": "Speed Park - Hénin-Beaumont", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PPATHBE", + "charging_station:output": "100 kW;50 kW;22 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97324853373, + 50.40405038973 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "W1ACYG8P4K", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPW1ACYG8P4K", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Villard-De-Lans, Place Mûre Ravaud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55164676000, + 45.07208481000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/B5585C05-9346-4948-BC53-722BEFF2BB56", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "capacity": "10", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP9009534612593132548", + "ref": "1084098" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23224600000, + 48.41366000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*622*1*_*_", + "description": "INTERMARCHE - PERIGEUX", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR62211;FROTHPOTHR62212", + "start_date": "2023-04-18", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73209500000, + 45.18235200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPF5GG4XPJNB", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/FR*EBN*PF5GG4XPJNB", + "capacity": "3", + "opening_hours": "24/7", + "ref": "79156", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70596200000, + 45.26176100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "JUZPMH;291338", + "description": "Heyrieux, Avenue du Général de Gaulle;Réseau eborn/JUZPMH", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPJUZPMH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06389000000, + 45.63090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GARAGE RENAULT FIDALGO - SERRE CASTET", + "ref:EU:EVSE": "FROTHPOTHR31611", + "amenity": "charging_station", + "start_date": "2021-05-05", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "ref": "FR*SOD*S*OTHR*316*1*_*_", + "operator:email": "sav@izivia.com", + "network": "GARAGE RENAULT FIDALGO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53633760000, + 43.48665570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "978029", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3025745428204323291", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLOPXC1J9226Z5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16982400000, + 48.11978000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "7 kW;3 kW", + "start_date": "2021-07-09", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue de la Convention 171", + "ref:EU:EVSE": "FRV75PPX1516", + "ref": "FR*V75*PPX15*16", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29434420000, + 48.83831250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5427568134737732510", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLNAD2M8HU414L", + "ref": "971897", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71310900000, + 48.58027600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "description": "BMW - Tours - véhicules neufs", + "capacity": "7", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-18:00", + "start_date": "2023-01-19", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPAMPLITUDEBMW371701", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70328700000, + 47.33081800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900128", + "ref:EU:EVSE": "FRS27PSTECOLOMBECOMCENTRE", + "network": "SIEGE27", + "start_date": "2016-12-06", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93477900000, + 49.10335200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Le Hingle-Place de la poste", + "ref:EU:EVSE": "FRS22E22082001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08444500000, + 48.40583400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY23E78442001", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "NEAUPHLE-LE-CHATEAU - Rue Du Vieux Moulin", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90337500000, + 48.81281000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE207;FRROSE206", + "capacity": "4", + "start_date": "2022-05-16", + "description": "Camping_Ceyreste_1;Camping_Ceyreste_2", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62860490000, + 43.22093950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03", + "description": "ACHERES - Rue Jean Moulin", + "ref:EU:EVSE": "FRY01E78005001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07641100000, + 48.96890300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-07-23", + "network": "Baie de Somme", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Baie de Somme", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE407951;FRIOYE407904;FRIOYE407901;FRIOYE407902;FRIOYE407903;FRIOYE407905;FRIOYE407906;FRIOYE407952;FRIOYE407953", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE407951;FRIOYE407904;FRIOYE407901;FRIOYE407902;FRIOYE407903;FRIOYE407905;FRIOYE407906;FRIOYE407952;FRIOYE407953" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998000, + 50.16728841000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/P6GDR6CG8R", + "operator:email": "roaming@freshmile.com", + "ref": "474522", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P5568487937681730199" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34095000000, + 48.02721600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65340002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ORLEIX - Centre Leclerc", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10687000000, + 43.26782000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Hambach", + "amenity": "charging_station", + "start_date": "2023-02-01", + "network": "Hambach", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE003202;FRIENE003201", + "ref:EU:EVSE": "FRIENE003202;FRIENE003201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04985600000, + 49.05075500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34257001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT GENIES DE VARENSAL - Lieu dit : Plaisance", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00548937254, + 43.67133139363 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61008A", + "description": "AUBE", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-AUBE-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54525400000, + 48.73911400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1069689", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLVFCIK7X2G8FQ", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2299800127250022073" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86855300000, + 45.82716200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "start_date": "2017-03-06", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "description": "Gratens", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRS31PNPGJDV", + "ref": "NPGJDV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11114000000, + 43.32220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2020-11-19", + "capacity": "3", + "description": "Volkswagen - SLBA - Louvroil Maubeuge", + "ref:EU:EVSE": "FRSSDPSAIPVOLKSWAGEN597201", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95925400000, + 50.25842700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bossonet", + "ref": "FRCG0E000045", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000045", + "operator:email": "info@chargeguru.com", + "start_date": "2022-04-05", + "network": "Bossonet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43251900000, + 45.90532300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-10", + "network": "LUMI'IN", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "807940069", + "operator:email": "secretariat@lumi-in.fr", + "capacity": "4;6", + "description": "CHATEAU ST PIERRE DE SERJAC ;CHATEAU ST PIERRE DE SERJAC", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMESERJAC51;FRLUMESERJAC11", + "ref": "5a8bb060-a92a-11ed-afa1-0242ac120002;6cf8b432-a92a-11ed-afa1-0242ac120002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25039860000, + 43.47068380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "fae2119b-650f-5c5b-ade3-a0fdd946f2a1", + "operator": "202__TE64", + "description": "MOBIVE | Arzacq | Place Marcadieu", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41008300000, + 43.53447300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "BASIC FIT - Essey-les-Nancy", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE54EABB;FRSE1PSE54EABC", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-12-14;2023-11-02", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24375100000, + 48.70992600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS264491;FRBMPS264490", + "amenity": "charging_station", + "capacity": "1", + "ref": "264490;264491", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "description": "Bump - GL Custom - Chapelle des Fougeretz", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72312180000, + 48.17304410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3797EVCP05;LFR3797EVCP04", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "PLEYBEN - Kerflouz", + "capacity": "10", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3797EVCP05;LFR3797EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97500000000, + 48.22059800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-3E, 20 Rue Désirée Clary", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PGX8QBUSVXW", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37137900000, + 43.30904200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS90PKCTAPV", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "242368", + "charging_station:output": "22 kW", + "network": "TE90", + "description": "TE90/KCTAPV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96895000000, + 47.73280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-26;2020-02-05", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP78140VLZTARRON", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "description": "AVENUE CAPITAINE TARRON - VELIZY", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P78140*VLZ*TARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19019400000, + 48.78247200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLP2HJK021HWP5", + "operator:email": "roaming@freshmile.com", + "ref": "980625", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P6626610570230641587", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12029700000, + 49.03719200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-28", + "capacity": "3", + "opening_hours": "24/7", + "description": "Super U - Pont-Croix", + "ref:EU:EVSE": "FRPD1PSYUPCX", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.49019120000, + 48.04370620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNPBNAVO3VFDJ;FREBNP6097330347695286113", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Roanne, Square Mozart;Réseau eborn/BNAVO3VFDJ", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "BNAVO3VFDJ;741081", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06467000000, + 46.04125000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "Fastned France", + "start_date": "2022-12-19", + "ref": "FRFASE33099", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFASE33099", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "network": "Fastned Aire de Vémars Est", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW", + "description": "Fastned Aire de Vémars Est" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55296990000, + 49.07188420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SENT*192*2*_*_;FR*SOD*S*SENT*192*1*_*_", + "charging_station:output": "22 kW", + "description": "ES/ PARKING THUROT", + "ref:EU:EVSE": "FROTHPSENT19212;FROTHPSENT19211;FROTHPSENT19221;FROTHPSENT19222", + "operator:email": "sav@izivia.com", + "start_date": "2022-03-14;2022-03-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78899000000, + 48.81040900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1170762;LLTHE8SBI2CYI9", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPLLTHE8SBI2CYI9;FREBNP9195360949409664033", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Roanne, Esplanade des Mariniers;Réseau eborn/LLTHE8SBI2CYI9", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07967900000, + 46.03375600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPEFUC1KB7A5", + "ref": "EFUC1KB7A5", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Douvaine, Avenue du Bas Chablais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30317170000, + 46.30721820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*436*1*_*_", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "description": "BRICOMARCHE - VULAINES SUR SEINE", + "ref:EU:EVSE": "FROTHPOTHR43611;FROTHPOTHR43612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75268000000, + 48.43222500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4852937778947866617", + "network": "Freshmile France", + "ref": "529205", + "charging_station:output": "50 kW;22 kW", + "opening_hours": "Th,Tu,Sa,We,Mo,Fr 08:00-12:00,Tu,Th,Fr,We,Mo 14:00-19:00,Sa 14:00-18:00", + "description": "Freshmile France/ERYMURP2DU", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60896000000, + 43.42914700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Val-de-Reuil, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP33188", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18280300000, + 49.24883600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P453729484196561539", + "description": "Freshmile France/LLV2FNXBK9NSSE", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1115595", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27355800000, + 49.13457000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "description": "MONTELIMAR-ZA Avenue du Meyrol", + "capacity": "7", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "271__TDEC", + "ref": "e733d7cb-fe10-51a3-9d03-cf4fca4e8866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74470800000, + 44.57873500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "626156", + "charging_station:output": "120 kW;22 kW", + "description": "Freshmile France/LD6WOWIWGQ", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2528077010451488475", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35962500000, + 48.58795700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "457518", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/N46VHJDQAK", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P7551850604742235052", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37633900000, + 49.29459000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP00958B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P2209300384702446930", + "charging_station:output": "22 kW", + "ref": "576245", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49595800000, + 43.30703400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE427", + "operator": "RossiniEnergy", + "description": "FPB_Cahors" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44245400000, + 44.42987800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VERNOUILLET - Place Conte", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78643001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98316700000, + 48.97201500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "capacity": "14", + "operator:email": "cpo@citeos.com", + "operator": "49__VILLE DE NANCY", + "opening_hours": "24/7", + "ref": "2b55b9e0-0026-569e-8cd3-4fa472a21175", + "description": "VILLE DE NANCY - Parking Stanislas -1 - Nancy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18467700000, + 48.69208400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-HIPPOLYTE - Rue Jean Jaurès (Proche)", + "ref:EU:EVSE": "FRS66E66176001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96767200000, + 42.78448100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-18;2023-07-11;2023-07-07;2024-04-08", + "capacity": "1;2", + "ref:EU:EVSE": "FRIKAPIKEA13181;FRIKAPIKEA13151;FRIKAPIKEA13131;FRIKAPIKEA131212;FRIKAPIKEA131211;FRIKAPIKEA13121;FRIKAPIKEA131201;FRIKAPIKEA131191;FRIKAPIKEA131181;FRIKAPIKEA131171;FRIKAPIKEA131121;FRIKAPIKEA131101;FRIKAPIKEA12991;FRIKAPIKEA12981;FRIKAPIKEA12971;FRIKAPIKEA12911;FRIKAPIKEA129101;FRIKAPIKEA129111;FRIKAPIKEA129112;FRIKAPIKEA12921;FRIKAPIKEA12931;FRIKAPIKEA12941;FRIKAPIKEA12951;FRIKAPIKEA12961;FRIKAPIKEA13111;FRIKAPIKEA131111;FRIKAPIKEA131131;FRIKAPIKEA131141;FRIKAPIKEA131151;FRIKAPIKEA131161;FRIKAPIKEA13141;FRIKAPIKEA13161;FRIKAPIKEA13171;FRIKAPIKEA13191", + "amenity": "charging_station", + "description": "IKEA REIMS - PARKING COLLABORATEURS;IKEA REIMS - PARKING CLIENTS", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW", + "ref": "FR*SOD*S*IKEA*131*8*_*_;FR*SOD*S*IKEA*131*7*_*_;FR*SOD*S*IKEA*131*6*_*_;FR*SOD*S*IKEA*131*5*_*_;FR*SOD*S*IKEA*131*4*_*_;FR*SOD*S*IKEA*131*3*_*_;FR*SOD*S*IKEA*131*21*_*_;FR*SOD*S*IKEA*131*17*_*_;FR*SOD*S*IKEA*131*14*_*_;FR*SOD*S*IKEA*131*12*_*_;FR*SOD*S*IKEA*131*11*_*_;FR*SOD*S*IKEA*131*1*_*_;FR*SOD*S*IKEA*129*9*_*_;FR*SOD*S*IKEA*129*8*_*_;FR*SOD*S*IKEA*129*4*_*_;FR*SOD*S*IKEA*129*3*_*_;FR*SOD*S*IKEA*129*11*_*_;FR*SOD*S*IKEA*129*10*_*_;FR*SOD*S*IKEA*129*1*_*_;FR*SOD*S*IKEA*129*2*_*_;FR*SOD*S*IKEA*129*5*_*_;FR*SOD*S*IKEA*129*6*_*_;FR*SOD*S*IKEA*129*7*_*_;FR*SOD*S*IKEA*131*10*_*_;FR*SOD*S*IKEA*131*13*_*_;FR*SOD*S*IKEA*131*15*_*_;FR*SOD*S*IKEA*131*16*_*_;FR*SOD*S*IKEA*131*18*_*_;FR*SOD*S*IKEA*131*19*_*_;FR*SOD*S*IKEA*131*20*_*_;FR*SOD*S*IKEA*131*2*_*_;FR*SOD*S*IKEA*131*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96416300000, + 49.25793900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "PLECHATEL - 4 rue du Père Jolivet ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35221001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74915200000, + 47.89497400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63032B", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "description": "SIEG 63/FR*S63*P63032*B;SIEG63 - ePremium - Beaumont - Hessel", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "start_date": "2022-09-20", + "opening_hours": "24/7", + "ref": "518237", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08638500000, + 45.75493400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626066", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Tu,Fr,Mo,We,Th 14:00-18:00,Fr,Tu,Mo,Th,We 08:00-11:00,Sa 14:00-17:00,Sa 09:00-11:00", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "description": "Freshmile France/FMNRHLYJDM", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3976029988445032380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49694900000, + 43.57252500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Auzeville-Tolosane, Viognier", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-03-27", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PTXSCTU", + "ref": "TXSCTU", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49132000000, + 43.53180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DRANCY - Rue Nouvelle", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE93029004", + "start_date": "2021-11-08", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43570689621, + 48.92423849249 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Espace 3000 - Groupe Cassard - Audi Vesoul - 70000", + "charging_station:output": "22 kW;100 kW;300 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRCG0E000884;FRCG0E000849;FRCG0E000850;FRCG0E000897", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-06-09", + "ref": "FRCG0E000884;FRCG0E000849;FRCG0E000850;FRCG0E000897", + "description": "Espace 3000 - Groupe Cassard - Audi Vesoul - 70000", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15561900000, + 47.63906300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-22", + "ref": "FR*SOD*S*NICE*216*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING GIOFFREDO", + "ref:EU:EVSE": "FRM06PNICE21611;FRM06PNICE21612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27471365855, + 43.70013144255 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Boe | Dojo", + "ref": "3fb204b3-8d16-5902-a30f-ae981b27842b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65555600000, + 44.17083400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 16 RUE DU 18 JUIN PARKING - ERMONT", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*354*1*_*_", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE35411;FRSIGPSIGE35412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25776000000, + 48.98950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76165001", + "network": "Métropole Rouen Normandie", + "description": "CAUDEBEC LES ELBEUF - Emile Zola", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01834800000, + 49.28233100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2724EVCP02;LFR2724EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MONCEL LES LUNEVILLE", + "ref:EU:EVSE": "LFR2724EVCP02;LFR2724EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53232000000, + 48.57221000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1b82c2aa-f2b4-5334-b7be-44b4907f6f51", + "operator": "194__SDEC23", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Lussat | Étang des landes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32618200000, + 46.18034800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/QJGGHJ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PQJGGHJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "38986" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41975000000, + 44.14490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP84000AVGMINJ", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "MIN BATIMENT J - AVIGNON", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2024-06-04", + "ref": "FR*55C*P84000*AVG*MINJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83625500000, + 43.93466000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANDIVISIAU Foch", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "22 kW;180 kW;360 kW", + "ref:EU:EVSE": "LFR3881EVCP04;LFR3881EVCP02;LFR3881EVCP05;LFR3881EVCP01;LFR3881EVCP08;LFR3881EVCP09;LFR3881EVCP03;LFR3881EVCP06;LFR3881EVCP07", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "15", + "ref": "LFR3881EVCP04;LFR3881EVCP02;LFR3881EVCP05;LFR3881EVCP01;LFR3881EVCP08;LFR3881EVCP09;LFR3881EVCP03;LFR3881EVCP06;LFR3881EVCP07", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "360 kW;180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05602400000, + 48.51488200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMGAU", + "network": "Power Dot France", + "description": "Intermarché - Gauchy", + "start_date": "2024-01-20", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "capacity": "11", + "charging_station:output": "22 kW;50 kW;150 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27791120640, + 49.82467626859 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPACUAKZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "39146;ACUAKZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "description": "Réseau eborn/ACUAKZ;Saint-Jean-De-Bournay, Place Jean Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14015000000, + 45.49750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP64122I", + "start_date": "2023-12-07", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "e-Totem - BIARRITZ Parking de l'hippodrome", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122I" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55454600000, + 43.47027200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Contact - Lacanau", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2024-04-06;2024-04-05", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PCARLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19950094789, + 45.00007887957 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Pierrelatte", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT267001", + "start_date": "2023-12-13;2023-12-07", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69502100000, + 44.36209400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPFROKF", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2024-04-30", + "description": "Frouard - KFC", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14980300000, + 48.74703900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*551*1*_*_", + "description": "CAMPING ELEOVIC - PREFAILLES", + "ref:EU:EVSE": "FROTHPOTHR55112;FROTHPOTHR55111", + "network": "CAMPING ELEOVIC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-07", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23232200000, + 47.13254500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6742495;FRCPIE6742485", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-07-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR ALDIANCE 1", + "network": "SONEPAR ALDIANCE 1", + "ref": "FRCPIE6742495;FRCPIE6742485" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87411200000, + 45.59649000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "446528", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3441876825009063622", + "description": "Freshmile France/GBETNRGWTT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71734000000, + 48.59500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV16E01451001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "VIRIAT - Place De La Mairie", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21732300000, + 46.25327400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DYCYSE", + "ref": "782448", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3695227516622376315" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90783000000, + 49.47320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRTSLP2987", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Aire de Châteauvillain - Val Marnay", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95960400000, + 48.05734100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DCQLQDZEBO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8122125608714645257", + "operator": "Freshmile | FR*FR1", + "ref": "705908" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06633900000, + 45.09300500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HOTEL KYRIAD PARIS BEZONS", + "start_date": "2022-05-31", + "network": "HOTEL KYRIAD PARIS BEZONS", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-19:01", + "capacity": "1", + "operator:email": "acelec@acelec-france.com", + "ref:EU:EVSE": "FR073PKYRIADBEZONS", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "301192464", + "operator": "Acelec Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21231100000, + 48.93137300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/QETEMVQZCG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P4306516702494451432", + "ref": "457542" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00953700000, + 49.14109000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-21;2022-03-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MUR DE BARREZ - Parking De La Corette Place Du Foirail", + "ref:EU:EVSE": "FRS12E12164001", + "charging_station:output": "50 kW;43 kW;22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65980900000, + 44.84227000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4L2LQSZ62J", + "network": "WAAT", + "ref": "880137", + "ref:EU:EVSE": "FRWA4P5260602139281801782", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11859800000, + 49.48385400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2021-04-13;2024-04-10", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Saint-Lambert-la-Potherie - Aubriaie;SAINT-LAMBERT-LA-POTHERIE - Rue de L'Aubriaie", + "ref:EU:EVSE": "FRS49E49294001;FRS49P49294A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67832300000, + 47.48368400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2022-06-22", + "description": "CESTAYROLS - route de villeneuve", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106700122;FRS81E8106700121;FRS81E8106700112;FRS81E8106700111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98429355920, + 43.98103526923 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHDFE62108004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "charging_station:output": "22 kW", + "description": "BERCK-SUR-MER - Parking Rue des Vagues ", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59176624669, + 50.40900488583 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2021-06-02", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44217B;FRS44E44217002", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "VIGNEUX-DE-BRETAGNE - Le Bourg;OuestCharge - Diva Sp - Vigneux-De-Bretagne - Le Bourg", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73747300000, + 47.32544200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "description": "SIEG 63/FR*S63*P63430*C", + "amenity": "charging_station", + "network": "SIEG 63", + "ref": "518453", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63430C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54640200000, + 45.85528000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH03E59301001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "HERGNIES - Place de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52308472647, + 50.47405937827 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Ploudaniel-Aire de Covoiturage Cd 29", + "charging_station:output": "184 kW;50 kW;43 kW", + "ref:EU:EVSE": "FRS29E29179001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "50 kW;184 kW", + "start_date": "2023-07-26;2023-03-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28941300000, + 48.48246000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "L'HAY LES ROSES - Rue Jules Gravereaux ", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94038008", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33160954000, + 48.77920587000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2024-04-08", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP90126517", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Valence Nord", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88545000000, + 44.95949600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "5f9a8110-c79e-5ebe-8419-3814982a8774", + "description": "MOBIVE | Sarlat la Caneda | Place du Marche Aux Noix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21282000000, + 44.89253200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 2 AVENUE DE LA COUR DE FRANCE - MORANGIS", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*459*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-26", + "ref:EU:EVSE": "FRSIGPSIGE45912;FRSIGPSIGE45911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33426440000, + 48.69528950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9009202;FRALLEGO9009201;FRALLEGO9005621;FRALLEGO9005602;FRALLEGO9005601;FRALLEGO9005622;FRALLEGO9009191;FRALLEGO9009192", + "capacity": "8", + "amenity": "charging_station", + "description": "Allego Carrefour Trans en Provence", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Trans en Provence", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9009202;FRALLEGO9009201;FRALLEGO9005621;FRALLEGO9005602;FRALLEGO9005601;FRALLEGO9005622;FRALLEGO9009191;FRALLEGO9009192", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47936800000, + 43.51029000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2021EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2021EVCP01", + "description": "ST THIBERY Crouzette", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42104800000, + 43.38679600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Orthez | Place Brossers", + "capacity": "2", + "amenity": "charging_station", + "ref": "bae3de51-50f7-5757-a1d7-4510a6298321", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77197000000, + 43.48888000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85012001", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LA BARRE-DE-MONTS - Chemin Du Querruy", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11937000000, + 46.88493000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "description": "SEVRON", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-10-11", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSITE00000168", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58231005000, + 48.71188423000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3893EVCP01;LFR3893EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "NANTUA - Geneve;NANTUA - Genève", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3893EVCP01;LFR3893EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61498900000, + 46.14467500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PKFCCAL", + "network": "Power Dot France", + "description": "KFC Calais", + "amenity": "charging_station", + "start_date": "2024-09-05", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83653040000, + 50.94098800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346895;QH3MXFSZJA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "description": "Réseau eborn/QH3MXFSZJA;Gresy-Sur-Aix, Grésy sur Aix, Rue du commerce", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP3353180320221014872;FREBNPQH3MXFSZJA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92296200000, + 45.71834100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "psasupport@evbox.com", + "start_date": "2021-10-21", + "network": "EVBOX", + "owner:ref:FR:SIREN": "409179926", + "amenity": "charging_station", + "capacity": "1", + "description": "Segab", + "ref:EU:EVSE": "FREVBEZPB3PYRQMSIKMOE4CEJCOZNG7I", + "opening_hours": "24/7", + "operator": "EVBOX", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81462164233, + 46.08831777039 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Ekosport - Le Pontet", + "opening_hours": "24/7", + "charging_station:output": "10 kW;120 kW", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PEKSLPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85842616805, + 43.97484563780 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDWDE44172001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINTE LUCE SUR LOIRE - Rue Gutemberg", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48351907730, + 47.26628585236 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42218BK", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Janin Carnot", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218BK", + "start_date": "2022-03-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38675070000, + 45.44760170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "network": "LEVAPARC", + "owner:ref:FR:SIREN": "353347222", + "capacity": "2", + "description": "LEVAPARC - PARKING GARE", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPLVPR292;FROTHPLVPR282;FROTHPLVPR261;FROTHPLVPR252;FROTHPLVPR251;FROTHPLVPR232;FROTHPLVPR231;FROTHPLVPR222;FROTHPLVPR221;FROTHPLVPR2202;FROTHPLVPR2201;FROTHPLVPR2192;FROTHPLVPR2191;FROTHPLVPR2171;FROTHPLVPR2162;FROTHPLVPR2152;FROTHPLVPR2151;FROTHPLVPR2142;FROTHPLVPR2131;FROTHPLVPR2122;FROTHPLVPR2121;FROTHPLVPR212;FROTHPLVPR2112;FROTHPLVPR2111;FROTHPLVPR211;FROTHPLVPR2101;FROTHPLVPR2102;FROTHPLVPR2132;FROTHPLVPR2141;FROTHPLVPR2161;FROTHPLVPR2172;FROTHPLVPR2181;FROTHPLVPR2182;FROTHPLVPR241;FROTHPLVPR242;FROTHPLVPR262;FROTHPLVPR271;FROTHPLVPR272;FROTHPLVPR281;FROTHPLVPR291", + "start_date": "2017-06-14", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LVPR*2*9*_*_;FR*SOD*S*LVPR*2*6*_*_;FR*SOD*S*LVPR*2*19*_*_;FR*SOD*S*LVPR*2*16*_*_;FR*SOD*S*LVPR*2*15*_*_;FR*SOD*S*LVPR*2*14*_*_;FR*SOD*S*LVPR*2*13*_*_;FR*SOD*S*LVPR*2*12*_*_;FR*SOD*S*LVPR*2*11*_*_;FR*SOD*S*LVPR*2*1*_*_;FR*SOD*S*LVPR*2*10*_*_;FR*SOD*S*LVPR*2*17*_*_;FR*SOD*S*LVPR*2*18*_*_;FR*SOD*S*LVPR*2*20*_*_;FR*SOD*S*LVPR*2*2*_*_;FR*SOD*S*LVPR*2*3*_*_;FR*SOD*S*LVPR*2*4*_*_;FR*SOD*S*LVPR*2*5*_*_;FR*SOD*S*LVPR*2*7*_*_;FR*SOD*S*LVPR*2*8*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29857100000, + 48.89652300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "UEXPRESS 85 BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6901045", + "network": "UEXPRESS 85 BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6901045", + "start_date": "2024-04-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82710700000, + 46.89137800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "22 kW;75 kW;63 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/RJRTM1TGUD", + "ref:EU:EVSE": "FRFR1P5912813810118779851", + "opening_hours": "24/7", + "socket:type2_combo:output": "75 kW;63 kW", + "ref": "472257", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76631800000, + 48.61241500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL QUIMPER NORD DOUARNENEZ", + "start_date": "2024-03-01", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07410700000, + 48.01151200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "466149", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/PC8GDNJARZ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5300888514803364769" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85101400000, + 47.50811300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "charging_station:output": "50 kW;22.08 kW;200 kW", + "socket:type2_combo:output": "50 kW;200 kW", + "start_date": "2022-10-17", + "amenity": "charging_station", + "capacity": "4", + "description": "BMW - Montelimar", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPGRIMBMW262001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73369300000, + 44.53409600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "980631", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9015475135752884386", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLP6PFGUG2EJ3C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54908800000, + 48.92847400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - CHEZAL-BENOIT - Pl. de la poste", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHEZAL-BENOIT - Pl. de la poste", + "ref": "FRS18E112663", + "ref:EU:EVSE": "FRS18E112663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11646000000, + 46.82673000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P4629275318709893134", + "capacity": "2", + "amenity": "charging_station", + "ref": "461667", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/BXFKK77EJT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36984400000, + 49.17612500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1128027", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P3534961688093572529", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA6L8FOM2HPI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92162300000, + 45.90262100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST JAMES - Place du Vieux Presbytere", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50240001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2016-12-14", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32019900000, + 48.52381100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "PAMPELONNE - Croix de Mille Aire de Services RN88", + "network": "Le Plein Tarnais", + "charging_station:output": "48 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8120100122;FRS81E8120100121;FRS81E8120100112;FRS81E8120100111", + "start_date": "2023-11-15", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23451590500, + 44.08008956900 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF059964", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-12-09", + "description": "RELAIS GIRONDE MERIGNAC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF059964", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680549;531680550" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66710000000, + 44.85030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E0490169;FRS49E49328002;FRS49P49328B", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saumur - Gaulle;SAUMUR - Avenue Charles de Gaulle", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-27;2024-04-29;2024-04-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07409200000, + 47.26371300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-12-07", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MARETZ - Rue du Maréchal Galliéni", + "ref:EU:EVSE": "FRS59E59382001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41880940000, + 50.04615970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH06E62041009", + "description": "ARRAS - Boulevard Crespel", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76497100000, + 50.28858600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30007004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ALES - Gare Routière", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-12-06", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08358500000, + 44.12746200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PEGQHWV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25044", + "description": "Mobilité électrique 56/EGQHWV", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28118000000, + 47.91910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "VOUILLE BEAUREGARD QC50-1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346052732;FRLMSE12346052731", + "start_date": "2021-09-24", + "ref": "B146", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157000000, + 46.64537000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93049C", + "start_date": "2022-04-08", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745000, + 48.85208486000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79329P0063A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Thouars - Place Lavault", + "start_date": "2017-11-20", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21499500000, + 46.97875400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "1179723", + "ref:EU:EVSE": "FRATLP2244955441652073140", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLFR00239", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457000000, + 44.48681000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - Thaon Les Vosges - La Rotonde", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89397441", + "start_date": "2023-10-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42673100000, + 48.24635700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "cc1f988c-a1bc-5f65-a1f7-56584f248c9b", + "operator": "203__SEHV", + "description": "MOBIVE | Razès | Place André dufraisse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34537000000, + 46.03372200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-10-05", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS88E150327;FRS88E150325", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - MARTIGNY - Av. de la gare", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E150327;FRS88E150325", + "description": "MODULO - MARTIGNY - Av. de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82574000000, + 48.10823000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9000802;FRALLEGO9000801;FRALLEGO9000771;FRALLEGO9000731;FRALLEGO9000732;FRALLEGO9000772", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Orleans CPX", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-06-24", + "network": "Allego Carrefour Orleans CPX", + "ref": "FRALLEGO9000802;FRALLEGO9000801;FRALLEGO9000771;FRALLEGO9000731;FRALLEGO9000732;FRALLEGO9000772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90550500000, + 47.90874900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3557EVCP02;LFR3557EVCP01;LFR3557EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3557EVCP02;LFR3557EVCP01;LFR3557EVCP03", + "description": "FONTENAY LE VICOMTE Orme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40875100000, + 48.54817700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PUNIBW0BDIK", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-12E, 3 Avenue des Trois Lucs", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46418600000, + 43.31278100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Roche-La-Moliere, Parking Mairie", + "ref:EU:EVSE": "FREBNPP1JCQZGYPW", + "ref": "P1JCQZGYPW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32177720000, + 45.43314860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "505608", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/JYBDYJJ4TC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6120577712484393000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73772000000, + 46.28927600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Ibis Budget - Senlis", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRPD1PIBSSLS", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60629300000, + 49.20830400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25272;K59SHDHWTV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPK59SHDHWTV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/K59SHDHWTV;Privas, Place du Champs de Mars" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59880400000, + 44.73644300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - Ekho Hôtel", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP38382A", + "ref": "FRETIP38382A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66934939155, + 45.22782396030 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*238*1*_*_", + "opening_hours": "24/7", + "description": "PAYS RHENAN - GARE DE GAMBSHEIM", + "ref:EU:EVSE": "FROTHPOTHR23812;FROTHPOTHR23811", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87977100000, + 48.69496700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6599275;FRCPIE6599455;FRCPIE6599475;FRCPIE6599515;FRCPIE6599535;FRCPIE6599565", + "amenity": "charging_station", + "capacity": "12", + "description": "SONELOG CESTAS 10", + "network": "SONELOG CESTAS 10", + "charging_station:output": "22 kW", + "ref": "FRCPIE6599275;FRCPIE6599455;FRCPIE6599475;FRCPIE6599515;FRCPIE6599535;FRCPIE6599565", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75366800000, + 44.71466600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "585527", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8032725270931637390", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "description": "Freshmile France/OIMFWKQU3A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12484000000, + 49.27041000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "706628", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA1P7097773191832142387", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLGJV62IQI", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69329500000, + 45.14709800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892386", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "We,Th,Tu,Fr,Mo 08:00-19:00", + "description": "Freshmile France/LLJIKOK0H2BMCU", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1175543053454314676", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27441300000, + 47.83901300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-12;2023-06-21", + "opening_hours": "Mo-Fr 10:00-19:00,Sa 10:00-18:00", + "ref": "1000145148;1000145146;1000148642", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 2x22 Salomon 3;ALFEN 2x22 Salomon 1;ALFEN 2x22 Salomon 2", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSWSE1000148642;FRSWSE1000145146;FRSWSE1000145148", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11987000000, + 45.93771600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2104206070307687477", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "471216", + "description": "Freshmile France/YHJJOKKRAK", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70290000000, + 44.94490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLOC842001", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "description": "Loc+ - Carpentras", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03517000000, + 44.03654200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - GALLARDON - Rue Guy Pouillé", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - GALLARDON - Rue Guy Pouillé", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E178731", + "ref:EU:EVSE": "FRS28E178731" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68916400000, + 48.52262500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Pilotage Maritime Marck", + "ref": "5897d2b1-12d6-4d32-aaaf-5bcaa294fd40", + "operator:email": "thierry.marchisio@pilotagedunkerque.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "network": "Borne Pilotage", + "opening_hours": "24/7", + "operator": "Pilotage Maritime", + "charging_station:output": "22 kW", + "start_date": "2023-04-30", + "owner:ref:FR:SIREN": "783595028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96475000000, + 50.98631700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39656", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P7411661463408971339", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/C16DS3V7VF", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72722400000, + 48.25744700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "576029;575933", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P8148230323059745616;FRZP1P7350117082998691605", + "description": "Zephyre/LE006DA8;Zephyre/LE004BD2", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71170900000, + 44.76951300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "network": "RossiniEnergy", + "description": "SMMA", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE555", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04250760000, + 47.38903450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PFADXTQ", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "34015", + "description": "SDE82/FADXTQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44965000000, + 44.00790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST11813;FRIZFPFAST11812;FRIZFPFAST11811", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*118*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - ROYE LE MOULIN", + "start_date": "2024-04-11", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77389608679, + 49.70807055526 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4043;FRS41E4044", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - MER - Av. Maréchal Maunoury", + "ref:EU:EVSE": "FRS41E4043;FRS41E4044", + "description": "MODULO - MER - Av. Maréchal Maunoury", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50833500000, + 47.70352400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60P7077484317770197600", + "description": "Mouv'Oise/LLLDL404R2MYK8", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref": "933417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77393400000, + 49.68574500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-09-29", + "ref:EU:EVSE": "FRGLYPLYON3821;FRGLYPLYON3811;FRGLYPLYON3812;FRGLYPLYON3822", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*38*1*_*_;FR*SOD*S*LYON*38*2*_*_", + "operator:email": "sav@izivia.com", + "description": "BRN03 - PARKING DE LESPACE ALBERT CAMUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91931200000, + 45.72670100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT AMBROIX - Place De L'Esplanade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30227001", + "charging_station:output": "22 kW", + "start_date": "2023-06-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19519200000, + 44.26013000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Treffléan - Rue du Dévehat", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-11-24", + "ref:EU:EVSE": "FRS56PASJVEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.61416700000, + 47.68236900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Logis Hôtel des Acacias Lille Tourcoing", + "start_date": "2023-02-22", + "ref:EU:EVSE": "FRLUMEACACIAS11", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "ed2da8f2-b28e-11ed-afa1-0242ac120002", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14854410000, + 50.75823040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilygreen CPO/c3e6f6fc-7c2c-4e28-9dcc-818ef91f4b98", + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMW1P859721856565114094", + "ref": "804270", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40790900000, + 43.55114500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*170*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE17011;FRSIGPSIGE17012", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - RUE DE SUCY - BOISSY-SAINT-LEGER", + "start_date": "2021-07-20", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51367300000, + 48.74881200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LS Group - Volkswagen Chambourcy - 1", + "charging_station:output": "22 kW;225 kW", + "socket:type2_combo:output": "225 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "LS Group - Volkswagen Chambourcy - 1", + "opening_hours": "24/7", + "ref": "FRCG0E001470;FRCG0E001469", + "operator:email": "info@chargeguru.com", + "start_date": "2024-01-15", + "ref:EU:EVSE": "FRCG0E001470;FRCG0E001469" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04623200000, + 48.90727600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-10;2023-06-19", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89879179", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A89 La Corrèze" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93781900000, + 45.36000500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "description": "SOORTS HOSSEGOR - AVENUE DES CHARPENTIERS;MOBIVE | Soorts Hossegor | Avenue des Charpentiers", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "ref:EU:EVSE": "FRS40PMB408714;Non concerné;FRS40PMB408711;FRS40PMB408712;FRS40PMB408713", + "ref": "FR*SOD*S*MB40*87*1*_*_;59442671-bb7b-5943-8494-a73c931ed535", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39072600000, + 43.67066600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE77MXHA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "MEAUX - Cavalier de la Salle", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90348600000, + 48.94716200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "QUETIGNY", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSQTGNY", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10421800000, + 47.30962400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "amenity": "charging_station", + "ref": "LFR3444EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3444EVCP01", + "description": "SELESTAT Colmar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43913300000, + 48.25193600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM34E34129001", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "LATTES - Plan Du Néga Cat", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93336500000, + 43.59043600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPOFMPGHIET;FREBNPPOFMPGHIET", + "ref": "75311;POFMPGHIET", + "description": "Réseau eborn/POFMPGHIET;Fayence, Avenue Rene Cassin", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69685700000, + 43.62427300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4021212698282870470", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLSWZ6D2H1TSKM", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1026723", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51333400000, + -20.89282800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "VERSAILLES - Saint Cloud", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-06-24", + "ref:EU:EVSE": "FRP07E78646003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13179800000, + 48.80487100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "896736", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/PPK9XAM3NX", + "ref:EU:EVSE": "FREBNP5924239286427749256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05632300000, + 45.08211500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPHOUKF", + "charging_station:output": "150 kW", + "description": "Houssen - KFC", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-12-20", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36396700000, + 48.12775900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-17", + "operator": "Bouygues E&S", + "description": "Parking le Havre Funiculaire - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E76351005", + "network": "EFFIA France", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11161000000, + 49.49753000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "ref": "FRCPIE6631485", + "amenity": "charging_station", + "capacity": "1", + "description": "SUPER U ARNAGE DIRECTION", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SUPER U ARNAGE DIRECTION", + "ref:EU:EVSE": "FRCPIE6631485" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18199400000, + 47.93895400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHP9205365004288389025;FRECHPLLW6GYJL2X6BII", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Besançon, Minjoz;Easy Charge/LLW6GYJL2X6BII", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "ref": "1121670;LLW6GYJL2X6BII", + "start_date": "2024-05-14", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96519400000, + 47.22731300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1624", + "ref": "FR*V75*PPX16*24", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Avenue Raymond Poincaré 51", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28587950000, + 48.86697120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8644456046375091946", + "ref": "477735", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/YVRXBIGBK0", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42853900000, + 43.10566700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "ref:EU:EVSE": "FRTCBP01110", + "ref": "FRTCBP01110", + "description": "SPORT ET NATURE - SCI DUBOIS SIMONNEAU BEAUNE", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "owner:ref:FR:SIREN": "849691829", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "SCI DUBOIS SIMONNEAU BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84253528466, + 47.03594831090 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4448393916111859552", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "description": "Freshmile France/BCW6UDGKOZ", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "ref": "735114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90172900000, + 47.91727600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPHESSHYUNDAI678001", + "capacity": "2", + "description": "Hyundai - HESS - Strasbourg", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-03-10", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72767900000, + 48.61849500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS29E2911300", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Lanmeur-Parking Pen Huella Guer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.71723600000, + 48.64573300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11081001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CAUNES-MINERVOIS - Parking De L'Europe", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52555555556, + 43.32638890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "114e4973-2fda-42bc-b683-e82e7570a9c3", + "description": "Le Relais Marine - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC87905", + "owner:ref:FR:SIREN": "504466350", + "network": "Logis Hôtel le Relais Marine", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48218780000, + 47.40547211000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BOGNY SUR MEUSE - Air camping car", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS08E57723;FRS08E57722", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BOGNY SUR MEUSE - Air camping car", + "ref:EU:EVSE": "FRS08E57723;FRS08E57722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74473200000, + 49.85867600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/JZXHUL", + "ref": "64634", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PJZXHUL", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47597000000, + 49.77680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "start_date": "2024-07-30", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MC DONALDS - THUIR", + "ref:EU:EVSE": "FRIZFPFAST26222;FRIZFPFAST26213;FRIZFPFAST26212;FRIZFPFAST26211;FRIZFPFAST26221;FRIZFPFAST26223", + "ref": "FR*SOD*S*FAST*262*2*_*_;FR*SOD*S*FAST*262*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76278710000, + 42.64033600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44036D;FRS44E44036004", + "capacity": "1;2", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Chateaubriant - Liberation;CHATEAUBRIANT - Rue De La Libération", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2024-04-18;2024-05-17;2021-04-12", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37929500000, + 47.71290500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61K4NJ8AEGN29B15RV", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77116A;FRS77E77116001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-14;2016-02-23", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Choisy-en-Brie;CHOISY-EN-BRIE - Grande Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21987900000, + 48.75882300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CREDIT AGRICOLE TARNOS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000056017", + "operator": "GREENSPOT", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CREDIT AGRICOLE TARNOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46076100000, + 43.53566800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E219953;FRS37E219954", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - CONTINVOIR - Rue du Lavoir", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CONTINVOIR - Rue du Lavoir", + "ref": "FRS37E219953;FRS37E219954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22119910000, + 47.38725302000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "description": "CCTLB - Vaxainville", + "capacity": "2", + "amenity": "charging_station", + "ref": "2ba6116e-97e5-5347-9b29-32c9e65ce7b8", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75365900000, + 48.51555800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LPA Parking Tony Garnier - N1 - Zone 1", + "description": "LPA Parking Tony Garnier - N1 - Zone 1", + "start_date": "2024-08-01;2024-08-02", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P69387BA", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P69387BA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82345935000, + 45.72904880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | RION DES LANDES - Parking Arènes", + "operator": "199__SYDEC40", + "ref": "86c5fb21-c11a-5de4-b7a6-d500668bd8cc", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92383200000, + 43.93478700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 5 BOULEVARD SALVADOR ALLENDE - VILLIERS-LE-BEL", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*290*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE29012;FRSIGPSIGE29011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39291800000, + 49.00439800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "network": "GVA ÉCULLY ABB", + "ref": "FRCPIE6505435", + "operator:email": "info@chargepoint.com", + "description": "GVA ÉCULLY ABB", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRCPIE6505435" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79304100000, + 45.77439900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "446681", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/CUECDGTUQW", + "ref:EU:EVSE": "FRLE2P6996794475452264201", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50573400000, + 42.44829600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Piegut Pluviers | Rue des Allies Place du Marche", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "590cebc5-5df4-588f-a53e-b4f93f294431", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68793000000, + 45.62432100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau AlterBase - Secondigny - Mairie ", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB28028A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41897700000, + 46.61053600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS443402", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Airbus Atlantic - Nantes - Parking ZD30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-01-09", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59201600000, + 47.16544000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR1179EVCP01;LFR1179EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "VILLENEUVE D'ASCQ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR1179EVCP01;LFR1179EVCP02", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14954500000, + 50.61979000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P4188087341779896288", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/DEAGBEULR4", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref": "414726" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82654000000, + 47.91947400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ1412;FRA16PWIIZ1411", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*14*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2018-04-19", + "description": "GRASSE PARKING RUE DE LANCIEN PALAIS DE JUSTICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92075200000, + 43.65775300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7778322264335103107", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref": "782544", + "description": "Freshmile France/KYUVJINTQC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40914800000, + 46.31816100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBBBARS", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Restaurant 3 Brasseurs - Arras" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73830135397, + 50.29951148046 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/broutvernet;Brout-Vernet, Maison de santé", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref": "broutvernet;231628", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPBROUTVERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27081000000, + 46.18840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-02-23", + "owner:ref:FR:SIREN": "891624884", + "description": "Marsannay-la-Côte - E.Leclerc", + "ref:EU:EVSE": "FRELCPMLCLE", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01972800000, + 47.27890600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E06155004;FRP07E061550041", + "description": "VALLAURIS - Hôtel De Ville", + "start_date": "2024-01-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05472850000, + 43.57915700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA BOUCHERIE RESTAURANT", + "network": "LA BOUCHERIE RESTAURANT", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6693455", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6693455", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81438600000, + 46.44717400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "756891", + "description": "Easy Charge/NIWYNHGWZQ", + "ref:EU:EVSE": "FRECHP1993017735532882263", + "capacity": "2", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62740500000, + 50.50043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-05-31;2022-12-21", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW;62.5 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - A43 Le Guiers", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP103105" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63387900000, + 45.57815200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/WTDGKNH6AA", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "150 kW;50 kW;22 kW", + "amenity": "charging_station", + "ref": "515132", + "network": "Freshmile France", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "ref:EU:EVSE": "FRFR1P1274119145189261766", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72069700000, + 50.63525200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX0710", + "amenity": "charging_station", + "start_date": "2021-08-17", + "opening_hours": "24/7", + "ref": "FR*V75*PPX07*10", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue Duquesne 26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31063730000, + 48.85112760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1130451", + "ref:EU:EVSE": "FRFR1P7379509319367493792", + "description": "Freshmile France/LLXOP415LGIRJA", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86003800000, + 45.72073600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-16", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSWEETCO591151", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "SWEETCO - Lys Lez Lannoy", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22770300000, + 50.67197200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "252401476", + "ref": "FR*SOD*S*MB24*163*1*_*_", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PERIGUEUX - PLACE FRANCHEVILLE", + "ref:EU:EVSE": "FRS24PMB2416312;FRS24PMB2416311", + "start_date": "2023-10-10", + "operator:email": "sav@izivia.com", + "network": "MOBIVE - SDE 24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71758420700, + 45.18335384464 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHATEAUMEILLANT - Pl. de l'église", + "ref": "FRS18E182394", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - CHATEAUMEILLANT - Pl. de l'église", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS18E182394", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20101000000, + 46.56209000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Borne IRVE Garage ST PIERRE", + "operator": "Garage Saint-Pierre ", + "network": "Réseau borne de recharge Garage ST PIERRE", + "amenity": "charging_station", + "operator:email": "adamprice@hotmail.fr", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 8:00-18:30,Sa 09:00-13:00", + "owner:ref:FR:SIREN": "330641374", + "charging_station:output": "22 kW", + "start_date": "2024-04-02", + "ref": "e469da25-7b52-4ecb-ae44-07454c022452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.53996683208, + 48.39086319596 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "PICOTY/729f3c12-fa22-40a1-b375-fdec42a8796c", + "ref": "1007352", + "ref:EU:EVSE": "FRPY1P8593903081269875873", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "network": "PICOTY", + "operator": "Mobilygreen | FR*PY1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85211400000, + 44.36167800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8101700122;FRS81E8101700121;FRS81E8101700112;FRS81E8101700111", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "ARIFAT - Route du Bois d'Arifat", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2023-06-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32972360000, + 43.77282140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2019-03-29", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE402000", + "description": "IONITY Boismandé Ouest", + "ref:EU:EVSE": "FRIONE402000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41691800000, + 46.31305900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-28;2024-04-24", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "SAINT-BREVIN-LES-PINS - Avenue Raymond Poincaré;OuestCharge - Pulse 50 - Saint-Brevin-Les-Pins - Poincare", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44154A;FRS44E44154001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16387200000, + 47.26478300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61J4GEKKMK6ZRRDMHV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77359A;FRS77E77359001", + "start_date": "2023-05-29;2016-02-01", + "description": "Perthes-en-Gatinais;PERTHES - Rue De Milly", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55245800000, + 48.47422400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-OMER - Boulevard Vauban", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62765011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25171000000, + 50.74639500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - Super Chargeur Neuille-Pont-Pierre - Autoroute A28", + "amenity": "charging_station", + "description": "MODULO - Super Chargeur Neuille-Pont-Pierre - Autoroute A28", + "capacity": "4", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E4500;FRS37E4499;FRS37E4498;FRS37E4497", + "start_date": "2020-09-26", + "ref": "FRS37E4500;FRS37E4499;FRS37E4498;FRS37E4497" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565000000, + 47.55577800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "892758", + "charging_station:output": "22 kW", + "description": "Mobilité électrique 56/LLJWPS9AGI3H8L", + "ref:EU:EVSE": "FRS56P6734219302436134940", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76142600000, + 47.66336300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "description": "IRY02 - GARE DYVOURS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*159*1*_*_", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "start_date": "2022-03-02", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON15912;FRGLYPLYON15911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82971600000, + 45.68845700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5956001", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "WARNETON - Route de Quesnoy", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59560*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95244506800, + 50.74866164000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 09:00-22:00, Tu 09:00-22:00, We 09:00-22:00, Th 09:00-22:00, Fr 09:00-23:00, Sa 09:00-23:00, Su 09:00-22:00", + "network": "DRIVECO", + "start_date": "2019-09-09", + "capacity": "2", + "amenity": "charging_station", + "description": "McDonald's - Luc la Primaube", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMCDONALDSLUC124501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55864000000, + 44.31409800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT LE PUY", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6588555", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6588555", + "start_date": "2022-10-12", + "network": "SONEPAR CONNECT LE PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90622800000, + 45.04860600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P2743492850238349533", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "capacity": "30", + "charging_station:output": "22 kW", + "description": "Leclerc/NSMOIFZBLP", + "ref": "579023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138800000, + 49.06052400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "9a57c7db-fab4-53d2-ac73-ae69c29f2b43", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "description": "MOBIVE | Toulenne | Avenue du 8 Mai 1945 | Parking Commerces" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26084900000, + 44.55788000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95052002", + "start_date": "2024-06-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BEAUMONT SUR OISE - Boulevard Léon Blum " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28630600000, + 49.14533000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "start_date": "2024-04-10;2022-02-10;2021-12-17", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14;10", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "network": "ALLEGO;GreenToWheel;CASINO DIJON CHENOVE", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "ref:EU:EVSE": "FRALLPCAS012;FRSITE00000124", + "description": "CASINO DIJON CHENOVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02208900000, + 47.28426300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR4184EVCP01;LFR4184EVCP02;LFR4184EVCP04;LFR4184EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4184EVCP01;LFR4184EVCP02;LFR4184EVCP04;LFR4184EVCP03", + "description": "SEVRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14426600000, + 45.85273400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PG28UATDMKK", + "description": "Marignane, Rue De Verdun", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21803000000, + 43.41693100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P4941592880718366148", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402650", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/VPR7IBU3VQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35302300000, + 48.21262200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ27411;FRA16PWIIZ27412", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "PEGOMAS - PARKING SQUARE ZIDANE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-04-22", + "ref": "FR*SOD*S*WIIZ*274*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93124970000, + 43.59839200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "412121", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/UEHU81Y2UG", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P820268068186902598" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92678600000, + 47.41023600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Maison Rouge - Strasbourg", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-08-10", + "ref:EU:EVSE": "FRPD1PMRGSTB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74596210000, + 48.58211010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCTFQBS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/CTFQBS;Thueyts, Place du Champ de Mars", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "30353;CTFQBS", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22180000000, + 44.67580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1114101", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP2108486388457737055", + "opening_hours": "24/7", + "description": "EVzen/B0E53CC4-B1B7-4400-84A8-703ABE5C03C0", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85058500000, + 43.92590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-01", + "description": "BRICOMARCHE - MONTBRISON", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR59712;FROTHPOTHR59711", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*597*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08205400000, + 45.59575100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFFCIXLY2AX", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/FFCIXLY2AX", + "ref": "30422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84759300000, + 44.71980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPHHXSOERCYL", + "ref": "75197", + "description": "Réseau eborn/HHXSOERCYL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56210600000, + 46.06910800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Brie Comte Robert", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121038", + "start_date": "2023-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59926100000, + 48.70342800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/BEM0MZEHDY", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "801771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7842861986243046133", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "40 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48251100000, + 43.31089100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue des Plantes 56", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1403", + "amenity": "charging_station", + "ref": "FR*V75*PPX14*03", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32169630000, + 48.82836980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3694790581691687447", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/YWEZEFEDKH", + "amenity": "charging_station", + "ref": "477738", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76280400000, + 48.53967900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW;24 kW", + "amenity": "charging_station", + "description": "La Carabasse (Camping Siblu) - Vias", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSIBLU344501", + "start_date": "2022-04-08;2022-05-05", + "opening_hours": "Mo 09:30-12:30, Mo 14:30-18:00, Tu 09:30-12:30, Tu 14:30-18:00, We 09:30-12:30, We 14:30-18:00, Th 09:30-12:30, Th 14:30-18:00, Fr 09:30-12:30, Fr 14:30-18:00, Sa 09:30-12:30, Sa 14:30-18:00, Su 09:30-12:30, Su 14:30-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41851500000, + 43.29809700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900012", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PHEUDEBOUVILLEECOPARC", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22145200000, + 49.19764700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Caulnes-Rue de l'Hopital", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22032001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15368200000, + 48.28793000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOUGIVAL - Rue Cardon", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY05E78092001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13246500000, + 48.85421000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRROSE155", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "Bray", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2021-09-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86029000000, + 50.39624900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP1231449713049820077", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "1081413", + "opening_hours": "24/7", + "description": "WAAT/FRWATLP2HNWDKK", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34761900000, + 49.28823600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE101306;FRIOYE101305;FRIOYE101303;FRIOYE101302;FRIOYE101351;FRIOYE101352;FRIOYE101353", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Fontaine Colette", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "description": "Fontaine Colette", + "ref": "FRIOYE101306;FRIOYE101305;FRIOYE101303;FRIOYE101302;FRIOYE101351;FRIOYE101352;FRIOYE101353", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611000, + 47.16615010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E49176;FRS51E49177", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - REIMS - Pkg. st Remi Pl. Lenoncourt", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E49176;FRS51E49177", + "network": "MODULO - REIMS - Pkg. st Remi Pl. Lenoncourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04128700000, + 49.24216800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "JUILLAN - Aeroport", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "18 kW;7 kW", + "start_date": "2022-03-01", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65235002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00314000000, + 43.18702800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "description": "La Roche-sur-Yon", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE000601;FRIENE000602", + "capacity": "4", + "operator:email": "support@iecharge.io", + "ref": "FRIENE000601;FRIENE000602", + "network": "La Roche-sur-Yon", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41319900000, + 46.63381000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NISSAN LES ENSERUNE - Rue Du Parc (Parking De La Poste)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34183001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12661111111, + 43.28908330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "24750", + "description": "Mobilité électrique 56/CETTJG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PCETTJG", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68495000000, + 47.98790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "capacity": "4", + "ref": "510581", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1264918483052189652", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile/RDCHWGQR7O" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64258800000, + 48.84430300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30341002", + "start_date": "2022-01-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VAUVERT - Avenue Fanfonne Guillerme", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26998800000, + 43.68772500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-16", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "description": "Fiat - Dunkerque", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPEURAUTOFIAT596401", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35667300000, + 51.01672700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-26", + "ref": "FRC2P007501", + "capacity": "2", + "amenity": "charging_station", + "network": "KYRIAD CARCASSONNE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P007501", + "description": "KYRIAD CARCASSONNE", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "887506160", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31225340000, + 43.20891368985 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE PROVENCE ", + "ref:EU:EVSE": "FRLUMELEPROVENCE11", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "5a7d2c7a-a628-11ed-afa1-0242ac120002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80252400000, + 43.81472400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "0b289f34-8375-5fcc-bcd5-b0318f9045c7", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "description": "MOBIVE | Lestiac Sur Garonne | Parking Ecole", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37351700000, + 44.69253900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE39BACA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-13", + "socket:type2_combo:output": "24 kW", + "description": "Place du Souvenir - BEAUFORT ORBAGNA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43597000000, + 46.57548600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP5691578642489570617", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "description": "BornEco/6637a56d4276ef2fa23e6f99", + "ref": "1086306", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86169400000, + 46.63634600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P6965860631420849882", + "ref": "446747", + "description": "Leclerc/KDPI0FF7U9", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145500000, + 48.32981700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PMSH0CPXJBC", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Saint-Victoret, Boulevard Paul Liotard", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24102000000, + 43.41553300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P806407258479319496", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/YQK2HF4E49", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402692" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26801600000, + 48.22524600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "description": "R3 - Norauto Noyon", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "start_date": "2023-04-19", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363739" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97894500000, + 49.57080600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8423455853738787162", + "ref": "505575", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/HKY1VPJFZJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74285200000, + 46.32865900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUGRM", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-08-23", + "operator": "Power Dot France", + "description": "Super U - Gérardmer", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88490964736, + 48.07627330235 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/WM3WAO2RMZ", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPWM3WAO2RMZ", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "37171", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88850800000, + 44.92496800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/3E4A963F-1A62-4F35-B841-8316ED3C1E68", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1057119", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP7517135825809313481", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90976700000, + 47.49699500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "ref": "FR*SOD*S*OTHR*805*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR80512;FROTHPOTHR80511", + "capacity": "2", + "amenity": "charging_station", + "description": "BRUMATH - SALLE POLYVALENTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71322240000, + 48.73701270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "454431;Z1ILFORWGY", + "ref:EU:EVSE": "FREBNP1809385463683437730;FREBNPZ1ILFORWGY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/Z1ILFORWGY;Châtel, Route de Meurba", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84000900000, + 46.26774100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/NLEDVFEXF7", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref": "743007", + "ref:EU:EVSE": "FREBNP7774728040783032006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269700000, + 45.62297200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR40381;FROTHPOTHR40371;FROTHPOTHR40361;FROTHPOTHR40351;FROTHPOTHR40321;FROTHPOTHR40311;FROTHPOTHR40331;FROTHPOTHR40341", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*403*6*_*_;FR*SOD*S*OTHR*403*5*_*_;FR*SOD*S*OTHR*403*4*_*_;FR*SOD*S*OTHR*403*2*_*_;FR*SOD*S*OTHR*403*1*_*_;FR*SOD*S*OTHR*403*3*_*_;FR*SOD*S*OTHR*403*7*_*_;FR*SOD*S*OTHR*403*8*_*_", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "description": "SUPER U - TRELAZE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46740200000, + 47.45305700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "412079", + "description": "Freshmile France/OFXXVP8UFL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4960187308954530600", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13650400000, + 49.15887000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Morlaix, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP29581", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85318000000, + 48.57439000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "559757", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MXFE5YVCKF", + "ref:EU:EVSE": "FRFR1P5451219630352424541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40722900000, + 45.42001600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBE010913;FRTCBE010912;FRTCBE010910;FRTCBE010911", + "socket:type2_combo:output": "25 kW", + "network": "PAUL KROELY ETOILE 67", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 13:30-19:00", + "description": "ETOILE 67", + "owner:ref:FR:SIREN": "328580147", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRTCBP02588", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46264500000, + 48.27926300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VAWKTLVRWO", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7692530502281919886", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "735204", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49791300000, + 45.17219100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "462024", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6483085251790551120", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/XZV5YXNZQK", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30822300000, + 49.18866000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00;Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "ref": "60498;60506", + "start_date": "2021-05-07", + "network": "MAZDA CHAMBERY - MONT BLANC AUTOMOBILES", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZMAE22AC60498;FRZMAE22AC60506", + "capacity": "1", + "owner:ref:FR:SIREN": "432152593", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Mazda - Chambery - 22kW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87645330000, + 45.62133370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-11", + "description": "Peugeot_Baralle", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06775000000, + 50.21827300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78440007", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LES MUREAUX - Rue du 19 mars 1962 ", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90852396900, + 48.98100027884 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20725360000, + 49.97187750000 + ], + [ + 1.20715500000, + 49.97191350000 + ], + [ + 1.20710270000, + 49.97194620000 + ], + [ + 1.20705710000, + 49.97200060000 + ], + [ + 1.20700720000, + 49.97212200000 + ], + [ + 1.20700210000, + 49.97213430000 + ], + [ + 1.20701690000, + 49.97215150000 + ], + [ + 1.20696560000, + 49.97224060000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;350 kW;43 kW;200 kW", + "network": "Clermont l'Hérault", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE461171;FRIOYE461153;FRIOYE461151;FRIOYE461107;FRIOYE461106;FRIOYE461105;FRIOYE461108;FRIOYE461152;FRIOYE461172;FRIOYE461173;FRIOYE461174", + "description": "Clermont l'Hérault", + "opening_hours": "24/7", + "capacity": "11", + "ref": "FRIOYE461171;FRIOYE461153;FRIOYE461151;FRIOYE461107;FRIOYE461106;FRIOYE461105;FRIOYE461108;FRIOYE461152;FRIOYE461172;FRIOYE461173;FRIOYE461174", + "start_date": "2024-08-08", + "socket:type2_combo:output": "200 kW;50 kW;350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43807000000, + 43.62258900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "ref:EU:EVSE": "FRS53P53147B;FRS53E53147003", + "amenity": "charging_station", + "description": "MAYENNE - Rue Volney;OuestCharge - Diva Sp - Mayenne - Volney", + "start_date": "2024-05-28;2021-04-22", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61127700000, + 48.29735800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTESQUIEU DES ALBERES - Impasse De La Marinade", + "start_date": "2022-02-28", + "ref:EU:EVSE": "FRS66E66115001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87987700000, + 42.51927300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20780100000, + 49.97112900000 + ], + [ + 1.20759730000, + 49.97154840000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Vironvay", + "amenity": "charging_station", + "capacity": "4", + "network": "Vironvay", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2024-01-09", + "ref": "FRIENE012801;FRIENE012802", + "ref:EU:EVSE": "FRIENE012801;FRIENE012802" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21136800000, + 49.19938400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "description": "IFFENDIC - 11 rue de la poste ", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35133001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03482600000, + 48.12963800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61475A", + "ref": "SE61-SOLIG-001", + "description": "SOLIGNY LA TRAPPE - L'Abbaye" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57347700000, + 48.63574300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P745290335971977083", + "ref": "892326", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJ2Q7U9ZFREUV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76920100000, + 46.10700100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "start_date": "2017-12-15", + "description": "Encausse les Thermes", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRS31PGSXHEQ", + "ref": "GSXHEQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74656000000, + 43.04840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE92050016", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NANTERRE - Boulevard Du Couchant", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19228675767, + 48.89187823738 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-02", + "description": "Hotel Le Sherpa - 73440", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000556", + "network": "Hotel Le Sherpa - 73440", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000556" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58536000000, + 45.29826400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*189*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE18911;FRM06PNICE18912", + "description": "DURANUS - PARKING VILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25762166621, + 43.89512675986 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "8e4d8599-f746-54a0-9a12-21830f1368a0", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Meilhan Sur Garonne | Place de L'Hotel de Ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03222200000, + 44.51916500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*328*1*_*_", + "start_date": "2023-02-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 3 AVENUE DES FRERES LUMIERE PARKING DES ARTS - CORMEILLES-EN-PARISIS", + "ref:EU:EVSE": "FRSIGPSIGE32811;FRSIGPSIGE32812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19761800000, + 48.95816500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "170165;170164", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "ref:EU:EVSE": "FRBMPS170165;FRBMPS170164", + "operator": "Bump", + "capacity": "2;3", + "description": "Bump - Burger King - Boulogne Saint-Martin", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64263100000, + 50.72932140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "NANGIS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3016EVCP01", + "ref": "LFR3016EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01525700000, + 48.56115000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Sauveterre la lemance | Rue de la Gare", + "ref": "5a467164-2770-55d4-8fac-5f7d4459bfbd" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01301000000, + 44.59040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "ref": "0dfa2483-0290-5d28-ae26-bab0cd2bf3d4", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Yerres - Rue de la Grange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49323700000, + 48.71503100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP83240CAVMEDIATHEQUE", + "start_date": "2024-02-01", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P83240*CAV*MEDIATHEQUE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PARKING MEDIATHEQUE CAVALAIRE SUR MER", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53489300000, + 43.17094600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3570EVCP03;LFR3570EVCP01;LFR3570EVCP02", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "BOURG ACHARD Fernand", + "ref:EU:EVSE": "LFR3570EVCP03;LFR3570EVCP01;LFR3570EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81678300000, + 49.36060100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Bonnat", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMBON", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91303850000, + 46.32006370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLRACTBEV1XDE9;Faverges, Parking de l'Esplanade de la Soierie", + "start_date": "2024-01-12", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "1017093;LLRACTBEV1XDE9", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPLLRACTBEV1XDE9;FREBNP4459795668908240161" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29756600000, + 45.74776700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - Tabl'Hôtel Cambrai", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP59244A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-06-03", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP59244A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19466695624, + 50.17452155192 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-01", + "network": "EFFIA France", + "description": "Parking Grenoble Vaucanson - PARK GRENOBLE ALPES METROPOLE", + "ref:EU:EVSE": "FRP01E38185009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72860470000, + 45.18827050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-12-08", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT271601", + "description": "Carrefour Market - Breteuil", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91629300000, + 48.84454600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2022-11-28", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Paris 13 - Indigo Parking Porte d'Italie", + "ref:EU:EVSE": "FRELCPPARIIT", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35992000000, + 48.81678400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-28", + "description": "INTERMARCHE - BESANCON", + "ref": "FR*SOD*S*OTHR*523*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR52312;FROTHPOTHR52311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99952600000, + 47.24754700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-16", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6724145", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CCF AUBAGNE", + "network": "SONEPAR CCF AUBAGNE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6724145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60124000000, + 43.28748800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4004828089264477528", + "description": "Freshmile France/PX08E5STVI", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "471147", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93917500000, + 49.24927400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-05-27;2021-04-08;2021-03-29", + "description": "CARRE SENART", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*UNIB*18*4*_*_;FR*SOD*S*UNIB*18*3*_*_;FR*SOD*S*UNIB*18*2*_*_;FR*SOD*S*UNIB*18*1*_*_;FR*SOD*S*UNIB*18*6*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRURWPUNIB1862;FRURWPUNIB1861;FRURWPUNIB1812;FRURWPUNIB1811;FRURWPUNIB1821;FRURWPUNIB1822;FRURWPUNIB1831;FRURWPUNIB1832;FRURWPUNIB1841;FRURWPUNIB1842", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54703200000, + 48.61665500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "160 kW;60 kW", + "description": "Freshmile France/SCEEY592G4", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW;60 kW;160 kW", + "opening_hours": "24/7", + "ref": "510590", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3774775443423885255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06909500000, + 43.62300300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "network": "08912228", + "start_date": "2024-07-20", + "amenity": "charging_station", + "description": "08912228", + "capacity": "4", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRTNME08912228;FRTNME08912220", + "ref:EU:EVSE": "FRTNME08912228;FRTNME08912220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35295300000, + 48.85545900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1150053", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7487613368359094517", + "description": "Freshmile France/LLSSRIPBR2CHLB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41133000000, + 46.81107500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/LLV2GWOM02H65M", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P2769680134507786024", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1084818" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99790300000, + 48.88854800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12101001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-01", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "FLAGNAC - Parking Intermarché Office Du Tourisme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24336000000, + 44.60455900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "805302", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA3P8997229812682382990", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "description": "WAAT/FRWATLP3I0JRDJ", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25290200000, + 43.34941700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49E49246003;FRS49P49246C", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Pierre de Coubertin;LES PONTS-DE-CE - Rue Pierre de Coubertin", + "start_date": "2024-04-04;2024-04-05;2021-04-23", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52521100000, + 47.44228200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LOUE - Place Hector Vincent", + "ref:EU:EVSE": "FRS72E72168002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14949560000, + 47.99573030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH16E59053001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2022-09-06", + "description": "BAVAY - Rue des récollets" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79422700000, + 50.29768100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-19;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "SAINT-VIAUD - Rue Du Parc Des Sports;OuestCharge - Diva Sp - Saint-Viaud - Parc Des Sports", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44192001;FRS44P44192A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01457900000, + 47.25799400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63307A", + "description": "SIEG63 - ePremium - Romagnat - Jean Moulin;SIEG 63/FR*S63*P63307*A", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "518405", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10011900000, + 45.73114600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59392005", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "MAUBEUGE - Avenue de France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97243000000, + 50.27254100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34032001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-31", + "description": "BEZIERS - Rue de l'école des Andélys", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22443610000, + 43.34751670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028017", + "description": "CRETEIL - Impasses des cascades" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46177748474, + 48.76991570508 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "IZIVIA", + "description": "SAINT-LAURENT-DU-VAR - PROVENCE", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*351*1*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE35111;FRM06PNICE35112", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18796326845, + 43.66902112109 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "8178d34e-d8bb-5fee-9e42-bc8d5de8d9ed", + "description": "MOBIVE | Trelissac | Parking Avenue Georges Pompidou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73867000000, + 45.19692200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*433*1*_*_", + "start_date": "2024-01-10", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE43311;FRSIGPSIGE43312", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 55 RUE DU FOSSE BLANC - GENNEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30735500000, + 48.92550900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Allego Carrefour La Ville Du Bois", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "ref:EU:EVSE": "FRALLEGO9007192;FRALLEGO9004431;FRALLEGO9004182;FRALLEGO9004181;FRALLEGO9004432;FRALLEGO9007191;FRALLEGO9007281;FRALLEGO9007282", + "network": "Allego Carrefour La Ville Du Bois", + "ref": "FRALLEGO9007192;FRALLEGO9004431;FRALLEGO9004182;FRALLEGO9004181;FRALLEGO9004432;FRALLEGO9007191;FRALLEGO9007281;FRALLEGO9007282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27616000000, + 48.66977600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "Vaulx-en-Velin Cachin", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3945EVCP02;LFR3945EVCP01", + "ref": "LFR3945EVCP02;LFR3945EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93582600000, + 45.78361400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "b90ddb78-e4fe-5fc1-bf7c-398049019428", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Gan | Rue Louis Bidau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38780300000, + 43.23160900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "6ce55dd8-0663-5f00-8063-b846de8189e0", + "capacity": "2", + "amenity": "charging_station", + "description": "BEDOIN - Route de Carpentras", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17870800000, + 44.12041800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA05E78307001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "HERMERAY - Parking de l'Ecole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68798840000, + 48.65013400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3340EVCP01;LFR3340EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "BREM SUR MER", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3340EVCP01;LFR3340EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82794000000, + 46.60232500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-06;2023-06-09", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché Super - Villecresnes", + "ref:EU:EVSE": "FRPD1PITMVCN", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52782842712, + 48.70925858237 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWIBXDEW7O1", + "ref": "WIBXDEW7O1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Roanne, Parking Pierre Semard gare SNCF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06313440000, + 46.03767020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "917546251", + "ref:EU:EVSE": "FREVAP15138A", + "charging_station:output": "50 kW;22 kW;150 kW", + "network": "e-Vadea;E-VADEA", + "description": "e-Vadea - Murat - Parking de la gare;E-VADEA/FR*EVA*P15138*A", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "972488", + "capacity": "4;8", + "opening_hours": "24/7", + "start_date": "2024-01-08", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86910300000, + 45.10946100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCRFCCN", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2024-02-08", + "description": "Carrefour Contact - Carcans", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03726700804, + 45.07886021790 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Laval", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT530001", + "start_date": "2024-06-05", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76103500000, + 48.06881500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2019-08-28", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRESEPS42218AI", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Bellevue - Hôpital", + "ref:EU:EVSE": "FRESEPS42218AI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39425000000, + 45.41588900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-10-11", + "ref:EU:EVSE": "FROTHPIZIG37822;FROTHPIZIG37821;FROTHPIZIG37812;FROTHPIZIG37811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "HYDRO EST COLMAR - EXTERIEUR", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IZIG*378*2*_*_;FR*SOD*S*IZIG*378*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35763600000, + 48.08757900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6866875", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6866875", + "charging_station:output": "22 kW", + "description": "KARTING CAP MAL CAP MALO", + "operator:email": "info@chargepoint.com", + "start_date": "2024-02-05", + "network": "KARTING CAP MAL CAP MALO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72233900000, + 48.19933300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5943986433073316531", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CSGDHJKZWQ", + "ref": "782445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70826100000, + 46.84822800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP122034", + "start_date": "2024-05-24", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL DIJON NORD ZÉNITH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06905600000, + 47.35080300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/JCSDDF6LY8", + "ref:EU:EVSE": "FRFR1P6184377326028969755", + "operator:email": "roaming@freshmile.com", + "ref": "782562", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49695500000, + 47.09098300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Neuville-en-Ferrain, France", + "ref:EU:EVSE": "FRTSLP29384", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14498600000, + 50.74185000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DS2ZKBGWPN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7378948284235275040", + "operator": "Freshmile | FR*FR1", + "ref": "559694" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.55364200000, + 42.15685700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P300832803840929740", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/Y6V0AW4AW2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457599" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65750800000, + 49.07996000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "462036", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/ZABVAJT7UQ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6460010991286736596", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70794200000, + 49.28079600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WAAT", + "amenity": "charging_station", + "ref": "1128099", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA6LWUGMCAUK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P9129763895558636102", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88327400000, + 46.67190900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COUTANCES - la Paletière", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "start_date": "2017-08-22", + "charging_station:output": "22 kW", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50147001", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46668470000, + 49.05423400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81163002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "MAZAMET - Avenue Du Président Kennedy - Parking De La Richarde" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39483700000, + 43.49725100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059602", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-09-15;2023-08-24;2022-12-20", + "capacity": "4", + "ref:EU:EVSE": "FRHPCPNF059602", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS GIGNAC LA NERTHE", + "owner:ref:FR:SIREN": "531680930;531680927;531680929;531680928;531680926" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25850000000, + 43.39080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MENDE - Rue Saint Ilpide", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48095001", + "start_date": "2022-03-01", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49788100000, + 44.51562800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56P2655761088919242557", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/ZWSHUHFMQW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "541940", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.45440000000, + 47.70320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62604002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NEUFCHÂTEL-HARDELOT - Rue des Allées", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64390000000, + 50.61999900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Telgruc-sur-Mer - Rue des Pins", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2928000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35456900000, + 48.23108700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/QJSQBM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PQJSQBM", + "ref": "24754", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83330000000, + 47.50190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052222;FRLMSE12346052211;FRLMSE12346052212;FRLMSE12346052221", + "charging_station:output": "18 kW", + "description": "SAINT-GEORGES LES BX-1-1;SAINT-GEORGES LES BX-1-2", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-05-18", + "opening_hours": "24/7", + "ref": "B121", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40516000000, + 46.66909000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "475026", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P93031*D", + "ref:EU:EVSE": "FRMGPP93031D", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986900000, + 48.94929200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE92004001", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - Rue Denfert Rochereau", + "start_date": "2021-03-03;2021-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26946300000, + 48.90710600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP7387136917259827558", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00333", + "operator": "Atlante | FR*ATL", + "ref": "1004976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02641500000, + 43.22134200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "NVH", + "start_date": "2022-07-01", + "description": "CSE - BdF - Vars", + "capacity": "2", + "amenity": "charging_station", + "network": "CSE-Central BDF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE1000100983;FRLMSE1000100982", + "ref": "0", + "operator:email": "supervision@nvh-france.fr", + "owner:ref:FR:SIREN": "775657463" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68000000000, + 44.57000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "820235711", + "operator": "HABT", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRMAPP000000006880", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:59", + "start_date": "2022-10-31", + "description": "Hotel Ibis Style Toulouse Blagnac Aéroport", + "operator:email": "charley.bohy@mycharmy.net" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37460000000, + 43.63800300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85222001", + "description": "SAINT-GILLES-CROIX-DE-VIE - Place De La Cour Rouge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92586000000, + 46.69778100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLPEVCARSSTMAR", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "SAINT MARTIN AU LAERT", + "network": "Carrefour Energies", + "start_date": "2022-09-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24305200000, + 50.75446200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2024-08-21", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIZMPMAMP6211;FRIZMPMAMP6212", + "description": "MP0921 - AVENUE DES TEMPLIERS", + "ref": "FR*SOD*S*MAMP*62*1*_*_", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58331950000, + 43.31636800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMATSAM", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Match - Saint-Amand", + "start_date": "2024-04-02", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42965901982, + 50.45380651469 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "96035", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/NA1INBYCYV", + "ref:EU:EVSE": "FREBNPNA1INBYCYV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08037800000, + 46.05971900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8696257388791479191", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "opening_hours": "Tu,Th,We,Mo 13:30-17:30,Fr,We,Tu,Mo,Th 09:00-12:30", + "ref": "471036", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DEGS0UBYCI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41628900000, + 46.33014700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "ref:EU:EVSE": "FRPD1PIBSDOA", + "owner:ref:FR:SIREN": "891118473", + "description": "Ibis Styles - Douai Gare Gayant Expo", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09002260044, + 50.37924412791 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP4370131319999192365", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "492093", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/XBYM6MYKUM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12164000000, + 45.90815600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34057D", + "capacity": "7", + "description": "e-Totem - 3M - Castelnau Le Lez - Parking TAM Georges Pompidou", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34057D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92103375959, + 43.64968223314 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "HUHTAMAKI", + "start_date": "2021-09-24;2021-07-21", + "ref:EU:EVSE": "FROTHPOTHR21171;FROTHPOTHR21161;FROTHPOTHR21141;FROTHPOTHR211131;FROTHPOTHR211121;FROTHPOTHR211111;FROTHPOTHR21111;FROTHPOTHR211101;FROTHPOTHR21121;FROTHPOTHR21131;FROTHPOTHR21151;FROTHPOTHR21181;FROTHPOTHR21191", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref": "FR*SOD*S*OTHR*211*9*_*_;FR*SOD*S*OTHR*211*8*_*_;FR*SOD*S*OTHR*211*7*_*_;FR*SOD*S*OTHR*211*5*_*_;FR*SOD*S*OTHR*211*2*_*_;FR*SOD*S*OTHR*211*13*_*_;FR*SOD*S*OTHR*211*11*_*_;FR*SOD*S*OTHR*211*10*_*_;FR*SOD*S*OTHR*211*1*_*_;FR*SOD*S*OTHR*211*12*_*_;FR*SOD*S*OTHR*211*3*_*_;FR*SOD*S*OTHR*211*4*_*_;FR*SOD*S*OTHR*211*6*_*_", + "operator:email": "sav@izivia.com", + "description": "RUE DES PONTS NEUFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94991100000, + 46.32379200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-02-10", + "description": "MASSY - JOLIOT CURIE", + "owner:ref:FR:SIREN": "200056232", + "ref:EU:EVSE": "FRCPSPCAPS3811;FRCPSPCAPS3812", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*CAPS*38*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25787100000, + 48.73540900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1503915974404100003", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLXUGGDGWRQ15V", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1155480" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53363500000, + 44.87840500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "ref": "754173", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVISP363398759080822326", + "network": "ENRGETICA", + "description": "ENRGETICA/c3b8d418-4312-4120-88ba-3d928beb5172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88916600000, + 43.97879800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "entrance": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20780170000, + 49.97264370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2315286634492456654", + "ref": "435177", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WKJ7SGGVME", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50991300000, + 47.55933900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "description": "ALPITRONIC 225kW JLHeritage Grésy;WB 22kW JL Héritage", + "amenity": "charging_station", + "ref": "1000087962;1000098808", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000087962;FRSWSE1000098808", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2021-07-22;2023-01-05", + "capacity": "1;3", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92125600000, + 45.72648000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7434548870861728887", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "735183", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/POTRT2UKUG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74322700000, + 43.45933100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-01-30", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Renault - Trucks Grenoble", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 08:00-12:00", + "ref:EU:EVSE": "FRSSDPRENAULTTRUCKS381201", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65440300000, + 45.24946600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E137401", + "description": "MODULO - MAINVILLIERS - Pl. du marché", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "network": "MODULO - MAINVILLIERS - Pl. du marché", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS28E137401", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46351800000, + 48.45053900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EVB-P1942027", + "description": "Parking NOVABIO Sanilhac", + "start_date": "2021-12-21", + "operator": "NOVABIO", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "497795005", + "ref:EU:EVSE": "Non concerné", + "network": "NOVABIO", + "charging_station:output": "22 kW", + "capacity": "10", + "opening_hours": "Mo-Fr 8:00-17:00", + "operator:email": "novabio.labo@laposte.net" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69695569791, + 45.13287208802 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521465", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P5189165070290125754", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "description": "SDEA 10/UOMK81HGEB", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62488000000, + 48.23362000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLM9VSRAOS", + "capacity": "5", + "network": "WAAT", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWATP1312579190329332734", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "538370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69576000000, + 48.83209600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE469", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-11-02", + "description": "Parc_Hotel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70836800000, + 47.82089300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-06", + "description": "VIEUX - Route de Cahuzac", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81316001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87474600000, + 43.99189800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "ref": "FRIPKPPAJ", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "INTERPARKING - Palais Jaurès", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-07", + "operator:email": "supervision-ev.france@totalenergies.com", + "capacity": "40", + "ref:EU:EVSE": "FRIPKPPAJ", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833000000, + 47.38909000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49099E;FRS49E49099005", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-06;2024-04-13;2021-04-26", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Cholet - Infanterie;CHOLET - Place 77ème Régiment d'Infanterie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87070200000, + 47.06522800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "94283", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/montataire", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PMONTATAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43470000000, + 49.25620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GONNEHEM - Place Louis et André Delannoy B01", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-07-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62376001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57595600000, + 50.56279600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "NIMES - Place Hubert Rouger", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30189011", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35259500000, + 43.83241600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile;Morbihan énergies | FR*S56", + "description": "Vannes - Rue Alain Gerbault;Mobilité électrique 56/PTJEBK", + "socket:type2_combo:output": "42 kW;50 kW;22 kW", + "charging_station:output": "50 kW;42 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "ref": "251929", + "ref:EU:EVSE": "FRS56PPTJEBK", + "start_date": "2020-06-12", + "network": "Morbihan Energies;Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73080000000, + 47.66540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRLMSP90291162", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2024-06-14", + "description": "ENGIE Vianeo - Center Parcs Le Lac d'Ailette", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68609000000, + 49.46409000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94080J", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "348986", + "description": "Métropolis/FR*MGP*P94080*J", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45519500000, + 48.84968600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE14411;FRSIGPSIGE14421;FRSIGPSIGE14431;FRSIGPSIGE14441;FRSIGPSIGE14451;FRSIGPSIGE14461", + "description": "SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*144*5*_*_;FR*SOD*S*SIGE*144*4*_*_;FR*SOD*S*SIGE*144*3*_*_;FR*SOD*S*SIGE*144*1*_*_;FR*SOD*S*SIGE*144*2*_*_;FR*SOD*S*SIGE*144*6*_*_", + "start_date": "2021-06-21;2021-06-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23218700000, + 48.88772600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E78616001", + "description": "THOIRY - Route de Versailles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79725440000, + 48.86569160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel Première Classe Arras", + "start_date": "2023-09-04", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89928314", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81531600000, + 50.28094000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Chateauneuf Sur Charente | Parking de la Paix", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "dbe09149-f3e6-5e14-8c87-174a5b01986c", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05388600000, + 45.59965800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-05", + "description": "Place de l'An 2000 - Combs-la-Ville", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE77CVKA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55861700000, + 48.66622000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "network": "Allego Carrefour Rambouillet", + "amenity": "charging_station", + "description": "Allego Carrefour Rambouillet", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9007582;FRALLEGO9007512;FRALLEGO9007511;FRALLEGO9004692;FRALLEGO9004691;FRALLEGO9004682;FRALLEGO9004681;FRALLEGO9002642;FRALLEGO9002641;FRALLEGO9002643;FRALLEGO9007581", + "ref": "FRALLEGO9007582;FRALLEGO9007511;FRALLEGO9004692;FRALLEGO9004691;FRALLEGO9004682;FRALLEGO9004681;FRALLEGO9002642;FRALLEGO9002641;FRALLEGO9002643;FRALLEGO9007512;FRALLEGO9007581" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82902233000, + 48.62635421000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FAMECK Triangle", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR2433EVCP01;LFR2433EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2433EVCP01;LFR2433EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10892800000, + 49.31456200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "TOULOUSE- Route De Bayonne", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31555017", + "charging_station:output": "22 kW", + "start_date": "2021-11-16", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38303300000, + 43.60853100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPWS9GEQKX4X", + "ref": "75014;WS9GEQKX4X", + "description": "Réseau eborn/WS9GEQKX4X;Aspres-Sur-Buëch, Office de Tourisme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75232500000, + 44.52105700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "626276", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/TDVUPC3TPJ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3652625827070103468", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85226800000, + 44.93490700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2024-04-29", + "operator:email": "support@alizecharge.fr", + "description": "PARIS - Fremicourt", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E751150021;FRP07E75115002", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29717000000, + 48.84740400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLYMQJ194292JN;La Farlède, Parking Mairie", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP7464639253645769740;FREBNPLLYMQJ194292JN", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref": "LLYMQJ194292JN;1152102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04366100000, + 43.16720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "16", + "description": "Blagnac - Aéroport de Toulouse", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPBLAAE4", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37635900000, + 43.63209800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking de Lyon Part Dieu - Loueurs", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "24", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E69383002", + "start_date": "2023-06-27", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;7 kW", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86085480000, + 45.75800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "ref:EU:EVSE": "FRCPIE6614465;FRCPIE6614505;FRCPIE6614515", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "network": "HU CHALLANS BORNE 1", + "ref": "FRCPIE6614465;FRCPIE6614505;FRCPIE6614515", + "start_date": "2022-10-11", + "description": "HU CHALLANS BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87283700000, + 46.83566900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-28", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/HJBBCTOFEI;Hyères, Parking ARROMANCHES", + "ref:EU:EVSE": "FREBNP4097867956330023825;FREBNPHJBBCTOFEI", + "opening_hours": "24/7", + "ref": "HJBBCTOFEI;477810", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15059800000, + 43.08342500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/s570544", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1181952", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P1915235109343699701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81609900000, + 43.94214200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DN2MMDN9FZ", + "ref:EU:EVSE": "FRFR1P890866993126155733", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "505554", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478100000, + 49.23616100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:00", + "start_date": "2022-10-17", + "ref": "FRTCBP01299", + "capacity": "2", + "network": "KIA HAGUENAU", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP01299", + "operator": "TotalEnergies Marketing France", + "description": "CAR AVENUE - KIA HAGUENAU", + "charging_station:output": "24 kW;22 kW", + "owner:ref:FR:SIREN": "479081903", + "socket:type2_combo:output": "24 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.80466163068, + 48.79600195976 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8275388768858656533", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "510617", + "description": "Freshmile France/YZIPETWE26", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84532500000, + 43.78925500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-26", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Volkswagen - Le Poiré sur vie", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPDMD851701", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43888300000, + 46.74355300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-27", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E29076001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Milizac-Place de Yealmpton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.56528700000, + 48.46735400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BELVEZE-DU-RAZES - Place De La Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11034001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09694444444, + 43.12388890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "Logis Hôtel le Relais du Taurion", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Relais du Taurion - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC54211", + "owner:ref:FR:SIREN": "511829939", + "ref": "a3990be1-c99b-49b1-87c5-a0bcef008745", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39397389000, + 45.88684179000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - RAUCOURT ET FLABA - Pl. de la Halle", + "ref:EU:EVSE": "FRS08E57539;FRS08E57540", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS08E57539;FRS08E57540", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - RAUCOURT ET FLABA - Pl. de la Halle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95728788000, + 49.60169006000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "79468", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/TEXNBQ", + "ref:EU:EVSE": "FRS80PTEXNBQ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27480000000, + 50.03380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST22623;FRIZFPFAST22613;FRIZFPFAST22612;FRIZFPFAST22611;FRIZFPFAST22621;FRIZFPFAST22622", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*226*2*_*_;FR*SOD*S*FAST*226*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - SAINT-CERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31134220000, + 46.22201050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "AVESSAC - Bis Rue De La Gare;OuestCharge - Diva Sp - Avessac - Gare", + "start_date": "2024-04-15;2021-04-20", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44007001;FRS44P44007A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99082900000, + 47.65323200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77053002;FRS77P77053B", + "start_date": "2024-09-16", + "description": "Brie-Comte-Robert - Place de la gare;BRIE-COMTE-ROBERT - Place de la gare", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW", + "ref": "1bb9c307-6b74-42d9-a618-358eeb36a827" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61437700000, + 48.69756500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": " IBIS BUDGET DEAUVILLE", + "start_date": "2024-03-12", + "network": "BOISSEE - IBIS BUDGET DEAUVILLE", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGSPP1234595639", + "owner:ref:FR:SIREN": "388596090" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08577155205, + 49.34598361849 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - THILOUZE - Rue de l'église", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E219826;FRS37E219818", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219826;FRS37E219818", + "network": "MODULO - THILOUZE - Rue de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58011900000, + 47.22348700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/TLKZQJ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PTLKZQJ", + "opening_hours": "24/7", + "ref": "242125", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95916000000, + 47.67360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "DOMAINE DE LA SAPINIERE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRG10P62898A", + "ref": "FRG10P62898A", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "DOMAINE DE LA SAPINIERE", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19366786616, + 50.72310631628 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Perigny | Parking de la Mairie", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "25b8a691-db68-5c50-adaf-9372814bc6a6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09440300000, + 46.15237900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*259*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 25 CHEMIN DESVALLIERES - VILLE-DAVRAY", + "start_date": "2022-06-09", + "ref:EU:EVSE": "FRSIGPSIGE25911;FRSIGPSIGE25912", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19478850000, + 48.82200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "ref:EU:EVSE": "FRCN1PNEYDENSENVIGN", + "ref": "48892", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "description": "Move In Pure/neydensenvign", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09447000000, + 46.12420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P3545551223689971924", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/LLTYHEIZF1QM8J", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1192738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.80067100000, + 41.95595000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "a249bfda-c85b-51a4-8d49-2e577d5edfa6", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Donzenac | Parking Point de Vue de Travassac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54571800000, + 45.22266800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB12002A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "start_date": "2015-12-31", + "description": "Réseau AlterBase - Geay - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32692700000, + 46.87922000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-13", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRADPE940540073;FRADPE940540072;FRADPE940540071;FRADPE94054007;FRADPE940540074", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ORY - Parking P18", + "network": "ADP Groupe", + "capacity": "40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37317900000, + 48.73325600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR0766EVCP02;LFR0766EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR0766EVCP02;LFR0766EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LA RICHARDAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05632200000, + 48.61470400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-03", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "description": "LE SAPPEY EN CHARTREUSE - Parking Jacobine", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRM38E38471001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77884963982, + 45.25839435315 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ11211;FRA16PWIIZ11212", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANNES PARKING LERINS", + "start_date": "2020-12-21", + "ref": "FR*SOD*S*WIIZ*112*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03845700000, + 43.54302600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3811189876376488252", + "capacity": "2", + "amenity": "charging_station", + "ref": "510452", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CYAJRHUDL0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74455700000, + 43.33347700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PACTCHA", + "start_date": "2024-08-14", + "socket:type2_combo:output": "120 kW", + "description": "Action - Châlette-sur-Loing", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72059172412, + 48.00901256958 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sagnes-Et-Goudoulet, Les Sagnes;Réseau eborn/AWVBDU", + "ref:EU:EVSE": "FREBNPAWVBDU", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "capacity": "2;4", + "start_date": "2020-06-12", + "ref": "39104;AWVBDU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22643000000, + 44.79050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Limoges - Jardiland", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "charging_station:output": "22 kW;11 kW;150 kW", + "ref:EU:EVSE": "FRELCPLIMJL", + "opening_hours": "24/7", + "start_date": "2023-08-23", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25303600000, + 45.81302700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E95219001", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare d'Ermont Eaubonne P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26844110000, + 48.98081710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Su 00:00-24:00,Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-01-18", + "ref:EU:EVSE": "FRCPIE6671695;FRCPIE6671685", + "network": "QUADRIPACK BORNE 2", + "ref": "FRCPIE6671695;FRCPIE6671685", + "description": "QUADRIPACK BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33132600000, + 46.54120300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Besançon, Place des Tilleuls;Easy Charge/LLW7MOM562154P", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPLLW7MOM562154P;FRECHP4063792126080309749", + "ref": "LLW7MOM562154P;1092111", + "capacity": "4", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-05-15", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04595000000, + 47.25990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue des Pyrénées 137", + "ref": "FR*V75*PPX20*19", + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX2019", + "network": "Belib'", + "start_date": "2021-11-03", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40291100000, + 48.85844000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "487209", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/I9Q4QKTKIG", + "ref:EU:EVSE": "FRFR1P402185984626815864", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26883200000, + 45.86808500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX05*08", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Rue Gay-Lussac 66", + "ref:EU:EVSE": "FRV75PPX0508", + "start_date": "2021-08-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34306840000, + 48.84200540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4145456608056806875", + "ref": "529097", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile/AX86CBKORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23395500000, + 45.59960700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-16", + "description": "Ford - Carcassonne", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD110001", + "capacity": "4", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30386400000, + 43.20449300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22319001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Michel en Grève-Route d Arvor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56751900000, + 48.68310200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - ORVAL - Rte. de Lignières", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ORVAL - Rte. de Lignières", + "capacity": "2", + "start_date": "2021-04-02", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E142815;FRS18E142816", + "ref": "FRS18E142815;FRS18E142816", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48209000000, + 46.72506000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "879220374", + "operator": "4M RETAIL", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 9:00-17:00", + "start_date": "2022-03-02", + "ref": "EVB-DC422600001B", + "charging_station:output": "22 kW", + "operator:email": "contact@mambhome.com", + "description": "Parking MAMBHOME", + "network": "4M RETAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65957151416, + 45.74962660286 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32047", + "description": "SDEA 10/NWRWARYFKP", + "ref:EU:EVSE": "FRS10P109904733367201558" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40336400000, + 48.04045200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ALBI - Chemin De Las Bories", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81004004", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13755000000, + 43.94621200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST9513;FRIZFPFAST9512;FRIZFPFAST9511", + "ref": "FR*SOD*S*FAST*95*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-09-24", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BOLLENE", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75143973548, + 44.28949140895 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Pulse 50 - Pontchateau - Villeneuve;PONTCHATEAU - Boulevard De Villeneuve", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44129001;FRS44P44129A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "start_date": "2021-04-28;2024-04-22", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08464700000, + 47.43333100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Montceaux-les-Provins;MONTCEAUX-LES-PROVINS - Route De Brangis", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61TR6BXJYMH25Q81SG", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77301001;FRS77P77301A", + "start_date": "2015-07-01;2023-05-28", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43818300000, + 48.69465300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62423002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "HELFAUT - Parking du CHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25137200000, + 50.70353300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E221456;FRS37E221454", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - SOUVIGNY DE TOURAINE - Rue Pierre de Ronsard", + "opening_hours": "24/7", + "ref": "FRS37E221456;FRS37E221454", + "network": "MODULO - SOUVIGNY DE TOURAINE - Rue Pierre de Ronsard", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09261930000, + 47.40984692000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS55E66378;FRS55E66379", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS55E66378;FRS55E66379", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-06-26", + "description": "MODULO - NONSARD LAMARCHE - Base Loisirs de Madine", + "network": "MODULO - NONSARD LAMARCHE - Base Loisirs de Madine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75712600000, + 48.92828100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "ALY01 - CENTRE-BOURG", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*135*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON13511;FRGLYPLYON13512", + "operator:email": "sav@izivia.com", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83171200000, + 45.86438700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "FRELINGHIEN - Rue d'Armentieres", + "ref:EU:EVSE": "FRMELP5923601", + "opening_hours": "24/7", + "ref": "FR*MEL*P59236*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93225252400, + 50.71179203000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "IMT Douai - Lahure - Centre de Recherche", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPIMTDOUAI595082", + "operator:email": "support@driveco.com", + "start_date": "2018-09-07;2020-10-30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08270000000, + 50.38660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6576835", + "description": "CGED ROUEN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6576835", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "network": "CGED ROUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11408100000, + 49.39632000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P3627348944285565870", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/Y6GYO7OHI0", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "ref": "454362" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413100000, + 48.86208200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Fronsac | Parking Mairie;FRONSAC - PARKING MAIRIE", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "FRS33PMB333812;Non concerné;FRS33PMB333811", + "start_date": "2020-07-23", + "ref": "b6d0301e-10d3-5bdc-a451-c67441c2f688;FR*SOD*S*MB33*38*1*_*_", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27176900000, + 44.92407600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "b0ca9d4f-8b32-5062-ae93-0584e0973e85", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Viry-Châtillon - Avenue Gondrecourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37403800000, + 48.67275800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO0001511", + "start_date": "2022-04-21", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "network": "Allego NISSAN Chambray Les Tours", + "description": "Allego NISSAN Chambray Les Tours", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO0001511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70362274000, + 47.32780282000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AGDE Guiraudette", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR2090EVCP02;LFR2090EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2090EVCP02;LFR2090EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47103200000, + 43.29547600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-08-06", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE9711;FRM06PNICE9712", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*97*1*_*_", + "description": "SAINT-JEANNET - PARKING RENE VEYSSI", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14471500000, + 43.74980900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E163450;FRS88E163452", + "network": "MODULO - CHATENOIS - Allée Pré le Duc", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHATENOIS - Allée Pré le Duc", + "ref:EU:EVSE": "FRS88E163450;FRS88E163452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83473800000, + 48.30281800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ22612;FRA16PWIIZ22611", + "ref": "FR*SOD*S*WIIZ*226*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "SAINT-RAPHAEL - PARKING BOULAURIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80859700000, + 43.41622400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLKMJQSTROKQGM", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P830749280432344528", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892554" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75955100000, + 45.18716200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PMBRNSE", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "description": "Mr. Bricolage - Les Touches", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47709114017, + 47.44141107416 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "30470", + "ref:EU:EVSE": "FREBNPQH0TXLZWSV", + "network": "Réseau eborn", + "description": "Réseau eborn/QH0TXLZWSV", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41730200000, + 46.07824900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "EVzen/583A3D7B-BDFB-492B-B2D2-CD059748A998", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1114050", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP6173346246504925100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00289600000, + 48.18260900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP07E59350008", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LILLE - Grand Palais Zentih", + "start_date": "2023-03-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07850082579, + 50.63170071299 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "1084719;LLT5RQULZ2KG5Q", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LLT5RQULZ2KG5Q;PRAZ-SUR-ARLY, Route de la Tonnaz", + "start_date": "2024-02-28;2024-03-08", + "socket:type2_combo:output": "24 kW", + "capacity": "8;10", + "ref:EU:EVSE": "FREBNP6957750468817958042;FREBNPLLT5RQULZ2KG5Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56976300000, + 45.83891800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSAINTPOURCAIN", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/saintpourcain;Saint-Pourçain-sur-Sioule, Quai de La Ronde", + "ref": "30629;saintpourcain", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29217000000, + 46.30670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP104103", + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "50 kW;300 kW", + "description": "ENGIE Vianeo - A19 Loiret", + "opening_hours": "24/7", + "start_date": "2023-07-07;2023-05-05", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47260000000, + 48.08431300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "694427", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7980471201792887992", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DUSESMVQ5L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76079300000, + 47.88165900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue de Pommard 7", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1216", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "ref": "FR*V75*PPX12*16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38503560000, + 48.83551930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/THONXFPNYV", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Tu,Fr,We,Th,Mo 08:00-11:00,Mo,We,Fr,Tu,Th 14:00-18:00,Sa 14:00-17:00,Sa 09:00-11:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6638830326201700331", + "ref": "626282", + "capacity": "12", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874800000, + 43.66019100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-18:00", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2022-01-10", + "description": "BMW Mini - Boulogne sur mer", + "ref:EU:EVSE": "FRSSDPBAYERNBMW623601", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62423000000, + 50.68730300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PECOSSALLESPORTS", + "operator:email": "pascal.lhermitte@siege27.fr", + "start_date": "2016-09-25", + "description": "900055", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60573500000, + 49.15800100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "ref": "180425", + "capacity": "2", + "description": "SICECO/FR*S21*P21603*A", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS21P21603A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33545400000, + 47.49022700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-GERMAIN-EN-LAYE - MAREIL", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08837000000, + 48.89350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-06", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE105", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hutt_Vagnas", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37121200000, + 44.36865700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLZEMBZ94U", + "opening_hours": "24/7", + "ref": "932088", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWATP189763646217278588" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32031000000, + 43.75197400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2019-10-17", + "capacity": "5", + "ref": "FRIONE437700", + "ref:EU:EVSE": "FRIONE403400", + "description": "IONITY Sarthe Sud", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16686500000, + 47.80710100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - REIMS ST THOMAS - Rue Perin", + "ref": "FRS51E41689;FRS51E41690", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E41689;FRS51E41690", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "description": "MODULO - REIMS ST THOMAS - Rue Perin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02541200000, + 49.26475500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRENS MARSOUS - Parking base de loisirs", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65032001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21044000000, + 42.95682000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080354", + "start_date": "2023-01-10", + "amenity": "charging_station", + "capacity": "4", + "description": "RELAIS TARDENOIS SUD", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080354", + "charging_station:output": "300 kW;54 kW", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681097;531681096;531681099;531681098", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53720000000, + 49.12540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34142001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LODEVE - Place du Rialto", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31996111111, + 43.73266670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PYDWRKB", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/YDWRKB", + "capacity": "3", + "opening_hours": "24/7", + "ref": "25070", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38746000000, + 47.74270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "892629", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5397958073395004917", + "description": "Freshmile France/LWOOPFQ7NB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13388700000, + 49.24270500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP92051O", + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (1)", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-03-03", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26164776000, + 48.88806409000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Fiat - Melun", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2020-07-30", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 13:30-18:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPPRIODFIAT772401", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63080700000, + 48.56492300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Sun 06:00-22:00", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "402073597", + "ref:EU:EVSE": "FRC2P004401", + "ref": "FRC2P004401", + "description": "HOTEL DE L'EUROPE", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "operator:email": "contact@car2plug.fr", + "start_date": "2022-11-25", + "network": "HOTEL DE L'EUROPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33806628396, + 46.57850280671 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "15ff2740-4afd-44de-9724-6731c01c34a2", + "ref:EU:EVSE": "FRLUMECASSAGNE11", + "operator": "LUMI'IN", + "start_date": "2022-03-17", + "description": "Chateau de Cassagne " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87000000000, + 43.96000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Libourne | Parking Allées Robert Boulin | 2;MOBIVE | Libourne | Parking Allée Robert Boulin | 1", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW", + "ref": "a3f10a1e-68ec-5fdc-b6ae-5c30113ab1d1;7f698d6c-1c3d-565c-9f9d-ce46207f4d1c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24098000000, + 44.91796600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE23EABA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "U EXPRESS - EVAUX LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48249300000, + 46.16871800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref": "788763", + "ref:EU:EVSE": "FRBHMP3431460426444465549", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "description": "BornEco/6446a9682f5a364fea0121b4", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00198700000, + 45.57554400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P2344831974565243951", + "description": "Leclerc/VN1NPSWHO2", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "charging_station:output": "22 kW;50 kW;150 kW", + "ref": "515159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51118600000, + 46.28925200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PVMLQ8YA4XO", + "description": "La Penne-Sur-Huveaune, Boulevard Voltaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51707300000, + 43.28139500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/XW1SLUHJGS", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P2487002639690636430", + "capacity": "2", + "amenity": "charging_station", + "ref": "402683", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87835600000, + 47.95070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ7812;FRA16PWIIZ7811", + "capacity": "2", + "amenity": "charging_station", + "description": "COLLONGUES PLACE DU CHATEAU", + "start_date": "2018-06-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*78*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86326500000, + 43.88889300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1958187737811150806", + "description": "Freshmile France/IMOUXSVXCM", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "515036", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88640500000, + 46.99260700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Stockobox - Léguevin", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSTXLGV", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-09-15;2023-12-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26130109332, + 43.60303276994 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJDZUASRU2S", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/JDZUASRU2S", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30476" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87237300000, + 45.92174300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3716596897896314179", + "description": "ENGIE MAMP - Bornes publiques/9F521EC6-D436-461A-9199-6E52C66D8463", + "operator:email": "support@evzen.com", + "ref": "1128291", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42013100000, + 43.26435100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "start_date": "2023-12-06", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*698*3*_*_;FR*SOD*S*OTHR*698*2*_*_;FR*SOD*S*OTHR*698*1*_*_;FR*SOD*S*OTHR*698*4*_*_", + "description": "MERCURE - DIEPPE", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR69831;FROTHPOTHR69811;FROTHPOTHR69821;FROTHPOTHR69841" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07148000000, + 49.92530810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPT2SVHB67IN", + "capacity": "2", + "description": "Pierre-Châtel, Place des Anciens Combattants AFN;Réseau eborn/T2SVHB67IN", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "106940;T2SVHB67IN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77852800000, + 44.95151000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Le Pradet, Place de l’Armée d’Afrique;Réseau eborn/LNFOF1DSWU", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "LNFOF1DSWU;75341", + "start_date": "2020-08-26", + "ref:EU:EVSE": "FREBNPLNFOF1DSWU;FREBNLNFOF1DSWU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02173900000, + 43.10761200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "network": "JONATHAN EVENEMENTS", + "charging_station:output": "3.68 kW;24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*378*3*_*_;FR*SOD*S*OTHR*378*2*_*_;FR*SOD*S*OTHR*378*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR37831;FROTHPOTHR37821;FROTHPOTHR37811;FROTHPOTHR37832", + "start_date": "2023-02-21;2022-04-14", + "opening_hours": "24/7", + "description": "JONATHAN EVENEMENTS & COMMUNICATION - CHEMAUDIN ET VAUX", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89985700000, + 47.23503800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "598056", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2719275088923244550", + "description": "Freshmile France/VICY36RAPV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61950400000, + 43.51944200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP29905", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Chasse-sur-Rhône, France - Chasse Sud", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81177128000, + 45.57392878000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "377444", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6739702552994959603", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/EYDDJC", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54402000000, + 47.44490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSAVYBMW250001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "start_date": "2023-10-21;2023-10-18", + "capacity": "10", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "BMW - Besançon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98718900000, + 47.27975600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLSAJ0FD82E046", + "opening_hours": "24/7", + "ref": "1026765", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4731731871731890013", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93965600000, + 48.38119700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22186001", + "charging_station:output": "22 kW", + "description": "PLENEUF VAL ANDRE - Rue Clémenceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.55227100000, + 48.58869200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZMAE22AC49605", + "network": "Mazda Lyon Sud", + "start_date": "2020-12-03", + "ref": "49605", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Mazda - Venissieux Lyon Sud - 22kW AC ", + "owner:ref:FR:SIREN": "968504480", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87162200000, + 45.71916200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-30", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRROSE323", + "description": "Logis_Pavillon_La_Pellerine", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12125000000, + 47.46161600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LIMAY - Place Robespierre", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78335001", + "charging_station:output": "22 kW", + "start_date": "2022-01-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74588200000, + 48.98509900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Saint-Witz", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE439612;FRIOYE439611;FRIOYE439610;FRIOYE439608;FRIOYE439605;FRIOYE439604;FRIOYE439603;FRIOYE439602;FRIOYE439601;FRIOYE439606;FRIOYE439607;FRIOYE439609;FRIOYE439651;FRIOYE439652;FRIOYE439653", + "capacity": "15", + "ref:EU:EVSE": "FRIOYE439612;FRIOYE439611;FRIOYE439610;FRIOYE439608;FRIOYE439605;FRIOYE439604;FRIOYE439603;FRIOYE439602;FRIOYE439601;FRIOYE439606;FRIOYE439607;FRIOYE439609;FRIOYE439651;FRIOYE439652;FRIOYE439653", + "start_date": "2022-05-16", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Saint-Witz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54801371000, + 49.08934818000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS53E53097002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "description": "EVRON - Place De La Basilique", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40297510000, + 48.15584080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66021001", + "start_date": "2021-11-23", + "description": "BOMPAS - Avenue Pasteur", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92977250000, + 42.73029410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Henrichemont", + "start_date": "2023-06-12", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Henrichemont", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE009301;FRIENE009302", + "ref": "FRIENE009301;FRIENE009302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54470900000, + 47.30476100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35049001B1", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "CANCALE - 5 avenue de gaulle ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "start_date": "2022-01-01", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85375000000, + 48.67634400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "description": "PASSAIS-VILLAGES", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61324A", + "ref": "SE61-PLCO-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75724000000, + 48.51810100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6588133514213894880", + "description": "Freshmile France/CREOX7XV1T", + "ref": "398852", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13123000000, + 43.66240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-01-15", + "ref:EU:EVSE": "FRS31PMYVFWU", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Sainte-Foy-de-Peyrolières, Tilleuls;Roulez Électrique En Haute-Garonne/MYVFWU", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "MYVFWU;64877", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14609000000, + 43.49180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92026015", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "COURBEVOIE - 9 Rue de l'industrie", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25582648018, + 48.89157274717 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000327;FRCG0E000326;FRCG0E000328", + "amenity": "charging_station", + "capacity": "3", + "network": "Logis La Tourmaline - 73210 - 1", + "opening_hours": "24/7", + "start_date": "2022-06-07", + "description": "Logis La Tourmaline - 73210 - 1", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "ref": "FRCG0E000327;FRCG0E000326;FRCG0E000328" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64248100000, + 45.55524100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - CLEMENT ROASSAL", + "ref": "FR*SOD*S*NICE*163*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-04-07", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE16312;FRM06PNICE16311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26121600000, + 43.70827000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Bon Encontre | Mascaron Basilique", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "19afad60-f54d-5393-9557-65cb57d7a343", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67219000000, + 44.18623000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*304*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30412;FRSIGPSIGE30411", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 33 RUE GUYNEMER - MAISONS-LAFFITTE", + "start_date": "2022-09-19", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14694800000, + 48.94450100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "155095;155094", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS155095;FRBMPS155094", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Ouilly Le Vicomte", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21553700000, + 49.17160500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2888EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MEURCHIN", + "ref:EU:EVSE": "LFR2888EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89725000000, + 50.49206900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Aubazine | Golf du Coiroux", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "d6fa5c1f-2bd1-5b95-a92a-c5d1ca556f9c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71926500000, + 45.18632100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "description": "Viry-Châtillon - Rue des Radars", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bb2d175a-9d08-546f-86b3-dd65a9622295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36932300000, + 48.65240400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-15", + "ref:EU:EVSE": "FR55CP13100SMJMA1R1E", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PLACE DE LA MAIRIE - SAINT-MARC-JAUMEGARDE", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52170000000, + 43.54680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3422EVCP01", + "capacity": "2", + "description": "LA ROCHE SUR FORON", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3422EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30878100000, + 46.06994500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRPVDP8684328108814641806", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "network": "Proviridis", + "opening_hours": "24/7", + "description": "Proviridis/60ba0d0f2cf3d9000cac817a", + "ref": "402194", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81791300000, + 43.80127100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP5509723363897098652", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/LLTHE8SOLN8KMX", + "socket:type2_combo:output": "24 kW", + "ref": "1157418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37851500000, + 44.39409400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP47324A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "description": "e-Totem - Intermarché Villereal", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP47324A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73731125684, + 44.63542818949 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking gare de Béziers - EFFIA", + "ref:EU:EVSE": "FRP01E34032001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21964000000, + 43.33643000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRDRVPCRFMKT605001", + "start_date": "2023-11-15", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Chantilly", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46288800000, + 49.20259300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSBLMXOFNGQ", + "ref": "96110", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/SBLMXOFNGQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28125200000, + 45.39582500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*495*1*_*_;FR*SOD*S*OTHR*495*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR49512;FROTHPOTHR49511;FROTHPOTHR49521;FROTHPOTHR49522", + "description": "FFF - LIGUE DE FOOTBALL DES PAYS DE LA LOIRE - SIEGE", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-09-19", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49358800000, + 47.21112200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/P51P4TWAKQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1762207969159199440", + "operator": "Freshmile | FR*FR1", + "ref": "529508" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33434300000, + 47.58522100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "start_date": "2023-12-15", + "description": "UBI-LHSM-158", + "ref:EU:EVSE": "FRUBIE10000334;FRUBIE10039412;FRUBIE10056759;FRUBIE10086084", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "setp0100000136;setp0100000122;setp0100000109" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07936600000, + 49.51969000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "521345", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/QLLMFZXIXH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6238844189815149800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79997600000, + 45.78016200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - 2 Allée du niger", + "ref:EU:EVSE": "FRTLSE31555034", + "start_date": "2022-05-11", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42910000000, + 43.60490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "description": "Freshmile France/ECHCTB", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8176732924334432008", + "opening_hours": "24/7", + "ref": "347018", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30356000000, + 47.95500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1150059", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P5125249777363754232", + "description": "MobiSDEC/LLV3WHEAF19PJ0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70751800000, + 49.27954100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BARAQUEVILLE - Place René-Cassin DBT", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12056001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43263200000, + 44.27724600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLWAQMIISB", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA3P3236487030503434074", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "805338", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73886800000, + 43.43530700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49183001;FRS49P49183A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "LE LOUROUX-BECONNAIS - Rue Noel Pinot;OuestCharge - Diva Sp - Le Louroux-Beconnais - Noel Pinot", + "start_date": "2024-03-26;2021-04-12", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88562000000, + 47.52211300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/hericourtbere", + "ref:EU:EVSE": "FRS70PHERICOURTBERE", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "65021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76654000000, + 47.57660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HOUTKERQUE - Rue du Calais", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59318001", + "start_date": "2023-07-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59551742108, + 50.87698107025 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E19691;FRS37E19690", + "description": "MODUO - FAYE LA VINEUSE - Pl. de la Huchette", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E19691;FRS37E19690", + "network": "MODUO - FAYE LA VINEUSE - Pl. de la Huchette", + "start_date": "2019-06-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33990000000, + 46.95700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Monnerie le Montel - Gare", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRS63P63231A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60590000000, + 45.86919230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BETTIGNIES - Route de Villers sire Nicole", + "ref:EU:EVSE": "FRH02E59076001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97445800000, + 50.33345000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32PBJPTGU", + "ref": "21821", + "description": "SDEG32/BJPTGU", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57849000000, + 43.42820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94017009", + "network": "SIPPEREC", + "description": "CHAMPIGNY-SUR-MARNE - Boulevard Gabriel Péri" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50900500000, + 48.82110900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE27911;FRM06PNICE27912", + "ref": "FR*SOD*S*NICE*279*1*_*_", + "start_date": "2024-02-01", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - ESTIENNE DORVES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24657530994, + 43.70100721412 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Montignac | Parking lascaux | D704E1", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "5ca78ab4-e51c-5f4d-84c0-5d5bda44c376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16556900000, + 45.06080600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 45 GRANDE RUE - LISLE-ADAM", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*409*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRSIGPSIGE40912;FRSIGPSIGE40911", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21840100000, + 49.11238900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "charging_station:output": "90 kW", + "description": "ROUEN - Avenue Du Mont Riboudet", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "90 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-14", + "ref:EU:EVSE": "FRC01E76540011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06945700000, + 49.44708300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR4023EVCP01;LFR4023EVCP02;LFR4023EVCP04;LFR4023EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4023EVCP01;LFR4023EVCP02;LFR4023EVCP04;LFR4023EVCP03", + "description": "DAIX - Dijon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99931300000, + 47.34374900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Evaux les Bains | Faubourg St Bonnet Parking Salle Culturelle", + "amenity": "charging_station", + "ref": "ffa1a177-2c6f-517c-bf49-41179b8758a1", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48324200000, + 46.17599500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "134fb619-79a3-5fba-a31f-8c773c0754e5", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "LE THOR - Chemin des Estourans" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99699800000, + 43.92918400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-02;2021-09-09", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FR594E59122008", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "CAMBRAI - Rue Lafayette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26078900000, + 50.16987800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3909EVCP05;LFR3909EVCP01;LFR3909EVCP02;LFR3909EVCP03;LFR3909EVCP04", + "amenity": "charging_station", + "ref": "LFR3909EVCP05;LFR3909EVCP01;LFR3909EVCP02;LFR3909EVCP03;LFR3909EVCP04", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "capacity": "10", + "description": "PONTIVY - Unies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95068300000, + 48.05461100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Intermarché - Retournac", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMRET", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02991532800, + 45.21115351087 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "CLMHBS;48394", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/CLMHBS;Romans-Sur-Isère, Cité de la Musique", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPCLMHBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04475000000, + 45.04340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "e-Totem INFRA - Formule 1 Orange", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP84087A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-25", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP84087A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79380108466, + 44.13773925874 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "39", + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORREI", + "description": "Cora - Reims Cormontreuil", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-08-27;2024-08-28;2024-10-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05581973855, + 49.21626640147 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2024-06-10", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT765701", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Pavilly", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95477300000, + 49.56352400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-09-17", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Jean Jaures", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42044AA", + "ref": "FRESEPS42044AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32367800000, + 45.39706900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - SETE", + "start_date": "2023-12-29", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*203*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPAUCH20311;FROTHPAUCH20312", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66979560000, + 43.40889370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "KYRIAD HOTEL PONT L'ABBE 1", + "ref": "FRCPIE6822625", + "ref:EU:EVSE": "FRCPIE6822625", + "description": "KYRIAD HOTEL PONT L'ABBE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21848600000, + 47.88186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/FZSOUDQLT1", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P7618435747303779116", + "operator": "Freshmile | FR*FR1", + "ref": "541757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641200000, + 45.65972200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9016*01", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Avenue de la Grande Armée 77", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28640300000, + 48.87616200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "370097", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FWHFRTAK5A", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRFR1P2079902081970060813" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57948900000, + 44.84245300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Auxerre (Appoigny)", + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1721", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54280200000, + 47.85183000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477669", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5270900827727323632", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/M6GVZ6JYET", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76678100000, + 48.55572200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-02-22", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363710", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "description": "R3 - Norauto Chenove", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01988100000, + 47.28319900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461754", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P3346545556653383552", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/HHQQUNK71G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03875900000, + 48.83274800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "amenity": "charging_station", + "network": "Simone", + "capacity": "4", + "description": "Stes-Maries-De-La-Mer, Rue Des Artisans", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRS13PHT2TOP3OOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42714000000, + 43.45753500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P4826303891745376800", + "amenity": "charging_station", + "ref": "706634", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLSAEWKSQU", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81880700000, + 45.90366500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VIVY - Avenue des Deux Sœurs", + "start_date": "2024-10-01", + "ref:EU:EVSE": "FRS49E49378001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05561100000, + 47.32582300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "LAGRAVE - Chemin de Nacazes", + "network": "Le Plein Tarnais", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2023-02-09", + "ref:EU:EVSE": "FRS81E8113100211;FRS81E8113100221;FRS81E8113100222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97257729234, + 43.89002944883 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531680514;531680513;531680510;531680502;531680500;531680501;531680499;531680504;531680503;531680506;531680505;531680508;531680507;531680509;531680511;531680512", + "capacity": "16", + "description": "AIRE DE RESSONS EST", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF058967", + "start_date": "2023-07-06;2020-11-06;2023-06-30;2023-07-10", + "ref": "FRHPCPNF058967", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72240000000, + 49.52350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOUILLAC - Parking Chanteranne", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46309002", + "start_date": "2024-06-12", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47674300000, + 44.89789400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PTI8PEKPXSF", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Locmaria - 56 Rue Argentré du Plessis", + "start_date": "2019-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.08497220000, + 47.29455560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "LAMBRES-LEZ-DOUAI - Rue Jean Jaurès", + "ref:EU:EVSE": "FRH04E59329002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06400400000, + 50.35291300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29239001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Roscoff-Quai d'Auxerre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98055600000, + 48.72263300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PTCSBVD", + "opening_hours": "24/7", + "ref": "48280", + "description": "Mobilité électrique 56/TCSBVD", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35960000000, + 47.73050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-27", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "B045", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346051692;FRLMSE12346051691;FRLMSE12346051701;FRLMSE12346051702", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "description": "JOUSSE-1-1;JOUSSE-1-2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47077000000, + 46.22636000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRMGPP93005D", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "419976", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP", + "description": "Métropolis/FR*MGP*P93005*D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50588700000, + 48.93053700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-13", + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8621;FRSIGPSIGE8611;FRSIGPSIGE8631;FRSIGPSIGE8641", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SIGEIF - 7 AV CLAUDE DEBUSSY - CLICHY", + "ref": "FR*SOD*S*SIGE*86*1*_*_;FR*SOD*S*SIGE*86*2*_*_;FR*SOD*S*SIGE*86*3*_*_;FR*SOD*S*SIGE*86*4*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30916100000, + 48.90974400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "opening_hours": "Tu,Mo 09:00-19:00,Tu,Su,Mo,We,Th,Fr,Sa 09:00-18:00,Fr,Sa 09:00-23:00", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "945513", + "ref:EU:EVSE": "FRATLP1504478685426947092", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLZ333_FRGOLFPA_000001", + "charging_station:output": "22 kW;150 kW", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16810100000, + 45.67940700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE1000081818", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-12-07", + "amenity": "charging_station", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Caen", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32953800000, + 49.17970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "d7f8d7ca-5d20-5c10-94ef-bdd29f2f15af", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Urrugne | Parking Osasuna", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69886500000, + 43.36078600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85178002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "description": "LE POIRE-SUR-VIE - Parking De La Brachetiere", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50551000000, + 46.76607900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSSTAND", + "start_date": "2022-12-23", + "network": "Carrefour Energies", + "description": "SAINT ANDRE LES VERGERS", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05384800000, + 48.28337100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 03 - RUE AUPHAN", + "ref": "FR*SOD*S*MAMP*2*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZMPMAMP211;FRIZMPMAMP212", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "start_date": "2022-02-16", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37653500000, + 43.31687300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-09-24", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;160 kW", + "ref:EU:EVSE": "FRPD1PMATAVL", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "description": "Match Avesnelles (59)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93723986807, + 50.11706894511 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP4661900182935344691;FREBNPOYKRAJWUI5", + "ref": "OYKRAJWUI5;346865", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Le Bourget-Du-Lac, House Boat, allée Lac de Garde;Réseau eborn/OYKRAJWUI5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87060200000, + 45.64694700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/65A1A5C0-CB92-45B3-9816-1508E736A3B3", + "opening_hours": "Fr,Tu,Mo,We,Th,Sa 09:00-21:00,Th,Tu,Fr,We,Mo,Sa 08:00-20:00", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "746979", + "capacity": "3", + "ref:EU:EVSE": "FREVZP506393498101908212", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12736700000, + 45.75694900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PHLFCSD", + "opening_hours": "24/7", + "description": "Basic Fit - Caussade", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-07-02;2023-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52659094589, + 44.15124456290 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/KSTK4RC9AC;Virieu, Rue de la Barbeniere", + "ref:EU:EVSE": "FREBNPKSTK4RC9AC", + "ref": "30272;KSTK4RC9AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47656200000, + 45.48572800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP24256A", + "start_date": "2024-07-31", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref": "FRETIP24256A", + "charging_station:output": "22 kW", + "description": "E-totem - FAST HOTEL Perigueux", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66805500489, + 45.19270467968 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*184*1*_*_;FR*SOD*S*OTHR*184*2*_*_", + "owner:ref:FR:SIREN": "391952801", + "network": "MAISON PIERRE OTEIZA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-06-17", + "opening_hours": "24/7", + "description": "ROUTE DUREPEL", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR18421;FROTHPOTHR18411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42461300000, + 43.08947900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRCPSPCAPS1311;FRCPSPCAPS1312", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-11-26", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "description": "VILLEJUST - ROUTE DE VILLEBON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*CAPS*13*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23674900000, + 48.68372000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1017036", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3115986724671073362", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLR940S591Q3TM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04465000000, + 49.25238700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "CENTER PARCS LES HAUTS DE BRUYERES - Parking Guest", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP123015", + "start_date": "2024-08-05", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "charging_station:output": "7.4 kW;22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93855300000, + 47.61957600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8149885629316993425", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/IAJBLHCHJ6", + "network": "Freshmile France", + "ref": "782460", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08461300000, + 46.07356200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "SAS VERNAIDIS", + "ref": "FRSUAP69260A", + "capacity": "2", + "description": "U EXPRESS VERNAISON", + "amenity": "charging_station", + "start_date": "2023-04-03", + "ref:EU:EVSE": "FRSUAP69260A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81262500000, + 45.64978700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6120328996676224723", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "20", + "opening_hours": "We,Sa,Mo,Fr,Su,Th,Tu 08:00-19:00", + "description": "Freshmile France/LLHRNZU6OU4U33", + "operator": "Freshmile | FR*FR1", + "ref": "892038", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62487700000, + 46.50873000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPJFCVOLVOEVREUX279301", + "operator:email": "support@driveco.com", + "description": "Volvo - JFC - Evreux", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17271900000, + 49.05931200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - VILLEMAURY - Rue de Murgers", + "ref": "FRS28E134810", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "network": "MODULO - VILLEMAURY - Rue de Murgers", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E134810", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2021-01-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47022400000, + 48.04062700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941191", + "opening_hours": "24/7", + "operator:email": "hippo.pessac@groupeflo.franchises.fr", + "charging_station:output": "22 kW", + "start_date": "2021-08-11", + "description": "Parking Hippopotamus Pessac", + "network": "HIPPOPOTAMUS", + "owner:ref:FR:SIREN": "881047948", + "operator": "HFOOD PESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64539300000, + 44.78788500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P3733385663897962438", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "101759", + "description": "SDEA 10/KPYZDARPHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26896700000, + 48.25488400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1128132", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "description": "WAAT/FRWATLHFSA4JE9", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P3949287799066371986", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72522300000, + 45.09627400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2016-10-23", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ISIGNY LE BUAT - Salle Omnisports", + "ref:EU:EVSE": "FRS50P50540001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17439210000, + 48.62043340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "SENOUILLAC - Avenue des Vignes", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-07-06", + "ref:EU:EVSE": "FRS81E8128300122;FRS81E8128300121;FRS81E8128300112;FRS81E8128300111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94810600000, + 43.94271400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE477151;FRIOYE477103;FRIOYE477102;FRIOYE477101;FRIOYE477104;FRIOYE477105;FRIOYE477106;FRIOYE477152;FRIOYE477153", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref": "FRIOYE477151;FRIOYE477103;FRIOYE477102;FRIOYE477101;FRIOYE477104;FRIOYE477105;FRIOYE477106;FRIOYE477152;FRIOYE477153", + "network": "Le Faou", + "start_date": "2023-12-20", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Le Faou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16918400000, + 48.29814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49050001;FRS49P49050A", + "charging_station:output": "22 kW", + "start_date": "2024-03-27;2021-04-26", + "description": "BRISSAC-QUINCE - Place de Gaulle;OuestCharge - Diva Sp - Brissac-Quince - Gaulle", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44742300000, + 47.35703200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PVENETTE", + "description": "Mouv'Oise/Venette", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "48946" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80251000000, + 49.41530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HARDINGHEN - Rue Maurice Brouta", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH11E62412001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81863200000, + 50.80611400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAUDUN L'ARDOISE - Rue Elsa Triollet", + "start_date": "2022-02-28", + "ref:EU:EVSE": "FRS30E30141001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65503100000, + 44.10466800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/LJZLHJ", + "ref:EU:EVSE": "FRS56P1917763321941458911", + "operator:email": "roaming@freshmile.com", + "ref": "1161366", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58161000000, + 47.51790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B104", + "ref:EU:EVSE": "FRLMSE12346396371;FRLMSE12346396381", + "start_date": "2016-03-31", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "VERRIERES-1-2;VERRIERES-1-1", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59284000000, + 46.41083100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "description": "Metropolis - Citadine - La Queue-en-Brie - Maréchal Mortier;Métropolis/FR*MGP*P94060*A", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP94060A", + "owner:ref:FR:SIREN": "885354860", + "ref": "330320", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57421300000, + 48.78967900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*113*1*_*_", + "start_date": "2021-04-15", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - RUE DORLEANS - SAINT-CLOUD", + "ref:EU:EVSE": "FRSIGPSIGE11312;FRSIGPSIGE11311", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21926400000, + 48.84171500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E78208003", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ELANCOURT - Place de Paris", + "charging_station:output": "50 kW;22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97223004017, + 48.79201640752 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89913621", + "description": "ENGIE Vianeo - La Vôge-les-Bains - Gymnase", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-08-02", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24775000000, + 48.00047500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "d26f961f-5bd5-5bdd-89bc-7a0acc79b441", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "description": "MOBIVE | Confolens | Place des Marronniers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67354800000, + 46.01538500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE66PABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "CASH GRAINES SUD - POLLESTRES", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-12-21", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87860400000, + 42.64178600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-02-27", + "description": "AVIGNON", + "ref:EU:EVSE": "FRALLPEVCARSAVIGN", + "capacity": "10", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79319100000, + 43.92843700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3810EVCP01;LFR3810EVCP02;LFR3810EVCP03", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT QUENTIN - Hugo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3810EVCP01;LFR3810EVCP02;LFR3810EVCP03", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27994600000, + 49.84308200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31205001", + "start_date": "2022-02-26", + "network": "Reveo", + "description": "GAGNAC SUR GARONNE - Rue Du Chêne Vert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37537200000, + 43.69704100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLUMQGO5N1S2E8;La Chavanne, Aire de covoiturage Montmélian", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "1161360;LLUMQGO5N1S2E8", + "ref:EU:EVSE": "FREBNP535545934010027864;FREBNPLLUMQGO5N1S2E8", + "start_date": "2024-04-05;2024-03-07", + "charging_station:output": "7.4 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05730300000, + 45.49561100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LM0P3ZVG82PRGT", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1185586", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P2772473722706444648", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.51185600000, + 16.25608400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "INDIGO FRANCE", + "start_date": "2023-03-01", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E75105046;FRP07E751050461", + "description": "PARIS - Patriarches", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35067644433, + 48.84048593833 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPBIAIJUVWY6", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/BIAIJUVWY6;Die, 1347 Boulevard du Maréchal Leclerc", + "ref": "31813;BIAIJUVWY6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37296800000, + 44.75112200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP6397632642736123479", + "network": "Road", + "description": "Road/66e2e8794f1df6001d986f10", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "1185070", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94689100000, + 45.55708300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR30521;FROTHPOTHR30511", + "network": "HAUTS DE MONTROUGE", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-01-21", + "charging_station:output": "7.36 kW", + "description": "HAUTS DE MONTROUGE - NOGARO", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*305*2*_*_;FR*SOD*S*OTHR*305*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04908900000, + 43.75394800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "PARKING N-1 SAVENAY 3", + "amenity": "charging_station", + "capacity": "4", + "description": "PARKING N-1 SAVENAY 3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6609155;FRCPIE6609145", + "start_date": "2022-10-12", + "ref": "FRCPIE6609155;FRCPIE6609145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756000000, + 47.37250400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Ollioules, Place Lemoyne;Réseau eborn/CRK2IWO5NY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "CRK2IWO5NY;75332", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNCRK2IWO5NY;FREBNPCRK2IWO5NY", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84745100000, + 43.13718100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570511", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P2062101231990503994", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1181769" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880700000, + 43.52748900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "ref": "559850", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4888801359034591728", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ZBM4NFEKPJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365800000, + 49.41753400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Greet Hotel Castres Saïx", + "network": "ACCOR Hotels", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "start_date": "2021-11-24", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "888632957", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP00513", + "ref:EU:EVSE": "FRTCBP00513" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17519300000, + 43.58734200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLJQTIN30T2CWB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1795848968068153210", + "ref": "892413", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45445100000, + 42.72267400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Nissan - Carpentras", + "start_date": "2024-06-19", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN842001", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04897600000, + 44.03760400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Crozon-Rue de l'Atlantique", + "ref:EU:EVSE": "FRS29E2904200", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50657800000, + 48.22580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/OFTFKLBGGV", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8082637004552711713", + "ref": "293516" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50229200000, + 48.06415900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "301193199", + "charging_station:output": "43 kW;50 kW;25 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1PEAC64604;FRZP1PEAC64603;FRZP1PEAC64602;FRZP1P5292622223933536503", + "ref": "1053853e-6580-403c-937f-060f111da14c;675716", + "network": "Zephyre;Societe Insulaire Garage Corse", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "capacity": "1;3", + "description": "Zephyre/CIR_12052045530001;Societe Insulaire Garage Corse", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43734200000, + 42.60561500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "481272", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRRSEP01353A", + "charging_station:output": "22 kW", + "description": "Régie Services Energie/FR*RSE*P01353*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79597200000, + 45.97238900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "64673", + "description": "FDE 80/feuquiereszi", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PFEUQUIERESZI", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59817000000, + 50.06890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - VILLENEUVE ASCQ TOSHIBA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-06-10", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST18423;FRIZFPFAST18411;FRIZFPFAST18412;FRIZFPFAST18413;FRIZFPFAST18421;FRIZFPFAST18422", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*184*2*_*_;FR*SOD*S*FAST*184*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14498650000, + 50.64040190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - AZE - Rue des Vergers", + "amenity": "charging_station", + "description": "MODULO - AZE - Rue des Vergers", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E52879;FRS41E52880", + "ref:EU:EVSE": "FRS41E52879;FRS41E52880" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99571800000, + 47.85150700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS72E72337001", + "charging_station:output": "11 kW", + "description": "SOUGE LE GANELON - Rue des acacias" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02485900000, + 48.31769000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LY103 - ORNANO - CHARTREUX", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9141;FRGLYPLYON9131;FRGLYPLYON9121;FRGLYPLYON9111", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*91*1*_*_;FR*SOD*S*LYON*91*2*_*_;FR*SOD*S*LYON*91*3*_*_;FR*SOD*S*LYON*91*4*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2021-07-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82572000000, + 45.77170500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E215781;FRS37E215782", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E215781;FRS37E215782", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHARNIZAY - Rue du 19 Mars 1962", + "network": "MODULO - CHARNIZAY - Rue du 19 Mars 1962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98527900000, + 46.91322500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PYBMHAN", + "ref": "85841", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/YBMHAN", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10467000000, + 47.74650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRG10P45063A", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "description": "Ville de Cerdon", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P45063A", + "operator:email": "contact@e-totem.fr", + "network": "Ville de Cerdon", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36334236000, + 47.63662588000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-10-18", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - CLERMONT SUD AUBIERE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*AUCH*146*1*_*_", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "ref:EU:EVSE": "FROTHPAUCH14611;FROTHPAUCH14612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12804998347, + 45.75371284370 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE2311;FRSIGPSIGE2312", + "start_date": "2020-07-07", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*23*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - AVENUE DU MARECHAL JUIN - CARRIERES-SUR-SEINE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17723600000, + 48.91213200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref:EU:EVSE": "FRCN1PXESNPX", + "description": "Move In Pure/XESNPX", + "operator": "Freshmile | FR*CN1", + "ref": "21795" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40723000000, + 45.85330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P3463180035642772960", + "description": "Leclerc/QNFNXLNAJV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "694394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928000000, + 49.30662900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Pisany | Allée des Sports", + "opening_hours": "24/7", + "ref": "432deda2-56d6-5895-8635-617d1039dc00", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77948500000, + 45.70081800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "Stations-e - Clos Auchin - BOUSSY ST ANTOINE", + "capacity": "3", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE91BSCA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52865100000, + 48.67838200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRABAPPGWCRPMKIO", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "description": "Eygalieres, Parking Avenue Leon Blum", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94716000000, + 43.76123700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES ARCS d'Argens", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3295EVCP01;LFR3295EVCP02", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3295EVCP01;LFR3295EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47446000000, + 43.44755700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRENOBLE - Place André Malraux - CCI (CITIZ)", + "ref:EU:EVSE": "FRM38E38185013", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72900000000, + 45.18551000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Moulins, Vigenère;Réseau eborn/moulinsvi", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FREBNPMOULINSVI", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "moulinsvi;120725" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33350000000, + 46.57100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1122450", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLWAD6CEW2AOJG", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8165782200440416298", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61682700000, + 47.22400500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "hotelF1 - Angoulins-sur-Mer", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRPD1PACCAGL", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France", + "start_date": "2024-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10037114855, + 46.10843313523 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "78648;UQWWKV", + "capacity": "2", + "description": "Réseau eborn/UQWWKV;Saint-Andre-Les-Alpes, Place de Verdun", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPUQWWKV", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50850000000, + 43.96720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPARRLE", + "description": "Arras - E.Leclerc", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-08-24", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78089400000, + 50.28129900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E92071002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Sceaux Robinson - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28187550000, + 48.77942700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "amenity": "charging_station", + "capacity": "4", + "network": "HMV SAINT DIE 3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "HMV SAINT DIE 3", + "ref": "FRCPIE6654685;FRCPIE6654585", + "ref:EU:EVSE": "FRCPIE6654685;FRCPIE6654585" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96437400000, + 48.28991900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPUWBEJENZM4;FRECHP1530775418103443787", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge", + "description": "Menneval 2 , Cuisinella;Easy Charge/UWBEJENZM4", + "ref": "749265;UWBEJENZM4", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61022900000, + 49.10076000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue de Crimée 8", + "ref:EU:EVSE": "FRV75PPX1910", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref": "FR*V75*PPX19*10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39160000000, + 48.87770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20950140000, + 49.97144380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626069", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "60 kW", + "opening_hours": "Sa 14:00-17:00,We,Fr,Mo,Th,Tu 08:00-11:00,We,Fr,Th,Mo,Tu 14:00-18:00,Sa 09:00-11:00", + "ref:EU:EVSE": "FRFR1P8791984834400857231", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FNEF1NNCUJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44095000000, + 43.32335800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Etienne Marcel 36", + "ref:EU:EVSE": "FRV75PPX0205", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX02*05", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34438800000, + 48.86502000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5855097876607521882;Non concerné", + "operator:email": "roaming@freshmile.com;cpo@citeos.com", + "charging_station:output": "3.7 kW;22 kW", + "network": "CPO CITEOS SDE54;Freshmile France", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/RM0ROAPILM;CCMAMO - Ancy-Dornot - Grand Rue", + "operator": "Freshmile | FR*FR1;5_AM0004_SDE54", + "opening_hours": "24/7", + "ref": "541850;a2285397-6e6f-5c4e-ad3f-c78d63e75db2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05840200000, + 49.04710300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "7", + "ref:EU:EVSE": "FRSSDPVULCAINVOLVO694001", + "amenity": "charging_station", + "description": "Volvo - GROUPE VULCAIN - Villefranche sur Saône", + "start_date": "2020-12-14", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74331000000, + 45.99116100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22250001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pontrieux-Parking rue du quai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15928300000, + 48.69836000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "NEVIAN - Ombrieres", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-06-21", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS11E11264001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90099300000, + 43.21226400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "LUN-VEN 08:30-19:00,SAM 09:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "network": "SIVAM BY AUTOSPHERE - RILLIEUX", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Toyota - Rillieux la pape - EXTERIEUR ", + "ref:EU:EVSE": "FRZTLE178369;FRZTLE178370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87753272057, + 45.81617101952 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "101762", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/ENKBOA6MC5", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P3761148356926831552" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20156400000, + 48.66925800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/JGPERV", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PJGPERV", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79396", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26650700000, + 49.89793500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST6213;FRIZFPFAST6212;FRIZFPFAST6211", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*62*1*_*_", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - REIMS VAL MURIGNY", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-03-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02113292209, + 49.22058368044 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44097001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MESQUER - Parking Camping Cars" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45170211800, + 47.39617538000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77255001;FRS77P77255A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Livry-sur-Seine;LIVRY-SUR-SEINE - Rue De La Garenne", + "ref": "01F5ZAKH61ZBQTS3PR3ATPQQHJ", + "start_date": "2016-01-18;2023-05-30", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68847700000, + 48.51104400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "FRGYMP4111615916558975207", + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/75", + "ref": "1030644" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51351300000, + 48.98888800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221252;FRS37E221250", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - AZAY SUR CHER - Rue de la Poste", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - AZAY SUR CHER - Rue de la Poste", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E221252;FRS37E221250" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84459300000, + 47.35040600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHAUVONCOURT- pkg auto primo - T2", + "amenity": "charging_station", + "capacity": "4", + "network": "MODULO - CHAUVONCOURT- pkg auto primo - T2", + "charging_station:output": "0 kW", + "start_date": "2024-06-01", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E248442;FRS55E248443;FRS55E248453;FRS55E248454", + "ref:EU:EVSE": "FRS55E248442;FRS55E248443;FRS55E248453;FRS55E248454" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51847500000, + 48.90164300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "VIL15 - RECONNAISSANCE - BALZAC", + "opening_hours": "24/7", + "start_date": "2021-08-24", + "ref": "FR*SOD*S*LYON*111*3*_*_;FR*SOD*S*LYON*111*2*_*_;FR*SOD*S*LYON*111*1*_*_;FR*SOD*S*LYON*111*4*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON11141;FRGLYPLYON11121;FRGLYPLYON11111;FRGLYPLYON11131" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88493000000, + 45.75456800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "ref:EU:EVSE": "FRMBZESMYQC", + "operator": "Mobilize Power Solutions", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "network": "BODEMER - SCAUTO BAYEUX", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "start_date": "2024-06-03", + "description": "\t\tScauto Bayeux", + "ref": "7a45c134-7e75-4118-9ab0-6d251a80f7b7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70025900000, + 49.27090100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - Val de Loire automobiles - Tours", + "start_date": "2022-05-09;2023-08-18;2022-07-20", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "ref:EU:EVSE": "FRSSDPVALDELOIREVOLVO375401", + "amenity": "charging_station", + "capacity": "20", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 12:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67186900000, + 47.43187500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U LA SUZE BORNE 2", + "ref": "FRCPIE6553745;FRCPIE6618015", + "amenity": "charging_station", + "capacity": "4", + "description": "SUPER U LA SUZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6553745;FRCPIE6618015", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-12-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04274600000, + 47.89249100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/J3N1KOHIJZ", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "505761", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2161783734517322667", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933000000, + 49.14865000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "99f5d8ef-1d8d-5a58-9057-eec9088c0326", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Saint Sulpice de Faleyrens | Av du General de Gaulle", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19054400000, + 44.87611800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Athis-Mons - Place Jules Froelinger", + "ref": "d423a215-674f-5f36-abf5-d205f0f58f65" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40383400000, + 48.71249500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau de recharge Charge-in", + "operator": "Camping le Puits de l'Auture", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRALIB328386;FRALIBE328386", + "operator:email": "tech@eoliberty.com", + "description": "Camping le Puits de l'Auture" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11782630000, + 45.64949130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BOE Bigorre", + "ref:EU:EVSE": "LFR2828EVCP02;LFR2828EVCP01", + "ref": "LFR2828EVCP02;LFR2828EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63431700000, + 44.17964600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "charging_station:output": "50 kW", + "description": "NICE - DEUDON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*69*2*_*_", + "ref:EU:EVSE": "FRM06PNICE6922;FRM06PNICE6921", + "start_date": "2023-04-19", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26885704773, + 43.70095961257 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*202*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "FREJUS - PARKING MARIUS COULLET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ20211;FRA16PWIIZ20212", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72857700000, + 43.39095600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1633934093892903428", + "operator:email": "roaming@freshmile.com", + "ref": "529793", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XIGDYUXUYP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94606500000, + 47.21332400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PBWNSEL", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Best Western - Sélestat", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-08-07;2023-09-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42363987004, + 48.25544733564 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EHWYSYEPGP;346676", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP2988823612267722342;FREBNPEHWYSYEPGP", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "charging_station:output": "50 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Digne-Les-Bains, Avenue Gutenberg;Réseau eborn/EHWYSYEPGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18529000000, + 44.07590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/6C499326-D363-47B8-BC79-C7D1338F9F34", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1122270", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP6323149576696025056", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98920000000, + 47.04611900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E47001001", + "start_date": "2021-05-03", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "AGEN - Carnot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62052400000, + 44.20423500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPTL3NL9QBRT", + "ref": "TL3NL9QBRT", + "description": "Meaudre, Place Gérard Clet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52752500000, + 45.12748890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FREFLP2443756616575614086", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "ref": "1019505", + "operator": "Road | FR*EFL", + "opening_hours": "Mo,Tu,Th,Sa,We,Su,Fr 08:00-18:00", + "description": "Road/65cdf18d1d376e001cd6d265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25956500000, + 46.00011300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-07-13", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Thaon Les Vosges - Hôtel de Ville", + "ref:EU:EVSE": "FRVIAP143034", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41892000000, + 48.25070900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "896637", + "capacity": "7", + "description": "Freshmile France/OO9RLIGTXI", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1546128222428943468", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36891000000, + 49.26733800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Boulevard Richard Lenoir 63", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1106", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "ref": "FR*V75*PPX11*06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37199140000, + 48.86023000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892188", + "description": "Freshmile France/LLIU98V8U1LGVB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "80 kW", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6146721145322272370", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;80 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93816100000, + 44.92160300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PROMENADE - Neuville-en-Ferrain", + "network": "DRIVECO", + "capacity": "24", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPNHOOD599601", + "opening_hours": "24/7", + "start_date": "2022-05-05;2021-09-15", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14603000000, + 50.74402000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PBEUZEVILLECOQ", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-05-25", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900029", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34456900000, + 49.34592000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SICECO/FR*S21*P21150*A", + "amenity": "charging_station", + "network": "SICECO", + "ref": "180356", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS21P21150A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73072400000, + 46.93829300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOISY-LE-ROI - Places des Poètes ", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-26", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78455005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05667106835, + 48.85023317007 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - 83014 TOULON - PEIRESC MARCHE", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-05;2023-01-18;2023-01-19", + "ref": "FR*SOD*S*QPRK*79*9*_*_;FR*SOD*S*QPRK*79*8*_*_;FR*SOD*S*QPRK*79*7*_*_;FR*SOD*S*QPRK*79*5*_*_;FR*SOD*S*QPRK*79*11*_*_;FR*SOD*S*QPRK*79*10*_*_;FR*SOD*S*QPRK*79*1*_*_;FR*SOD*S*QPRK*79*2*_*_;FR*SOD*S*QPRK*79*3*_*_;FR*SOD*S*QPRK*79*4*_*_;FR*SOD*S*QPRK*79*6*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRQPKPQPRK7991;FRQPKPQPRK7981;FRQPKPQPRK7941;FRQPKPQPRK7931;FRQPKPQPRK7921;FRQPKPQPRK79111;FRQPKPQPRK7911;FRQPKPQPRK79101;FRQPKPQPRK7951;FRQPKPQPRK7961;FRQPKPQPRK7971", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93558600000, + 43.12358800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLPCDQS8WN", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP8103589304854367050", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "706259", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99912600000, + 43.13942300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "network": "IONITY GMBH", + "ref": "FRIONE414800", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "ref:EU:EVSE": "FRIONE414800", + "charging_station:output": "350 kW", + "description": "IONITY Corbières Nord", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54304400000, + 43.17810300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-08-17", + "ref:EU:EVSE": "FRS50P50890002", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "CONDE SUR VIRE - Le Sault", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00256260000, + 49.04839670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77531A;FRS77E77531001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61R37GJPE2BGRQBVFE", + "start_date": "2023-05-16;2015-05-28", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Voulx - Grande rue;VOULX - Rue Grande" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96912100000, + 48.28253900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF080239", + "socket:type2_combo:output": "150 kW", + "capacity": "2", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-12-04", + "ref": "FRHPCPNF080239", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "description": "ETS DORMOY FRERES", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15860000000, + 47.63360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - PONTLEVOY - Rue de la Saulaie", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - PONTLEVOY - Rue de la Saulaie", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E2951;FRS41E2950", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS41E2951;FRS41E2950", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25573100000, + 47.39053200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Ploemeur - Place Anne de Bretagne", + "ref:EU:EVSE": "FRS56PEVRKJN", + "start_date": "2016-10-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42736600000, + 47.73461100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3213046155541358274", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1184926", + "description": "Freshmile France/LM0Z32QK4UOALO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76635500000, + 48.58716600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "description": "Métropolis/FR*MGP*P92048*C", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92048C", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "1193905", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22973700000, + 48.81783400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Peugeot - ByMyCar - Sallanches", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPBYMYCAR747001", + "start_date": "2020-01-14", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63374700000, + 45.95013800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "STATION LUMIIN", + "ref:EU:EVSE": "FRC2P000101", + "network": "LUMIIN", + "start_date": "2021-05-07", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW", + "operator": "CAR2PLUG", + "opening_hours": " 24/7", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99423027039, + 44.07691857938 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P8333176891758324780", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446735", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/JAXAX0EZZT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21628100000, + 46.98382900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "9f01c923-472c-5f2b-89da-a41bf6a8e6c1", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Le Château d'Oléron | Place de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19470900000, + 45.88653600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSAEPPDA", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "SAEMES | Parking Porte d'Auteuil", + "network": "SAEMES", + "capacity": "241", + "opening_hours": "24/7", + "ref": "FRSAEPPDA", + "owner:ref:FR:SIREN": "317032993", + "start_date": "2021-07-12", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25616172536, + 48.84726632700 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "description": "BAZALP - Kingersheim", + "ref:EU:EVSE": "FRSITE00000210", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2024-06-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31679000000, + 47.79184000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P852809562036340870", + "ref": "786996", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/D2EUNOUMJS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27599000000, + 41.59734000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13POBINORTZUC", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Gardanne, Place de Biver", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46481200000, + 43.43486600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "488853", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P3283037566736929994", + "description": "SDEY/FCCSV36CXN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49979400000, + 47.61447200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-05-31", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ5211;FRA16PWIIZ5212", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "VILLENEUVE-LOUBET - PARKING FIGHIERES", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*52*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13947500000, + 43.63720300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "charging_station:output": "40 kW;43 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/OTAUCDKBHT", + "operator": "Freshmile | FR*FR1", + "ref": "466146", + "ref:EU:EVSE": "FRFR1P4881220036853903714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75792400000, + 48.58786000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "SCI - Edizaynn", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSCIEZY", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "charging_station:output": "50 kW;100 kW", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90774594544, + 47.94589318957 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPDRK2TIBPMV", + "ref": "DRK2TIBPMV", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Neydens, Parking Chef-Lieu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10470650000, + 46.12044220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/F5F44B20-1554-49ED-B9F3-52929FCA2AF1", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP6160750343364699956", + "operator:email": "support@evzen.com", + "ref": "1057110", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41767200000, + 43.25381800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "operator": "IZIVIA", + "description": "NETTO - NIORT", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*663*1*_*_", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR66311;FROTHPOTHR66312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47488400000, + 46.34325400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/Y2MRQRX4PV;Sollies-Toucas, Avenue Du Gapeau", + "ref": "85913;Y2MRQRX4PV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPY2MRQRX4PV;FREBNY2MRQRX4PV", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02770100000, + 43.20799200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Brignoles, 09 Avenue Maréchal Foch;Réseau eborn/H3MZXPKIZJ", + "ref": "H3MZXPKIZJ;50710", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPH3MZXPKIZJ;FREBNH3MZXPKIZJ", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06648100000, + 43.40762300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAVE COOP VINIFI COSTIERES", + "operator": "IZIVIA", + "description": "CAVE COOP VINIFI COSTIERES - POMEROLS", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR35111;FROTHPOTHR35121;FROTHPOTHR35131", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*351*2*_*_;FR*SOD*S*OTHR*351*1*_*_;FR*SOD*S*OTHR*351*3*_*_", + "start_date": "2022-03-21", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49464500000, + 43.39108400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1452507505509091756", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/RP6RJUZXHE", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "412094" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98026000000, + 46.54750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Tossiat, France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP29933", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "capacity": "30", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28260000000, + 46.14413800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1565125170901010675", + "ref": "510464", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/EEIECWCICF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04527000000, + 48.72036400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "description": "Volvo - Thibault Automobiles - Le Mans - PDL2", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPTHIBAULTVOLVO720002", + "start_date": "2023-05-31", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17296400000, + 47.97444400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900104", + "ref:EU:EVSE": "FRS27PLERYBOURG", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20655400000, + 49.28544500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "charging_station:output": "22 kW;180 kW", + "start_date": "2023-06-02", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MERDRIGNAC - Rue Du Bourg Neuf", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22147002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41195000000, + 48.19158000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Intermarché La Tremblade", + "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-11-10;2021-08-31", + "description": "Intermarché - La Tremblade - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "ref": "89539;70279;70278;89540", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "398027235", + "operator": "ZEBORNE", + "ref:EU:EVSE": "FRZIME22AC89540;FRZIME22AC89539;FRZIME22AC70279;FRZIME22AC70278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301000, + 45.75964500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE275", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Mairie_Bohain_Parking", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45688460000, + 49.98697980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CONFLANS-SAINTE-HONORINE - Promenade François Mitterand", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78172004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08733700000, + 48.99062100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE416952;FRIOYE416905;FRIOYE416904;FRIOYE416902;FRIOYE416903;FRIOYE416951;FRIOYE416953", + "capacity": "7", + "start_date": "2020-12-18", + "description": "Veyre", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Veyre", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE416952;FRIOYE416905;FRIOYE416904;FRIOYE416902;FRIOYE416903;FRIOYE416951;FRIOYE416953" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15351203000, + 45.66017323000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1069797", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/LLOYGAK831QC2V", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS52P7923240776356960712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93961600000, + 48.63046200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65452001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TRIE SUR BAISE - Rue de l’Abreuvoir", + "network": "Reveo", + "charging_station:output": "18 kW;22 kW", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37302000000, + 43.32151000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Brou", + "description": "Brou", + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE006702;FRIENE006701", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE006702;FRIENE006701", + "start_date": "2023-05-15", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16311800000, + 48.22129700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34344004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "charging_station:output": "22 kW", + "description": "LA GRANDE MOTTE - Place des Tritons", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09031100000, + 43.55724000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61181A", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-GACE-001", + "description": "GACE - Pl. Charles de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29563500000, + 48.79499400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLOE7OX3J28UN6", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1044453", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2891833274598263835", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33498800000, + 43.81349800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-13", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PEBSQJH", + "ref": "EBSQJH", + "operator": "Freshmile SAS", + "description": "Saint-Sulpice-sur-Lèze, Gendarmerie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31795000000, + 43.33070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-01", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE92004019", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - 352 Avenue d'Argenteuil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27444471190, + 48.92546169863 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-08", + "ref": "FRCG0E000184;FRCG0E000182;FRCG0E000181;FRCG0E000183", + "amenity": "charging_station", + "capacity": "4", + "network": "Parking Saint Jean -06800", + "ref:EU:EVSE": "FRCG0E000184;FRCG0E000182;FRCG0E000181;FRCG0E000183", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Parking Saint Jean -06800", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13787000000, + 43.66004700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*130*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE13022;FRM06PNICE13021", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "description": "NICE - PARKING PESSICART", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24897000000, + 43.71109000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "581b7f96-0351-5397-8319-81389111942b", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Lue | Parking Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98515700000, + 44.23101800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE58CABA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-04", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "France Pare-Brise - COSNE-COURS-SUR-LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92287700000, + 47.39887800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "205163;205161;205160;205162;205164", + "description": "Bump - Grand Mail Station 2 - SAINT-PAUL-LES-DAX", + "ref:EU:EVSE": "FRBMPS205161;FRBMPS205163;FRBMPS205160;FRBMPS205162;FRBMPS205164", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03917670000, + 43.72807270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR4096EVCP02;LFR4096EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "SAINT GERMAIN CORBEIL", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4096EVCP02;LFR4096EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49376200000, + 48.63030700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marseille-10E, 1 Rue Gaston Berger", + "ref:EU:EVSE": "FRM13PZ1I0TISJ6M", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41427800000, + 43.26855600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "ref": "ab8cec4a-e39d-5687-bea8-8d67bfce2b2f", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Leudeville - Rue de la Croix Boissée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32693100000, + 48.56609900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "BOULEVARD DENIS SOULIER- AVIGNON", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P84000*AVG*SOUL1ER", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP84000AVGSOUL1ER", + "start_date": "2020-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81693900000, + 43.94225600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "BAZAS Petges", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3391EVCP01;LFR3391EVCP02;LFR3391EVCP03", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3391EVCP01;LFR3391EVCP02;LFR3391EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22755000000, + 44.43902600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-03-16", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PTTMVLB", + "operator:email": "hello@powerdot.fr", + "description": "Tonton Michel - Villeneuve-lès-Bouloc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37335100000, + 43.76442700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "UEZAJDDHKC;79183", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Carnoules, Avenue Colonel Fabien;Réseau eborn/UEZAJDDHKC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPUEZAJDDHKC;FREBNUEZAJDDHKC", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18545700000, + 43.30039800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7208647234156657916", + "description": "Freshmile France/PDP2V645KH", + "ref": "472236", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855400000, + 43.23148100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking gare de Marseille Saint-Charles P1 - EFFIA;Parking gare de Marseille Saint-Charles P2 Voltaire - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4;9", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E13201001;FRP01E13201003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38100960000, + 43.30231970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*56*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "PALAISEAU - LA VAGUE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-02-29", + "ref:EU:EVSE": "FRCPSPCAPS5612;FRCPSPCAPS5611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23391560000, + 48.71876580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ISMVMVMPVP;Tallard, Rue du Château - Village", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "30452;ISMVMVMPVP", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPISMVMVMPVP", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05470000000, + 44.46040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR47111;FROTHPOTHR47112", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BRICOMARCHE - LA VILLE AUX DAMES", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*471*1*_*_", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78578300000, + 47.39651800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7847462002516358015", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "694325", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ULRXO0HBQH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968900000, + 48.35605600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "description": "Caucriauville Lut - Le Havre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10017845;FRUBIE10095826", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16393200000, + 49.51349600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "466140", + "ref:EU:EVSE": "FRFR1P7430796719787762869", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/OGOEOW5UKX", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59244100000, + 43.06237400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "description": "TOULOUSE - Route de Revel", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555008", + "charging_station:output": "22 kW;90 kW;180 kW", + "start_date": "2022-08-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48651600000, + 43.57719900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "370100", + "description": "Freshmile France/GLCXPQDIMC", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1374088367976369680", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55673100000, + 44.82758900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LUSPLHMJTM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P5453106032543291345", + "charging_station:output": "22 kW", + "ref": "461823", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37168200000, + 49.15248100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11418001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VILLASAVARY - Rue Du Barry", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03884860000, + 43.22043280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78133003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-08-18", + "description": "CHAMBOURCY - Gymnase", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03117995860, + 48.90776894463 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCMAMO - Novéant-Sur-Moselle - Parking 64 Rue Foch", + "ref": "3d3dadc7-b051-5ddc-8ef9-7c6bdeb921d5", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05125800000, + 49.02588500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/pesmemarche", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS70PPESMEMARCHE", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "64988" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56555000000, + 47.27950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "SAINT VENANT - Chemin de Ceinture", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH13E62770001", + "network": "pass pass électrique", + "charging_station:output": "50 kW;36 kW", + "start_date": "2021-11-03;2020-09-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54957200000, + 50.62468800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35288001B1", + "description": "ST MALO - 22 rue Godard (Parking GODARD) ", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01282000000, + 48.63674900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63113H", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-01-18", + "ref": "518315", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG63 - ePremium - Clermont Ferrand - Menat;SIEG 63/FR*S63*P63113*H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07288300000, + 45.77867700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1192768", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3737673883591571847", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLY5KZHIH1B7CS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95293200000, + 48.38714000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21817", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/AMUVUF", + "ref:EU:EVSE": "FRS32PAMUVUF", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23697500000, + 43.70300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "ALFORTVILLE - Quai Blanqui", + "ref:EU:EVSE": "FRSIPE94002011", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-11", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41656708651, + 48.80212020016 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-23", + "description": "EPAF VACANCES AGAY - 83700 - 1", + "capacity": "2", + "amenity": "charging_station", + "network": "EPAF VACANCES AGAY - 83700 - 1", + "opening_hours": "24/7", + "ref": "FRCG0E001325;FRCG0E001326", + "charging_station:output": "22 kW", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001325;FRCG0E001326" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86741300000, + 43.43311900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING DESAMBROIS", + "ref": "FR*SOD*S*NICE*246*2*_*_;FR*SOD*S*NICE*246*1*_*_", + "ref:EU:EVSE": "FRM06PNICE24621;FRM06PNICE24612;FRM06PNICE24611;FRM06PNICE24622", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-09-18;2023-08-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27042276374, + 43.70546775616 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Le Passage | Allée du Luxembourg", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "3d13d4f3-5eab-574e-9e23-afa23d523e98" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60343600000, + 44.19482400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*385*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE38511;FRSIGPSIGE38512", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - PARKING ECOLE PASTEUR - SANNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26610000000, + 48.96860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76436001", + "description": "LE MESNIL-SOUS-JUMIEGE - Place de l'école" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85965300000, + 49.41191000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3357EVCP01;LFR3357EVCP02", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "CHANCELADE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3357EVCP01;LFR3357EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66355400000, + 45.19882900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "dc87d02c-d92c-5270-a26b-6a7dde21fbbb", + "description": "MOBIVE | Saint Hilaire de Villefranche | Av. de St Jean d'Angély", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52808600000, + 45.85263500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/caylusbascule", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PCAYLUSBASCULE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "38947", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77329000000, + 44.23650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP92350LPRHERR10T", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P92350*LPR*HERR10T", + "start_date": "2023-03-17", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "AVENUE HERRIOT - LE PLESSIS-ROBINSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25467900000, + 48.78203200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3756EVCP01;LFR3756EVCP03;LFR3756EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "OBJAT Poincaré", + "ref": "LFR3756EVCP01;LFR3756EVCP03;LFR3756EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41247200000, + 45.25486700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMMON", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-01-18", + "description": "Intermarché - Montchanin", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47490888165, + 46.73879245535 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPV03V6B3GVC", + "ref": "V03V6B3GVC", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Chamonix-Mont-Blanc, Parking Courmayeur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86724400000, + 45.91694750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "start_date": "2024-03-01", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - Hôtel Ibis Marne la Vallée", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP77083A", + "ref": "FRETIP77083A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58511203566, + 48.84243469049 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-19", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PCORBRY", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Cora - Bruay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56971235113, + 50.49388288524 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT618001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Tinchebray", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-04-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72368400000, + 48.76752300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marseille - Hôtel Campanile Saint-Antoine", + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPMARHC", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "start_date": "2022-12-15", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35631900000, + 43.37938300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - MONTFAVET", + "ref:EU:EVSE": "FROTHPAUCH15811;FROTHPAUCH15812", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-24", + "ref": "FR*SOD*S*AUCH*158*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86448700000, + 43.92166600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-25", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6777335;FRCPIE6777315;FRCPIE6777275;FRCPIE6777305", + "network": "LFDP BORNE 4", + "ref": "FRCPIE6777335;FRCPIE6777315;FRCPIE6777275;FRCPIE6777305", + "capacity": "4", + "description": "LFDP BORNE 4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81987700000, + 43.17832100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "242329", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PVVDFEN", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VVDFEN", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74199000000, + 47.84540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901201", + "amenity": "charging_station", + "ref": "FR*V75*P9012*01", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Avenue du General Dodds 3", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40524800000, + 48.83408400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "541805", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/M1UB8R9YFT", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1563799451663672102", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Mo,Tu,Th,Fr,We 08:00-12:00,Mo,Th,Tu,Fr,We 13:00-16:00", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72951500000, + 48.07973800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "125 kW", + "socket:type2_combo:output": "125 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Tesla Supercharger Orgeval", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP1760", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99650800000, + 48.92502600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3560350083442332991", + "description": "Freshmile France/LLTCQBZGPRVRGA", + "ref": "1150050", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.34056600000, + -20.92635100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "description": "R3 - Norauto Liévin", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89283516", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77271000000, + 50.42251800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "456816", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8390350605793285884", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/DTBNNOB9WY", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39162400000, + 49.32782700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "SAINT SALVADOU - Parking La Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12245001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10061909548, + 44.28198632394 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA5P96599898711394514", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5L29PHCAQW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref": "972617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35927700000, + 48.08903500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-13", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEML", + "description": "OuestCharge - Diva Sp - Soucelles - Vignes", + "ref:EU:EVSE": "FRS49P49337A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41920244000, + 47.56992087000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-16", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8110400111;FRS81E8110400112;FRS81E8110400121;FRS81E8110400122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "GIROUSSENS - Parking Centre Céramique", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77357185825, + 43.76488552577 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF037072", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "531680739", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF037072", + "description": "RELAIS PORT MAZEROLLE", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "start_date": "2022-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16510000000, + 49.12950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LACAVE - Place de l'église", + "ref:EU:EVSE": "FRS46E46144001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55704900000, + 44.84499700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PRZFTLA", + "start_date": "2016-12-09", + "network": "Morbihan Energies", + "description": "Saint-allouestre - Parking Salle Polyvalente", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72377200000, + 47.91111400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "DOUAI - Rue Godin", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59178004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08017900000, + 50.36738600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Pont l Abbe-Impasse Georges Monot", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E29220002", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22454100000, + 47.86294200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068004", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Diderot", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48552367350, + 48.80246142836 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346051171;FRLMSE12346051172;FRLMSE12346051181;FRLMSE12346051182", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-10-05", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "BEAUMONT SAINT-CYR-1-1;BEAUMONT SAINT-CYR-1-2", + "operator:email": "irve@soregies.fr", + "ref": "B131" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43986000000, + 46.73117800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "7", + "start_date": "2021-01-20", + "description": "Metropolis - Citadine - Rueil-Malmaison - Colmar;Métropolis/FR*MGP*P92063*G", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92063G", + "owner:ref:FR:SIREN": "885354860", + "ref": "330296", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18127400000, + 48.88718600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE612;FRSIGPSIGE611", + "ref": "FR*SOD*S*SIGE*6*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - ALLEE DES GYMNASES - SAINT-CLOUD", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21225300000, + 48.85972200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9008121;FRALLEGO9008122", + "capacity": "2", + "amenity": "charging_station", + "network": "Allego Carrefour Villabe", + "description": "Allego Carrefour Villabe", + "charging_station:output": "0 kW", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9008121;FRALLEGO9008122", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44972651000, + 48.58530053000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRLMSE10000348671;FRLMSE10000348672;FRLMSE10000348673", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "network": "ZEENCO", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-01-25", + "opening_hours": "Mo-TH 8:00-12:00,Mo-TH 14:00-19:00,Fr 9:00-12:00,Fr14:00-18:00,Sa 09:00-12:00,Sa14:00-17:00", + "owner:ref:FR:SIREN": "791432263", + "operator:email": "franck.legardeur@zeenco.tech", + "description": "Fast Automobile St Dizier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97153600000, + 48.62629900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Poey de lescar | Zone Principale", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "a05ebbdd-7a51-575a-973b-67cb2935ac06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47874200000, + 43.34613400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85109001", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LES HERBIERS - Place Des Droits De L'Homme", + "start_date": "2024-05-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00948000000, + 46.87139900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2023-03-22", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "LESPARRE", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSLESPA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94091400000, + 45.31091400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "GRUCHET LE VALASSE Abbaye", + "ref:EU:EVSE": "LFR3052EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3052EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49037300000, + 49.55274600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2022-01-16;2022-09-26;2022-04-13", + "charging_station:output": "50 kW;22 kW;60 kW", + "description": "E.Leclerc - Brissac Quince", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLCLBQC", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43087272328, + 47.34127967858 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLV2AM05O1T50S;Morillon, Parking des Esserts", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "capacity": "4", + "ref": "1188907;LLV2AM05O1T50S", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP290899726927419269;FREBNPLLV2AM05O1T50S", + "start_date": "2024-04-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66918600000, + 46.06692000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/D39FB9D7-B0C2-44E3-A0B6-560AE78644DD", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP7932005749406624324", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "ref": "1175814" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21193100000, + 46.63885400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Géant du Meuble - Cavagna 1", + "socket:type2_combo:output": "120 kW;80 kW;200 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PGDMISS", + "opening_hours": "24/7", + "start_date": "2024-01-15", + "operator": "Power Dot France", + "charging_station:output": "50 kW;22 kW;80 kW;120 kW;200 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14937377761, + 45.75467626235 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Leroy Merlin - Biganos", + "capacity": "4", + "ref:EU:EVSE": "FRE11PLMBIGANOS333801", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2019-09-13", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94878700000, + 44.64116200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP05061A", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP05061A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Hôtel Nestor Gap" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05348947727, + 44.53638302904 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SODIP", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-26", + "description": "SODIP - PERONNE", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref:EU:EVSE": "FROTHPOTHR15681;FROTHPOTHR15651;FROTHPOTHR15641;FROTHPOTHR15631;FROTHPOTHR15611;FROTHPOTHR15621;FROTHPOTHR15661;FROTHPOTHR15671", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*156*8*_*_;FR*SOD*S*OTHR*156*7*_*_;FR*SOD*S*OTHR*156*5*_*_;FR*SOD*S*OTHR*156*4*_*_;FR*SOD*S*OTHR*156*1*_*_;FR*SOD*S*OTHR*156*2*_*_;FR*SOD*S*OTHR*156*3*_*_;FR*SOD*S*OTHR*156*6*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93269400000, + 49.91250600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6960875", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6960875", + "network": "CHATEAU DE LA NERTHE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CHATEAU DE LA NERTHE 1", + "start_date": "2024-07-15", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85802000000, + 44.04957400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "368851", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/ITZYZ0TFXP", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1093016288233265117", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61322800000, + 44.84621300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP122061", + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL LORIENT LANESTER", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-07-17", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34204800000, + 47.77973600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/G2PRGCPO0G", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5417198347907194944", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505566", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73927300000, + 47.89040900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPOCEANEHYUNDAI850001", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2021-10-05", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Hyundai -La Roche sur Yon", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42764400000, + 46.71395000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1129743", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLW60O7VU1CKIJ", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5644406987162773222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68240800000, + 43.97041900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Sicobal - Les Sornières", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-06-30", + "opening_hours": "Mo 09:00-18:30, Tu 09:00-18:30, We 09:00-18:30, Th 09:00-18:30, Fr 09:00-18:30, Sa 09:30-12:30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSICOBAL448401", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53615600000, + 47.15215800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - EPERNON - Av. de la Prairie", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - EPERNON - Av. de la Prairie", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E130906", + "ref": "FRS28E130906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67915500000, + 48.60585600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/Z7TCFV54RM", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "457611", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P1315761659837685229", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80638500000, + 49.09071400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "6.9 kW;7.4 kW", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "description": "WAAT/FRWA5LCFDZTGUY", + "ref": "1127925", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P5924895899066246708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25180000000, + 49.51890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "description": "CHERBOURG EN COTENTIN (QUERQUEVILLE) - Couville", + "start_date": "2018-08-07", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50416001", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69995500000, + 49.66087200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81253001", + "start_date": "2024-07-17", + "description": "SAINT GREGOIRE - Place Capitaine Roussel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26062200000, + 43.96116400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF078118", + "description": "RELAIS LYON MONTLUEL", + "amenity": "charging_station", + "start_date": "2021-06-17", + "charging_station:output": "54 kW", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FRHPCPNF078118", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680644" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07120000000, + 45.84510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-28;2024-04-04", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49007T;FRS49E49007020", + "charging_station:output": "22 kW", + "description": "ANGERS - Rue Louis Gain;OuestCharge - Diva Sp - Angers - Louis Gain", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53992500000, + 47.46906800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PZZRYEL", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "94286", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/ZZRYEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74452000000, + 49.08730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH08E59295005", + "description": "HAZEBROUCK - Rue d'Aire", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53206600000, + 50.71495100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30091001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "CONGENIES - Cent Noyers", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16026800000, + 43.77351300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "socket:type2_combo:output": "42 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2014-06-30", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "description": "Le faouët - Rue des écoles", + "ref:EU:EVSE": "FRS56PVEYPEA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48967000000, + 48.03060200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "owner:ref:FR:SIREN": "802343343", + "amenity": "charging_station", + "operator": "ZEENCO", + "start_date": "2024-07-02", + "opening_hours": "24/7", + "description": "JM automobile 57", + "charging_station:output": "22 kW", + "network": "ZEENCO", + "operator:email": "franck.legardeur@zeenco.tech", + "ref:EU:EVSE": "FRLMSE1234636593" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24128400000, + 49.19050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Stains - Bois Moussay;Métropolis/FR*MGP*P93072*B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93072B", + "start_date": "2022-12-21", + "owner:ref:FR:SIREN": "885354860", + "ref": "514952", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36774300000, + 48.95552300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Shell Honegger - Le Havre", + "network": "Shell Honegger - Le Havre", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "start_date": "2024-01-10", + "capacity": "13", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "150 kW;125 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRSHEE329;FRSHEE328;FRSHEE330;FRSHEE331", + "ref:EU:EVSE": "FRSHEE329;FRSHEE328;FRSHEE330;FRSHEE331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10428711000, + 49.48956387000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2024-04-29", + "ref:EU:EVSE": "FRBE1E38253001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Belambra Hôtels - Promenade des Ecrins Le village", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13025890000, + 45.02024380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - A26 Champ Roland", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89369820", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92796500000, + 49.44571500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Garat | Parking Sainte-Catherine", + "operator": "190__SDEG16", + "ref": "76aef4bb-d3e3-5522-83c7-973839bea539" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25103700000, + 45.62277200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "description": "Gare SNCF - BEAURAINVILLE", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62BEGA", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89476600000, + 50.42334000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-08", + "description": "Allego Carrefour Vaulx en Velin", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9007772;FRALLEGO9007771;FRALLEGO9004723;FRALLEGO9004722;FRALLEGO9002162;FRALLEGO9001181;FRALLEGO9001182;FRALLEGO9002161;FRALLEGO9004721;FRALLEGO9007591;FRALLEGO9007592", + "ref": "FRALLEGO9007772;FRALLEGO9007771;FRALLEGO9002162;FRALLEGO9001181;FRALLEGO9001182;FRALLEGO9002161;FRALLEGO9004721;FRALLEGO9004722;FRALLEGO9004723;FRALLEGO9007591;FRALLEGO9007592", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "network": "Allego Carrefour Vaulx en Velin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93116672000, + 45.74781197000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COMINES - Armentieres;COMINES - Armentières", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3779EVCP01;LFR3779EVCP02", + "ref": "LFR3779EVCP01;LFR3779EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98453400000, + 50.75054800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BREST - Boulevard De Plymouth", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM29E29019006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52245100000, + 48.38762000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPOTIJNYI4G7", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "OTIJNYI4G7;79132", + "description": "Réseau eborn/OTIJNYI4G7;Devoluy, La Joue du Loup", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89159500000, + 44.68871600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P9216118610857299697", + "opening_hours": "24/7", + "ref": "1144344", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLY8DHPRY28259", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25319900000, + 48.52721200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "42", + "description": "STRASBOURG - Wodli", + "start_date": "2022-10-20", + "ref:EU:EVSE": "FRP07E674820033;FRP07E674820032;FRP07E674820031;FRP07E67482003;FRP07E674820034" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73762000000, + 48.58700200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHXKNZ664DA;FREBNP31038080104471698", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "HXKNZ664DA;346754", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Crau, Parking du Collége Rue Louis Meric;Réseau eborn/HXKNZ664DA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07780000000, + 43.14760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1078134", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Road/66277cef7f2203001cf69aa7", + "ref:EU:EVSE": "FREFLP2928355297505687398", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28794800000, + 44.79040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "E.LECLERC - ARES - ZONE 1", + "network": "E.LECLERC", + "ref": "FR*SOD*S*OTHR*270*9*_*_;FR*SOD*S*OTHR*270*8*_*_;FR*SOD*S*OTHR*270*6*_*_;FR*SOD*S*OTHR*270*4*_*_;FR*SOD*S*OTHR*270*3*_*_;FR*SOD*S*OTHR*270*17*_*_;FR*SOD*S*OTHR*270*16*_*_;FR*SOD*S*OTHR*270*14*_*_;FR*SOD*S*OTHR*270*13*_*_;FR*SOD*S*OTHR*270*11*_*_;FR*SOD*S*OTHR*270*10*_*_;FR*SOD*S*OTHR*270*1*_*_;FR*SOD*S*OTHR*270*12*_*_;FR*SOD*S*OTHR*270*15*_*_;FR*SOD*S*OTHR*270*18*_*_;FR*SOD*S*OTHR*270*2*_*_;FR*SOD*S*OTHR*270*5*_*_;FR*SOD*S*OTHR*270*7*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "ref:EU:EVSE": "FROTHPOTHR27091;FROTHPOTHR27041;FROTHPOTHR27031;FROTHPOTHR27021;FROTHPOTHR270171;FROTHPOTHR270161;FROTHPOTHR270151;FROTHPOTHR270141;FROTHPOTHR270131;FROTHPOTHR270121;FROTHPOTHR270111;FROTHPOTHR27011;FROTHPOTHR270101;FROTHPOTHR270181;FROTHPOTHR27051;FROTHPOTHR27061;FROTHPOTHR27071;FROTHPOTHR27081", + "start_date": "2021-11-08;2021-11-05", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11301200000, + 44.76989900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6606395", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6606395", + "network": "CGED ALES", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CGED ALES", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11075500000, + 44.11922200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4015839499191914682", + "description": "Freshmile France/L6FBP3FUUF", + "network": "Freshmile France", + "ref": "694256", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18957300000, + 48.63837100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "charging_station:output": "11 kW;22 kW;47 kW", + "ref": "1167534", + "description": "WAAT/s531850", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P1469994330419613694", + "capacity": "9", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19727300000, + 48.67771500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597744", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7652952053462605572", + "description": "Freshmile France/BQNSBIB36O", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17871800000, + 49.11377700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "aguerin@seeyousun.fr", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "description": "Rambouillet", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSYSEFDPRAM", + "start_date": "2022-05-02", + "network": "Foncière des parcs", + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82743600000, + 48.62409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref": "682238", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P584003038136351699", + "description": "Freshmile France/RHN6Y2IMIA", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508700000, + 45.51496800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Kia - Grimal - Castres", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPGRIMALKIA811001", + "start_date": "2021-07-13", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22007200000, + 43.59391200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "description": "Brasparts-Rue Saint-michel", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2901600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.95580100000, + 48.30296300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P1572171881311002737", + "description": "SDEA 10/VLM91FGX8V", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "694412", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04721700000, + 48.30828100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "575888;64f82520-043d-4bda-931b-4d54e0e55a5f", + "description": "Zephyre/1918025;GHO Fontainebleau Royal", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "819251398", + "ref:EU:EVSE": "FRZP1PEAC42087;FRZP1PEAC42086;FRZP1PEAC42085;FRZP1PEAC42084;FRZP1P2673215582607553643", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "network": "GHO Fontainebleau Royal;Zephyre", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68912400000, + 48.40471100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "Garage_Grellier", + "owner:ref:FR:SIREN": "839265948", + "ref:EU:EVSE": "FRROSE749", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48971200000, + 46.76354700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "79435", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/estreescomcom", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PESTREESCOMCOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82981000000, + 49.87400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-29", + "ref:EU:EVSE": "FRIZFPFAST15723;FRIZFPFAST15722;FRIZFPFAST15713;FRIZFPFAST15712;FRIZFPFAST15711;FRIZFPFAST15721", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - MAGNY-EN-VEXIN", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*157*1*_*_;FR*SOD*S*FAST*157*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80066490000, + 49.14653770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4684;FRS41E4685", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E4684;FRS41E4685", + "description": "MODULO - TROO - Pl. de la libération", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - TROO - Pl. de la libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79107800000, + 47.77521400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P6053613763365176735", + "ref": "598164", + "description": "Mouv'Oise/OBVPAQ1U14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06196700000, + 49.11521200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-03-02", + "opening_hours": "24/7", + "description": "SFS01 - CENTRE-GARE", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*67*2*_*_;FR*SOD*S*LYON*67*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON6711;FRGLYPLYON6712;FRGLYPLYON6721;FRGLYPLYON6722", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85253200000, + 45.70623500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-16", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - SORIGNY - Pl. Antoine de St Exupéry", + "opening_hours": "24/7", + "network": "MODULO - SORIGNY - Pl. Antoine de St Exupéry", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E214056;FRS37E214057", + "ref": "FRS37E214056;FRS37E214057" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69318000000, + 47.25629900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-09", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PYVXMZJ", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Kernascléden - Rue des Rohan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31849100000, + 48.00795400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Garage Quantin", + "operator": "E-TOTEM", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "description": "Garage Quantin", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRG10P03107A", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P03107A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09371000000, + 46.11886500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2019-05-30", + "amenity": "charging_station", + "ref": "FRN54E216078;FRN54E216077;FRN54E187728;FRN54E187727", + "capacity": "4", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - NANCY - Rue Jacques Villermaux", + "ref:EU:EVSE": "FRN54E216078;FRN54E216077;FRN54E187728;FRN54E187727", + "network": "MODULO - NANCY - Rue Jacques Villermaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19956000000, + 48.69310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PLACE FRANCOIS MAURIAC - VILLEPARISIS", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*204*1*_*_", + "start_date": "2021-11-18", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE20411;FRSIGPSIGE20412", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61286200000, + 48.95303100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001794;FRCG0E001792;FRCG0E001793", + "amenity": "charging_station", + "start_date": "2023-03-13", + "network": "BUREAU VALLEE - 91700 - 1", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRCG0E001794;FRCG0E001792;FRCG0E001793", + "description": "BUREAU VALLEE - 91700 - 1", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34721800000, + 48.62337600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ALLENERGIES", + "charging_station:output": "30 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "socket:type2_combo:output": "30 kW", + "network": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "operator:email": "contact@allenergies.fr", + "description": "Brico Marché Revel Tourdan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03000000000, + 45.37000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "9e4a8b75-7076-5931-9b1e-566f62dedc8c", + "description": "MOBIVE | Chalus | Place du Champ de Foire", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97958700000, + 45.65169700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE86CABA", + "charging_station:output": "24 kW;22 kW", + "description": "BUFFALO GRILL - CHASSENEUIL DU POITOU", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-04-25", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36389600000, + 46.65095700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*97*1*_*_", + "start_date": "2020-03-05", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "LE CANNET - PARKING PALESTRE", + "ref:EU:EVSE": "FRA16PWIIZ9712;FRA16PWIIZ9711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98402600000, + 43.56885100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3398EVCP02;LFR3398EVCP01;LFR3398EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "FOIX Espagne", + "ref": "LFR3398EVCP02;LFR3398EVCP01;LFR3398EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62590000000, + 42.94872600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM38E38111001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CLAIX - Place du Champ de Foire", + "start_date": "2023-01-19", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67058900000, + 45.11904500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "75290;ULSFSOW4Z1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPULSFSOW4Z1;FREBNULSFSOW4Z1", + "start_date": "2020-08-26", + "description": "Réseau eborn/ULSFSOW4Z1;Bormes-Les-Mimosas, Sentier des Pêcheurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36190000000, + 43.12415000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471021", + "description": "Freshmile France/C1UPCJWJBM", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P66255221536181061", + "network": "Freshmile France", + "opening_hours": "24/7", + "capacity": "10", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72785800000, + 48.62188900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-03-02", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E92063002", + "description": "RUEIL-MALMAISON - Masséna" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18075970000, + 48.87352920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPPHVETX", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75218;PHVETX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Epagny Metz-Tessy, Rue de la Liberté;Réseau eborn/PHVETX", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09085000000, + 45.93780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Saint-Martin-d'Hères - Colisée", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMHCO", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75748100000, + 45.16520100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "30", + "network": "EFFIA France", + "start_date": "2024-01-17", + "description": "Parking Gare d'Avignon TGV P6 - EFFIA", + "ref:EU:EVSE": "FRP01E840070033;FRP01E84007003;FRP01E840070031;FRP01E840070032" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78151970000, + 43.92234210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6643025;FRCPIE6643015", + "start_date": "2022-10-28", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRCPIE6643025;FRCPIE6643015", + "charging_station:output": "22 kW", + "network": "HMV MOYENMOUTIER 2", + "operator:email": "info@chargepoint.com", + "description": "HMV MOYENMOUTIER 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88017100000, + 48.37587100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRECHPSQAXHVYUL0", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "network": "Easycharge services", + "description": "La Baule , Parking du Cimetière", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref": "SQAXHVYUL0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385000, + 47.29464201000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | boulevard Pereire 170", + "ref": "FR*V75*PPX17*25", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "ref:EU:EVSE": "FRV75PPX1725", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29220360000, + 48.88242490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "441036", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P177105697793358498", + "description": "Freshmile France/TDNK46PZBA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73860400000, + 48.52248200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Rue des Poissonniers 150", + "ref": "FR*V75*P9018*03", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901803", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35275800000, + 48.89767100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRFR1P2207232670454404976", + "description": "Freshmile France/X6DOW05MMB", + "ref": "694352", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33933000000, + 44.73389100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-11", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Hyundai - Théobald Automobiles - Thionville", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPTHEOBALDHYUNDAI577001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:30-12:00, Sa 14:00-17:30", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15864900000, + 49.33897200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2917400", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Ploneour Lanvern-Rue René le Berre", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28014600000, + 47.90194700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11185002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LAGRASSE - Parking P1 D212", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62277777800, + 43.09055560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "128990;128991", + "network": "FDG Automobiles", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "848969044", + "ref:EU:EVSE": "FRZPEE22AC128991;FRZPEE22AC128990", + "description": "FDG Automobiles - Coulonges - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:00-18:30", + "start_date": "2022-04-15", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59176364000, + 46.47844882000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PRAT - BONREPAUX - D 117", + "ref:EU:EVSE": "FRS09E09235001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02068300000, + 43.03113400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80P2723762796040111968", + "description": "FDE 80/IQIL9BNYXZ", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "412040", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62313000000, + 50.21496700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*347*1*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRIZFPFAST34713;FRIZFPFAST34712;FRIZFPFAST34711", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-10-08", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "description": "IZIVIA FAST - MCDONALDS - HAGETMAU", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61828980000, + 43.63326990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-22;2024-04-17;2024-04-18", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44069B;FRS44E44069002", + "description": "GUERANDE - Rue Jean-Baptiste Legeay;OuestCharge - Diva Sp - Guerande - Legeay", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.43108200000, + 47.32540400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77182001;FRS77P77182A", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH6188B0GYCB085NCB34", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-13;2016-08-10", + "description": "LA FERTE-GAUCHER - Rue Ernest Delbet;La-Ferté-Gaucher - Ernest Delbert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30576700000, + 48.78202800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "charging_station:output": "150 kW;47 kW", + "description": "GreenYellow Shift Mobility/59", + "ref": "1007625", + "ref:EU:EVSE": "FRGYMP2312759039860328940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68126000000, + 47.85874900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LA RICHE - Pl. Sainte-Anne", + "capacity": "2", + "network": "MODULO - LA RICHE - Pl. Sainte-Anne", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "start_date": "2023-11-01", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220407;FRS37E220303", + "ref:EU:EVSE": "FRS37E220407;FRS37E220303" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66659900000, + 47.39067200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "39__CCBP", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "description": "CCBP - Parking Port de Plansance - Champigneules", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0950a849-b9ac-5077-b360-f52a5651b766" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16701700000, + 48.73500100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Super U", + "charging_station:output": "120 kW;22 kW", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "owner:ref:FR:SIREN": "442619227", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com", + "description": "Super U Bricquebec" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62020000000, + 49.47628000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bessines-Sur-Gartempe | Rue des Grands Jardins", + "charging_station:output": "50 kW;43 kW", + "ref": "71a2e5ee-1a22-54a5-823f-dbf5098c2414", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37161600000, + 46.10780700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-12-18", + "ref:EU:EVSE": "FRSIPE94076002", + "description": "VILLEJUIF - Rue René Thibert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36282460000, + 48.80546350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRCPIE6557945;FRCPIE6557935;FRCPIE6534365", + "amenity": "charging_station", + "network": "SUPER GRANIER BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "SUPER GRANIER BORNE 2", + "ref:EU:EVSE": "FRCPIE6557945;FRCPIE6557935;FRCPIE6534365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96616500000, + 45.56274400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/R84F9WYP2R", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P2412392551040055574", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "477780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150500000, + 43.51775400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "e80c31a8-71bf-52e2-8c15-b8cd1a26f12c", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Ares | Mairie | Rue Pierre Pauillhac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13898300000, + 44.76534300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Réseau AlterBase - Valdelaume / Bouin - Grande rue", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2018-10-08", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB63086A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01273700000, + 46.08378100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS31700P3", + "capacity": "2", + "description": "Airbus - Blagnac - P04", + "amenity": "charging_station", + "start_date": "2023-06-16", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38949500000, + 43.62487900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "description": "MARLY - Barbusse", + "ref:EU:EVSE": "LFR4158EVCP01;LFR4158EVCP02;LFR4158EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4158EVCP01;LFR4158EVCP02;LFR4158EVCP03", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54068300000, + 50.35103600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE37921;FRM06PNICE37911;FRM06PNICE37912;FRM06PNICE37922", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*379*2*_*_;FR*SOD*S*NICE*379*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ISOLA 2000 - PARKING P1", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14956200000, + 44.18990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "THIERY - PARKING VILLAGE", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*177*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-23", + "ref:EU:EVSE": "FRA16PWIIZ17711;FRA16PWIIZ17712", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03144200000, + 43.97843700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529691", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "description": "Freshmile/V4H4VQXES1", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRFR1P1298016785298098701", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13555800000, + 50.67828400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Bricomarché - Estancarbon", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PBRCEST", + "network": "Power Dot France", + "start_date": "2022-09-21", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76071590000, + 43.11606400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPOYO5JSDPCS", + "ref": "96119", + "description": "Réseau eborn/OYO5JSDPCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35242000000, + 45.46647400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Marseille - Hôtel Ibis Gare Saint Charles", + "opening_hours": "24/7", + "start_date": "2024-06-27", + "ref:EU:EVSE": "FRELCPMARHI", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38261400000, + 43.30282800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "45", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E315550052;FRP07E31555005;FRP07E315550051;FRP07E315550053;FRP07E315550054", + "start_date": "2023-01-06", + "description": "TOULOUSE - Saint Georges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45072000000, + 43.60329800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Chaspuzac, Aérodrome", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-11-20", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPHMCSUP77H7", + "ref": "HMCSUP77H7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76284000000, + 45.07478000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPOVIWXTLG8F;FRECHP3881020515891901180", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "description": "Golbey , Salle Schuman;Easy Charge/OVIWXTLG8F", + "ref": "OVIWXTLG8F;756909", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41927900000, + 48.19778000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP102109", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - A4 Longeville Nord", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65928900000, + 49.13216200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626144", + "description": "Freshmile France/KU6VNMWPRI", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9135056057726742846", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34369800000, + 48.70459900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX09*05", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "description": "Paris | Rue de la Chaussée d'Antin 5", + "ref:EU:EVSE": "FRV75PPX0905", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33388620000, + 48.87164130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2150532935879491728", + "ref": "1084824", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLVQOT3Q82D0MB", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62221400000, + 47.75091600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Best Western - Bastia", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBESTWESTERN202001", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-06-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44087500000, + 42.70272900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25PLQHELL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "102404", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/LQHELL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76868000000, + 47.38940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E214519", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - BOURGES - Séraucourt", + "operator": "Modulo", + "description": "MODULO - BOURGES - Séraucourt", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2022-10-20", + "ref:EU:EVSE": "FRS18E214519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39869100000, + 47.07899100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78380002", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "MAULE - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84930000000, + 48.90919000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*28*9*_*_;FR*SOD*S*QPRK*28*8*_*_;FR*SOD*S*QPRK*28*7*_*_;FR*SOD*S*QPRK*28*4*_*_;FR*SOD*S*QPRK*28*2*_*_;FR*SOD*S*QPRK*28*10*_*_;FR*SOD*S*QPRK*28*1*_*_;FR*SOD*S*QPRK*28*3*_*_;FR*SOD*S*QPRK*28*5*_*_;FR*SOD*S*QPRK*28*6*_*_", + "description": "QPARK - 73011 CHAMBERY - CASSINE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQPKPQPRK2871;FRQPKPQPRK2851;FRQPKPQPRK2841;FRQPKPQPRK2831;FRQPKPQPRK2821;FRQPKPQPRK28101;FRQPKPQPRK2811;FRQPKPQPRK2861;FRQPKPQPRK2881;FRQPKPQPRK2891", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "start_date": "2022-07-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92055000000, + 45.57233600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "CAMBON D'ALBI - Rue De L'Ecole", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2017-09-12", + "ref:EU:EVSE": "FRS81E8105200112;FRS81E8105200111;FRS81E8105200121;FRS81E8105200122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21478001135, + 43.91372962450 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Langres Noidant", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE409100", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE409100", + "start_date": "2019-11-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59859300000, + 43.42185000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHERBOURG EN COTENTIN (TOURLAVILLE) - Algues", + "ref:EU:EVSE": "FRS50P50602001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2017-08-11", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56553800000, + 49.65417500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-12;2016-02-23", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "SOLERS - Rue De La Tournelle;Solers", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH6188ZPT0CHFCQQM031", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77457001;FRS77P77457A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71725400000, + 48.65777600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "300 kW;150 kW", + "owner:ref:FR:SIREN": "531681043;531681042;531681040;531681039;531681037;531681035;531681029;531681030;531681031;531681033;531681032;531681036;531681034;531681038;531681041;531681044", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "description": "RELAIS METZ ST PRIVAT", + "ref": "FRHPCPNF080063", + "ref:EU:EVSE": "FRHPCPNF080063", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05260000000, + 49.17910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SELLES SUR CHER - Allée Gravouille", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E233191;FRS41E233190", + "ref": "FRS41E233191;FRS41E233190", + "network": "MODULO - SELLES SUR CHER - Allée Gravouille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55739100000, + 47.27362900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PXZZHAR", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Étel - Ruelle des Champs", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20436000000, + 47.65767700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON1912;FRGLYPLYON1911;FRGLYPLYON1921;FRGLYPLYON1922", + "ref": "FR*SOD*S*LYON*19*2*_*_;FR*SOD*S*LYON*19*1*_*_", + "description": "VEN05 - JACQUES DUCLOS - STADE LAURENT GUERIN", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-02-05", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89177000000, + 45.69748500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "490887", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92019B", + "start_date": "2022-07-09", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Express - Châtenay-Malabry - Bergerac;Métropolis/FR*MGP*P92019*B", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25067200000, + 48.76856500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "description": "Citroën - Hazebrouck", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDACITROEN591901", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-02-14", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55184400000, + 50.72875700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT AUBIN CELLOVILLE - Rue de l'église ", + "start_date": "2022-10-24", + "ref:EU:EVSE": "FRC01E76558001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15889200000, + 49.36577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P8352340438563409050", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/QLTQGIT4ND", + "ref": "694391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12757800000, + 45.76126900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Martillac | Rue Jacques Monod | Technopole", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "10637e82-a27c-5b3e-8740-c5b9b6f27e1e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58463200000, + 44.70985400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS95E95476002", + "operator": "Bouygues E&S", + "description": "OSNY - Rue Aristide Briand", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-23", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05789270000, + 49.06277750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Green To Wheel", + "description": "ANGOULEME BERTRAND", + "network": "ANGOULEME BERTRAND", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-01-23", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRALLPBER019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17806400000, + 45.69053400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/LLMG1LLAFPJN58", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P482876895645976220", + "capacity": "10", + "ref": "971990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64948100000, + 49.58837800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PAQC0J4PNTP", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Aubagne, Place du Souvenir Français", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57455200000, + 43.29273600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P1955316546831381601", + "operator:email": "roaming@freshmile.com", + "description": "SDEY/YNHYGWHKLB", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref": "892857", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23235900000, + 47.84957800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*31*1*_*_", + "description": "SERANON PARKING PLACE JOSEPH REBUFFEL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ3112;FRA16PWIIZ3111", + "start_date": "2018-06-14", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70394700000, + 43.77384600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8428209616894541649", + "ref": "892284", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIVUI391SHRE2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74365200000, + 44.52234300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Pavé des Minimes - Toulouse", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-05-25", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PPDMTLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43318190000, + 43.62634780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LW8YIBIVNR", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP1356148507570252852", + "ref": "741099" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92914600000, + 43.12156800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "1034832", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "network": "EVzen", + "description": "EVzen/D673346A-614A-4213-B693-3C62AC8AE784", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "240 kW", + "ref:EU:EVSE": "FREVZP7941642796566274902", + "charging_station:output": "240 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84236500000, + 46.36366100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*632*1*_*_", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "MILLAU DIFF", + "ref:EU:EVSE": "FROTHPOTHR63211;FROTHPOTHR63212", + "operator:email": "sav@izivia.com", + "description": "MILLAU DIFF - CASTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31156700000, + 43.63316600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref": "QNFNVB;85739", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPQNFNVB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/QNFNVB;Annecy, Rue de la Fraternité" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12930000000, + 45.91240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "TGYAPJC0IY;30425", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Orcières, Merlette - Casse Blanche;Réseau eborn/TGYAPJC0IY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPTGYAPJC0IY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32675600000, + 44.69505800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AMSOM - MAC ORLAN", + "ref": "FR*SOD*S*OTHR*323*5*_*_;FR*SOD*S*OTHR*323*4*_*_;FR*SOD*S*OTHR*323*3*_*_;FR*SOD*S*OTHR*323*2*_*_;FR*SOD*S*OTHR*323*1*_*_;FR*SOD*S*OTHR*323*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "AMSOM HABITAT", + "opening_hours": "24/7", + "start_date": "2021-10-15", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW", + "ref:EU:EVSE": "FROTHPOTHR32351;FROTHPOTHR32311;FROTHPOTHR32321;FROTHPOTHR32331;FROTHPOTHR32341;FROTHPOTHR32361" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32280000000, + 49.87734200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2799236579907749052", + "description": "Freshmile France/WOJ0SHUXRA", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "446597", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95061000000, + 49.03630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1525", + "ref": "FR*V75*PPX15*25", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-07", + "capacity": "4", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue de Cronstadt 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30260000000, + 48.83490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4687403832758587942", + "ref": "626195", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/NZ5AHMP1BV", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52857200000, + 48.84490700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Hyundai - Théobald Automobiles - Nancy", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPTHEOBALDHYUNDAI545201", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-09-06", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13125000000, + 48.69109900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PTOURNYCENTRE", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900109", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54614600000, + 49.18534200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22093002", + "description": "Planguenoual-Rue des ponts neufs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.57723000000, + 48.53167000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY27E78591001", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Seymaborne", + "description": "SEPTEUIL - Place De La Mairie Louis Fouché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67921000000, + 48.89208700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Kiloutou_Breuil", + "start_date": "2022-01-27", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE219", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45922240000, + 49.38366130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ANDRESY - Sentier des Garennes", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78015004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04292200000, + 48.96611910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-07", + "ref": "FRIOYE408553;FRIOYE408552;FRIOYE408502;FRIOYE408503;FRIOYE408504;FRIOYE408505;FRIOYE408551", + "description": "Morières", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Morières", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE408553;FRIOYE408552;FRIOYE408502;FRIOYE408503;FRIOYE408504;FRIOYE408505;FRIOYE408551", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91212277000, + 43.92298703000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS52P5508057237691119772", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "474492", + "description": "SDED52/SMOCKAISVV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06177400000, + 47.78596800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65388001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT LARY SOULAN - Parking téléphérique", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31975000000, + 42.81658000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-06-01", + "ref": "FRIENE004102;FRIENE004101", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE004102;FRIENE004101", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Bonnieres sur Seine", + "network": "Bonnieres sur Seine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56692814000, + 49.01681833000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34296001", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "SAUSSINES - Avenue de Montpellier - Parking Ecole (Boulodrome)", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05648888889, + 43.76230560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61074A", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "CARROUGES", + "ref": "SE61-CARR-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14481600000, + 48.56812400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5801624682128941542", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLPWFJNNQ2J8WF", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "998820", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16961700000, + 48.59317800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/SSDAJP;Pechbonnieu, 8 Mai 1945", + "amenity": "charging_station", + "ref": "SSDAJP;33406", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PSSDAJP", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2017-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46728000000, + 43.70540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "description": "Ford - Saint Claude", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2020-10-09", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPGRENARDFORD392001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82837100000, + 46.38092100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "2 kW;50 kW;22 kW", + "start_date": "2023-09-09", + "ref:EU:EVSE": "FRCG0E001906;FRCG0E001905;FRCG0E001904;FRCG0E000084;FRCG0E000080;FRCG0E000081;FRCG0E000082;FRCG0E001901;FRCG0E001902;FRCG0E001903", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "BMW Envergure - Niort - 79000 - 2", + "description": "BMW Envergure - Niort - 79000 - 2", + "opening_hours": "24/7", + "ref": "FRCG0E001906;FRCG0E001905;FRCG0E001904;FRCG0E000084;FRCG0E000080;FRCG0E000081;FRCG0E000082;FRCG0E001901;FRCG0E001902;FRCG0E001903", + "capacity": "10", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40440000000, + 46.33941500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-09-02;2020-08-11", + "ref": "FR*SOD*S*NICE*101*1*_*_;FR*SOD*S*NICE*101*2*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE10121;FRM06PNICE10112;FRM06PNICE10111;FRM06PNICE10122", + "description": "NICE - PARKING ST FRANCOIS DE PAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26961100000, + 43.69574200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Gabarret | Parking Rue Attenschwiller", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW", + "ref": "f584f013-6967-5e21-9635-b8678cb307b1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00855200000, + 43.98666000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-04-05", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE54MXHA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "IBIS Longwy - Mexy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78840500000, + 49.50053200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "16;15;13;14", + "amenity": "charging_station", + "description": "Bump - Paripark - Olivier Metra - Paris", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRBMPS14;FRBMPS13;FRBMPS15;FRBMPS16", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39335660000, + 48.87354340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "VEZIN LE COQUET Sévigné", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR2907EVCP01;LFR2907EVCP02", + "ref": "LFR2907EVCP01;LFR2907EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73601300000, + 48.10434400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PABIQLDXW2C", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-4E, Avenue des Chartreux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40073600000, + 43.31001200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "347186", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "TE90/TAEZPA", + "network": "TE90", + "ref:EU:EVSE": "FRS90P7740725863695703151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81410700000, + 47.68318900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310COGPLACEVH", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P83310*COG*PLACEVH", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2020-01-03", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "PLACE VICTOR HUGO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53465900000, + 43.25067500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1194109", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4708572331616009309", + "network": "Freshmile France", + "description": "Freshmile France/LLXLVDBE59GPBL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18775400000, + 49.09631700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Super U - Rohrbach-lès-Bitche", + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2022-11-09;2023-05-30", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYURLB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28413709113, + 49.04740710018 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Colombe, ZA Bievre Dauphine;Réseau eborn/W3MF1HLOKZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPW3MF1HLOKZ", + "ref": "W3MF1HLOKZ;30119" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47607200000, + 45.38506200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Fastned Aire de Saint Hilaire Cottes", + "operator": "Fastned France", + "ref:EU:EVSE": "FRFASE33104", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_combo:output": "300 kW", + "ref": "FRFASE33104", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW", + "description": "Fastned Aire de Saint Hilaire Cottes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37980400000, + 50.57241000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "LAFUMA MOBILIER", + "start_date": "2022-07-19", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SENT*354*2*_*_;FR*SOD*S*SENT*354*1*_*_", + "description": "LAFUMA - ANNEYRON - PARKING NORD", + "ref:EU:EVSE": "FROTHPSENT35421;FROTHPSENT35411", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87780100000, + 45.27171100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLTFWFNB923BSY;1052532", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP8728240419196565320;FREBNPLLTFWFNB923BSY", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-06", + "description": "La Motte-Servolex, Rue le Cheminet;Réseau eborn/LLTFWFNB923BSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88224000000, + 45.59534000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2023-03-01", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Ollioules, Adeto Technopole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPXYQVQRLNOV", + "ref": "XYQVQRLNOV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86720300000, + 43.12407300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR44442;FROTHPOTHR44441;FROTHPOTHR44422;FROTHPOTHR44421;FROTHPOTHR44411;FROTHPOTHR44412;FROTHPOTHR44431;FROTHPOTHR44432", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "INTERMARCHE - MARGNY LES COMPIEGNE", + "start_date": "2022-08-04", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*444*1*_*_;FR*SOD*S*OTHR*444*2*_*_;FR*SOD*S*OTHR*444*3*_*_;FR*SOD*S*OTHR*444*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83225000000, + 49.42922800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "597753", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "description": "Freshmile France/CQGSUXY7EB", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P837624865427934688" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035900000, + 43.41160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "ref:EU:EVSE": "FRUBIE10092892;FRUBIE10088046;FRUBIE10084920;FRUBIE10084198;FRUBIE10065917;FRUBIE10058363;FRUBIE10052768;FRUBIE10045663;FRUBIE10039441;FRUBIE10033245;FRUBIE10020602;FRUBIE10000730;FRUBIE10003816;FRUBIE10012220;FRUBIE10064682;FRUBIE10090010", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "start_date": "2022-08-04;2022-11-23;2022-12-01", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Vallee Bereult Sud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17237300000, + 49.49946600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3472559063379030796", + "ref": "1167402", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLV2F4A3Y2P20R", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15496200000, + 49.10060300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "Station-service de l'aire de Magny-Cours", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "67a28a73-dcfe-55d4-83e9-13d1c8c580c0", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16152100000, + 46.87209400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TRCBSB", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "812169", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8647214601883514208", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84057700000, + 43.69786800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "457461", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/GQX8TOZGDZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8535634520715349186" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422000000, + 49.22069500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hôtel Beauséjour 3 - 22kWh;Hôtel Beauséjour 2 - 22kWh;Zephyre/LP009E81;Zephyre/LP009E7D;Hôtel Beauséjour 1 - 22kWh;Zephyre/LP009E85;Zephyre/LP009E8A;Hôtel Beauséjour 4 - 22kWh", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7;Fr 00:00-09:30,We,Tu,Fr,Th,Su,Sa,Mo 00:00-23:59,Mo 12:00-23:59,Su,Sa 01:00-01:15;Fr,Tu,Sa,Mo,Th,We,Su 00:00-23:59,Mo 12:00-23:59,Sa,Su 01:00-01:15,Fr 00:00-09:30;Fr,Th,Mo,Sa,Tu,Su,We 00:00-23:59,Su,Sa 01:00-01:15,Fr 00:00-09:30,Mo 12:00-23:59;Sa,Su 01:00-01:15,Fr,Th,Tu,We,Su,Mo,Sa 00:00-23:59,Fr 00:00-09:30,Mo 12:00-23:59", + "owner:ref:FR:SIREN": "378657613", + "network": "Zephyre;Hôtel Beauséjour", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref:EU:EVSE": "FRZP1P145823;FRZP1P6647462636107296635;FRZP1P1506743358823435282;FRZP1P126480;FRZP1P3135655567043722342;FRZP1P128989;FRZP1P2008604360774743027;FRZP1P215796", + "ref": "682985;701360;701357;d3d70e2a-19a7-486d-b028-37ddc392e3da;696530", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36595300000, + 48.08431900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "QUILLAN - Place De La Gare", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11304001", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18250000000, + 42.87361110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLETTE - Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78677001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69200000000, + 48.92700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "9848f183-6ed3-56a6-be33-ee4c96201e22", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator": "38__Blénod", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BLENOD LES PONT A MOUSSON | Blénod-lès-Pont-à-Mousson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04506400000, + 48.88354900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66196001", + "operator": "Bouygues E&S", + "description": "SOREDE - Route De Laroque Des Albères", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95021800000, + 42.53035300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-09-04", + "amenity": "charging_station", + "ref": "FR*SOD*S*IKEA*143*7*_*_;FR*SOD*S*IKEA*143*6*_*_;FR*SOD*S*IKEA*143*5*_*_;FR*SOD*S*IKEA*143*4*_*_;FR*SOD*S*IKEA*143*3*_*_;FR*SOD*S*IKEA*143*21*_*_;FR*SOD*S*IKEA*143*18*_*_;FR*SOD*S*IKEA*143*15*_*_;FR*SOD*S*IKEA*143*14*_*_;FR*SOD*S*IKEA*143*13*_*_;FR*SOD*S*IKEA*143*11*_*_;FR*SOD*S*IKEA*143*1*_*_;FR*SOD*S*IKEA*143*10*_*_;FR*SOD*S*IKEA*143*12*_*_;FR*SOD*S*IKEA*143*16*_*_;FR*SOD*S*IKEA*143*17*_*_;FR*SOD*S*IKEA*143*19*_*_;FR*SOD*S*IKEA*143*20*_*_;FR*SOD*S*IKEA*143*2*_*_;FR*SOD*S*IKEA*143*22*_*_;FR*SOD*S*IKEA*143*8*_*_;FR*SOD*S*IKEA*143*9*_*_", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "IKEA BREST - COLLABORATEURS & CLIENTS", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIKAPIKEA14381;FRIKAPIKEA14371;FRIKAPIKEA14351;FRIKAPIKEA14341;FRIKAPIKEA14321;FRIKAPIKEA143191;FRIKAPIKEA143181;FRIKAPIKEA143171;FRIKAPIKEA143161;FRIKAPIKEA143111;FRIKAPIKEA14311;FRIKAPIKEA143101;FRIKAPIKEA143121;FRIKAPIKEA143131;FRIKAPIKEA143141;FRIKAPIKEA143151;FRIKAPIKEA143201;FRIKAPIKEA143211;FRIKAPIKEA143221;FRIKAPIKEA14331;FRIKAPIKEA14361;FRIKAPIKEA14391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.44027900000, + 48.41757400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "description": "REDON - 9 rue du Capitaine Martin (Place du Parc Anger) ", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35236003B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08786100000, + 47.64963000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-10-07", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63040*B;SIEG63 - ePremium - Billom - Voutes", + "opening_hours": "24/7", + "ref": "518249", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63040B", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33838800000, + 45.72456100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/ZKXJSWERB9", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7929901807907936925", + "operator": "Freshmile | FR*FR1", + "ref": "742980" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98943400000, + 45.53882300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-23", + "description": "Saint-Félix-Lauragais ", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PLLNBP85712PBXC", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile SAS", + "ref": "UFUV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88928797004, + 43.44913852671 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOISY-LE-SEC - Rue Marc Sangnier", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE93053001", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45873760000, + 48.89547960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000925", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-09-10", + "description": "Super U Saint Jean de Monts - GUYON - 3", + "opening_hours": "24/7", + "ref": "FRCG0E000925", + "charging_station:output": "22 kW", + "network": "Super U Saint Jean de Monts - GUYON - 3", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03586500000, + 46.80108500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*2*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - AUGUSTE GAL RP", + "ref:EU:EVSE": "FRM06PNICE222;FRM06PNICE221", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-08-10", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28644000000, + 43.70510100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "54649cd3-f510-561a-ac05-647430fba34e", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Bias | Parking du Dojo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67050500000, + 44.41650800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-10-07", + "ref": "FR*SOD*S*SIGE*36*6*_*_;FR*SOD*S*SIGE*36*5*_*_;FR*SOD*S*SIGE*36*4*_*_;FR*SOD*S*SIGE*36*3*_*_;FR*SOD*S*SIGE*36*2*_*_;FR*SOD*S*SIGE*36*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3631;FRSIGPSIGE3611;FRSIGPSIGE3621;FRSIGPSIGE3641;FRSIGPSIGE3651;FRSIGPSIGE3661", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "description": "SIGEIF - 76 AVENUE DE VERDUN - CHATILLON", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28280600000, + 48.80968100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76231001", + "description": "ELBEUF - Place Aristide Briand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00651400000, + 49.29115500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT LOUIS", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR2810EVCP01", + "capacity": "2", + "amenity": "charging_station", + "ref": "LFR2810EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54349500000, + 47.60333600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS33PMB3316222;FRS33PMB3316221;FRS33PMB3316211;Non concerné;FRS33PMB3316212", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Libourne | Centre Aquatique Zone des Dagueys;LIBOURNE - CENTRE AQUATIQUE ZONE DES DAGUEYS", + "amenity": "charging_station", + "start_date": "2020-12-09", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "capacity": "2;4", + "ref": "FR*SOD*S*MB33*162*2*_*_;FR*SOD*S*MB33*162*1*_*_;ad679986-e49e-51c5-8da6-4ea1000da27a", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24497600000, + 44.94428900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PLDVNFW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "description": "SDE82/LDVNFW", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "368767" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84019000000, + 43.96700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "owner:ref:FR:SIREN": "832489801", + "description": "PARKING DU TENNIS - LOURMARIN", + "ref:EU:EVSE": "FR55CP84160M0UTENN1S", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84160*M0U*TENN1S", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36659200000, + 43.76396500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3446EVCP05;LFR3446EVCP03;LFR3446EVCP01;LFR3446EVCP02;LFR3446EVCP04", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3446EVCP05;LFR3446EVCP03;LFR3446EVCP01;LFR3446EVCP02;LFR3446EVCP04", + "capacity": "10", + "description": "NOYAL CHATILLON SUR SEICHE Lavoisier", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67973300000, + 48.03948400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-01-16", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché Super - Hersin-Coupigny", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRPD1PITMHCP", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63803000000, + 50.45274800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNSEE0ZJGLH;FREBNP5015622904995023391", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Perreux, Rue des écoles;Réseau eborn/NSEE0ZJGLH", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref": "NSEE0ZJGLH;591350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12366500000, + 46.03798300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2024-07-02", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122S", + "description": "e-Totem - BIARRITZ Parking Beaurivage ", + "ref:EU:EVSE": "FRETIP64122S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56598763738, + 43.47647317497 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "description": "Chaussea - Chenôve", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCHACHE", + "start_date": "2024-04-24", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01913196627, + 47.28255892756 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market Tartas", + "opening_hours": "24/7", + "start_date": "2023-12-12;2023-12-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT404001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80420300000, + 43.82553700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "description": "Tourcoing - Action", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPTRCAC", + "start_date": "2023-11-16", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18027200000, + 50.72354800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "description": "VOLKSWAGEN - FOUGERES", + "amenity": "charging_station", + "network": "VOLKSWAGEN", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*556*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR55613;FROTHPOTHR55612;FROTHPOTHR55611", + "start_date": "2023-07-11", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18712000000, + 48.35554900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TAG_GO_ZI_REP2 BORNE 1", + "ref": "FRCPIE6752205", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-08-09", + "network": "TAG_GO_ZI_REP2 BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6752205", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34002600000, + 46.61311300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "479250", + "description": "Freshmile France/YVTKWXLYSL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5407805400766453986" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55657000000, + 48.58640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75P900203", + "description": "Paris | Rue Étienne Marcel 52", + "network": "Belib'", + "start_date": "2021-11-25", + "ref": "FR*V75*P9002*03", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34224400000, + 48.86578800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7092112422952813946", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/EJ0APYSPRG", + "ref": "466005", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93129500000, + 42.69295900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRTSLP1736", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Clermont-Ferrand", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14148800000, + 45.78593700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3453915316556847241", + "ref": "971786", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Freshmile France/LLM0OP0D7STLKM", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79815900000, + 48.96200900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;75 kW;150 kW", + "description": "SABA", + "operator:email": "contact@nexteneo.com", + "network": "SA TRANSPORTS FRANCONY", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 12:00-14:00", + "capacity": "3", + "socket:type2_combo:output": "75 kW;150 kW", + "ref:EU:EVSE": "FR0NXPOOLTMC8P", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11191400000, + 45.88167200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1112331", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLWRTGW8R1F33S", + "ref:EU:EVSE": "FRS14P4063043710808965944", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00400000000, + 49.34302200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12183001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PLAISANCE - Parking de Covoiturage", + "start_date": "2023-06-27", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54565800000, + 43.92613000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA5LFPIB91NN", + "ref:EU:EVSE": "FRWA5P543169807731170036", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "972746", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29977400000, + 48.81154000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-27;2024-04-11;2024-04-10", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Leger-sous-Cholet - 14 Décembre 1863;SAINT-LEGER-SOUS-CHOLET - Parking 14 Décembre 1863", + "ref:EU:EVSE": "FRS49E49299001;FRS49P49299A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91100400000, + 47.09224800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81070001", + "start_date": "2022-12-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "COUFOULEUX - Avenue Jean Berenguier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73128900000, + 43.81664600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS CCHPB", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "Centre ville de Boulay-Moselle - Boulay-Moselle", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "4_AM0003_CCHPB", + "ref": "a9073e4c-aca0-55a3-a77c-61c4a869733e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49277500000, + 49.18359700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS46E46042001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2021-05-25;2021-11-03", + "description": "CAHORS - Parking bessière", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43782500000, + 44.45244700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS63P63470B", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref": "518468", + "description": "SIEG 63/FR*S63*P63470*B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04223100000, + 45.87167600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH03E59475001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-03-31;2021-09-17", + "description": "PROUVY - Yellow Parc", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46269900000, + 50.33746000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2918500", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "description": "Plouescat-Rue Charles le Goffic", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.17603600000, + 48.65845900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94042002", + "description": "JOINVILLE LE PONT - Place du 8 mai 1945", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46688000000, + 48.81685000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "start_date": "2023-12-28", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - B&B Hôtel Tours Sud Joué-lès-Tours", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90155367" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64692700000, + 47.34585800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Faux | D22 | Parking Mairie", + "ref": "194ab7ef-1be2-5f53-b0ea-eb54f4fd4210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64259700000, + 44.79083600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE46911;FRSIGPSIGE46912", + "network": "SIGEIF", + "start_date": "2024-04-30", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*469*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - 2 RUE DU 18 JUIN 1940 - ROSNY-SOUS-BOIS", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49118210000, + 48.86337710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "NANTES SAINT HERBLAIN", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSNTESH", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-12-06", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60516000000, + 47.22177000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3983EVCP01;LFR3983EVCP02;LFR3983EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3983EVCP01;LFR3983EVCP02;LFR3983EVCP03", + "socket:type2_combo:output": "120 kW", + "description": "THONON LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49847200000, + 46.38124100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "6e3554bb-b9b4-5cd7-90d7-4059f2546a1a", + "capacity": "2", + "description": "MOBIVE | Arbonnes | Parking Mairie", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55094300000, + 43.43212900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTAIGU-VENDEE (BOUFFERE) - Rue Du Fléchet", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85027001", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-14", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35104100000, + 46.95766400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO8007712;FRALLEGO8001971;FRALLEGO8001962;FRALLEGO8001961;FRALLEGO8001972;FRALLEGO8007011;FRALLEGO8007012;FRALLEGO8007711", + "network": "ALLEGO;Allego FR, Tikehau, TJ2 Bourges", + "description": "TIKEAU - Bourges;Allego FR, Tikehau, TJ2 Bourges", + "capacity": "8", + "operator": "Allego", + "ref:EU:EVSE": "FRALLEGO8007712;FRALLEGO8001962;FRALLEGO8001961;FRSITE00000213;FRALLEGO8001971;FRALLEGO8001972;FRALLEGO8007011;FRALLEGO8007012;FRALLEGO8007711", + "amenity": "charging_station", + "operator:email": "info@allego.eu;info.allego.france@allego.eu", + "socket:type2_combo:output": "0 kW;150 kW", + "opening_hours": "24/7", + "charging_station:output": "0 kW;150 kW;22 kW", + "owner:ref:FR:SIREN": "842718512", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43997900000, + 47.09526200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3386EVCP02;LFR3386EVCP01;LFR3386EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3386EVCP02;LFR3386EVCP01;LFR3386EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "AHUY Vigier", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03573400000, + 47.35475700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "description": "KFC - Valence", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PKFCVAL", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88313800000, + 44.90203600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-11", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Toulon, Parking Fosse à Bois;Réseau eborn/YADWXN16SX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPYADWXN16SX;FREBNP700427122339844884", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "782331;YADWXN16SX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93426400000, + 43.11247800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "538041732", + "ref": "Non concerné", + "ref:EU:EVSE": "FREVBP2110201", + "network": "270 AGENCY", + "amenity": "charging_station", + "capacity": "1", + "description": "270 AGENCY", + "start_date": "2021-11-12", + "opening_hours": "Mo 9:00-18:00, Tu 9:00-18:00, We 9:00-18:00, Th 9:00-18:00, Fr 9:00-18:00", + "charging_station:output": "22 kW", + "operator:email": "contact@270agency.com", + "operator": "270 AGENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51084430150, + 44.80124139895 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Escatel Hotel - Mâcon", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-04-04", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PESCMAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82367342576, + 46.31592586785 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "0daa1360-178b-11ef-9262-0242ac120002", + "start_date": "2023-11-08", + "description": "Saint-Aubin-sur-Scie", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRE000049914539", + "network": "HOTEL LE NORMANDIE", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "912348414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07680000000, + 49.89889000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Geoffroy Guichard", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42218BT", + "start_date": "2023-09-11", + "opening_hours": "24/7", + "ref": "FRESEPS42218BT", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38873153745, + 45.46015629630 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*11*6*_*_;FR*SOD*S*OTHR*11*5*_*_;FR*SOD*S*OTHR*11*1*_*_;FR*SOD*S*OTHR*11*2*_*_;FR*SOD*S*OTHR*11*3*_*_;FR*SOD*S*OTHR*11*4*_*_", + "network": "SYSTEME U", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR1162;FROTHPOTHR1153;FROTHPOTHR1143;FROTHPOTHR1141;FROTHPOTHR1132;FROTHPOTHR1131;FROTHPOTHR1121;FROTHPOTHR1111;FROTHPOTHR1112;FROTHPOTHR1122;FROTHPOTHR1133;FROTHPOTHR1142;FROTHPOTHR1151;FROTHPOTHR1152;FROTHPOTHR1161;FROTHPOTHR1163", + "start_date": "2017-11-15;2023-07-20;2023-07-21", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "SUPER U - NOIRMOUTIER-EN-LILE", + "operator:email": "sav@izivia.com", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24794300000, + 46.99112700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-09", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6919365", + "ref:EU:EVSE": "FRCPIE6919365", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "EMERIA STATION 1", + "description": "EMERIA STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07426300000, + 48.63874200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4998674954784217430", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "594407", + "charging_station:output": "22 kW", + "description": "Freshmile France/VF5EU1QLKV", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60330300000, + 48.12875500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL CHÂLONS EN CHAMPAGNE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP122021", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40028500000, + 48.93936700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "454119", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/QGMC7P1GHH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5687975644994996343" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90880000000, + 46.56280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-20", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPJFCHYUNDAI277001", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - JFC - Les Andelys", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:00-12:00, Sa 13:30-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40789100000, + 49.24471000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P6303065627923090041", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1036149", + "network": "Freshmile France", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMHHC6TU2LLN4", + "opening_hours": "Th,We,Mo,Tu 05:00-21:00,Fr 05:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27849400000, + 45.36671800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - MAINTENON - Pkg. rue D'Harleville", + "description": "MODULO - MAINTENON - Pkg. rue D'Harleville", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E128960", + "ref": "FRS28E128960" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57836600000, + 48.58934600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/R8RWH8HXZS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P4432106809123098841", + "ref": "461901", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34661100000, + 49.18169400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA6LEONHSYS2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128051", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P3627857594640559948" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66710700000, + 48.95510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-14", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "BREHAL - rue de la Plage", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50290001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51603790000, + 48.89821900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "description": "PUYLAURENS - Place Du Foirail", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS81E81219001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01379300000, + 43.57081800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680960;531680957;531680959;531680958", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059994", + "description": "REL.MONDEVERT", + "start_date": "2022-12-28;2023-03-23", + "ref": "FRHPCPNF059994", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09930000000, + 48.08890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Andreze - Mairie;ANDREZE - Place de la Mairie", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49006A;FRS49E49006001", + "start_date": "2021-04-22;2024-04-13;2024-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95420500000, + 47.17140400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-04-25", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS59E59608001", + "charging_station:output": "22 kW", + "description": "VENDEGIES SUR ECAILLON - Rue Basse", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50923740000, + 50.26187500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH06E6209900", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-27", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BEAURAINS - Rue Pierre Curie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78589000000, + 50.26095700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30020001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AUBORD - Place Sihol", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-16", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31234500000, + 43.75698000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PESZPPD", + "start_date": "2016-12-06", + "description": "Rieux - Rue de la Briqueterie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10149300000, + 47.63102300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052781;FRLMSE12346052782", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "socket:type2_combo:output": "120 kW", + "description": "CHAUVIGNY HPC-1", + "start_date": "2020-06-12", + "operator": "SOREGIES MOBILITES", + "ref": "B141", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64476000000, + 46.56827000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "514934", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRMGPP93059A", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P93059*A;Metropolis - Express - Pierrefitte-sur-Seine - Gabriel Péri", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-05-31", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35903900000, + 48.96330200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "304891641", + "network": "Réseau de recharge Sogestran", + "operator": "SGA Industries", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;1.7 kW", + "start_date": "2021-03-10", + "opening_hours": "Mo-Fr 08:00-19:00", + "ref:EU:EVSE": "FRSGAP1D2006", + "operator:email": "contact@sga-automation.com", + "description": "D2006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15329300000, + 49.48322000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "317803443", + "amenity": "charging_station", + "capacity": "1", + "description": "EIFFAGE GENIE CIVIL - ROLAND", + "opening_hours": "24/7", + "ref": "333055", + "operator": "AUTORECHARGE SAS ", + "charging_station:output": "22 kW", + "network": "AUTORECHARGE SAS", + "start_date": "2022-05-01", + "ref:EU:EVSE": "FRAU1E0017", + "operator:email": "contact@autorecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56635509807, + 48.71728225183 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - A41 Bois Claret", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-01-11;2022-12-21", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89369705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86878400000, + 45.24758100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Saint Paul | Parking de la Salle des Fêtes", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64e56189-6cc9-542d-a006-52043d14fdbd", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43182900000, + 45.74929300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MONTHUREUX SUR SAONE - Pl. de la République", + "start_date": "2023-05-23", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS88E161826;FRS88E161828", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - MONTHUREUX SUR SAONE - Pl. de la République", + "ref:EU:EVSE": "FRS88E161826;FRS88E161828" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96886000000, + 48.02970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GIVORS", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLPEVCARSGIVOR", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "start_date": "2024-05-03", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75268000000, + 45.58520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR2679EVCP02;LFR2679EVCP01", + "ref": "LFR2679EVCP02;LFR2679EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "WAZIERS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10171500000, + 50.38847000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "Marseille-13E, 6 Chemin de Palama", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PWLH6PU4ONQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43785100000, + 43.35249800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ZZAOSWZCD5;30416", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/ZZAOSWZCD5;Les Orres, Parking Horizon", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPZZAOSWZCD5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55740000000, + 44.49520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "597738", + "network": "Freshmile France", + "description": "Freshmile France/BGK8U5EEDE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8281227154704688705", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.54131900000, + 16.25249400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-09-14", + "capacity": "9", + "description": "Intersport - Clermont-Ferrand", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PIMCCMF", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14759641561, + 45.75826959133 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Chamonix-Mont-Blanc, Parking du Corzolet", + "ref:EU:EVSE": "FREBNPEWBWX8MWV7", + "ref": "EWBWX8MWV7", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87501030000, + 45.92584870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Intermarché Chamboeuf", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP42043A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP42043A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-08-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30242598768, + 45.58427833624 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "description": "PAYS RHENAN - GARE DE HERRLISHEIM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR24311;FROTHPOTHR24312", + "ref": "FR*SOD*S*OTHR*243*1*_*_", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.90797900000, + 48.72513600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCI CAEN STATION 2", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6600385", + "start_date": "2022-10-12", + "network": "CCI CAEN STATION 2", + "ref:EU:EVSE": "FRCPIE6600385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39265200000, + 49.20378000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1273248380469299813", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/XAIIQFT7IW", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529778", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22030200000, + 47.90274300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "120713", + "amenity": "charging_station", + "description": "WAAT/s437283", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P1606952338799554992", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35017400000, + 48.74178200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLWQ782O92F18U", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1157349", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7020051603812342746" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17397200000, + 49.23696300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-09", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "ref": "1234594788", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "ABB 24kW VW Gap", + "ref:EU:EVSE": "FRSWSE1234594788", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10141600000, + 44.56723000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5089444931282634641;LFR3342EVCP01", + "description": "Freshmile/C9NIVDRMEM;ST JUST EN CHAUSSEE Tailbouis", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "ref": "LFR3342EVCP01;529133", + "network": "LIDL;Freshmile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42930200000, + 49.51158800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPTERRESDUSUD473201", + "amenity": "charging_station", + "capacity": "4", + "description": "Terres du Sud", + "opening_hours": "24/7", + "start_date": "2023-10-10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37699300000, + 44.36058200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - AUNEAU - Rue Pasteur", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E225520", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E225520", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - AUNEAU - Rue Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77512100000, + 48.46314600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "483048492", + "start_date": "2022-06-22", + "capacity": "2", + "amenity": "charging_station", + "ref": "ec4b9d5d-0bf2-4aa4-b255-72308a3d4da4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "network": "TV MOSAIK CRISTAL", + "charging_station:output": "22 kW", + "description": "TV MOSAIK CRISTAL", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08300100000, + 49.11801000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39785", + "ref:EU:EVSE": "FRS10P5644130842998043309", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/EOSAEXVXOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50012700000, + 48.54072500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "576149;576143", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P8321965693326071916;FRZP1P585192823478256999", + "charging_station:output": "22 kW", + "description": "Zephyre/LP006A78;Zephyre/LP006A7D", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85670000000, + 43.50205300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265965;839265964", + "description": "Sorofi_Montceau", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE580", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35862180000, + 46.68815810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "34030", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PZZXQHP", + "description": "SDE82/ZZXQHP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90065000000, + 44.06900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-29", + "description": "IZIVIA FAST - MCDONALDS - MARSEILLE LA VALENTINE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*128*1*_*_;FR*SOD*S*FAST*128*2*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST12823;FRIZFPFAST12812;FRIZFPFAST12811;FRIZFPFAST12813;FRIZFPFAST12821;FRIZFPFAST12822", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48348810000, + 43.29350500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4373;FRS41E4374", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E4373;FRS41E4374", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - BLOIS - Av. du Maréchal Maunoury", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BLOIS - Av. du Maréchal Maunoury" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33825200000, + 47.59342500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "38818", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Ansauvillers", + "ref:EU:EVSE": "FRS60PANSAUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38401000000, + 49.56460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON4321;FRGLYPLYON4311;FRGLYPLYON4312;FRGLYPLYON4322", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "LY902 - AVENUE ROSA PARKS", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*43*1*_*_;FR*SOD*S*LYON*43*2*_*_", + "start_date": "2021-02-18", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78997700000, + 45.78673400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT DIONISY - Parking Chemin D'Azord", + "ref:EU:EVSE": "FRS30E30249001", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23195300000, + 43.80742400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-09-30", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Noyal-pontivy - Avenue de la Libération", + "ref:EU:EVSE": "FRS56PLNEXBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87981200000, + 48.06709200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "bf55ffa3-b3a6-47af-a385-1238518c4580", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-01-03", + "ref:EU:EVSE": "FRLUMEBRITHOTELLODGEGOLF11", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "BRIT HOTEL LE LODGE DU GOLF " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91403390000, + 43.47387800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "capacity": "4", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "511163", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMW1P4566370898358015720", + "operator": "Mobilygreen | FR*MW1", + "description": "Mobilygreen CPO/bc25baf2-172e-41cf-823d-7ba8011392bc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36386000000, + 43.83780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 3 RUE PAUL GAUGUIN - MITRY-MORY", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2021-08-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE17811;FRSIGPSIGE17812", + "ref": "FR*SOD*S*SIGE*178*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64223200000, + 48.97456900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRCG0E001508;FRCG0E001507;FRCG0E001506", + "amenity": "charging_station", + "description": "BL Nantes - 44119 - 1", + "opening_hours": "Fr 14:00-18:00,Th 14:00-18:00,We 14:00-18:00,Tu 14:00-18:00,Sa 08:00-12:00,Fr 08:00-12:00,Th 08:00-12:00,We 08:00-12:00,Tu 08:00-12:00,Mo 14:00-18:00,Mo 08:00-12:00", + "network": "BL Nantes - 44119 - 1", + "capacity": "3", + "charging_station:output": "50 kW;22 kW", + "ref": "FRCG0E001508;FRCG0E001507;FRCG0E001506", + "operator:email": "info@chargeguru.com", + "start_date": "2024-01-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58896100000, + 47.27814100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89881492", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2023-11-13", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo -Hôtel Campanile Villefranche s/Saône", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73819100000, + 45.99051400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Avit | Allee Mamoura", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "73da123e-4809-5687-8f1c-c20b3fe67fc4", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44968300000, + 43.91688900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "MEAUX - Colisée", + "start_date": "2023-06-20", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE77MXRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90210200000, + 48.94367900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9005452;FRALLEGO9005451;FRALLEGO9005392;FRALLEGO9003852;FRALLEGO9003792;FRALLEGO9003791;FRALLEGO9003851;FRALLEGO9005391", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Francheville", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Francheville", + "ref:EU:EVSE": "FRALLEGO9005452;FRALLEGO9005451;FRALLEGO9003851;FRALLEGO9003792;FRALLEGO9003791;FRALLEGO9003852;FRALLEGO9005391;FRALLEGO9005392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77463210000, + 45.73427065000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3393EVCP04;LFR3393EVCP01;LFR3393EVCP02;LFR3393EVCP03", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "AUBERVILLIERS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3393EVCP04;LFR3393EVCP01;LFR3393EVCP02;LFR3393EVCP03", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37715900000, + 48.92091300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTPELLIER - Rue De La Castelle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34172005", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86796300000, + 43.57612000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "TJJ9KFP8UM;85706", + "ref:EU:EVSE": "FREBNPTJJ9KFP8UM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/TJJ9KFP8UM;Nivolas-Vermelle, Square Du 8 Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30582000000, + 45.55735200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LRBN9SNHY0", + "ref:EU:EVSE": "FRFR1P7205606571837729949", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "454080", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74951000000, + 48.54890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "description": "SAINT RAPHAEL - Parking de la Gare", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E831180012;FRP07E831180011;FRP07E83118001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2021-05-31;2024-08-07", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76975200000, + 43.42280600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMONTMARAULTH", + "ref": "montmaraulth;231577", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/montmaraulth;Montmarault, Boulevard Tourret", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95552000000, + 46.31710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Villeparisis - CC Les portes de l'Ambrésis", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPVPRCC", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-06-27", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62414500000, + 48.94564800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking gare de Changis Nord P+R - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E77084001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01473200000, + 48.95702690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6632045", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CGED CGED LONS", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6632045", + "network": "CGED CGED LONS", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41874700000, + 43.30483100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Besançon, Parking Beauquier;Easy Charge/LLX0CC60KFGQJF", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref": "LLX0CC60KFGQJF;1123323", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPLLX0CC60KFGQJF;FRECHP7708214358855890503", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "start_date": "2024-06-04", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01537000000, + 47.25272000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "description": "Paris | Rue Rémusat 8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1629", + "ref": "FR*V75*PPX16*29", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27230590000, + 48.84784780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile/KZMOD3XW3U", + "ref:EU:EVSE": "FRFR1P5533605923146237259", + "operator:email": "roaming@freshmile.com", + "ref": "346436", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90038000000, + 48.94350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00694", + "amenity": "charging_station", + "capacity": "1", + "description": "TACHARD AUTOMOBILES - EGLETONS", + "operator": "TotalEnergies Marketing France", + "ref": "FRTCBP00694", + "network": "PSA Agents France", + "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 09:00-12:00,14:00-19:00", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "332574540", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-08-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03604072464, + 45.39793431000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "435111", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/DNGMRSFWLE", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2891354042995667416", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58866300000, + 47.60104500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:30-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPWESTHYUNDAI790001", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Niort", + "start_date": "2022-05-05", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41534600000, + 46.33435500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2913400", + "charging_station:output": "22 kW", + "description": "Locronan-Rue du Prieuré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21191600000, + 48.09824400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11091002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "CHALABRE- Rue des Mécaniques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00476400000, + 42.98084400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "owner:ref:FR:SIREN": "686850223", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0.0 kW", + "opening_hours": "Mo-sat 08:00-18:00", + "operator:email": "advenir@zeborne.com", + "description": "Peugeot NOMBLOT ", + "ref": "142947", + "ref:EU:EVSE": "FRZPEE142947", + "network": "NOMBLOT VILLEFRANCHE", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0E-11, + 0E-11 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LA BASTIDE DE SEROU - Avenue De La Gare", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS09E09042001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42956400000, + 43.01288600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/ruebeffroi", + "ref:EU:EVSE": "FRS80PRUEBEFFROI", + "operator:email": "roaming@freshmile.com", + "ref": "64643", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66911000000, + 50.27230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - MONDEVILLE", + "ref:EU:EVSE": "FRIZFPFAST26912;FRIZFPFAST26911;FRIZFPFAST26913", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-09-24", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*269*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33059550000, + 49.17945150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2021-04-20", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44043A;FRS44E44043001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Clisson - Boutin;CLISSON - Rue Docteur Boutin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27946100000, + 47.08998700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "be738123-1a3b-48d4-8394-e366c8695ac4", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "charging_station:output": "22 kW", + "description": "COMPANS - Parking Ferrières;Compans - parking Ferrières", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77123001;FRS77P77123A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66420800000, + 48.99334600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "ref:EU:EVSE": "FRGSPP1000085916;FRGSPP1000085951", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Thalazur Bains de Camargue", + "description": "Thalazur Bains de Camargue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12532296907, + 43.51809840945 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220178;FRS37E220180", + "capacity": "2", + "network": "MODULO - POCE SUR CISSE - Clos du potager", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - POCE SUR CISSE - Clos du potager", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220178;FRS37E220180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99066400000, + 47.44392800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "44__CCCPH", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "af2968b3-23cf-5a2e-b62a-7c4b0f7e4224", + "description": "CCCPH - Bouligny", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74194300000, + 49.29334600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "4", + "description": "CLOS DE LA VAUPALIERE", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "network": "CLOS DE LA VAUPALIERE", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P76150A", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P76150A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01377500000, + 49.48169500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.3 kW;7 kW", + "description": "MOBIVE | AGEN | Rue Diderot Parking TE 47", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "5b80aef1-6691-5b7c-b218-9d6c5578e878", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61998300000, + 44.20059300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*294*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE29412;FRSIGPSIGE29411", + "start_date": "2022-08-16", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 37 RUE DE LA BARRE - ENGHIEN-LES-BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31464400000, + 48.96543500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6516605", + "start_date": "2024-05-08", + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCPIE6516605", + "network": "GVA EPINAL ABB", + "description": "GVA EPINAL ABB", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47730800000, + 48.18756100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "Non concerné", + "owner:ref:FR:SIREN": "341055705", + "amenity": "charging_station", + "capacity": "1", + "description": "Leclerc Biars", + "start_date": "2021-08-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "operator:email": "stephane.henry@scaso.fr", + "network": "Leclerc Biars", + "operator": "BIARS DISTRIBUTION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84335800000, + 44.92435800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Mareuil | Place de la Felibre", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "67c11041-e1de-56e8-b531-867a7d39c79c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45119600000, + 45.45165600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSEOPAB34119A", + "network": "AlterBase", + "description": "Réseau AlterBase - La Ferrière-en-Parthenay - Place de l'Eglise", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2015-07-03", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07448800000, + 46.65490200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Airbus ADS - Toulouse - Parking G1NORD", + "start_date": "2024-03-11", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS314006", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49649600000, + 43.55999000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3063EVCP02;LFR3063EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3063EVCP02;LFR3063EVCP01", + "description": "NEUVILLE LES DIEPPE Ch. Nicolle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11074600000, + 49.92391500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/O075GC5TMJ", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref": "414768", + "ref:EU:EVSE": "FRM45P8961547252332552872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90307100000, + 47.90391300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-04-09", + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*15*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ1511;FRA16PWIIZ1512", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "GRASSE PARKING SALLE OMNISPORTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92708900000, + 43.65687200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P1522494631004256022", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "Freshmile France/MAGQFS", + "ref": "909867", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88569000000, + 48.00620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bricomarché - Chauny", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRPD1PBCMCHY", + "start_date": "2022-05-11", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21425140000, + 49.62569860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "LLTHE8SLQ6N5HJ", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPLLTHE8SLQ6N5HJ", + "operator:email": "contact@reseau-eborn.fr", + "description": "LeChamp-Pres-Froges, Parking Allée 2000", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92708800000, + 45.27535000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "11 kW;300 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPHAUNO", + "opening_hours": "24/7", + "description": "Hauconcourt - Novotel", + "start_date": "2024-04-11", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17170500000, + 49.21743400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-06-15;2023-10-26", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "ref:EU:EVSE": "FRP07E132020042;FRP07E132020041;FRP07E13202004;FRP07E13055004", + "description": "MARSEILLE - République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37203890000, + 43.29898440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-20", + "ref": "FRCPIE6699585;FRCPIE6699575", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "MAIRIE SMDL PARKING RDC", + "network": "MAIRIE SMDL PARKING RDC", + "ref:EU:EVSE": "FRCPIE6699585;FRCPIE6699575" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.46077700000, + 42.74057100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRECHP5676300743812794534", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "description": "Easy Charge/LLUVAZL70U6GN1", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "1188568", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46558200000, + 48.72350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP103112", + "operator": "Greenflux", + "description": "ENGIE Vianeo - A71 La Ferté St-Aubin", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW;62.5 kW", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92935300000, + 47.66370500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1025388", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7307461922228344006", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLSLIUQZD1UFJF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00735000000, + 44.90156300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Boulevard des Invalides 21", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0715", + "ref": "FR*V75*PPX07*15", + "start_date": "2021-12-14", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31524470000, + 48.85581780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398957", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QQHTLB", + "ref:EU:EVSE": "FRFR1P6250186978540960152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61389600000, + 47.76883500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Volvo - Thibault Automobiles - Alençon", + "amenity": "charging_station", + "opening_hours": "Mo 08:15-12:00, Mo 14:00-19:00, Tu 08:15-12:00, Tu 14:00-19:00, We 08:15-12:00, We 14:00-19:00, Th 08:15-12:00, Th 14:00-19:00, Fr 08:15-12:00, Fr 14:00-19:00, Sa 09:30-12:00, Sa 14:00-18:00", + "capacity": "11", + "ref:EU:EVSE": "FRSSDPTHIBAULTVOLVO610001", + "charging_station:output": "50 kW;22.08 kW;7.36 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-11-23;2021-06-03;2021-05-18", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11360200000, + 48.44578200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25PVERCELVILLE", + "opening_hours": "24/7", + "ref": "79939", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/vercelville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39595000000, + 47.18190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - FARGES EN SEPTAINE - Mairie", + "ref:EU:EVSE": "FRS18E188336;FRS18E188337", + "description": "MODULO - FARGES EN SEPTAINE - Mairie", + "ref": "FRS18E188336;FRS18E188337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65022261000, + 47.07331786000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "ref": "1dba36be-0c2e-4786-b800-0631f46fadb2", + "description": "GARAGE SPEEDY", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "web@freshmile.com", + "owner:ref:FR:SIREN": "420326597", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "FRESHMILE", + "network": "FOURNIER GUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07508100000, + 49.11457100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - 92008 COLOMBES - VILLAGE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*QPRK*10*1*_*_;FR*SOD*S*QPRK*10*2*_*_", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2022-06-14", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRQPKPQPRK1021;FRQPKPQPRK1011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25593300000, + 48.92325900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81031001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-05-31", + "description": "LE BEZ - Communauté de Comunes Sidobre Vals et Plateaux/Route de Lignon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40733300000, + 43.63363600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "bench" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20625380000, + 49.97196480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Labenne Est", + "ref": "FRIONE402900", + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIONE402900", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10306100000, + 48.90886200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Saint-Etienne-De-Mer-Morte - Nantes;SAINT-ETIENNE-DE-MER-MORTE - Rue De Nantes", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44157001;FRS44P44157A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-26;2024-04-12", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74289000000, + 46.92994000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61B707RBDK5EFTM5VT", + "capacity": "2", + "start_date": "2016-09-07;2023-05-15", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Recloses;RECLOSES - Rue Des Champs", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77386001;FRS77P77386A", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63952800000, + 48.34618400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WARDRECQUES - Rue Haverskerques", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-04", + "ref:EU:EVSE": "FRH01E62875001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34401000000, + 50.71057900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E5579;FRS37E5580", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - CHARENTILLY - Pl. de la mairie", + "description": "MODULO - CHARENTILLY - Pl. de la mairie", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E5579;FRS37E5580" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60891100000, + 47.46999100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PFLENKG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21867", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/FLENKG", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98956000000, + 47.66650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-09-02", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*167*2*_*_;FR*SOD*S*LYON*167*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON16722;FRGLYPLYON16721;FRGLYPLYON16711;FRGLYPLYON16712", + "description": "LY907 - VAISE - DUPORT", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81184000000, + 45.78426500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "320 kW", + "ref:EU:EVSE": "FRMFCP2990829894744293232;FRMFCP7079234167475694458", + "amenity": "charging_station", + "charging_station:output": "320 kW;22 kW", + "description": "Mobilize Fast Charge/c1bdb350-bb42-416b-914d-0d6c53a5e353;Mobilize Fast Charge/6d87719c-148e-4a22-91ef-4047d975c3f1", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "opening_hours": "24/7", + "capacity": "1;6", + "network": "Mobilize Fast Charge", + "ref": "1130883;1131021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49793200000, + 47.11134100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLEMPEREUROPEL622171", + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2019-12-26", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Opel - Beaurains" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79696000000, + 50.26559800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6589465", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6589465", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CGED CGED PIERRELATT", + "description": "CGED CGED PIERRELATT", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71912600000, + 44.36172100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446834", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/UYYBBC9H8B", + "ref:EU:EVSE": "FRLE2P4172410372859408515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069200000, + 48.12488600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Biganos | Pei Gare", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "7b5d9b20-c8a3-5776-ae84-82bcd9b72a01", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96554200000, + 44.63793200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS95E95183001", + "operator": "Bouygues E&S", + "start_date": "2024-07-10", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "COURDIMANCHE - Chemin des Cygnes", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00375532086, + 49.04594261380 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-07;2024-04-09", + "operator": "Allego", + "description": "PATHE ARCHAMPS", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "network": "ALLEGO", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "ref:EU:EVSE": "FRSITE00000013", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12326880000, + 46.13889370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2575EVCP01", + "operator:email": "bornes@lidl.fr", + "description": "CAN MANDELIEU", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2575EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94800600000, + 43.55051900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PTISNEH7IUG", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Aix-En-Provence, Place Albert laforest", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42008300000, + 43.52236100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "description": "SDEY/EEP0X6NNHY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402494", + "ref:EU:EVSE": "FRS89P2822418514345698429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18165700000, + 47.54961900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*28*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-05-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ2811;FRA16PWIIZ2812", + "description": "ESCRAGNOLLES PARKING SALLE DES FETES", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79337400000, + 43.72894300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "242374", + "network": "Freshmile France", + "description": "Freshmile France/ATVPPC", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PATVPPC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89333000000, + 48.67130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMTICHO", + "capacity": "8", + "network": "Power Dot France", + "description": "Mondial Tissus - Cholet", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "start_date": "2024-02-08;2024-01-10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93062710000, + 47.06022200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPQSGWZRZ34C", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Rives, Place De La Liberation;Réseau eborn/QSGWZRZ34C", + "ref": "85709;QSGWZRZ34C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50364200000, + 45.35016600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/46AE4472-98D2-424C-9D43-E5BD01C05885", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1015908", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP2080255395780162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94493500000, + 46.72656500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-14", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "FAIVELEY", + "ref:EU:EVSE": "FROTHPOTHR60551;FROTHPOTHR60541;FROTHPOTHR60521;FROTHPOTHR605121;FROTHPOTHR605111;FROTHPOTHR605101;FROTHPOTHR60511;FROTHPOTHR60531;FROTHPOTHR60561;FROTHPOTHR60571;FROTHPOTHR60581;FROTHPOTHR60591", + "ref": "FR*SOD*S*OTHR*605*8*_*_;FR*SOD*S*OTHR*605*7*_*_;FR*SOD*S*OTHR*605*5*_*_;FR*SOD*S*OTHR*605*2*_*_;FR*SOD*S*OTHR*605*11*_*_;FR*SOD*S*OTHR*605*1*_*_;FR*SOD*S*OTHR*605*10*_*_;FR*SOD*S*OTHR*605*12*_*_;FR*SOD*S*OTHR*605*3*_*_;FR*SOD*S*OTHR*605*4*_*_;FR*SOD*S*OTHR*605*6*_*_;FR*SOD*S*OTHR*605*9*_*_", + "description": "FAIVELEY - AMIENS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27247500000, + 49.93245300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "PMYFKJ;79318", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPPMYFKJ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/PMYFKJ;Seyne, Saint Pierre", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35781000000, + 44.35210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/TOIG5O9FBL;Aspremont, Parking Coccimarket", + "ref": "TOIG5O9FBL;30368", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPTOIG5O9FBL", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72954000000, + 44.48811300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - A51 Aubignosc Ouest", + "socket:type2_combo:output": "300 kW;72 kW", + "amenity": "charging_station", + "start_date": "2023-09-05", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "charging_station:output": "300 kW;50 kW;72 kW;22 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP104113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97764100000, + 44.13356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/KZQZYL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "294338", + "ref:EU:EVSE": "FRFR1PKZQZYL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28882000000, + 48.17700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "ref": "FR*V75*PPX14*13", + "start_date": "2021-10-19;2021-10-27", + "description": "Paris | Boulevard Jourdan 26", + "ref:EU:EVSE": "FRV75PPX1413", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33707830000, + 48.82076040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1883468952211920478", + "description": "Freshmile France/WSKBVB1WJM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "598077", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69718300000, + 48.40366500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Les Sables du Midi (Camping Siblu) - Sérignan - zone 2", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2022-04-06;2022-06-02", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;7.36 kW;22.08 kW", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPSIBLU344102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28624100000, + 43.25722800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "description": "900030", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PNEUVELYRECENTRE", + "network": "SIEGE27", + "start_date": "2016-06-16", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74797400000, + 48.90776400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Le Gouray-Le Bourg (la gare)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22046002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48641100000, + 48.32917000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COURGENT - Rue Du Château D'Eau", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY07E78185001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66378330000, + 48.89064170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Bois_de_plaisance_1;Bois_de_plaisance_2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "ref:EU:EVSE": "FRROSE171;FRROSE172", + "capacity": "10", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77538000000, + 49.41470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWATP4460269010282941640", + "opening_hours": "24/7", + "description": "WAAT/FRWATLUNY42QH5", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "1107852", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23498800000, + 48.82005900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "network": "Garonne", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Garonne", + "start_date": "2019-03-15", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE401804;FRIOYE401801;FRIOYE401802;FRIOYE401803;FRIOYE401851;FRIOYE401852;FRIOYE401853", + "ref": "FRIOYE401804;FRIOYE401801;FRIOYE401802;FRIOYE401803;FRIOYE401851;FRIOYE401852;FRIOYE401853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596000, + 43.33458687000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E57469;FRS51E57470", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VILLE EN TARDENOIS - Rue Charles de Gaulle", + "network": "MODULO - VILLE EN TARDENOIS - Rue Charles de Gaulle", + "ref:EU:EVSE": "FRS51E57469;FRS51E57470" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80268000000, + 49.18237500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LASCAZERES - Place de la Laïcité", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65264001", + "start_date": "2023-02-16", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02563100000, + 43.50538000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Molompize", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE001502;FRIENE001501", + "ref:EU:EVSE": "FRIENE001502;FRIENE001501", + "network": "Molompize" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14464800000, + 45.25046500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34199003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "charging_station:output": "22 kW", + "description": "PEZENAS - Avenue François Curée - Ancien Parking France Télécom", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42147222222, + 43.45635560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPWZCTQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Pénestin - Boulevard de l'Océan", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47093300000, + 47.48212200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;60 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "ref:EU:EVSE": "LFR3698EVCP01;FRFR1P2378575692315179203;LFR3698EVCP02", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "ref": "559787;LFR3698EVCP01;LFR3698EVCP02", + "network": "LIDL;Freshmile", + "charging_station:output": "120 kW;22 kW;60 kW", + "description": "Freshmile/T1YNAOAES4;ST VIT Tenne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82873600000, + 47.18729100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE VIGAN - Parking Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30350001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60662100000, + 43.99322100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Village Maurin - Carrosserie", + "amenity": "charging_station", + "start_date": "2020-12-08", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPMAURINCARROSSERIE661001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90203800000, + 42.66571300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRCARP59646A", + "start_date": "2024-03-01", + "amenity": "charging_station", + "capacity": "4", + "network": "PROMOCASH WASQUEHAL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCARP59646A", + "charging_station:output": "22 kW", + "description": "PROMOCASH WASQUEHAL", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12636666904, + 50.65375057121 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-24;2023-03-09", + "network": "LUMI'IN", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "807940069", + "ref": "4d3a0cb6-c7db-11ed-afa1-0242ac120002;ad76910e-be6b-11ed-afa1-0242ac120002", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "ECOPARC DE MALIJAI;LUMI'iN MALIJAI ", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEMALIJAI571;FRLUMEMALIJAI441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05001600000, + 44.04692500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Georges de Didonne | Rue du Professeur Langevin", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "4cd9e095-f6ed-5129-83f5-520d82322720", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99193600000, + 45.60302900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-12-11", + "ref:EU:EVSE": "FRSE1PSE45DABA", + "description": "Douchy Montcorbon chemin des vignes", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05712600000, + 47.94200300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "description": "BornEco/64a2d9580f4133a306c11a22", + "ref:EU:EVSE": "FRBHMP8822439501438970325", + "charging_station:output": "7.4 kW", + "ref": "882354" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49865500000, + 48.76161100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3081EVCP01", + "operator:email": "bornes@lidl.fr", + "description": "ETABLES S/ MER", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3081EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83789600000, + 48.64237300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Salon-de-Provence, 270 Rue Victor Grignard", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PCJUSI0VOYH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05687200000, + 43.63851500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "1087098", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "66 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/LLTPNG6Y72NELF", + "socket:type2_combo:output": "66 kW", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P9193096466368826557" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51387800000, + 48.01980500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2024-09-01", + "operator": "R3", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FR3R3P90223022", + "description": "R3 - Jettingen - Agricenter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38423400000, + 47.59964900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P8416317436407367610", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/XPD0Y4AZML", + "charging_station:output": "7.4 kW;22 kW", + "ref": "435183", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255700000, + 43.29013300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-01-13", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYULUB", + "socket:type2_combo:output": "50 kW;150 kW", + "charging_station:output": "22 kW;50 kW;150 kW", + "description": "Super U - Lubersac", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39696100000, + 45.43674400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSJCGRO59VL", + "ref": "SJCGRO59VL", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Monestier-De-Clermont, Grande Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63375650000, + 44.91552850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "819761883", + "capacity": "2", + "amenity": "charging_station", + "network": "Mc Donald's Basse Terre", + "start_date": "2022-07-20", + "description": "Mc Donald's Basse Terre", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FREZDE63395", + "operator:email": "odile.coumau@ezdrive.fr", + "opening_hours": "24/7", + "ref": "FREZDE63396", + "operator": "Green Technologie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.72048039949, + 15.99910198934 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FROTHPOTHR81411;FROTHPOTHR81412", + "ref": "FR*SOD*S*OTHR*814*1*_*_", + "network": "ROTEL", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "ROTEL - THELUS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78014442790, + 50.35246276739 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saulce-Sur-Rhône, Parking Du Temple;Réseau eborn/VJR4KERRP4", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPVJR4KERRP4", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "capacity": "2;3", + "ref": "48406;VJR4KERRP4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79917200000, + 44.70252700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Thyez, Rue de la Mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPDHK0LKAJ25", + "ref": "DHK0LKAJ25", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54229116000, + 46.08405685000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref:EU:EVSE": "FROTHPOTHR41652;FROTHPOTHR41642;FROTHPOTHR41631;FROTHPOTHR41611;FROTHPOTHR41621;FROTHPOTHR41641;FROTHPOTHR41651", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*416*1*_*_;FR*SOD*S*OTHR*416*2*_*_;FR*SOD*S*OTHR*416*3*_*_;FR*SOD*S*OTHR*416*4*_*_;FR*SOD*S*OTHR*416*5*_*_", + "description": "INTERMARCHE - BIDART", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-08;2022-12-06;2022-09-12", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57305300000, + 43.44810300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRFR1P9192715932808779767", + "opening_hours": "24/7", + "ref": "492027", + "description": "Freshmile France/QUXPFGFXNE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13058500000, + 44.60943200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30243", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Saint-Pierre-d'Irube, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558093000, + 43.48210080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref": "232375", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PRACFXH", + "charging_station:output": "22 kW", + "description": "Freshmile France/RACFXH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727000000, + 48.61920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*TCB*PLP73210*1", + "description": "LA PLAGNE - Parking les mines", + "socket:type2_combo:output": "125 kW", + "charging_station:output": "125 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRTCBPLP732101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67644980000, + 45.51426200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/XR1ACRARZZ", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "801720", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2316346473137270538" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64619200000, + 42.40675100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "461922", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P4601594338300738619", + "description": "MobiSDEC/RTTMEX22VQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45771700000, + 49.33437700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "447800459", + "network": "Zephyre;Hôtel Kyriad St Jean de Védas", + "charging_station:output": "7.6 kW;22 kW", + "amenity": "charging_station", + "ref": "575894;682979;682970;e3fe50a9-db7e-4cc5-8e5d-e815d6d965bb;575906", + "capacity": "1", + "description": "Zephyre/1945432;Zephyre/LP009E70;Hôtel Kyriad St Jean de Védas - 22 kW AC;Zephyre/LP009E7C;Zephyre/1949697", + "opening_hours": "24/7", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref:EU:EVSE": "FRZP1P3440166598003725747;FRZP1P5047598679804518062;FRZP1P00014;FRZP1P6867109566312931816;FRZP1P00015;FRZP1P9189269148518280748", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83827000000, + 43.56793900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE386", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Cinema_Empire_Paray", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 46.46777500000, + 46.46777500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78498003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "POISSY - Place Racine", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02811000000, + 48.92189700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Agde", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Agde", + "ref:EU:EVSE": "FRIOYE469453;FRIOYE469452;FRIOYE469412;FRIOYE469411;FRIOYE469410;FRIOYE469407;FRIOYE469408;FRIOYE469409;FRIOYE469451", + "start_date": "2024-08-26", + "opening_hours": "24/7", + "ref": "FRIOYE469453;FRIOYE469452;FRIOYE469412;FRIOYE469411;FRIOYE469410;FRIOYE469407;FRIOYE469408;FRIOYE469409;FRIOYE469451", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47697246000, + 43.29856510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-13;2024-05-31", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "PRE-EN-PAIL - Rue Des Troenes;OuestCharge - Diva Sp - Pre-En-Pail - Troenes", + "owner:ref:FR:SIREN": "200082477", + "ref:EU:EVSE": "FRS53E53185001;FRS53P53185A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19860900000, + 48.46088900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66141001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PIA - Rue Sainte Anne", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92003600000, + 42.74360500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Hémonstoir", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE021702;FRIENE021701", + "start_date": "2024-10-07", + "description": "Hémonstoir", + "ref": "FRIENE021702;FRIENE021701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87724000000, + 48.17054000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35150001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "LECOUSSE - 1 place des marches de bretagne (Parking des marches de bretagne) ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21766700000, + 48.36773700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61491A", + "network": "61mobility", + "ref": "SE61-TOUR-001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "TOUROUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65200500000, + 48.59088600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ALEJNTJITP", + "ref": "742917", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8445355530228694332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01961200000, + 49.48584800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Roulez Électrique En Haute-Garonne/HKTRMU;Lanta", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "33364;HKTRMU", + "ref:EU:EVSE": "FRS31PHKTRMU", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2017-01-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65462000000, + 43.56130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-05-21;2021-05-07", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SCEAUX - Rue Houdan", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92071001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28897900000, + 48.77886500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "capacity": "6", + "ref:EU:EVSE": "FRCG0E001023;FRCG0E001022;FRCG0E001021;FRCG0E000600;FRCG0E000599;FRCG0E000601", + "description": "Mairie de Crest Voland - 73590", + "amenity": "charging_station", + "network": "Mairie de Crest Voland - 73590", + "opening_hours": "24/7", + "ref": "FRCG0E001023;FRCG0E001022;FRCG0E001021;FRCG0E000600;FRCG0E000599;FRCG0E000601", + "charging_station:output": "11 kW;22 kW;2 kW", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50589100000, + 45.79523700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*193*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - CAP DE CROIX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-15", + "ref:EU:EVSE": "FRM06PNICE19312;FRM06PNICE19311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27609500000, + 43.73250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Nérac | Foirail | Droite", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "277bcd0d-f0f7-595e-bb36-e22edcd0be87", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33551200000, + 44.13435700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE33211;FRSIGPSIGE33212", + "ref": "FR*SOD*S*SIGE*332*1*_*_", + "start_date": "2023-02-07", + "description": "SIGEIF - 9 AVENUE EMELIE PARKING DE LHOTEL DE VILLE - CORMEILLES-EN-PARISIS", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19947800000, + 48.97697600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROUEN - Rue De Martainville", + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76000029", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-07;2024-05-03", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;3 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09966600000, + 49.43977700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR4193EVCP02;LFR4193EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR4193EVCP02;LFR4193EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "Tourcoing - Canal", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16010600000, + 50.70541300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Soubise | Place de Verdun", + "amenity": "charging_station", + "ref": "07c54848-fa22-5676-9595-aa1c742cf8dc", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00790600000, + 45.92685500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PPARISOTCAFE", + "operator:email": "roaming@freshmile.com", + "ref": "86891", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/parisotcafe", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85681000000, + 44.26620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "description": "CAMPING DES MURES - PLAGE - GRIMAUD", + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P83310*GRI*MURESPLA", + "ref:EU:EVSE": "FR55CP83310GRIMURESPLA", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "11.04 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59227900000, + 43.28350800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLOMBELLES Bocage", + "ref:EU:EVSE": "LFR3621EVCP01;LFR3621EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3621EVCP01;LFR3621EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30142900000, + 49.19108800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Intermarché - Canet-en-Roussillon", + "start_date": "2024-01-28;2024-01-10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMCER", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01406408364, + 42.70643085463 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "JNCQWIKSDA;48343", + "description": "Réseau eborn/JNCQWIKSDA;Le Teil, Place du Cimetière", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPJNCQWIKSDA", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68228600000, + 44.55000800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP62201A", + "description": "e-Totem - Hôtel Akena Camiers", + "amenity": "charging_station", + "ref": "FRETIP62201A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61303705795, + 50.57313403572 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "operator:email": "support@alizecharge.fr", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Nantes Sud 4 - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E44109002", + "network": "EFFIA France", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53747370000, + 47.21491020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-10-18", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Oyonnax", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT011001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64576900000, + 46.24980500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Nîmes - Hôtel F1 Ouest", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-05-16", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPNIMHF", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34344200000, + 43.81485400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-11-07", + "ref:EU:EVSE": "FROTHPOTHR52911;FROTHPOTHR52912;FROTHPOTHR52921;FROTHPOTHR52922", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "description": "BRICORAMA - MONTARGIS", + "ref": "FR*SOD*S*OTHR*529*2*_*_;FR*SOD*S*OTHR*529*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72917800000, + 48.00358200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "JALIX VLG BORNE 1", + "amenity": "charging_station", + "network": "JALIX VLG BORNE 1", + "ref": "FRCPIE6733605", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6733605", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 07:00-18:00,Tu 07:00-18:00,We 07:00-18:00,Th 07:00-18:00,Fr 07:00-18:00,Sa 07:00-18:00", + "start_date": "2023-07-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26933900000, + 46.20321800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "472263", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/SFFNZXZEQO", + "ref:EU:EVSE": "FRFR1P1922413961589569032", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75325000000, + 48.59336000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*UNIB*30*8*_*_;FR*SOD*S*UNIB*30*7*_*_;FR*SOD*S*UNIB*30*6*_*_;FR*SOD*S*UNIB*30*10*_*_;FR*SOD*S*UNIB*30*11*_*_;FR*SOD*S*UNIB*30*4*_*_;FR*SOD*S*UNIB*30*5*_*_;FR*SOD*S*UNIB*30*9*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-05-18;2022-05-20;2022-06-19;2022-05-28;2022-05-23", + "description": "ROSNY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRURWPUNIB3092;FRURWPUNIB3091;FRURWPUNIB3081;FRURWPUNIB3072;FRURWPUNIB3071;FRURWPUNIB3062;FRURWPUNIB3061;FRURWPUNIB3052;FRURWPUNIB3051;FRURWPUNIB3041;FRURWPUNIB30102;FRURWPUNIB30101;FRURWPUNIB30111;FRURWPUNIB30112;FRURWPUNIB3042;FRURWPUNIB3082", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47781700000, + 48.88216600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "752415", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1660896031955330764", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CBMQXCFJ9L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785100000, + 48.89914100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP28456", + "amenity": "charging_station", + "description": "Tesla Supercharger Saint-Julien-en-Genevois, France", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08782400000, + 46.12956900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/CFEWDQL4XQ;Freshmile France/LLQ2BWVU81DOT7", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1052478;398837", + "operator": "Freshmile | FR*FR1", + "capacity": "2;3", + "ref:EU:EVSE": "FRFR1P50482178745427300;FRFR1P7399884085666626685" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64620000000, + 46.86850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;400 kW", + "operator:email": "roaming@zunder.com", + "ref": "1130505", + "network": "Zunder", + "ref:EU:EVSE": "ESZUNP8484368745747197865", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "capacity": "26", + "opening_hours": "24/7", + "operator": "Zunder | ES*ZUN", + "description": "Zunder/143958" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84966900000, + 44.36116500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/TDEMGY1AN7", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P7788708141367885343", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457566" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161000000, + 49.00539400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LEDERGUES - Place Georges Boulouys", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12127001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44020200000, + 44.08907600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4L1P91IPAQ", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA4P5131929078832704536", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "ref": "880131", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11835500000, + 49.48386100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "seamark:buoy_special_purpose:colour": "yellow", + "seamark:buoy_special_purpose:shape": "pillar", + "seamark:light:character": "Fl", + "seamark:light:colour": "white", + "seamark:light:period": "4", + "seamark:name": "Penly 2", + "seamark:topmark:colour": "yellow", + "seamark:topmark:shape": "x-shape", + "seamark:type": "buoy_special_purpose", + "source": "Arrêté préfectoral N° 20 / 2010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20100000000, + 49.99033330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-08", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "description": "OuestCharge - Diva Sp - Ombree D Anjou - Foire", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49248A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17483710000, + 47.73910890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE MANS - 3 Rue Joseph Marie Jacquard", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "11 kW", + "start_date": "2021-03-03;2021-03-22", + "ref:EU:EVSE": "FRS72E72181004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18111350000, + 47.96563900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MAROILLES - Place de la mairie", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2022-09-05", + "ref:EU:EVSE": "FRH16E59384001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75963000000, + 50.13415000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2024-04-18;2021-05-26", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Thouare-Sur-Loire - Republique;THOUARE-SUR-LOIRE - Place De La République", + "ref:EU:EVSE": "FRS44E44204001;FRS44P44204A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44078500000, + 47.26733400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG63 - ePremium - Saint Genes Champanelle - Theix;SIEG 63/FR*S63*P63345*A", + "socket:type2_combo:output": "50 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref": "518423", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63345A", + "start_date": "2023-02-08", + "charging_station:output": "50 kW;43 kW", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02307000000, + 45.70559000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "OBRÉCHIES - La Place", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59442001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02443500000, + 50.22036400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-25;2023-07-10", + "capacity": "5", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BEZIERS - Echangeur Ouest", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;150 kW", + "ref:EU:EVSE": "FRS34E34032008", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21693300000, + 43.30464300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "ref:EU:EVSE": "FRSIPE94028022", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CRETEIL - Rue Maurice Demeinitroux", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45478526659, + 48.78897102335 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90238776", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Bourges 1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34241100000, + 47.04722800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Razac de Saussignac | le Bourg | Place de la Mairie", + "ref": "22310f08-fc6a-5e38-8461-bf3ad80cdefe", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28550700000, + 44.80347400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE44112;FRSIGPSIGE44111", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*441*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-03", + "description": "SIGEIF - 9 AVENUE NELSON MANDELA - TREMBLAY-EN-FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56787480000, + 48.95025550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "CONDE SUR L ESCAUT ", + "network": "Carrefour Energies", + "start_date": "2022-09-05", + "ref:EU:EVSE": "FRALLPEVCARSCDSLT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59073000000, + 50.45220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR4267EVCP02;LFR4267EVCP01", + "charging_station:output": "120 kW;22 kW", + "description": "NIMES - Monnet", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4267EVCP02;LFR4267EVCP01", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34759300000, + 43.81696100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "f111a28e-e048-518e-868e-2e845322e66a", + "description": "MOBIVE | Saint Palais | Rue Jean Urruty", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03606000000, + 43.32807900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "5caf00e3-c91c-533c-b8f1-3641e9a6e4bb", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "LAPALUD - Rue du Barry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68569200000, + 44.30513800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE PERRAY EN YVELINES - Gymnase", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78486004", + "start_date": "2023-10-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84320000000, + 48.69045000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3801EVCP02;LFR3801EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3801EVCP02;LFR3801EVCP01", + "description": "Morestel Claudel", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48299300000, + 45.67221600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITSLPB", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "description": "Intersport - Le Pont-de-Beauvoisin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68830063397, + 45.52902404951 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "M5CD2VVGLM;32671", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/M5CD2VVGLM;Saint-Alban-Auriolles, Place Aristide Briand", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPM5CD2VVGLM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29988300000, + 44.42608800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP21298A", + "opening_hours": "24/7", + "capacity": "22", + "description": "E-VADEA/FR*EVA*P21298*A", + "network": "E-VADEA", + "ref": "680723", + "charging_station:output": "300 kW;50 kW;43 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542700000, + 47.31487200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Carrefour Market - Nonancourt", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCRFNNC", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21521700000, + 48.76416300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT765501", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Offranville", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-07-08", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04923900000, + 49.87230400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-05-12", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42218AS", + "opening_hours": "24/7", + "ref": "FRESEPS42218AS", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW", + "description": "SEMOB Meons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41261900000, + 45.45573800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IZIG*473*7*_*_;FR*SOD*S*IZIG*473*6*_*_;FR*SOD*S*IZIG*473*5*_*_;FR*SOD*S*IZIG*473*4*_*_;FR*SOD*S*IZIG*473*2*_*_;FR*SOD*S*IZIG*473*13*_*_;FR*SOD*S*IZIG*473*1*_*_;FR*SOD*S*IZIG*473*10*_*_;FR*SOD*S*IZIG*472*9*_*_;FR*SOD*S*IZIG*472*23*_*_;FR*SOD*S*IZIG*472*20*_*_;FR*SOD*S*IZIG*472*19*_*_;FR*SOD*S*IZIG*472*17*_*_;FR*SOD*S*IZIG*472*16*_*_;FR*SOD*S*IZIG*472*15*_*_;FR*SOD*S*IZIG*472*13*_*_;FR*SOD*S*IZIG*472*11*_*_;FR*SOD*S*IZIG*465*6*_*_;FR*SOD*S*IZIG*465*4*_*_;FR*SOD*S*IZIG*465*3*_*_;FR*SOD*S*IZIG*465*25*_*_;FR*SOD*S*IZIG*465*24*_*_;FR*SOD*S*IZIG*465*22*_*_;FR*SOD*S*IZIG*465*21*_*_;FR*SOD*S*IZIG*465*18*_*_;FR*SOD*S*IZIG*465*15*_*_;FR*SOD*S*IZIG*465*14*_*_;FR*SOD*S*IZIG*465*11*_*_;FR*SOD*S*IZIG*464*9*_*_;FR*SOD*S*IZIG*464*8*_*_;FR*SOD*S*IZIG*464*7*_*_;FR*SOD*S*IZIG*464*6*_*_;FR*SOD*S*IZIG*464*55*_*_;FR*SOD*S*IZIG*464*52*_*_;FR*SOD*S*IZIG*464*51*_*_;FR*SOD*S*IZIG*464*5*_*_;FR*SOD*S*IZIG*464*50*_*_;FR*SOD*S*IZIG*464*49*_*_;FR*SOD*S*IZIG*464*46*_*_;FR*SOD*S*IZIG*464*45*_*_;FR*SOD*S*IZIG*464*44*_*_;FR*SOD*S*IZIG*464*4*_*_;FR*SOD*S*IZIG*464*39*_*_;FR*SOD*S*IZIG*464*38*_*_;FR*SOD*S*IZIG*464*37*_*_;FR*SOD*S*IZIG*464*35*_*_;FR*SOD*S*IZIG*464*33*_*_;FR*SOD*S*IZIG*464*29*_*_;FR*SOD*S*IZIG*464*28*_*_;FR*SOD*S*IZIG*464*26*_*_;FR*SOD*S*IZIG*464*24*_*_;FR*SOD*S*IZIG*464*23*_*_;FR*SOD*S*IZIG*464*22*_*_;FR*SOD*S*IZIG*464*21*_*_;FR*SOD*S*IZIG*464*20*_*_;FR*SOD*S*IZIG*464*19*_*_;FR*SOD*S*IZIG*464*14*_*_;FR*SOD*S*IZIG*464*13*_*_;FR*SOD*S*IZIG*464*12*_*_;FR*SOD*S*IZIG*464*11*_*_;FR*SOD*S*IZIG*461*9*_*_;FR*SOD*S*IZIG*461*8*_*_;FR*SOD*S*IZIG*461*7*_*_;FR*SOD*S*IZIG*461*6*_*_;FR*SOD*S*IZIG*461*4*_*_;FR*SOD*S*IZIG*461*3*_*_;FR*SOD*S*IZIG*461*30*_*_;FR*SOD*S*IZIG*461*29*_*_;FR*SOD*S*IZIG*461*26*_*_;FR*SOD*S*IZIG*461*24*_*_;FR*SOD*S*IZIG*461*23*_*_;FR*SOD*S*IZIG*461*21*_*_;FR*SOD*S*IZIG*461*2*_*_;FR*SOD*S*IZIG*461*17*_*_;FR*SOD*S*IZIG*461*14*_*_;FR*SOD*S*IZIG*461*12*_*_;FR*SOD*S*IZIG*461*11*_*_;FR*SOD*S*IZIG*461*1*_*_;FR*SOD*S*IZIG*461*10*_*_;FR*SOD*S*IZIG*461*13*_*_;FR*SOD*S*IZIG*461*15*_*_;FR*SOD*S*IZIG*461*16*_*_;FR*SOD*S*IZIG*461*18*_*_;FR*SOD*S*IZIG*461*19*_*_;FR*SOD*S*IZIG*461*20*_*_;FR*SOD*S*IZIG*461*22*_*_;FR*SOD*S*IZIG*461*25*_*_;FR*SOD*S*IZIG*461*27*_*_;FR*SOD*S*IZIG*461*28*_*_;FR*SOD*S*IZIG*461*5*_*_;FR*SOD*S*IZIG*464*10*_*_;FR*SOD*S*IZIG*464*1*_*_;FR*SOD*S*IZIG*464*15*_*_;FR*SOD*S*IZIG*464*16*_*_;FR*SOD*S*IZIG*464*17*_*_;FR*SOD*S*IZIG*464*18*_*_;FR*SOD*S*IZIG*464*2*_*_;FR*SOD*S*IZIG*464*25*_*_;FR*SOD*S*IZIG*464*27*_*_;FR*SOD*S*IZIG*464*30*_*_;FR*SOD*S*IZIG*464*3*_*_;FR*SOD*S*IZIG*464*31*_*_;FR*SOD*S*IZIG*464*32*_*_;FR*SOD*S*IZIG*464*34*_*_;FR*SOD*S*IZIG*464*36*_*_;FR*SOD*S*IZIG*464*40*_*_;FR*SOD*S*IZIG*464*41*_*_;FR*SOD*S*IZIG*464*42*_*_;FR*SOD*S*IZIG*464*43*_*_;FR*SOD*S*IZIG*464*47*_*_;FR*SOD*S*IZIG*464*48*_*_;FR*SOD*S*IZIG*464*53*_*_;FR*SOD*S*IZIG*464*54*_*_;FR*SOD*S*IZIG*464*56*_*_;FR*SOD*S*IZIG*464*57*_*_;FR*SOD*S*IZIG*465*10*_*_;FR*SOD*S*IZIG*465*1*_*_;FR*SOD*S*IZIG*465*12*_*_;FR*SOD*S*IZIG*465*13*_*_;FR*SOD*S*IZIG*465*16*_*_;FR*SOD*S*IZIG*465*17*_*_;FR*SOD*S*IZIG*465*19*_*_;FR*SOD*S*IZIG*465*20*_*_;FR*SOD*S*IZIG*465*2*_*_;FR*SOD*S*IZIG*465*23*_*_;FR*SOD*S*IZIG*465*5*_*_;FR*SOD*S*IZIG*465*7*_*_;FR*SOD*S*IZIG*465*8*_*_;FR*SOD*S*IZIG*465*9*_*_;FR*SOD*S*IZIG*472*10*_*_;FR*SOD*S*IZIG*472*1*_*_;FR*SOD*S*IZIG*472*12*_*_;FR*SOD*S*IZIG*472*14*_*_;FR*SOD*S*IZIG*472*18*_*_;FR*SOD*S*IZIG*472*2*_*_;FR*SOD*S*IZIG*472*21*_*_;FR*SOD*S*IZIG*472*22*_*_;FR*SOD*S*IZIG*472*3*_*_;FR*SOD*S*IZIG*472*4*_*_;FR*SOD*S*IZIG*472*5*_*_;FR*SOD*S*IZIG*472*6*_*_;FR*SOD*S*IZIG*472*7*_*_;FR*SOD*S*IZIG*472*8*_*_;FR*SOD*S*IZIG*473*11*_*_;FR*SOD*S*IZIG*473*12*_*_;FR*SOD*S*IZIG*473*14*_*_;FR*SOD*S*IZIG*473*15*_*_;FR*SOD*S*IZIG*473*16*_*_;FR*SOD*S*IZIG*473*17*_*_;FR*SOD*S*IZIG*473*18*_*_;FR*SOD*S*IZIG*473*3*_*_;FR*SOD*S*IZIG*473*8*_*_;FR*SOD*S*IZIG*473*9*_*_", + "description": "CNPE SAINT-LAURENT DES EAUX - E - RANGEE 5;CNPE SAINT-LAURENT DES EAUX - E - RANGEE 2;CNPE SAINT-LAURENT DES EAUX - SILO;CNPE SAINT-LAURENT DES EAUX - E - RANGEE 1;CNPE SAINT-LAURENT DES EAUX - E - RANGEE 6", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW;7 kW", + "start_date": "2022-10-26;2022-10-21;2023-01-09", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPIZIG47391;FROTHPIZIG47371;FROTHPIZIG473181;FROTHPIZIG473171;FROTHPIZIG473141;FROTHPIZIG473131;FROTHPIZIG47311;FROTHPIZIG473101;FROTHPIZIG47281;FROTHPIZIG472221;FROTHPIZIG472211;FROTHPIZIG472191;FROTHPIZIG472181;FROTHPIZIG472171;FROTHPIZIG472161;FROTHPIZIG472151;FROTHPIZIG472131;FROTHPIZIG472121;FROTHPIZIG46551;FROTHPIZIG46541;FROTHPIZIG46531;FROTHPIZIG465241;FROTHPIZIG465231;FROTHPIZIG465221;FROTHPIZIG465211;FROTHPIZIG46521;FROTHPIZIG465191;FROTHPIZIG465161;FROTHPIZIG465151;FROTHPIZIG465141;FROTHPIZIG465131;FROTHPIZIG465121;FROTHPIZIG465111;FROTHPIZIG46511;FROTHPIZIG465101;FROTHPIZIG464571;FROTHPIZIG464561;FROTHPIZIG464551;FROTHPIZIG464541;FROTHPIZIG464491;FROTHPIZIG464481;FROTHPIZIG464471;FROTHPIZIG464461;FROTHPIZIG464451;FROTHPIZIG464441;FROTHPIZIG464371;FROTHPIZIG464361;FROTHPIZIG464351;FROTHPIZIG464341;FROTHPIZIG464331;FROTHPIZIG464321;FROTHPIZIG46431;FROTHPIZIG464281;FROTHPIZIG464251;FROTHPIZIG464241;FROTHPIZIG464231;FROTHPIZIG464221;FROTHPIZIG464161;FROTHPIZIG464151;FROTHPIZIG464141;FROTHPIZIG464131;FROTHPIZIG464121;FROTHPIZIG464111;FROTHPIZIG46411;FROTHPIZIG464101;FROTHPIZIG46191;FROTHPIZIG46181;FROTHPIZIG46151;FROTHPIZIG461301;FROTHPIZIG461291;FROTHPIZIG461281;FROTHPIZIG461271;FROTHPIZIG461261;FROTHPIZIG461251;FROTHPIZIG461191;FROTHPIZIG461171;FROTHPIZIG461161;FROTHPIZIG461151;FROTHPIZIG461141;FROTHPIZIG461131;FROTHPIZIG46111;FROTHPIZIG461101;FROTHPIZIG461111;FROTHPIZIG461121;FROTHPIZIG461181;FROTHPIZIG461201;FROTHPIZIG46121;FROTHPIZIG461211;FROTHPIZIG461221;FROTHPIZIG461231;FROTHPIZIG461241;FROTHPIZIG46131;FROTHPIZIG46141;FROTHPIZIG46161;FROTHPIZIG46171;FROTHPIZIG464171;FROTHPIZIG464181;FROTHPIZIG464191;FROTHPIZIG464201;FROTHPIZIG46421;FROTHPIZIG464211;FROTHPIZIG464261;FROTHPIZIG464271;FROTHPIZIG464291;FROTHPIZIG464301;FROTHPIZIG464311;FROTHPIZIG464381;FROTHPIZIG464391;FROTHPIZIG464401;FROTHPIZIG46441;FROTHPIZIG464411;FROTHPIZIG464421;FROTHPIZIG464431;FROTHPIZIG464501;FROTHPIZIG46451;FROTHPIZIG464511;FROTHPIZIG464521;FROTHPIZIG464531;FROTHPIZIG46461;FROTHPIZIG46471;FROTHPIZIG46481;FROTHPIZIG46491;FROTHPIZIG465171;FROTHPIZIG465181;FROTHPIZIG465201;FROTHPIZIG465251;FROTHPIZIG46561;FROTHPIZIG46571;FROTHPIZIG46581;FROTHPIZIG46591;FROTHPIZIG472101;FROTHPIZIG47211;FROTHPIZIG472111;FROTHPIZIG472141;FROTHPIZIG472201;FROTHPIZIG47221;FROTHPIZIG472231;FROTHPIZIG47231;FROTHPIZIG47241;FROTHPIZIG47251;FROTHPIZIG47261;FROTHPIZIG47271;FROTHPIZIG47291;FROTHPIZIG473111;FROTHPIZIG473121;FROTHPIZIG473151;FROTHPIZIG473161;FROTHPIZIG47321;FROTHPIZIG47331;FROTHPIZIG47341;FROTHPIZIG47351;FROTHPIZIG47361;FROTHPIZIG47381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57782000000, + 47.71997000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PôLE SANTE STATION 1", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-01-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "PôLE SANTE STATION 1", + "ref": "FRCPIE6873375", + "ref:EU:EVSE": "FRCPIE6873375" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12127200000, + 49.46474500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/N8GZ5CIJWA", + "operator:email": "roaming@freshmile.com", + "ref": "598359", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4231590782301411", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.13202800000, + 48.59316100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL TROYES BARBEREY", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP122066", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03196400000, + 48.32627800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/EAQLQS", + "operator": "Freshmile | FR*FR1", + "ref": "232468", + "ref:EU:EVSE": "FRFR1PEAQLQS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64507000000, + 49.42590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Avignon, France - Le Pontet", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP30207", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87987400000, + 43.98052800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5380090522192595234", + "ref": "515087", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/P7EPOMTVSO", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94359000000, + 46.01605000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P9199617667936353057", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "100 kW;44 kW", + "description": "MobiSDEC/CPFJ1PSP4H", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "477807", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65117400000, + 49.08015200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P4544856234710693574", + "description": "MobiSDEC/SYA3HIFJSJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457563" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04752200000, + 49.18765600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA6LBRUKLCLZ", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRWA9P9064038637912739558", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128030", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29187300000, + 49.04390200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-01-04", + "owner:ref:FR:SIREN": "255002883", + "description": "AGNEAUX - Rue du Général de Gaulle", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P50180001", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11352120000, + 49.11688540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8116800122;FRS81E8116800112;FRS81E8116800111;FRS81E8116800121", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "MIRANDOL - Place du Foirail - Bourgnougnac", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16654028152, + 44.14137597000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680831;531680837;531680835;531680834;531680830;531680832;531680833;531680836", + "capacity": "8", + "start_date": "2022-09-24", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF059672", + "description": "L'ISLE D'ABEAU NORD", + "ref:EU:EVSE": "FRHPCPNF059672" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21300000000, + 45.61330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "LE POMPIDOU - Parking Du Camping", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS48E48115001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65801700000, + 44.19475500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Évellys - Proximité médiathèque", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56PFOSGTWNEUZ", + "start_date": "2000-01-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83114301352, + 47.98915609448 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MARTIN-BOULOGNE - ZAC du Mont Joie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62758001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64248300000, + 50.72788600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LEUHAN - Route De Trégourez", + "ref:EU:EVSE": "FRS29E29390001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-08-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.78536620000, + 48.09978330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PWZXSRJ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Place de La Liberté", + "start_date": "2017-06-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38591600000, + 47.76128900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B091", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "description": "SAINT-PIERRE DE MAILLE-1-1;SAINT-PIERRE DE MAILLE-1-2", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-12-05", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346052322;FRLMSE12346052321;FRLMSE12346052311;FRLMSE12346052312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84278000000, + 46.67931000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "ref:EU:EVSE": "FRMGPP93048A", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P93048*A", + "ref": "484787", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44364100000, + 48.86153500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-12-22", + "description": "Réseau AlterBase - Melle - Place Bujault Cinéma", + "ref:EU:EVSE": "FRSEOPAB79174P0017A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14375894000, + 46.22190306000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP2292639453348115660", + "network": "Atlante", + "ref": "1122624", + "description": "Atlante/FRATLFR00293", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00778000000, + 44.36096200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Epinal - Piscine Roger Goujon 1", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89362839", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46145600000, + 48.19265400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@electromaps.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMAPE000028595263", + "owner:ref:FR:SIREN": "523903433", + "charging_station:output": "22 kW", + "description": "GARAGE FORRET", + "ref": "cc8997b4-a697-49c6-9dc4-9a3bbdca3a4e", + "network": "GARAGE FORRET", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11985603559, + 45.90210582751 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85285001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-06-03", + "description": "LE TABLIER - Parking Communal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34263801600, + 46.57321930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "network": "Allego Carrefour Nevers", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "ref": "FRALLEGO9005712;FRALLEGO9005711;FRALLEGO9000562;FRALLEGO9000561;FRALLEGO9006941;FRALLEGO9006942", + "description": "Allego Carrefour Nevers", + "ref:EU:EVSE": "FRALLEGO9005712;FRALLEGO9000562;FRALLEGO9000561;FRALLEGO9005711;FRALLEGO9006941;FRALLEGO9006942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10729715000, + 46.99737918000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA INVEST -MP-0923 - LES PENNES MIRABEAU", + "ref:EU:EVSE": "FRIZMPMAMP8211;FRIZMPMAMP8212", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MAMP*82*1*_*_", + "start_date": "2024-06-24", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41738340000, + 43.34349870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMATVDA", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "start_date": "2021-03-17", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Match - Villeneuve-d'Ascq" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16394470000, + 50.60730550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Rians, Rue du Lavoir Neuf;Réseau eborn/SP7TYXQZVE", + "ref:EU:EVSE": "FREBNPSP7TYXQZVE;FREBNSP7TYXQZVE", + "ref": "50749;SP7TYXQZVE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75209500000, + 43.60609600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo,Sa,Th,Tu,Fr,We 19:00-23:59,Su 13:00-23:59,Su,Sa,Fr,Th,Mo,We,Tu 00:00-07:30", + "operator:email": "roaming@freshmile.com", + "ref": "892131", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLIK03NULU8FL0", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6542565810777020678", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20431900000, + 48.67228600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Ibis Styles - Chartres", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBSLCD", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51172130000, + 48.42879260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "31624", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPYMXK9OQBKU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/YMXK9OQBKU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05039200000, + 46.03029500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRETIP34116B", + "operator": "E-TOTEM", + "description": "e-Totem - 3M - Grabels - Rue de la Treille", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP34116B", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80134800000, + 43.64779500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*216*1*_*_;FR*SOD*S*OTHR*216*2*_*_", + "capacity": "1", + "description": "SUPER U - CORBELIN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-07-20", + "ref:EU:EVSE": "FROTHPOTHR21611;FROTHPOTHR21621", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53589300000, + 45.60859700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-08", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*46*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS4612;FRCPSPCAPS4611", + "description": "MASSY RUE PIERRE PICARD", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27326500000, + 48.73428000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3170966307957468934", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "972035", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LNDZLAR6YW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414700000, + 43.44967100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA1P515374009235588070", + "description": "WAAT/FRWATLPQZUYHB9", + "ref": "805305", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19939500000, + 46.20843600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/X9UCRG8ZDU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1296394186560022637", + "operator": "Freshmile | FR*FR1", + "ref": "346499" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80911000000, + 47.50990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "ref": "1000098503", + "amenity": "charging_station", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "charging_station:output": "32 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "32 kW", + "ref:EU:EVSE": "FRSWSE1000098503", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "WB 40kW E-City Voglans", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89000500000, + 45.61924500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4165201534868411878", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/E7KRECKCYE", + "ref": "493377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79087100000, + 48.59887300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2023-05-17", + "capacity": "2", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "description": "DTM - Mougins", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPDTM062501", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97184600000, + 43.60348900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-08-14", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E139073", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MARGON - Rue de la Cloche - 139073", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MARGON - Rue de la Cloche - 139073", + "ref:EU:EVSE": "FRS28E139073" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83623600000, + 48.33379100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "LIBERA HOTEL", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "operator:email": "advenir@freshmile.com", + "operator": "FRESHMILE", + "ref": "a2a953f7-b109-40ac-b047-8b9b79de3036", + "network": "LIBERA HOTEL", + "owner:ref:FR:SIREN": "798226841" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30491173265, + 49.18542611135 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8354966494452911308", + "ref": "39707", + "description": "SDEA 10/O67PC5Z8LO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52628600000, + 48.34807200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Comfort Hotel Paris Sud;Zephyre", + "owner:ref:FR:SIREN": "381433267", + "amenity": "charging_station", + "ref": "f11e5dce-6ce9-11ee-b962-0242ac120002;675743;675740", + "capacity": "1", + "description": "LP009E7F;LP009E90;Zephyre/LP009E90;Zephyre/LP009E7F", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P36581;FRZP1P6186044716300014990;FRZP1P36580;FRZP1P1595825876868355246", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33569500000, + 48.79578100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-28", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Kiloutou_Nantes", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE483" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50114200000, + 47.25773300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8132500133;FRS81E8132500132;FRS81E8132500122;FRS81E8132500121;FRS81E8132500112;FRS81E8132500111;FRS81E8132500131", + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2018-03-26", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "VIVIERS LES MONTAGNES - Place Du 8 Mai 1945", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17608800000, + 43.55349700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Caliceo St Cyr", + "amenity": "charging_station", + "capacity": "4", + "network": "Caliceo Sainte Cyr Public", + "ref:EU:EVSE": "FRISEPINOUIDCALICEOSTCYR", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "operator:email": "contact@inouid.com", + "charging_station:output": "22 kW", + "ref": "0d50866c-6744-11ee-8c99-0242ac120002", + "owner:ref:FR:SIREN": "904007333", + "operator": "INOUID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06457800000, + 48.80913920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-14;2024-04-30;2024-04-10", + "ref:EU:EVSE": "FRS49P49110B;FRS49E49110002", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Corze - Motte;CORZE - Rue Moulin de la Motte", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39321600000, + 47.55936700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/UPWCKE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PUPWCKE", + "ref": "232456" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60051000000, + 49.30080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VIL10 - CHARPENNES", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2024-02-23", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*204*1*_*_", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON20411;FRGLYPLYON20412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86414330000, + 45.77041330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30189016", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "NIMES - Avenue Amédée Bolle", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33752600000, + 43.81077300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/PTMTEE", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "ref": "39086", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PPTMTEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79624000000, + 47.66070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "B037", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346402711;FRLMSE12346402721", + "opening_hours": "24/7", + "start_date": "2016-01-25", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "COULOMBIERS-1-2;COULOMBIERS-1-1", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18500400000, + 46.48457000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "capacity": "1", + "ref": "511175", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P5717413072464956111", + "description": "Mobilygreen CPO/9c87cc1c-0dcc-429c-bf37-0eaa6f2cbe8f", + "charging_station:output": "7.4 kW", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00205500000, + 43.58857700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*152*6*_*_;FR*SOD*S*SIGE*152*1*_*_;FR*SOD*S*SIGE*152*2*_*_;FR*SOD*S*SIGE*152*3*_*_;FR*SOD*S*SIGE*152*4*_*_;FR*SOD*S*SIGE*152*5*_*_", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FRSIGPSIGE15211;FRSIGPSIGE15221;FRSIGPSIGE15231;FRSIGPSIGE15241;FRSIGPSIGE15251;FRSIGPSIGE15261", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32345700000, + 48.94172500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-28", + "charging_station:output": "22 kW", + "description": "LA VERRIERE - Rue Georges Lapierre", + "ref:EU:EVSE": "FRBE1E78644002", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94154400000, + 48.75168700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-10-06", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Première Cl. Caen Mondeville", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89786298" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30028500000, + 49.16343700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Voeuil et Giget | Route de Torsac", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "67dbaef8-5462-5149-8ef0-4b75c320105c", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15464500000, + 45.58562700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77DTMA", + "start_date": "2023-02-09", + "charging_station:output": "25 kW;22 kW", + "description": "Mairie - DIANT", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99164300000, + 48.28209200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-03-31", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSFOURM", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "FOURMIES", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04655000000, + 50.01552000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4028EVCP02;LFR4028EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "MONDELANGE - Europe", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4028EVCP02;LFR4028EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15551000000, + 49.25625000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - 21 Contre Allée Charles de Fitte", + "ref:EU:EVSE": "FRM31E31555026", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43297900000, + 43.59470400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "La Voulte-Sur-Rhône, Quai Anatole France;Réseau eborn/WHEP9NLKD4", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "85688;WHEP9NLKD4", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPWHEP9NLKD4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78145300000, + 44.79960900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "description": "Freshmile/D2IOI9VPRG", + "ref": "521246", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8731310483299007427", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91464100000, + 48.95391000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "67", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Porte Saint Cloud", + "ref:EU:EVSE": "FRP07E7511605066;FRP07E7511605065;FRP07E7511605064;FRP07E7511605063;FRP07E7511605062;FRP07E7511605061;FRP07E7511605057;FRP07E7511605055;FRP07E7511605053;FRP07E7511605052;FRP07E7511605051;FRP07E7511605048;FRP07E7511605046;FRP07E7511605045;FRP07E7511605044;FRP07E7511605042;FRP07E7511605040;FRP07E7511605034;FRP07E7511605033;FRP07E75116050;FRP07E751160501;FRP07E751160502;FRP07E751160503;FRP07E7511605035;FRP07E7511605036;FRP07E7511605037;FRP07E7511605038;FRP07E7511605039;FRP07E7511605041;FRP07E7511605043;FRP07E7511605047;FRP07E7511605049;FRP07E7511605050;FRP07E7511605054;FRP07E7511605056;FRP07E7511605058;FRP07E7511605059;FRP07E7511605060;FRP07E7511605067", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25375522760, + 48.83910209303 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref:EU:EVSE": "FREBNP7170315453253475915;FREBNPRTLQHV1XUC", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "598284;RTLQHV1XUC", + "description": "Réseau eborn/RTLQHV1XUC;Le Lavandou, Parking du cinéma", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35233500000, + 43.13853100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "Narbonne - Hôtel Ibis", + "operator": "ELECTRA", + "start_date": "2024-07-18", + "ref:EU:EVSE": "FRELCPNARHI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98754700000, + 43.16764300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "description": "Parking gare de Thonon-les-Bains - Centre-ville - EFFIA", + "capacity": "10", + "ref:EU:EVSE": "FRP01E742810011;FRP01E74281001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47949000000, + 46.36749000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "ref:EU:EVSE": "FRCPIE6618725", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6618725", + "operator:email": "info@chargepoint.com", + "description": "UTILE GRANE BORNE 1", + "network": "UTILE GRANE BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92502100000, + 44.73430100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMDNBIGKUXC;FREBNMDNBIGKUXC", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "50716;MDNBIGKUXC", + "start_date": "2020-08-26", + "description": "Cabasse, 35 allée Marcel Pagnol;Réseau eborn/MDNBIGKUXC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22237200000, + 43.42774400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA2P8639858859280453222;FRWATP3986307797420302857", + "network": "WAAT", + "ref": "1181913;538382", + "description": "WAAT/s570555;WAAT/FRWATLYKBWVXWW", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16076300000, + 49.34195400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/ZV8QSTYK6T", + "ref:EU:EVSE": "FRFR1P4470009837600395244", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "706121", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89472200000, + 49.18574600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "VIKINGS CASINO SANARY SUR MER", + "opening_hours": "Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:35;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:33;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:34;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:30;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:31;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:32", + "start_date": "2023-02-21", + "ref": "FRTCBP00805", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP00805", + "charging_station:output": "22 kW", + "description": "Viking Casinos Sanary sur Mer", + "owner:ref:FR:SIREN": "524125036", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81466441534, + 43.12664269200 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/CKCVU0L4PL", + "amenity": "charging_station", + "capacity": "1", + "ref": "521240", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7862501921743658035", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96870100000, + 45.56644100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "capacity": "5", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBYMYCARMERCEDES060001", + "amenity": "charging_station", + "description": "Mercedes - ByMyCar - Nice Gambetta - Churn", + "opening_hours": "Mo 08:30-12:30, Mo 13:30-19:00, Tu 08:30-12:30, Tu 13:30-19:00, We 08:30-12:30, We 13:30-19:00, Th 08:30-12:30, Th 13:30-19:00, Fr 08:30-12:30, Fr 13:30-19:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25604400000, + 43.70413200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2909500", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Kersaint Plabennec-Route de Plabennec" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.37446900000, + 48.47187800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2017-10-29", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11055001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BUGARACH - Parking D14", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35083333333, + 42.87583330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "479289480", + "ref": "732c1559-8beb-455f-95a9-10f2a4d9cb57", + "description": "Ferme de Marie 5 - 11 kW AC;Ferme de Marie 2 - 11 kW AC;Ferme de Marie 1 - 11 kW AC;Ferme de Marie 3 - 11 kW AC;Ferme de Marie 4 - 11 kW AC;Ferme de Marie 6 - 11 kW AC", + "ref:EU:EVSE": "FRZP1PEAC57892;FRZP1PEAC57877;FRZP1PEAC57836;FRZP1PEAC57784;FRZP1PEAC57785;FRZP1PEAC57837", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "Hotel - Les Fermes de Marie", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61039570000, + 45.85556840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS08E57613;FRS08E57612", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS08E57613;FRS08E57612", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - THILAY - Couture d'en bas", + "description": "MODULO - THILAY - Couture d'en bas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80685700000, + 49.87054900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79417", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/XCDNKJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PXCDNKJ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81289000000, + 50.15544600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*233*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - SAINT MALO LA DECOUVERTE", + "start_date": "2024-07-17", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST23311;FRIZFPFAST23312;FRIZFPFAST23313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99022650000, + 48.63466100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44015001;FRS44P44015A", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2021-04-14;2024-04-22", + "description": "OuestCharge - Diva Sp - Blain - Schuman;BLAIN - Rue Robert Schuman", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76103800000, + 47.47542900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "description": "BUTHIERS - Roches", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-05-16;2024-05-14", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS77E77060001", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43013700000, + 48.28693000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHÂTEAU BELLEFONT-BELCIER", + "network": "CHÂTEAU BELLEFONT-BELCIER", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000054864" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13818562686, + 44.88053559925 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - NEUIL - Pkg. Grande Rue", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - NEUIL - Pkg. Grande Rue", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219857;FRS37E219858", + "ref": "FRS37E219857;FRS37E219858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51153100000, + 47.16992200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "ref": "d32f34a9-b53f-5ad7-a0f9-f683e9cd117a", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Gélacourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73277600000, + 48.48130300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P69027A", + "network": "GAMMVERT - BRIGNAIS", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRG10P69027A", + "start_date": "2022-04-13", + "operator:email": "contact@e-totem.fr", + "capacity": "3;4", + "description": "GAMMVERT - BRIGNAIS", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75540900000, + 45.66786100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "01f7b094-7c74-5dd6-a98b-e6bf2107b1c8", + "socket:type2_combo:output": "120 kW", + "operator": "191__SDEER17", + "description": "MOBIVE | Lagord | Av. des Oiseaux de Mer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15587000000, + 46.18457600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*267*1*_*_", + "start_date": "2022-05-18", + "ref:EU:EVSE": "FRSIGPSIGE26711;FRSIGPSIGE26712", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 111 RUE HOCHE - IVRY-SUR-SEINE - 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37154500000, + 48.81210300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "FRCPIE6493045;FRCPIE6493235", + "start_date": "2021-09-07", + "capacity": "4", + "description": "ARTEMIS BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ARTEMIS BORNE 2", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6493045;FRCPIE6493235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30833100000, + 48.86608100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P1680217709406713389", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/OUBY1DDYTO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "510638", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059100000, + 49.03914300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "0684a83c-3b75-5315-9102-aad837b6a65a", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Treignac | Place des Penitents" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79479900000, + 45.53572900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - La Forêt-sur-Sèvre - Mairie - DC 24 kW", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-12-22", + "ref:EU:EVSE": "FRSEOPAB13031A", + "socket:type2_combo:output": "24 kW", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64931900000, + 46.77045300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "network": "EVBOX", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "413171711", + "operator:email": "contact@evbox.com", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRAEVBP2022531;FRAEVBP2011078", + "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", + "description": "BORNE PERRY;BORNE CHRISTOPHE PERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75000000000, + 48.41000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3886EVCP01;LFR3886EVCP02;LFR3886EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3886EVCP01;LFR3886EVCP02;LFR3886EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "MURVIEL LES BEZIERS - RD 19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14839300000, + 43.43350800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "ref:EU:EVSE": "FRM38E38485001", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SEYSSINET-PARISET - Rue Lamartine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69554100000, + 45.17999000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ12311;FRA16PWIIZ12312", + "description": "CANNES PARKING LIEGEARD", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*123*1*_*_", + "start_date": "2021-06-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00092600000, + 43.54938200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/V3EMVP93X7", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7957446853187020626", + "ref": "735201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26045600000, + 47.95666300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PACTRUE", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-08-02", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "description": "Action - Rue", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66740861740, + 50.26517437753 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30173;UYRULM0CVA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPUYRULM0CVA", + "description": "Le Grand-Lemps, Parking de la Médiatheque;Réseau eborn/UYRULM0CVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42029500000, + 45.39962000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPLEQHM", + "description": "Lesquin - Hôtel Mercure Lille Aéroport", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09287400000, + 50.58308600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E95500001", + "description": "Parking gare de Pontoise Canrobert P+R - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09310000000, + 49.04619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GD BORNE 3", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6678685;FRCPIE6678665;FRCPIE6678675", + "ref": "FRCPIE6678685;FRCPIE6678665;FRCPIE6678675", + "start_date": "2023-06-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "GD BORNE 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11101500000, + 48.93271100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Easy Charge/OMGNS1LCLU;Le Chesnay-Rocquencourt , Parly 2", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "OMGNS1LCLU;756906", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHP2267981446964809844;FRECHPOMGNS1LCLU", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641000000, + 48.82899000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Epinal - Piscine Roger Goujon 2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45986800000, + 48.19329100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref": "529157", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1926876241113028852", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile/CXWQCAZPW9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24445700000, + 48.77748400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0513", + "start_date": "2022-07-13", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Henri Barbusse 25", + "ref": "FR*V75*PPX05*13", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33897300000, + 48.84150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;60 kW", + "ref": "LFR3575EVCP02;574544;LFR3575EVCP01", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3575EVCP01;FRFR1P9197786452611062907;LFR3575EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "capacity": "2;4", + "network": "LIDL;Freshmile", + "charging_station:output": "120 kW;22 kW;60 kW", + "description": "Freshmile/S1EZVRWU5Q;SAINT RAMBERT D ALBON Milan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82069500000, + 45.27969700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPDUFFORTVOLVO919401;FRSSDPDUFFORTVOLVO919402", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-12:15, Sa 13:30-18:00;24/7", + "amenity": "charging_station", + "start_date": "2024-01-08;2023-03-20;2022-02-28", + "description": "Volvo - Les Ulis (PDL1);Volvo - Les Ulis (PDL2)", + "capacity": "3;20", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19426600000, + 48.67803500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS22E22337001", + "operator": "Bouygues E&S", + "description": "SÉVIGNAC - Le Bourg", + "start_date": "2023-06-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33834500000, + 48.33301400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2020-06-05", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - STE THORETTE - Rte. de Bourges", + "description": "MODULO - STE THORETTE - Rte. de Bourges", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E148714", + "ref": "FRS18E148714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20171800000, + 47.08118700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "web@freshmile.com", + "start_date": "2023-10-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "898796149", + "ref": "7c72270e-dd55-465c-8c91-e02c122b86f3", + "operator": "FRESHMILE", + "description": "AS COURTAGE FORBACH", + "network": "AS COURTAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89035100000, + 49.18192100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32062", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/Q2NDRSYOYC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1668271779667591329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12938500000, + 48.53512800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-18", + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8100400622;FRS81E8100400612;FRS81E8100400611;FRS81E8100400621", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "ALBI - Avenue Francois Verdier", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13826394100, + 43.91987609900 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "start_date": "2023-07-03;2022-08-25;2022-08-24", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "ref:EU:EVSE": "FRIKAPIKEA6491;FRIKAPIKEA6481;FRIKAPIKEA6471;FRIKAPIKEA6451;FRIKAPIKEA6431;FRIKAPIKEA64232;FRIKAPIKEA64231;FRIKAPIKEA64221;FRIKAPIKEA64211;FRIKAPIKEA64201;FRIKAPIKEA64181;FRIKAPIKEA64121;FRIKAPIKEA64111;FRIKAPIKEA64101;FRIKAPIKEA6411;FRIKAPIKEA64131;FRIKAPIKEA64141;FRIKAPIKEA64151;FRIKAPIKEA64161;FRIKAPIKEA64171;FRIKAPIKEA64191;FRIKAPIKEA6421;FRIKAPIKEA6441;FRIKAPIKEA6461;FRIKAPIKEA6511;FRIKAPIKEA6521;FRIKAPIKEA6531", + "opening_hours": "24/7", + "description": "IKEA MARSEILLE - PARKING CLIENTS PMR;IKEA MARSEILLE - PARKING CLIENTS", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IKEA*64*8*_*_;FR*SOD*S*IKEA*64*7*_*_;FR*SOD*S*IKEA*64*5*_*_;FR*SOD*S*IKEA*64*2*_*_;FR*SOD*S*IKEA*64*19*_*_;FR*SOD*S*IKEA*64*18*_*_;FR*SOD*S*IKEA*64*17*_*_;FR*SOD*S*IKEA*64*15*_*_;FR*SOD*S*IKEA*64*14*_*_;FR*SOD*S*IKEA*64*12*_*_;FR*SOD*S*IKEA*64*11*_*_;FR*SOD*S*IKEA*64*1*_*_;FR*SOD*S*IKEA*64*10*_*_;FR*SOD*S*IKEA*64*13*_*_;FR*SOD*S*IKEA*64*16*_*_;FR*SOD*S*IKEA*64*20*_*_;FR*SOD*S*IKEA*64*21*_*_;FR*SOD*S*IKEA*64*22*_*_;FR*SOD*S*IKEA*64*23*_*_;FR*SOD*S*IKEA*64*3*_*_;FR*SOD*S*IKEA*64*4*_*_;FR*SOD*S*IKEA*64*6*_*_;FR*SOD*S*IKEA*64*9*_*_;FR*SOD*S*IKEA*65*1*_*_;FR*SOD*S*IKEA*65*2*_*_;FR*SOD*S*IKEA*65*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48108100000, + 43.29245400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PORNICHET - Avenue Des Violettes;OuestCharge - Diva Sp - Pornichet - Violettes", + "capacity": "1;2", + "start_date": "2024-04-16;2021-06-02", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44132C;FRS44E44132003", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31760400000, + 47.24518700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77316003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "description": "MORÊT-LOING-ET-ORVANNE - Lemasson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81605010000, + 48.37460180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62525003", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "LONGUENESSE - Avenue Léon Blum" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26974600000, + 50.74079500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - POCE SUR CISSE - Rte. des Industries", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221489;FRS37E222174", + "description": "MODULO - POCE SUR CISSE - Rte. des Industries", + "ref:EU:EVSE": "FRS37E221489;FRS37E222174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98701500000, + 47.42676500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ETAIN - Pl. Rouillon", + "ref:EU:EVSE": "FRS55E66462;FRS55E66463", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - ETAIN - Pl. Rouillon", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E66462;FRS55E66463", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63667100000, + 49.21344700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "LAM02 - M7 - CONFLUENCE", + "amenity": "charging_station", + "start_date": "2021-09-08", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14312;FRGLYPLYON14311", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*143*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81525200000, + 45.72933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "MARQUILLIES - Rue de la Bourse", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRMELP5927401", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59274*01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86674800000, + 50.55743000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "capacity": "4", + "description": "Jaguar Land Rover - Mezzavia", + "charging_station:output": "7.36 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPJLRBBCAJACCIO201671", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.78786000000, + 41.95259900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6579405", + "ref": "FRCPIE6579405", + "charging_station:output": "22 kW", + "description": "CGED SELESTAT 1", + "network": "CGED SELESTAT 1", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43511700000, + 48.25584600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/LLJMKO2YP5BIF6", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "ref": "892704", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1420827758240891311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722700000, + 49.69853900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-04-01", + "charging_station:output": "3.7 kW;22 kW", + "description": "PAUILLAC - RUE JULES FERRY;MOBIVE | Pauillac | Rue Jules Ferry", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB33*98*1*_*_;02e1013a-e029-5728-a41c-ffffa24bbd3a", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "Non concerné;FRS33PMB339811;FRS33PMB339812", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74790400000, + 45.19955400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "8184e3ae-e935-532c-bc09-3fdc0b7572e0", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "description": "Évry-Courcouronnes - Rue Henri Rochefort", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44280600000, + 48.62202800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "ref:EU:EVSE": "FRSITE00000100;FRALLPCAS003", + "description": "CASINO SAINT LOUIS", + "amenity": "charging_station", + "start_date": "2021-03-25;2021-02-24;2021-02-23;2021-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "50 kW;160 kW;300 kW", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "300 kW;50 kW;43 kW;160 kW", + "capacity": "6;10", + "network": "ALLEGO;GreenToWheel;CASINO SAINT LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55719500000, + 47.58313200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3290EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "FLEURANCE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3290EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66337000000, + 43.85402000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Istres, Sous Préfecture", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PNEJP5QIS1P", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99477700000, + 43.50273400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - EPINAL - Rue de la 7ème armée -", + "amenity": "charging_station", + "start_date": "2023-10-27", + "ref": "FRS88E180440;FRS88E180438", + "ref:EU:EVSE": "FRS88E180440;FRS88E180438", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - EPINAL - Rue de la 7ème armée -" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45495000000, + 48.14940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*231*1*_*_", + "start_date": "2023-06-13", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "COURSEGOULES - PARKING DU COLOMBIER", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ23112;FRA16PWIIZ23111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04193000000, + 43.79488700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LBVPKUWE5C", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4465284263589714744", + "ref": "510512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36137900000, + 48.73925200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Mr. Bricolage - Saint-Dié-des-Vosges", + "amenity": "charging_station", + "start_date": "2023-09-05", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBRSDV", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93799132652, + 48.29064583973 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLAAMCG1RZX", + "operator:email": "roaming@freshmile.com", + "ref": "106946", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/LAAMCG1RZX", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67025000000, + 46.16065000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1073172", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "description": "EVzen/C2B9976A-058F-44C9-866F-0B153A425315", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP8302144990312563632" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26407200000, + 48.20035900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E641220011;FRP07E64122001", + "operator": "Bouygues E&S", + "description": "BIARRITZ - Bellevue", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-07-30;2023-11-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55710700000, + 43.48529800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPXVKVTT", + "ref": "XVKVTT", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Saint-Martin-La-Plaine, Route de la Tour", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59508830000, + 45.54475670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPFYHUB1BIZF;FREBNFYHUB1BIZF", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "FYHUB1BIZF;50752", + "description": "Sollies-Toucas, 1475 Route de Valaury;Réseau eborn/FYHUB1BIZF", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00607200000, + 43.19678500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-11-28", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL ANGERS 1 BEAUCOUZÉ", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP122002", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62826700000, + 47.46732600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3484662091564501051", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/H29ANT7CKB", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref": "559715", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Th,Mo,Fr,Tu,We 11:00-14:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99636600000, + 48.76677600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1307", + "opening_hours": "24/7", + "ref": "FR*V75*PPX13*07", + "description": "Paris | Rue Bobillot 16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35376650000, + 48.82957780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2298474075825396227", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "541883", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VXU4WVABPH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80888300000, + 45.57480200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW Mini - Béziers", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPEDENAUTOBMW345001", + "start_date": "2022-10-07", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 00:00-23:59, Tu 00:00-23:59, We 00:00-23:59, Th 00:00-23:59, Fr 00:00-23:59, Sa 00:00-23:59, Su 00:00-23:59", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25725000000, + 43.34491700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PEVREUXSTLOUIS", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900056", + "opening_hours": "24/7", + "start_date": "2016-12-02", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15306300000, + 49.02601100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21638*A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180440", + "ref:EU:EVSE": "FRS21P21638A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17472900000, + 47.51473700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-GERMAIN-EN-LAYE - Ursuline", + "ref:EU:EVSE": "FRY03E78551021", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-08-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09572016784, + 48.89356843722 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE122", + "start_date": "2021-11-18;2021-07-28", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Dacia_Lens", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85338000000, + 50.44176200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP4314829475020366059", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLDCGWR3IW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1013028", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83926300000, + 43.56934300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "network": "IONITY GMBH", + "ref": "FRIONE438700", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Bourbonnais", + "ref:EU:EVSE": "FRIONE438700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36275300000, + 46.49763900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E42111;FRS51E42110", + "capacity": "2", + "network": "MODULO - CERNAY-LES-REIMS - Rue st Martin", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "description": "MODULO - CERNAY-LES-REIMS - Rue st Martin", + "ref": "FRS51E42111;FRS51E42110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10365800000, + 49.26458800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65059002", + "start_date": "2022-02-27", + "network": "Reveo", + "description": "BAGNERES DE BIGORRE - Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15511000000, + 43.06825000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "amenity": "charging_station", + "capacity": "12", + "owner:ref:FR:SIREN": "531681466;531681465;531681459;531681457;531681456;531681460;531681458;531681464;531681461;531681463;531681462;531681467", + "description": "RELAIS DE FENIOUX OUEST", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FRHPCPNF080362", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60330000000, + 45.89470100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARSEILLAN PLAGE - Parking Avenue de la Méditerranée", + "ref:EU:EVSE": "FRS34E34150002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54673333333, + 43.31837220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSSHGWX", + "start_date": "2016-10-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Landévant - 3 Place de l'Eglise", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12044400000, + 47.76165700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/XH2LMSOLZF", + "amenity": "charging_station", + "ref": "368980", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5425792497277895778", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60559700000, + 44.79306800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P92051*T;Metropolis - Proximité - Neuilly-sur-Seine - Bineau", + "opening_hours": "24/7", + "capacity": "5;6", + "start_date": "2023-01-06", + "owner:ref:FR:SIREN": "885354860", + "ref": "599100", + "network": "Métropolis;METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051T", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26993300000, + 48.89108700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPBYMYCARFIAT732001", + "charging_station:output": "22.08 kW", + "start_date": "2020-07-01", + "description": "Fiat - ByMyCar - Albertville", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39320100000, + 45.66361200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRC2P005501", + "start_date": "2023-02-23", + "network": "SARL 3M", + "description": "SARL 3M", + "ref:EU:EVSE": "FRC2P005501", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21922900000, + 48.11093710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hôtel Amérique Palavas Plage Piscine ", + "ref": "0eb30e38-cc9b-11ed-afa1-0242ac120002", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMEHOTELAMERIQUEPALAVAS11", + "operator": "LUMI'IN", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92576210000, + 43.52829270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref": "6a9a0772-c5a3-548b-b1ac-6c2c4ab44c76", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Peyrat le Chateau | Place du Champ de Foire", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77336400000, + 45.81403000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE31RADA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Rue Clemence Isaure 2 - REVEL", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99294800000, + 43.45218300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "830699930", + "ref": "FR*BHM*ECOMTELIGIERBELAIR*1", + "opening_hours": "MO-SU 08:00-18:00", + "description": "COMTE LIGIER ", + "operator:email": "freddy.borneco@gmail.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-12-09", + "network": "Comte Liger-Belair", + "operator": "BORNECO", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBHMECOMTELIGIERBELAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95518800000, + 47.16011500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/Q6OD1KDAIZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P2458611323787824383", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446795", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642600000, + 43.65040600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Peypin, Avenue de Valdonne", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PIJOAYJVK0X", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57785000000, + 43.38458000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P4777129477151792757", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/O0HFZ0CNCY", + "operator:email": "roaming@freshmile.com", + "ref": "488877", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57552700000, + 47.98425000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LE CANNET PARKING STADE JEANPIERRE", + "ref": "FR*SOD*S*WIIZ*86*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ8612;FRA16PWIIZ8611", + "charging_station:output": "22 kW", + "start_date": "2018-06-07", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00626700000, + 43.57639700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "446603", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2417701979621401947", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/YRPLK8JSQE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17486400000, + 47.98001100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Super U TOUL", + "ref:EU:EVSE": "FRPD1PSYSTOU", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88913465928, + 48.68088610453 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyeres, Parking De La Capte;Réseau eborn/LKPXJJN0R7", + "ref": "LKPXJJN0R7;399017", + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP8848491038000772960;FREBNPLKPXJJN0R7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14985800000, + 43.06479300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP4418312209025575915", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "1049742", + "operator:email": "support@evzen.com", + "description": "ENGIE MAMP - Bornes publiques/A9A7802F-7767-4477-8138-4C5ADEB076B7", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41273300000, + 43.28230800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "network": "GROUPE PARTOUCHE", + "description": "CASINO - LA ROCHE POSAY", + "amenity": "charging_station", + "start_date": "2023-12-27", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*705*3*_*_;FR*SOD*S*OTHR*705*2*_*_;FR*SOD*S*OTHR*705*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR70531;FROTHPOTHR70522;FROTHPOTHR70521;FROTHPOTHR70512;FROTHPOTHR70511;FROTHPOTHR70532" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82518170000, + 46.77886380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Saint-Jean-De-Sixt, Route de la Clusaz", + "ref:EU:EVSE": "FREBNPXRDLJKFVGR", + "ref": "XRDLJKFVGR", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41196700000, + 45.92408700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDZI9RFFUXV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/DZI9RFFUXV;Loriol-Sur-Drôme, Place du 19 mars 1962 - Parking du Gymnase Jean Clément", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "DZI9RFFUXV;31849", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82020400000, + 44.75404100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*386*5*_*_;FR*SOD*S*OTHR*386*3*_*_;FR*SOD*S*OTHR*386*1*_*_;FR*SOD*S*OTHR*386*2*_*_;FR*SOD*S*OTHR*386*4*_*_;FR*SOD*S*OTHR*386*6*_*_;FR*SOD*S*OTHR*386*7*_*_", + "network": "E.LECLERC", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR38671;FROTHPOTHR38661;FROTHPOTHR38651;FROTHPOTHR38641;FROTHPOTHR38631;FROTHPOTHR38621;FROTHPOTHR38611", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "charging_station:output": "22 kW", + "description": "E.LECLERC - SAUMUR", + "operator:email": "sav@izivia.com", + "start_date": "2022-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09098900000, + 47.26074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5541450647047057672", + "description": "Freshmile France/MCARLUQ2VL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "694274", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43972600000, + 42.59919900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRTSLP29624", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Vannes, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80353239000, + 47.67735752000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1114410", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLV2FLZ7KBRPGQ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3771727241425802321", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08129900000, + 49.12226800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "description": "AMP | 2 Avenue Joseph Etienne (Ex Endoume)", + "start_date": "2024-01-10", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP01860", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*TCB*P01860" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35882400000, + 43.28462000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/E0ZXMGMWDE", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRFR1P3063897968657218512", + "operator": "Freshmile | FR*FR1", + "ref": "514985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03333800000, + 42.56833200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Ploeuc L Hermitage-Rue de Beaulieu (parking arrière église)", + "ref:EU:EVSE": "FRS22E22203001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75524000000, + 48.34719000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC50713;FRZMAE22AC50663", + "description": "Mazda - Roanne - 22kW AC ;Mazda - Roanne - 22kW AC", + "opening_hours": "Mo-Fr 09:00-18:00; Sa:09:00-19:00", + "start_date": "2021-01-05", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "313283707", + "ref": "50663;50713", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "Mazda ROANNE", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04640900000, + 46.02002200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2022-06-27;2022-06-13", + "description": "SCI_Bas_Pres;SCI_Ravennes", + "capacity": "4;8", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE335;FRROSE336", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05647500000, + 50.66180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MANTES-LA-JOLIE - Rue De La Sangle", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78361005", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71858200000, + 48.98893600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "description": "Soissons Ouest", + "network": "Soissons Ouest", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE448351;FRIOYE448306;FRIOYE448305;FRIOYE448304;FRIOYE448303;FRIOYE448302;FRIOYE448301;FRIOYE448352;FRIOYE448353", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE448351;FRIOYE448306;FRIOYE448305;FRIOYE448304;FRIOYE448303;FRIOYE448302;FRIOYE448301;FRIOYE448352;FRIOYE448353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30780500000, + 49.36619200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2021-04-13;2024-05-24", + "ref:EU:EVSE": "FRS53P53127A;FRS53E53127001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "LASSAY-LES-CHATEAUX - Allée Du Haut Perrin;OuestCharge - Diva Sp - Lassay-Les-Chateaux - Perrin", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49745200000, + 48.43709600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CERBERES - Avenue Du General De Gaulles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66048001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16545188427, + 42.44143189508 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20829540000, + 49.97168820000 + ], + [ + 1.20848080000, + 49.97129810000 + ], + [ + 1.20851290000, + 49.97126910000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-07-25", + "ref:EU:EVSE": "FRIENE009801;FRIENE009802", + "ref": "FRIENE009801;FRIENE009802", + "description": "Reuil", + "amenity": "charging_station", + "network": "Reuil", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78829500000, + 49.08671200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "CHATEAUBOURG - 14 square jean xxiii ", + "ref:EU:EVSE": "FRS35P35068001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38646300000, + 48.11213700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "description": "RAI", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61342A", + "ref": "SE61-RAI-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58450500000, + 48.75359000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P285279365677489417", + "capacity": "2", + "socket:type2_combo:output": "40 kW;7.4 kW", + "amenity": "charging_station", + "description": "Freshmile France/JXHEZ5LVEE", + "network": "Freshmile France", + "ref": "529358", + "operator": "Freshmile | FR*FR1", + "opening_hours": "We,Fr,Th,Mo,Tu 08:00-12:00,Th,Mo,Tu,We,Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "charging_station:output": "40 kW;7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81077000000, + 43.68361100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Avignonet-Lauragais, République;Roulez Électrique En Haute-Garonne/EFDJJV", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "64865;EFDJJV", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2017-11-21", + "ref:EU:EVSE": "FRS31PEFDJJV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78432000000, + 43.36660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEVALLOIS PERRET - Parking Marcel Cerdan", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-03-15", + "ref:EU:EVSE": "FRSIPE92044010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27799988400, + 48.89695900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "capacity": "6", + "ref:EU:EVSE": "FRCG0E000392;FRCG0E000389;FRCG0E000385;FRCG0E000387;FRCG0E000390;FRCG0E000391", + "socket:type2_combo:output": "225 kW", + "amenity": "charging_station", + "network": "Station rapide publique du Futuroscope de Poitiers", + "charging_station:output": "22 kW;225 kW;100 kW", + "opening_hours": "24/7", + "description": "Station rapide publique du Futuroscope de Poitiers", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000392;FRCG0E000389;FRCG0E000385;FRCG0E000387;FRCG0E000390;FRCG0E000391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36231557000, + 46.67062862000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - EUGENE MO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE16812;FRM06PNICE16811", + "start_date": "2022-05-19", + "ref": "FR*SOD*S*NICE*168*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26720313703, + 43.69929434626 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "7e4f927f-8165-5b4d-be88-ff421ae6d538", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Saint-Hilaire de Lusignan | Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51309500000, + 44.22559700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 21 AVENUE DE MONTMORENCY - GOUSSAINVILLE", + "ref:EU:EVSE": "FRSIGPSIGE30911;FRSIGPSIGE30912", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-10-24", + "ref": "FR*SOD*S*SIGE*309*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45729800000, + 49.02965000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "202090;202091;202092;202093", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS202093;FRBMPS202091;FRBMPS202092;FRBMPS202090", + "description": "Bump - Intermarché SUPER - Bazeilles", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97361290000, + 49.68480290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3188EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "BAPAUME République", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3188EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86305800000, + 50.10521400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "7cfe0deb-5cea-5e7f-aafe-0c5a3933bb2c", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Sainte-Fortunade | Plaine des Sports" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77349000000, + 45.20702700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "561db53a-24c8-5ac9-9ab2-1ab85ec09729", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Évry-Courcouronnes - Boulevard de l'Écoute S'Il Pleut" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42497700000, + 48.63522500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "RUE SAINT MARTIN - MONTBOUCHER SUR JABRON", + "ref": "FR*55C*P26740*MSJ*MART1N", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref:EU:EVSE": "FR55CP26740MSJMART1N", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-07-25", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80636300000, + 44.55219500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3967EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MARIGNANE - Palun", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3967EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20421400000, + 43.40561800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "100 kW;150 kW;300 kW", + "capacity": "5", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPVDP1158861433643964686", + "ref": "917301", + "network": "Proviridis", + "description": "Proviridis/5ecd3c70a176410007f744c4", + "opening_hours": "24/7", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD", + "charging_station:output": "100 kW;150 kW;300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80370000000, + 43.62744400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLLSN02KU99RGJG", + "ref": "LLSN02KU99RGJG", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-02-15", + "description": "Termignon (Val Cenis), Place de la Vanoise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81721486000, + 45.27651084000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP57672A", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP57672A", + "opening_hours": "24/7", + "start_date": "2023-10-12", + "charging_station:output": "22 kW", + "description": "e-Totem - Thionville Boucle du Val Marie", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13905250000, + 49.36342880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Saint-Malo Quai Saint-Vincent P7 - EFFIA", + "ref:EU:EVSE": "FRP01E35288003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02289000000, + 48.64969000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Conches-en-Ouche", + "start_date": "2023-08-04", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT271901", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93494400000, + 48.95670400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3002001764184763916;FREBNPFHJTIMLKOG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "346703;FHJTIMLKOG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "description": "Réseau eborn/FHJTIMLKOG;Saint-Bonnet-Le-Froid, Places aux champignons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43568000000, + 45.14280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - MIRECOURT", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*500*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR50011;FROTHPOTHR50012", + "start_date": "2022-09-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13675500000, + 48.30948800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "network": "BRANFERE BORNE 2", + "ref:EU:EVSE": "FRCPIE6712375;FRCPIE6712385", + "description": "BRANFERE BORNE 2", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6712375;FRCPIE6712385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40140000000, + 47.59204400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529472", + "description": "Freshmile France/O3UK5WP8FZ", + "ref:EU:EVSE": "FRFR1P8660830979323725575", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32809900000, + 47.58592600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10053519;FRUBIE10086446", + "operator:email": "contact@ubitricity.com", + "ref": "setp0100000172", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "description": "UBI-LHSM-015", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18330700000, + 49.56201800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW;63 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P141421949970694167", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/HKLD3MTZJB", + "operator": "Freshmile | FR*FR1", + "ref": "466035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71293400000, + 48.61103000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTLSE31555039", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - 11 Bd Monplaisir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45758000000, + 43.59287000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/UTVSMAGTKP", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1967296253296311872", + "charging_station:output": "22 kW", + "ref": "454167", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48520000000, + 46.30800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/MQRZ3VP5TF", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "461835", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P3349066256201217241", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07979600000, + 48.97598300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "COMPREGNAC BOURG - Route De La Pierre Blanche", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12072001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95962500000, + 44.08325300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLIKFFCFDA", + "opening_hours": "24/7", + "ref": "735822", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA3P5852517482173908215", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48509400000, + 48.40123200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-23;2024-04-03", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "LA MEIGNANNE - Parking Angers;OuestCharge - Diva Sp - La Meignanne - Angers", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49196001;FRS49P49196A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66675900000, + 47.51852800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SIED70/jusseyfoire", + "capacity": "3", + "opening_hours": "24/7", + "ref": "65030", + "ref:EU:EVSE": "FRS70PJUSSEYFOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90350000000, + 47.82670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20684860000, + 49.97140520000 + ], + [ + 1.20675250000, + 49.97160850000 + ], + [ + 1.20674010000, + 49.97164580000 + ], + [ + 1.20662930000, + 49.97170990000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RENESCURE - Chemin Lateral Sncf", + "start_date": "2020-10-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59497001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37152800000, + 50.73199600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E214041;FRS37E219967", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - MONNAIE - Pl. Jean Baptiste Moreau", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - MONNAIE - Pl. Jean Baptiste Moreau", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E214041;FRS37E219967", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79096400000, + 47.50232100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "start_date": "2022-10-26", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "description": "SIEG63 - ePremium - Nohanent - Durtol;SIEG 63/FR*S63*P63254*A", + "opening_hours": "24/7", + "ref": "518369", + "ref:EU:EVSE": "FRS63P63254A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05571500000, + 45.80879600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59151001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "COLLERET - Place de l'Europe", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07473500000, + 50.25588600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PNPCXMY", + "ref": "21847", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/NPCXMY", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32835600000, + 43.57830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "CHARENTON LE PONT - Avenue Jean Jaurès", + "start_date": "2021-03-10;2021-05-21", + "ref:EU:EVSE": "FRSIPE94018001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41398600000, + 48.82229000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - CORNICHE FLEURIE", + "ref": "FR*SOD*S*NICE*289*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE28911;FRM06PNICE28912", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20958931068, + 43.68438318570 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Peyzac le Moustier | D6 | Parking Salle des Fetes", + "amenity": "charging_station", + "ref": "17ad3ad7-315e-59ab-a13c-1c7be5d38020", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05821200000, + 44.99589900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 90 GRANDE RUE - BESSANCOURT", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-05-22;2023-10-11", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE41611;FRSIGPSIGE41612", + "ref": "FR*SOD*S*SIGE*416*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21822900000, + 49.03877100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76540016", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ROUEN - Quai du Havre", + "charging_station:output": "22 kW", + "start_date": "2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08828500000, + 49.43918400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3236EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CHAMPAGNOLE Cassin", + "ref:EU:EVSE": "LFR3236EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91950600000, + 46.74786000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "24dd5d56-bcf5-57d6-afd6-3b79322db63c", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Navailles Angos | Rue du Bourg", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34225300000, + 43.41591300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "ref": "edec49be-7aa5-5318-915c-f5708b953198", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "CHATEAUNEUF-DE-GADAGNE - Chemin de Caumont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94511000000, + 43.92579800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUFFARGIS - Rue Creuse", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78030001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88800230000, + 48.69994430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "LFR3377EVCP02;LFR3377EVCP01", + "capacity": "4", + "ref": "LFR3377EVCP02;LFR3377EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "SAINT BERTHEVIN Thomas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80328900000, + 48.06724500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-31;2023-12-19", + "charging_station:output": "50 kW;22 kW;125 kW", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "socket:type2_combo:output": "125 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMSJV", + "description": "Intermarché Super - Saint-Julien-les-Villas 1", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09684389025, + 48.28086769456 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPT00CHAS1VP", + "start_date": "2020-06-21", + "description": "Réseau eborn/T00CHAS1VP;Saint-Veran, Parking Beauregard", + "ref": "T00CHAS1VP;75053" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86580800000, + 44.69929400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP86066A", + "description": "e-Totem - Hôtel Coli", + "ref": "FRETIP86066A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54546378476, + 46.83926615472 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;180 kW;22 kW", + "start_date": "2023-06-22;2023-04-06", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PCORSBG", + "socket:type2_combo:output": "50 kW;100 kW;180 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Cora - Sarrebourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07073387162, + 48.73977111497 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT624001", + "description": "Carrefour Market - Béthune Bar", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63702100000, + 50.53404100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB Novacieries", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42207AA", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42207AA", + "start_date": "2019-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50852500000, + 45.47108600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPIZIG281;FROTHPIZIG271;FROTHPIZIG2101;FROTHPIZIG2111", + "ref": "FR*SOD*S*IZIG*2*8*_*_;FR*SOD*S*IZIG*2*7*_*_;FR*SOD*S*IZIG*2*11*_*_;FR*SOD*S*IZIG*2*10*_*_", + "start_date": "2020-02-20;2019-09-17", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "description": "BORDEAUX RAVEZIES - SOUS-SOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57481600000, + 44.86371600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BORNE DEPREUX STATION 1", + "ref:EU:EVSE": "FRCPIE6831645", + "capacity": "2", + "amenity": "charging_station", + "description": "BORNE DEPREUX STATION 1", + "opening_hours": "24/7", + "ref": "FRCPIE6831645", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-01-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11603900000, + 50.68174700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1052472", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2574561633428999711", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKTURJIF1M44V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87740700000, + 42.70929400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B HOTEL BAYONNE TARNOS", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP122053", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46302000000, + 43.52858000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P316314821027102775", + "description": "Freshmile France/I8EP8OVXXQ", + "ref": "368848", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57437100000, + 44.85122800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP16281", + "description": "Tesla Supercharger Vierzon, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06908310000, + 47.24578994000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLIVPFZEK23H7U", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892248", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1807695597736207042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.05927300000, + 48.80501800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/WIO5B4HAFQ", + "ref:EU:EVSE": "FRS14P235679780334209065", + "opening_hours": "24/7", + "network": "MobiSDEC", + "ref": "467511", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48182100000, + 48.98970400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Barbentane, Route De Boulbon", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRS13PFCEGOYX74T" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75401700000, + 43.90181000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLYSZHWF8J", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "6.9 kW;7.4 kW", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref": "1128162", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P7454078188718534705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57575600000, + 45.89781100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-16", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "BARNEVILLE CARTERET - Mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50031001", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75545560000, + 49.38218830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81140001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "LAVAUR - Allée Jean Jaures" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81554400000, + 43.69909900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF059010", + "description": "RELAIS ILE NAPOLEON", + "socket:type2_combo:output": "300 kW;150 kW", + "start_date": "2023-04-05", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681355;531681347;531681348;531681349;531681350;531681351;531681354;531681353;531681352", + "opening_hours": "24/7", + "ref": "FRHPCPNF059010", + "network": "TotalEnergies Charge Rapide", + "capacity": "9", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38279600000, + 47.76816900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48014001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BAGNOLS LES BAINS - Avenue De La Gare", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-20", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66224400000, + 44.50726600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "298624", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PBD9SBFG89K", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/BD9SBFG89K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18619400000, + 47.36075000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH04E59569004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2020-12-17", + "network": "pass pass électrique", + "description": "SIN-LE-NOBLE - Rue de la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11313310000, + 50.35705360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2925400", + "socket:type2_combo:output": "24 kW", + "description": "Saint Martin des Champs-Rue de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.84328500000, + 48.57551600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXAEEUR", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Languidic - Place Joseph Guillerme", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15967100000, + 47.83423900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-14", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "LEIGNES SUR FONTAINE-1-1;LEIGNES SUR FONTAINE-1-2", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346051791;FRLMSE12346051792;FRLMSE12346051801;FRLMSE12346051802", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B113", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77655000000, + 46.50507000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2023-01-20", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref": "599109", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Bagnolet - Pasteur;Métropolis/FR*MGP*P93006*A", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP93006A", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41898100000, + 48.87605200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-25", + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*91*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 2 PLACE DE VERDUN - ENGHIEN-LES-BAINS", + "ref:EU:EVSE": "FRSIGPSIGE9111;FRSIGPSIGE9112", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31000190000, + 48.96826410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Atlante/FRATLFR00359", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "24/7", + "network": "Atlante", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRATLP5394205742917146098", + "ref": "1011774", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12622500000, + 50.61711800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000081835", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Givors", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78713000000, + 45.58723800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Arcangues | Parking du Trinquet", + "ref": "d1c96e84-e988-5162-89a6-fa059144380d", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52229800000, + 43.43733200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85191009", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LA ROCHE-SUR-YON - Place De Coubertin - Boulevard Réaumur", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44083000000, + 46.66913000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9006352;FRALLEGO9006351;FRALLEGO9006201;FRALLEGO9002882;FRALLEGO9002881;FRALLEGO9000362;FRALLEGO9000361;FRALLEGO9000342;FRALLEGO9000341;FRALLEGO9002883;FRALLEGO9006202", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Mont-Saint-Aignan", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9006352;FRALLEGO9006351;FRALLEGO9006201;FRALLEGO9002882;FRALLEGO9002881;FRALLEGO9000362;FRALLEGO9000361;FRALLEGO9000342;FRALLEGO9000341;FRALLEGO9002883;FRALLEGO9006202", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "capacity": "11", + "network": "Allego Carrefour Mont-Saint-Aignan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09400000000, + 49.47139600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-01", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "ref:EU:EVSE": "FRIZMPMAMP2912;FRIZMPMAMP2911", + "ref": "FR*SOD*S*MAMP*29*1*_*_", + "description": "IZIVIA | MARSEILLE 06 - RUE MENPENTI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39246500000, + 43.28347300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PMATCHG", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Match - Champigneulles", + "start_date": "2024-01-15", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16285705951, + 48.73690017862 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "492120;ZFNYXIEBSQ", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPZFNYXIEBSQ;FREBNP234776101752518298", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Annecy-le-Vieux, Rue Antoine de Saint-Exupéry;Réseau eborn/ZFNYXIEBSQ", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14202000000, + 45.91962000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP7043041952860419696", + "ref": "593339", + "description": "CARF - Bornes Publiques/A1952231-8C6B-4306-B109-106BE66B07FC", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47709600000, + 43.79503700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Logis Hôtel Cottage - Calais", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-08-16;2023-08-17", + "amenity": "charging_station", + "capacity": "4", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "160 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PHOTCLS", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83795607355, + 50.94391233766 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLJED14261GDB1;Saint-Alban-Leysse, Avenue de la Mairie", + "start_date": "2023-06-27", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLLJED14261GDB1;FREBNP3405170918507109544", + "charging_station:output": "24 kW;22 kW", + "ref": "LLJED14261GDB1;892809", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95964000000, + 45.58027100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP26198B", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP26198B", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-24", + "description": "e-Totem - Palais du bonbon Montélimar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75373945924, + 44.57980752806 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*190*4*_*_;FR*SOD*S*OTHR*190*1*_*_;FR*SOD*S*OTHR*190*2*_*_;FR*SOD*S*OTHR*190*3*_*_", + "network": "BAOBAB", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "BAOBAB - BEZIERS", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "ref:EU:EVSE": "FROTHPOTHR19041;FROTHPOTHR19011;FROTHPOTHR19021;FROTHPOTHR19031", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25501100000, + 43.35165800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-11-27", + "description": "LINAS - FIEF DE PLAINVILLE", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*22*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPSPCAPS2211;FRCPSPCAPS2212", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26746200000, + 48.63202300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P9111138958530394630", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/KCALTA6R9C", + "opening_hours": "24/7", + "ref": "541787", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762400000, + 47.01736100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVISP4233731728092530081", + "operator:email": "contact@mobilygreen.fr", + "ref": "705716", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "description": "ENRGETICA/8de0f90e-02f1-4feb-a7cd-1fe1b1d36d0e", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84906600000, + 43.93592800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4581054196927709216", + "description": "Freshmile France/JREWFN", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1009137", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36838000000, + 47.74930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HYPER U AIZENAY", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "start_date": "2022-02-23;2022-07-28", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "network": "HYPER U AIZENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59353700000, + 46.73424100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2874477131042815907", + "ref": "160137", + "description": "Freshmile France/braspanon2002", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.67870000000, + -20.99610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDMG250001", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "MG Motors - Besançon", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98671900000, + 47.23668200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "LA BAZOCHE-GOUET - Rue des fossés - 134878", + "amenity": "charging_station", + "capacity": "1", + "network": "LA BAZOCHE-GOUET - Rue des fossés - 134878", + "ref": "FRS28E134878", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E134878" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98050000000, + 48.13846200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AQUA LOISIRS", + "operator:email": "loisirs.acqua@orange.fr", + "charging_station:output": "7 kW", + "description": "aqua loisirs", + "ref": "01F9VBZH9QQ087R6AHJGRZCS32", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "operator": "AQUA LOISIRS", + "start_date": "2021-07-02", + "owner:ref:FR:SIREN": "443891056", + "opening_hours": "Mo-su 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49000000000, + 45.67000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39653", + "ref:EU:EVSE": "FRS10P3933218332148549028", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/WQKIXJ3XWI", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70825100000, + 48.28808700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "789180", + "ref:EU:EVSE": "FRWATP4790472798056454114", + "capacity": "19", + "network": "WAAT", + "description": "WAAT/FRWA1LSPQ1HA6Z", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853000000, + 43.33813500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2016-10-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GOUVILLE SUR MER - Crédit Mutuel", + "ref:EU:EVSE": "FRS50P50560002", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57940530000, + 49.09656810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81288002", + "start_date": "2023-06-29", + "operator": "Bouygues E&S", + "description": "SOREZE - Parking Stade Route de Dourgne", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07198000000, + 43.45396000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW;50 kW;43 kW", + "network": "Montélimar Ouest 2", + "socket:type2_combo:output": "50 kW;200 kW", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE486276;FRIOYE486253;FRIOYE486252;FRIOYE486251;FRIOYE486271;FRIOYE486272;FRIOYE486273;FRIOYE486274;FRIOYE486275", + "ref": "FRIOYE486276;FRIOYE486253;FRIOYE486252;FRIOYE486251;FRIOYE486271;FRIOYE486272;FRIOYE486273;FRIOYE486274;FRIOYE486275", + "capacity": "9", + "start_date": "2024-06-28", + "description": "Montélimar Ouest 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78193470000, + 44.51656079000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-03-26;2021-04-30", + "ref:EU:EVSE": "FRS49P49068A;FRS49E49068001", + "amenity": "charging_station", + "description": "CHAMPTOCE-SUR-LOIRE - Place de l'Église;OuestCharge - Diva Sp - Champtoce-sur-Loire - Eglise", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86491200000, + 47.41243400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PCPPCVJ", + "description": "Mouv'Oise/CPPCVJ", + "opening_hours": "24/7", + "ref": "79531", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46748000000, + 49.27500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62083001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BARLIN - rue de Versailles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62049700000, + 50.45536400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARGUERITTES - Avenue F.Perthus", + "start_date": "2022-01-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30156001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44357600000, + 43.86077700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "ref": "1129707", + "description": "Mobilité électrique 56/VEYPEA", + "network": "Mobilité électrique 56", + "charging_station:output": "22 kW;54 kW", + "ref:EU:EVSE": "FRS56P4300477515383290672" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48967000000, + 48.03060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B009", + "start_date": "2016-03-23", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346396551;FRLMSE12346396561", + "network": "SOREGIES MOBILITES", + "description": "BONNES-1-2;BONNES-1-1", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60268000000, + 46.60733000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "Metropolis - Express - Villiers-sur-Marne - Bishop`s Stortford;Métropolis/FR*MGP*P94079*C", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94079C", + "opening_hours": "24/7", + "ref": "484877", + "start_date": "2022-06-24", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53491000000, + 48.83200500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*122*1*_*_", + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - AVENUE JEAN JAURES - DOMONT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE12211;FRSIGPSIGE12212", + "start_date": "2021-07-21", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33988100000, + 49.03334600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAGNY LES HAMEAUX - Place du 19 Mars 1962", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-28", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E78356002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10202800000, + 48.71863700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP90152078", + "operator": "Last Mile Solutions", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Chantraine - Maison de Santé", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42937200000, + 48.17497400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS16PMB163412;Non concerné;FRS16PMB163411", + "operator": "190__SDEG16;IZIVIA", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB16*34*1*_*_;0b204e49-c8a2-51e1-9c0e-7e1b496c245a", + "start_date": "2020-05-05", + "description": "MOBIVE | Rouillac | Place Thiers;ROUILLAC - PLACE THIERS", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06506200000, + 45.77558100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE68RLBA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-04-19", + "charging_station:output": "25 kW;22 kW", + "description": "RANSPACH LE BAS", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45318700000, + 47.58825900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9006301;FRALLEGO9001891;FRALLEGO9001892;FRALLEGO9005731;FRALLEGO9005732;FRALLEGO9006302", + "amenity": "charging_station", + "description": "Allego Carrefour Paimpol", + "ref": "FRALLEGO9006301;FRALLEGO9001891;FRALLEGO9001892;FRALLEGO9005731;FRALLEGO9005732;FRALLEGO9006302", + "network": "Allego Carrefour Paimpol", + "charging_station:output": "0 kW", + "start_date": "2023-02-06", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03937500000, + 48.77211400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3415EVCP01;LFR3415EVCP03;LFR3415EVCP02", + "description": "BRUAY LA BUISSIERE", + "ref:EU:EVSE": "LFR3415EVCP02;LFR3415EVCP01;LFR3415EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58583800000, + 50.49185000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "description": "ST JORY - Place De La République", + "network": "Reveo", + "ref:EU:EVSE": "FRM31E31490001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37032800000, + 43.74264800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Seyne-sur-Mer, Parking St Elme Rue Georges Lahaye;Réseau eborn/IMX5QJAPON", + "ref:EU:EVSE": "FREBNPIMX5QJAPON;FREBNP4861930015023340678", + "ref": "346760;IMX5QJAPON", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89886300000, + 43.07887800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1114542", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLWHICYC510V59", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3681386218620302316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46784600000, + 48.19904300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E751080012;FRP07E751080011;FRP07E75108001", + "start_date": "2021-11-03;2024-02-16;2020-06-17", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "21", + "description": "PARIS - Alma Georges V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30151086822, + 48.86522871102 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Neuilly-le-Real, Gendarmerie;Réseau eborn/neuillylereal", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPNEUILLYLEREA;FREBNPNEUILLYLEREAL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "neuillylereal;231544" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43213000000, + 46.46530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "opening_hours": "Fr,We,Th,Sa,Tu,Mo,Su 08:00-18:00", + "ref:EU:EVSE": "FREFLP7052458830445591581", + "amenity": "charging_station", + "capacity": "1", + "description": "Road/651285fdb2c78400201ea5d8", + "ref": "934125", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81196900000, + 47.89299900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E57672002", + "description": "Parking Hôpital Thionville Bel Air (Entrée rue du Friscaty) - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14924700000, + 49.37356200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT SAINT-LÔ", + "ref:EU:EVSE": "FRCPIE6609475", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6609475", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "description": "SONEPAR CONNECT SAINT-LÔ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08749900000, + 49.10066700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "UHJOVHVZUL;75020", + "capacity": "2", + "description": "Cervières, Route du Col d'Izoard;Réseau eborn/UHJOVHVZUL", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPUHJOVHVZUL", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72129300000, + 44.86833800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P4156967928432480164", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s570516", + "ref": "1181766", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05824900000, + 47.33814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "694253", + "description": "Freshmile France/KUW5BRYJM8", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P795487797554516159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10022100000, + 46.17944400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP00650", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "owner:ref:FR:SIREN": "778168005", + "network": "Résidence les Primevères", + "description": "Residence Les Primeveres - Beaune", + "ref": "FRTCBP00650", + "start_date": "2022-06-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84599410000, + 47.03251950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/I9G0X0SWES", + "ref:EU:EVSE": "FRFR1P7622193219763472498", + "ref": "440991", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85437700000, + 45.71848600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-08-22", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN841001", + "charging_station:output": "50 kW;22.08 kW", + "description": "Nissan -Orange", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80363600000, + 44.15097200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2904900", + "charging_station:output": "22 kW", + "description": "Elliant-Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.89039800000, + 47.99644500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "370220", + "description": "SDEA 10/ATGU49BCSH", + "ref:EU:EVSE": "FRS10P3675808454394948175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73012500000, + 48.51393900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "750874000", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Kyriad Prestige Dijon - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC97648;FRZP1PEAC97622;FRZP1PEAC108356;FRZP1PEAC97590", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "e19969d2-f602-45c8-b30d-6fa9db18b372", + "network": "Hôtel Kyriad Prestige Dijon Nord Valmy", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04960255000, + 47.36045326000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "description": "Régie Services Energie/FR*RSE*P01443*A", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481245", + "ref:EU:EVSE": "FRRSEP01443A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02619400000, + 45.99227800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/Bovesoreno", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PBOVESORENO", + "charging_station:output": "22 kW", + "ref": "64736", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39190000000, + 49.85820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST18913;FRIZFPFAST18912;FRIZFPFAST18911;FRIZFPFAST18921;FRIZFPFAST18922;FRIZFPFAST18923", + "description": "IZIVIA FAST - MCDONALDS - PIERRE BENITE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-07-10", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*189*1*_*_;FR*SOD*S*FAST*189*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82927154722, + 45.69376972834 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-29;2024-04-24;2021-04-20", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44052B;FRS44E44052002;FRS44E0440032", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Donges - Croix;DONGES - Les Six Croix", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09247400000, + 47.34034900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "ref": "89e9fad2-2cef-463c-9fab-28cda4c794a1", + "description": "Arbonne-la-Forêt;ARBONNE-LA-FORET - Avenue de la libération", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "socket:type2_combo:output": "24 kW", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77006001;FRS77P77006A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56365700000, + 48.40994800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGMOE44210001", + "network": "CPO Alizé Liberté Public", + "description": "TRIGNAC - Rue de la fontaine au Brun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20914700000, + 47.30007900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MAILLE - Pkg. de la gare", + "ref:EU:EVSE": "FRS37E215846;FRS37E215847", + "ref": "FRS37E215846;FRS37E215847", + "description": "MODULO - MAILLE - Pkg. de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58277830000, + 47.05354232000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Muzillac - Place du Vieux Couvent", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTGSHMS", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48297700000, + 47.55561900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P45104A", + "capacity": "2", + "amenity": "charging_station", + "description": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P45104A", + "start_date": "2022-06-15", + "network": "AGGLOMERATION MONTARGOISE - CORQUILLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69797900000, + 48.04504900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - SAINT JEAN DE LA RUELLE", + "ref:EU:EVSE": "FROTHPAUCH15211;FROTHPAUCH15212", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "ref": "FR*SOD*S*AUCH*152*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86052191213, + 47.90482258138 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*237*1*_*_", + "operator": "IZIVIA", + "description": "SIGEIF - ROND-POINT DE MONTFERMEIL - LE RAINCY", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE23711;FRSIGPSIGE23712", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52665900000, + 48.89579200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref": "21809", + "operator": "Freshmile | FR*CN1", + "description": "Move In Pure/JGCECV", + "ref:EU:EVSE": "FRCN1PJGCECV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86084000000, + 44.91940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510632", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P7986511350072471296", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/LBBOWNBKO6", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738500000, + 47.12095700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "description": "MOBIVE | Rochefort | Parking de la Galissonnière", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "c69dfc0b-db79-5208-b3d8-dc9c11128d0b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95862300000, + 45.93437300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE91DCAA", + "description": "Centre administratif - DRAVEIL", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40771600000, + 48.68516400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "ref:EU:EVSE": "FRABAPH5VUJOQTXG", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mouries, Pré D'Ester", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87064700000, + 43.69162600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3705EVCP01;LFR3705EVCP02", + "description": "LE THOLONET RN7", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3705EVCP01;LFR3705EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50122300000, + 43.50870700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM38E38185019", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRENOBLE - Place Dr Léon Martin - Vaucanson", + "charging_station:output": "22 kW;7 kW", + "start_date": "2021-07-20;2022-03-01;2021-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72778200000, + 45.18818000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VIEILLE-EGLISE-EN-YVELINES - Route de Rambouillet", + "ref:EU:EVSE": "FRA05E78655001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87506260000, + 48.66975500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1191346", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5065743129074325896", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLT46NM2V49IGN", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.33373600000, + -20.93792500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PACCPPN", + "owner:ref:FR:SIREN": "891118473", + "description": "Hotel F1 Perpignan (66)", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-10-02", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89483320000, + 42.68865910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/PCPZSNAJOW;Pierrelatte, Place Sogno", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPPCPZSNAJOW", + "ref": "31915;PCPZSNAJOW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70323500000, + 44.37650700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-12-19", + "amenity": "charging_station", + "network": "ELECTRA", + "socket:type2_combo:output": "50 kW;300 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;300 kW", + "operator": "ELECTRA", + "description": "Bordeaux - Intermarché Cauderan", + "ref:EU:EVSE": "FRELCPBORCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61095000000, + 44.85354000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Suresnes Henri IV - EFFIA", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E92073005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22809000000, + 48.87012000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR SAINT-LOUIS", + "description": "SONEPAR SAINT-LOUIS", + "start_date": "2022-12-08", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6663275", + "ref": "FRCPIE6663275", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54926200000, + 47.60014900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/LLUVDCM821TOCX;Saône, Salle Joseph Guinemand (ex :Place Jean moulin (ex. Grande Rue)", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPLLUVDCM821TOCX;FRECHP8641649735151886547", + "ref": "1075746;LLUVDCM821TOCX", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11837600000, + 47.22426800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue de Belleville 265", + "ref": "FR*V75*PPX20*02", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX2002", + "start_date": "2021-07-07;2021-07-08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39973800000, + 48.87559000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P604312996757036934", + "capacity": "2", + "charging_station:output": "120 kW", + "description": "Freshmile France/YZPNMKUCFN", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref": "521408", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37078000000, + 48.71984800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX03*01", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "description": "Paris | Rue Saint-Martin 204", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX0301", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35269780000, + 48.86333670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8858706235626110860", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "971894", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLNAD0ZRRMITIQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75917900000, + 48.59444200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2021-02-17", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD732001", + "capacity": "4", + "description": "Ford - Albertville", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38865300000, + 45.66187700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Quevert-Rue du Val (parking maison des associations)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22259001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08725800000, + 48.46541700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11289001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-07-05", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PIEUSSE - D118", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22583300000, + 43.08694400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AUTO SPRINTER - MARSEILLE", + "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", + "ref": "56427;56428", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "309004331", + "capacity": "1", + "description": "Toyota - Marseille - 22KW AC ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-03-19", + "operator": "ZEBORNE", + "ref:EU:EVSE": "FRZTLE22AC56428;FRZTLE22AC56427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41917150000, + 43.27918240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/P4F3QRFJ1V", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1920386336246069734", + "ref": "32038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96820300000, + 48.56855100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64766", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/molliensdreuil", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PMOLLIENSDREUIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02060000000, + 49.88350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-12", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - MUILLE-VILLETTE", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*72*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST7211;FRIZFPFAST7212;FRIZFPFAST7213" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06871070000, + 49.73223130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-26;2024-04-16;2021-04-06", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "MOUZEIL - Rue Du Bourg Drapé;OuestCharge - Diva Sp - Mouzeil - Drapé", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44107001;FRS44P44107A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34614300000, + 47.44814300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77276001;FRS77P77276A", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mareuil-les-Meaux;MAREUIL-LES-MEAUX - Place Jean Jaurès", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-11", + "ref": "01F5ZAKH61A2VGXQ2FPA7YGD3Y", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85968500000, + 48.92673100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "47 kW", + "operator:email": "emobility.exploit@greenyellow.fr", + "ref": "1091019", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "charging_station:output": "47 kW", + "description": "GreenYellow Shift Mobility/86", + "ref:EU:EVSE": "FRGYMP4616686156534413657" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08417600000, + 43.55855800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221270;FRS37E221271", + "start_date": "2023-10-18", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E221270;FRS37E221271", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - COURCAY - Rue des Rochers", + "network": "MODULO - COURCAY - Rue des Rochers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87666700000, + 47.24962500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66198;FRS55E66199", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66198;FRS55E66199", + "network": "MODULO - BAR LE DUC - Boulevard des Flandres", + "description": "MODULO - BAR LE DUC - Boulevard des Flandres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16751300000, + 48.78016800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY801 - MAISON DE LA DANSE", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-09-17", + "ref:EU:EVSE": "FRGLYPLYON12012;FRGLYPLYON12011;FRGLYPLYON12021;FRGLYPLYON12022", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*120*1*_*_;FR*SOD*S*LYON*120*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87067000000, + 45.73505500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "ref:EU:EVSE": "FRMBZEYRHCO", + "operator": "Mobilize Power Solutions", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "network": "JRA Pornic", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref": "f7bc6312-67fc-4ec4-8cd8-cb1cd2bfbf7e", + "description": "JRA Pornic", + "start_date": "2023-07-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12704300000, + 47.12727500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 13:00-18:00, Tu 08:00-12:00, Tu 13:00-18:00, We 08:00-12:00, We 13:00-18:00, Th 08:00-12:00, Th 13:00-18:00, Fr 08:00-12:00, Fr 13:00-17:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2018-05-22", + "description": "Jaguar Land Rover - Reims", + "ref:EU:EVSE": "FRSSDPJLRREIMS514201", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11338000000, + 49.28379800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MENODIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6560525;FRCPIE6580355", + "network": "MENODIS BORNE 1", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref": "FRCPIE6560525;FRCPIE6580355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31553100000, + 46.16964000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/LBFG8OBIJR", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8863009215421020882", + "ref": "454296" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097900000, + 49.21509900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARSAS - PLACE DE L ECOLE;MOBIVE | Marsas | Place de L Ecole", + "start_date": "2020-03-31", + "capacity": "2", + "amenity": "charging_station", + "ref": "fd41fbeb-3017-5f34-849e-e0459516b8e7;FR*SOD*S*MB33*91*1*_*_", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "253303473", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref:EU:EVSE": "FRS33PMB339111;Non concerné;FRS33PMB339112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38401200000, + 45.06746700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Ris-Orangis - Rue Albert Rémy", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "20d00341-f612-5a98-ba52-658d48c1c9b7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40865300000, + 48.65604800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego NISSAN Rodez", + "ref": "FRALLEGO0000141", + "amenity": "charging_station", + "capacity": "1", + "network": "Allego NISSAN Rodez", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO0000141", + "start_date": "2024-05-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59308700000, + 44.37717000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "Nîmes", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3178EVCP01;LFR3178EVCP02", + "ref:EU:EVSE": "LFR3178EVCP01;LFR3178EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32547000000, + 43.82537000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "TOURRETTE-LEVENS - PARKING MAIRIE", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*79*1*_*_", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE7912;FRM06PNICE7911", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2019-12-30", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27620994704, + 43.78675607900 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-01", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "PUGET SUR ARGENS - PARKING MAIRIE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*207*1*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ20712;FRA16PWIIZ20711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68353400000, + 43.45656000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "585488", + "network": "Freshmile France", + "description": "Freshmile France/AYZCB8ZTQ9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7602570544178484948", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94076800000, + 45.96096000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-14;2023-10-06", + "description": "Mobalpa - Champagne-au-Mont-d'Or", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBPCAO", + "operator": "Power Dot France", + "charging_station:output": "50 kW;100 kW;188 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78196332398, + 45.80455139495 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WJASLMUGE9;Cleon-D'Andran, Route de Beaulieu", + "ref:EU:EVSE": "FREBNPWJASLMUGE9", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "WJASLMUGE9;31810", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93401500000, + 44.61017800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP8818935340632101565", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "description": "EVzen/a368559d-dc7c-4aca-be0e-04a2c9bd8c09", + "operator:email": "support@evzen.com", + "ref": "1002945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48483000000, + 44.51669000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "16", + "start_date": "2023-07-03", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E54395008;FRP07E543950081", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "RUEIL-MALMAISON - Zac Arsenal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19926570000, + 48.87267990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "ref": "LLVKY7ULM2HZ83;1071435", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Vetraz, 1 route des Hutins;Réseau eborn/LLVKY7ULM2HZ83", + "ref:EU:EVSE": "FREBNP4054485081897331617;FREBNPLLVKY7ULM2HZ83" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26110900000, + 46.17269100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "charging_station:output": "3.5 kW;22 kW", + "description": "Road/662770f28f64fa001cbba785", + "capacity": "3", + "ref:EU:EVSE": "FREFLP7389177059363399837", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "opening_hours": "Su,We,Sa,Fr,Tu,Th,Mo 08:00-18:00", + "ref": "1078143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01599200000, + 45.98909700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121010", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Laon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65556000000, + 49.56802100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2231106953883463522", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "ref": "1059633", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLUTWVHX11ERCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44996700000, + 46.31931300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Avenue Ledru Rollin 104", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX11*15", + "start_date": "2021-11-16", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1115", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37643400000, + 48.85189000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/EAREAOIQCM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3254857075038572537", + "ref": "514988" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56617700000, + 48.58069900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-10-21;2022-09-01", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPPERICAUD247501", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "description": "Volvo - Périgueux", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79176200000, + 45.19812100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-06-23", + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PBRIONNEGARE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900008", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71204700000, + 49.19662700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "description": "SICECO/FR*S21*P21247*A", + "capacity": "2", + "amenity": "charging_station", + "ref": "180368", + "ref:EU:EVSE": "FRS21P21247A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17455100000, + 47.50577200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE PECQ - Eaux Vives", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78481005", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10417130000, + 48.89238010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-23;2022-01-01;2023-02-07;2024-07-22;2024-05-24;2024-05-23;2024-05-13;2024-05-14", + "operator": "IZIVIA", + "capacity": "1;2", + "ref:EU:EVSE": "FRQPKPQPRK9991;FRQPKPQPRK9961;FRQPKPQPRK99481;FRQPKPQPRK99471;FRQPKPQPRK99441;FRQPKPQPRK99421;FRQPKPQPRK99401;FRQPKPQPRK99391;FRQPKPQPRK99381;FRQPKPQPRK99371;FRQPKPQPRK99361;FRQPKPQPRK99351;FRQPKPQPRK99321;FRQPKPQPRK99311;FRQPKPQPRK9931;FRQPKPQPRK99291;FRQPKPQPRK99281;FRQPKPQPRK99261;FRQPKPQPRK99251;FRQPKPQPRK99241;FRQPKPQPRK99211;FRQPKPQPRK99181;FRQPKPQPRK99171;FRQPKPQPRK99111;FRQPKPQPRK9911;FRQPKPQPRK98711;FRQPKPQPRK98701;FRQPKPQPRK98691;FRQPKPQPRK98651;FRQPKPQPRK9862;FRQPKPQPRK98611;FRQPKPQPRK9861;FRQPKPQPRK98601;FRQPKPQPRK98591;FRQPKPQPRK98541;FRQPKPQPRK9851;FRQPKPQPRK98501;FRQPKPQPRK98361;FRQPKPQPRK98331;FRQPKPQPRK98291;FRQPKPQPRK98281;FRQPKPQPRK98261;FRQPKPQPRK98251;FRQPKPQPRK98191;FRQPKPQPRK98181;FRQPKPQPRK98171;FRQPKPQPRK98151;FRQPKPQPRK98121;FRQPKPQPRK98111;FRQPKPQPRK98101;FRQPKPQPRK9811;FRQPKPQPRK98131;FRQPKPQPRK98141;FRQPKPQPRK98161;FRQPKPQPRK98201;FRQPKPQPRK9821;FRQPKPQPRK98211;FRQPKPQPRK98221;FRQPKPQPRK98231;FRQPKPQPRK98241;FRQPKPQPRK98271;FRQPKPQPRK98301;FRQPKPQPRK98311;FRQPKPQPRK98321;FRQPKPQPRK98341;FRQPKPQPRK98351;FRQPKPQPRK98371;FRQPKPQPRK98381;FRQPKPQPRK98511;FRQPKPQPRK98521;FRQPKPQPRK98531;FRQPKPQPRK98551;FRQPKPQPRK98561;FRQPKPQPRK98571;FRQPKPQPRK98581;FRQPKPQPRK98621;FRQPKPQPRK98631;FRQPKPQPRK98641;FRQPKPQPRK98661;FRQPKPQPRK98671;FRQPKPQPRK98681;FRQPKPQPRK98721;FRQPKPQPRK98731;FRQPKPQPRK98741;FRQPKPQPRK98751;FRQPKPQPRK98761;FRQPKPQPRK98762;FRQPKPQPRK99101;FRQPKPQPRK99121;FRQPKPQPRK99131;FRQPKPQPRK99141;FRQPKPQPRK99151;FRQPKPQPRK99161;FRQPKPQPRK99191;FRQPKPQPRK99201;FRQPKPQPRK9921;FRQPKPQPRK99221;FRQPKPQPRK99231;FRQPKPQPRK99271;FRQPKPQPRK99301;FRQPKPQPRK99331;FRQPKPQPRK99341;FRQPKPQPRK9941;FRQPKPQPRK99411;FRQPKPQPRK99431;FRQPKPQPRK99451;FRQPKPQPRK99461;FRQPKPQPRK99491;FRQPKPQPRK99501;FRQPKPQPRK9951;FRQPKPQPRK99511;FRQPKPQPRK99521;FRQPKPQPRK9971;FRQPKPQPRK9981", + "amenity": "charging_station", + "ref": "FR*SOD*S*QPRK*99*9*_*_;FR*SOD*S*QPRK*99*8*_*_;FR*SOD*S*QPRK*99*7*_*_;FR*SOD*S*QPRK*99*52*_*_;FR*SOD*S*QPRK*99*5*_*_;FR*SOD*S*QPRK*99*50*_*_;FR*SOD*S*QPRK*99*49*_*_;FR*SOD*S*QPRK*99*44*_*_;FR*SOD*S*QPRK*99*42*_*_;FR*SOD*S*QPRK*99*41*_*_;FR*SOD*S*QPRK*99*4*_*_;FR*SOD*S*QPRK*99*40*_*_;FR*SOD*S*QPRK*99*39*_*_;FR*SOD*S*QPRK*99*37*_*_;FR*SOD*S*QPRK*99*33*_*_;FR*SOD*S*QPRK*99*32*_*_;FR*SOD*S*QPRK*99*28*_*_;FR*SOD*S*QPRK*99*27*_*_;FR*SOD*S*QPRK*99*25*_*_;FR*SOD*S*QPRK*99*24*_*_;FR*SOD*S*QPRK*99*21*_*_;FR*SOD*S*QPRK*99*20*_*_;FR*SOD*S*QPRK*99*19*_*_;FR*SOD*S*QPRK*99*18*_*_;FR*SOD*S*QPRK*99*15*_*_;FR*SOD*S*QPRK*99*14*_*_;FR*SOD*S*QPRK*99*12*_*_;FR*SOD*S*QPRK*99*10*_*_;FR*SOD*S*QPRK*98*74*_*_;FR*SOD*S*QPRK*98*73*_*_;FR*SOD*S*QPRK*98*71*_*_;FR*SOD*S*QPRK*98*67*_*_;FR*SOD*S*QPRK*98*66*_*_;FR*SOD*S*QPRK*98*64*_*_;FR*SOD*S*QPRK*98*61*_*_;FR*SOD*S*QPRK*98*6*_*_;FR*SOD*S*QPRK*98*60*_*_;FR*SOD*S*QPRK*98*58*_*_;FR*SOD*S*QPRK*98*57*_*_;FR*SOD*S*QPRK*98*56*_*_;FR*SOD*S*QPRK*98*55*_*_;FR*SOD*S*QPRK*98*54*_*_;FR*SOD*S*QPRK*98*52*_*_;FR*SOD*S*QPRK*98*38*_*_;FR*SOD*S*QPRK*98*37*_*_;FR*SOD*S*QPRK*98*36*_*_;FR*SOD*S*QPRK*98*29*_*_;FR*SOD*S*QPRK*98*26*_*_;FR*SOD*S*QPRK*98*25*_*_;FR*SOD*S*QPRK*98*24*_*_;FR*SOD*S*QPRK*98*23*_*_;FR*SOD*S*QPRK*98*2*_*_;FR*SOD*S*QPRK*98*18*_*_;FR*SOD*S*QPRK*98*17*_*_;FR*SOD*S*QPRK*98*13*_*_;FR*SOD*S*QPRK*98*12*_*_;FR*SOD*S*QPRK*98*11*_*_;FR*SOD*S*QPRK*98*1*_*_;FR*SOD*S*QPRK*98*10*_*_;FR*SOD*S*QPRK*98*14*_*_;FR*SOD*S*QPRK*98*15*_*_;FR*SOD*S*QPRK*98*16*_*_;FR*SOD*S*QPRK*98*19*_*_;FR*SOD*S*QPRK*98*20*_*_;FR*SOD*S*QPRK*98*21*_*_;FR*SOD*S*QPRK*98*22*_*_;FR*SOD*S*QPRK*98*27*_*_;FR*SOD*S*QPRK*98*28*_*_;FR*SOD*S*QPRK*98*30*_*_;FR*SOD*S*QPRK*98*31*_*_;FR*SOD*S*QPRK*98*32*_*_;FR*SOD*S*QPRK*98*33*_*_;FR*SOD*S*QPRK*98*34*_*_;FR*SOD*S*QPRK*98*35*_*_;FR*SOD*S*QPRK*98*50*_*_;FR*SOD*S*QPRK*98*5*_*_;FR*SOD*S*QPRK*98*51*_*_;FR*SOD*S*QPRK*98*53*_*_;FR*SOD*S*QPRK*98*59*_*_;FR*SOD*S*QPRK*98*62*_*_;FR*SOD*S*QPRK*98*63*_*_;FR*SOD*S*QPRK*98*65*_*_;FR*SOD*S*QPRK*98*68*_*_;FR*SOD*S*QPRK*98*69*_*_;FR*SOD*S*QPRK*98*70*_*_;FR*SOD*S*QPRK*98*72*_*_;FR*SOD*S*QPRK*98*75*_*_;FR*SOD*S*QPRK*98*76*_*_;FR*SOD*S*QPRK*99*1*_*_;FR*SOD*S*QPRK*99*11*_*_;FR*SOD*S*QPRK*99*13*_*_;FR*SOD*S*QPRK*99*16*_*_;FR*SOD*S*QPRK*99*17*_*_;FR*SOD*S*QPRK*99*2*_*_;FR*SOD*S*QPRK*99*22*_*_;FR*SOD*S*QPRK*99*23*_*_;FR*SOD*S*QPRK*99*26*_*_;FR*SOD*S*QPRK*99*29*_*_;FR*SOD*S*QPRK*99*30*_*_;FR*SOD*S*QPRK*99*3*_*_;FR*SOD*S*QPRK*99*31*_*_;FR*SOD*S*QPRK*99*34*_*_;FR*SOD*S*QPRK*99*35*_*_;FR*SOD*S*QPRK*99*36*_*_;FR*SOD*S*QPRK*99*38*_*_;FR*SOD*S*QPRK*99*43*_*_;FR*SOD*S*QPRK*99*45*_*_;FR*SOD*S*QPRK*99*46*_*_;FR*SOD*S*QPRK*99*47*_*_;FR*SOD*S*QPRK*99*48*_*_;FR*SOD*S*QPRK*99*51*_*_;FR*SOD*S*QPRK*99*6*_*_", + "opening_hours": "24/7", + "network": "QPARK", + "charging_station:output": "7 kW;7.36 kW;22 kW", + "description": "QPARK - LA DEFENSE - CENTRE GRANDE ARCHE - NIVEAU -1;QPARK - LA DEFENSE - CENTRE GRANDE ARCHE - NIVEAU -2", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24201800000, + 48.89155400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "682547", + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWATL95IR5F1Y", + "capacity": "3", + "ref:EU:EVSE": "FRWATP5427788121336552957", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31170700000, + 47.79213700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2020-12-18", + "ref:EU:EVSE": "FRIONE416900", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Veyre", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE416900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15352500000, + 45.66012800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-08-05", + "ref:EU:EVSE": "FRS51E128310;FRS51E128309", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - LA VEUVE - Pkg. restaurant", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E128310;FRS51E128309", + "network": "MODULO - LA VEUVE - Pkg. restaurant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32272100000, + 49.03816500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH6172NAS9AG8F41KN6S", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "ref:EU:EVSE": "FRS77P77131B", + "description": "Coulommiers - Avenue Victor Hugo - AC", + "start_date": "2020-06-25", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08237000000, + 48.81500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080320", + "capacity": "2", + "amenity": "charging_station", + "description": "RELAIS BRESSUIRE BOCAPOLE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681864;531681865", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080320", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-05-27", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47300000000, + 46.84790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FRONTIGNAN - Boulevard des Républicains Espagnols", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-12-15", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34108003", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75889440000, + 43.44679900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1133628", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P1882646183655582045", + "description": "Mobilité électrique 56/SSKBUEC7TH", + "network": "Mobilité électrique 56", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91851700000, + 47.74158000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1250610927414440820", + "capacity": "2", + "description": "Freshmile France/RD1SP1RLHB", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454134", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30760000000, + 46.29160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "description": "Metropolis - Citadine - Montrouge - Roger Salengro", + "ref:EU:EVSE": "FRMGPP92049C", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2021-08-16", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515000, + 48.81253099000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2020-01-28", + "description": "Opel - Reims", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:45-19:00, Tu 08:00-12:00, Tu 13:45-19:00, We 08:00-12:00, We 13:45-19:00, Th 08:00-12:00, Th 13:45-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPTENEDOROPEL511001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08399700000, + 49.23866500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-15", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC2P002101", + "network": "CAMPING LES AMARINES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "description": "CAMPING LES AMARINES", + "ref": "FRC2P002101", + "owner:ref:FR:SIREN": "798043659", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710, + 44.22049963494 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "892728", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/XPTGCMDV0U", + "ref:EU:EVSE": "FRLE2P8367922045030942174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789300000, + 46.51400600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "eca1d8fe-22f3-5475-b99c-8d817b374ab8", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Thiviers | Place de la Liberation", + "charging_station:output": "50 kW;3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92431600000, + 45.42092700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE05OACA", + "operator": "STATIONS-E", + "capacity": "2", + "description": "Brochier Place du Queyrelet", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-12-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32664300000, + 44.69693800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E94065001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GOSB - Delta Rungis - Parking 1", + "start_date": "2024-07-11", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34728100000, + 48.75801500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/IMSVTLL4KF", + "ref:EU:EVSE": "FRLE2P3417142828064923899", + "ref": "454284" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205800000, + 45.53182700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Grans, Parking Place du Souvenir Français", + "ref:EU:EVSE": "FRM13PVGSP7YZJNR", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06309500000, + 43.60548900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P5175897883160638132", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/JARPJJ9XE9", + "ref": "402527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62615000000, + 47.95208100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "CANNES PARKING BROUSAILLES HOPITAL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ612;FRA16PWIIZ611", + "start_date": "2018-04-04", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*6*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00557400000, + 43.56281700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "505629", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MEYJUE0LKV", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5110309282688890283" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96220000000, + 49.06336300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "start_date": "2024-09-23", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Sogenial Commerces - Cormontreuil", + "ref:EU:EVSE": "FRPD1PSOGCOR", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05818505390, + 49.21611598332 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNP3863360990884103499;FREBNPGB7J68Q0BE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/GB7J68Q0BE;Serrières, Quai Jules Roche Sud", + "ref": "GB7J68Q0BE;346727" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76676000000, + 45.31700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "EVzen/92B39C4E-3676-4304-9993-78F5A57AF00E", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "network": "EVzen", + "ref": "1192285", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP3177525334863416797" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20270200000, + 48.02868300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MAIRIE DE HARNES", + "operator": "IZIVIA", + "description": "MAIRIE DE HARNES - EDF ENR", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-07-17", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "ref": "FR*SOD*S*OTHR*668*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR66811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90258500000, + 50.44667100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "298903;HBB3TYFJFW;85904;HWPPNAD8K0", + "ref:EU:EVSE": "FREBNHBB3TYFJFW;FREBNPHBB3TYFJFW;FREBNHWPPNAD8K0;FREBNPHWPPNAD8K0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "capacity": "2;4", + "description": "Saint-Cyr-Sur-Mer, La Falquette 2;Réseau eborn/HWPPNAD8K0;Saint-Cyr-Sur-Mer, La Falquette 1;Réseau eborn/HBB3TYFJFW", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70893100000, + 43.18144400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Briançon, Rue Maréchal de Lattre de Tassigny", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "charging_station:output": "50 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref": "CVWVXPR8FU", + "ref:EU:EVSE": "FREBNPCVWVXPR8FU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62275452000, + 44.88128484000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*360*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR36012;FROTHPOTHR36011", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "description": "CAMPING DEUX FONTAINES - NEVEZ", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.79051600000, + 47.79956000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626012", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/BYDGEFUMKN", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P131637413947645468", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96420500000, + 49.26091500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Aire d'Urvillers", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP3045", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33562600000, + 49.78701900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "682217", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/Q0ZSMFKDDZ", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8556064121533257221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899900000, + 48.44751300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Audi - ByMyCar - Orléans", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPBYMYCARAUDI454001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89781800000, + 47.92891200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "description": "900096", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PSTPIERREVAUVRAYBOURG", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22331000000, + 49.23128200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pedernec-Place de l'église", + "ref:EU:EVSE": "FRS22E22164001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26984700000, + 48.59726000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "network": "KIA Lons - EDEN AUTO", + "owner:ref:FR:SIREN": "801121096", + "ref": "38834;38835", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "socket:type2_combo:output": "24 kW", + "start_date": "2020-08-27", + "description": "KIA - Lons PAU 22kW AC ;KIA - Lons PAU - 24kW DC ", + "operator": "ZEBORNE", + "ref:EU:EVSE": "FRZKAE24DC38834;FRZKAE22AC38835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38138000000, + 43.33732500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE28", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "charging_station:output": "22 kW", + "description": "vohcergy", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08326900000, + 49.03421770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY01E78217001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "EPONE - Avenue Du Professeur Emile Sergent", + "start_date": "2022-02-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81307700000, + 48.95763700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-11", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref": "FRIOYE431753;FRIOYE431703;FRIOYE431701;FRIOYE431702;FRIOYE431704;FRIOYE431751;FRIOYE431752", + "network": "Saint Léger Est", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE431752;FRIOYE431701;FRIOYE431702;FRIOYE431703;FRIOYE431704;FRIOYE431751;FRIOYE431753", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Saint Léger Est" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59858388000, + 45.61004477000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "description": "BAIS - Avenue Auguste Janvier;OuestCharge - Diva Sp - Bais - Janvier", + "start_date": "2024-05-15;2021-04-09", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53P53016A;FRS53E53016001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36616450000, + 48.25110460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS65E65481002", + "description": "BAREGES - centre ville (cinéma)", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06256000000, + 42.89651000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-06-23", + "description": "Nesle-Normandeuse", + "ref:EU:EVSE": "FRIENE007201;FRIENE007202", + "ref": "FRIENE007201;FRIENE007202", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Nesle-Normandeuse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67905200000, + 49.90451500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA GRANDE MOTTE - Parking Entrée de ville", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS34E34344010", + "network": "Reveo", + "start_date": "2024-07-18;2023-12-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07550390000, + 43.56414510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-JUSA-001", + "network": "61mobility", + "description": "JUVIGNY SOUS ANDAINE", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61211A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50876000000, + 48.55218100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "752430", + "ref:EU:EVSE": "FRFR1P4342756239825082726", + "description": "Freshmile France/ZVL7ATPPWY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83561700000, + 42.53316700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PHWUTQJ", + "ref": "HWUTQJ;94298", + "capacity": "2", + "start_date": "2018-08-24", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "description": "Roulez Électrique En Haute-Garonne/HWUTQJ;Léguevin, rue de la Bastide", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23550000000, + 43.59930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-05-17", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ASNIERES-SUR-SEINE - 84 Avenue d'Argenteuil", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE920040321;FRSIPE920040322", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28356123975, + 48.91397281955 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000211;FRCG0E000210;FRCG0E000212", + "capacity": "3", + "start_date": "2022-03-24", + "network": "Cabanes Châteaux Le Peydébé", + "opening_hours": "24/7", + "description": "Cabanes Châteaux Le Peydébé", + "charging_station:output": "11 kW;2 kW", + "ref": "FRCG0E000211;FRCG0E000210;FRCG0E000212", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40766800000, + 45.24325200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ROUBION - PARKING BUISSES", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*135*1*_*_", + "start_date": "2021-09-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE13511;FRM06PNICE13512", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04263800000, + 44.08329500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Paul les Dax | Parking Jean Oddos", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1ce4bba5-b444-591e-b5ad-3c3a068f4f4a", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05263900000, + 43.72582200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE59DACF;FRSE1PSE59DACC;FRSE1PSE59DACA;FRSE1PSE59DACB;FRSE1PSE59DACD;FRSE1PSE59DACE;FRSE1PSE59DACG", + "network": "Stations-e", + "start_date": "2024-06-20", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Parc des Pierres Blanches - DENAIN", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38912400000, + 50.32255300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "193599;193600", + "ref:EU:EVSE": "FRBMPS193599;FRBMPS193600", + "description": "Bump - EFFIA Parking le Havre Bains des Docks - Le Havre", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12816370000, + 49.48752630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BERCK", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3367EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3367EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59770800000, + 50.40339800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "a66b6811-07df-5c73-a5ab-d8c6ebc36a98", + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Tulle | Parking Quai Gabriel Peri", + "charging_station:output": "3.7 kW;22 kW;7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77041600000, + 45.26501800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "9be8d664-dfdc-54f0-a3eb-ee5a72f9c7a3", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "description": "Milly-La-Forêt - Impasse du Colombier", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47021300000, + 48.40398800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P84000*AVG*OULLE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PARKING DE OULLE - AVIGNON", + "operator:email": "contact@e55c.com", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FR55CP84000AVGOULLE", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80051600000, + 43.94910100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "BISCARROSSE", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3328EVCP02;LFR3328EVCP01", + "ref": "LFR3328EVCP02;LFR3328EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15998200000, + 44.40867700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Station de Lavage WAP - Bias", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PWAPBIA", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-08-04", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69102950000, + 44.40376470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Marnaz, Mairie;Réseau eborn/AG3CUDNG6G", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPAG3CUDNG6G", + "ref": "48439;AG3CUDNG6G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52646000000, + 46.06035000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Réseau de recharge DOMAINE DES BUFFLONNES", + "description": "Domaine des Bufflonnes, Uhrwiller", + "owner:ref:FR:SIREN": "834439630", + "operator:email": "exploitation@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1PTDWPWURGFJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-09-07", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58000000000, + 48.89000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking de Dijon Saint-Anne - DIVIAPARK", + "ref:EU:EVSE": "FRP01E21231002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03862490000, + 47.31894560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Camiers", + "amenity": "charging_station", + "network": "CPO CITEOS", + "operator": "54__Camiers", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "25701903-3bfa-5df3-b031-e1409c57ce51" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58133800000, + 50.57600300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLYMPHX4228KJV;1155720", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Verpillière, Parking Rue Saint-Cyr Girier;Réseau eborn/LLYMPHX4228KJV", + "ref:EU:EVSE": "FREBNP3551536569921021566;FREBNPLLYMPHX4228KJV", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14630200000, + 45.63261500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR47612;FROTHPOTHR47611", + "network": "PRODUCTEURS PLAIMONT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*476*1*_*_", + "charging_station:output": "22 kW", + "description": "VIGNERONS DE PLAIMONT", + "start_date": "2022-09-07", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15769700000, + 43.65045900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8335155701707688600", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/Z4TQI4RHCG", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "370199", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59188000000, + 45.32160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "operator:email": "contact@ubitricity.com", + "ref:EU:EVSE": "FRUBIE10083410;FRUBIE10062327;FRUBIE10026282;FRUBIE10037483;FRUBIE10045832;FRUBIE10094215", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Avenue Michel Adam" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11858000000, + 49.55734000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TEKGN2NYYP", + "ref": "674261", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7894359653741747590", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29586800000, + 48.62320400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRTLSE31555013", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-04", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - Place Roger Arnaud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46379000000, + 43.58747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4188595323673049720", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Th,Mo,We,Fr,Tu 08:00-19:00", + "ref": "892449", + "description": "Freshmile France/LLJWX7Z4MYYXND", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27352800000, + 47.83893400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "735240", + "description": "MobiSDEC/JFWYWB8HIJ", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "charging_station:output": "43 kW;50 kW;100 kW", + "ref:EU:EVSE": "FRS14P8212786025935977840", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56391600000, + 49.25068000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "description": "SERVIES EN VAL - Parking route du stade", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS11E83143001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51894401374, + 43.08841083584 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHOISEL - Mairie", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78162001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01777220000, + 48.68685250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-06-01", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49132A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "description": "OuestCharge - ePremium - Etriche - Humeau", + "network": "SIEML", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44388900000, + 47.64961100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "description": "SIED70/marnaychauff", + "ref:EU:EVSE": "FRS70PMARNAYCHAUFF", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "3", + "ref": "64991", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77339000000, + 47.29150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-09-09", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH14E59082001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BIERNE - La Place" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41066700000, + 50.96483800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35299001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "ST MELOIR DES ONDES - 34 place du marché au cadran " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90550800000, + 48.63769900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "518327", + "ref:EU:EVSE": "FRS63P63125A", + "description": "SIEG63 - ePremium - Courpiere - Roses;SIEG 63/FR*S63*P63125*A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53570300000, + 45.75572200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/S5MAYKG1DE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7325497089648951896", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "698999", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354000000, + 43.70156900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "21835", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS32PVFWKYJ", + "charging_station:output": "22 kW", + "description": "SDEG32/VFWKYJ", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59295200000, + 43.65200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-05", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94003004", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "ARCUEIL - Avenue de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33411700000, + 48.80725800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE25811;FRM06PNICE25812", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-MARTIN-DU-VAR - PARKING JEAN MOULIN", + "start_date": "2023-07-11", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*258*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19260469685, + 43.82192046866 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Savignac les Eglises | Place du 19 Mars", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "d241b433-fb21-5543-beeb-146e029840b5", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91852100000, + 45.27517300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*393*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - HOTEL DES IMPOTS - SAINT-LEU-LA-FORET", + "start_date": "2023-03-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE39312;FRSIGPSIGE39311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24840000000, + 49.00570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "ref:EU:EVSE": "FRC01E76474003", + "description": "NOTRE DAME DE BONDEVILLE - Route De Dieppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04806600000, + 49.48579500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "BOURG EN BRESSE", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR2528EVCP02;LFR2528EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2528EVCP02;LFR2528EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24861500000, + 46.20173600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "194__SDEC23", + "description": "MOBIVE | Crocq | Place de la Mairie", + "ref": "6fe415a3-1cb4-5c3a-8b2b-7cf26b7f8578" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36707600000, + 45.86830200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PGCUBLN", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/GCUBLN", + "opening_hours": "24/7", + "ref": "213044", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91849900000, + 43.95770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP92350LPRT1LLEULS", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "SQUARE DES TILLEULS - LE PLESSIS-ROBINSON", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P92350*LPR*T1LLEULS", + "start_date": "2024-09-26", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27013800000, + 48.78803600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PONTORSON Colverts", + "ref": "LFR4118EVCP03;LFR4118EVCP04;LFR4118EVCP01;LFR4118EVCP02", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4118EVCP03;LFR4118EVCP04;LFR4118EVCP01;LFR4118EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49219900000, + 48.55914600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-02-01", + "ref:EU:EVSE": "FRPD1PITMNOI", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;22 kW;187.5 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "description": "Intermarché - Noirétable", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76483860000, + 45.82257610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-17", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPMDFRBN", + "opening_hours": "24/7", + "ref": "MDFRBN;231553", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Lavault-Sainte-Anne, Charité;Réseau eborn/MDFRBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59040000000, + 46.31490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP77385A", + "description": "e-Totem - Lav'Car Rebais", + "ref:EU:EVSE": "FRETIP77385A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23270469717, + 48.85227973911 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-03-01", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "22 kW;50 kW;100 kW;187.5 kW", + "opening_hours": "24/7", + "capacity": "11", + "description": "Cora - Dorlisheim", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PCORDLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49672287329, + 48.52760616105 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Béthisy-Saint-Pierre", + "ref:EU:EVSE": "FRDRVPCRFMKT603201", + "operator:email": "support@driveco.com", + "start_date": "2024-06-28", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80019400000, + 49.29739400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bornes SIE-ELY", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAULETTE - Patio", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRELYE78381001", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61889000000, + 48.79316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH17212;FROTHPAUCH17211", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AUCHAN - MAUREPAS", + "ref": "FR*SOD*S*AUCH*172*1*_*_", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91710800000, + 48.76227160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "ref": "FRCPIE6778755;FRCPIE6778695;FRCPIE6778715;FRCPIE6778795", + "capacity": "8", + "amenity": "charging_station", + "network": "SAT CHARGING BORNE 5", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SAT CHARGING BORNE 5", + "ref:EU:EVSE": "FRCPIE6778795;FRCPIE6778755;FRCPIE6778695;FRCPIE6778715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90433500000, + 50.29988100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/KXNJAH", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7782675913178239432", + "ref": "346433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72270000000, + 48.20850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-26", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue Changarnier 4", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9012*06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41123800000, + 48.84526500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79714", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "socket:type2_combo:output": "50 kW;44 kW", + "ref:EU:EVSE": "FRFR1PTXSQQA", + "opening_hours": "We,Th,Mo,Tu 09:00-19:30,Fr,Sa 09:00-20:00", + "description": "Freshmile France/TXSQQA", + "charging_station:output": "50 kW;44 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143000000, + 46.78550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Montluçon, France - Aire des Vérités", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP7139", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58652300000, + 46.37845300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLP2EUFDM221EQ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8052025301905201639", + "ref": "1031481", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89184100000, + 43.63416300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "description": "R3 - Norauto Verdun Houdainville", + "start_date": "2023-06-01", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89363750", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40927600000, + 49.14172300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461892", + "description": "MobiSDEC/QEINKRD3YH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1699168307592363255", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20236600000, + 49.13709300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LA SALVETAT PEYRALES - Place André Calvignac", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12258001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20238900000, + 44.21907700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "972650", + "ref:EU:EVSE": "FRWA5P278799548485337658", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA5LXHZIIF97", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01785300000, + 50.64197700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "description": "VAUDELNAY - Rue de la Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49353004", + "start_date": "2024-04-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20838899900, + 47.13925170898 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81115001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "description": "LABASTIDE ROUAIROUX - Place de la Poste", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-06-09", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63676400000, + 43.47598400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2022-04-08", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF042236", + "ref": "FRHPCPNF042236", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS TROYES FRESNOY", + "owner:ref:FR:SIREN": "531680743;531680742;531680741;531680740" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24150000000, + 48.21140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS46E46173001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-05-25", + "description": "LIMOGNE EN QUERCY - Parking avenue Cahors", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76987100000, + 44.39684700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PQDCXYC", + "opening_hours": "24/7", + "ref": "21886", + "description": "Mobilité électrique 56/QDCXYC", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.50753000000, + 47.82210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DOUAI - Rue de la Fonderie (Conservatoire)", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH04E59178013", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07425600000, + 50.36771400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Quimper-Allée Sully", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2923200;FRS29E29232002", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10450500000, + 48.01185200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068013", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-12-13", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue du Maréchal Lyautey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48718200000, + 48.79317400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "CENON FENWICK-1-1;CENON FENWICK-1-2", + "ref": "B133", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2018-06-08", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346051272;FRLMSE12346051271;FRLMSE12346051281;FRLMSE12346051282", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53495200000, + 46.77659200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRMGPP92063M", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref": "340664", + "description": "Metropolis - Proximité - Rueil-Malmaison - Charles Drot;Métropolis/FR*MGP*P92063*M", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18772100000, + 48.87624900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT", + "ref": "FR*SOD*S*SIGE*65*3*_*_;FR*SOD*S*SIGE*65*2*_*_;FR*SOD*S*SIGE*65*1*_*_;FR*SOD*S*SIGE*65*4*_*_;FR*SOD*S*SIGE*65*5*_*_;FR*SOD*S*SIGE*65*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6521;FRSIGPSIGE6511;FRSIGPSIGE6531;FRSIGPSIGE6541;FRSIGPSIGE6551;FRSIGPSIGE6561", + "start_date": "2020-11-13", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22915200000, + 48.84017200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Ecully", + "capacity": "8", + "network": "Allego Carrefour Ecully", + "amenity": "charging_station", + "start_date": "2023-10-27", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9990222;FRALLEGO9990221;FRALLEGO9990212;FRALLEGO9009511;FRALLEGO9009501;FRALLEGO9009502;FRALLEGO9009512;FRALLEGO9990211", + "ref:EU:EVSE": "FRALLEGO9990221;FRALLEGO9990212;FRALLEGO9009512;FRALLEGO9009511;FRALLEGO9009501;FRALLEGO9009502;FRALLEGO9990211;FRALLEGO9990222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77737000000, + 45.78899000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000058483", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Rosny", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49107600000, + 48.88340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Ousse | Rue des Pyrenees", + "ref": "15981567-7677-5f28-94a8-9f267a51d783", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26885800000, + 43.28408100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85128001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LUÇON - Place Leclerc", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16827000000, + 46.45449100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9007272;FRALLEGO9007242;FRALLEGO9007241;FRALLEGO9000502;FRALLEGO9000151;FRALLEGO9000152;FRALLEGO9000501;FRALLEGO9007271", + "amenity": "charging_station", + "start_date": "2024-05-20", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Aire-sur-la-Lys", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9007272;FRALLEGO9007242;FRALLEGO9007241;FRALLEGO9000502;FRALLEGO9000151;FRALLEGO9000152;FRALLEGO9000501;FRALLEGO9007271", + "network": "Allego Carrefour Aire-sur-la-Lys" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41109321000, + 50.63618574000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3113EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3113EVCP01", + "description": "GISORS Noir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76299100000, + 49.27752800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "E.Leclerc - Templeuve", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PLCLTPL", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17449770000, + 50.52304740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/NTGMS3IKER;Uvernet-Fours, Parking Office Du Tourisme", + "ref": "NTGMS3IKER;94481", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPNTGMS3IKER", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60112600000, + 44.37010500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/569A3F7D-9DE6-48C9-9C39-43A5CD5D4EB2", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FREVZP6257919411200550899", + "operator:email": "support@evzen.com", + "ref": "1087971", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38253400000, + 43.27973300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Darty - Avignon", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PGSTAVI", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86783579497, + 43.92048575179 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Leroy Merlin - Cesson", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRE11PLMCESSON772401", + "start_date": "2021-04-30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60784600000, + 48.58064800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref": "FRETIP07309A", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP07309A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-01-18", + "description": "e-Totem - Domaine de la Gentilhommière Satillieu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60580310963, + 45.14536890743 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-23", + "ref:EU:EVSE": "FROTHPOTHR16121;FROTHPOTHR16111", + "opening_hours": "24/7", + "network": "CARREFOUR", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*161*1*_*_;FR*SOD*S*OTHR*161*2*_*_", + "description": "ROUTE PEN AR MENEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.64075500000, + 48.36626600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6967935", + "start_date": "2024-07-05", + "description": "SOLERO DC STATION 4", + "ref:EU:EVSE": "FRCPIE6967935", + "network": "SOLERO DC STATION 4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19227900000, + 47.97411600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597810", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/FMDPPQ40YA", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3153000392492929171" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87922900000, + 48.37586800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP122072", + "operator": "Greenflux", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-08-01", + "charging_station:output": "22 kW;400 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - B&B HOTEL VALENCE SUD", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88434000000, + 44.90018000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YIW9RNHBFD", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "510614", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9135070694309865416" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41927800000, + 48.25690700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPCCSUDCORSE201372", + "capacity": "2", + "amenity": "charging_station", + "description": "CC Sud Corse - Lecci", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-01-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.31788700000, + 41.68035100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "street_lamp", + "survey:date": "2022-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20850600000, + 49.97186150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "510596", + "description": "Freshmile France/TGEZRIQCB9", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P4952491273486611225", + "opening_hours": "Mo,Fr,Th,Tu,We 08:00-17:00", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79779200000, + 50.21209600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBOISSET217002", + "start_date": "2023-03-16", + "opening_hours": "24/7", + "description": "Labouré-Roi - Nuits-Saint-Georges", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96519600000, + 47.12501400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "CLC:code": "231", + "CLC:id": "FR-247657", + "CLC:year": "2006", + "landuse": "meadow", + "source": "Union européenne - SOeS, CORINE Land Cover, 2006." + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.21265350000, + 49.97086980000 + ], + [ + 1.21306660000, + 49.97023840000 + ], + [ + 1.21239600000, + 49.97003130000 + ], + [ + 1.21276620000, + 49.96952070000 + ], + [ + 1.21196690000, + 49.96932400000 + ], + [ + 1.21235850000, + 49.96869600000 + ], + [ + 1.21306120000, + 49.96885130000 + ], + [ + 1.21329190000, + 49.96835790000 + ], + [ + 1.21128560000, + 49.96793000000 + ], + [ + 1.21115680000, + 49.96818540000 + ], + [ + 1.20978350000, + 49.96817850000 + ], + [ + 1.20971920000, + 49.96764370000 + ], + [ + 1.20816890000, + 49.96761260000 + ], + [ + 1.20468740000, + 49.96811640000 + ], + [ + 1.20426040000, + 49.96830270000 + ], + [ + 1.20189790000, + 49.96892380000 + ], + [ + 1.20070160000, + 49.96912040000 + ], + [ + 1.19985400000, + 49.96920670000 + ], + [ + 1.19828220000, + 49.96950340000 + ], + [ + 1.20138290000, + 49.97057300000 + ], + [ + 1.20421640000, + 49.97178310000 + ], + [ + 1.20434920000, + 49.97168100000 + ], + [ + 1.20453550000, + 49.97159260000 + ], + [ + 1.20468970000, + 49.97153170000 + ], + [ + 1.20483480000, + 49.97147770000 + ], + [ + 1.20519050000, + 49.97138730000 + ], + [ + 1.20555640000, + 49.97130450000 + ], + [ + 1.20556180000, + 49.97105260000 + ], + [ + 1.20630740000, + 49.97062480000 + ], + [ + 1.20700220000, + 49.97064940000 + ], + [ + 1.20945900000, + 49.97109750000 + ], + [ + 1.21100660000, + 49.97038330000 + ], + [ + 1.21189630000, + 49.97064610000 + ], + [ + 1.21265350000, + 49.97086980000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "network": "MODULO - CHATILLON EN DUNOIS - Rue de Courtalain", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHATILLON EN DUNOIS - Rue de Courtalain", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E134208", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E134208", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18439500000, + 48.11552100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/C3XIBVJXZ3", + "operator:email": "roaming@freshmile.com", + "ref": "32119", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P5806511141470287844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66352200000, + 48.51467000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLHZFRHZRF", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref": "1170369", + "ref:EU:EVSE": "FRWA9P1527243777699221282", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52436500000, + 48.86300100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GAVRAY SUR SIENNE - Eglise", + "operator:email": "e-charge50@sdem50.fr", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-04-20;2016-10-19", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50450001", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35086500000, + 48.91037000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-07-11", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "SAINT JUERY - Allée De La Trencade", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8125700222;FRS81E8125700212;FRS81E8125700211;FRS81E8125700221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21104188377, + 43.94785522390 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF078227", + "owner:ref:FR:SIREN": "531681711;531681709;531681712;531681710", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRHPCPNF078227", + "description": "RELAIS BROCELIANDE", + "start_date": "2023-12-22", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36381600000, + 47.91811500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "start_date": "2021-04-28;2024-04-03", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49015B;FRS49E49015002", + "description": "OuestCharge - Diva Sp - Avrille - Alphonse Loubat;AVRILLE - Parking Alphonse Loubat", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58867300000, + 47.50524900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PMOUY", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/mouy", + "ref": "46636" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32515000000, + 49.32040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH08E59295010", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "HAZEBROUCK - Rue Warein", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53162000000, + 50.72457900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30111001", + "network": "Reveo", + "description": "FOISSAC - Rd 981", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29920000000, + 44.04463300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PHJHXYP", + "network": "Morbihan Energies", + "description": "Elven - Rue Sainte Anne", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2016-10-21", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59084100000, + 47.73370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-06-22", + "description": "MARNAY-1-1;MARNAY-1-2", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref": "B063", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346390291;FRLMSE12346390301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34093200000, + 46.39620200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94001A", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "start_date": "2023-12-21", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "description": "Metropolis - Citadine - Ablon-sur-Seine - Villeneuve" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43296200000, + 48.72538600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "start_date": "2024-03-22", + "amenity": "charging_station", + "charging_station:output": "300 kW;125 kW;22 kW", + "description": "Shell Aire de Bordeaux-Cestas Ouest A63", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSHEE88;FRSHEE85;FRSHEE86;FRSHEE87", + "socket:type2_combo:output": "300 kW", + "capacity": "10", + "ref": "FRSHEE88;FRSHEE85;FRSHEE86;FRSHEE87" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70366790000, + 44.74549619000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "PAU - Parking Beaumont", + "start_date": "2023-12-15", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E64445002", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36323010000, + 43.29457860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRLMSP89370712", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A4 Longeville Sud", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66187600000, + 49.13254500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "a1767a67-f491-599a-a7ef-2f509c1e4575", + "operator": "190__SDEG16", + "description": "MOBIVE | Oradour-Fanais | Parking de la Salle des Fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78479800000, + 46.12117400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE62HABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-02", + "socket:type2_combo:output": "24 kW", + "description": "Centre Ville - HOUDAIN", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53529100000, + 50.45257700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSBSSEN", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "BASSENS", + "start_date": "2022-12-21", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94303300000, + 45.57390500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3695EVCP01;LFR3695EVCP02", + "description": "DAINVILLE Mermoz", + "ref:EU:EVSE": "LFR3695EVCP01;LFR3695EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73584500000, + 50.27944200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PLOUZANE - Rue Moquet", + "ref:EU:EVSE": "FRM29E29212002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.60053000000, + 48.37995900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "30551", + "charging_station:output": "22 kW", + "description": "Réseau eborn/RJVJ8NDBBF", + "ref:EU:EVSE": "FREBNPRJVJ8NDBBF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54143400000, + 46.07666400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477702", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2066464521430235195", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/T8VY7PVFBV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67237900000, + 50.46757400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "MULHOUSE - Parking Flammarion", + "capacity": "5", + "start_date": "2022-07-01", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E68224002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33155010000, + 47.74633600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "description": "Réseau eborn/varennesmairie;Varennes-sur-Allier, Mairie", + "ref:EU:EVSE": "FREBNPVARENNESMAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "231538;varennesmairie", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40415000000, + 46.31280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/66c4cc6bce1068001c12494a", + "ref:EU:EVSE": "FREFLP8247319843464060128", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "13 kW", + "opening_hours": "24/7", + "ref": "1180683", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "socket:type2_combo:output": "13 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.72262200000, + 15.99675100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ROUTE DE MIRANDE", + "capacity": "1;2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*279*3*_*_;FR*SOD*S*OTHR*279*2*_*_", + "network": "HOTRAVAIL", + "opening_hours": "24/7", + "start_date": "2021-11-18;2021-09-15", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW", + "ref:EU:EVSE": "FROTHPOTHR27932;FROTHPOTHR27931;FROTHPOTHR27921" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17329200000, + 43.51943800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6606795;FRCPIE6606835", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6606795;FRCPIE6606835", + "description": "SONEPAR CONNECT LA ROCHELLE 2", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10577300000, + 46.15901600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5588336669891760811", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LKLAPAGPNF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "761466" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92538600000, + 47.61432500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1167843", + "network": "WAAT", + "description": "WAAT/s540966", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA2P2594873518786869010", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22762400000, + 50.17664200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/HZPNJOORZL", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6834971630789561283", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "698903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11471600000, + 49.11512300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00355", + "network": "ACCOR Hotels", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "start_date": "2021-04-20", + "opening_hours": "24/7", + "ref": "FRTCBP00355", + "owner:ref:FR:SIREN": "533390514", + "description": "Pullman Paris Centre - Bercy", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38722900000, + 48.83148700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRFR1P6306369054713078490", + "description": "Freshmile France/WSHTHJSG61", + "ref": "505737", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373900000, + 48.09236000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBYMYCARMERCEDES061101", + "amenity": "charging_station", + "description": "Mercedes - ByMyCar - Le Cannet", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-07-02", + "capacity": "9", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01282800000, + 43.57352700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "description": "Chateauneuf du Faou-Impasse de la Gare", + "ref:EU:EVSE": "FRS29E2902700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.81897300000, + 48.19297400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/WZXY6YXQKL", + "operator:email": "roaming@freshmile.com", + "ref": "749475", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P564727712378533624", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37313400000, + 48.11517800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC43657;FRZP1PEAC43656;FRZP1P3512048409971520815", + "ref": "5ffa7d31-85b9-43dd-926b-fd562c34a5bf;575879", + "network": "GHO Metz Nord;Zephyre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GHO Metz Nord;Zephyre/1909482", + "owner:ref:FR:SIREN": "440117976", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17783900000, + 49.15034400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-05-25", + "capacity": "3", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AssifepLens", + "ref:EU:EVSE": "FRROSE85", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84296700000, + 50.44541500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PABBECAPU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/Abbecapu", + "opening_hours": "24/7", + "ref": "64619", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83392000000, + 50.10870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*162*1*_*_", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - GAP ROUTE DE MARSEILLE", + "start_date": "2024-08-08", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST16212;FRIZFPFAST16211;FRIZFPFAST16213" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06332780000, + 44.54508390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - VINEUIL - Pl. Gaspard Imbert", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E4711;FRS41E4712", + "description": "MODULO - VINEUIL - Pl. Gaspard Imbert", + "charging_station:output": "0 kW", + "ref": "FRS41E4711;FRS41E4712", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37813400000, + 47.58161200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "38809", + "description": "Mouv'Oise/Grandvilliers", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PGRANDVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93956000000, + 49.66480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON7641;FRGLYPLYON7611;FRGLYPLYON7621;FRGLYPLYON7631", + "start_date": "2021-05-26", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY701 - THIBAUDIERE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*76*3*_*_;FR*SOD*S*LYON*76*2*_*_;FR*SOD*S*LYON*76*1*_*_;FR*SOD*S*LYON*76*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84534900000, + 45.75024300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ST PIERRE DES CORPS - Maurice Thorez", + "ref:EU:EVSE": "FRS37E214075;FRS37E214076", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - ST PIERRE DES CORPS - Maurice Thorez", + "ref": "FRS37E214075;FRS37E214076", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71840200000, + 47.38851200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/FDWQJB", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PFDWQJB", + "ref": "257164", + "capacity": "4", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86933000000, + 47.65570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "socket:type2_combo:output": "25 kW", + "ref": "FRG10P17300C", + "capacity": "2", + "amenity": "charging_station", + "network": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P17300C", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-07-25", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15107200000, + 46.16634000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - NANCY - Pkg. Kennedy MGN", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - NANCY - Pkg. Kennedy MGN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRN54E188422;FRN54E188423", + "charging_station:output": "0 kW", + "ref": "FRN54E188422;FRN54E188423", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17407000000, + 48.68604700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*209*1*_*_", + "description": "SIGEIF - 9 RUE BAUDIN - IVRY-SUR-SEINE", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE20912;FRSIGPSIGE20911", + "start_date": "2021-11-17", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37428000000, + 48.81741900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E002110;FRCG0E002016", + "ref": "FRCG0E002110;FRCG0E002016", + "description": "Domaine de Valescure - 83700 - 1", + "opening_hours": "24/7", + "network": "Domaine de Valescure - 83700 - 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79261200000, + 43.44862700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89931874", + "capacity": "1", + "start_date": "2023-09-06", + "description": "ENGIE Vianeo - Hôtel Kyriad Nancy Ouest - Laxou", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13979400000, + 48.70504300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Georges d'Oléron | Chéray parking Godeau", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "088a8f04-541e-5645-bc4e-651e33341d66", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35195400000, + 45.97284900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-05-17", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "description": "Place de Coume - Verrieres", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE86VMCA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59410200000, + 46.41206200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-03", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "COLOMIERS - Parking du Quercy", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRA31E31149005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33290340000, + 43.61171190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARMAUX - Rodez", + "ref": "LFR4004EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4004EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15968400000, + 44.05423600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38151001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-03", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ECHIROLLES - Parking Relais Échirolles - Gare;ECHIROLLES - Parking Relais Échirolles - Gare (CITIZ)", + "capacity": "1;5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71918300000, + 45.15277400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "ref:EU:EVSE": "FREBNP2032556297708039460;FREBNPZ2GMZTGMKG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/Z2GMZTGMKG;Hyères, ZAC Saint Martin", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "Z2GMZTGMKG;682316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11019600000, + 43.11000500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P749736769785171366", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/G7D91ZNMHR", + "ref": "752412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499900000, + 43.28402000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "39", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-26;2024-09-05", + "ref:EU:EVSE": "FRP07E930480014;FRP07E930480013;FRP07E930480011;FRP07E93048001;FRP07E930480012", + "description": "MONTREUIL - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44270250000, + 48.86170300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-07", + "ref": "306127;PT6DOEVM5R", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/PT6DOEVM5R;Le Pradet, Parking Espace Des Arts", + "ref:EU:EVSE": "FREBNPPT6DOEVM5R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02870100000, + 43.10700100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Montauban - KFC", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPMTBKF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38297900000, + 44.03856300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Limoges Hôtel de Ville - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E87085005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26226600000, + 45.82664100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-26", + "opening_hours": "Su 08:00-15:00,Mo 08:00-15:00,Tu 08:00-15:00,We 08:00-15:00,Th 08:00-15:00,Fr 08:00-15:00,Sa 08:00-15:00", + "ref": "FRCPIE6645895", + "capacity": "2", + "amenity": "charging_station", + "network": "UNILABS BIO CT REIMS PT", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "UNILABS BIO CT REIMS PT", + "ref:EU:EVSE": "FRCPIE6645895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05365700000, + 49.26282000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Ecole-Valentin, Rue de l'Amitié;Easy Charge/LLYIDDYU1DI2B1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP4595592634857749941;FRECHPLLYIDDYU1DI2B1", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "ref": "LLYIDDYU1DI2B1;1153767", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98404000000, + 47.27135000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX18*09", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1809", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Championnet 162", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33550000000, + 48.89490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VESSJQ8AJC", + "operator": "Freshmile | FR*FR1", + "ref": "505713", + "ref:EU:EVSE": "FRFR1P2178966966407227429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74585100000, + 47.73526300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Place Armand Carrel 4", + "ref": "FR*V75*P9019*03", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "start_date": "2021-04-14", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901903", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38270500000, + 48.88279400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/DPDFCD", + "ref": "377438", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3241637627787368042", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499000000, + 44.83550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-11", + "network": "DRIVECO", + "description": "Hyundai - Saint-Gaudens", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPHYUNDAI318001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76219800000, + 43.11477300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22215001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Ploufragan-Rue Camille Guérin (Technopole)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79239400000, + 48.48262400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEUCATE - Parking Avenue Des Tamarins La Franqui", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11202003", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03166666667, + 42.93500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mercedes Benz - Cluses EMB74 -22kW AC ;Mercedes Benz - Cluses EMB74 -22kW AC", + "network": "Mercedes Benz - Cluses EMB74", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "35328;35329", + "start_date": "2020-06-10", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "ref:EU:EVSE": "FRZPEE22AC35329;FRZPEE22AC35328", + "owner:ref:FR:SIREN": "430357152", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59846500000, + 46.04779400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTE CROIX VOLVESTRE - Lenclos", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS09E09257001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17098800000, + 43.12713800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/XXXBPV", + "ref:EU:EVSE": "FRS80PXXXBPV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "34652", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82567000000, + 50.10220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST4513;FRIZFPFAST4512;FRIZFPFAST4511", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-02-29", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*45*1*_*_", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - QUIEVRECHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65901460000, + 50.40030440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-04-15", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA", + "description": "OuestCharge - Diva Sp - Heric - Saint-Jean", + "ref:EU:EVSE": "FRS44P44073C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65176730000, + 47.41187350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GERMIGNY-l'EVÊQUE - Allée des Noyers", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS77E77203001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95020570000, + 48.99639080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;47 kW;150 kW", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGYMP6085569563182414513", + "ref": "1007628", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/64" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40761100000, + 48.26322600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - SEMBLANCAY - Rue Foulques Nerra", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - SEMBLANCAY - Rue Foulques Nerra", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E220430;FRS37E220428", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220430;FRS37E220428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57855158000, + 47.49818570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref": "8f388b56-78e7-5d0d-88e0-a0db7533ce5d", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "operator": "49__VILLE DE NANCY", + "opening_hours": "24/7", + "description": "VILLE DE NANCY - Parking Stanislas +1 - Nancy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18483500000, + 48.69212800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Station Multi Energies Somme", + "charging_station:output": "22 kW;180 kW", + "description": "Station Multi Energies Somme", + "owner:ref:FR:SIREN": "917936825", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "start_date": "2024-07-30;2024-07-04", + "opening_hours": "24/7", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83187000000, + 50.12729000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "description": "Edenauto Lescar", + "network": "PPDA - RENAULT", + "ref": "db73e55c-79e2-4531-a676-121ffdb4b7f8", + "start_date": "2024-06-28", + "ref:EU:EVSE": "FRMBZECMFQU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42289400000, + 43.31953200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE95063001", + "start_date": "2022-04-19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "BEZONS - Rue Emile Zola" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20891206764, + 48.92358737876 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "SUPER U BBA BORNE 3", + "amenity": "charging_station", + "description": "SUPER U BBA BORNE 3", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6564835;FRCPIE6535705;FRCPIE6535375", + "charging_station:output": "22 kW;6 kW", + "start_date": "2022-10-12", + "ref": "FRCPIE6564835;FRCPIE6535705;FRCPIE6535375" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821000000, + 43.44093500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/AYO1HIHEPX", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref": "446669", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P2639829983073469204", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805200000, + 50.52631500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "e48ffd13-9883-5218-bd9a-552b38ab9db4", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Saint Symphorien | Place Michelet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48838200000, + 44.42978300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79005P0027A", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-25", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Airvault - Place du Cygne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14244800000, + 46.82516400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Airbus Saint Martin Espessieres", + "network": "DRIVECO", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRAIRPAIRBUSSTMARTIN313001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37055200000, + 43.61093600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3327EVCP01", + "capacity": "2", + "amenity": "charging_station", + "ref": "LFR3327EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "LESPARRE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93037900000, + 45.29754100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-04-08", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE4932;FRM06PNICE4921;FRM06PNICE4922;FRM06PNICE4931", + "description": "NICE - GARE THIERS PARVIS RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*49*2*_*_;FR*SOD*S*NICE*49*3*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26213000000, + 43.70430400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ18122;FRA16PWIIZ18121", + "ref": "FR*SOD*S*WIIZ*181*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-07-17", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "SAINT ANTONIN - PARKING STADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98292400000, + 43.90976800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "971954", + "description": "Freshmile France/LLOSGVQAQ1KNH9", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3591439269558514145", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87332900000, + 43.83173900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-23", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Bricomarché - Rouxmesnil-Bouteilles", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PBRCRXB", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10537073866, + 49.90823443530 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30380;GLYX8EKDXS", + "ref:EU:EVSE": "FREBNPGLYX8EKDXS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/GLYX8EKDXS;Embrun, Espace de la Roche", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49863800000, + 44.56287400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Hyères - Hôtel Ibis Plage", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRELCPHYEHI", + "operator": "ELECTRA", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14774800000, + 43.05755700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "description": "TOULOUSE - Parking Esquirol", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP07E315550522;FRP07E315550521;FRP07E31555052", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2023-06-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44502370000, + 43.60052180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "OYTKDNTXGM;346868", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP422634128837249450;FREBNPOYTKDNTXGM", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "description": "Réseau eborn/OYTKDNTXGM;Lavoûte-Sur-Loire, Place du Pont Neuf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90733000000, + 45.12107000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "ref:EU:EVSE": "FRECHPLLP8K463YLTZ8H", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-11-21", + "description": "Muret, boulevard Arsitide Briand", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "LLP8K463YLTZ8H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32595921000, + 43.46315122000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2022-12-27;2023-03-23;2023-01-13", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A5 Villeneuve l'Archevèque", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP101115", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "300 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55493500000, + 48.24311800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "ref:EU:EVSE": "FRFR1P3213716085225233605", + "operator:email": "roaming@freshmile.com", + "ref": "232354", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/ZDKGZT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563000000, + 44.85230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX10*02", + "opening_hours": "24/7", + "description": "Paris | Rue Sibour 2", + "start_date": "2021-06-30", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35872360000, + 48.87507620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PKZFREV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/KZFREV", + "operator": "Freshmile | FR*FR1", + "ref": "213035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05129000000, + 49.02580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "description": "Volvo - Grimal - Albi", + "start_date": "2024-09-30;2021-07-12", + "charging_station:output": "50 kW;22.08 kW", + "capacity": "11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPGRIMALVOLVO810001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14962200000, + 43.94160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25PBESACSTPAUL", + "ref": "79885", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/besacstpaul" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03128000000, + 47.23920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BOURGES - Av. François Mitterand(Hôpital)", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BOURGES - Av. François Mitterand(Hôpital)", + "start_date": "2023-12-08", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E232328;FRS18E232327", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E232328;FRS18E232327" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44177200000, + 47.08448000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78385001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-09-11", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "MÉNERVILLE - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60180355098, + 48.96634476997 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-11-16", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - MARSEILLE - BRETEUIL", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*48*9*_*_;FR*SOD*S*QPRK*48*7*_*_;FR*SOD*S*QPRK*48*4*_*_;FR*SOD*S*QPRK*48*12*_*_;FR*SOD*S*QPRK*48*1*_*_;FR*SOD*S*QPRK*48*10*_*_;FR*SOD*S*QPRK*48*11*_*_;FR*SOD*S*QPRK*48*13*_*_;FR*SOD*S*QPRK*48*2*_*_;FR*SOD*S*QPRK*48*3*_*_;FR*SOD*S*QPRK*48*5*_*_;FR*SOD*S*QPRK*48*6*_*_;FR*SOD*S*QPRK*48*8*_*_", + "ref:EU:EVSE": "FRQPKPQPRK4841;FRQPKPQPRK4831;FRQPKPQPRK4821;FRQPKPQPRK48111;FRQPKPQPRK4811;FRQPKPQPRK48101;FRQPKPQPRK48121;FRQPKPQPRK48131;FRQPKPQPRK4851;FRQPKPQPRK4861;FRQPKPQPRK4871;FRQPKPQPRK4881;FRQPKPQPRK4891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37746600000, + 43.28863200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CASTELNAU DE MONTMIRAL - Rue Lafayette", + "ref:EU:EVSE": "FRS81E81064001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82234900000, + 43.96411200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Vendée", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "start_date": "2020-11-27", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE409700", + "ref": "FRIONE409700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11801400000, + 46.57353800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50610001", + "description": "JULLOUVILLE - Syndicat d'Initiative", + "network": "e-charge50", + "start_date": "2016-10-28", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56735330000, + 48.77436020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS77E77475002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-18", + "description": "TRILPORT - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94723149000, + 48.95815700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681723", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-01-30", + "capacity": "1", + "opening_hours": "24/7", + "description": "RELAIS MARESCHE", + "ref": "FRHPCPNF080150", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRHPCPNF080150" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16890000000, + 48.19750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS41E243232;FRS41E243231", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BLOIS - Rue Lavoisier - T2", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - BLOIS - Rue Lavoisier - T2", + "charging_station:output": "0 kW", + "ref": "FRS41E243232;FRS41E243231", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32741000000, + 47.59153900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/NRXSYF", + "ref": "48289", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PNRXSYF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75941000000, + 47.65630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CRB01 - PLACE DU COSTEL", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*195*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON19511;FRGLYPLYON19512", + "start_date": "2023-09-15", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89891700000, + 45.67137600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRMGPP92040A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "ref": "383181", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92040*A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849400000, + 48.83087300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Opel - Dieppe", + "ref:EU:EVSE": "FRSSDPMVAUTOOPEL763701", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "start_date": "2020-02-24", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10432300000, + 49.90680200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76614001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ST MARTIN DE BOSCHERVILLE - Place De La Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96279500000, + 49.44482390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/MNRKQHLAFM", + "ref:EU:EVSE": "FRLE2P3823073153896126932", + "charging_station:output": "22 kW", + "opening_hours": "Th,We,Mo,Tu,Sa 07:45-20:15,Fr 07:45-20:45", + "ref": "446762" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992300000, + 48.43073800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "781b7786-3d63-5f89-b002-c42651d391a7", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Landiras | Place de L'Eglise", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41494000000, + 44.56745500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "SAINT OUEN L'AUMONE - Place Montesquieu", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-08-30;2024-09-03", + "ref:EU:EVSE": "FRS95E95572007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12672300000, + 49.03337200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000132", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2023-07-28;2023-08-04", + "description": "CAMBRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21765070000, + 50.17789766000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Leclerc/NBQHPADN4M", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P9013049286188213317", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940200000, + 47.94408800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Berre-L'Etang, Parking de L'Europe", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PPD4HPWAKTN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16856300000, + 43.47700800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P4127456060810014650", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "782604", + "description": "SDEY/V8VOJ3SULM", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09046700000, + 47.80227300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*37*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-05", + "ref:EU:EVSE": "FRA16PWIIZ3712;FRA16PWIIZ3711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "CHATEAUNEUF-GRASSE PARKING PLACE DES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97258800000, + 43.68086200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/MYVULR", + "ref": "370133", + "ref:EU:EVSE": "FRFR1P4561923853858972159", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "44 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68992000000, + 49.14350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-04", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "Relais Vert - Montbéliard", + "ref:EU:EVSE": "FRPD1PRLVMTD", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81719340000, + 47.49957920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPHU7ZHXIDPR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/HU7ZHXIDPR;Volx, Parking Mairie", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "78666;HU7ZHXIDPR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84238700000, + 43.87671500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "1179243", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP1179677560515249412", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "description": "EVzen/D4433882-2F21-4EE4-96BB-99DBEFA8B3A1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73275700000, + 47.97814900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-23", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*637*1*_*_", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "NETTO - LA NORVILLE", + "ref:EU:EVSE": "FROTHPOTHR63711;FROTHPOTHR63712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25796500000, + 48.57867000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLSIXQU2A15Q7N;Les Orres, Parking du pôle sport innovation", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2024-04-02;2024-02-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPLLSIXQU2A15Q7N;FREBNP8273352961333356565", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "1052526;LLSIXQU2A15Q7N", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55796900000, + 44.49388500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026816", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP8974345538009411361", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/LLSOQXMFK51OTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65391200000, + 45.17407600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR33411;FROTHPOTHR33421", + "charging_station:output": "3.68 kW", + "network": "CREPS DE POITIERS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "CREPS DE POITIERS - PARKING 3", + "start_date": "2022-03-10", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*334*1*_*_;FR*SOD*S*OTHR*334*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26318700000, + 46.57875300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPS8S05O2G9NG", + "operator:email": "roaming@freshmile.com", + "ref": "1081740", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3540660044537200636", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20645700000, + 49.10596600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Olivier de Serres 3", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-03", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1530", + "ref": "FR*V75*PPX15*30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29867360000, + 48.83701780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WPBREMU4YX", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3019963941283177880", + "charging_station:output": "22 kW", + "ref": "435180", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51691800000, + 45.84284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Méria - Parking Village", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAIRIEMERIA202871", + "start_date": "2023-04-04", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45170700000, + 42.92619300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-06-14", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PVALREUILSTADEOWENS", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900033", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19702100000, + 49.27192400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Lanrivain-Place de l'église", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22115001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.21481700000, + 48.34722200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZIME147593;FRZIME147592", + "start_date": "2022-08-24", + "ref": "E147593;E147592", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "ITM NETTO TRIEUX", + "opening_hours": "Lu- Sa 08:30-20:00, Di 08:30-12:30", + "owner:ref:FR:SIREN": "522202977", + "operator": "ZEborne", + "description": " NETTO - TRIEUX ;NETTO - TRIEUX " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93585400000, + 49.32408000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2022-01-10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE228", + "description": "Verdi_Beauvais", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12105870000, + 49.43462440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUBERGENVILLE - Rue de Montgardé", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78029004", + "start_date": "2024-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85102009088, + 48.95878484820 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "network": "Val Gelon", + "ref:EU:EVSE": "FRIOYE410053;FRIOYE410052;FRIOYE410004;FRIOYE410001;FRIOYE410005;FRIOYE410006;FRIOYE410051", + "ref": "FRIOYE410053;FRIOYE410052;FRIOYE410004;FRIOYE410001;FRIOYE410005;FRIOYE410006;FRIOYE410051", + "description": "Val Gelon", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2022-11-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15666800000, + 45.54765400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/TEXAQQOGXS", + "operator:email": "roaming@freshmile.com", + "ref": "248269", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS52P4109831972509138275", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32131900000, + 48.24657800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65417002", + "network": "Reveo", + "description": "SEMEAC - Rue Théophile Gauthier", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10567000000, + 43.22874000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Beaumont-de-Lomagne", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Beaumont-de-Lomagne", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-03-06", + "ref:EU:EVSE": "FRIENE004601;FRIENE004602", + "ref": "FRIENE004601;FRIENE004602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99387000000, + 43.89216200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SERVIAN - Parking Covoiturage", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34300002", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33526790142, + 43.39648445852 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-CHAN-001", + "ref:EU:EVSE": "FRS61P61092A", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "CHANDAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73982200000, + 48.75225800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/IHEBY32X0M", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7245940171237151024", + "ref": "466053", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35232900000, + 46.71519300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PWCKYQX", + "description": "Roulez Électrique En Haute-Garonne/WCKYQX;Frouzins, Mairie", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "ref": "32146;WCKYQX", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "capacity": "2;4", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2016-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32192000000, + 43.51460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "11", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCOCHETVOLVO734901", + "start_date": "2020-11-26;2023-06-01", + "description": "Volvo - Chambéry", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96679400000, + 45.56451300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "FRCG0E000103;FRCG0E000102;FRCG0E000104", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000103;FRCG0E000102;FRCG0E000104", + "capacity": "3", + "description": "BMW - ESCAT Albi - 81100 - 1", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "BMW - ESCAT Albi - 81100 - 1", + "start_date": "2022-04-28", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14253084000, + 43.91283625000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA GAUDE - PARKING DES SAVEURS", + "ref": "FR*SOD*S*NICE*107*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-11-26", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE10712;FRM06PNICE10711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15023300000, + 43.71946800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Julien En Born | Parking Rue des Ecoles", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW", + "ref": "4ef6e0ad-6856-5427-90c4-45869e1ea317" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22709100000, + 44.06321300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE55CABA", + "operator:email": "support@stations-e.com", + "description": "INTERMARCHE - CLERMONT EN ARGONNE", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-11-21", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07454300000, + 49.10672000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "154951;64540;154950;64539;64538", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS154951;FRBMPS154950;FRBMPS64538;FRBMPS64539;FRBMPS64540", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Monoprix - Saint Cloud", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21289070000, + 48.84688610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "HAUDAINVILLE - Verdun", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4199EVCP01;LFR4199EVCP02;LFR4199EVCP03", + "ref": "LFR4199EVCP01;LFR4199EVCP02;LFR4199EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40958300000, + 49.14446500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PXPXWDIMWV9", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-7E, 113 Avenue de la Corse", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35601400000, + 43.28996800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "description": "TE90/XURZAM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90PXURZAM", + "ref": "182582" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513000000, + 47.61060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P83350*RAM*CLUB55", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2013-02-01", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83350RAMCLUB55", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "PARKING CLUB 55 RAMATUELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66105600000, + 43.22747500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P293335430002110564", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "capacity": "10", + "description": "Freshmile France/JWK3GA2LBR", + "operator": "Freshmile | FR*FR1", + "ref": "454065", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55402100000, + 47.59075300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2021-10-12", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Système U - Saint-Denis-de-l'Hôtel", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PSYUSDH", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12868623118, + 47.87151110566 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP8746080618748536991", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "492147", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/SURFS8ZTGN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02580200000, + 44.72066200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "socket:type2_combo:output": "300 kW;400 kW", + "amenity": "charging_station", + "start_date": "2023-12-28", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "network": "Fastned Aire de Melun", + "description": "Fastned Aire de Melun", + "ref": "FRFASE33204", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW;400 kW", + "ref:EU:EVSE": "FRFASE33204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63405800000, + 48.56049200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Bellegarde-sur-Valserine arrêt minute P1 - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E01033001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82636700000, + 46.11129700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75239;HRCEDY", + "description": "Réseau eborn/HRCEDY;Menthon-Saint-Bernard, Parking Cimetière", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPHRCEDY", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19782000000, + 45.86160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Banon, Place de La république;Réseau eborn/ZCALPN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPZCALPN", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "ZCALPN;78594", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62843000000, + 44.03790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2022-08-25", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*451*1*_*_;FR*SOD*S*OTHR*451*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR45122;FROTHPOTHR45112;FROTHPOTHR45111;FROTHPOTHR45121", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "U LOCATION - SAINT-PAVACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19623000000, + 48.03264200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7027785242775127160", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1179984", + "description": "Freshmile France/VPGCZW66QZ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88237200000, + 45.92082000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10099468;FRUBIE10069048;FRUBIE10051327;FRUBIE10008990;FRUBIE10006466;FRUBIE10038247;FRUBIE10056086;FRUBIE10095491", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "start_date": "2023-09-11", + "description": "Boulevard Albert 1er Parking Plage", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09416700000, + 49.49508300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SOKSVEUQOF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "705986", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6752810062912811372" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85684800000, + 45.50593700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "description": "Station-service de l'aire de Sorgues - A7", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "86df9930-2223-5925-b055-6c3d8daf4c47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88949000000, + 44.02262000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HDKDDYFEUH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3363835010518823399", + "ref": "398900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18760000000, + 47.01460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P2036078282042147579", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/SHNTRB88GR", + "ref": "461937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20673900000, + 49.39185700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "Zephyre/LP009E60;Zephyre/LP009587;Zephyre/LP009582;Zephyre/LP009E87", + "ref:EU:EVSE": "FRZP1P3295305757920949758;FRZP1P3775227737434073223;FRZP1P8083287662736290597;FRZP1P456791695711387094", + "ref": "696533;576347;576233;576221", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30463000000, + 49.07418000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11360001", + "operator": "Bouygues E&S", + "description": "SAINT NAZAIRE D'AUDE - Rue Du Canalet", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90664734000, + 43.26435890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAILLY - Marché", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-05-03", + "ref:EU:EVSE": "FRY03E78043004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07186000000, + 48.84228000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref": "373ae5a8-989e-5ca6-a5d9-22665ebb6ea3", + "capacity": "2", + "description": "CD54 - Rue du Cardinal Mathieu - Parking Haussonville", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16675700000, + 48.67140300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66212002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "TORREILLES - Bvd De La Plage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02801900000, + 42.76749200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref": "FR*SOD*S*IKEA*196*7*_*_;FR*SOD*S*IKEA*196*6*_*_;FR*SOD*S*IKEA*196*5*_*_;FR*SOD*S*IKEA*196*4*_*_;FR*SOD*S*IKEA*196*3*_*_;FR*SOD*S*IKEA*196*1*_*_;FR*SOD*S*IKEA*196*2*_*_;FR*SOD*S*IKEA*196*8*_*_;FR*SOD*S*IKEA*196*9*_*_", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA19691;FRIKAPIKEA19681;FRIKAPIKEA19671;FRIKAPIKEA19662;FRIKAPIKEA19661;FRIKAPIKEA19631;FRIKAPIKEA19621;FRIKAPIKEA19611;FRIKAPIKEA19641;FRIKAPIKEA19651", + "start_date": "2024-01-18", + "description": "IKEA FOS-SUR-MER - PARKING COLLABORATEURS", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88053780000, + 43.47197470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "start_date": "2023-01-01", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35238012B1", + "network": "OUEST CHARGE", + "description": "RENNES - 1 boulevard Magenta (Parking des impots) ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67457100000, + 48.10715900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63063*A;SIEG63 - ePremium - Cebazat - Grillon", + "ref": "518267", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-09-16", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63063A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09899100000, + 45.82949800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLQWHUSOX2KZ9N", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P275788098195083161", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1009182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87890900000, + 44.08847900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Roulez Électrique En Haute-Garonne/LLJZO7PBE2EPN3", + "ref": "892827", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31P1021682110182490220", + "charging_station:output": "22 kW", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42843000000, + 43.76969300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NOISY-LE-SEC - Rue Lamartine", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93053007", + "start_date": "2024-04-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44765000000, + 48.89256000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001052;FRCG0E001051;FRCG0E001049;FRCG0E001050", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "EURL Billy - 19400 - Cahors", + "charging_station:output": "22 kW;150 kW", + "description": "EURL Billy - 19400 - Cahors", + "opening_hours": "24/7", + "start_date": "2024-04-10", + "ref:EU:EVSE": "FRCG0E001052;FRCG0E001051;FRCG0E001049;FRCG0E001050", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93314000000, + 45.09328100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*228*1*_*_", + "ref:EU:EVSE": "FRM06PNICE22811;FRM06PNICE22812", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - SEMERIA", + "start_date": "2023-07-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29009140509, + 43.71557378871 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Mezin | Place du Club", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "3dbce9e8-c909-52c6-833a-d777d338b725", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25658000000, + 44.05602900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE36911;FRSIGPSIGE36912", + "start_date": "2023-03-01", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 7 CHEMIN DE MONTIGNY - HERBLAY-SUR-SEINE", + "ref": "FR*SOD*S*SIGE*369*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17561810000, + 48.99147430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "GOUY - Rue des canadiens", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76313001", + "charging_station:output": "22 kW", + "start_date": "2023-04-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14835700000, + 49.35454100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TAILLECOURT", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR2820EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2820EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84165600000, + 47.49366100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "description": "ABZAC - RUE DU CHEMINOT;MOBIVE | Abzac | Rue du Cheminot", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2021-03-08", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*163*1*_*_;4e91bcc8-c799-5bb6-93b5-0474c758540d", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref:EU:EVSE": "Non concerné;FRS33PMB3316311;FRS33PMB3316312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12896100000, + 45.01584700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82P6123300109500260703", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "SDE82", + "description": "SDE82/CTNA9OPEAA", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "socket:type2_combo:output": "24 kW", + "ref": "706034" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85486000000, + 44.08605300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP84320ENTGARE", + "start_date": "2022-03-08", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "GARE - ENTRAIGUES SUR LA SORGUE", + "ref": "FR*55C*P84320*ENT*GARE", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92151000000, + 44.00508900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DOL DE BRETAGNE - Baie", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3842EVCP01;LFR3842EVCP02;LFR3842EVCP03;LFR3842EVCP04", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3842EVCP01;LFR3842EVCP02;LFR3842EVCP03;LFR3842EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72420900000, + 48.55135400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "description": "Intermarché - La Chapelle-Launay", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRPD1PITMLCL", + "start_date": "2022-11-24", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95767849703, + 47.36209482912 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLLYMOJE0D1YLE9", + "charging_station:output": "22 kW", + "start_date": "2024-07-15", + "description": "Albertville, Parking de la Gare", + "operator:email": "contact@reseau-eborn.fr", + "ref": "LLYMOJE0D1YLE9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38310220000, + 45.67261139000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - B&B Lescar", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP64335A", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP64335A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-01-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44541600000, + 43.32907700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCHAREI", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-07-11", + "opening_hours": "24/7", + "description": "Chaussea - Reims Cormontreuil", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04852639909, + 49.21451278245 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Chatenoy-Le-Royal", + "start_date": "2024-05-03", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT718801", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81192800000, + 46.79617500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPPARPPO", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-07-28", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "description": "Paris 18 - Porte des Poissonniers", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35243700000, + 48.89773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR56932;FROTHPOTHR56921;FROTHPOTHR56912;FROTHPOTHR56911;FROTHPOTHR56922;FROTHPOTHR56931;FROTHPOTHR56941;FROTHPOTHR56942", + "start_date": "2023-01-30", + "network": "ES B2G", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "ES/ GARE DE BRUMATH", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*569*3*_*_;FR*SOD*S*OTHR*569*1*_*_;FR*SOD*S*OTHR*569*2*_*_;FR*SOD*S*OTHR*569*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70071100000, + 48.73317500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAS AUNAUDIS BORNE 2", + "ref": "FRCPIE6753105", + "network": "SAS AUNAUDIS BORNE 2", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6753105", + "start_date": "2023-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04683600000, + 47.84987300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8878875946957533184", + "network": "Freshmile France", + "description": "Freshmile France/KBIZNBBJ9N", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521315", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74765700000, + 46.56846100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9005*03", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Rue Saint-Jacques 34", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P900503", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34534291522, + 48.85061353189 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "505707", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "description": "Freshmile France/UZHVKOIULL", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6931936430985554162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05133900000, + 48.51453600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRTSLP1756", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Tesla Supercharger Nancy", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18434900000, + 48.63821500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "466074", + "description": "Freshmile France/L9TUBLIR3M", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6467487394023011390", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72197900000, + 48.58073400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 12:00-18:00", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FR0NXPOOLJ44QH", + "description": "Actipole", + "network": "ACTIPOLE", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74223000000, + 45.97964700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/EKPWNBEKEL", + "ref": "457455", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1042436231958112492" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41166200000, + 48.87295200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "MORLHON LE HAUT - Impasse du Fintalou", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12200001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06284600000, + 44.32469800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LNQDG7PMO", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref": "932040", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA5P5504825431624929686" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19130000000, + 48.99628900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "SAINT-PIERRE-MONTLIMART - Avenue du Parc;OuestCharge - Diva Sp - Saint-Pierre-Montlimart - Parc", + "amenity": "charging_station", + "start_date": "2024-04-03;2021-04-19", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49313A;FRS49E49313001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02531000000, + 47.27035600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "FAYSSAC - Rue des Maronniers", + "start_date": "2024-07-22", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8108700111;FRS81E8108700121", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97238800000, + 43.95338200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2023-03-30;2023-04-17", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "ref": "FRHPCPNF006369", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS LES LISSES", + "ref:EU:EVSE": "FRHPCPNF006369", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531681329;531681328;531681326;531681327;531681330;531681333;531681331;531681332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44246100000, + 48.59418900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46051001", + "description": "CAMBES - ZA. Du Quercy Pôle Pépinière d'Entreprise", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-06-22", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94179300000, + 44.62148000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARGELES GAZOST - parking de la gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65025001", + "start_date": "2022-02-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09501000000, + 43.00746000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH03E59606003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "VALENCIENNES - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51734600000, + 50.36252200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS29E2919700", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plouhinec-Place Jean Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48645300000, + 48.01427800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE PERREUX SUR MARNE - Avenue Pierre Brossolette", + "start_date": "2021-11-27", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94058001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50303670000, + 48.83529640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "ref:EU:EVSE": "FRLMSP90248431", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Bordeaux Merignac", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66904000000, + 44.84480700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "fe23d76e-02a3-528e-8f95-f7608e330a4b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Lamonzie Saint Martin | Parking Avenue de Bergerac", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38240200000, + 44.84225800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*474*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE47411;FRSIGPSIGE47412", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - BOULEVARD LEON REVILLON - BOISSY-SAINT-LEGER", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51250270000, + 48.74707410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "capacity": "6", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9006071;FRALLEGO9006031;FRALLEGO9006032;FRALLEGO9006072;FRALLEGO9009281;FRALLEGO9009282", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Dax", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Dax", + "ref": "FRALLEGO9009281;FRALLEGO9006071;FRALLEGO9006031;FRALLEGO9006032;FRALLEGO9006072;FRALLEGO9009282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04329100000, + 43.71008900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLIBP003740000001823;FRLIBP003740000001824", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "network": "ITM CREPY EN VALOIS 3;ITM CREPY EN VALOIS 2", + "ref": "FRLIBP003740000001823;FRLIBP003740000001824", + "description": "ITM CREPY EN VALOIS 3;ITM CREPY EN VALOIS 2", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54106140000, + 50.39896040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "e6622f29-01e8-55c4-a75f-a44320345035", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Pee Sur Nivelle | Place Principale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54964500000, + 43.35379400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHANTONNAY - Place Jeanne D'Arc", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85051001", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05157000000, + 46.68631400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000196", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "TIKEHAU SAINT ETIENNE DE ROUVRAY;TIKEHAU ROUEN SAINT ETIENNE", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10598940000, + 49.36602880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3748EVCP02;LFR3748EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3748EVCP02;LFR3748EVCP01", + "capacity": "4", + "description": "GERZAT Estienne", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15224400000, + 45.81523800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Kyriad - Belfort Centre Gare", + "network": "Power Dot France", + "start_date": "2023-02-13", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRPD1PKYRBEL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85706030000, + 47.62882860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "QP0YIL8IFI;298300", + "charging_station:output": "50 kW;43 kW", + "description": "Le Monestier-Du-Percy, RD 1075;Réseau eborn/QP0YIL8IFI", + "ref:EU:EVSE": "FREBNPQP0YIL8IFI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63810000000, + 44.78880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVMP9975", + "network": "CENTRAL MOTOR VIENNE", + "owner:ref:FR:SIREN": "780096376", + "operator": "EV MAP SAS", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "capacity": "3", + "opening_hours": "Mo-Fr 08:00-19:00", + "socket:type2_combo:output": "60 kW", + "description": "HYUNDAI CENTRAL AUTOS VIENNE", + "operator:email": "contact@evmap.fr", + "start_date": "2024-01-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84973890000, + 45.50197040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "ref:EU:EVSE": "FRPD1PETXMTV", + "amenity": "charging_station", + "description": "Kiabi - Montivilliers", + "opening_hours": "24/7", + "start_date": "2023-11-13", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19033055086, + 49.52373375144 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "VIRTA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@virta.global", + "start_date": "2023-07-07", + "description": "GIFI CAUDEBEC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRE10E115112;FRE10E115111;FRE10E115093;FRE10E115094", + "owner:ref:FR:SIREN": "899152318", + "network": "Bornes GIFI Public", + "ref": "115112;115111;115093;115094" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03819500000, + 49.28445800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRESEPS42237AA", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "start_date": "2019-12-21", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Mairie Saint Jean Bonnefond", + "ref:EU:EVSE": "FRESEPS42237AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44459700000, + 45.44876700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-02-16", + "ref:EU:EVSE": "FROTHPOTHR13361;FROTHPOTHR13341;FROTHPOTHR13321;FROTHPOTHR13311;FROTHPOTHR13331;FROTHPOTHR13351", + "ref": "FR*SOD*S*OTHR*133*6*_*_;FR*SOD*S*OTHR*133*5*_*_;FR*SOD*S*OTHR*133*3*_*_;FR*SOD*S*OTHR*133*1*_*_;FR*SOD*S*OTHR*133*2*_*_;FR*SOD*S*OTHR*133*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ZENPARK", + "owner:ref:FR:SIREN": "537527145", + "operator:email": "sav@izivia.com", + "description": "PARKING DANUBE VERT - STRASBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77016600000, + 48.57303000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6932865", + "capacity": "2", + "amenity": "charging_station", + "description": "MAIRIE ORCHIES GAMBETTA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6932865", + "charging_station:output": "22 kW", + "start_date": "2024-06-25", + "network": "MAIRIE ORCHIES GAMBETTA", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24265800000, + 50.47479100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "102287", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PKJKQVT", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KJKQVT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45262000000, + 49.37600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP122032", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL BREST KERGARADEC AÉROPORT", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.45950500000, + 48.43249500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3435384366364286220", + "description": "Freshmile France/EV1WBBMH8V", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "782559", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91298500000, + 46.55711100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Renault - Sezanne", + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPEMILFREYRENAULT511201", + "start_date": "2024-02-27", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73100500000, + 48.71121900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/FVYKCQ", + "ref:EU:EVSE": "FRFR1PFVYKCQ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref": "232435" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08837000000, + 49.36240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - BONNEVAL - Rue de Chartres", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E129245", + "ref": "FRS28E129245", + "description": "MODULO - BONNEVAL - Rue de Chartres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39177715000, + 48.18831452000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLIU217QM16P54", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892779", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8532933810501289441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23122900000, + 49.42329400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P3857719524716503513", + "amenity": "charging_station", + "ref": "1128057", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA6LH1WMDEXK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71867100000, + 44.91030200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-25", + "description": "FOLLIGNY - Le Repas", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50320001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41476940000, + 48.83585690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-06-20", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "RABASTENS 2 - Place Auger Gaillard;RABASTENS 1 - Place Auger Gaillard", + "ref:EU:EVSE": "FRS81E8122000222;FRS81E8122000212;FRS81E8122000211;FRS81E8122000112;FRS81E8122000111;FRS81E8122000121;FRS81E8122000122;FRS81E8122000221", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72222995800, + 43.81927871700 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "ref": "FRHPCPNF069703", + "ref:EU:EVSE": "FRHPCPNF069703", + "opening_hours": "24/7", + "description": "RELAIS VARADES PAYS D'ANCENIS", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531681279;531681275;531681273;531681272;531681274;531681276;531681277;531681278", + "start_date": "2023-05-02;2023-04-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01801900000, + 47.41844400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "ANGERS - Rue Volney - Rue de la Chapelle;OuestCharge - Diva Sp - Angers - Volney", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49007005;FRS49P49007E", + "charging_station:output": "22 kW", + "start_date": "2021-04-28;2024-04-04;2024-04-05", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53822600000, + 47.46024000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/clermontVo", + "operator:email": "roaming@freshmile.com", + "ref": "46591", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PCLERMONTVO", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41656000000, + 49.37780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH07E59008002", + "network": "pass pass électrique", + "description": "ANICHE - Rue Léo Lagrange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25789000000, + 50.32667200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30029001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BARJAC - Avenue Jean Tassy", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34791800000, + 44.30692700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PSKSKQS", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/SKSKQS", + "network": "Mobilité électrique 56", + "ref": "24755" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10625000000, + 47.66720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Première Classe Soissons", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-02-06", + "ref:EU:EVSE": "FRLMSP90001892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31274300000, + 49.36556000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2022-05-20", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93066D", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P93066*D;Metropolis - Citadine - Saint-Denis - Félix Faure", + "opening_hours": "24/7", + "ref": "484823", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36111500000, + 48.93883000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;300 kW;125 kW;22 kW;44 kW", + "description": "Shell Aire de Béziers-Montblanc NORD", + "capacity": "16", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref:EU:EVSE": "FRSHEE204;FRSHEE203;FRSHEE165;FRSHEE163;FRSHEE162;FRSHEE164;FRSHEE210", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "start_date": "2024-03-31", + "opening_hours": "24/7", + "ref": "FRSHEE204;FRSHEE203;FRSHEE165;FRSHEE163;FRSHEE162;FRSHEE164;FRSHEE210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34404317000, + 43.36099344000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "operator": "AUTORECHARGE ", + "capacity": "2", + "ref:EU:EVSE": "FRAU1E0031011", + "network": "Réseau de charge AUTORECHARGE", + "amenity": "charging_station", + "ref": "039ba96d-7e11-4dd7-be8c-5a57279ba65f", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "897638383", + "description": "IMORIZON ANCENIS - MERMOZ 2 ANCENIS", + "operator:email": "contact@autorecharge.Fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18913296942, + 47.40769149871 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - A71 La Ferté St-Aubin", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89369718" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92935200000, + 47.66370400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Val-D'Oire-Et-Gartempe | Place du Champ de Foire", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "203__SEHV", + "ref": "4abec148-af60-5da0-9c23-d1a797d6d7b2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90363000000, + 46.23534100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-03-22", + "description": "Stade Pierre Brisson - BEAUVAIS", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE60BVSA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11616900000, + 49.43101600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSCHALN", + "description": "CHALON NORD", + "network": "Carrefour Energies", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84736000000, + 46.79820250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3568EVCP02;LFR3568EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3568EVCP02;LFR3568EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "VAUX LE PENIL Montereau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67841300000, + 48.53996500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "Marseille-14E, Rue de la Busserine", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PLJRNOERMCL", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39355600000, + 43.33041700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FELLSQ;32800", + "ref:EU:EVSE": "FREBNPFELLSQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FELLSQ;Saint-Maurice-L'Exil, Espace Marcel Noyer", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77447000000, + 45.39640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/A6NNCC3AAE", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P808699266552796518", + "operator": "Freshmile | FR*FR1", + "ref": "435240", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64404000000, + 46.03226000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-05-10", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIMCSEC", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Centre Commercial So Green - Seclin", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05205660000, + 50.54741670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346796;L26DHUKX0L", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "La Ravoire, Barillettes-parc, Rue Louis Pasteur;Réseau eborn/L26DHUKX0L", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FREBNPL26DHUKX0L;FREBNP6354548406299098902", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96026000000, + 45.57204000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1153743", + "network": "Road", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "7.4 kW;22 kW", + "description": "Road/669f753ef5e0cf001c00f415", + "operator:email": "roaming-dev@road.io", + "ref:EU:EVSE": "FREFLP2980592562524891171", + "operator": "Road | FR*EFL", + "opening_hours": "Sa,Tu,We,Fr,Mo,Th,Su 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02464300000, + 46.11806600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-10-05", + "description": "SUPER U - OLEMPS", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR25131;FROTHPOTHR25121;FROTHPOTHR25111;FROTHPOTHR25141", + "ref": "FR*SOD*S*OTHR*251*2*_*_;FR*SOD*S*OTHR*251*1*_*_;FR*SOD*S*OTHR*251*3*_*_;FR*SOD*S*OTHR*251*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55738000000, + 44.32436300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED MOUGINS", + "network": "CGED MOUGINS", + "ref": "FRCPIE6601395", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6601395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99680800000, + 43.58590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5375985276029195608", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/D36RA9CGIF", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "368812", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59100000000, + 44.81221000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P7977206079125722861", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "471006", + "description": "WAAT/s437356", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37947200000, + 48.89702000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/NPHZOEZONW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1161451575029432042", + "network": "Freshmile France", + "capacity": "14", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "ref": "541823" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30550300000, + 49.86983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ABB T53 MEGEVE PARKING CASINO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1234609889", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234609889", + "start_date": "2023-12-20", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62033300000, + 45.85787000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4910945903884301582", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ZJREN2NZLF", + "capacity": "2", + "amenity": "charging_station", + "ref": "472308", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39688100000, + 43.46341600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLEMPEREUR622231", + "network": "DRIVECO", + "capacity": "18", + "amenity": "charging_station", + "start_date": "2023-10-05", + "opening_hours": "24/7", + "description": "Motor - Valley ste Catherine", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76424500000, + 50.32069900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Place de Schweinfurt", + "amenity": "charging_station", + "start_date": "2021-11-26", + "operator:email": "lionel.chauvet@energie28.fr", + "owner:ref:FR:SIREN": "200080869", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS28ESDE28CHATDUN2B1P1", + "network": "FR*S28", + "operator": "ENERGIE EURE-ET-LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34837900000, + 48.07929300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39698", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/CIGMXJMDAM", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8893981950725930142" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44462200000, + 48.02007200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576038;576146", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP006A79;Zephyre/LE006E57", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P5666778904374605500;FRZP1P7733788493382278572", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15949700000, + 50.70524200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-08", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "description": "citroen_santes", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE61", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95245000000, + 50.59691500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/bruniquel", + "ref:EU:EVSE": "FRS82PBRUNIQUEL", + "operator:email": "roaming@freshmile.com", + "ref": "46639", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66197000000, + 44.05560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "description": "IZIVIA FAST - MCDONALDS - NIORT", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*132*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST13211;FRIZFPFAST13212;FRIZFPFAST13213", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-05-15", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47863740000, + 46.31251030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MONT PRES CHAMBORD - Rue de l'hôtel de ville", + "start_date": "2021-05-29", + "ref:EU:EVSE": "FRS41E4434;FRS41E4435", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E4434;FRS41E4435", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - MONT PRES CHAMBORD - Rue de l'hôtel de ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45772500000, + 47.56282300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60P2925442994864008936", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/KVTZBRN0SV", + "ref": "598158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04492000000, + 49.47961300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*51*2*_*_;FR*SOD*S*LYON*51*1*_*_", + "start_date": "2020-10-27", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON5111;FRGLYPLYON5112;FRGLYPLYON5121;FRGLYPLYON5122", + "description": "OUL02 - CENTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80688700000, + 45.71303200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT JEAN DU GARD - Gare Du Train À Vapeur", + "ref:EU:EVSE": "FRS30E30269001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88392900000, + 44.10180500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PNBPTPB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "25082", + "description": "Mobilité électrique 56/NBPTPB", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88602000000, + 47.86140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLYFYIX281YVU3", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1156875", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7281179526991288974" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18942900000, + 45.68441500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "description": "Mobilygreen CPO/0957c871-ed11-4088-989b-786a5949a43d", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRMW1P2806866166502522815", + "operator": "Mobilygreen | FR*MW1", + "ref": "873909" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57523800000, + 43.45736000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE18451;FRSIGPSIGE18431;FRSIGPSIGE18421;FRSIGPSIGE18411;FRSIGPSIGE18441", + "amenity": "charging_station", + "capacity": "1", + "description": "SIGEIF - 26 RUE HUCHE - SURESNES", + "ref": "FR*SOD*S*SIGE*184*5*_*_;FR*SOD*S*SIGE*184*1*_*_;FR*SOD*S*SIGE*184*2*_*_;FR*SOD*S*SIGE*184*3*_*_;FR*SOD*S*SIGE*184*4*_*_", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22183100000, + 48.87680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-11", + "ref:EU:EVSE": "FRCG0E001574;FRCG0E001573", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E001574;FRCG0E001573", + "network": "Au Comptoir Vénitien - 35000", + "operator:email": "info@chargeguru.com", + "description": "Au Comptoir Vénitien - 35000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71784900000, + 48.11699500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89900343", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Campanile Bordeaux Mérignac", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67954700000, + 44.83599900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-06", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS40PMB407113;FRS40PMB407111;Non concerné;FRS40PMB407112;FRS40PMB407114", + "operator": "199__SYDEC40;IZIVIA", + "description": "MOBIVE | Narrosse | Mairie;NARROSSE - MAIRIE", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "ref": "9e343db1-9b10-5306-8846-a3d38dbdf54b;FR*SOD*S*MB40*71*1*_*_", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00874300000, + 43.69286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Eglise - NANTEUIL LES MEAUX", + "ref:EU:EVSE": "FRSE1PSE77NACA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-26", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89800700000, + 48.92932100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSSEGNY", + "charging_station:output": "22 kW;150 kW", + "description": "SEGNY", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-06-24", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07906700000, + 46.29427200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3172EVCP02;LFR3172EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3172EVCP02;LFR3172EVCP01", + "description": "CAMBRAI Valenciennes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24752100000, + 50.18114400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTPELLIER - Avenue Du Mondial 98", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34172012", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91320000000, + 43.60645300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "BV4HG5JPFC", + "ref:EU:EVSE": "FREBNPBV4HG5JPFC", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Vals-près-le-Puy, avenue Charles Massot", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87850640000, + 45.02953070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "441018", + "description": "Freshmile France/NKMDJTOUDC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1355439877189875905", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69300000000, + 48.59889300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP07E920120011;FRP07E92012001", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2020-06-15;2023-03-10;2021-11-03", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BOULOGNE BILLANCOURT - Cours Ile Seguin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23323700000, + 48.82679000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/SAZRHEFA8M", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP6237327393588909700", + "ref": "749448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07816800000, + 45.08866400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPLIMFV", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "socket:type2_combo:output": "300 kW;225 kW", + "opening_hours": "24/7", + "description": "Limoges - CC Family Village", + "charging_station:output": "300 kW;225 kW", + "start_date": "2023-12-20", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28293500000, + 45.89422300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking gare de Longueville P+R - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E77260001", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24912550000, + 48.51398430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6634845", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED CGED VAULX", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CGED CGED VAULX", + "ref:EU:EVSE": "FRCPIE6634845", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93446100000, + 45.75851200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPDCQ0LAWQZE;FRECHP137689546277780445", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "socket:type2_combo:output": "24 kW", + "network": "Easycharge services;Easy Charge", + "ref": "756843;DCQ0LAWQZE", + "description": "Le Chesnay-Rocquencourt , Rue de Versailles;Easy Charge/DCQ0LAWQZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12831000000, + 48.81617000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-07", + "ref": "FR*V75*PPX17*07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1707", + "description": "Paris | Rue Marguerite Long 11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30400000000, + 48.89140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2315145615528529535", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/CJYWF7AUNG", + "ref": "594395", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63991600000, + 45.72249300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": " SAMSE - GRENOBLE", + "description": "Siège Social - Pitet", + "ref:EU:EVSE": "FRTCBP01400", + "start_date": "2023-02-24", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779463223", + "capacity": "12", + "operator": "TotalEnergies Marketing France", + "charging_station:output": "24 kW;22 kW", + "ref": "FRTCBP01400", + "socket:type2_combo:output": "24 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71405617116, + 45.16083229416 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1183941", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P496346890746864683", + "description": "Freshmile France/LLYO5RGWQ25KDA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83508900000, + 44.75941500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPAUTODIFHYUNDAI130161", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-04-28", + "description": "Hyundai - Autodif - L'estaque", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33948700000, + 43.36000100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Melgven-Place des Grands Chênes", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2914600", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.83631600000, + 47.90676100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ESPERAZA - Avenue De Chalabre", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11129001", + "start_date": "2022-01-31", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21577533400, + 42.93515733200 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ford Marmande - Groupe Malbet", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "399919927", + "capacity": "1", + "ref": "E175319 ;E175320", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "FORD - MARMANDE 22 kW ", + "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", + "ref:EU:EVSE": "FRZPEE175320;FRZPEE175319", + "start_date": "2023-04-07", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14958500000, + 44.50733100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DUN - Allee De L'Ecole", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09107001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79972700000, + 43.02611500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "34640", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80P58D2452CB39D7", + "description": "FDE 80/58d2452cb39d7", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08123000000, + 50.01480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref": "FR*SOD*S*FAST*28*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - PERPIGNAN POLYGONE", + "ref:EU:EVSE": "FRIZFPFAST2811;FRIZFPFAST2812;FRIZFPFAST2813", + "start_date": "2024-04-23", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89116167804, + 42.74278328799 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-23;2024-04-22", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44050001;FRS44P44050A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "CROSSAC - Rue Pierre Plaisance;OuestCharge - Diva Sp - Crossac - Plaisance", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16774400000, + 47.41158400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77140001;FRS77P77140A", + "description": "Coutençon;COUTENCON - Rue De Montigny", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-08-12;2023-05-12", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61CZMYP29GAQ1GC4HR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99851400000, + 48.46997500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis style ROUEN", + "amenity": "charging_station", + "network": "Ibis style ROUEN", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000085921;FRGSPP1000085960" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06866754043, + 49.42507619650 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E220242;FRS37E220240", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHÂTEAU RENAULT - Av. du Maine", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E220242;FRS37E220240", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHÂTEAU RENAULT - Av. du Maine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90823621000, + 47.58978807000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "44__CCCPH", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "description": "CCCPH - Mercy-le-Bas", + "operator:email": "cpo@citeos.com", + "ref": "acb0cdf8-e2fa-5a3d-859e-e1c5e32f9e8e", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75571000000, + 49.38874400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P95527A", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "HOTELOP - Holiday Inn Roissy", + "ref:EU:EVSE": "FRG10P95527A", + "start_date": "2024-03-28", + "network": "HOTELOP - Holiday Inn Roissy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51514900000, + 49.00846800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "a990b4eb-846f-5792-9599-47304a681f45", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | PRECHACQ-LES-BAINS | Parking école", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90966600000, + 43.75767600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Anatole France", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-04", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068029" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50300740000, + 48.80872780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BNSIEGE BORNE SIEGE N°1", + "description": "BNSIEGE BORNE SIEGE N°1", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6521995", + "ref": "FRCPIE6521995" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37438200000, + 48.81673500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "446816", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/SILXS1RMLH", + "ref:EU:EVSE": "FRLE2P7805121323244113969" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114900000, + 47.43337400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Montignac | D706 | Zone Commerciale lacoste", + "ref:EU:EVSE": "Non concerné", + "ref": "4c0765c1-9e7b-5bcf-8f45-9568e575185e", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15140100000, + 45.05542400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB40085A", + "start_date": "2019-04-02", + "description": "Réseau AlterBase - Magné - Centre Commercial", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55571420000, + 46.31691290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS313007", + "capacity": "2", + "description": "Airbus - Marignane - Parking Visiteur P11", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23324800000, + 43.43628700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR1016EVCP01;LFR1016EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "PROVINS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR1016EVCP01;LFR1016EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29488800000, + 48.54889700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P4887512565495933575", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/TDQIJPJMNC", + "ref": "414795", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81417000000, + 47.94254000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-06", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*155*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-MARTIN-DENTRAUNES - PARKING VILLAGE", + "ref:EU:EVSE": "FRA16PWIIZ15512;FRA16PWIIZ15511", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76146100000, + 44.14285800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CEGEWMOWL6", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P921269996630482814", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "471024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08076600000, + 47.01446100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;188 kW", + "start_date": "2023-07-26", + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "description": "Retail Park - Dreux", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBDMDR1", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36223779245, + 48.74733021805 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "301246;IMRPTILWO0", + "description": "Toulon, Place Du Colonel Bonnier;Réseau eborn/IMRPTILWO0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref:EU:EVSE": "FREBNPIMRPTILWO0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91046300000, + 43.12874900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPORNJL", + "start_date": "2024-01-31", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "ELECTRA", + "description": "Ornex - Jardiland" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08945600000, + 46.28235000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E1320200920;FRP07E13202009;FRP07E132020091", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-08-31", + "capacity": "20", + "description": "MARSEILLE - Les Fabriques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36526042873, + 43.32563418640 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6706575", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED CAEN", + "description": "CGED CAEN", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6706575" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34463800000, + 49.21321900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPLLTFTWCST1T75U;FRECHP6075582305369407925", + "socket:type2_combo:output": "120 kW", + "ref": "LLTFTWCST1T75U;1044732", + "network": "Easycharge services;Easy Charge", + "start_date": "2024-03-06", + "description": "Thionville, Rue de l'Ancienne Gare;Easy Charge/LLTFTWCST1T75U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15897700000, + 49.34989000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A13 Morainvilliers Sud", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP102115", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95123000000, + 48.94198200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P2530382370246325574", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "578924", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MY72KDYCBP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11676800000, + 50.57912300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX08*08", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "ref:EU:EVSE": "FRV75PPX0808", + "description": "Paris | Boulevard des Batignolles 9", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32592200000, + 48.88301630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/YUKUFV", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PYUKUFV", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120782", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40364000000, + 48.55220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-27", + "ref:EU:EVSE": "FRSSDPPARKBARTH062501", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Tzanck - Mougins - Parking Barthelemy ", + "opening_hours": "24/7", + "capacity": "10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01104200000, + 43.60926600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "description": "SYDED/pontarcine", + "ref": "79927", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "ref:EU:EVSE": "FRS25PPONTARCINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34571000000, + 46.90190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E200951;FRS18E200950", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - CHAROST - Pl. François Chapus", + "charging_station:output": "0 kW", + "ref": "FRS18E200951;FRS18E200950", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHAROST - Pl. François Chapus" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11743300000, + 46.99243000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Enedis", + "opening_hours": "Mo-Fr 8:30-12:30, Mo-Fr 13:30-18:30", + "operator": "GF3e", + "owner:ref:FR:SIREN": "799065628", + "description": "SR-Triangle", + "amenity": "charging_station", + "capacity": "4", + "ref": "f2a9d6ba-edd0-4e1e-a9e1-c75aed518e86", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "22 kW", + "operator:email": "gf3e@gf3e.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15962640000, + 45.74132497222 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - 83000 TOULON - ZENITH", + "ref:EU:EVSE": "FRQPKPQPRK11351;FRQPKPQPRK11311;FRQPKPQPRK11321;FRQPKPQPRK11331;FRQPKPQPRK11341;FRQPKPQPRK11361", + "ref": "FR*SOD*S*QPRK*113*6*_*_;FR*SOD*S*QPRK*113*5*_*_;FR*SOD*S*QPRK*113*1*_*_;FR*SOD*S*QPRK*113*2*_*_;FR*SOD*S*QPRK*113*3*_*_;FR*SOD*S*QPRK*113*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93380235479, + 43.12924881973 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRIATEXTE - Place De La Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81039001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90824600000, + 43.75190800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2019-10-25", + "description": "IONITY Mâcon Saint-Albain", + "ref": "FRIONE403800", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIONE403800", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07050800000, + 45.84386800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-29", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAINT-HERBLON - Rue De L'Europe;OuestCharge - Diva Sp - Saint-Herblon - Europe", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44163A;FRS44E44163001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10352500000, + 47.38448100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77404001;FRS77P77404A", + "ref": "418dc3c3-2ab7-4161-824f-a83991dcbb96", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "socket:type2_combo:output": "24 kW", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "SAINTE-COLOMBE - Général Leclerc;Sainte-Colombe - Général Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25360900000, + 48.52909200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF078569", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680667;531680666;531680665;531680664;531680659;531680663;531680658;531680661;531680662;531680660", + "opening_hours": "24/7", + "ref": "FRHPCPNF078569", + "start_date": "2023-02-24;2023-06-28;2022-12-20;2023-02-23", + "network": "TotalEnergies Charge Rapide", + "capacity": "10", + "description": "REL. LAURAGAIS SUD", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80430000000, + 43.35270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GEAUNE - PARKING DE LA POSTE", + "ref": "FR*SOD*S*MB40*8*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40812;FRS40PMB40811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-04-15", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38056094921, + 43.64054262492 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-04", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PATFAFZ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Quiberon - Place Varquez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12165700000, + 47.48174300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*171*1*_*_;FR*SOD*S*LYON*171*2*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17122;FRGLYPLYON17112;FRGLYPLYON17111;FRGLYPLYON17121", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "description": "LY505 - PLACE DE TRION - CHOULANS", + "operator:email": "sav@izivia.com", + "start_date": "2022-05-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81327500000, + 45.75781600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "320 kW", + "ref:EU:EVSE": "FRMFCP8132573023969869874;FRMFCP2145895168651885916", + "ref": "1131495;1131492", + "amenity": "charging_station", + "charging_station:output": "320 kW;22 kW", + "description": "Mobilize Fast Charge/a605160b-4317-4381-84be-343c9c31e808;Mobilize Fast Charge/211d4fc8-305d-43e6-bd3f-576746bdd4e5", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "opening_hours": "24/7", + "capacity": "1;6", + "network": "Mobilize Fast Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73105000000, + 45.97956400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Opel - ByMyCar - Annecy", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2020-01-15", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPBYMYCAR740001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10525600000, + 45.88838200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6590025", + "network": "CGED CLERMONT", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6590025", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CGED CLERMONT", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14403300000, + 45.79061900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "559862", + "ref:EU:EVSE": "FRLE2P1305843422465603212", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/BBULJZHSML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743400000, + 48.06397000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS33PMB3311811;Non concerné;FRS33PMB3311812", + "description": "MOBIVE | Saint Emilion | Parking Rue du Grand Pontet;SAINT EMILION - PARKING RUE DU GRAND PONTET", + "owner:ref:FR:SIREN": "253303473", + "ref": "FR*SOD*S*MB33*118*1*_*_;2e4a008f-1ee0-5ed7-ab77-1480a84822e9", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15699200000, + 44.89627100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "EZANVILLE - Rue de la Mairie ", + "start_date": "2024-02-29", + "ref:EU:EVSE": "FRS95E95229001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36148289374, + 49.03066159907 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSKLPSO", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-10-31", + "network": "Carrefour Energies", + "description": "ST ORENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51659000000, + 43.56632000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ETAIN", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4054EVCP01", + "ref:EU:EVSE": "LFR4054EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64930700000, + 49.21727400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PGP4NZAMPXA", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Aix-En-Provence, Avenue de Tübingen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43189900000, + 43.52480900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/CMQEKFB2BP", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402464", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P2746824579610892452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49155100000, + 47.94143300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LE MAS PARKING COUVERT", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ2912;FRA16PWIIZ2911", + "start_date": "2018-07-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*29*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85808900000, + 43.84321200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4210212490810797056", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "482034", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LYDSRQVHDQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890400000, + 46.13001800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-02-04;2023-12-04", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "description": "Netto - Elne", + "ref:EU:EVSE": "FRPD1PNETTOE", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97839029028, + 42.60516762719 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-09-29", + "ref": "441135;TBCQ7Z5SIN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/TBCQ7Z5SIN;Six-Fours-Les-Plages, Parking de la Coudoulière, Avenue du Cap Nègre", + "ref:EU:EVSE": "FREBNPTBCQ7Z5SIN;FREBNP535017740701420613" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81250000000, + 43.09978300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "683240", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP3043991339078345225", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "description": "CARF - Bornes Publiques/87BFBA33-19FC-42C0-AAA8-223154A083C8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55449800000, + 44.00243100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*610*5*_*_;FR*SOD*S*OTHR*610*2*_*_;FR*SOD*S*OTHR*610*1*_*_;FR*SOD*S*OTHR*610*3*_*_;FR*SOD*S*OTHR*610*4*_*_;FR*SOD*S*OTHR*610*6*_*_", + "charging_station:output": "3.68 kW;22 kW", + "start_date": "2024-01-31", + "amenity": "charging_station", + "capacity": "1", + "description": "JIVA HILL RESORT - CROZET", + "opening_hours": "24/7", + "network": "JIVA HILL RESORT", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR61031;FROTHPOTHR61011;FROTHPOTHR61021;FROTHPOTHR61041;FROTHPOTHR61051;FROTHPOTHR61061" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02137000000, + 46.27058600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP4565880925945615744;FREBNPPH6VWTTSVI", + "ref": "PH6VWTTSVI;346877", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/PH6VWTTSVI;Le Bourget-Du-Lac, Horloge, rue du Lac Majeur ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86836100000, + 45.64400200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30329;MRH2IYQPC5", + "description": "Saint-Georges-Les-Bains, Le Blod;Réseau eborn/MRH2IYQPC5", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPMRH2IYQPC5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82973400000, + 44.85609400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-04-09", + "description": "ENGIE Vianeo - B&B HOTEL BOURGES 2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP122024", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34161200000, + 47.04755000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "529751", + "network": "Freshmile France", + "description": "Freshmile France/WJAIJ1IBFG", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P2599211493137802076", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46264300000, + 44.91731500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1504", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue Leblanc 19", + "amenity": "charging_station", + "ref": "FR*V75*PPX15*04", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27332800000, + 48.83984000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2098805482595948298", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLZCTTLL81295N", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1174539" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89456100000, + 42.67256800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "OPEL - Cambrai", + "opening_hours": "Mo 09:30-11:00, Mo 15:00-17:00, Tu 09:30-11:00, Tu 15:00-17:00, We 09:30-11:00, We 15:00-17:00, Th 09:30-11:00, Th 15:00-17:00, Fr 09:30-11:00, Fr 15:00-17:00", + "start_date": "2022-01-31", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPOPELCAMBRAI594001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23225000000, + 50.18218700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-05-02", + "capacity": "2", + "amenity": "charging_station", + "description": "900014", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PPTAUDEMERANNEXEHOP", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51415300000, + 49.35304000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "Erquy-Boulevard de la mer", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22054001", + "charging_station:output": "22 kW", + "start_date": "2023-05-31;2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.46773500000, + 48.63027500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY13E78668001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "LA VILLENEUVE-EN-CHEVRIE - Route Nationale", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50818300000, + 49.02271200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE178", + "start_date": "2021-11-25", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "description": "Sofinor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89680300000, + 50.65531000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1132317", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLZZGITA0H", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRWATP7615233589031662377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86143300000, + 45.76668700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE402804;FRIOYE402803;FRIOYE402802;FRIOYE402801;FRIOYE402851;FRIOYE402852;FRIOYE402853", + "network": "Lacq Audéjos Sud", + "start_date": "2020-09-18", + "description": "Lacq Audéjos Sud", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref": "FRIOYE402804;FRIOYE402803;FRIOYE402802;FRIOYE402801;FRIOYE402851;FRIOYE402852;FRIOYE402853", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59864092000, + 43.42168363000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS52P52269B", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "ref": "474516", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/FR*S52*P52269B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33156900000, + 47.85821600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LOURDES - Parking Monge", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65286007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03067000000, + 43.11171000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Gétigné", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE002002;FRIENE002001", + "network": "Gétigné", + "ref:EU:EVSE": "FRIENE002002;FRIENE002001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23427100000, + 47.07618300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34210001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE POUGET - Avenue des condamines - Parking Centre Culturel", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-10", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52747222222, + 43.58818060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-ALEN-003", + "network": "61mobility", + "capacity": "2", + "description": "ALENCON - Place de la République", + "amenity": "charging_station", + "start_date": "2018-02-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS61P61001C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09331410000, + 48.42713950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "294332", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LRR5ND4PC0", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PLRR5ND4PC0", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72500000000, + 44.91220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-01", + "ref:EU:EVSE": "FRS31PJMECMY", + "description": "Longages;Roulez Électrique En Haute-Garonne/JMECMY", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "33361;JMECMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24848000000, + 43.35810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "capacity": "5", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAURINFORD132901", + "amenity": "charging_station", + "description": "Ford - Aix", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-12-11", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39914700000, + 43.50730300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCARP77122A", + "operator": "E-TOTEM", + "description": "Carrefour Supply Chain - Combs la Ville", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "ref": "FRCARP77122A", + "operator:email": "contact@e-totem.fr", + "network": "Carrefour Supply Chain - Combs la Ville", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55557935254, + 48.64942059754 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Auberge du Point Sublime Gorges du Verdon ", + "ref:EU:EVSE": "FRLUMEPOINTSUBLIME11", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref": "867580d1-94f0-43af-a80e-bd0da75ee828", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2022-09-09", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40000000000, + 43.79000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Le Gua | Rue Samuel Champlain", + "ref": "12719157-94a2-5fbe-8d66-3f0837144c52", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94497900000, + 45.72639500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE46VABA", + "start_date": "2023-12-27", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "CARREFOUR CONTACT - CUZANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63982300000, + 44.99994200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "BornEco/6452561a2f5a364fea56b4a0", + "ref": "1122435", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP5948866688759220692" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08086500000, + 43.56258600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REMIREMONT Dommartin", + "ref:EU:EVSE": "LFR3055EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3055EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60385500000, + 48.01175700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Venelles, Avenue Maurice Plantier", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PESOARGTP4B", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48617600000, + 43.60000100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P6818301390075772509", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402701", + "description": "SDEY/Z5UCFNWMKC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75796200000, + 47.89523500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P06380*SOS*PARKING", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "start_date": "2020-04-30", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "description": "RUE BLANCHI SOSPEL", + "ref:EU:EVSE": "FR55CP06380SOSPARKING", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44829700000, + 43.87840800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2144382455426440444", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "446567", + "description": "Freshmile France/QWFFJSO2PP", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95523300000, + 49.04616300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-08-11", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Super U - Mareil-en-Champagne", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUMEC", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16273856680, + 47.98757492669 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75236;FEEL9LIPEP", + "ref:EU:EVSE": "FREBNPFEEL9LIPEP", + "description": "Réseau eborn/FEEL9LIPEP;Marnaz, Parking CTM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53110000000, + 46.05942000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-23", + "operator": "Fastned France", + "capacity": "8", + "description": "Fastned Aire de Dracé", + "ref:EU:EVSE": "FRFASE33024", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "network": "Fastned Aire de Dracé", + "ref": "FRFASE33024", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "853300010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76790160000, + 46.14337883000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-25", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR9012;FROTHPOTHR9011", + "charging_station:output": "22 kW", + "description": "CAMPING SANDAYA - CLAPIERS", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA", + "ref": "FR*SOD*S*OTHR*90*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89745500000, + 43.65173700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "RMGF2XIQG6", + "ref:EU:EVSE": "FREBNPRMGF2XIQG6", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "La Ricamarie, Parking Avenue Maurice Thorez", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36409110000, + 45.40502090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/JKA3JEAMYP;Châteauneuf-De-Galaure, ZI des Aires", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPJKA3JEAMYP", + "ref": "JKA3JEAMYP;31804", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96026200000, + 45.22944500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR42122;FROTHPOTHR42121;FROTHPOTHR42111;FROTHPOTHR42112", + "start_date": "2022-06-22", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*421*2*_*_;FR*SOD*S*OTHR*421*1*_*_", + "description": "INTERMARCHE - MARQUETTE LEZ LILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06616900000, + 50.68265900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510587", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/S6ZRQZX1D5", + "ref:EU:EVSE": "FRFR1P1962738078565555441", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44541800000, + 43.44886800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Briançon, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP33161", + "capacity": "9", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63007500000, + 44.90382400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PZZMXAN", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ZZMXAN", + "ref": "86855", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11013000000, + 46.25590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "56fde036-b7df-5189-8e16-96be80c12922", + "description": "Pontarlier - rue de Beçanson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34760000000, + 46.91111100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WRTQ7PSGYO", + "operator:email": "roaming@freshmile.com", + "ref": "491952", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4677673333532857262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66963700000, + 46.82280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461763", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/IHJ5AEHHQC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P4027826511109999790", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13029400000, + 49.38186600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "ref": "576155;576218;576194;576200;576185", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P2366084591031674760;FRZP1P1523674708375277409;FRZP1P7476728634361080028;FRZP1P349620142235417654;FRZP1P5722604615241474531", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Zephyre/LP009581;Zephyre/LP008984;Zephyre/LP008981;Zephyre/LP00897E;Zephyre/LP006A96", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15179800000, + 49.46665300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE4", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "hotelcosmos", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2020-03-07", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89201000000, + 48.18372400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY01E78624001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TRIEL-SUR-SEINE - Rue Du Docteur Sobaux", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00592100000, + 48.98043100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "description": "SAINT-OUEN-DES-TOITS - Place De L'Église;OuestCharge - Diva Sp - Saint-Ouen-Des-Toits - Eglise", + "start_date": "2021-04-16;2024-05-27", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53E53243001;FRS53P53243A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90813600000, + 48.13735800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "PRUNET ET BELPUIG - D618", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66153001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62531600000, + 42.56175800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20853750000, + 49.97218640000 + ], + [ + 1.20863900000, + 49.97212430000 + ], + [ + 1.20866750000, + 49.97210680000 + ], + [ + 1.20871330000, + 49.97213770000 + ], + [ + 1.20855710000, + 49.97223330000 + ], + [ + 1.20851140000, + 49.97220240000 + ], + [ + 1.20853750000, + 49.97218640000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref": "FR*SOD*S*IKEA*105*2*_*_;FR*SOD*S*IKEA*105*1*_*_;FR*SOD*S*IKEA*105*10*_*_;FR*SOD*S*IKEA*105*11*_*_;FR*SOD*S*IKEA*105*12*_*_;FR*SOD*S*IKEA*105*3*_*_;FR*SOD*S*IKEA*105*4*_*_;FR*SOD*S*IKEA*105*5*_*_;FR*SOD*S*IKEA*105*6*_*_;FR*SOD*S*IKEA*105*7*_*_;FR*SOD*S*IKEA*105*8*_*_;FR*SOD*S*IKEA*105*9*_*_", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "description": "IKEA TOULON - PARKING CLIENT 2", + "opening_hours": "24/7", + "start_date": "2023-02-20;2023-08-03", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIKAPIKEA10591;FRIKAPIKEA10581;FRIKAPIKEA10571;FRIKAPIKEA10561;FRIKAPIKEA10551;FRIKAPIKEA105121;FRIKAPIKEA105112;FRIKAPIKEA105101;FRIKAPIKEA10511;FRIKAPIKEA105111;FRIKAPIKEA105122;FRIKAPIKEA10521;FRIKAPIKEA10531;FRIKAPIKEA10541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01018600000, + 43.14084100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "MINIAC MORVAN - 26 rue de la poste ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35133002B1", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90387000000, + 48.51726000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hôtel de ville de Calais", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "start_date": "2021-04-23", + "capacity": "1", + "network": "Ubitricity France Network", + "charging_station:output": "5.5 kW", + "owner:ref:FR:SIREN": "389643859", + "opening_hours": "24/7", + "operator": "ubitricity", + "ref:EU:EVSE": "FRS62E10048506" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85472220000, + 50.95222220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PDHBBNU", + "ref": "242296", + "description": "Freshmile France/DHBBNU", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64545000000, + 43.26590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-14", + "ref": "33382;VVKNSB", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PVVKNSB", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/VVKNSB;Castelnau-d'Estrétefonds", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35641000000, + 43.78450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "AUBERVILLIERS - Rue Helene Cochennec", + "ref:EU:EVSE": "FRSIPE93001001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39480022884, + 48.91982582680 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000765;FRCG0E000766", + "network": "SCI AUX BOLONS - 25480 - 1", + "charging_station:output": "50 kW", + "ref": "FRCG0E000765;FRCG0E000766", + "description": "SCI AUX BOLONS - 25480 - 1", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99182000000, + 47.28281300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE20311;FRM06PNICE20312;FRM06PNICE20321;FRM06PNICE20322", + "capacity": "2", + "description": "NICE - PARKING THEODORE BANVILLE", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*203*2*_*_;FR*SOD*S*NICE*203*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-11-10", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25960397372, + 43.71317628557 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Tonneins | Maréchal Foch", + "capacity": "2", + "amenity": "charging_station", + "ref": "5f7ea19a-9999-53e1-a205-f46b2281a243", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31021200000, + 44.39013300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 22 AVENUE LAMARTINE PARKING LAMARTINE - BESSANCOURT", + "ref:EU:EVSE": "FRSIGPSIGE34112;FRSIGPSIGE34111", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*341*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20470000000, + 49.04080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-08", + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76056001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BARDOUVILLE - Rue De L'École", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92725200000, + 49.43592600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHATILLON Paris", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "LFR3215EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3215EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29174800000, + 48.80576400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Crozant | Centre d'Interprétation des Peintres", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "e0a8c2a9-b288-556c-80ec-d9b3a4e6e9ae", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62185500000, + 46.38977600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PMONTAUBANTO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/montaubanto", + "ref": "79798", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35197000000, + 44.01600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAIRIE - LA CROIX-VALMER", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2024-08-19", + "ref:EU:EVSE": "FR55CP83420CRVMA1R1E", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83420*CRV*MA1R1E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56800600000, + 43.20843800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3744EVCP01;LFR3744EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3744EVCP01;LFR3744EVCP02", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "AGNEAUX Coutances" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13334900000, + 49.11145100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "start_date": "2023-02-02", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMCRM", + "opening_hours": "24/7", + "description": "Intermarché - Carmaux", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16022000000, + 44.05228000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EUPMCU29Y2;30458", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "ref:EU:EVSE": "FREBNPEUPMCU29Y2", + "description": "Tallard, Parking Aérodrome;Réseau eborn/EUPMCU29Y2", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03355000000, + 44.45540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP62628A", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "e-Totem - Noyelles sous Lens", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP62628A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86336374496, + 50.43073472848 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "description": "Parking Les Machines de Nantes - EFFIA", + "ref:EU:EVSE": "FRP01E44109008", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-07-04;2023-10-30", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56251810000, + 47.20591820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Nîmes Painlevé", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-12-08", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT300001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37191200000, + 43.83689300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-06-12", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPRUAFV", + "description": "Ruaudin - CC Family Village les Hunaudières", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23963700000, + 47.94380700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CARREFOUR MARKET - CRUSEILLES", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "CARREFOUR", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR53811;FROTHPOTHR53821", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*538*2*_*_;FR*SOD*S*OTHR*538*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10629400000, + 46.02795100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "network": "SONEPAR AED ST-M.HERES", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR AED ST-M.HERES", + "ref:EU:EVSE": "FRCPIE6735845", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6735845", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76776100000, + 45.16513300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8151401887700896425", + "description": "Freshmile France/ITD8L7L5KT", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "529319", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43950200000, + 43.63320300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LYON PART DIEU 1", + "ref:EU:EVSE": "FRURWPUNIB891;FRURWPUNIB871;FRURWPUNIB861;FRURWPUNIB8101;FRURWPUNIB811;FRURWPUNIB821;FRURWPUNIB831;FRURWPUNIB841;FRURWPUNIB851;FRURWPUNIB881", + "ref": "FR*SOD*S*UNIB*8*9*_*_;FR*SOD*S*UNIB*8*8*_*_;FR*SOD*S*UNIB*8*5*_*_;FR*SOD*S*UNIB*8*3*_*_;FR*SOD*S*UNIB*8*2*_*_;FR*SOD*S*UNIB*8*1*_*_;FR*SOD*S*UNIB*8*10*_*_;FR*SOD*S*UNIB*8*4*_*_;FR*SOD*S*UNIB*8*6*_*_;FR*SOD*S*UNIB*8*7*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-03-15;2020-12-08", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85638600000, + 45.76189500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com;cpo@citeos.com", + "ref:EU:EVSE": "Non concerné;FRFR1P2759771134158688625", + "network": "CPO CITEOS SDE54;Freshmile France", + "capacity": "2", + "amenity": "charging_station", + "operator": "Freshmile | FR*FR1;5_AM0004_SDE54", + "description": "CCMAMO - Ancy-Dornot - Rue Lemal Perrin;Freshmile France/DHOGICTC4J", + "opening_hours": "24/7", + "ref": "4f23390c-7a27-5dec-8183-6e541c5ed103;541742", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05923300000, + 49.05647200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP10702", + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Angoulême, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17884100000, + 45.69444000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PHXLM9QQUG", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P9221001465484255599", + "amenity": "charging_station", + "ref": "591224", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022800000, + 44.14649400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR000028067822", + "owner:ref:FR:SIREN": "320342975", + "charging_station:output": "36 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-13", + "ref": "9d048374-0445-11ee-be56-0242ac120002", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "description": "Carry-le-Rouet", + "network": "SAS La Tuiliere", + "operator": "Electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14376626550, + 43.32920044913 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/PMGS18OQBS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1539373083651019872", + "ref": "461880" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465000000, + 49.27952200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-14", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LUGAN - Le Bourg", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12134001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25931000000, + 44.48139600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "880158", + "ref:EU:EVSE": "FRWA4P7679913679655993410", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA4LHAHSDXVG", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11814100000, + 49.48385800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-04;2021-05-28", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49261001;FRS49P49261A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "LES ROSIERS-SUR-LOIRE - Rue du Mail;OuestCharge - Diva Sp - Les Rosiers-sur-Loire - Mail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22440800000, + 47.35074600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASTRES - Mélou - Route de Toulouse", + "capacity": "4", + "start_date": "2021-05-25;2021-11-03", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81065008", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21763500000, + 43.59326600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FOURMIES - Place Maria Blondeau", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH17E59249001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04222200000, + 50.01713900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-16;2021-04-21", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "TRIGNAC - Rue Léo Lagrange;OuestCharge - Diva Sp - Trignac - Lagrange", + "ref:EU:EVSE": "FRS44P44210A;FRS44E44210001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20017400000, + 47.29979500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "description": "SIEG63 - ePremium - St Germain Lembron - Place du desert", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63352C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23733320000, + 45.45690700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59627001", + "start_date": "2019-12-11", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "VILLERS-SIRE-NICOLE - Grand Place" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01243200000, + 50.33968700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "CERS - Place De La République", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34073001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30597777778, + 43.32271940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-22", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "CRETEIL - Avenue Courtois", + "ref:EU:EVSE": "FRSIPE94028034" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45270660000, + 48.78560800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hotel Saint Michel Sur Orge", + "start_date": "2024-05-13", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90200602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29903800000, + 48.62641100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "cb00ecf6-b845-57e6-8d6c-1d9b53b02f60", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Sarlat la Caneda | Avenue Aristide Briand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21742700000, + 44.88042100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-02-23", + "description": "SIGEIF - 12 RUE PASTEUR - SAINT-BRICE-SOUS-FORET", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*446*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE44611;FRSIGPSIGE44612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35927420000, + 48.99880110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "network": "Allego Carrefour Montereau", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Montereau", + "ref:EU:EVSE": "FRALLEGO9006971;FRALLEGO9006961;FRALLEGO9004421;FRALLEGO9004301;FRALLEGO9004302;FRALLEGO9004422;FRALLEGO9006962;FRALLEGO9006972", + "ref": "FRALLEGO9006971;FRALLEGO9006961;FRALLEGO9004421;FRALLEGO9004301;FRALLEGO9004302;FRALLEGO9004422;FRALLEGO9006962;FRALLEGO9006972" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95473000000, + 48.39685600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "JURANCON Juin", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3563EVCP03;LFR3563EVCP02;LFR3563EVCP01", + "ref": "LFR3563EVCP03;LFR3563EVCP02;LFR3563EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40496900000, + 43.29111800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "17c7d4f7-6ef5-5872-8e31-69d125be3b6b", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Bayonne | Place Albret", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46620600000, + 43.49406800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENTRECHAUX - Avenue des Princes d'Orange", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "3a42ed95-3b26-5209-8c41-882dd5120dc7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14090900000, + 44.21862600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "RAMBOUILLET - Gare", + "ref:EU:EVSE": "FRA05E78517001", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83075750000, + 48.64464220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "ST BARTHELEMY Beaurepaire", + "ref": "LFR3542EVCP01;LFR3542EVCP02;LFR3542EVCP03", + "ref:EU:EVSE": "LFR3542EVCP01;LFR3542EVCP02;LFR3542EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06624400000, + 45.34238300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Jardiland - Evreux", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PJAREVR", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19319700000, + 49.01500300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLIEIZRQF8F", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref": "LIEIZRQF8F", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "description": "Nyons, Coopérative du Nyonsais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13266647000, + 44.36218458000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "ref": "680732", + "owner:ref:FR:SIREN": "917546251", + "capacity": "22;8", + "network": "e-Vadea;E-VADEA", + "amenity": "charging_station", + "description": "e-Vadea - Réau - A5a Plessis Picard;E-VADEA/FR*EVA*P77384*A", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVAP77384A", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA", + "start_date": "2023-03-17;2023-01-09;2022-12-23", + "charging_station:output": "43 kW;22 kW;50 kW;150 kW;300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60141100000, + 48.60185700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-08-20", + "ref:EU:EVSE": "FRPD1PCRISPM", + "opening_hours": "24/7", + "description": "Jardiland - Saint-Pierre-du-Mont", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49161413691, + 43.87315222064 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-09-23", + "amenity": "charging_station", + "description": "Carrefour Market - Le Nouvion-En-Thiérache", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT021701", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78080200000, + 50.01286700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRESEPS42218AY", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-09-02", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Ambroise Paré", + "ref:EU:EVSE": "FRESEPS42218AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38990300000, + 45.41142100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "description": "CNPE CATTENOM - FARADAY 1 - SALARIES;CNPE CATTENOM - FARADAY 1 BIS - SALARIES", + "start_date": "2022-10-18;2022-09-30", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref": "FR*SOD*S*IZIG*586*8*_*_;FR*SOD*S*IZIG*586*3*_*_;FR*SOD*S*IZIG*586*24*_*_;FR*SOD*S*IZIG*586*23*_*_;FR*SOD*S*IZIG*586*22*_*_;FR*SOD*S*IZIG*586*19*_*_;FR*SOD*S*IZIG*586*18*_*_;FR*SOD*S*IZIG*586*17*_*_;FR*SOD*S*IZIG*586*16*_*_;FR*SOD*S*IZIG*586*15*_*_;FR*SOD*S*IZIG*586*14*_*_;FR*SOD*S*IZIG*586*13*_*_;FR*SOD*S*IZIG*586*12*_*_;FR*SOD*S*IZIG*586*11*_*_;FR*SOD*S*IZIG*586*1*_*_;FR*SOD*S*IZIG*586*10*_*_;FR*SOD*S*IZIG*585*8*_*_;FR*SOD*S*IZIG*585*6*_*_;FR*SOD*S*IZIG*585*5*_*_;FR*SOD*S*IZIG*585*23*_*_;FR*SOD*S*IZIG*585*22*_*_;FR*SOD*S*IZIG*585*21*_*_;FR*SOD*S*IZIG*585*17*_*_;FR*SOD*S*IZIG*585*15*_*_;FR*SOD*S*IZIG*585*14*_*_;FR*SOD*S*IZIG*585*10*_*_;FR*SOD*S*IZIG*585*1*_*_;FR*SOD*S*IZIG*585*11*_*_;FR*SOD*S*IZIG*585*12*_*_;FR*SOD*S*IZIG*585*13*_*_;FR*SOD*S*IZIG*585*16*_*_;FR*SOD*S*IZIG*585*18*_*_;FR*SOD*S*IZIG*585*19*_*_;FR*SOD*S*IZIG*585*20*_*_;FR*SOD*S*IZIG*585*2*_*_;FR*SOD*S*IZIG*585*24*_*_;FR*SOD*S*IZIG*585*3*_*_;FR*SOD*S*IZIG*585*4*_*_;FR*SOD*S*IZIG*585*7*_*_;FR*SOD*S*IZIG*585*9*_*_;FR*SOD*S*IZIG*586*20*_*_;FR*SOD*S*IZIG*586*2*_*_;FR*SOD*S*IZIG*586*21*_*_;FR*SOD*S*IZIG*586*4*_*_;FR*SOD*S*IZIG*586*5*_*_;FR*SOD*S*IZIG*586*6*_*_;FR*SOD*S*IZIG*586*7*_*_;FR*SOD*S*IZIG*586*9*_*_", + "ref:EU:EVSE": "FROTHPIZIG58661;FROTHPIZIG58641;FROTHPIZIG58621;FROTHPIZIG586201;FROTHPIZIG586191;FROTHPIZIG586181;FROTHPIZIG586151;FROTHPIZIG586111;FROTHPIZIG58611;FROTHPIZIG58531;FROTHPIZIG585241;FROTHPIZIG585231;FROTHPIZIG585221;FROTHPIZIG58521;FROTHPIZIG585201;FROTHPIZIG585191;FROTHPIZIG585181;FROTHPIZIG585161;FROTHPIZIG585151;FROTHPIZIG585131;FROTHPIZIG585121;FROTHPIZIG585111;FROTHPIZIG58511;FROTHPIZIG585101;FROTHPIZIG585141;FROTHPIZIG585171;FROTHPIZIG585211;FROTHPIZIG58541;FROTHPIZIG58551;FROTHPIZIG58561;FROTHPIZIG58571;FROTHPIZIG58581;FROTHPIZIG58591;FROTHPIZIG586101;FROTHPIZIG586121;FROTHPIZIG586131;FROTHPIZIG586141;FROTHPIZIG586161;FROTHPIZIG586171;FROTHPIZIG586211;FROTHPIZIG586221;FROTHPIZIG586231;FROTHPIZIG586241;FROTHPIZIG58631;FROTHPIZIG58651;FROTHPIZIG58671;FROTHPIZIG58681;FROTHPIZIG58691", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22335000000, + 49.41422000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "FRCPIE6887485;FRCPIE6887515", + "ref:EU:EVSE": "FRCPIE6887485;FRCPIE6887515", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "3 BRASSEURS ENGLOS 1", + "description": "3 BRASSEURS ENGLOS 1", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96785700000, + 50.62907200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PHXH8KMZAIL", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "294449", + "description": "Freshmile France/HXH8KMZAIL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08275000000, + 49.11810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-05-30", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP122055", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL STRASBOURG NORD ARTISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72152000000, + 48.66226400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LL76TVKIP4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "479205", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3391776217175131301", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07243400000, + 49.44792100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDMD448002", + "start_date": "2023-01-13", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Ford - Saint-Herblain", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62145500000, + 47.25062400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3869135527941335151", + "charging_station:output": "22 kW", + "ref": "1026711", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLSWYVBWWJGUWE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51309100000, + -20.89194100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E104686", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "network": "MODULO - BOURGES - Pl. du 14 juillet( Asnieres)", + "opening_hours": "24/7", + "ref": "FRS18E104686", + "operator": "Modulo", + "description": "MODULO - BOURGES - Pl. du 14 juillet( Asnieres)", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40283817000, + 47.12422876000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/MSSZCNYGB6", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8277700003849747575", + "ref": "461841", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07989700000, + 49.20488400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5L4URUYWHM", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P6114329105503397375", + "ref": "1127898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58211300000, + 45.13772400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "COUTANCES - Place de la Croute", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "start_date": "2017-05-31", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50200002", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44129210000, + 49.04867430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTANS - Place de la Bouygue", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8117100222;FRS81E8117100221;FRS81E8117100211;FRS81E8117100212", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88433910266, + 43.86494621878 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref": "FRHPCPNF059775", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-02-28;2023-01-13;2023-01-02;2022-12-30;2023-02-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF059775", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681130;531681127;531681129;531681128;531681126;531681125;531681116;531681117;531681118;531681119;531681120;531681121;531681123;531681124;531681122;531681131", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "REL.BUSSY ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74580700000, + 48.83055300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48148001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "SAINT ETIENNE VALLEE FRANCAISE - Parking De La Salle Des Fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84146700000, + 44.16481900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/SGQGARWR3K", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "541931", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56P5749686781442270093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38490000000, + 47.92690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62894001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "WIMILLE - Rue de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61424500000, + 50.76469800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "CHATEAUNEUF DU FAOU - Piscine", + "start_date": "2023-06-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS29E29520001", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.81240290000, + 48.18346700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-07", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PGBVXDN", + "operator:email": "support@freshmile.com", + "description": "Roudouallec - Rue Nicolas Le Grand", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.71709300000, + 48.12664800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "THOLLET-1-1;THOLLET-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346052502;FRLMSE12346052491;FRLMSE12346052492;FRLMSE12346052501", + "ref": "B100", + "start_date": "2017-11-24", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12241100000, + 46.42200900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - Express - Montreuil - République", + "start_date": "2022-12-29", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93048H", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41590762000, + 48.85222209000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-16", + "description": "Réseau AlterBase - Niort - Près Faucher", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB79191P0185A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47115700000, + 46.31557800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRATLP7216328984141377319", + "operator:email": "operations.france@atlante.energy", + "ref": "1054224", + "description": "Atlante/FRATLFR00351", + "opening_hours": "24/7", + "network": "Atlante", + "socket:type2_combo:output": "300 kW", + "charging_station:output": "15 kW;300 kW", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86291300000, + 50.93714900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Thaon Les Vosges - Parking Piscine", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89397428", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42941200000, + 48.25306100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ECOPARK 5", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo-Fr 08:00-12:00", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-07-07", + "network": "ECOPARK 5", + "operator": "ELECTROMAPS;ECOPARK 5", + "ref:EU:EVSE": "FRMAPP000000007808", + "operator:email": "ismael@electromaps.com", + "charging_station:output": "7 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "909891012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44000000000, + 44.87000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS88E144228;FRS88E144226", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E144228;FRS88E144226", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - EPINAL - Pl. Jeanne d'Arc", + "network": "MODULO - EPINAL - Pl. Jeanne d'Arc", + "start_date": "2022-08-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44739400000, + 48.17723300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Tourville-la-Rivière", + "ref:EU:EVSE": "FRALLEGO9990422;FRALLEGO9990421;FRALLEGO9990412;FRALLEGO9990411;FRALLEGO9002892;FRALLEGO9000621;FRALLEGO9000622;FRALLEGO9002891;FRALLEGO9002893;FRALLEGO9004511;FRALLEGO9004512", + "network": "Allego Carrefour Tourville-la-Rivière", + "start_date": "2023-03-25", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9990422;FRALLEGO9990421;FRALLEGO9990412;FRALLEGO9990411;FRALLEGO9002892;FRALLEGO9000621;FRALLEGO9000622;FRALLEGO9002891;FRALLEGO9002893;FRALLEGO9004511;FRALLEGO9004512", + "operator:email": "info@allego.eu", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09770000000, + 49.32902000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "PAS DITINERANCE", + "amenity": "charging_station", + "capacity": "1", + "description": "LA RESERVE DE RILHAT", + "ref": "249d8e6d-f737-4dd8-b92f-1c26a2fd251b", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "PAS DITINERANCE", + "operator:email": "PASDITINENERANCE@gmail.com", + "owner:ref:FR:SIREN": "909790511", + "ref:EU:EVSE": "FRLARESERVEDERILHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33728000000, + 46.11000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMBCHPN", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "description": "Gamm Vert & Mr. Bricolage - Hasparren", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31548052761, + 43.38200715179 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/FRY0Q66XR9;Saint-Just-Malmont, Parking des APG 39-45", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP1372812542239844704;FREBNPFRY0Q66XR9", + "opening_hours": "24/7", + "ref": "346715;FRY0Q66XR9", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31360000000, + 45.34064000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RZMUAPWE9V", + "ref": "521360", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6445067594467065722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99288800000, + 48.65405500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Ibis Styles - Marcq-en-Barœul", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-01-12", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PIBSMEB", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11621632450, + 50.67575494152 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMAMVPH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/MAMVPH;Jardin, Route De Berardier", + "opening_hours": "24/7", + "ref": "80149;MAMVPH", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91129000000, + 45.50530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP34270A", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34270A", + "description": "e-Totem - HOTEL PRIME SAINT JEAN DE VEDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571600000, + 43.56665300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-30", + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "network": "COMMUNAUTE DE COMMUNES DU PAYS DE WISSEMBOURG", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR22632;FROTHPOTHR22631;FROTHPOTHR22622;FROTHPOTHR22621;FROTHPOTHR22612;FROTHPOTHR22611", + "ref": "FR*SOD*S*OTHR*226*1*_*_;FR*SOD*S*OTHR*226*2*_*_;FR*SOD*S*OTHR*226*3*_*_", + "opening_hours": "24/7", + "description": "ROUTE DE SCHOENENBOURG - PARKING TOURISTIQUE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.85751800000, + 48.98537600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-06-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS5112;FRCPSPCAPS5111", + "operator:email": "sav@izivia.com", + "description": "CHAMPLAN - MAIRIE", + "ref": "FR*SOD*S*CAPS*51*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27407700000, + 48.70830900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/XWHJ7GPLUQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5142706215763434117", + "ref": "598098", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87060400000, + 48.07284900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA1P2869862010722549256", + "ref": "789204", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLWMOLK9ZO", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70452000000, + 45.82163600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "482049", + "ref:EU:EVSE": "FRFR1P5598321704881935774", + "charging_station:output": "22 kW", + "description": "Freshmile France/T7R6DBLAOK", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89186900000, + 43.16295100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "description": "ALPITRONIC 225kW VW Albertville", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSWSE1000116730", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2023-06-21", + "ref": "1000116730", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40714900000, + 45.66326600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "971942", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4376613795774657729", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOEGGSZUTMS82", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61682900000, + 43.99265200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPAPEX111001", + "description": "Apex Location - Narbonne", + "network": "DRIVECO", + "start_date": "2023-07-24", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98680900000, + 43.15726600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E139436", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - SOREL-MOUSSEL - Pl. de la mairie", + "network": "MODULO - SOREL-MOUSSEL - Pl. de la mairie", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E139436" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38195400000, + 48.84080400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "charging_station:output": "7 kW", + "owner:ref:FR:SIREN": "480339068", + "network": "Réseau de charge 17 BOULEVARD CARNOT 03200 VICHY", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "operator:email": "benoit.denjean0121@orange.fr", + "description": "Parking Hotel KYRIAD Vichy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42456186427, + 46.12343640269 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/ITQ6ULMJ59", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "39662", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7312728186305656351" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64787700000, + 48.26763700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP009E75", + "ref:EU:EVSE": "FRZP1P8577665904294558559", + "ref": "874230", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71134200000, + 50.82531700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE514", + "operator": "RossiniEnergy", + "description": "Chartreuse_Voiron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59791510000, + 45.36236810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/EGDEZM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "33997", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PEGDEZM", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33743000000, + 43.96780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-29", + "ref": "FR*SOD*S*FAST*104*2*_*_;FR*SOD*S*FAST*104*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - ROUEN BARENTIN", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST10423;FRIZFPFAST10413;FRIZFPFAST10411;FRIZFPFAST10412;FRIZFPFAST10421;FRIZFPFAST10422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96310100000, + 49.53606600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49125A;FRS49E49125001", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "DOUE-LA-FONTAINE - Rue Cholet;OuestCharge - Quick Charger Evtronic - Doue-la-Fontaine - Cholet", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-04-26;2022-07-12", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30193100000, + 47.18997800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "346613", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60P1629306610901935339", + "description": "Mouv'Oise/YW2K1MRFKG", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68402000000, + 49.17220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-16", + "ref": "FR*SOD*S*LYON*26*2*_*_;FR*SOD*S*LYON*26*1*_*_", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "SGE01 - AVENUE MARCEL MERIEUX", + "ref:EU:EVSE": "FRGLYPLYON2621;FRGLYPLYON2612;FRGLYPLYON2611;FRGLYPLYON2622", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72261500000, + 45.75842600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189026", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "NIMES - Avenue du Général Leclerc", + "start_date": "2024-08-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37072916811, + 43.82988184833 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PXBEWHF", + "operator": "Morbihan énergies | FR*S56", + "ref": "25063", + "description": "Mobilité électrique 56/XBEWHF", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52643000000, + 47.86200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346449901;FRLMSE12346449911", + "start_date": "2016-04-13", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "SAVIGNE-1-1;SAVIGNE-1-2", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B095", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31100000000, + 46.15850100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "contact@mobilygreen.fr", + "ref": "754170", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/b9aa8491-1304-45c6-a600-612f473d5255", + "ref:EU:EVSE": "FRMW1P8298376263570180016", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34523400000, + 43.81428100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-29", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - PARKING RUE LUCIEN SAMPAIX - SAINT-CYR-LECOLE", + "ref:EU:EVSE": "FRSIGPSIGE15812;FRSIGPSIGE15811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*158*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05922200000, + 48.80311400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT GILLES CROIX DE VIE - Complexe Sportif", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E85222001", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-11-24", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90972300000, + 46.68643900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Tunési", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "713620011", + "opening_hours": "Mo-Sa 8:00-18:00", + "network": "ZEENCO", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-05-31", + "ref:EU:EVSE": "FRLMSE10001412472;FRLMSE10001412471;FRLMSE10001412473", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25799000000, + 45.58689700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOUSTONS - PARKING LABOUYRIE;MOBIVE | Soustons | Parking labouyrie", + "ref": "27b3c0ba-abe5-5a96-b75a-780ff5ec608a;FR*SOD*S*MB40*88*1*_*_", + "ref:EU:EVSE": "FRS40PMB408814;FRS40PMB408813;Non concerné;FRS40PMB408811;FRS40PMB408812", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-06-11", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32883500000, + 43.75444000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MECA", + "description": "LE MEE SUR SEINE - PLEIN CIEL", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64419000000, + 48.54577900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2024-02-22", + "description": "Allego Carrefour Lorient", + "amenity": "charging_station", + "ref": "FRALLEGO9990491;FRALLEGO9990472;FRALLEGO9003342;FRALLEGO9003341;FRALLEGO9003931;FRALLEGO9003932;FRALLEGO9990471;FRALLEGO9990492", + "network": "Allego Carrefour Lorient", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9990491;FRALLEGO9990472;FRALLEGO9003342;FRALLEGO9003341;FRALLEGO9003931;FRALLEGO9003932;FRALLEGO9990471;FRALLEGO9990492" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39532167000, + 47.76568944000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BACCARAT Catherine", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3671EVCP01", + "ref": "LFR3671EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74080900000, + 48.45808000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34022002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BAILLARGUES - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00781600000, + 43.65434200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "description": "Réseau eborn/NQTNQA;Annecy-le-Vieux, Albigny", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNQTNQA;FREBNPPVHEQY", + "ref": "32938;NQTNQA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14695000000, + 45.90500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5765464349296492149", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "ref": "370193", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "30 kW;3 kW", + "socket:type2_combo:output": "30 kW", + "description": "Freshmile France/YKTKBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70929000000, + 49.10650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-12-13", + "ref:EU:EVSE": "FRP07E77122001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "COMBS LA VILLE - 9 Rue des Bergeries" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54799130000, + 48.66645310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "OJBNYNLLXC;529925", + "capacity": "2", + "description": "Réseau eborn/OJBNYNLLXC;Les Deux Alpes, Office de Tourisme de Venosc", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPOJBNYNLLXC;FREBNP4144605950932374972", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-06-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11627000000, + 44.98706000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Évry-Courcouronnes - CC Le Spot Evry", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPEVRCC", + "amenity": "charging_station", + "start_date": "2023-10-27", + "capacity": "12", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42596200000, + 48.63026700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Paris gare de l'Est P1 - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E75110003", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35786800000, + 48.87633400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6623475", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR AVRANCHES", + "charging_station:output": "22 kW", + "description": "SONEPAR AVRANCHES", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6623475", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33752500000, + 48.67731300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref": "FQD6TNYY1N;OTVB8WALIY", + "ref:EU:EVSE": "FRECHPFQD6TNYY1N;FRECHPOTVB8WALIY", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "capacity": "3;4", + "description": "GAP , Parking relais du Sénateur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05445737000, + 44.55803133000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1612", + "ref": "FR*V75*PPX16*12", + "amenity": "charging_station", + "description": "Paris | Avenue Mozart 68", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26850000000, + 48.85340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P5946925149207514313", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/KN5TJGPS90", + "ref": "446543", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22025800000, + 43.37385100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IBIS MONT DE MARSAN", + "description": "IBIS Mont de Marsan", + "ref": "FRTCBP00935", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "start_date": "2022-06-28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTCBP00935", + "owner:ref:FR:SIREN": "853114767", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47085167513, + 43.90811255513 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PBUGQMG", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BUGQMG", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "94214", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31463000000, + 48.63470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-04-21", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPPANELBMW772401", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "10", + "operator:email": "support@driveco.com", + "description": "BMW Mini - Melun", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62786900000, + 48.56803100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LANDELEAU - Place De L'Église", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E29102001", + "charging_station:output": "22 kW", + "start_date": "2023-12-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.72895300000, + 48.22706100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARCASSONNE - Place Du General De Gaulle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11069005", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35221147537, + 43.21016106842 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC65935", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "Hôtel La Peyrade - 7,4 kW AC", + "ref": "691f3237-3bce-4c0d-9b0e-b2c282decfc2", + "owner:ref:FR:SIREN": "910957406", + "network": "Logis Hotel La Peyrade", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83827590000, + 44.48649700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - SIGNY LE PETIT - Pl. de l'église", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS08E57628;FRS08E57627", + "network": "MODULO - SIGNY LE PETIT - Pl. de l'église", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57628;FRS08E57627", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27918600000, + 49.90318500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PTCYXHU", + "ref": "86666", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/TCYXHU", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29080700000, + 49.88984000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*245*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MC DONALDS - VITROLLES", + "capacity": "3", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST24511;FRIZFPFAST24512;FRIZFPFAST24513", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26402932355, + 43.43090178090 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2024-04-19", + "description": "CARQUEFOU - Rue De La Marquise De Sévigné", + "ref:EU:EVSE": "FRS44E44026001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48938441277, + 47.29850006104 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Chapelle-Rablais;LA CHAPELLE-RABLAIS - Rue Des Clos", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77089A;FRS77E77089001", + "start_date": "2023-06-01;2015-05-29", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH615TX3C9VPZF2KXTVA", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97172600000, + 48.51190600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "HOTEL SAINT NICOLAS", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000054877", + "description": "HOTEL SAINT NICOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14879620267, + 46.15827234679 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LIGRE - Rue St Martin", + "ref": "FRS37E219895;FRS37E219896", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - LIGRE - Rue St Martin", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E219895;FRS37E219896", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27542000000, + 47.11200300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Veney", + "ref": "8b7da4af-b734-545d-9d50-d00683a9b5f5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81304300000, + 48.46694200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P69382FB", + "network": "SPLM Marché Gare zone 2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P69382FB", + "start_date": "2024-08-02", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "7.4 kW", + "description": "SPLM Marché Gare zone 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82313240000, + 45.74209692000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | MIMIZAN | PARKING CASINO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0dde76a0-b7d0-50d6-afad-7d3ed41fbddb", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28030600000, + 44.20907600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*276*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 42 RUE PIERRE BROSSOLETTE - COLOMBES", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-05-25", + "ref:EU:EVSE": "FRSIGPSIGE27611;FRSIGPSIGE27612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23868100000, + 48.90954000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "ref:EU:EVSE": "FRCPIE6495655", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "description": "GVA CAVAILLON AC", + "charging_station:output": "22 kW", + "network": "GVA CAVAILLON AC", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6495655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02786900000, + 43.85280400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P8979458905809274254", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "charging_station:output": "50 kW", + "description": "Leclerc/GU3XHH5FGE", + "opening_hours": "24/7", + "ref": "471234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923000000, + 46.33755400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "ab954c5b-3f13-5595-990f-8ff9624a1667", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Malemort | Rue Jean Jaures", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56367100000, + 45.16993200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - Val en Vignes / Cersay - Place de la Mairie ", + "start_date": "2015-07-20", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB17024A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35347800000, + 46.04559700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Pays de Gex - ePremium - Lelex - Chapelle", + "ref:EU:EVSE": "FRAGXP01210A", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2020-03-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94043600000, + 46.30279700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARTILLAC Grange", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR2860EVCP02;LFR2860EVCP01", + "amenity": "charging_station", + "ref": "LFR2860EVCP02;LFR2860EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53116800000, + 44.72270500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38524001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VARCES-ALLIERES-ET-RISSET - Parking-relais du Grand Rochefort" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68645900000, + 45.10283500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-19;2021-10-29", + "description": "MOUANS SARTOUX - PARKING P+R", + "owner:ref:FR:SIREN": "240600585", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*WIIZ*130*8*_*_;FR*SOD*S*WIIZ*130*7*_*_;FR*SOD*S*WIIZ*130*6*_*_;FR*SOD*S*WIIZ*130*5*_*_;FR*SOD*S*WIIZ*130*9*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ13091;FRA16PWIIZ13081;FRA16PWIIZ13061;FRA16PWIIZ13051;FRA16PWIIZ13071", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96960900000, + 43.62130400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P5592384262134316934", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/PSHJETZDTQ", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "741036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77367200000, + 50.41933300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PACTVDD", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-24", + "charging_station:output": "50 kW;100 kW;22 kW;187.5 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Action - Verneuil d'Avre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93711800000, + 48.73715070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "230917;SMNREJQJRD", + "ref:EU:EVSE": "FREBNPSMNREJQJRD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Marignier, Parking De la passerelle;Réseau eborn/SMNREJQJRD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50392000000, + 46.09152000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Calais - Burger King", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPCALBK", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89818300000, + 50.94552300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E060880021;FRP07E06088002", + "description": "NICE - Barla", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-06-01;2024-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28488000000, + 43.70236000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DAHERTLS CORLOG 6", + "amenity": "charging_station", + "description": "DAHERTLS CORLOG 6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08", + "ref": "FRCPIE6684585;FRCPIE6684575;FRCPIE6684545", + "ref:EU:EVSE": "FRCPIE6684585;FRCPIE6684575;FRCPIE6684545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34691500000, + 43.65826800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "charging_station:output": "120 kW;22 kW", + "description": "Vagney , Place de Libération", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHPQ3W5HM1IYW", + "ref": "Q3W5HM1IYW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71562500000, + 48.00855580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Epinal - ZA de Reffye 1", + "operator": "Greenflux", + "start_date": "2023-02-01;2023-01-17", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143019;FRVIAP143014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43286500000, + 48.18106200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P871059666092450161", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "801675", + "description": "Freshmile France/SEZGPILMYB", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51309700000, + 44.85647000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "ref": "FR*V75*PPX06*09", + "network": "Belib'", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0609", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue de Rennes 105", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32873510000, + 48.84896130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477624", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5287323731682726655", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/EGRXO7GJVB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14611500000, + 48.08615100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Pétavit - Rillieux-la-Pape", + "start_date": "2021-04-27", + "ref:EU:EVSE": "FRSSDPPETAVITRILLIEUX691401", + "capacity": "8", + "network": "DRIVECO", + "opening_hours": "Mo 07:00-12:00, Mo 13:00-19:00, Tu 07:00-12:00, Tu 13:00-19:00, We 07:00-12:00, We 13:00-19:00, Th 07:00-12:00, Th 13:00-19:00, Fr 07:00-12:00, Fr 13:00-19:00, Sa 07:00-12:00, Su 07:00-12:00", + "amenity": "charging_station", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87949800000, + 45.81438500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Treguier-Le port", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS22E22362001", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22339400000, + 48.78649900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS18E150331", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BLANCAFORT-Pl. de la mairie", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E150331", + "description": "MODULO - BLANCAFORT-Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52838500000, + 47.53226400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "ref": "FR*MAP*E000016296852", + "operator:email": "emilio@electromaps.com", + "capacity": "5", + "operator": "ELECTROMAPS", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-17:00", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "22 kW", + "description": "SAP", + "owner:ref:FR:SIREN": "823893938", + "network": "SAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96000000000, + 45.95500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P2870606558152874894", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32089", + "description": "SDEA 10/OA0RW4NYDI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05998900000, + 48.34636700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBI - Innoprod - Chemin de la Teulière", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81004011", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18180500000, + 43.92130900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*IKEA*91*9*_*_;FR*SOD*S*IKEA*91*6*_*_;FR*SOD*S*IKEA*91*5*_*_;FR*SOD*S*IKEA*91*4*_*_;FR*SOD*S*IKEA*91*3*_*_;FR*SOD*S*IKEA*91*2*_*_;FR*SOD*S*IKEA*91*17*_*_;FR*SOD*S*IKEA*91*14*_*_;FR*SOD*S*IKEA*91*13*_*_;FR*SOD*S*IKEA*91*11*_*_;FR*SOD*S*IKEA*91*10*_*_;FR*SOD*S*IKEA*91*1*_*_;FR*SOD*S*IKEA*91*12*_*_;FR*SOD*S*IKEA*91*15*_*_;FR*SOD*S*IKEA*91*16*_*_;FR*SOD*S*IKEA*91*7*_*_;FR*SOD*S*IKEA*91*8*_*_", + "description": "IKEA HENIN-BEAUMONT - ZONE CLIENTS", + "opening_hours": "24/7", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIKAPIKEA9131;FRIKAPIKEA91121;FRIKAPIKEA9111;FRIKAPIKEA91101;FRIKAPIKEA91111;FRIKAPIKEA91131;FRIKAPIKEA91141;FRIKAPIKEA91151;FRIKAPIKEA91161;FRIKAPIKEA91171;FRIKAPIKEA9121;FRIKAPIKEA9141;FRIKAPIKEA9151;FRIKAPIKEA9161;FRIKAPIKEA9171;FRIKAPIKEA9181;FRIKAPIKEA9191" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97784200000, + 50.39302800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "description": "LE POULIGUEN - Boulevard De Civanam;OuestCharge - Diva Sp - Le Pouliguen - Civanam", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-18;2021-04-22", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44135002;FRS44P44135B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.43351300000, + 47.27521700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77318A;FRS77E77318001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "MORTCERF - Place De L'Eglise;Mortcerf", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2015-07-01;2023-05-18", + "ref": "01F5ZAKH61V9K8ZRSR3XPB92V5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91581600000, + 48.78922700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MARTIN-AU-LAËRT - Place du rivage", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2022-11-25", + "ref:EU:EVSE": "FRH01E62757003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24012300000, + 50.75742100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E221928;FRS37E221925", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref": "FRS37E221928;FRS37E221925", + "operator": "Modulo", + "description": "MODULO - BRASLOU - Rue Principale", + "opening_hours": "24/7", + "network": "MODULO - BRASLOU - Rue Principale", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39365700000, + 47.00000500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "network": "MODULO - BAR LE DUC - Cinéma", + "description": "MODULO - BAR LE DUC - Cinéma", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E81273;FRS55E81272;FRS55E81267;FRS55E81268", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS55E81273;FRS55E81272;FRS55E81267;FRS55E81268", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16740900000, + 48.76858800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14811;FRGLYPLYON14812", + "start_date": "2022-03-02", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "IRY01 - AVENUE JEAN GOTAIL", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*148*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82425700000, + 45.67015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ERQUINGHEM-LE-SEC - Rue de la Gare", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5932004", + "ref": "FR*MEL*P59320*04", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92845200000, + 50.61517000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "PETIT MENIN 3 RESTAURANTS - Neuville-en-Ferrain", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2019-11-08", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPCEETRUS596564" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14145000000, + 50.74212000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT BRIGNOLES", + "charging_station:output": "22 kW", + "network": "SONEPAR CONNECT BRIGNOLES", + "ref:EU:EVSE": "FRCPIE6582065", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref": "FRCPIE6582065" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04943100000, + 43.40015400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P5429892095127860793", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446852", + "description": "Leclerc/W7KDI5HCIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571100000, + 44.82527200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "9be52228-66bb-50c1-bd70-df8b8325bf8d", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Monsegur | Place du 8 Mai", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08354100000, + 44.65041700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "695fb061-a5d9-59b5-b641-19eaa4e18cb1", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "description": "Grigny - Rue du Terrier", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36852800000, + 48.64741500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "TISSEO RAMONVILLE", + "operator": "Green To Wheel", + "description": "TISSEO RAMONVILLE", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLPTIS015", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2023-08-22", + "charging_station:output": "350 kW;50 kW;43 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47721150000, + 43.55710220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3882EVCP01", + "capacity": "2", + "description": "NARBONNE Leclerc", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3882EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99403100000, + 43.17652100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Istres, Cec Stade", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PIR3488PKF3", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99296500000, + 43.50076000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E181191;FRS88E181193", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - FRESSE SUR MOSELLE - Rue du Général De Gaulle", + "network": "MODULO - FRESSE SUR MOSELLE - Rue du Général De Gaulle", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-12-22", + "ref:EU:EVSE": "FRS88E181191;FRS88E181193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78891000000, + 47.87520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ24022;FRA16PWIIZ24021", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*240*2*_*_", + "start_date": "2023-11-22", + "network": "WIIIZ", + "description": "BIOT - PARKING FONTANETTE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09939700000, + 43.62350800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2681946530902810967", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MKXKYJ22DI", + "ref": "585518", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37845500000, + 45.46581800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Mon Brico - La Châtaigneraie", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "ref:EU:EVSE": "FRPD1PMONLAC", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-02-06", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74775362335, + 46.64639388934 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2022-06-28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP3745852710698275437;FREBNPRAV5DFEAEQ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Hyères, Gare SNCF;Réseau eborn/RAV5DFEAEQ", + "ref": "RAV5DFEAEQ;529931" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12550500000, + 43.10854000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/48C73086-C942-4CEB-91B1-07D1AD4F9435", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP8342360335563957435", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1067319", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46898400000, + 43.35472800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*583*1*_*_", + "description": "NETTO - SAINT-REMY", + "start_date": "2023-02-13", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR58311;FROTHPOTHR58312", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84438500000, + 46.76317100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/EAWOEQP1NJ", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP5564212577950164919", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "598233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91745700000, + 44.99766500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref": "lurcylevis", + "start_date": "2017-04-28", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPLURCYLEVIS", + "operator:email": "contact@reseau-eborn.fr", + "description": "Lurcy-Levis, Comcom" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93770000000, + 46.72770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Hôtel Campanile Villefranche sur Saône", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2023-11-13", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73824000000, + 45.99016000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "398969", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/TWJNVSU38B", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4277572092750810973" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43860000000, + 46.76270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX13*12", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "description": "Paris | Rue Gouthière 12", + "ref:EU:EVSE": "FRV75PPX1312", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35120760000, + 48.82042230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/NVU3GGF8HX", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "479211", + "ref:EU:EVSE": "FRFR1P8469561196031052872", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12649800000, + 48.92939600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPSIBLU299301", + "network": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW;24 kW", + "opening_hours": "Mo 09:30-12:00, Mo 14:00-17:00, Tu 09:30-12:00, Tu 14:00-17:00, We 09:30-12:00, We 14:00-17:00, Th 09:30-12:00, Th 14:00-17:00, Fr 09:30-12:00, Fr 14:00-17:00, Sa 09:30-12:00, Sa 14:00-17:00, Su 09:30-12:00, Su 14:00-17:00", + "amenity": "charging_station", + "start_date": "2022-06-28;2022-05-31;2022-07-12", + "description": "Le Domaine de Kerlann (Camping Siblu) - Pont-Aven", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.78918700000, + 47.84471400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PGAILLONAQUAVAL", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900122", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34989000000, + 49.16311500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Belle Isle en Terre-Place de l'église", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22005001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39632300000, + 48.54569600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SARTROUVILLE - Jaurès", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-08-23", + "ref:EU:EVSE": "FRY03E78586003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15885000000, + 48.93943000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "18", + "ref:EU:EVSE": "FRROSE134;FRROSE136", + "amenity": "charging_station", + "start_date": "2021-10-11", + "owner:ref:FR:SIREN": "839265873", + "description": "Frial_1_RD;Frial_1_Siege", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67719400000, + 49.26798500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "944178", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLS9NUOMXH", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRWATP2538967386855981309", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08471300000, + 47.99272100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIONE440300", + "network": "IONITY GMBH", + "capacity": "16", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE440300", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2022-12-23", + "description": "IONITY Mornas Village" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73240900000, + 44.19483200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E43118;FRS51E43117", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - REIMS - Pl. Luton", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E43118;FRS51E43117", + "start_date": "2020-12-11", + "network": "MODULO - REIMS - Pl. Luton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02579200000, + 49.26998000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65138001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CAUTERET - Ateliers municipaux", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11573000000, + 42.89026000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "description": "RELAIS DES PALOMBIERES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681342", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080372", + "ref": "FRHPCPNF080372", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03660000000, + 45.00140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MONTADY - Avenue Des Platanes", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34161001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12216944444, + 43.33187220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PXAYSUU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "18167", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/XAYSUU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84266000000, + 47.75810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/R9JCWHPGKT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "454128", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6985618337155352167" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.82758600000, + 48.65758000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-09", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Métropolis/FR*MGP*P92063*E;Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref": "330290", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19501300000, + 48.87278100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Ford - CARDONA - Salon-de-Provence", + "ref:EU:EVSE": "FRSSDPCARDONAFORD133001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-10-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08067200000, + 43.63595400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-04", + "opening_hours": "24/7", + "description": "CODERC CAMPING", + "ref:EU:EVSE": "FRC2P006101", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "444393441", + "operator:email": "contact@car2plug.fr", + "network": "CODERC CAMPING", + "ref": "FRC2P006101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86323700000, + 45.21972000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "1", + "description": "Hôtel du Lac 74290 ", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "4166dccb-868f-48a1-b068-a79728964816", + "operator": "LUMI'IN", + "start_date": "2022-06-02", + "ref:EU:EVSE": "FRLUMEHOTELLAC749201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21000000000, + 45.84000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "87fce4d0-751a-59e4-bffd-5def41470fea", + "description": "MOBIVE | Guéret | Gare", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "194__SDEC23", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87892100000, + 46.17376000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "description": "Midas - L’isle Jourdain", + "amenity": "charging_station", + "capacity": "3", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE32JMDA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10001000000, + 43.60611000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/6502fa43cd2d92de81ab171f", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP6256841246780506716", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "ref": "923301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19161600000, + 44.50320600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P9035866376816244376", + "opening_hours": "24/7", + "ref": "694397", + "charging_station:output": "22 kW", + "description": "Leclerc/ROTRW5ZTBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17062300000, + 44.41122900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PUUYBW0AJRF", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Rognac, Boulevard Jean Jaurès", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22745100000, + 43.48797600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "402524", + "ref:EU:EVSE": "FRS89P507054357718072479", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "SDEY/IJ9TQ4ZQGD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35047600000, + 47.87489100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89363714", + "description": "R3 - Norauto Cambrai", + "start_date": "2023-02-24", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25505600000, + 50.18296700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "120593", + "description": "Freshmile France/XMFRVU", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53748000000, + 45.32290700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-01-25", + "capacity": "3", + "description": "Super U - Amiens", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYUAMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26945000000, + 49.89905000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPYYVBBJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/YYVBBJ;Saint-Laurent-En-Royans, Rue Du Tram", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "64010;YYVBBJ", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32729000000, + 45.02930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/11C2927D-EA6B-4253-8071-F69677FF8EEE", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP3343471896633247562", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "927759" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36320300000, + 43.27090900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - MAMERS", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-10-13", + "ref:EU:EVSE": "FROTHPOTHR78661;FROTHPOTHR78651;FROTHPOTHR78641;FROTHPOTHR78631;FROTHPOTHR78621;FROTHPOTHR78611;FROTHPOTHR78671;FROTHPOTHR78681", + "ref": "FR*SOD*S*OTHR*786*6*_*_;FR*SOD*S*OTHR*786*1*_*_;FR*SOD*S*OTHR*786*2*_*_;FR*SOD*S*OTHR*786*3*_*_;FR*SOD*S*OTHR*786*4*_*_;FR*SOD*S*OTHR*786*5*_*_;FR*SOD*S*OTHR*786*7*_*_;FR*SOD*S*OTHR*786*8*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38630740000, + 48.34869685351 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "PBVWLY88ID;306121", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-05", + "ref:EU:EVSE": "FREBNP2009879912125353671;FREBNPPBVWLY88ID", + "description": "Réseau eborn/PBVWLY88ID;Toulon, Plages Du Mourillon 4Ème Anse 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95217800000, + 43.10730300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Saint-Chaffrey, Le Coolidge", + "ref:EU:EVSE": "FREBNPW5UAOHAP6F", + "ref": "W5UAOHAP6F", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58636758500, + 44.93416732000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR39121;FROTHPOTHR39111", + "ref": "FR*SOD*S*OTHR*391*2*_*_;FR*SOD*S*OTHR*391*1*_*_", + "description": "HOTEL LES TERRASSES DEZE", + "network": "LES TERRASSES DEZE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37692700000, + 43.73292300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PWVZRTY6Z8", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4756211009026109852", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "472245" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77311400000, + 48.56601800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP30252", + "description": "Tesla Supercharger Dunkerque, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28103500000, + 51.00512100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TQ4MET9QHH", + "ref": "491976", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3400291942620459894", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23002800000, + 43.42249200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01863", + "start_date": "2024-01-10", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AMP | Place Sébastopol", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*TCB*P01863" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39727800000, + 43.29906700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/AYKGDM", + "ref": "242317", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PAYKGDM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64780000000, + 49.58880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-04", + "network": "Ouest Charge | FR*WCH", + "capacity": "5", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "180 kW;47 kW", + "description": "CHATELAUDREN-PLOUAGAT - D65", + "ref:EU:EVSE": "FRS22E22206004", + "charging_station:output": "22 kW;180 kW;47 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97431400000, + 48.53211300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC50737", + "owner:ref:FR:SIREN": "379070832", + "amenity": "charging_station", + "capacity": "1", + "ref": "50737", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-01-06", + "description": "Mazda - Verdun - 22kW AC ", + "opening_hours": "Mo-sat 09:00-19:00", + "network": "MAZDA VERDUN -JM AUTOMOBILES", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36887590000, + 49.18252570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-25", + "ref:EU:EVSE": "FRROSE35", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "VOHSarcelles", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38960850000, + 48.99536770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78362005", + "charging_station:output": "22 kW", + "description": "MANTES-LA-VILLE - Rue Paul FORT", + "start_date": "2024-04-03", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71585800000, + 48.96809000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hastingues Nord", + "capacity": "16", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2023-07-19", + "network": "Hastingues Nord", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE451956;FRIOYE451954;FRIOYE451951;FRIOYE451915;FRIOYE451914;FRIOYE451913;FRIOYE451912;FRIOYE451901;FRIOYE451902;FRIOYE451909;FRIOYE451910;FRIOYE451911;FRIOYE451916;FRIOYE451952;FRIOYE451953;FRIOYE451955", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE451956;FRIOYE451954;FRIOYE451951;FRIOYE451915;FRIOYE451914;FRIOYE451913;FRIOYE451912;FRIOYE451901;FRIOYE451902;FRIOYE451909;FRIOYE451910;FRIOYE451911;FRIOYE451916;FRIOYE451952;FRIOYE451953;FRIOYE451955" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15004400000, + 43.52930900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53E53130009;FRS53P53130C", + "capacity": "1", + "description": "LAVAL - Avenue Des Francais Libres - Parking De La Jaunaie;OuestCharge - Quick Charger Evtronic - Laval - Jaunaie", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-05-17;2021-05-31", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "charging_station:output": "3.7 kW;50 kW;43 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79031700000, + 48.05511000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CORNEILLA DEL VERCOL - Rue Saint Christophe", + "ref:EU:EVSE": "FRS66E66059001", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95111300000, + 42.62621700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Pleumartin", + "ref": "FRIENE011102;FRIENE011101", + "amenity": "charging_station", + "start_date": "2023-09-27", + "description": "Pleumartin", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE011102;FRIENE011101", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78004640000, + 46.74827510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35095001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "DOL DE BRETAGNE - 6 place jean hamelin ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75446600000, + 48.54739000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61407A", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "ST FRAIMBAULT", + "ref": "SE61-SAIN-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69857300000, + 48.48684900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/UBCPEBFYNE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2893661296311785537", + "charging_station:output": "22 kW", + "ref": "578984", + "opening_hours": "Sa,Su,Mo,Th,Tu,We,Fr 07:00-19:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63376300000, + 44.77463200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/EFRPWM;Montréjeau, Cinéma", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "ref:EU:EVSE": "FRS31PEFRPWM", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "EFRPWM;64859", + "start_date": "2017-12-15", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57109000000, + 43.08490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92050003", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NANTERRE - Rue Rigault", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-12-22;2021-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19788190000, + 48.89345870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "FRCG0E000441;FRCG0E000440;FRCG0E000437;FRCG0E000438;FRCG0E000439", + "start_date": "2022-10-17", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "WATTEAU ET DIDIER - 69700 - 2", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "description": "WATTEAU ET DIDIER - 69700 - 2", + "ref:EU:EVSE": "FRCG0E000441;FRCG0E000440;FRCG0E000437;FRCG0E000438;FRCG0E000439" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69164800000, + 45.58380200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-03", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE17811;FRM06PNICE17812", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "SAINT-ETIENNE-DE-TINEE - PARKING DE GAULLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*178*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92674099104, + 44.25494136503 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "371e3d00-1ce4-5f5a-9f71-c6f17eb93164", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Sainte Colombe En Bruilhois | Pole Sportif Bécade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51694400000, + 44.17889000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-12-08", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 91 RUE JULES GUESDE - BONDY", + "ref": "FR*SOD*S*SIGE*316*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE31612;FRSIGPSIGE31611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48241500000, + 48.90237600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Super U - FRANQUEVILLE ST PIERRE", + "ref:EU:EVSE": "FRBMPS242108;FRBMPS242106", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "242106;242108", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17812670000, + 49.39645350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3304EVCP01", + "description": "CAUDRY", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3304EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41258300000, + 50.13296500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "ref": "00cc2dd4-36fd-5846-b3c6-f44017b0aad9", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bidart – Plage Erretegia", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58652700000, + 43.44420200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "d3d0c53b-0db8-5b3e-8a82-03aeb15894e5", + "operator": "2_AM0001_SMOYS", + "description": "Corbeil-Essonnes - Place Galignani", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48149700000, + 48.61340500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING DE SCEAUX - VERSAILLES", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-12-05", + "ref:EU:EVSE": "FR55CP78000VERSCEAUX", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P78000*VER*SCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13043000000, + 48.79782500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "Marseille Vivaux", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3648EVCP02;LFR3648EVCP01;LFR3648EVCP03;LFR3648EVCP04", + "charging_station:output": "22 kW", + "ref": "LFR3648EVCP04;LFR3648EVCP02;LFR3648EVCP01;LFR3648EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42328500000, + 43.28158400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMANN", + "start_date": "2022-12-21", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "description": "Intermarché - Anneyron", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89700508948, + 45.27432063783 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Alissas, Place de la Mairie;Réseau eborn/YMML6GJU6C", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30278;YMML6GJU6C", + "ref:EU:EVSE": "FREBNPYMML6GJU6C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63269400000, + 44.71450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRETIP57672F", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - Thionville Rue Berthe au Grand Pied", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-10-10", + "ref:EU:EVSE": "FRETIP57672F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17239990000, + 49.36514710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E35288009", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking Saint-Malo gare maritime 2 P3 - EFFIA", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02256000000, + 48.64406000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Fleury sous Andelle", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT273801", + "operator:email": "support@driveco.com", + "start_date": "2023-08-11", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35068700000, + 49.36567900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25275;GFZEQP", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPGFZEQP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Sainte-Eulalie, Place du Marché;Réseau eborn/GFZEQP", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18949000000, + 44.80920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR50921;FROTHPOTHR50911;FROTHPOTHR50931", + "ref": "FR*SOD*S*OTHR*509*3*_*_;FR*SOD*S*OTHR*509*2*_*_;FR*SOD*S*OTHR*509*1*_*_", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - CAPDENAC GARE", + "opening_hours": "24/7", + "start_date": "2022-10-10", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07376200000, + 44.57159200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRCPIE6715695;FRCPIE6715685;FRCPIE6715745;FRCPIE6715765;FRCPIE6715775;FRCPIE6715785;FRCPIE6715855;FRCPIE6715865", + "amenity": "charging_station", + "start_date": "2023-04-25", + "description": "WAAT 4 CHENES 30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WAAT 4 CHENES 30", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6715695;FRCPIE6715685;FRCPIE6715745;FRCPIE6715765;FRCPIE6715775;FRCPIE6715785;FRCPIE6715855;FRCPIE6715865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58690800000, + 48.77765000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LM0M63D152CV71", + "ref:EU:EVSE": "FRFR1P1465593873091679463", + "charging_station:output": "11 kW;7.4 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1195303", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95290600000, + 43.29378000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2023-04-11", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "description": "Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher ", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10069696;FRUBIE10068896;FRUBIE10068375;FRUBIE10066063;FRUBIE10064245;FRUBIE10072145", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22980600000, + 49.51138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1153941", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLMHID2ZRIJSS0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P716130199170497120" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65868300000, + 48.16520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Place Jeanne Emilie de villeneuve", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTLSE31555048", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45004700000, + 43.62912329000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8803255186337050352", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/UZR77QZIYM", + "ref": "705998", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46746800000, + 48.10300800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P4056661618735167748", + "network": "MobiSDEC", + "description": "MobiSDEC/L7FSMQ3K4U", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36994500000, + 49.32537800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRANSAC - Rue Du Général Louis Artous", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12083001", + "charging_station:output": "22 kW", + "start_date": "2023-02-09", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28162900000, + 44.52520200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWA3LVVBXXA2A", + "capacity": "4", + "charging_station:output": "6.9 kW", + "ref:EU:EVSE": "FRWA3P8310455386751655702", + "opening_hours": "24/7", + "ref": "781569", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26900400000, + 43.23542200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-03", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "25 kW", + "description": "OuestCharge - ePremium - Morannes - Beaumont", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS49P49220B", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36419400000, + 47.69991700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "706061", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "description": "SIED70/CMIXYEGR9U", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70P1300540988066411735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36560100000, + 47.77463100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20707120000, + 49.97145220000 + ], + [ + 1.20684860000, + 49.97140520000 + ], + [ + 1.20663200000, + 49.97136340000 + ], + [ + 1.20642630000, + 49.97132250000 + ], + [ + 1.20623680000, + 49.97127200000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "STAPLE - Rue de la Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E59577001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45560088511, + 50.74943689173 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-27", + "ref:EU:EVSE": "FRS37E214052;FRS37E214051", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - METTRAY - Les Gaudières", + "charging_station:output": "0 kW", + "ref": "FRS37E214052;FRS37E214051", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - METTRAY - Les Gaudières" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67407399000, + 47.45647829000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref": "518378", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63269B", + "description": "SIEG 63/FR*S63*P63269*B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21635000000, + 45.61447800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GOGNIES-CHAUSSÉE - Place de la République", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59264001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94302500000, + 50.34072900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AGDE - Rue du commandant Vilarem", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34003003", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47854890000, + 43.31366300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CRETEIL - Rue Claude-Nicolas Ledoux", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47095387728, + 48.76613225198 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE29412;FRM06PNICE29411", + "ref": "FR*SOD*S*NICE*294*1*_*_", + "description": "NICE - VERNIER", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25664067001, + 43.70685274137 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Beaumont du Perigord | Place de la Halle", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9afc245e-e1c1-5855-bd9a-9697795e1ed9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76869200000, + 44.76787900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 45 RUE DU GENERAL LECLERC - BOIS-COLOMBES", + "ref": "FR*SOD*S*SIGE*42*4*_*_;FR*SOD*S*SIGE*42*2*_*_;FR*SOD*S*SIGE*42*1*_*_;FR*SOD*S*SIGE*42*3*_*_;FR*SOD*S*SIGE*42*5*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE4241;FRSIGPSIGE4211;FRSIGPSIGE4221;FRSIGPSIGE4231;FRSIGPSIGE4251", + "start_date": "2020-10-14", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26938700000, + 48.91540700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2024-02-22", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9005641;FRALLEGO9005531;FRALLEGO9004242;FRALLEGO9004241;FRALLEGO9004081;FRALLEGO9004082;FRALLEGO9005532;FRALLEGO9005642", + "ref": "FRALLEGO9005641;FRALLEGO9005531;FRALLEGO9004242;FRALLEGO9004241;FRALLEGO9004081;FRALLEGO9004082;FRALLEGO9005532;FRALLEGO9005642", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Beaucaire", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Beaucaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61470100000, + 43.81703500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marseille longue", + "operator:email": "bornes@lidl.fr", + "ref": "LFR0827EVCP02;LFR0827EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR0827EVCP02;LFR0827EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42051000000, + 43.34387000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Lons | Mail de Coubertin", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "22e6eb14-4c40-54ad-aa9e-b84598c0cafd", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39201100000, + 43.32457700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "description": "BONNIEUX - Parking Tennis club", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "2f06f59a-5776-50fd-9383-e31494ea2567" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30674400000, + 43.82444400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA05E78087001", + "network": "Seymaborne", + "description": "BONNELLES - Route de la Division Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02802190000, + 48.61601470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHASSENEUIL SUR BONNIEURE", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3272EVCP01", + "ref": "LFR3272EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45152100000, + 45.82642200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-18", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "description": "Intermarché - Saint-Paul-lès-Dax", + "ref:EU:EVSE": "FRPD1PITMSPD", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07273300000, + 43.72620800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/J8S4ZSJCGS", + "ref:EU:EVSE": "FREBNP2912037872673022540", + "ref": "75251" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62805300000, + 45.94257200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRETIP91692A", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2024-06-20", + "opening_hours": "24/7", + "ref": "FRETIP91692A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - LAPEYRE Les Ulis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19844926902, + 48.67600407955 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;180 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORTOL", + "opening_hours": "24/7", + "start_date": "2023-06-13;2023-06-12", + "capacity": "11", + "description": "Cora - Toul", + "socket:type2_combo:output": "50 kW;100 kW;180 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88700680000, + 48.66361120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT021201", + "description": "Carrefour Market Guise", + "start_date": "2024-09-23", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62960900000, + 49.90109600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB Waldeck Rousseau", + "ref:EU:EVSE": "FRESEPS42207AG", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-04-20", + "owner:ref:FR:SIREN": "848778429", + "ref": "FRESEPS42207AG", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50956000000, + 45.47774600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IZIG*253*62*_*_;FR*SOD*S*IZIG*253*61*_*_;FR*SOD*S*IZIG*253*60*_*_;FR*SOD*S*IZIG*253*59*_*_;FR*SOD*S*IZIG*253*57*_*_;FR*SOD*S*IZIG*253*53*_*_;FR*SOD*S*IZIG*253*52*_*_;FR*SOD*S*IZIG*253*50*_*_;FR*SOD*S*IZIG*253*47*_*_;FR*SOD*S*IZIG*253*46*_*_;FR*SOD*S*IZIG*253*45*_*_;FR*SOD*S*IZIG*253*44*_*_;FR*SOD*S*IZIG*253*42*_*_;FR*SOD*S*IZIG*253*41*_*_;FR*SOD*S*IZIG*253*40*_*_;FR*SOD*S*IZIG*253*35*_*_;FR*SOD*S*IZIG*253*33*_*_;FR*SOD*S*IZIG*253*29*_*_;FR*SOD*S*IZIG*253*28*_*_;FR*SOD*S*IZIG*253*27*_*_;FR*SOD*S*IZIG*253*22*_*_;FR*SOD*S*IZIG*253*21*_*_;FR*SOD*S*IZIG*253*17*_*_;FR*SOD*S*IZIG*253*18*_*_;FR*SOD*S*IZIG*253*19*_*_;FR*SOD*S*IZIG*253*20*_*_;FR*SOD*S*IZIG*253*23*_*_;FR*SOD*S*IZIG*253*24*_*_;FR*SOD*S*IZIG*253*25*_*_;FR*SOD*S*IZIG*253*26*_*_;FR*SOD*S*IZIG*253*30*_*_;FR*SOD*S*IZIG*253*31*_*_;FR*SOD*S*IZIG*253*32*_*_;FR*SOD*S*IZIG*253*34*_*_;FR*SOD*S*IZIG*253*36*_*_;FR*SOD*S*IZIG*253*37*_*_;FR*SOD*S*IZIG*253*38*_*_;FR*SOD*S*IZIG*253*39*_*_;FR*SOD*S*IZIG*253*43*_*_;FR*SOD*S*IZIG*253*48*_*_;FR*SOD*S*IZIG*253*49*_*_;FR*SOD*S*IZIG*253*51*_*_;FR*SOD*S*IZIG*253*54*_*_;FR*SOD*S*IZIG*253*55*_*_;FR*SOD*S*IZIG*253*56*_*_;FR*SOD*S*IZIG*253*58*_*_;FR*SOD*S*IZIG*253*63*_*_;FR*SOD*S*IZIG*253*64*_*_", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "ref:EU:EVSE": "FROTHPIZIG253631;FROTHPIZIG253621;FROTHPIZIG253611;FROTHPIZIG253601;FROTHPIZIG253591;FROTHPIZIG253581;FROTHPIZIG253561;FROTHPIZIG253531;FROTHPIZIG253521;FROTHPIZIG253511;FROTHPIZIG253501;FROTHPIZIG253491;FROTHPIZIG253411;FROTHPIZIG253401;FROTHPIZIG253341;FROTHPIZIG253331;FROTHPIZIG253321;FROTHPIZIG253271;FROTHPIZIG253251;FROTHPIZIG253231;FROTHPIZIG253221;FROTHPIZIG253211;FROTHPIZIG253201;FROTHPIZIG253181;FROTHPIZIG253171;FROTHPIZIG253191;FROTHPIZIG253241;FROTHPIZIG253261;FROTHPIZIG253281;FROTHPIZIG253291;FROTHPIZIG253301;FROTHPIZIG253311;FROTHPIZIG253351;FROTHPIZIG253361;FROTHPIZIG253371;FROTHPIZIG253381;FROTHPIZIG253391;FROTHPIZIG253421;FROTHPIZIG253431;FROTHPIZIG253441;FROTHPIZIG253451;FROTHPIZIG253461;FROTHPIZIG253471;FROTHPIZIG253481;FROTHPIZIG253541;FROTHPIZIG253551;FROTHPIZIG253571;FROTHPIZIG253641", + "description": "CNPE CIVAUX - EVERGREEN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64855000000, + 46.46353000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6845315;FRCPIE6845325", + "start_date": "2024-01-11", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FRCPIE6845315;FRCPIE6845325", + "operator:email": "info@chargepoint.com", + "description": "GHISTELINCK BORNE 8 DC", + "opening_hours": "Mo 08:00-11:30,Mo 14:00-17:00,Tu 08:00-11:30,Tu 14:00-17:00,We 08:00-11:30,We 14:00-17:00,Th 08:00-11:30,Th 14:00-17:00,Fr 08:00-11:30,Fr 14:00-17:00", + "network": "GHISTELINCK BORNE 8 DC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35812300000, + 50.98991700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P736700063967328054", + "ref": "682145", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ETMIFQYXCA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93528100000, + 49.93011600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP595575", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL ARCACHON GUJAN MESTRAS", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09932000000, + 44.61851000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2155908818609609675", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971882", + "description": "Freshmile France/LLMULNOFJX9TNT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34590500000, + 46.38356400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Le Mans, France - Saint-Saturnin", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP17341", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16638841000, + 48.05298386000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "505680", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/T4PZWNFZBA", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4702826666243420224", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12046800000, + 45.04648000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "description": "MobiSDEC/V8ZXCF8KLK", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "ref": "541946", + "ref:EU:EVSE": "FRS14P7088663008357937976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856900000, + 49.01214500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "457491", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/K9DQ5BOGXT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P9152186744967021015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43930700000, + 49.08564000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P8261657308867253298", + "ref": "747291", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "description": "WAAT/FRWATLFM7KUKJC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84453900000, + 45.71187600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARENTAN LES MARAIS - la Gare", + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2018-07-01", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50099002", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24482010000, + 49.30280240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAVAUR - Place René Cassin", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81140004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81641600000, + 43.69693700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-17", + "ref": "FRHPCPNF059380", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF059380", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681390;531681393;531681392;531681391", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS ILE GAD", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11085400000, + 49.40414700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHAUDEYRAC - Parking N88", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "ref:EU:EVSE": "FRS48E48045001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75488700000, + 44.65978800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-14", + "description": "Caden - Rue de la Mairie", + "ref:EU:EVSE": "FRS56PXJVQBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28543100000, + 47.63079800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62160001", + "description": "BOULOGNE-SUR-MER - Place de la résistance" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61298000000, + 50.72510100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2926000", + "description": "Saint Renan-Rue Léon Cheminant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.62096300000, + 48.43374600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PEUEZBT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/EUEZBT", + "opening_hours": "24/7", + "ref": "85832", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89455000000, + 47.54210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B115", + "ref:EU:EVSE": "FRLMSE12346051982;FRLMSE12346051981;FRLMSE12346051971;FRLMSE12346051972", + "description": "MIREBEAU MAIL-1-2;MIREBEAU MAIL-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "start_date": "2017-02-20", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18378000000, + 46.79024100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93015A", + "ref": "419979", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P93015*A;Metropolis - Citadine - Coubron - Raoul Larché", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2021-08-30", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57955700000, + 48.91443000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "ref:EU:EVSE": "FRSIPE91114003", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "BRUNOY - Hameau De Lachambaudie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50695877054, + 48.69725833774 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Atlante/FRATLFR00526", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref": "1035069", + "ref:EU:EVSE": "FRATLP6546327070438486618", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77741800000, + 48.05919800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "210 kW;60 kW", + "operator": "Last Mile Solutions", + "charging_station:output": "210 kW;22 kW;60 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89291624", + "start_date": "2022-08-23;2022-08-04", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - Eurotunnel Flexiplus", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81191200000, + 50.92840500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-09-28;2020-02-19;2020-01-29", + "ref:EU:EVSE": "FRM59E59051001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA BASSÉE - Rue Jean-Baptiste Lebas", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80589300000, + 50.52864900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA ROCHE-SUR-YON - Boulevard Des États Unis", + "ref:EU:EVSE": "FRS85E85191014", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42502000000, + 46.66420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSLAROC", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "LA ROCHE SUR YON", + "start_date": "2024-05-20", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45284000000, + 46.66557000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP4011;FRIZMPMAMP4012", + "start_date": "2022-08-24", + "description": "IZIVIA | MARSEILLE 12 - RUE GUSTAVE SALICIS", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*MAMP*40*1*_*_", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41959900000, + 43.30232900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PMATJAR", + "start_date": "2024-10-07", + "description": "Match Jarny (54)", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86311342714, + 49.16600605031 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "description": "Réseau eborn/BGWGWV;Annecy, Rue Baron Pierre De Coubertin", + "ref": "BGWGWV;75176", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPBGWGWV", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12020000000, + 45.91570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "927771", + "description": "ENGIE MAMP - Bornes publiques/40BA1CC7-B9A9-44E3-9483-E1626EA19246", + "ref:EU:EVSE": "FREVZP2617527564446891373", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31756000000, + 43.35939200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;110 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Ibis Styles - Crolles", + "amenity": "charging_station", + "charging_station:output": "110 kW;22 kW;120 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBICRO", + "start_date": "2024-04-19;2024-06-03;2024-06-04", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88982245641, + 45.27194255332 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDXPLVE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "31825;DXPLVE", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "description": "Réseau eborn/DXPLVE;Etoile-Sur-Rhône, Parking des Gabions" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89067000000, + 44.84050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRETIP30189B", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - LE SHANGHAI NIMES", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP30189B", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35122000000, + 43.81418400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "start_date": "2021-06-29", + "amenity": "charging_station", + "capacity": "1", + "description": "SUPER U - ROUILLAC", + "ref:EU:EVSE": "FROTHPOTHR19961;FROTHPOTHR19951;FROTHPOTHR19941;FROTHPOTHR19931;FROTHPOTHR19921;FROTHPOTHR19911", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*199*5*_*_;FR*SOD*S*OTHR*199*4*_*_;FR*SOD*S*OTHR*199*3*_*_;FR*SOD*S*OTHR*199*1*_*_;FR*SOD*S*OTHR*199*2*_*_;FR*SOD*S*OTHR*199*6*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06054600000, + 45.77780200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VILLEBON - LA POSTE", + "owner:ref:FR:SIREN": "200056232", + "ref": "FR*SOD*S*CAPS*27*1*_*_", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-03-26", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRCPSPCAPS2711;FRCPSPCAPS2712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22693300000, + 48.69974500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7965116211921868265", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "369520", + "description": "Freshmile France/A7Y2IJACYN", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52656400000, + 44.83073800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "8", + "operator": "Mobilygreen | FR*VIS", + "description": "ENRGETICA/335dab6d-4115-4412-b982-8a1e7ec0898d", + "amenity": "charging_station", + "ref": "584912", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVISP3155028667615387453", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84631100000, + 43.92682500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "487215", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5830878479155636931", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/LVMPNLAYFU", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64649300000, + 47.35751200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1000081559", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "description": "ABB T54 Toyota Valence", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-04-18", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000081559", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93591200000, + 44.91870600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2164106076056571792", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1150086", + "network": "Freshmile France", + "description": "Freshmile France/LLTE8G31E25LVO", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.33539300000, + -20.93316100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Clinique Sainte Marie - Lille", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGHICL594001", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23956900000, + 50.16777300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E137338", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E137338", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton", + "operator": "Modulo", + "description": "MODULO - AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76242700000, + 48.50651600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-04", + "network": "Ouest Parking", + "description": "Ouest Parking", + "ref": "d45d3f19-75ee-4559-837a-1212a869e90e", + "operator": "MABORNEAUTO", + "amenity": "charging_station", + "charging_station:output": "23 kW", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "909177297", + "operator:email": "info@maborneauto.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58416720000, + 47.16722600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P2190630342099208267", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/LLJOCD6U82799D", + "ref": "892842" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05283100000, + 48.29040200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLRLHFEVEF", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "577502", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRWATP430601577398863450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38399600000, + 43.84481300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-05", + "network": "RossiniEnergy", + "description": "Sorofi_Valence", + "ref:EU:EVSE": "FRROSE432", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88068160000, + 44.89352270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VABRE - Place Du Maquis", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81305001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42494500000, + 43.69283200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "ref": "FRIPKPFRA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-08", + "ref:EU:EVSE": "FRIPKPFRA", + "description": "INTERPARKING - Paris François 1er", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588000000, + 48.86761000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49080001", + "charging_station:output": "22 kW", + "start_date": "2024-04-28;2024-04-22", + "description": "CHATEAUNEUF-SUR-SARTHE - Place Robert Lefort" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48812541950, + 47.68060816995 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/BANLYTKSYA", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "694403", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60P8992869532434790551", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04355100000, + 49.41388700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BETHUNE - Avenue Du Pont Des Dames", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62119010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62527540000, + 50.53167110526 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTFRIN - Parking - Quai Maréchal Leclerc", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS30E30179001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59011300000, + 43.87411000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56P1532037566845025238", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "ref": "25053", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/LQPFQW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20706000000, + 48.06690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346396651;FRLMSE12346396661", + "description": "BONNEUIL MATOURS-1-1;BONNEUIL MATOURS-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "start_date": "2016-01-27", + "ref": "B010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56957500000, + 46.68164100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "description": "Metropolis - ePremium - Vincennes - République", + "ref:EU:EVSE": "FRMGPP94080C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43688530000, + 48.85147980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 61 AVENUE DE LA RESISTANCE - RAINCY", + "ref:EU:EVSE": "FRSIGPSIGE12912;FRSIGPSIGE12911", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*129*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2021-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51348200000, + 48.89429600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PLAISIR - Boulevard Léon Blum", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E78490002", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96437900000, + 48.82423500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89618708", + "operator": "Last Mile Solutions", + "start_date": "2023-04-21", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Première Classe Laon", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65528400000, + 49.56841300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "89f1e940-fdc3-55aa-9b81-15632b8f75ba", + "description": "MOBIVE | Montmoreau | Parking de la Tude", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13251000000, + 45.39855200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "UTILE - ST GEORGES DU BOIS", + "start_date": "2023-12-08", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE72SACA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09345800000, + 47.96688000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9990161;FRALLEGO9990142;FRALLEGO9004652;FRALLEGO9004651;FRALLEGO9002752;FRALLEGO9001961;FRALLEGO9001962;FRALLEGO9002751;FRALLEGO9002753;FRALLEGO9990141;FRALLEGO9990162", + "start_date": "2023-06-14", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Athis-Mons", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9990161;FRALLEGO9990142;FRALLEGO9004652;FRALLEGO9004651;FRALLEGO9002752;FRALLEGO9001961;FRALLEGO9001962;FRALLEGO9002751;FRALLEGO9002753;FRALLEGO9990141;FRALLEGO9990162", + "capacity": "11", + "network": "Allego Carrefour Athis-Mons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37236450000, + 48.71166990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3751EVCP03;LFR3751EVCP02;LFR3751EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3751EVCP03;LFR3751EVCP02;LFR3751EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "ESCHAU Marins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72954300000, + 48.48188700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - François Verdier", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31555005", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45141600000, + 43.60197600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/VPTVQQ;Le Brusquet, Médiathèque", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref": "VPTVQQ;79306", + "ref:EU:EVSE": "FREBNPVPTVQQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30695000000, + 44.16070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VY4NRBJE2L", + "ref:EU:EVSE": "FRFR1P4552380100379675785", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "466254", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24186000000, + 48.71081800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "PARIS - Magenta - Niveau -2", + "start_date": "2022-09-15", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "67", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E751100021;FRP07E75110002;FRP07E751100022;FRP07E751100023;FRP07E751100024;FRP07E751100025;FRP07E751100026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35478000000, + 48.87547700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "37165;XPWLH9URLF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPXPWLH9URLF", + "description": "Réseau eborn/XPWLH9URLF;Saint-Nazaire-Le-Désert, Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27510200000, + 44.57024900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1137135", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FREFLP1371822111540391318", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "description": "Road/668cda0cf0ed4a001cbcb3d0", + "opening_hours": "Tu,Fr,Mo,Sa,Th,Su,We 08:00-18:00", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31713300000, + 46.55541300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking Lille Opéra - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E59350002", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06640000000, + 50.63932000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT MURET", + "ref:EU:EVSE": "FRCPIE6610395", + "network": "SONEPAR CONNECT MURET", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6610395", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33118300000, + 43.47701200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "541949", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/BBB8GR3JG1", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP8104149681345775678" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38137500000, + 45.29758900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P699654971565289774", + "ref": "1181772", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s570529", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16601800000, + 45.65294900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLRQE4FM02B1GA", + "ref": "1017054", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8189579472808102864" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79466400000, + 50.26807800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "socket:type2_combo:output": "50 kW", + "network": "RIESTER BUSSY", + "ref:EU:EVSE": "FRTCBP00696", + "start_date": "2022-10-17", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "RIESTER HYUNDAI - BUSSY-SAINT-GEORGES", + "owner:ref:FR:SIREN": "805089163;805089159;805089158;805089162", + "capacity": "4", + "ref": "FRTCBP00696", + "charging_station:output": "50 kW;43 kW;22 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71023935547, + 48.83051137928 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P932388042534423298", + "description": "Freshmile France/YZVL09C8UY", + "operator:email": "roaming@freshmile.com", + "ref": "435189", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21407100000, + 44.43319600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "BMW Mini - ByMyCar - Noisy le Sec", + "network": "DRIVECO", + "opening_hours": "Mo 08:30-12:00, Mo 13:30-19:00, Tu 08:30-12:00, Tu 13:30-19:00, We 08:30-12:00, We 13:30-19:00, Th 08:30-12:00, Th 13:30-19:00, Fr 08:30-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 13:30-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARBMW931301", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-04-28", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44457900000, + 48.89840100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2905600", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "La Forest Landerneau-Rue de la Croix de Mission", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31556700000, + 48.42799800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "529964", + "ref:EU:EVSE": "FRS10P1415459610859464534", + "description": "SDEA 10/RIG9LCTQGX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38516400000, + 48.50156700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "384562682", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1PEAC124791", + "network": "Hôtel Saint Joseph", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Logis Hôtel Saint-Joseph - 11 kW AC", + "ref": "fc630d7c-e3c7-49eb-8daf-0eb03d9d0e05", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92034522000, + 46.83130368000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-04-22", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS08E188242;FRS08E188243", + "charging_station:output": "0 kW", + "ref": "FRS08E188242;FRS08E188243", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - POIX TERRON - Rue de la gare", + "description": "MODULO - POIX TERRON - Rue de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63894000000, + 49.64932300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64703", + "description": "FDE 80/poixrepublique", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PPOIXREPUBLIQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98128000000, + 49.77510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST20211;FRIZFPFAST20212;FRIZFPFAST20213;FRIZFPFAST20221;FRIZFPFAST20222;FRIZFPFAST20223", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MC DONALDS - SAINT OMER", + "start_date": "2024-07-15", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*202*1*_*_;FR*SOD*S*FAST*202*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25959143684, + 50.74033908720 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44E44196001;FRS44E0440165;FRS44P44196A", + "capacity": "1;2", + "start_date": "2021-04-20;2024-04-29;2024-04-18", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Severac - Therese;SEVERAC - Rue Sainte-Thérèse", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07738000000, + 47.55007100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BEZALLES - Rue De La Légende;Bezalles", + "start_date": "2023-05-16;2015-07-01", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77033001;FRS77P77033A", + "ref": "01F5ZAKH61N9MR617QEESG9B58", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24285000000, + 48.67803600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGOBPFLEURDEPEE", + "amenity": "charging_station", + "capacity": "4", + "ref": "ef35c097-7dcd-4cbf-b391-46e19569e71b", + "network": "GMOB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hôtel Fleur d'Epée", + "start_date": "2024-01-19", + "owner:ref:FR:SIREN": "911886703", + "operator:email": "contact@gmob.fr", + "operator": "G-MOB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.52186700000, + 16.21386700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CUSSAY - Rue Jean Michaud", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - CUSSAY - Rue Jean Michaud", + "charging_station:output": "0 kW", + "ref": "FRS37E219731;FRS37E219734", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E219731;FRS37E219734", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78801400000, + 47.02456400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "21875", + "ref:EU:EVSE": "FRS56PULLLGP", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/ULLLGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21280000000, + 47.73900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRG10P45338A", + "description": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P45338A", + "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70934500000, + 47.99086500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Samazan | Parking Parcelle Eaux Pluviale", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "4a4ac897-1c50-5a85-8b37-545425efc97b", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13091800000, + 44.43521500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2022-05-05", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*245*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - 4 RUE JEAN MONNET - MONTMORENCY", + "ref:EU:EVSE": "FRSIGPSIGE24512;FRSIGPSIGE24511", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31229900000, + 48.97341500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "ref": "21804", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "description": "Move In Pure/PBFBFV", + "ref:EU:EVSE": "FRCN1PPBFBFV", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86782000000, + 45.52920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P5383581530976226059", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "description": "Leclerc/KIGSJKBXAQ", + "charging_station:output": "50 kW;43 kW;22 kW", + "ref": "446750" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134600000, + 49.03762400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Jean d'Angély | Place des Martyrs", + "operator": "191__SDEER17", + "ref": "2b419988-733a-574b-8071-9204c521cb2f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51781200000, + 45.94568000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE93EABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-26", + "owner:ref:FR:SIREN": "835124280", + "description": "Foot in Five - EPINAY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33315300000, + 48.95521200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRADPE772910041;FRADPE77291004;FRADPE772910042;FRADPE772910043;FRADPE77291005", + "network": "ADP Groupe", + "start_date": "2022-12-02", + "capacity": "6;32", + "description": "CDG - Parking PEF Premium - Niveau -1 - Allée 13/14;CDG - Parking PEF - Niveau -2 - Allée 14 & 15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57744400000, + 49.00429900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "SERRES CASTET D716", + "ref:EU:EVSE": "LFR3811EVCP03;LFR3811EVCP02;LFR3811EVCP01", + "ref": "LFR3811EVCP02;LFR3811EVCP01;LFR3811EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38575300000, + 43.35994600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "description": "MEYLAN - Avenue Du Vercors ", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM38E38229016", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77870516600, + 45.20940830592 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*100*1*_*_", + "description": "LE CANNET - PARKING ROCHEVILLE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ10012;FRA16PWIIZ10011", + "start_date": "2020-02-26", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00527600000, + 43.57009900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/AGQMYEHSNO", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3370427034201827181", + "ref": "481992" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886800000, + 43.94223900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PACCTLB", + "description": "hotelF1 - Thonon Les Bains H2447", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50892340000, + 46.38202660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-11", + "ref": "CKNLCKILQC;541955", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPCKNLCKILQC;FREBNP8803837695977916833", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/CKNLCKILQC;La Valette Du Var, Parking Ecoquartier ENTREVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00082300000, + 43.13444400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPILMHI", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Issy-les-Moulineaux - Hôtel Ibis Val de Seine", + "start_date": "2024-08-28", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25840800000, + 48.82259100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E94080001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "description": "Parking Vincennes Mowat - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44624460000, + 48.84884020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6664415", + "capacity": "2", + "amenity": "charging_station", + "network": "MAIRIE SMDL HOTEL DE VILLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MAIRIE SMDL HOTEL DE VILLE", + "ref": "FRCPIE6664415", + "start_date": "2022-12-22", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45651800000, + 42.74277600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "start_date": "2023-10-04", + "amenity": "charging_station", + "ref": "971747;LLNBRL6CWM5SME", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPLLNBRL6CWM5SME;FRECHP6690058342445344448", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge", + "description": "Beaucouzé, Parking rue des Ifs;Easy Charge/LLNBRL6CWM5SME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62542500000, + 47.46885600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue de Bagnolet 142", + "ref:EU:EVSE": "FRV75PPX2007", + "ref": "FR*V75*PPX20*07", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40564370000, + 48.86143190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VFKUJC", + "operator:email": "roaming@freshmile.com", + "ref": "160718", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PVFKUJC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05025000000, + 49.65550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "FR*V75*PPX04*05", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0405", + "description": "Paris | Quai de Béthune 36", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35645530000, + 48.85125250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P6488430346328715809", + "socket:type2_combo:output": "24 kW", + "ref": "1130433", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMT4MZUF27CY7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77358300000, + 48.56730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2021-01-22;2022-10-20", + "capacity": "8", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "description": "Volvo - ABVV Automobiles - Chantilly", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPABVVVOLVO605001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46123600000, + 49.20418700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT BRIEUC - 18 rue Courteline", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref:EU:EVSE": "FRS22E22278001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77968900000, + 48.51432400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "ref": "FRS18E112986", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - St GERMAIN-DU-PUY - Pl. de l'église", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - St GERMAIN-DU-PUY - Pl. de l'église", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E112986", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48274000000, + 47.10015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-28", + "network": "Toyota Parthenay - LES GARAGES CHAIGNEAU", + "owner:ref:FR:SIREN": "342583796", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "ref": "59965;59964", + "charging_station:output": "22 kW", + "description": "Toyota - Parthenay - 22kW AC D ;Toyota - Parthenay - 22kW AC G ", + "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", + "ref:EU:EVSE": "FRZTLE22AC59964;FRZTLE22AC59965", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23988010000, + 46.66461930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/ZRNIXYHWHA", + "ref": "1017741", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P4605379191349893643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14739600000, + 48.31024500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PFRIVILLEESCAR", + "ref": "64646", + "network": "FDE 80", + "description": "FDE 80/frivilleescar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53544000000, + 50.07470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - COURRIERES", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST7713;FRIZFPFAST7712;FRIZFPFAST7711", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-04-22", + "ref": "FR*SOD*S*FAST*77*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94479245674, + 50.44394010762 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "NOZAY - Tsn 44.2;OuestCharge - Pulse 50 - Nozay - Tsn 44 2", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44113001;FRS44P44113A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-22;2021-04-29", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62194400000, + 47.57498300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77P77284B;FRS77E77284002", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "MEAUX - Beauval;Meaux - Beauval", + "ref": "1f0daed1-ad25-4102-a41c-6cb08538d70d", + "start_date": "2023-09-13", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91257000000, + 48.95355400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH01E62040003", + "description": "ARQUES - Rue du General De Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29746900000, + 50.73371100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221328;FRS37E221327", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LE LIEGE – Rue principale", + "description": "MODULO - LE LIEGE – Rue principale", + "ref": "FRS37E221328;FRS37E221327", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10312551000, + 47.22885084000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BELLE VILLE SUR MEUSE - Av. Miribel", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BELLE VILLE SUR MEUSE - Av. Miribel", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66287;FRS55E66288", + "ref": "FRS55E66287;FRS55E66288" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38719000000, + 49.16777900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "MCY01 - LACROIX-LAVAL", + "start_date": "2021-09-17", + "ref:EU:EVSE": "FRGLYPLYON12422;FRGLYPLYON12421;FRGLYPLYON12411;FRGLYPLYON12412", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*124*2*_*_;FR*SOD*S*LYON*124*1*_*_", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71517100000, + 45.78600800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5913402", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "FOURNES-EN-WEPPES - Rue du parvis Notre Dame", + "ref": "FR*MEL*P59134*02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88774900000, + 50.58351900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-27;2024-03-26;2018-03-25", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 08:00-12:00, Sa 14:00-18:00", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPJLRGRIMMONTPELLIER340701", + "amenity": "charging_station", + "charging_station:output": "100 kW;7.36 kW;22.08 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "description": "Jaguar Land Rover - Montpellier", + "socket:type2_combo:output": "100 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86995000000, + 43.57609900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "CGED TOURCOING", + "amenity": "charging_station", + "network": "CGED TOURCOING", + "ref:EU:EVSE": "FRCPIE6567455", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6567455", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13280400000, + 50.71878600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "454317", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/PLJGCICCQV", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P6333941345832613909" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989600000, + 47.85978600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "d4ae47b4-92c8-552d-b2d1-8602d82a3fe4", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Langon | Place du Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24803700000, + 44.55532800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "d4c2385e-1e71-57cd-b0c4-5a63713d3815", + "opening_hours": "24/7", + "description": "Vigneux-sur-Seine - Avenue du Président Robert Lakota" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41474400000, + 48.70825900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO0001051", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "network": "Allego NISSAN Clermont-Ferrand", + "ref": "FRALLEGO0001051", + "operator:email": "info@allego.eu", + "start_date": "2022-02-10", + "description": "Allego NISSAN Clermont-Ferrand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13487500000, + 45.78288800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "LA CALMETTE Guillerme", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3749EVCP03;LFR3749EVCP02;LFR3749EVCP01", + "ref:EU:EVSE": "LFR3749EVCP03;LFR3749EVCP02;LFR3749EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25587200000, + 43.92407100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "NICE RP", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE8312;FRM06PNICE8311", + "description": "UTELLE - PONT DURANDY", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-06", + "ref": "FR*SOD*S*NICE*83*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19892110795, + 43.86042939010 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*215*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "SAINT-RAPHAEL - PARKING LAMARTINE", + "amenity": "charging_station", + "start_date": "2023-07-18", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ21512;FRA16PWIIZ21511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77164800000, + 43.42376600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1091763", + "capacity": "13", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3760850550415464821", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "description": "Freshmile France/LLS1TQU7G28OBI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88050600000, + 48.67916400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRCER", + "start_date": "2023-03-02", + "capacity": "3", + "description": "Mr. Bricolage - Céret", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75927540000, + 42.50118730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/IVIDV8DXOP;Cognin-Les-Gorges, Place de L'Eglise", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPIVIDV8DXOP", + "ref": "39128;IVIDV8DXOP", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41265300000, + 45.17080700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP4502178397708851868", + "capacity": "7", + "socket:type2_combo:output": "120 kW;180 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "1029549", + "network": "EVzen", + "description": "EVzen/fa587510-6701-4620-a80a-34cd9a89262b", + "operator:email": "support@evzen.com", + "charging_station:output": "22 kW;120 kW;180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76390900000, + 48.50458900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "METZ - Parking Saint-Jacques", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-01-17;2023-09-13;2022-12-13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E574630155;FRP07E574630152;FRP07E574630151;FRP07E57463015;FRP07E574630153;FRP07E574630154", + "capacity": "58", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17956950000, + 49.11784110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPGMGOBJACDW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "25276;GMGOBJACDW", + "description": "Saint-Just-D'Ardèche, Pl. de l'Ecole;Réseau eborn/GMGOBJACDW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61352800000, + 44.30425000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1059735", + "network": "Road", + "description": "Road/661683f7bca488001cd48a65", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP5278405438188316484", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02036200000, + 45.65917600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP121008", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Campanile Rouen Mt St-Aignan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09404700000, + 49.47732000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P5374884257588549007", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "471108", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/M97MI77NNA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14688300000, + 49.49387300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX12*02", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "ref:EU:EVSE": "FRV75PPX1202", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue du Charolais 2", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38785290000, + 48.83919100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22856650000, + 49.96618590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4422199198657649365", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "682271", + "description": "Freshmile France/UW81KMON2C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16007200000, + 45.74106600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-17:00, Tu 09:00-12:00, Tu 14:00-17:00, We 09:00-12:00, We 14:00-17:00, Th 09:00-12:00, Th 14:00-17:00, Fr 09:00-12:00, Fr 14:00-17:00", + "description": "Pétavit - La Roche Vineuse", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPPETAVITLAROCHEVINEUSE719601", + "start_date": "2022-01-13", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72075300000, + 46.33877100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900106", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PCONCHESDEGAULLE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94147400000, + 48.96069300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SICECO/FR*S21*P21442*A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS21P21442A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96235600000, + 47.19851300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-GERMAIN-EN-LAYE - Parking Rossini", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06822000000, + 48.89293000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Médiathèque Sèvremont", + "operator:email": "info@qwello.fr", + "operator": "Qwello", + "start_date": "2024-03-01", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQWCE9747W", + "owner:ref:FR:SIREN": "913705380", + "network": "Qwello", + "ref": "FRQWCE9747W" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86119700000, + 46.83146300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "767208", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP4855979905916566405", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "charging_station:output": "6.9 kW;22 kW", + "description": "WAAT/FRWATLTSR7NT6W", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04362600000, + 43.15184800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE431803;FRIONE431800;FRIOYE431801;FRIOYE431802;FRIOYE431804;FRIOYE431851;FRIOYE431852;FRIOYE431853", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE431803;FRIONE431800;FRIOYE431801;FRIOYE431802;FRIOYE431804;FRIOYE431851;FRIOYE431852;FRIOYE431853", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "IONITY GMBH;Centre de la France Sud", + "description": "IONITY Centre de la France Sud;Centre de la France Sud", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2020-10-29;2020-10-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41760600000, + 46.75162300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E40814;FRS51E40815", + "capacity": "2", + "description": "MODULO - ST MARTIN/PRE - Rte Louvois", + "amenity": "charging_station", + "network": "MODULO - ST MARTIN/PRE - Rte Louvois", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "ref:EU:EVSE": "FRS51E40814;FRS51E40815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31903800000, + 48.96165900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-23", + "description": "Darvault - Mairie", + "socket:type2_combo:output": "24 kW", + "ref": "d3c34bc5-2fbf-4161-8f37-7957d1276eff", + "ref:EU:EVSE": "FRS77P77156A", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73533400000, + 48.27087400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681083;531681082;531681081;531681080;531681077;531681078;531681079;531681084", + "capacity": "8", + "start_date": "2022-12-29", + "description": "RELAIS LA FERTÉ", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF080341", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF080341", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84330000000, + 46.69270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34114002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "GIGNAC - Rue De La Voie Lactée", + "start_date": "2022-01-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54258890000, + 43.65084170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PCURVAL", + "ref": "21904", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/CURVAL", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43252000000, + 47.70230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "749373", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RR9EIJNQXA", + "ref:EU:EVSE": "FRFR1P8349973521439018642", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08771800000, + 47.24825700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "ref": "599052", + "capacity": "2", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P92051*C;Metropolis - ePremium - Neuilly-sur-Seine - Cordonnier", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92051C", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27468900000, + 48.88341200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPCOMACMD814001", + "network": "DRIVECO", + "start_date": "2021-03-17", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:30-12:00, Mo 13:30-17:00, Tu 07:30-12:00, Tu 13:30-17:00, We 07:30-12:00, We 13:30-17:00, Th 07:30-12:00, Th 13:30-17:00, Fr 07:30-12:00", + "charging_station:output": "22.08 kW", + "description": "COM.ACMD - Albi Conception Métallique et Développement", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14249700000, + 44.05216000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAMPING LA BOURIE", + "description": "CAMPING LA BOURIE", + "ref:EU:EVSE": "FRC2P002801", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "start_date": "2022-04-11", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "owner:ref:FR:SIREN": "793042086" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37907123566, + 43.00015906303 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "626552", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/HUD0LV94TU", + "ref:EU:EVSE": "FRLE2P2578790957628611183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91466800000, + 45.89626500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "50 kW;43 kW", + "description": "MOBIVE | Saint Caprais de Blaye | Parking de Ferchaud", + "ref": "01dc8773-8d12-51a6-88c0-daf9c2721370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56940900000, + 45.29116000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LIMOUX HOTEL - LIMOUX", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE11LABA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-12-21", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22081300000, + 43.07499200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/665871d00e29b8e0e59c417a", + "ref": "1111908", + "ref:EU:EVSE": "FRBHMP3524644055021476400", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22080300000, + 48.86690400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "752427", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8373287673909595707", + "description": "Leclerc/V5BA5FDJUH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70009900000, + 45.98354000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Marignane, Boulevard de la Libération", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PP0AY8SWKFP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21735100000, + 43.41854400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P1970697816595720077", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/AIIZRA3GWT", + "ref": "402437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28128100000, + 48.20014300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ6722;FRA16PWIIZ6721;FRA16PWIIZ6712;FRA16PWIIZ6711", + "description": "MOUANS SARTOUX PARKING DU PARC", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-06-11", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*67*1*_*_;FR*SOD*S*WIIZ*67*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97139400000, + 43.61684000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7092206631136599122", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/QJETDRPRLH", + "opening_hours": "24/7", + "ref": "454122", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03880000000, + 46.27630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sport 2000 - Saint-Sauveur-d'Aunis", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PSPOSSD", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-06-05", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87224361097, + 46.22668268705 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "description": "Réseau eborn/PHPFZI11NQ;Six-Fours-Les-Plages, Parking Square des Bains", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP189397105056174977;FREBNPPHPFZI11NQ", + "ref": "PHPFZI11NQ;682304" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81381900000, + 43.10990600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP1302188733737269236", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1019583", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "description": "CARF - Bornes Publiques/47DD9C2D-8EF0-4378-9469-1EB9D81AAD7F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49164700000, + 43.76869800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR67811;FROTHPOTHR67812", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-08-02", + "description": "INTERMARCHE - CHABLIS", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*678*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79261300000, + 47.81630400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "AEOHHR2DTT;30230", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPAEOHHR2DTT", + "description": "Réseau eborn/AEOHHR2DTT;Saint-Nizier-Du-Moucherotte, Place du 14 Avril 1929", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63049600000, + 45.17075300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNOUTJB3CMSJ;FREBNPOUTJB3CMSJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/OUTJB3CMSJ;Le Beausset, 4 Rue de la Fontaine Neuve", + "ref": "OUTJB3CMSJ;75284", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80360800000, + 43.19668700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING LE RANOLIEN - PLOUMANACH", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR36512;FROTHPOTHR36511", + "ref": "FR*SOD*S*OTHR*365*1*_*_", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.47587800000, + 48.82876400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "998808", + "description": "Freshmile France/LLOYBVLPN2PECZ", + "ref:EU:EVSE": "FRFR1P5057005584021406915", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89602600000, + 43.90488300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Le Bosc, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "capacity": "16;8", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP33176", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35452000000, + 43.68833800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "44 kW;60 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2862307792178308213", + "ref": "682274", + "socket:type2_combo:output": "60 kW", + "description": "Freshmile France/VMVLQ77CMB", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77250100000, + 45.74700100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volkswagen - ByMyCar - Vienne", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS695601", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-05-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86449200000, + 45.52963000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Th,Mo,Sa,Fr,We,Tu 19:00-23:59,We,Su,Sa,Tu,Th,Fr,Mo 00:00-07:30,Su 13:00-23:59", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLIK0JOAC1WRD4", + "amenity": "charging_station", + "ref": "892140", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8225726245127340450", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20495900000, + 48.67191000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plaintel-Place du général De Gaulle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22171001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81773000000, + 48.40821800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "88393;88392", + "description": " KIA - Saint-Memmie - 24kW DC ;KIA - Saint-Memmie - 22kW AC ", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZKAE24DC88392;FRZKAE22AC88393", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "start_date": "2021-10-29", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-19:00", + "network": "Kia Châlons - Groupe REY", + "socket:type2_combo:output": "24 kW", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "538302092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39898800000, + 48.94443200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CityCamp_Angers", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-04-20", + "ref:EU:EVSE": "FRROSE301", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51714600000, + 47.50183500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GARGENVILLE - Rue Simone Veil", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78267001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80856000000, + 48.98028000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE435952;FRIOYE435951;FRIOYE435904;FRIOYE435903;FRIOYE435901;FRIOYE435902;FRIOYE435905;FRIOYE435906;FRIOYE435953", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2022-10-19", + "opening_hours": "24/7", + "network": "Montpellier Saint-Aunès", + "description": "Montpellier Saint-Aunès", + "ref": "FRIOYE435952;FRIOYE435951;FRIOYE435904;FRIOYE435903;FRIOYE435901;FRIOYE435902;FRIOYE435905;FRIOYE435906;FRIOYE435953", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98321100000, + 43.65076500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "description": "BOUESSAY - Rue De Sablé - Parking De La Mairie;OuestCharge - Diva Sp - Bouessay - Mairie", + "amenity": "charging_station", + "start_date": "2021-04-02;2024-05-15", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53E53037001;FRS53P53037A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39385700000, + 47.87564000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARGELES - Avenue Du Grau", + "ref:EU:EVSE": "FRS66E66008002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04670900000, + 42.55020900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "description": "Val-Revermont", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Val-Revermont", + "start_date": "2023-05-09", + "ref:EU:EVSE": "FRIENE008101;FRIENE008102", + "ref": "FRIENE008101;FRIENE008102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36329800000, + 46.26850800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "BAIN DE BRETAGNE - 43 avenue du general patton ", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35012001B1", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68808800000, + 47.84334900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MANTILLY-L'Eglise", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61248A", + "opening_hours": "24/7", + "ref": "SE61-MANT-001", + "start_date": "2022-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80163600000, + 48.52034000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EWGRIN70CW", + "operator:email": "roaming@freshmile.com", + "ref": "510476", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P157136705410407185", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.70402900000, + -21.03349400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "79786", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PXEBJZZ", + "description": "Roulez Électrique En Haute-Garonne/XEBJZZ", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58466800000, + 43.02910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE92026002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COURBEVOIE - Avenue de l'Arche", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2021-09-07;2021-09-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23819200000, + 48.89801500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "2 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRCG0E000571;FRCG0E000570;FRCG0E000569;FRCG0E000284;FRCG0E000283;FRCG0E000282;FRCG0E000281;FRCG0E000279;FRCG0E000260;FRCG0E000259;FRCG0E000257;FRCG0E000256;FRCG0E000258;FRCG0E000280;FRCG0E000572", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "BMW - Equation Toulouse - 31670 - 4", + "capacity": "15", + "description": "BMW - Equation Toulouse - 31670 - 4", + "ref": "FRCG0E000571;FRCG0E000570;FRCG0E000569;FRCG0E000284;FRCG0E000283;FRCG0E000282;FRCG0E000281;FRCG0E000279;FRCG0E000260;FRCG0E000259;FRCG0E000257;FRCG0E000256;FRCG0E000258;FRCG0E000280;FRCG0E000572", + "start_date": "2023-02-03", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51537681000, + 43.54792431000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "description": "VILLEFRANCHE-SUR-MER - PARKING BELEDERE", + "ref:EU:EVSE": "FRM06PNICE14412;FRM06PNICE14411", + "start_date": "2022-09-21", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*144*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31775300000, + 43.70986300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Parentis En Born | Allées Malichecq", + "opening_hours": "24/7", + "ref": "9010aa5e-d3ce-5525-9b68-a8f076b3ef68", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07159400000, + 44.34993000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "CPAM - BEAUVAIS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE60BVCA", + "start_date": "2023-04-19", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10067900000, + 49.43785000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump x Groupe Parot Ford Angoulême - Gond-Pontouvre", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "ref": "247470", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS247470", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17664890000, + 45.68004880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3364EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3364EVCP01", + "description": "HENIN BEAUMONT Schweitzer", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97404600000, + 50.41702100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "7e651f20-1994-59da-a216-d4d2714f16ae", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Chamberet | Route des Monedieres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72270300000, + 45.58175700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "093e5a82-36d0-55fd-acab-7d0302335e48", + "description": "Saintry-sur-Seine - Rue d'Enfer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49472200000, + 48.59650100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "BOULEVARD DES ILES - ISSY-LES-MOULINEAUX", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*55C*P92130*ISS*ILES", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP92130ISSILES", + "start_date": "2020-03-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24993200000, + 48.82263500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTPELLIER Strasbourg", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR0829EVCP02;LFR0829EVCP01", + "ref:EU:EVSE": "LFR0829EVCP02;LFR0829EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89007900000, + 43.60323200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-12;2024-02-23", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "LEPLEIN Chasseneuil-du-Poitou - Leroy Merlin", + "charging_station:output": "50 kW;22.08 kW", + "capacity": "20", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRPL1PLM863601", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36083100000, + 46.64625800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPVS6SOGHFTE", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "298297", + "charging_station:output": "22 kW", + "description": "Réseau eborn/VS6SOGHFTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03083300000, + 45.05276900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Freshmile France/LLW0QASHYFJ16R", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1542799289150457260", + "ref": "1170999" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09521000000, + 49.33075700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E21231008", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking de Dijon Malraux - DIVIAPARK", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04916510000, + 47.32693510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-04-17", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Vire", + "ref:EU:EVSE": "FRDRVPCRFMKT145001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87070500000, + 48.86252500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "30518", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPBOHPZMIGRR", + "charging_station:output": "22 kW", + "description": "Réseau eborn/BOHPZMIGRR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70548900000, + 45.90843300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*484*2*_*_;FR*SOD*S*OTHR*484*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "KIAGIS - GISORS", + "ref:EU:EVSE": "FROTHPOTHR48411;FROTHPOTHR48421", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "KIAGIS", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75761900000, + 49.27604400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4325469581561767875", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "801666", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RB8VUBDF3E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96705000000, + 46.10233700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10091903;FRUBIE10030303", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "description": "UBI-LHSM-068", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "setp0100000137", + "start_date": "2024-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37611200000, + 49.57147600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "description": "Freshmile France/DJBEAJ", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "79591", + "ref:EU:EVSE": "FRFR1P2718421500852683313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60460000000, + 44.83020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555022", + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Avenue des Ecoles Jules Julien ", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;90 kW;180 kW", + "start_date": "2022-08-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45254000000, + 43.57343000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892452", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7172714008410760168", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJWX8IC2K8Q24", + "opening_hours": "Tu,Th,Mo,We,Fr 08:00-19:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27420900000, + 47.83983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457527", + "description": "MobiSDEC/NZAMOLTFQS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P2013075107800402406", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28827300000, + 49.14994400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA BASTIDE L'EVEQUE - Parking Office de Tourisme", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12021001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13564600000, + 44.34104900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "L'ÉTANG-LA-VILLE - Stade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78224003", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07480000000, + 48.86448000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49160001;FRS49P49160A", + "amenity": "charging_station", + "description": "INGRANDES - Parking de la Gare;OuestCharge - Diva Sp - Ingrandes - Gare", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2024-03-26;2021-04-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92112600000, + 47.40585600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref:EU:EVSE": "FRS70P399633951517115364", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "ref": "706070", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "SIED70/QI8FOZJERH", + "socket:type2_combo:output": "22 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14367300000, + 47.64323000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BOLLEZEELE - Rue De L'Eglise", + "ref:EU:EVSE": "FRH14E59089001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32748100000, + 50.86567900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35326001B1", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "SENS DE BRETAGNE - 3 place de la gare " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53755800000, + 48.33404400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "start_date": "2022-11-16", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "518336", + "description": "SIEG63 - ePremium - Giat - Hotel de Ville;SIEG 63/FR*S63*P63165*A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63165A", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46802600000, + 45.80269200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YKUFAJGFSH", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2506222918082033378", + "network": "Freshmile France", + "opening_hours": "Fr,Th,Tu,We,Mo 08:00-12:00,Fr,We,Tu,Mo,Th 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "ref": "559844", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32568100000, + 43.80737900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21838", + "ref:EU:EVSE": "FRS32PDMVKVB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/DMVKVB", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37282200000, + 43.95580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-03-12", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94016004", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CACHAN - Rue Des Saussaies", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34051730000, + 48.78634500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE26311;FRM06PNICE26312", + "charging_station:output": "22 kW", + "description": "NICE - SMOLETT", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*263*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28816249266, + 43.70233169536 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Prigonrieux | Rue du 19 Mars 1962", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1d19d76f-efce-5fbc-82b2-64d2e1c8ff15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40040600000, + 44.85472100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE39812;FRSIGPSIGE39811", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref": "FR*SOD*S*SIGE*398*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - RUE EMILE ZOLA - PIERRELAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14130000000, + 49.02230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76498002", + "description": "LE PETIT QUEVILLY - Avenue Jean Jaurès", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06243200000, + 49.42666900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DIEUZE Vergaville", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3075EVCP01", + "ref:EU:EVSE": "LFR3075EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72363700000, + 48.81961900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Uzerche | Chemin des lezes", + "ref": "987fcf8a-8e14-5c65-80d3-195eba2614d6", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56675100000, + 45.42732600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "description": "BOLLENE - Place des Recollets", + "amenity": "charging_station", + "ref": "047f83ba-19cb-56f0-9c05-63d86edefe0f", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74873300000, + 44.28051000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-03-07", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P92380*GAR*GRANDERUE", + "description": "GRANDE RUE - GARCHES", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP92380GARGRANDERUE", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19881100000, + 48.84278800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR4127EVCP03;LFR4127EVCP02;LFR4127EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4127EVCP03;LFR4127EVCP02;LFR4127EVCP01", + "description": "GREZ NEUVILLE", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71072700000, + 47.61532700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMPLG", + "capacity": "8", + "network": "Power Dot France", + "start_date": "2021-10-12", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Intermarché - Poilly-lez-Gien", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59422992262, + 47.67745918508 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "32740;XQSNJH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/XQSNJH;Vernioz, Place Jean Plantier", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPXQSNJH", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90136000000, + 45.42030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "start_date": "2024-01-11", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP77420A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Cottage de France Saint Mard", + "ref:EU:EVSE": "FRETIP77420A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68787254980, + 49.03983861941 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-02-06", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Cora - Forbach", + "ref:EU:EVSE": "FRPD1PCORFOR", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88303027180, + 49.17436645516 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT014601", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-07-25", + "operator:email": "support@driveco.com", + "description": "Carrefour Market Montréal-La-Cluse", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57637700000, + 46.17278300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ECOPI;RossiniEnergy", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE293;FREPIE1895650", + "capacity": "2", + "description": "Valhuon_DC", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-02-02;2022-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37555700000, + 50.43393200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - SAINT QUENTIN LE FAYET", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH17712;FROTHPAUCH17711", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "network": "AUCHAN", + "ref": "FR*SOD*S*AUCH*177*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25368620000, + 49.85964970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BORNE PRIVAS PRIVAS", + "ref": "FRCPIE6804505", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "BORNE PRIVAS PRIVAS", + "ref:EU:EVSE": "FRCPIE6804505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60875300000, + 44.72009000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CJUUZX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "346382", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P761426270029880393", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94496000000, + 48.21560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9013*07", + "description": "Paris | Rue Regnault 118", + "ref:EU:EVSE": "FRV75P901307", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36779800000, + 48.82312000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QZTHJZ", + "operator": "Freshmile | FR*FR1", + "ref": "242359", + "ref:EU:EVSE": "FRFR1PQZTHJZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65466000000, + 48.84430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Sallanches, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP7138", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62865100000, + 45.95270400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597777", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "capacity": "4", + "description": "Freshmile/DZVOZRKVZZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1028324869295714905" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95471100000, + 43.30053600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-10-13", + "ref:EU:EVSE": "FR3R3P89696185", + "charging_station:output": "22 kW;150 kW", + "description": "R3 - Eleclerc Chalons", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38724700000, + 48.94090500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P5330456872341109329", + "description": "MobiSDEC/INJBEBIMWZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "461769", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90072300000, + 48.80054500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VIALA PAS DE JAUX - Chemin du Mus", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-11-30", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12295001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05710200000, + 43.95694000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWA5LBXGDM5ZE", + "charging_station:output": "22 kW", + "ref": "993552", + "operator": "WAAT SAS | FR*WA5", + "ref:EU:EVSE": "FRWA5P4658786797513482904", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48797400000, + 48.68525200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-05;2021-04-22", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49361A;FRS49E49361001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Varennes-sur-Loire - Gare;VARENNES-SUR-LOIRE - Rue de la Gare", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05474300000, + 47.23971200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "LABRUGUIERE - Rue De La Tuilerie", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-07-09", + "ref:EU:EVSE": "FRS81E8112000122;FRS81E8112000111;FRS81E8112000112;FRS81E8112000121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26205045751, + 43.53759721513 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "socket:type2_combo:output": "175 kW", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680529;531680528", + "ref": "FRHPCPNF050499", + "ref:EU:EVSE": "FRHPCPNF050499", + "opening_hours": "24/7", + "description": "RELAIS DE GERGOVIE", + "start_date": "2021-06-22", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12960000000, + 45.75470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PRADINES - Avenue Charles Pillat", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46224001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41395700000, + 44.46706300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-26", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PSPXABC", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Locmaria-grand-champ - Rue du Stade", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78749600000, + 47.75639300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "DOUAI - Boulevard Pasteur", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH04E59178018", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07303800000, + 50.36418200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923200", + "description": "Quimper-MPT de Kerfeunteun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09384200000, + 48.00309000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Chevalier", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068018", + "start_date": "2024-03-29;2023-12-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50374972587, + 48.78936453651 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHATELLERAULT GARE-1-2;CHATELLERAULT GARE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346051462;FRLMSE12346051452;FRLMSE12346051451;FRLMSE12346051461", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-11-24", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54894000000, + 46.81829800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;50 kW;150 kW", + "capacity": "4", + "start_date": "2022-05-16", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "description": "Metropolis - Express - Rueil-Malmaison - Napoléon Bonaparte", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92063T", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16071890000, + 48.87150310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*73*5*_*_;FR*SOD*S*SIGE*73*2*_*_;FR*SOD*S*SIGE*73*1*_*_;FR*SOD*S*SIGE*73*3*_*_;FR*SOD*S*SIGE*73*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE7351;FRSIGPSIGE7321;FRSIGPSIGE7311;FRSIGPSIGE7331;FRSIGPSIGE7341", + "charging_station:output": "7 kW;7.36 kW", + "start_date": "2020-11-27", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 166 PROMENADE DU VERGER - ISSY-LES-MOULINEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27002300000, + 48.81754900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRATLP6632846871876587441", + "capacity": "5", + "description": "Atlante/FRATL*PROV1601", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "809715", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28694100000, + 48.55461100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000081805", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Buchelay", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67840700000, + 48.99172200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "1366b6ee-05d9-5624-9928-fc7a49030269", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Pau | Place du Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37020700000, + 43.30295900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS85E85151001", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-15", + "description": "MORTAGNE-SUR-SEVRE - Avenue De La Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94492000000, + 46.99512900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSCHLEN", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-22", + "description": "CHALONS EN CHAMPAGNE", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38545800000, + 48.94193800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4059EVCP01;LFR4059EVCP02;LFR4059EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4059EVCP01;LFR4059EVCP02;LFR4059EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CHATEAUGIRON Rennes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51467800000, + 48.05459500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "La Petite Villette - Cholet", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "ref:EU:EVSE": "FRPD1PLPVCHO", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85229946851, + 47.06918628327 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCAU4LIXEUR", + "ref": "85748;CAU4LIXEUR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Arâches-La-Frasse, Flaine;Réseau eborn/CAU4LIXEUR", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68976000000, + 46.00658000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/B0884371-37A3-42FF-841E-4F0D7CFFB7B5", + "ref": "1113990", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP43474421197499326" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84246200000, + 47.55765600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PGSTLIV", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2024-03-05;2024-04-15;2024-03-23", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "description": "Gouny & Starkley - Livry-Gargan", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55208561927, + 48.92545017503 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDRJCSRLME5", + "ref": "DRJCSRLME5;75032", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/DRJCSRLME5;Guillestre, Champ de Foire", + "capacity": "4;6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64907300000, + 44.66132400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP14515A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - IBIS HOTEL Bayeux Port en Bessin", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP14515A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75177740882, + 49.34634420749 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SEMVR - ROUBAIX - PARABOLES", + "ref:EU:EVSE": "FROTHPOTHR170211;FROTHPOTHR170201;FROTHPOTHR170191;FROTHPOTHR170171;FROTHPOTHR170161;FROTHPOTHR170181", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SEMVR", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2020-09-17", + "ref": "FR*SOD*S*OTHR*170*20*_*_;FR*SOD*S*OTHR*170*19*_*_;FR*SOD*S*OTHR*170*18*_*_;FR*SOD*S*OTHR*170*17*_*_;FR*SOD*S*OTHR*170*16*_*_;FR*SOD*S*OTHR*170*21*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17727000000, + 50.68816000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-09-02", + "network": "MORPHO TOPAZE1 MORPHO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MORPHO TOPAZE1 MORPHO", + "ref": "FRCPIE6980815", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6980815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36095700000, + 43.54812600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626189", + "ref:EU:EVSE": "FRFR1P2564813133917661888", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "capacity": "10", + "opening_hours": "We,Mo,Th,Tu,Fr 07:00-21:00", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/NSXP47CUV6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112400000, + 48.65894700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "CENTER PARCS VILLAGE NATURE - Entrée est", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRVIAP123003", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-08-07", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81549400000, + 48.83180500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "street_lamp", + "survey:date": "2022-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20880340000, + 49.97190340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PHJCQWV", + "description": "Freshmile France/HJCQWV", + "operator": "Freshmile | FR*FR1", + "ref": "232357" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22295000000, + 46.20680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRSUAP14201A", + "description": "SUPER U CAEN", + "amenity": "charging_station", + "capacity": "4", + "network": "SUPER U CAEN", + "start_date": "2022-02-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRSUAP14201A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40172900303, + 49.18274284715 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "160251", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/saintemarien2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3409797734770656329", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.56750000000, + -20.89820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Gevrey Chambertin - Parking Gare SNCF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPMAIRIEGEVREY212203", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-02-09", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99890300000, + 47.22764600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E134347", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E134347", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - TREON - Rue Jean Michel Herault", + "operator": "Modulo", + "network": "MODULO - TREON - Rue Jean Michel Herault", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32238500000, + 48.67622400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/BWBZ2WP2CP", + "amenity": "charging_station", + "ref": "32131", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P4819614689137487994", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62398700000, + 48.20267700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P726818722809318458", + "ref": "1128135", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLJN8LZO9U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17540100000, + 48.44054000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "ST JEAN LE THOMAS - Allée Clémenceau", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50496002", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51885200000, + 48.73002500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81271002", + "operator": "Bouygues E&S", + "description": "SAINT SULPICE LA POINTE - Parking Office Tourisme", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68818700000, + 43.77433400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "REL.LE MONT SAINT MICHEL", + "owner:ref:FR:SIREN": "531680844;531680842;531680840;531680841;531680839;531680843;531680845;531680838", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "start_date": "2022-07-25", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078244", + "ref:EU:EVSE": "FRHPCPNF078244" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32650000000, + 48.58500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Beaucouze - Grange Aux Belles;BEAUCOUZE - Parking Avenue de la Grange aux Belles", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-28;2024-03-27", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49E49020002;FRS49P49020B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62479400000, + 47.47497200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PBRESLES", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "38773", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/Bresles", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24455000000, + 49.40860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-17;2021-11-03", + "ref:EU:EVSE": "FRH09E62338001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "FLEURBAIX - Rue de Quesne", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83113600000, + 50.65060800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "GENOLHAC - Place Du Colombier", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30130001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94979200000, + 44.34882900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile;Morbihan énergies | FR*S56", + "start_date": "2019-09-07", + "ref:EU:EVSE": "FRS56PQJ6QKLM4O5;FRS56P6556185353689548290", + "capacity": "2", + "description": "Mobilité électrique 56/QJ6QKLM4O5;Arzal - Parking Port d'Arzal", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "network": "Morbihan Energies;Mobilité électrique 56", + "ref": "346589", + "charging_station:output": "7.4 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.37978500000, + 47.50075000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NIEUIL L’ESPOIR-1-2;NIEUIL L’ESPOIR-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-03-31", + "opening_hours": "24/7", + "ref": "B077", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346390401;FRLMSE12346390391", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45408300000, + 46.48322300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P94018*A", + "ref": "1121523", + "operator": "Métropolis | FR*MGP", + "ref:EU:EVSE": "FRMGPP94018A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39671700000, + 48.82374800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-05-18", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*101*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE10112;FRSIGPSIGE10111", + "description": "SIGEIF - 26 PARKING COSTES & BELLONTE - VIROFLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17162300000, + 48.80201200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PRATS DE MOLLO - Rue du Jardin d'enfants", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E66150001", + "start_date": "2024-02-07", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48182411349, + 42.40329746006 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A31 Montigny-le-Roi", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89369695", + "start_date": "2023-03-02;2022-12-30", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49804000000, + 47.97703700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | La Rochefoucauld-En-Angoumois | Parking Salle des Fêtes | la Rochefoucauld", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8194cb94-f5e7-512c-ac6f-a4fe1654e619", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38928900000, + 45.73945100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Stade - MERLIMONT", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE62MBCA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61479800000, + 50.45384400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9006372;FRALLEGO9006371;FRALLEGO9006041;FRALLEGO9004761;FRALLEGO9001571;FRALLEGO9001351;FRALLEGO9001352;FRALLEGO9001572;FRALLEGO9004762;FRALLEGO9004763;FRALLEGO9006042", + "amenity": "charging_station", + "description": "Allego Carrefour Mulhouse", + "ref:EU:EVSE": "FRALLEGO9006372;FRALLEGO9006371;FRALLEGO9006042;FRALLEGO9006041;FRALLEGO9004761;FRALLEGO9001571;FRALLEGO9001351;FRALLEGO9001352;FRALLEGO9001572;FRALLEGO9004762;FRALLEGO9004763", + "start_date": "2023-03-15", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "network": "Allego Carrefour Mulhouse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38617000000, + 47.77140100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3837EVCP01;LFR3837EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3837EVCP01;LFR3837EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "LONGPONT SUR ORGE - Biron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28521600000, + 48.63536800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BEAUZELLE - Rue Des Pins", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRM31E31056001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37840400000, + 43.66841400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref": "GAMO0PZWOK", + "ref:EU:EVSE": "FREBNPGAMO0PZWOK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Rocbaron, Parking Jean Moulin", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09063600000, + 43.30320300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZN2DDHBYGZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3126464098865978550", + "operator": "Freshmile | FR*FR1", + "ref": "471222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90790000000, + 48.95640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-01-31", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "PARIS - Hoche", + "ref:EU:EVSE": "FRP07E75056040;FRP07E750560401;FRP07E750560402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30109050000, + 48.87647110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Labeaume, Les Fraysses;Réseau eborn/IAYB6RCTET", + "ref": "IAYB6RCTET;48310", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPIAYB6RCTET", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30705700000, + 44.44770100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "opening_hours": "Fr,Sa,Su,We,Th,Mo,Tu 08:00-18:00", + "ref:EU:EVSE": "FREFLP540946899561613597", + "network": "Road", + "amenity": "charging_station", + "charging_station:output": "22 kW;3 kW", + "operator:email": "roaming-dev@road.io", + "ref": "1130463", + "operator": "Road | FR*EFL", + "description": "Road/667d2d81c93de5001c0394ad" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18303600000, + 48.82200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR28411;FROTHPOTHR28421", + "start_date": "2021-11-30", + "charging_station:output": "3.68 kW", + "network": "MAISONS TERRE DOC", + "description": "MAISONS TERRE DOC - CASTRES", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*284*1*_*_;FR*SOD*S*OTHR*284*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25991700000, + 43.59735400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "SU COLOMBELLES BORNE 1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6608205", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SU COLOMBELLES BORNE 1", + "start_date": "2022-10-11", + "ref": "FRCPIE6608205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29949300000, + 49.18908800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Montélimar, Place Bouverie", + "ref:EU:EVSE": "FREBNPUKTMEQNRXJ", + "ref": "UKTMEQNRXJ", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-03-22", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75091764000, + 44.56067532000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/s570497", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1181943", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P6015956975915570510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64838200000, + 48.52691900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7081246142307944546", + "network": "Freshmile France", + "ref": "892161", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIN9J8TI3OT4L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37103800000, + 48.15943700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "ref": "FRTCBP00384", + "description": "WARNING Dijon", + "ref:EU:EVSE": "FRTCBP00384", + "start_date": "2021-08-12", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09314100000, + 47.31797600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VEAFCWDTLI", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "charging_station:output": "75 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "75 kW", + "opening_hours": "24/7", + "ref": "446588", + "ref:EU:EVSE": "FRFR1P4093214386792900955", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978000000, + 47.21370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-10-31", + "description": "Hyundai - Pedinielli - Pertuis", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPPEDINIELLIHYUNDAI841201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50397100000, + 43.68297800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2903700", + "charging_station:output": "22 kW", + "description": "Combrit-Place Grafenhauser" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.12307500000, + 47.87443500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "370238", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/M1F8WRHMWF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2313916077281133871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92254400000, + 48.49327400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P2496140964386279738;FRZP1P5188811756385656285;FRZP1P3750415226282082213;FRZP1P7123278598986678180", + "network": "Zephyre", + "ref": "576005;575996;576077;576356", + "operator": "Zephyre | FR*ZP1", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo,We,Su,Fr,Tu,Th,Sa 00:00-23:59;We,Tu,Sa,Fr,Th,Su,Mo 00:00-23:59;Su,Fr,Tu,Mo,Sa,Th,We 00:00-23:59;We,Sa,Th,Fr,Mo,Tu,Su 00:00-23:59", + "description": "Zephyre/LP009E8C;Zephyre/LE0067F8;Zephyre/LE0067AF;Zephyre/LP003B15", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79621600000, + 45.21337000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouraux", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE90", + "start_date": "2021-05-27", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58452200000, + 50.80334900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/KNVSCR", + "ref": "64661", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PKNVSCR", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88484000000, + 50.25250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*171*1*_*_", + "start_date": "2024-09-12", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST17113;FRIZFPFAST17111;FRIZFPFAST17112", + "description": "IZIVIA FAST - MCDONALDS - LILLE VILLENEUVE DASCQ II DRIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12661700000, + 50.61665740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - NOYERS SUR CHER - Rue Saint Lazare", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - NOYERS SUR CHER - Rue Saint Lazare", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4843;FRS41E4844", + "ref": "FRS41E4843;FRS41E4844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39039100000, + 47.27670700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "description": "Mouv'Oise/OSENJBKD86", + "capacity": "2", + "amenity": "charging_station", + "ref": "598170", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P693966413465641808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78031100000, + 49.39179500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*8*1*_*_;FR*SOD*S*LYON*8*2*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON822;FRGLYPLYON821;FRGLYPLYON811;FRGLYPLYON812", + "description": "DEC01 - TOBOGGAN", + "start_date": "2020-02-25", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95558700000, + 45.76915100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - GENILLE - Rue des Noisetiers", + "ref:EU:EVSE": "FRS37E215554;FRS37E215555", + "capacity": "2", + "network": "MODULO - GENILLE - Rue des Noisetiers", + "amenity": "charging_station", + "ref": "FRS37E215554;FRS37E215555", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09635437000, + 47.18183390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PUPKBXY", + "operator": "Morbihan énergies | FR*S56", + "ref": "28481", + "description": "Mobilité électrique 56/UPKBXY", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91569000000, + 47.65310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Meritor", + "operator": "E-TOTEM", + "description": "Meritor", + "capacity": "8", + "ref:EU:EVSE": "FRG10P42218AB", + "start_date": "2021-10-01", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRG10P42218AB", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39682200000, + 45.45222700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "ops@obornes.fr", + "capacity": "2", + "charging_station:output": "252 kW", + "description": "Obornes/6", + "amenity": "charging_station", + "ref:EU:EVSE": "FRORVP5501805711962373037", + "opening_hours": "24/7", + "network": "Obornes", + "socket:type2_combo:output": "252 kW", + "ref": "1184417", + "operator": "Obornes | FR*ORV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71438200000, + 45.96015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-11-23", + "network": "SIGEIF", + "description": "SIGEIF - PLACE DU 8 MAI 1945 - ARGENTEUIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*216*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE21611;FRSIGPSIGE21612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24791100000, + 48.94048400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EURL LES CROISILLES - Billy", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "network": "EURL LES CROISILLES - Billy", + "ref:EU:EVSE": "FRCG0E002128;FRCG0E002129;FRCG0E002130", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "FRCG0E002128;FRCG0E002129;FRCG0E002130", + "start_date": "2024-04-11", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03489700000, + 45.27089500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B Hôtel Belfort", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2023-09-12", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89944458", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88831200000, + 47.64320200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "2bbf08a3-26fe-5fcc-a6e3-028929cfa646", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Saint Pierre d'Oléron | Rue de la Bouline (Place Gambetta)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30677000000, + 45.94180100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE88EYBA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-03-09", + "description": "BYMYCAR - EPINAL", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47555600000, + 48.18688400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Gerardmer, Boulevard Adolphe Garnier", + "owner:ref:FR:SIREN": "508150463", + "start_date": "2023-01-21", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA88P0242120002", + "opening_hours": "24/7", + "network": "L'HOSTELLOISE HOTEL DES BAINS", + "operator:email": "bains@wanadoo.fr", + "operator": "L'Hotelloise Hotel des Bains", + "ref": "755c6ec8-a6de-11ed-afa1-0242ac120002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87180000000, + 48.07067000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3700EVCP02;LFR3700EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "CHATEAURENARD Chaffine", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3700EVCP02;LFR3700EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83696400000, + 43.88802700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "description": "GRENOBLE - Rue Jacquard - Balzac", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72474600000, + 45.17461000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Carces, Parking de la Respelide;Réseau eborn/ANUKTTYTG0", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "ANUKTTYTG0;237739", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNANUKTTYTG0;FREBNPANUKTTYTG0", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18207200000, + 43.47558500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892485", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/LLK89RD352FJRP", + "ref:EU:EVSE": "FRFR1P6280970553287625915", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92761400000, + 49.19944000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-12-27;2023-09-15;2023-01-03", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "IVRY SUR SEINE - Quai d'Ivry", + "ref:EU:EVSE": "FRP07E94041002;FRP07E940410021;FRP07E940410022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38808950000, + 48.82378130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-09-29", + "description": "Réseau eborn/BKPTAV;Montmarault, Maison du Tourisme", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "182567;BKPTAV", + "ref:EU:EVSE": "FREBNPBKPTAV", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96782000000, + 46.32510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Paris 12 - Parking Méditerranée - Gare de Lyon - Saemes", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPPARSGL", + "operator": "ELECTRA", + "socket:type2_combo:output": "200 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37568700000, + 48.84506200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E91228002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-01", + "network": "EFFIA France", + "description": "Parking Evry Terrasse - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42698300000, + 48.62830200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6649255", + "ref": "FRCPIE6649255", + "network": "CGED CGED ST QUENTIN", + "description": "CGED CGED ST QUENTIN", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26026000000, + 49.85187300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHPLLYSFVHEX1SDQR;FRECHP3656345348720011823", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "1161876;LLYSFVHEX1SDQR", + "network": "Easycharge services;Easy Charge", + "description": "Les Auxons, Impasse Matisse;Easy Charge/LLYSFVHEX1SDQR", + "start_date": "2024-07-19", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95955000000, + 47.30083300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "capacity": "5", + "description": "Paris | Avenue Rachel 1", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX18*14", + "ref:EU:EVSE": "FRV75PPX1814", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33054610000, + 48.88441480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P2185267586791406904", + "operator": "Freshmile | FR*FR1", + "ref": "1175922", + "description": "Freshmile France/LLXKI1ILEP5820" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10894100000, + 44.52416500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "network": "Belib'", + "start_date": "2022-10-19;2022-09-21", + "ref": "FR*V75*PHBSAE*PDA", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PHBSAEPDA", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "Paris | SAEMES Parking Porte d'Auteuil", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25583896150, + 48.84697366289 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLMSYSDM5G16JY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5842949318454915748", + "ref": "1130421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72036700000, + 48.59047100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Hyundai -Cholet", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPOCEANEHYUNDAI493001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91573400000, + 47.02793500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Ploumagoar-La Chesnaye", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "ref:EU:EVSE": "FRS22E22225001", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.14792800000, + 48.55128100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11254001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONTREAL - Place De La Republique", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14194400000, + 43.20027800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAMPING LA POMMERAIE", + "description": "Camping La Pommeraie - Cabourg - 24kW AC ;Camping La Pommeraie - Cabourg - 24kW DC ", + "start_date": "2021-04-13", + "amenity": "charging_station", + "capacity": "1", + "ref": "57510;57509", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "owner:ref:FR:SIREN": "429354541", + "socket:type2_combo:output": "24 kW", + "operator": "ZEBORNE", + "ref:EU:EVSE": "FRZPEE24DC57509;FRZPEE22AC57510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13938380000, + 49.28191680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "TARASCON SUR ARIEGE - RN20", + "ref:EU:EVSE": "FRS09E09306002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59973500000, + 42.84680600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80P2238385189104299882", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/PJXCC6BZCI", + "ref": "487188", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70682400000, + 49.81575800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-02-23", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - YSSINGEAUX", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST5013;FRIZFPFAST5012;FRIZFPFAST5011", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*50*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11227810000, + 45.14626610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44E44081002;FRS44P44081B", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Lege - Chaussée;LEGE - Rue De La Chaussée", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-26;2024-04-12", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59340700000, + 46.88712500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS77E77222001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GUIGNES - Charles Denis Cadas", + "start_date": "2024-01-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79823500000, + 48.63714300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "capacity": "8", + "ref:EU:EVSE": "FRGYMP190129538243736190", + "description": "GreenYellow Shift Mobility/73", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "ref": "1030605", + "operator": "GreenYellow | FR*GYM", + "socket:type2_combo:output": "180 kW;150 kW", + "charging_station:output": "22 kW;150 kW;180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26444500000, + 48.71855900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - COURCOUE - Rue de Richelieu", + "start_date": "2019-03-18", + "description": "MODULO - COURCOUE - Rue de Richelieu", + "charging_station:output": "0 kW", + "ref": "FRS37E220480;FRS37E220479", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220480;FRS37E220479" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39561800000, + 47.03383700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "CCPCST - ComCom du PCST-Colombey-les-Belles", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "46__CCPCST", + "ref": "ddd4a4a6-eafe-5210-bd6a-ed1460d8e294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89790900000, + 48.52802200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON10141;FRGLYPLYON10131;FRGLYPLYON10111;FRGLYPLYON10121", + "start_date": "2021-07-09", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY305 - MONTCHAT - CHATEAU", + "ref": "FR*SOD*S*LYON*101*3*_*_;FR*SOD*S*LYON*101*2*_*_;FR*SOD*S*LYON*101*1*_*_;FR*SOD*S*LYON*101*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88646300000, + 45.74946200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "ref": "87464d7c-7838-47c4-b198-233b2b7017cd", + "operator": "Mobilize Power Solutions", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "network": "DNA DORDOGNE - NISSAN BERGERAC ", + "start_date": "2024-04-15", + "description": "DNA DORDOGNE - NISSAN BERGERAC ", + "ref:EU:EVSE": "FRMBZEGLONL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47931257375, + 44.83300465860 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "419855127", + "charging_station:output": "24 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SLF*ESAP*MOUGINS*16*3", + "ref:EU:EVSE": "FRSLFESAPMOUGINS163", + "operator": "SAP LABS FRANCE", + "network": "SAP LABS FRANCE", + "operator:email": "gerald.seiler@sap.com", + "start_date": "2021-06-30", + "socket:type2_combo:output": "24 kW", + "opening_hours": "Mo-Fr 8:00-18:00", + "description": "SAP LABS FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01008120000, + 43.60875050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6627535;FRCPIE6541555", + "amenity": "charging_station", + "capacity": "4", + "network": "WAAT 4 CHENES 11", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "WAAT 4 CHENES 11", + "start_date": "2022-10-12", + "ref": "FRCPIE6627535;FRCPIE6541555" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58969800000, + 48.77696400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/ZRLDYDOYI6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P7925873807299892393", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446882" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113000000, + 47.68657000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "Non concerné;FRS33PMB335711;FRS33PMB335712", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "description": "MOBIVE | La Teste-De-Buch | Rue de L'Yser;LA TESTE-DE-BUCH - RUE DE LYSER", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "start_date": "2020-04-02", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref": "7d675fcb-9d3f-5f62-be69-4e045b24a57e;FR*SOD*S*MB33*57*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14485500000, + 44.63822900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "description": "Ris-Orangis - Rue Henri Sellier", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0a5bafef-848d-50f6-a0cf-3acec9c80d06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40381900000, + 48.64783200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPABSV;FRAIRPAHLS;FRAIRPACMU", + "capacity": "4;6", + "opening_hours": "24/7", + "description": "Airbus Montoir de Bretagne - G45 intérieur du site;Airbus Montoir de Bretagne - Parking P0 extérieur du site;Airbus - Montoir de Bretagne - GC25 Intérieur du site", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16986100000, + 47.31418600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4205EVCP02", + "ref": "LFR4205EVCP02", + "description": "CANET EN ROUSSILLON - alizees" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02279700000, + 42.70169700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*54*3*_*_;FR*SOD*S*NICE*54*4*_*_", + "capacity": "2", + "description": "NICE - CLEMENCEAU RP", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2021-08-13;2021-06-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE5431;FRM06PNICE5432;FRM06PNICE5441;FRM06PNICE5442", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26534400000, + 43.70210800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-15", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "CIPIERES - PARKING VILLAGE", + "ref:EU:EVSE": "FRA16PWIIZ19112;FRA16PWIIZ19111", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*191*1*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95407200000, + 43.78242400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "440976", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/AVYDUIQNKS", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1528894551035649684" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30351400000, + 48.55595000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Best Western - Belfort", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-12", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBSWBLF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85442730000, + 47.63356160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "HBM95RMP7A;85769", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPHBM95RMP7A", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/HBM95RMP7A;Le Grand-Bornand, Cimetière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42820000000, + 45.94150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP4947405985894592741", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "922104", + "description": "ENGIE MAMP - Bornes publiques/C7EACE56-7961-4883-9FD2-04E96B9DAC19", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22183000000, + 43.41657000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "description": "BORDEAUX - P3 Gare Saint Jean Belcier", + "ref:EU:EVSE": "FRP07E33063001", + "start_date": "2020-06-16", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55509600000, + 44.82374600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "75161;KBRRRM6IGB", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/KBRRRM6IGB;Morestel, Rue Clos Giraud", + "ref:EU:EVSE": "FREBNPKBRRRM6IGB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47326000000, + 45.67412700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "ref": "XA1GQIFFQO;756954", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "description": "Easy Charge/XA1GQIFFQO;Le Chesnay-Rocquencourt , Rue des érables ", + "socket:type2_combo:output": "24 kW", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPXA1GQIFFQO;FRECHP7295175860574422507" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11855000000, + 48.83427000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Epinal - Stade de la Colombière", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46376400000, + 48.17719000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7757165786892108269", + "description": "Freshmile France/LLQ3NFWP01F4NB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1025319" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14710500000, + 50.64284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1008", + "description": "Paris | Rue de Metz 6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-08-17", + "capacity": "4", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX10*08", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35407600000, + 48.87081000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "472284", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5102811522220510095", + "description": "Freshmile France/VGP2D1IL1W", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70825700000, + 48.63679700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2021-07-07", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPHOTMAQUISETMER201451", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Hôtel Maquis et Mer - Sari Solenzara", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.39971300000, + 41.85636100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PANDELYSNPOUSSIN", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900117", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41371000000, + 49.24585800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E97832", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS18E97832", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - BOURGES - Rue Mickael Faraday (Esprit 1)", + "operator": "Modulo", + "description": "MODULO - BOURGES - Rue Mickael Faraday (Esprit 1)", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43198900000, + 47.09604600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "description": "MONTAINVILLE - Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78415001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85996000000, + 48.88202000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK5641;FRQPKPQPRK5631;FRQPKPQPRK56171;FRQPKPQPRK56111;FRQPKPQPRK56101;FRQPKPQPRK5611;FRQPKPQPRK56121;FRQPKPQPRK56131;FRQPKPQPRK56141;FRQPKPQPRK56151;FRQPKPQPRK56161;FRQPKPQPRK5621;FRQPKPQPRK5651;FRQPKPQPRK5661;FRQPKPQPRK5671;FRQPKPQPRK5681;FRQPKPQPRK5691", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*56*8*_*_;FR*SOD*S*QPRK*56*7*_*_;FR*SOD*S*QPRK*56*6*_*_;FR*SOD*S*QPRK*56*5*_*_;FR*SOD*S*QPRK*56*17*_*_;FR*SOD*S*QPRK*56*16*_*_;FR*SOD*S*QPRK*56*12*_*_;FR*SOD*S*QPRK*56*11*_*_;FR*SOD*S*QPRK*56*1*_*_;FR*SOD*S*QPRK*56*10*_*_;FR*SOD*S*QPRK*56*13*_*_;FR*SOD*S*QPRK*56*14*_*_;FR*SOD*S*QPRK*56*15*_*_;FR*SOD*S*QPRK*56*2*_*_;FR*SOD*S*QPRK*56*3*_*_;FR*SOD*S*QPRK*56*4*_*_;FR*SOD*S*QPRK*56*9*_*_", + "start_date": "2024-07-31;2022-11-21", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - SAINT ETIENNE - HOTEL DE VILLE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38849900000, + 45.43905400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CASTRES - Place Du 1er Mai", + "start_date": "2017-11-15", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8106500222;FRS81E8106500221;FRS81E8106500211;FRS81E8106500212", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24864093503, + 43.60177362543 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bois Guillerot;IONITY Bois Guillerot", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "ref": "FRIOYE412304;FRIONE412300;FRIOYE412301;FRIOYE412302;FRIOYE412303;FRIOYE412351;FRIOYE412352;FRIOYE412353", + "owner:ref:FR:SIREN": "838436145", + "start_date": "2020-03-14;2019-11-22", + "opening_hours": "24/7", + "network": "Bois Guillerot;IONITY GMBH", + "operator": "IONITY", + "ref:EU:EVSE": "FRIOYE412304;FRIONE412300;FRIOYE412301;FRIOYE412302;FRIOYE412303;FRIOYE412351;FRIOYE412352;FRIOYE412353", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745000000, + 47.03076800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BARENTON - Mairie", + "ref:EU:EVSE": "FRS50P50720001", + "network": "e-charge50", + "start_date": "2016-10-28", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83277760000, + 48.59921630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Verneuil-l'Etang;VERNEUIL-L'ETANG - Rue De L'Égalité", + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61B1QR8NPNPA5FB6XD", + "network": "Ecocharge77", + "capacity": "2", + "start_date": "2016-08-10;2023-05-23", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77493A;FRS77E77493001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83540500000, + 48.64466100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS VOLCANS D'AUVERGNE OUEST PL", + "capacity": "16", + "owner:ref:FR:SIREN": "531681219;531681217;531681215;531681216;531681214;531681213;531681209;531681207;531681206;531681205;531681204;531681208;531681211;531681210;531681212;531681218", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-03-03;2023-05-04;2023-11-08;2023-07-20", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080175", + "ref": "FRHPCPNF080175", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11230000000, + 46.05840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E246263;FRS41E246264", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E246263;FRS41E246264", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SOUESMES - Rue des Seigneurs", + "start_date": "2024-05-04", + "description": "MODULO - SOUESMES - Rue des Seigneurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17862100000, + 47.45775400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PNAKFKG", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21889", + "capacity": "3", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/NAKFKG", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77069000000, + 47.64550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/BSV6PWXBFW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1797408038920963474", + "ref": "892884" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07812200000, + 49.24125500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-27", + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659000, + 48.83126610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Opel - HESS - Metz", + "amenity": "charging_station", + "start_date": "2020-01-29", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPHESSOPEL571401", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15858000000, + 49.15338800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76682001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SOTTEVILLE SOUS LE VAL - Allée Des Cerisiers", + "charging_station:output": "22 kW", + "start_date": "2024-06-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12503000000, + 49.31964900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P9195725443277338313", + "description": "Leclerc/F1FD6Q9XWL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446696" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17782100000, + 47.01083200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-04-01", + "charging_station:output": "3.7 kW;22 kW", + "ref:EU:EVSE": "FRS33PMB3312212;Non concerné;FRS33PMB3312211", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "description": "MOBIVE | Saint laurent Medoc | Rue Camille Maumey - Parking Place du 8 Mai-Rue Fontain;SAINT LAURENT MEDOC - RUE CAMILLE MAUMEY / PARKING PLACE DU 8 MAI-RUE FONTAIN", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "ref": "8fb9ff04-0134-593a-910d-c11a9ccd4d41;FR*SOD*S*MB33*122*1*_*_", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82210200000, + 45.14931500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS95E95592001", + "start_date": "2024-08-05", + "charging_station:output": "22 kW", + "description": "SERAINCOURT - Rue des Vallées" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86565300000, + 49.03554200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "BAZALP LYON ST BONNET DE MURE ", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2024-01-16", + "ref:EU:EVSE": "FRSITE00000190" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01245000000, + 45.69759000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/ZJ0HFJ186C", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P7482176106623519052", + "charging_station:output": "22 kW", + "ref": "454377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559500000, + 43.73217700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PYJVZYZLZON", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Chateauneuf-Les-Martigues, Place des Résistants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16293400000, + 43.38278200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P6822088546667640046;FRS89P7184986307787213378;FRS89P6565992239583395685", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW;22 kW", + "description": "SDEY/DPTFW3WTSR;SDEY/OSPWWGX5NY;SDEY/ZV712M4PDY", + "ref": "402710;402578;402482" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15581300000, + 47.58124400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ4111;FRA16PWIIZ4112", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "THEOULE PARKING PLACE GENERAL BERTRAND", + "start_date": "2018-07-03", + "ref": "FR*SOD*S*WIIZ*41*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93953100000, + 43.50598900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "485151", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "We,Th,Fr,Sa,Mo,Tu 09:00-18:00", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/TXOQTWENWY", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5117428410931950956" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87933800000, + 48.93416800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "description": "Parc Commercial de la Frugière - Privas", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-09-05", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PRTLPRV", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60621274576, + 44.71827157552 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref": "CY2ZODO2QU;346655", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPCY2ZODO2QU;FREBNP7153675694782888049", + "description": "Challes-Les-Eaux, Rue du Dr Rochefrette Pkg. Poste;Réseau eborn/CY2ZODO2QU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98343800000, + 45.54879000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/7B938667-9236-449E-9823-D2321551F3B9", + "ref": "1079325", + "capacity": "7", + "ref:EU:EVSE": "FREVZP8151051909438765612", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26591700000, + 49.14980600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "CAMPING LAC DE SANGUINET", + "ref": "FR*SOD*S*OTHR*647*1*_*_", + "start_date": "2023-06-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR64711;FROTHPOTHR64712", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09236800000, + 44.48197000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPWNCHD87MLT", + "ref": "WNCHD87MLT;106949", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Valleiry, Rue De La Gare;Réseau eborn/WNCHD87MLT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96791000000, + 46.10947000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/HLF6XDN9UE", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPHLF6XDN9UE", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "32662" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65860500000, + 45.22726400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "description": "ES/ PARKING NAUTILAND", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*339*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR33912;FROTHPOTHR33911", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-03-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79421000000, + 48.81579400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSONRM5K2ICQG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2549708709454407855", + "ref": "1114206", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24108100000, + 49.09640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1602", + "charging_station:output": "7 kW;3 kW", + "ref": "FR*V75*PPX16*02", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Avenue Raphaël 20", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26788100000, + 48.85926000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLU851GEA1BUCD", + "capacity": "2", + "amenity": "charging_station", + "ref": "1084797", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6165475916559100212", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83869600000, + 48.49531900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:30, Tu 08:00-12:00, Tu 14:00-18:30, We 08:00-12:00, We 14:00-18:30, Th 08:00-12:00, Th 14:00-18:30, Fr 08:00-12:00, Fr 14:00-18:30, Sa 09:00-12:00, Sa 14:00-17:30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPGRIMBMW260001", + "charging_station:output": "50 kW;200 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-09-19", + "description": "BMW - Valence", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88588200000, + 44.90215700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PVERNONPHAUGUSTE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "start_date": "2016-07-09;2016-07-08", + "description": "900048", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48331600000, + 49.09347000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS22E22122001", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Laurenan-D16 - parking salle des fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.53545000000, + 48.19863100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Intermarché - Courtisols ;Intermarché - Courtisols", + "start_date": "2022-05-12;2021-09-08", + "description": "Intermarché - Courtisols - 7.4kW AC ", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZIME22AC77565;FRZIME22AC77564;FRZIME22AC131600;FRZIME22AC131601", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "348753575", + "ref": "77565;131600;131601;77564", + "operator": "ZEBORNE", + "opening_hours": "Mo-sat 09:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50245680000, + 48.98744470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRROSE25", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "portdelille1", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "start_date": "2020-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03429700000, + 50.63118600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78123002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CARRIERES-SOUS-POISSY - Rue du Stade", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04473925215, + 48.94917102154 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "start_date": "2022-04-10", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIOYE412506;FRIOYE412505;FRIOYE412504;FRIOYE412501;FRIOYE412551;FRIOYE412552;FRIOYE412553", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE412506;FRIOYE412505;FRIOYE412504;FRIOYE412501;FRIOYE412551;FRIOYE412552;FRIOYE412553", + "opening_hours": "24/7", + "network": "l'Isle-d'Abeau", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "l'Isle-d'Abeau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21307381000, + 45.61193232000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS52P1343252561142922328", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDED52/JKZFBQGI7U", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "378636" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58423600000, + 48.19971700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65440005", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "TARBES - place du Foirail", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08329000000, + 43.22965000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Saint Hilaire du Harcouët", + "amenity": "charging_station", + "ref": "FRIENE005502;FRIENE005501", + "description": "Saint Hilaire du Harcouët", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE005502;FRIENE005501", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11478600000, + 48.57378600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34321001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "VALERGUES - Chemin Des Cazals" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06358333333, + 43.66937780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "COURGEOUT", + "ref": "SE61-COGE-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61130A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48976200000, + 48.50975100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892056", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1234514717746135676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLHUFEKVP2OW7B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37201900000, + 48.70598900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PASPECT", + "start_date": "2017-06-26", + "ref": "aspect;38848", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Aspet, Armand Latour;Roulez Électrique En Haute-Garonne/aspect", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80060000000, + 43.01470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92004004", + "capacity": "0", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - Rue de Normandie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28494800000, + 48.90618600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "amenity": "charging_station", + "capacity": "1", + "network": "Logis Hôtel L'Auberge du Colombier - 62340 - Borne 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Logis Hôtel L'Auberge du Colombier - 62340 - Borne 2", + "ref:EU:EVSE": "FRCG0E000138", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000138" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87079800000, + 50.86955200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*117*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - PARKING FERBER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-15", + "ref:EU:EVSE": "FRM06PNICE11722;FRM06PNICE11721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22851300000, + 43.67624700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Pouillon | Parking du Collège", + "operator": "199__SYDEC40", + "ref": "fe8e7111-b4c7-524a-8448-ac2a13c7b906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99688000000, + 43.60643800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FREISTROFF / RUE ROBERT SCHUMAN", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE57FABA", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-11-30", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48963600000, + 49.28168700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "196954;196955;196953;196956", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS196954;FRBMPS196955;FRBMPS196956;FRBMPS196953", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Netto - Andernos-les-Bains", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10271470000, + 44.74536640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3437EVCP03;LFR3437EVCP02;LFR3437EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "ALBERT Faidherbe", + "ref": "LFR3437EVCP03;LFR3437EVCP02;LFR3437EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66692000000, + 50.00860800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Marseille-8E, Boulevard Edouard Herriot", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PTPQ3LRWKOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39010500000, + 43.27277800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "description": "Évry-Courcouronnes - Rue Ambroise Paré", + "operator:email": "cpo@citeos.com", + "ref": "20e2138c-8d67-5eda-b20f-9eebea59f52c", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41348500000, + 48.61623900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RUE DES FILLES - AVIGNON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref:EU:EVSE": "FR55CP84000AVGRUEDEF1LLES", + "capacity": "1", + "start_date": "2020-11-13", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84000*AVG*RUEDEF1LLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87664900000, + 43.92581300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR4045EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4045EVCP01", + "description": "PEYREHORADE - Bayonne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11433700000, + 43.54761000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "start_date": "2021-10-12", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUTLG", + "opening_hours": "24/7", + "description": "Super U - Talange", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17595840000, + 49.24240330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/OZC3CQY0LP;Saou, Le Village", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "OZC3CQY0LP;32725", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPOZC3CQY0LP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06274700000, + 44.64652900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "socket:type2_combo:output": "400 kW", + "charging_station:output": "400 kW", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "description": "Fastned Puiseux Pontoise", + "network": "Fastned Puiseux Pontoise", + "start_date": "2024-07-25", + "owner:ref:FR:SIREN": "853300010", + "ref:EU:EVSE": "FRFASE33263;FRFASE336263", + "ref": "FRFASE33263;FRFASE336263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00109100000, + 49.06008900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E060590011;FRP01E06059001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-12-12", + "capacity": "10", + "description": "Parking de Eze - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36198900000, + 43.72956100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Suze-La-Rousse, 621 Avenue Des Côtes Du Rhône;Réseau eborn/HANDNASEFE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPHANDNASEFE", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "102605;HANDNASEFE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83885100000, + 44.28837100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Romans-Sur-Isère, Parking Jacquemard;Réseau eborn/TWVNEL", + "opening_hours": "24/7", + "ref": "75134;TWVNEL", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPTWVNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04918000000, + 45.04480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ES/ TOPAZE", + "start_date": "2022-08-24", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR46091;FROTHPOTHR46081;FROTHPOTHR46071;FROTHPOTHR46021;FROTHPOTHR46011;FROTHPOTHR46031;FROTHPOTHR46041;FROTHPOTHR46051;FROTHPOTHR46061", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*460*6*_*_;FR*SOD*S*OTHR*460*1*_*_;FR*SOD*S*OTHR*460*2*_*_;FR*SOD*S*OTHR*460*3*_*_;FR*SOD*S*OTHR*460*4*_*_;FR*SOD*S*OTHR*460*5*_*_;FR*SOD*S*OTHR*460*7*_*_;FR*SOD*S*OTHR*460*8*_*_;FR*SOD*S*OTHR*460*9*_*_", + "network": "ES B2B", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47801100000, + 48.46304100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P2960738088989204894", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/UAYALWREG0", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "419148", + "charging_station:output": "50 kW;44 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01062100000, + 43.14269000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10008907;FRUBIE10031802;FRUBIE10062651;FRUBIE10062691", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Rue de Mondeville - Aquabowling", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26180400000, + 49.64230200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P6213158097564904125", + "ref": "529076", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "description": "Freshmile/AARDMXKVYP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14463300000, + 48.09159800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLOMIERS - Place de l'Aveyron", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31149058", + "charging_station:output": "22 kW", + "start_date": "2022-05-13", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33823000000, + 43.60827000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1311011432289703335", + "description": "Freshmile France/E2ZYVDEZCI", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "597780", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.58927200000, + 16.25229400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P7388729392732199540", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1168098", + "charging_station:output": "7.4 kW", + "description": "MobiSDEC/LLW545C4H2K59L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24651600000, + 49.13454500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NatUp", + "ref:EU:EVSE": "FRZP1P131658;FRZP1P131659", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "775701097", + "capacity": "1", + "ref": "499446fe-641b-4a99-9b8c-12cd9a4af203", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "NatUp", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09940700000, + 49.47681700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SALLELES D'AUDE - Parking Rue De L'Horts", + "ref:EU:EVSE": "FRS11E11369001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94888888889, + 43.25555560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78062002", + "operator:email": "support@alizecharge.fr", + "description": "BEYNES - Route de Frileuse", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88617000000, + 48.85156000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "operator": "49__VILLE DE NANCY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "d9f90073-7d59-5cb2-bdbf-746afd3fa8fd", + "description": "VILLE DE NANCY - Parking Stanislas +2 - Nancy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18473700000, + 48.69228900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66247001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "TROUILLAS - Avenue Du Monastir", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81139800000, + 42.60748300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-28", + "operator": "Bouygues E&S", + "description": "HOUDAIN - Place de la Marne", + "ref:EU:EVSE": "FRH13E62457001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54895900000, + 50.45645500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "ST AUBIN D AUBIGNE - 9 rue de rennes ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35251001B1", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60637800000, + 48.26126300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63075A", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Chamalieres - Fournier;SIEG 63/FR*S63*P63075*A", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "43 kW;50 kW;25 kW;22 kW", + "socket:type2_combo:output": "25 kW;50 kW", + "start_date": "2023-01-04;2023-02-27", + "ref": "518282", + "capacity": "1;6", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06895500000, + 45.77650300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3563205683231514240", + "ref": "346526", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/YXBALB", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17900800000, + 45.69340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/DTWFUM", + "ref": "21848", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32PDTWFUM", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08563000000, + 43.65700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "PANTIN - Rue Candale", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2023-08-02", + "ref:EU:EVSE": "FRSIPE93055008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41416771683, + 48.88900273079 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SARL Mervaille-Bocquelet - 63690 - 1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCG0E001180", + "start_date": "2024-08-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E001180", + "network": "SARL Mervaille-Bocquelet - 63690 - 1", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53867100000, + 45.55109300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING DELFINO", + "start_date": "2023-06-12", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*233*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE23311;FRM06PNICE23312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28928722209, + 43.70394680580 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Colayrac | Place de la Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "fd1aae20-7160-5c9f-955b-e6c0c0647541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55405300000, + 44.22177900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE37311;FRSIGPSIGE37312", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*373*1*_*_", + "description": "SIGEIF - 64 QUAI DE SEINE PARKING DE LA MAIRIE - LA FRETTE SUR SEINE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17747000000, + 48.97470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ISNEAUVILLE - Parking relais Plaine de la Ronce", + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-25;2022-10-13", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC01E76377001", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14298620000, + 49.49074220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ST GILLES", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR1114EVCP03;LFR1114EVCP02;LFR1114EVCP01", + "ref": "LFR1114EVCP03;LFR1114EVCP02;LFR1114EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91158200000, + 46.69473800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "0c928628-a3bc-5266-81c7-57327e8eba7e", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Port des Barques | Place de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07921700000, + 45.94728400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS82PDURFORT", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/durfort", + "ref": "38956" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15500000000, + 44.18640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84740*VLR*V1LLAGE", + "start_date": "2021-07-08", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "LE VILLAGE - VELLERON", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP84740VLRV1LLAGE", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02716800000, + 43.95515200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3982EVCP04;LFR3982EVCP03;LFR3982EVCP02;LFR3982EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3982EVCP04;LFR3982EVCP03;LFR3982EVCP02;LFR3982EVCP01", + "description": "PAIMPOL - Pellier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03974700000, + 48.76797900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Intermarché - Lillebonne", + "start_date": "2023-01-04", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMLLB", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53151700000, + 49.51615500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP2795182729053992915;FREBNPMTR64UDKFK", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "ref": "346817;MTR64UDKFK", + "description": "Réseau eborn/MTR64UDKFK;Polignac, Parking maison communal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85666000000, + 45.06895000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRETIP69277A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "e-Totem - Hôtel ParkEst", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP69277A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97719147409, + 45.72470506065 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Clinique Esquirol Saint Hilaire ELSAN - Agen", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRPD1PCLIEAG", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62922590000, + 44.18594390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Saint-Pourcain-sur-Sioule", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-05-03", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT035001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28215000000, + 46.31033500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-12-18", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPFIRIM", + "description": "Firminy - Intermarché", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27574300000, + 45.37728100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*574*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR57421;FROTHPOTHR57422", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "start_date": "2023-02-17", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "BRICOMARCHE - ROCHEFORT", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97671900000, + 45.95663300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22671040000, + 49.96629260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "description": "ITM PUYLAURENS BRVE ITM 81", + "ref": "FRCPIE6761165", + "capacity": "2", + "amenity": "charging_station", + "network": "ITM PUYLAURENS BRVE ITM 81", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6761165", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00549400000, + 43.56734000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P35112267473369650", + "network": "Freshmile France", + "ref": "998814", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLP6O47K21Q7K9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18367600000, + 48.89338200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "amenity": "charging_station", + "start_date": "2021-04-23", + "description": "Paris | Rue Fabert 22", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9007*05", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900705", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31144092000, + 48.86065710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477699", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4996471299646743435", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SLAMWPZJFU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49093800000, + 43.50497900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Strasbourg", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP1761", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70205400000, + 48.53404100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "346265", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PGPGPUMXHP", + "ref:EU:EVSE": "FRFR1P575618065271531651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12055000000, + 49.04690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "reseau A", + "charging_station:output": "7 kW", + "operator:email": "gregoire.schaffhauser@freshmile.com", + "capacity": "2", + "description": "camping pendruc Tregunc", + "operator": "freshmile", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR1EKAFD1", + "ref": "5b9d993c-4996-4fba-b010-3c9b58a8f8a4", + "owner:ref:FR:SIREN": "453386120", + "start_date": "2023-07-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.88000000000, + 47.84000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/O5K3TST9TA", + "ref:EU:EVSE": "FRS14P3373565794794329114", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "ref": "541943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847300000, + 48.86885100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-22", + "ref:EU:EVSE": "FRS12E12216001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "ST COME D'OLT - Stade de foot", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81366600000, + 44.51709800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "description": "WAAT/FRWATL0YJ2UC6M", + "ref:EU:EVSE": "FRWA5P724621146456106967", + "ref": "805257", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174000000, + 45.65393500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18;2021-04-27;2024-05-17", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "SAUMUR - Parking Rue Chumeau;OuestCharge - Diva Sp - Saumur - Chumeau", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49328004;FRS49P49328D", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09075700000, + 47.24943500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-25", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81092002", + "description": "FIAC - Rue du Colombier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90583000000, + 43.70179000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF007451", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "ref:EU:EVSE": "FRHPCENF007451", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "network": "TotalEnergies Charge Rapide", + "description": "LES TERRES DE GRAVES SUD", + "capacity": "9", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "start_date": "2019-07-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43699500000, + 44.64573500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46089001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-05-25;2021-11-03", + "description": "DURAVEL - Place de la mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08178100000, + 44.51663200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25055", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PLQHUAW", + "description": "Mobilité électrique 56/LQHUAW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.28161000000, + 47.97780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "VIEUX CONDE - Place Vermeersch", + "ref:EU:EVSE": "FRH03E59616001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56909800000, + 50.45948400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plounevez Lochrist-Place de la Mairie", + "ref:EU:EVSE": "FRS29E2920600", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21142900000, + 48.61740500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RUNGIS - Voie au Lard ", + "ref:EU:EVSE": "FRSIPE94065001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34755700000, + 48.75019000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90295485", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - B&B HOTEL RENNES NORD SAINT-GRÉGOIR", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69936100000, + 48.15589600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Saint Jean de Côle | Parking Tennis", + "opening_hours": "24/7", + "ref": "421bce8b-a199-58fe-903f-e83ba9da85c4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84061100000, + 45.41983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-09-02", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - SIGEIF- RUE DU 11 NOVEMBRE - CHELLES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE48611;FRSIGPSIGE48612", + "ref": "FR*SOD*S*SIGE*486*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59495400000, + 48.87789400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOULINS", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-10-20", + "ref:EU:EVSE": "FRALLPEVCARSMLINS", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34353000000, + 46.53960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "FRLIBP003740000001898;FRLIBP003740000005479", + "capacity": "2", + "description": "ITM GUERIGNY;CARREFOUR CONTACT RINXENT", + "amenity": "charging_station", + "network": "ITM GUERIGNY;CARREFOUR CONTACT RINXENT", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "ref:EU:EVSE": "FRLIBP003740000001898;FRLIBP003740000005479", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22983110000, + 47.43188700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "accb821b-e468-5028-9b60-f01ed54f8e99", + "description": "MOBIVE | Pontacq | Rue du Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11323400000, + 43.18477600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES SABLES D'OLONNE (CHATEAU-D'OLONNE) - Parking De Tanchet", + "ref:EU:EVSE": "FRS85E85060002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75910000000, + 46.48123100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Allego FR, Fournier, TJ2 Limoges", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRALLEGO8009971;FRALLEGO8009962;FRALLEGO8009961;FRALLEGO8009911;FRALLEGO8009912;FRALLEGO8009972", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO8009971;FRALLEGO8009962;FRALLEGO8009961;FRALLEGO8009911;FRALLEGO8009912;FRALLEGO8009972", + "start_date": "2024-05-06", + "network": "Allego FR, Fournier, TJ2 Limoges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26339100000, + 45.87089550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST MARCELLIN Romans", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3037EVCP02;LFR3037EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3037EVCP02;LFR3037EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31287100000, + 45.14820500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "description": "La Boucherie - Epinal", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PLBCEPI", + "start_date": "2021-06-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47504900000, + 48.19843060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPYMTDSVDIJN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "YMTDSVDIJN;32656", + "start_date": "2020-06-21", + "description": "Réseau eborn/YMTDSVDIJN;Privas, Avenue de l'Europe Unie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59843800000, + 44.73418100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP2146414642480683787", + "capacity": "2", + "description": "CARF - Bornes Publiques/4E5A40E1-AB25-4ADD-A460-22AA8193CB6F", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "674633", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59311000000, + 44.08989700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Flash Lavage - Tarbes", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PFLSTRB", + "capacity": "4", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2022-05-24", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05605400000, + 43.23703800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-19:30, Tu 08:00-19:30, We 08:00-19:30, Th 08:00-19:30, Fr 08:00-19:30, Sa 08:00-19:30, Su 09:00-18:00", + "description": "Leroy Merlin - Ajaccio", + "ref:EU:EVSE": "FRE11PLMAJACCIO200901", + "charging_station:output": "22.08 kW", + "start_date": "2017-10-23;2023-05-17", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.77347000000, + 41.95060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRETIP01043A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - DASSIN Première Classe Beynost", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP01043A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99229790233, + 45.82232763632 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-16", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*144*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR14412;FROTHPOTHR14411", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCVL - POLLIONNAY - CHEMIN DES PRESLES", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65899600000, + 45.76257100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GïTES STATION 1", + "amenity": "charging_station", + "capacity": "1", + "description": "GïTES STATION 1", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6942635", + "ref:EU:EVSE": "FRCPIE6942635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.99208400000, + 47.96369100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6560714839721903941", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YSWOWTKK1A", + "ref": "466299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60300000000, + 46.30750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "50 kW;22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - LOGIS HOTEL LA MIRE", + "start_date": "2024-06-27", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP643148;FRVIAP643147;FRVIAP643146;FRVIAP643145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05029100000, + 47.20787800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "541799", + "description": "Freshmile France/LLSVKH", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7297468981121672130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33588000000, + 41.69320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-02-13", + "amenity": "charging_station", + "opening_hours": "Mo 07:30-12:00, Mo 14:00-19:00, Tu 07:30-12:00, Tu 14:00-19:00, We 07:30-12:00, We 14:00-19:00, Th 07:30-12:00, Th 14:00-19:00, Fr 07:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-17:00", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Bourg-en-Bresse", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW014401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20996400000, + 46.21980600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/JGHSSGGSHZ", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P409563541309910613", + "ref": "782358" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39932900000, + 48.07686400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E130159", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E130159", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SAINVILLE - Pl. Farcot", + "description": "MODULO - SAINVILLE - Pl. Farcot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87900427000, + 48.41627470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/CKEU2AXBPX", + "capacity": "2", + "amenity": "charging_station", + "ref": "461676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P7421756531094116956", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36663300000, + 49.18668000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWA6LQLBXZ11E", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P5725254685205850771", + "operator:email": "exploitation@waat.fr", + "ref": "1127931" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69831600000, + 43.44990500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50359001", + "network": "e-charge50", + "start_date": "2017-11-21", + "operator": "Total marketing france", + "description": "MORTAIN BOCAGE - place du Château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94497900000, + 48.64878640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2023-11-16", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "RIVIERES - Rue du Grand Galion", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8122500122;FRS81E8122500121;FRS81E8122500112;FRS81E8122500111", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98274800000, + 43.90883500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRHPCPNF072380", + "amenity": "charging_station", + "start_date": "2023-06-15;2020-12-14", + "owner:ref:FR:SIREN": "531680537;531680536;531680538;531680539;531680540;531680541", + "opening_hours": "24/7", + "description": "RELAIS IVRY SUR SEINE STADE", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37630000000, + 48.80600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Angers - Ney;ANGERS - Place Ney - Place R. Toublanc", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-28;2024-04-04", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49007016;FRS49P49007P", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54348900000, + 47.48037400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "48973", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PBEAUVAISPARIS", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Beauvaisparis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08209000000, + 49.42640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH07E59456001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PECQUENCOURT - Rue d'Anchin", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21596860000, + 50.37791290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BOUILLARGUES - Parking De L'Europe", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30047001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42502800000, + 43.80007500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/PTAZYC", + "ref": "251911", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PPTAZYC", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82905000000, + 47.88150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90190058", + "capacity": "29;27;26;28", + "description": "ENGIE Vianeo - Hôtel Campanile Reims Est", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073389;909073388;909073390;909073391", + "start_date": "2024-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07318100000, + 49.21763300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93070A", + "description": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Entrepôts", + "start_date": "2021-10-06", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34675284000, + 48.90321820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Shell Aire de Ostwald HW", + "start_date": "2023-05-22", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "ref": "FRSHEE212;FRSHEE78", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;175 kW", + "capacity": "3", + "description": "Shell Aire de Ostwald HW", + "ref:EU:EVSE": "FRSHEE212;FRSHEE78", + "opening_hours": "24/7", + "charging_station:output": "175 kW;50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71728796000, + 48.53861121000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E14754001", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-04-15", + "description": "VILLERS-SUR-MER - Villers 2000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00732780000, + 49.32762530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A5 Chateauvillain Val Marnay", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89369682", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-02", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95913800000, + 48.05740400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Oradour Sur Glane | Place de L'Europe", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "676dcb14-ac8c-5b33-a949-c6a94cef2b42", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03264600000, + 45.93269900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "description": "Parc - SAINT PAUL", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE60SABA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87253000000, + 49.44056200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9000981;FRALLEGO9000982", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-05-20", + "network": "Allego Carrefour Nevers", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9000981;FRALLEGO9000982", + "description": "Allego Carrefour Nevers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10727900000, + 46.99798800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3411EVCP02;LFR3411EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "DREUX Leclerc", + "ref:EU:EVSE": "LFR3411EVCP02;LFR3411EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38832100000, + 48.74258300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Marseille-15E, Chemin des Bourrely", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PKLJUML34FA", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36197200000, + 43.37978100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPSAINTGERANDLP", + "ref": "saintgerandlp;231535", + "description": "Saint-Gérand-le-Puy, Maurice Dupont;Réseau eborn/saintgerandlp" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51176000000, + 46.25930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Freshmile France/LLVM62GNB2PLGL", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7275064566714694971", + "socket:type2_combo:output": "120 kW", + "ref": "1138338", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85517500000, + 47.66109200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Intersport Sarrebourg (57)", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "11", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-09-30;2024-09-26", + "ref:EU:EVSE": "FRPD1PINTSAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07758799766, + 48.73749393984 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "96092", + "ref:EU:EVSE": "FREBNPTCHFTRZXQR", + "description": "Réseau eborn/TCHFTRZXQR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20852700000, + 45.94835000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7.4 kW;50 kW;360 kW;43 kW", + "network": "Road", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP3290555927334929180", + "opening_hours": "Mo,Fr,Sa,Th,We,Su,Tu 08:00-18:00", + "ref": "1078062", + "capacity": "10", + "operator:email": "roaming-dev@road.io", + "description": "Road/660548f47019dd001bad9a86", + "operator": "Road | FR*EFL", + "socket:type2_combo:output": "50 kW;360 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53354100000, + 44.78865300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*256*3*_*_;FR*SOD*S*OTHR*256*2*_*_;FR*SOD*S*OTHR*256*15*_*_;FR*SOD*S*OTHR*256*13*_*_;FR*SOD*S*OTHR*256*1*_*_;FR*SOD*S*OTHR*256*10*_*_;FR*SOD*S*OTHR*256*11*_*_;FR*SOD*S*OTHR*256*12*_*_;FR*SOD*S*OTHR*256*14*_*_;FR*SOD*S*OTHR*256*16*_*_;FR*SOD*S*OTHR*256*4*_*_;FR*SOD*S*OTHR*256*5*_*_;FR*SOD*S*OTHR*256*6*_*_;FR*SOD*S*OTHR*256*7*_*_;FR*SOD*S*OTHR*256*8*_*_;FR*SOD*S*OTHR*256*9*_*_", + "start_date": "2021-10-20", + "description": "AU MARCHE SAVOYARD - SAINT-ALBAN-LEYSSE", + "network": "AU MARCHE SAVOYARD", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR25691;FROTHPOTHR25671;FROTHPOTHR25661;FROTHPOTHR25651;FROTHPOTHR25641;FROTHPOTHR25631;FROTHPOTHR256161;FROTHPOTHR256151;FROTHPOTHR256141;FROTHPOTHR256121;FROTHPOTHR256101;FROTHPOTHR25611;FROTHPOTHR256111;FROTHPOTHR256131;FROTHPOTHR25621;FROTHPOTHR25681", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95675200000, + 45.57282200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6603715;FRCPIE6603765", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "SONEPAR CONNECT LA RETARDAIS 2", + "ref": "FRCPIE6603715;FRCPIE6603765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72976300000, + 48.10630200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GQOVRUFGXB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6939368513240415525", + "opening_hours": "24/7", + "ref": "482016", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22000300000, + 48.88582300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "charging_station:output": "11 kW;7.4 kW", + "amenity": "charging_station", + "ref": "1132461", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P391051476267157119", + "operator:email": "exploitation@waat.fr", + "capacity": "40", + "operator": "WAAT SAS | FR*WA2", + "description": "WAAT/s513271" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99266900000, + 48.70713600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5833072045224101977", + "operator:email": "roaming@freshmile.com", + "ref": "1168503", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLYZRLTNU1162S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60300000000, + 44.84842000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "EVBOX 22 CITROEN VETRAZ", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref": "1234625680", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSWSE1234625680", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2024-03-05", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27278200000, + 46.18658000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLL0MKNS52LTCG", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2878228422221570744", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892602", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.47620900000, + -17.77214600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Kia - Europ Auto - Boulogne sur Mer", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "start_date": "2020-01-08", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPEUROPAUTOKIA623611", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60871900000, + 50.69501600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS28ESDE28VOV3B1P1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "lionel.chauvet@energie28.fr", + "owner:ref:FR:SIREN": "200080869", + "start_date": "2021-05-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FR*S28", + "description": "Parking de la Piscine municipale ", + "operator": "ENERGIE EURE-ET-LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63147300000, + 48.27611000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "socket:type2:output": "22kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20569586687, + 49.97159862216 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "74990", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1973102560893352695", + "description": "SDEA 10/E3LX6DF0I4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11020700000, + 48.23570800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Logis Hostellerie d'Aussois", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Hostellerie d'Aussois - 22 kW AC", + "owner:ref:FR:SIREN": "380904185", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "8190b4f9-2e1d-4d7c-86ec-5f6ff708b5b8", + "ref:EU:EVSE": "FRZP1PEAC97623;FRZP1PEAC113431;FRZP1PEAC66771", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32082573000, + 47.49183399000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE630", + "operator:email": "info@rossinienergy.com", + "description": "E_Emeraude_Echire", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265959;839265958", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43105780000, + 46.36210040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77483A", + "description": "Vareddes - Ourcq", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-05-15", + "ref": "5d8a49fd-1898-4bcc-a6a1-d81d5714abae", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92602300000, + 49.00496100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MC DONALDS - PAMIERS", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref": "FR*SOD*S*FAST*142*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST14211;FRIZFPFAST14212;FRIZFPFAST14213", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62946667725, + 43.10327159982 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ROMORANTIN LANTHENAY - Pkg. fosse aux lions", + "capacity": "2", + "description": "MODULO - ROMORANTIN LANTHENAY - Pkg. fosse aux lions", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4547;FRS41E4548", + "ref": "FRS41E4547;FRS41E4548" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74086100000, + 47.35818600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "598206", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/YRFB4AHDMK", + "ref:EU:EVSE": "FRS60P5299183155545736683" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15787300000, + 49.41882300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON5622;FRGLYPLYON5611;FRGLYPLYON5612;FRGLYPLYON5621", + "description": "SPR02 - PORTE DES ALPES", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-02-19", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*56*2*_*_;FR*SOD*S*LYON*56*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92677920779, + 45.71819665624 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30284001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT MARTIN DE VALGUAGUES - Parking De L'Avenue Du 8 Mai 1945", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08338800000, + 44.16146000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Val d'oust - Place de l'église", + "start_date": "2018-08-24", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PMNEHHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.42267800000, + 47.86685100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RLWJHC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6514447252558353521", + "network": "Freshmile France", + "ref": "1009212", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.31830000000, + -20.94550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "Mobilygreen CPO/b4a3535c-661e-4f88-9d5f-1b5eb1d04886", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "470247", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMW1P150866428399218158", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16030000000, + 50.21620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - AV DE LATTRE DE TASSIGNY - MEUDON", + "ref:EU:EVSE": "FRSIGPSIGE19322;FRSIGPSIGE19321;FRSIGPSIGE19312;FRSIGPSIGE19311", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*193*2*_*_;FR*SOD*S*SIGE*193*1*_*_", + "start_date": "2022-01-18;2021-09-22", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23006830000, + 48.78632370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCG0EE001704;FRCG0E001706;FRCG0E001705;FRCG0E001701;FRCG0E001702;FRCG0E001703", + "start_date": "2024-01-11", + "network": "Fermette - 73640 - 2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCG0EE001704;FRCG0E001706;FRCG0E001705;FRCG0E001701;FRCG0E001702;FRCG0E001703", + "charging_station:output": "11 kW;2 kW", + "operator:email": "info@chargeguru.com", + "description": "Fermette - 73640 - 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76887100000, + 45.61749600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89899415", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Cherbourg", + "start_date": "2024-01-19", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60646400000, + 49.61663100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref": "fe355529-0352-53be-b6d2-ebc654f385d3;FR*SOD*S*MB40*72*1*_*_", + "ref:EU:EVSE": "FRS40PMB407212;FRS40PMB407211;Non concerné;FRS40PMB407213;FRS40PMB407214", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "start_date": "2020-06-10", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "description": "MOBIVE | Ondres | Place Richard Feuillet;ONDRES - PLACE RICHARD FEUILLET", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44648100000, + 43.56206500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "operator": "STATIONS-E", + "description": "Salle des fêtes - Pont de Metz", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE80PABA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24511500000, + 49.87634900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9007352;FRALLEGO9007351;FRALLEGO9007122;FRALLEGO9004001;FRALLEGO9004002;FRALLEGO9007121", + "amenity": "charging_station", + "start_date": "2024-05-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9007352;FRALLEGO9007351;FRALLEGO9007122;FRALLEGO9004001;FRALLEGO9004002;FRALLEGO9007121", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Champs-sur-Marne", + "description": "Allego Carrefour Champs-sur-Marne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58281300000, + 48.85430800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3946EVCP02;LFR3946EVCP01", + "capacity": "4", + "ref": "LFR3946EVCP02;LFR3946EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "STRASBOURG Eberts" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74262000000, + 48.55349100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MURVIEL LES MONTPELLIER - Rue Lucie et Raymond Aubrac ( Parking école )", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRM34E34179001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73527480000, + 43.60461920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/TMF2EKI4VW;La Salle-En-Beaumont, RN85", + "ref:EU:EVSE": "FREBNPTMF2EKI4VW", + "charging_station:output": "50 kW;43 kW", + "capacity": "2;3", + "ref": "134752;TMF2EKI4VW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86115000000, + 44.86440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLUQW1D532JF2F", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4264385395885873465", + "ref": "1060062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69617800000, + 43.40999400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2020-11-25;2023-03-06", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LA GARENNE-COLOMBES - Liberté", + "capacity": "10", + "ref:EU:EVSE": "FRP07E92035001;FRP07E920350011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24609000000, + 48.90979500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/LLTHE8SGP265QF;Passy, Parking du Boulodrome", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "1162623;LLTHE8SGP265QF", + "ref:EU:EVSE": "FREBNPLLTHE8SGP265QF;FREBNP3517674094659874083", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71308800000, + 45.92018300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-04-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPDRULE", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "capacity": "9", + "operator": "ELECTRA", + "description": "Drumettaz-Clarafond - E.Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91307100000, + 45.65572600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E78389001", + "description": "Parking gare de Montfort-l'Amaury-Méré P2 - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81526550000, + 48.80142920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED CGED MARSAC", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED CGED MARSAC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6637615", + "start_date": "2022-10-12", + "ref": "FRCPIE6637615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66442400000, + 45.19831200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "description": "La Baule , Parking Gare SNCF Nord", + "owner:ref:FR:SIREN": "901772400", + "network": "Easycharge services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref:EU:EVSE": "FRECHPYBYC4VCVNS", + "ref": "YBYC4VCVNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39248398000, + 47.28905418000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1712", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris | Avenue de la Grande Armée 40", + "ref": "FR*V75*PPX17*12", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28840000000, + 48.87600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626300", + "description": "Freshmile France/VNGYVMGGN2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "opening_hours": "Th,Tu,Mo,We,Fr 14:00-18:00,Sa 09:00-11:00,We,Th,Fr,Tu,Mo 08:00-11:00,Sa 14:00-17:00", + "ref:EU:EVSE": "FRFR1P2714496739712782732", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58571600000, + 44.86231700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9016*05", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Avenue Paul Doumer 24", + "ref:EU:EVSE": "FRV75P901605", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28308000000, + 48.86101600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892392", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/LLJMJOVCZ1VWQV", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4106885478739808561" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08606400000, + 48.83871100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW - Cholet;BMW Mini - Cholet", + "start_date": "2022-05-18;2022-08-17", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "capacity": "4;6", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00;24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCHARRIERBMW493001;FRSSDPCHARRIERBMW493002", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86842700000, + 47.07323500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2915800", + "description": "Penmarch-Rue des Conserveries" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.37551800000, + 47.81736800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FLEURY - Parking Boulevard De La Douane", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS11E11145002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18949020000, + 43.17735450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "owner:ref:FR:SIREN": "315667410", + "network": "AMSOM HABITAT - CONDORCET", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lu- Ve 08:30-17:00", + "operator:email": "advenir@zeborne.com", + "description": "BORNE 4 - AMSOM CONDORCET 7.4kW ;BORNE 3 - AMSOM CONDORCET 7.4kW;BORNE 2 - AMSOM CONDORCET 22kW ;BORNE 1 - AMSOM CONDORCET 22kW ", + "charging_station:output": "7.4 kW;22 kW", + "ref": "E175647;E175642;E175644;E175645", + "operator": "ZEborne", + "ref:EU:EVSE": "FRZPEE175642;FRZPEE175644;FRZPEE175645;FRZPEE175647" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32304900000, + 49.87602830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09167002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LEZAT SUR LEZE - Place De La Marne", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34910700000, + 43.27489400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80P3707154007571806267", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/H6BUUJO0HS", + "ref": "514955", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82438500000, + 50.20570300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST29422;FRIZFPFAST29421;FRIZFPFAST29412;FRIZFPFAST29411;FRIZFPFAST29413;FRIZFPFAST29423", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - LE LUC EN PROVENCE", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*294*1*_*_;FR*SOD*S*FAST*294*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32382572123, + 43.39323457805 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44055B", + "description": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46 - 2)", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-22", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38849700000, + 47.28551600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH611Q923KH5ADARW2HQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CROUY-SUR-OURCQ - Place Du Champivert;Crouy-sur-Ourcq", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2015-07-01;2023-05-19", + "ref:EU:EVSE": "FRS77P77148A;FRS77E77148001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06894200000, + 49.09066400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000099429", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "description": "LED ELEC-PV", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "LED ELEC-PV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45073500000, + 44.91201700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BEAUMONT LA RONCE - Rue des Prés", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - BEAUMONT LA RONCE - Rue des Prés", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220271;FRS37E220270", + "ref:EU:EVSE": "FRS37E220271;FRS37E220270" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67069575000, + 47.56963676000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "890bdd36-4576-530d-b8d2-aad19ebbb16a", + "capacity": "2", + "amenity": "charging_station", + "description": "HEILLECOURT - Parking Maison du temps libre - Heillecourt", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "48__HEILLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19412100000, + 48.64981600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG53E38557001", + "capacity": "8", + "description": "VILLETTE D'ANTHON - Rue Des Acacias", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-01-28;2021-06-22;2021-11-03;2021-07-07", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "18 kW;7 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11191600000, + 45.80337800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "ref": "b5393271-f458-5f87-b99a-ed0b6b23dcab", + "description": "MOBIVE | AGEN | Scaliger" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61175900000, + 44.20627400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-21", + "ref:EU:EVSE": "FRSIPE94071006", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SUCY EN BRIE - Parking Gymnase", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53365144343, + 48.77034411909 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6528675", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "ref": "FRCPIE6528675", + "description": "LANGEAC DISTRIB BORNE 1", + "opening_hours": "24/7", + "network": "LANGEAC DISTRIB BORNE 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49256300000, + 45.11193100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P6532432130034699345", + "charging_station:output": "22 kW", + "description": "Leclerc/YLDCBBAVTS", + "ref": "446873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86960400000, + 49.48253400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Arcachon | Place Carnot", + "capacity": "2", + "amenity": "charging_station", + "ref": "4b5ee263-4eac-5dd6-88b4-b98e7da26e1b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17237400000, + 44.66336400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2023-03-06", + "charging_station:output": "11 kW", + "description": "Réseau AlterBase - Niort - agence Séolis", + "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", + "ref:EU:EVSE": "FRSEOPAB49067C", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42268900000, + 46.33598300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "description": "Airbus - Marignane (bornes à installer)", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS313001", + "capacity": "10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23271300000, + 43.43694500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "ref": "LFR1990EVCP02;LFR1990EVCP01;LFR1990EVCP03", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "AZAY LE RIDEAU", + "ref:EU:EVSE": "LFR1990EVCP02;LFR1990EVCP01;LFR1990EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47702100000, + 47.26910300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/ZIWOWMFJOR", + "ref:EU:EVSE": "FRM45P4780347829503548783", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref": "414801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87737000000, + 47.91147300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "RIGAUD - PARKING CIMETIERE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ16512;FRA16PWIIZ16511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*165*1*_*_", + "start_date": "2022-09-07", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99085800000, + 43.98964800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LTNIZVT1SZ", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "578912", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2346468923506700444", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32667000000, + 47.78896500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "188 kW", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-01-22", + "network": "Power Dot France", + "charging_station:output": "188 kW;50 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Basic Fit - Bessoncourt", + "ref:EU:EVSE": "FRPD1PBOUBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91081088615, + 47.64007277950 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Pierre-D'Entremont, Place du Bourg;Réseau eborn/C4KRE3VPLQ", + "ref:EU:EVSE": "FREBNPC4KRE3VPLQ", + "ref": "32863;C4KRE3VPLQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85339300000, + 45.41562800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPABGCA", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-08-13", + "description": "Aubagne - Auchan Supermarché Pin Vert", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56980300000, + 43.30161100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "MARSEILLE - Charles De Gaulle", + "ref:EU:EVSE": "FRP07E132020142;FRP07E132020141;FRP07E13202014", + "start_date": "2024-07-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37599060000, + 43.29455690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "PECHBLEU BORNE 3", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-05-09", + "ref:EU:EVSE": "FRCPIE6711655;FRCPIE6713075;FRCPIE6713095", + "ref": "FRCPIE6711655;FRCPIE6713075;FRCPIE6713095", + "description": "PECHBLEU BORNE 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21178500000, + 43.36172200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "RJHKY5SHCF", + "operator": "Easycharge services", + "description": "Beauvoir sur Mer , Pressing du Gois", + "ref:EU:EVSE": "FRECHPRJHKY5SHCF", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03117060000, + 46.90931700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A1 Ressons Ouest", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP102118", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71971900000, + 49.51858200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "752418", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CY1SUZNSHO", + "ref:EU:EVSE": "FRFR1P459274568929693334", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09035800000, + 45.03417600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0813", + "opening_hours": "24/7", + "ref": "FR*V75*PPX08*13", + "description": "Paris | Rue François 1er 38", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30463480000, + 48.86821120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1083522", + "network": "Freshmile France", + "description": "Freshmile France/LLVQOWIKX1NIDU", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7165751886207146590", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61457500000, + 47.74891100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "VAL RHONE TP - Chateauneuf sur Isere", + "capacity": "2", + "opening_hours": "Mo 07:00-18:00, Tu 07:00-18:00, We 07:00-18:00, Th 07:00-18:00, Fr 07:00-18:00", + "amenity": "charging_station", + "start_date": "2021-05-25", + "ref:EU:EVSE": "FRSSDPVRTPCHAT263001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88176700000, + 44.98009600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "86909", + "capacity": "8", + "description": "SYDED/XRTQBE", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS25PXRTQBE", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88240000000, + 47.10390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E205372;FRS18E205373", + "ref": "FRS18E205372;FRS18E205373", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MENETOU-SALON - Pl. de la mairie", + "description": "MODULO - MENETOU-SALON - Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49023000000, + 47.23177000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-12", + "description": "LOUVECIENNES - Général De Gaulle", + "ref:EU:EVSE": "FRY03E78350004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12105000000, + 48.86144000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-18;2024-07-11;2024-09-05", + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*122*9*_*_;FR*SOD*S*QPRK*122*8*_*_;FR*SOD*S*QPRK*122*7*_*_;FR*SOD*S*QPRK*122*5*_*_;FR*SOD*S*QPRK*122*4*_*_;FR*SOD*S*QPRK*122*35*_*_;FR*SOD*S*QPRK*122*34*_*_;FR*SOD*S*QPRK*122*3*_*_;FR*SOD*S*QPRK*122*29*_*_;FR*SOD*S*QPRK*122*27*_*_;FR*SOD*S*QPRK*122*24*_*_;FR*SOD*S*QPRK*122*22*_*_;FR*SOD*S*QPRK*122*20*_*_;FR*SOD*S*QPRK*122*18*_*_;FR*SOD*S*QPRK*122*17*_*_;FR*SOD*S*QPRK*122*14*_*_;FR*SOD*S*QPRK*122*12*_*_;FR*SOD*S*QPRK*122*1*_*_;FR*SOD*S*QPRK*121*9*_*_;FR*SOD*S*QPRK*121*4*_*_;FR*SOD*S*QPRK*121*35*_*_;FR*SOD*S*QPRK*121*32*_*_;FR*SOD*S*QPRK*121*30*_*_;FR*SOD*S*QPRK*121*29*_*_;FR*SOD*S*QPRK*121*26*_*_;FR*SOD*S*QPRK*121*23*_*_;FR*SOD*S*QPRK*121*19*_*_;FR*SOD*S*QPRK*121*17*_*_;FR*SOD*S*QPRK*121*16*_*_;FR*SOD*S*QPRK*121*15*_*_;FR*SOD*S*QPRK*121*14*_*_;FR*SOD*S*QPRK*121*12*_*_;FR*SOD*S*QPRK*121*1*_*_;FR*SOD*S*QPRK*121*10*_*_;FR*SOD*S*QPRK*121*11*_*_;FR*SOD*S*QPRK*121*13*_*_;FR*SOD*S*QPRK*121*18*_*_;FR*SOD*S*QPRK*121*20*_*_;FR*SOD*S*QPRK*121*2*_*_;FR*SOD*S*QPRK*121*21*_*_;FR*SOD*S*QPRK*121*22*_*_;FR*SOD*S*QPRK*121*24*_*_;FR*SOD*S*QPRK*121*25*_*_;FR*SOD*S*QPRK*121*27*_*_;FR*SOD*S*QPRK*121*28*_*_;FR*SOD*S*QPRK*121*3*_*_;FR*SOD*S*QPRK*121*31*_*_;FR*SOD*S*QPRK*121*33*_*_;FR*SOD*S*QPRK*121*34*_*_;FR*SOD*S*QPRK*121*5*_*_;FR*SOD*S*QPRK*121*6*_*_;FR*SOD*S*QPRK*121*7*_*_;FR*SOD*S*QPRK*121*8*_*_;FR*SOD*S*QPRK*122*10*_*_;FR*SOD*S*QPRK*122*11*_*_;FR*SOD*S*QPRK*122*13*_*_;FR*SOD*S*QPRK*122*15*_*_;FR*SOD*S*QPRK*122*16*_*_;FR*SOD*S*QPRK*122*19*_*_;FR*SOD*S*QPRK*122*2*_*_;FR*SOD*S*QPRK*122*21*_*_;FR*SOD*S*QPRK*122*23*_*_;FR*SOD*S*QPRK*122*25*_*_;FR*SOD*S*QPRK*122*26*_*_;FR*SOD*S*QPRK*122*28*_*_;FR*SOD*S*QPRK*122*30*_*_;FR*SOD*S*QPRK*122*31*_*_;FR*SOD*S*QPRK*122*32*_*_;FR*SOD*S*QPRK*122*33*_*_;FR*SOD*S*QPRK*122*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPQPRK122351;FRQPKPQPRK122341;FRQPKPQPRK12231;FRQPKPQPRK122291;FRQPKPQPRK122281;FRQPKPQPRK122271;FRQPKPQPRK122261;FRQPKPQPRK122251;FRQPKPQPRK122241;FRQPKPQPRK122231;FRQPKPQPRK122191;FRQPKPQPRK122171;FRQPKPQPRK122151;FRQPKPQPRK122141;FRQPKPQPRK122121;FRQPKPQPRK12211;FRQPKPQPRK12171;FRQPKPQPRK12141;FRQPKPQPRK121351;FRQPKPQPRK121331;FRQPKPQPRK121311;FRQPKPQPRK121301;FRQPKPQPRK121291;FRQPKPQPRK121281;FRQPKPQPRK121271;FRQPKPQPRK121261;FRQPKPQPRK121251;FRQPKPQPRK121241;FRQPKPQPRK121191;FRQPKPQPRK121171;FRQPKPQPRK121151;FRQPKPQPRK121141;FRQPKPQPRK121131;FRQPKPQPRK12111;FRQPKPQPRK121101;FRQPKPQPRK121111;FRQPKPQPRK121121;FRQPKPQPRK121161;FRQPKPQPRK121181;FRQPKPQPRK121201;FRQPKPQPRK12121;FRQPKPQPRK121211;FRQPKPQPRK121221;FRQPKPQPRK121231;FRQPKPQPRK12131;FRQPKPQPRK121321;FRQPKPQPRK121341;FRQPKPQPRK12151;FRQPKPQPRK12161;FRQPKPQPRK12181;FRQPKPQPRK12191;FRQPKPQPRK122101;FRQPKPQPRK122111;FRQPKPQPRK122131;FRQPKPQPRK122161;FRQPKPQPRK122181;FRQPKPQPRK122201;FRQPKPQPRK12221;FRQPKPQPRK122211;FRQPKPQPRK122221;FRQPKPQPRK122301;FRQPKPQPRK122311;FRQPKPQPRK122321;FRQPKPQPRK122331;FRQPKPQPRK12241;FRQPKPQPRK12251;FRQPKPQPRK12261;FRQPKPQPRK12271;FRQPKPQPRK12281;FRQPKPQPRK12291", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - LA DEFENSE - LES 4 TEMPS PARKING P1;QPARK - LA DEFENSE - LES 4 TEMPS PARKING P2", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23332800000, + 48.89221360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BUSQUE - Le Village - Mairie", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8104300122;FRS81E8104300121;FRS81E8104300112", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95832416919, + 43.78277280812 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2020-10-07", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Tavel Sud", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE405300", + "ref:EU:EVSE": "FRIONE405300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70362600000, + 44.00407100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44172A;FRS44E44172001", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-18;2021-04-22", + "description": "SAINTE-LUCE-SUR-LOIRE - Place Du Général De Gaulle;OuestCharge - Diva Sp - Sainte-Luce-Sur-Loire - Gaulle", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48452100000, + 47.24945000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77433001;FRS77P77433A", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH614BC0DWNSTX28T6S1", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "SAINTS - Place De L'Église;Saints", + "start_date": "2016-08-11;2023-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04827900000, + 48.75830500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF079761", + "description": "RELAIS TREILLIERES", + "start_date": "2024-02-23", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF079761", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681722;531681721;531681720;531681719", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65278200000, + 47.33611100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E135152;FRS41E135151", + "start_date": "2019-09-08", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - MARCHENOIR - Rte. de Blois", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E135152;FRS41E135151", + "description": "MODULO - MARCHENOIR - Rte. de Blois" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39264500000, + 47.82105100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile;Morbihan énergies | FR*S56", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PCLYHGY", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "description": "Mobilité électrique 56/CLYHGY;Carnac - Place de la Chapelle", + "ref": "21871", + "network": "Morbihan Energies;Mobilité électrique 56", + "start_date": "2016-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07873000000, + 47.58460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*LYON*180*1*_*_", + "description": "LY709 - GENERAL LECLERC", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "ref:EU:EVSE": "FRGLYPLYON18012;FRGLYPLYON18011", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83123000000, + 45.74492200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P92002*B", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP92002B", + "opening_hours": "24/7", + "ref": "429993", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30075100000, + 48.75031500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "start_date": "2020-01-08", + "description": "Opel - Europ Auto - Boulogne-sur-Mer", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPEUROPAUTOOPEL623601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60866000000, + 50.69559900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CABLOTEC MTB CABLOTEC PARK", + "ref:EU:EVSE": "FRCPIE6593425", + "network": "CABLOTEC MTB CABLOTEC PARK", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6593425", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35879200000, + 44.03671600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "description": "Leclerc/HVZILC8RVL", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRLE2P4381889873329077959", + "ref": "541901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615500000, + 43.56790300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Portets | Mairie", + "ref": "98a79f0f-9a17-5878-a552-1914136f4fe0", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42394600000, + 44.69625100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "GENAINVILLE - Place de l'église ", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-06-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95270001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75191000000, + 49.12480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO8007282;FRALLEGO8007281;FRALLEGO8000832;FRALLEGO8000831;FRALLEGO8000682;FRALLEGO8000062;FRALLEGO8000061;FRALLEGO8000661;FRALLEGO8000662;FRALLEGO8000681;FRALLEGO8002521;FRALLEGO8002522;FRALLEGO8004071;FRALLEGO8004072;FRALLEGO8004073", + "description": "Allego FR, ASF2, AIRE DE LESPIGNAN NORD", + "amenity": "charging_station", + "capacity": "15", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego FR, ASF2, AIRE DE LESPIGNAN NORD", + "start_date": "2024-07-28", + "ref:EU:EVSE": "FRALLEGO8007282;FRALLEGO8004073;FRALLEGO8000832;FRALLEGO8000831;FRALLEGO8000682;FRALLEGO8000062;FRALLEGO8000061;FRALLEGO8000661;FRALLEGO8000662;FRALLEGO8000681;FRALLEGO8002521;FRALLEGO8002522;FRALLEGO8004071;FRALLEGO8004072;FRALLEGO8007281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17433500000, + 43.26529400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "PARAY LE MONIAL Bossu", + "ref:EU:EVSE": "LFR2746EVCP02;LFR2746EVCP01", + "ref": "LFR2746EVCP02;LFR2746EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11601700000, + 46.46508000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Aix-En-Provence, Place Sextia Conca", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PIUBOYD33AF", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43827400000, + 43.50929800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P7330821335381969101", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "488919", + "description": "SDEY/ZKTDTIRGQ6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66822800000, + 48.02690700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-RAPHAEL - PARKING AVENUE AURELIENNE", + "ref": "FR*SOD*S*WIIZ*295*2*_*_", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ29522;FRA16PWIIZ29521", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-05", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76686570000, + 43.43230330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QFRX2Z7OPB", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "578954", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6564805059066745953", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47967700000, + 48.41308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;150 kW", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PNOVMPL", + "description": "Novotel - Montpellier", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89247479553, + 43.58972047345 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "description": "Réseau eborn/BB50GHGEOM;SIX-FOURS-LES-PLAGES, Rue du Revest", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "741078;BB50GHGEOM", + "ref:EU:EVSE": "FREBNP4508932341964016586;FREBNPBB50GHGEOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84189900000, + 43.11756500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "544793", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREVZP5062212888146370391", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "We,Mo,Tu,Su 08:00-22:00,Tu,Mo,Su,We 07:00-21:00,Th,Fr,Sa 07:00-23:45", + "description": "EVzen/312557b1-5a81-4247-9d9b-1eefca4ad7d0", + "network": "EVzen", + "charging_station:output": "50 kW;43 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94969400000, + 43.63448600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NETTO - BERGERAC", + "ref": "FR*SOD*S*OTHR*619*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR61912;FROTHPOTHR61911", + "start_date": "2023-04-19", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46728500000, + 44.86292200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/HFWXM4PJLA", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPHFWXM4PJLA", + "ref": "95984", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37212500000, + 45.48566900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3332624003259110981;FREBNPCUG99GGOWF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/CUG99GGOWF;Bourg-Les-Valence,Parking du Théâtre le Rhône", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "492183;CUG99GGOWF", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88637000000, + 44.94452100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ES/ STRASBOURG - TRIUMPH INTERNATIONAL LIBRE SERVICE", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "ES B2B", + "ref": "FR*SOD*S*OTHR*309*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR30911;FROTHPOTHR30912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49729900000, + 48.46936100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW;63 kW;22 kW", + "socket:type2_combo:output": "63 kW", + "operator:email": "roaming@freshmile.com", + "ref": "472251", + "ref:EU:EVSE": "FRFR1P6795074106044566336", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QJZPGZZJNW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74805800000, + 48.57888500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX15*13", + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Rue Cotentin 29", + "capacity": "7", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "amenity": "charging_station", + "start_date": "2022-01-21", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31267490000, + 48.83854590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7961022691950272309", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LM0KZXL051A3IX", + "opening_hours": "24/7", + "ref": "1183677", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74749100000, + 48.58973000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOCAMPEUGEOT597501", + "description": "Peugeot -Maubeuge", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-02-24", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90381600000, + 50.28305700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PSTANDREEUREECOLE", + "operator:email": "pascal.lhermitte@siege27.fr", + "start_date": "2016-09-14", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900061", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27351800000, + 48.90601500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Glomel-Place du centre", + "ref:EU:EVSE": "FRS22E22061001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39757900000, + 48.22221400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-26;2021-11-27", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY15E78502003", + "description": "LE PORT-MARLY - 28 Rue De Paris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10964070000, + 48.88491610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-05", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE200", + "amenity": "charging_station", + "capacity": "4", + "description": "FTCS_Gazeran", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81833920000, + 48.62638490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "413750", + "ref:EU:EVSE": "FRWATP5971174339007820208", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLQ44EPHVZ", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53466000000, + 47.49048000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE403606;FRIOYE403605;FRIOYE403604;FRIOYE403603;FRIOYE403601;FRIOYE403602;FRIOYE403651;FRIOYE403652;FRIOYE403653", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE403606;FRIOYE403605;FRIOYE403604;FRIOYE403603;FRIOYE403601;FRIOYE403602;FRIOYE403651;FRIOYE403652;FRIOYE403653", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "network": "Montélimar Ouest", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Montélimar Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763000, + 44.51506617000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/EH4IDAEXBO", + "ref:EU:EVSE": "FRS52P6919345687789190741", + "ref": "332231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03964300000, + 48.58377000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65295001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "LUZ SAINT SAUVEUR - Parking Bastan", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00165000000, + 42.87351000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE002901;FRIENE002902", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Combourg", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Combourg", + "ref:EU:EVSE": "FRIENE002901;FRIENE002902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71420085000, + 48.42001009000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34247001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT CLEMENT DE RIVIERE - Parking Centre Commercial le Boulidou", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85089166667, + 43.68381670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "description": "ARGENTAN à Rue du 104ème Régiment d'Infanterie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS61P61006E", + "start_date": "2021-01-19", + "ref": "SE61-ARGE-005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01061880000, + 48.74249240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6404635164848746266", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLHQ4IAHU1T1IH", + "charging_station:output": "7.4 kW", + "ref": "892014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14291300000, + 48.81043200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-23", + "ref": "DFXL", + "description": "Saint-Martory", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PLLNBP6I821HHE1", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92866466913, + 43.14186997697 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "start_date": "2020-09-24", + "description": "Ford - Groupe Dugardin - Calais", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD621001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88422400000, + 50.93705500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000035;FRCG0E000033;FRCG0E000032;FRCG0E000034", + "start_date": "2021-10-23", + "network": "BAIKOWSKI", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRCG0E000034;FRCG0E000033;FRCG0E000032;FRCG0E000035", + "charging_station:output": "22 kW", + "description": "BAIKOWSKI", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06710500000, + 45.93699600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "95bb75f0-fedc-11ed-be56-0242ac120002", + "network": "LUMI'IN", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "807940069", + "capacity": "1", + "operator:email": "secretariat@lumi-in.fr", + "description": "SOLAIRE CORSE ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMESALETTA11;FRLUMESALETTA21", + "operator": "LUMI'IN", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.46054830000, + 42.73825410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "5fd3db05-ebb7-5255-8a34-ad6577c50e2a", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Chéraute | Avenue du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87459600000, + 43.23114400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "France Pare-Brise - ERNEE", + "ref:EU:EVSE": "FRSE1PSE53EABA", + "network": "Stations-e", + "start_date": "2024-04-30", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92634000000, + 48.29084200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/643fd95e2f5a364feac970df", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP7217060374424624426", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "7.4 kW", + "ref": "788757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33295500000, + 47.40727700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3010EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3010EVCP01", + "description": "TROYES Pompidou", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08012100000, + 48.28743900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-1E, Place des Marseillaises", + "ref:EU:EVSE": "FRM13PCCCQNBES7L", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38105500000, + 43.30156100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "description": "BESSONCOURT av du tilleul B", + "network": "Réseau IRVE TE90", + "amenity": "charging_station", + "socket:type2_combo:output": "72 kW", + "operator:email": "florent.mayery@citeos.com", + "operator": "HAEFELI", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "72 kW", + "owner:ref:FR:SIREN": "259000966", + "ref:EU:EVSE": "FRS90P090012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91932900000, + 47.64188400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000VERMONTREUIL", + "amenity": "charging_station", + "capacity": "1", + "description": "RUE BONNE AVENTURE VERSAILLES", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2019-10-23", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P78000*VER*MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15187500000, + 48.80674200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "998817", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLPQNQN771H9M9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6678788495180544021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08408200000, + 47.33101900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-12-13", + "description": "U Express - Nieul", + "ref:EU:EVSE": "FRPD1PSYUNIE", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16922535316, + 45.92014685004 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/vichy7;Vichy, Stade", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "vichy7;231640", + "start_date": "2017-05-02", + "ref:EU:EVSE": "FREBNPVICHY7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41621000000, + 46.13320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "start_date": "2021-11-30", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Fastned Aire de Pont Val de Saône", + "owner:ref:FR:SIREN": "853300010", + "network": "Fastned Aire de Pont Val de Saône", + "ref": "FRFASE33029", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRFASE33029" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33371690000, + 47.18622590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR9512;FROTHPOTHR9511", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-02-22", + "description": "CAMPING SANDAYA - SAINT-AUBIN-SUR-MER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*95*1*_*_", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38984532590, + 49.32553293819 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "capacity": "4", + "description": "Saint-Jorioz, Presbytère;Réseau eborn/FUJCLK", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "FUJCLK;75245", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPFUJCLK", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16202000000, + 45.83210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/KSXIXLLCSP", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP6945736958466007061", + "capacity": "2", + "amenity": "charging_station", + "ref": "741096", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40260500000, + 46.20731600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "B&B HOTEL - SAVENAY", + "network": "B&B HOTEL", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "ref:EU:EVSE": "FROTHPOTHR43311;FROTHPOTHR43321;FROTHPOTHR43331;FROTHPOTHR43341", + "ref": "FR*SOD*S*OTHR*433*4*_*_;FR*SOD*S*OTHR*433*3*_*_;FR*SOD*S*OTHR*433*1*_*_;FR*SOD*S*OTHR*433*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93455500000, + 47.37371100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/PRZ9UEOLLL", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRFR1P1597150356825870430", + "operator": "Freshmile | FR*FR1", + "ref": "454110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73150700000, + 48.57936400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Besançon Chateaufarine, France", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP33158", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94647400000, + 47.21667500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1189600017158318370", + "ref": "521396", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/YA93PLA1NX", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54689900000, + 48.45403700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "description": "BRIGNOLES-344 Avenue du Dr Yves Giustiniani", + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "88ee97a2-cbd5-59a7-90f8-8feacb76f33b", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04456100000, + 43.40941500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "521342", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QKR5YQTB8B", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4609794162103149069" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58694500000, + 48.03847400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8061956771167938304", + "ref": "462006", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/WOGY4YK72D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26306300000, + 49.19270300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576236;576314", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "Zephyre/LP0095A9;Zephyre/LP009588", + "ref:EU:EVSE": "FRZP1P709127196803105170;FRZP1P3416022066613502051", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15380000000, + 49.02803000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-08-24", + "capacity": "2", + "amenity": "charging_station", + "description": "Cartonnages_ROC", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE415", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54550600000, + 48.12362600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VAUX-SUR-SEINE - Parking De La Mairie", + "ref:EU:EVSE": "FRY01E78638002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96276300000, + 49.00521500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "CCPHVA - Parking Stade Delaune - Villerupt", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "ref": "9cbb9bfd-3f19-5d3c-8770-c1a9dcdf2172", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "7.328 kW", + "operator": "51__CCPHVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92565300000, + 49.46344700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-12-21", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "description": "SAINT-CYPRIEN - ( Les capellans Centre Commercial ) - Rue Lanoux", + "ref:EU:EVSE": "FRS66E66171006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02910823721, + 42.60972163470 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref": "FR*SOD*S*IKEA*117*1*_*_;FR*SOD*S*IKEA*117*2*_*_;FR*SOD*S*IKEA*117*3*_*_;FR*SOD*S*IKEA*117*4*_*_;FR*SOD*S*IKEA*117*5*_*_;FR*SOD*S*IKEA*117*6*_*_;FR*SOD*S*IKEA*117*7*_*_;FR*SOD*S*IKEA*117*8*_*_;FR*SOD*S*IKEA*117*9*_*_", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA11792;FRIKAPIKEA11791;FRIKAPIKEA11781;FRIKAPIKEA11761;FRIKAPIKEA11711;FRIKAPIKEA11721;FRIKAPIKEA11731;FRIKAPIKEA11741;FRIKAPIKEA11751;FRIKAPIKEA11771", + "start_date": "2024-02-13;2023-04-27", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "description": "IKEA BORDEAUX - PARKING SALARIES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56497400000, + 44.88491100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35193001B1", + "network": "OUEST CHARGE", + "description": "MONTREUIL LE GAST - 14 rue des hirondelles (Place de l'Eglise) ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72638000000, + 48.24659300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63009B", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2023-03-30", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG63 - ePremium - Ardes - Place du Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12345866000, + 45.40161915000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LUDB1KDHWA", + "ref:EU:EVSE": "FRFR1P8159961326672718141", + "ref": "541802", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99039900000, + 50.46822200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PGUXVRY", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/GUXVRY", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref": "33379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64753600000, + 43.28890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE93029001", + "network": "SIPPEREC", + "description": "DRANCY - Rue Saint Stenay", + "start_date": "2022-10-27;2021-10-18", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41865064280, + 48.91839349495 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-14", + "ref": "FRCG0E000798;FRCG0E000800", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000798;FRCG0E000800", + "network": "PHARMACIE DU GABEREAU - 45110 - 1", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator:email": "info@chargeguru.com", + "description": "PHARMACIE DU GABEREAU - 45110 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19662100000, + 47.86028600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "operator": "IZIVIA", + "description": "PARKING SIMONE VEIL", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE20911;FRM06PNICE20912", + "ref": "FR*SOD*S*NICE*209*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20107874974, + 43.68856058065 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7e164acb-d121-5dc1-82ce-047a6fa08043", + "operator": "200__TE47", + "description": "MOBIVE | Penne d'Agenais | Théatre d'Eau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81030500000, + 44.38476200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*347*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE34711;FRSIGPSIGE34712", + "description": "SIGEIF - 16 RUE DE SOISY PARKING ESPACE JEUNESSE ET FAMILLES - EAUBONNE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28509000000, + 48.99130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76151001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MONT SAINT AIGNAN - Rue Saint-Gilles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07855380000, + 49.46235410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4126EVCP03;LFR4126EVCP02;LFR4126EVCP01;LFR4126EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "Guines", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4126EVCP03;LFR4126EVCP02;LFR4126EVCP01;LFR4126EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88664000000, + 50.86262000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "0fa4b667-3ffd-548a-9cfa-28bd2cee1dbc", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Bourganeuf | Place du Champ de Foire", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75726100000, + 45.95498400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/Lauzertemair", + "ref:EU:EVSE": "FRS82PLAUZERTEMAIR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "86879", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13775000000, + 44.25700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2024-03-01", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "AVENUE HENRI CHEVALIER - CLAVIERS", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P83830*CLV*CHEVAL1ER", + "ref:EU:EVSE": "FR55CP83830CLVCHEVAL1ER", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56140300000, + 43.60181400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3608EVCP03;LFR3608EVCP01;LFR3608EVCP02", + "ref": "LFR3608EVCP03;LFR3608EVCP01;LFR3608EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "LAMBALLE Lanjouan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49884900000, + 48.48200700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Donges", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMDON", + "start_date": "2024-05-02", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08379443799, + 47.32347873894 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "75188", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPP5NRXSSCMV", + "description": "Réseau eborn/P5NRXSSCMV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37125400000, + 46.26529500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP64122F", + "amenity": "charging_station", + "start_date": "2023-12-28", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref": "FRETIP64122F", + "description": "e-Totem - BIARRITZ Rue de hirondelles", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54135500000, + 43.46284577000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Ibis Budget - Meung-sur-Loire", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCAPMSL", + "opening_hours": "24/7", + "start_date": "2024-02-05", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67153795417, + 47.83280691817 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT592391", + "network": "DRIVECO", + "description": "Carrefour Market - Thumeries", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05123300000, + 50.47466000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Gradignan - Hôtel Campanile", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGRAHC", + "capacity": "4", + "start_date": "2023-02-03", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60280900000, + 44.79029300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR54241;FROTHPOTHR54221;FROTHPOTHR54211;FROTHPOTHR54231;FROTHPOTHR54251;FROTHPOTHR54261;FROTHPOTHR54271;FROTHPOTHR54281", + "opening_hours": "24/7", + "description": "SUPER U - MAYENNE", + "ref": "FR*SOD*S*OTHR*542*5*_*_;FR*SOD*S*OTHR*542*4*_*_;FR*SOD*S*OTHR*542*2*_*_;FR*SOD*S*OTHR*542*1*_*_;FR*SOD*S*OTHR*542*3*_*_;FR*SOD*S*OTHR*542*6*_*_;FR*SOD*S*OTHR*542*7*_*_;FR*SOD*S*OTHR*542*8*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2021-12-09;2022-03-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62183300000, + 48.28774800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref": "FRCPIE6741805;FRCPIE6741835", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "4", + "opening_hours": "24/7", + "network": "SAG CHARGEPOINT BORNE 1", + "description": "SAG CHARGEPOINT BORNE 1", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6741805;FRCPIE6741835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20519800000, + 46.15242200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/T1JWMFICCG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "466188", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7443912251088268976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97170000000, + 46.48070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRV09E15258001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "VIC-SUR-CERE - Rue Du 19 Mars 1962", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62621800000, + 44.97811600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HJWQTE", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P9046096739733352566", + "capacity": "2", + "amenity": "charging_station", + "ref": "782391", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92565000000, + 49.46340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP11193", + "capacity": "2", + "charging_station:output": "125 kW", + "description": "Tesla Supercharger Eurotunnel, France -  Flexiplus Lounge", + "socket:type2_combo:output": "125 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81183800000, + 50.92828200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "674189", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3625898600020222003", + "charging_station:output": "22 kW", + "description": "Freshmile France/ANX5XTRANK", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02720900000, + 46.89069700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20737000000, + 50.68489800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/MRZST8CYGX", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P3412434280643711254", + "ref": "461838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31776500000, + 49.17834100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12155001", + "description": "FONDAMENTE - Rte De Cornus", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12319500000, + 43.87618200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "880134", + "description": "WAAT/FRWA4L2FDMLBWC", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA4P319409515367919980", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11762000000, + 49.48410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "OuestCharge - Diva Sp - Saint-Florent-le-Vieil - La Chevalerie;SAINT-FLORENT-LE-VIEIL - Parking la Chevalerie", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-20;2024-04-03", + "ref:EU:EVSE": "FRS49E49276001;FRS49P49276A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01463800000, + 47.35506500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2019-02-15", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106501011;FRS81E8106501012;FRS81E8106501021;FRS81E8106501022", + "description": "CASTRES - GARE - 108 Avenue Albert 1er Parking Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23178768717, + 43.59939448712 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WORMHOUT - Centre Aquatique Linéo", + "start_date": "2023-02-21", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRHDFE59470001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48738920000, + 50.88274210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "description": "VAY - Route De Plesse;OuestCharge - Diva Sp - Vay - Plesse", + "start_date": "2024-04-15;2021-04-14", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44214001;FRS44P44214A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70493400000, + 47.55435400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "43 kW;50 kW;25 kW;22 kW", + "socket:type2_combo:output": "25 kW;50 kW", + "start_date": "2023-01-17", + "capacity": "1;7", + "ref": "518447", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63430A", + "description": "SIEG 63/FR*S63*P63430*A;SIEG63 - ePremium - Thiers - Sports" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52133900000, + 45.84552400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BEUVRAGE - Place du 11 Novembre 1918", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH03E59079001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50696900000, + 50.38541000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34081001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "COLOMBIERS - Avenue De Béziers (Parking Office Du Tourisme)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14133333333, + 43.31379720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2022-03-30", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94038001", + "description": "L'HAY LES ROSES - Rue de Chalais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32860210000, + 48.77092740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-04;2024-06-03", + "description": "B&B Chateauroux Déols", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90289306", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70481100000, + 46.85203500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2ea4624e-1609-5035-b43f-e8b74a45b7aa", + "description": "MOBIVE | Mussidan | Rue Raymond Villechanoux | Parking de la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35273400000, + 45.03332900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*456*1*_*_", + "description": "SIGEIF - 7 RUE DES BERTHAUDS - ROSNY-SOUS-BOIS", + "ref:EU:EVSE": "FRSIGPSIGE45611;FRSIGPSIGE45612", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48430010000, + 48.87458590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ORMESSON", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-10-04", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSORMSS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55467000000, + 48.79465000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ST LIZIER Toulouse", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3338EVCP01;LFR3338EVCP02;LFR3338EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3338EVCP01;LFR3338EVCP02;LFR3338EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12856800000, + 43.00427800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "e5ad392e-f825-55d3-9bfd-a3c1d69c6ce6", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Orthez | Place de la Mairie", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77348000000, + 43.48725100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "1495ec61-5298-5f1c-82c4-0c8df2b5631c", + "description": "MALAUCENE - Cours des Isnards" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13187000000, + 44.17555000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego FR, Patrimonia, Cholet", + "capacity": "8", + "start_date": "2024-01-10", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO8001362;FRALLEGO8001361;FRALLEGO8001342;FRALLEGO8001341;FRALLEGO8001371;FRALLEGO8001372;FRALLEGO8005431;FRALLEGO8005432", + "network": "Allego FR, Patrimonia, Cholet", + "ref": "FRALLEGO8001362;FRALLEGO8001361;FRALLEGO8001342;FRALLEGO8001341;FRALLEGO8001371;FRALLEGO8001372;FRALLEGO8005431;FRALLEGO8005432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83924600000, + 47.07601850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3606EVCP01;LFR3606EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3606EVCP01;LFR3606EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "VINZELLES Lie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79563300000, + 46.26780200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "KFC - Anthy-sur-Léman", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-08-09", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PKFCASL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43862318850, + 46.35277439633 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/PFMAS0BOXW;Le Petit-Bornand-Les-Glières, Parking de la Médiathèque", + "ref:EU:EVSE": "FREBNPPFMAS0BOXW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "79135;PFMAS0BOXW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39608000000, + 46.00143000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 8:30-12:00,Mo 14:00-18:00,Tu-Fr 8:00-12:00,Tu-Fr14:00-18:00,Sa 08:30-12:00,Sa14:30-17:30", + "ref:EU:EVSE": "FREVBEEFI7QTSJZTUHGMEVEXMVBQIJ7A", + "operator:email": "psasupport@evbox.com", + "owner:ref:FR:SIREN": "512678558", + "network": "EVBOX", + "amenity": "charging_station", + "capacity": "1", + "description": "AM5", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "start_date": "2021-09-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49612493803, + 48.67865243512 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Dégriffstock - Portet-sur-Garonne", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PDEGPSG", + "start_date": "2024-01-12;2024-01-09", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40023412345, + 43.53499286359 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT597801", + "start_date": "2024-09-26", + "description": "Carrefour Market - Baisieux", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23568400000, + 50.61643000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "description": "SEMOB Métare Université", + "ref:EU:EVSE": "FRESEPS42218BH", + "amenity": "charging_station", + "ref": "FRESEPS42218BH", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42493700000, + 45.42304000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPIZIG7691;FROTHPIZIG7651;FROTHPIZIG76301;FROTHPIZIG76291;FROTHPIZIG76281;FROTHPIZIG76271;FROTHPIZIG76261;FROTHPIZIG76251;FROTHPIZIG7621;FROTHPIZIG76191;FROTHPIZIG76181;FROTHPIZIG76171;FROTHPIZIG76161;FROTHPIZIG76151;FROTHPIZIG76141;FROTHPIZIG7611;FROTHPIZIG76101;FROTHPIZIG76111;FROTHPIZIG76121;FROTHPIZIG76131;FROTHPIZIG76201;FROTHPIZIG76211;FROTHPIZIG76221;FROTHPIZIG76231;FROTHPIZIG76241;FROTHPIZIG7631;FROTHPIZIG7641;FROTHPIZIG7661;FROTHPIZIG7671;FROTHPIZIG7681", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IZIG*76*9*_*_;FR*SOD*S*IZIG*76*8*_*_;FR*SOD*S*IZIG*76*7*_*_;FR*SOD*S*IZIG*76*5*_*_;FR*SOD*S*IZIG*76*4*_*_;FR*SOD*S*IZIG*76*30*_*_;FR*SOD*S*IZIG*76*23*_*_;FR*SOD*S*IZIG*76*22*_*_;FR*SOD*S*IZIG*76*21*_*_;FR*SOD*S*IZIG*76*2*_*_;FR*SOD*S*IZIG*76*20*_*_;FR*SOD*S*IZIG*76*18*_*_;FR*SOD*S*IZIG*76*17*_*_;FR*SOD*S*IZIG*76*12*_*_;FR*SOD*S*IZIG*76*11*_*_;FR*SOD*S*IZIG*76*10*_*_;FR*SOD*S*IZIG*76*1*_*_;FR*SOD*S*IZIG*76*13*_*_;FR*SOD*S*IZIG*76*14*_*_;FR*SOD*S*IZIG*76*15*_*_;FR*SOD*S*IZIG*76*16*_*_;FR*SOD*S*IZIG*76*19*_*_;FR*SOD*S*IZIG*76*24*_*_;FR*SOD*S*IZIG*76*25*_*_;FR*SOD*S*IZIG*76*26*_*_;FR*SOD*S*IZIG*76*27*_*_;FR*SOD*S*IZIG*76*28*_*_;FR*SOD*S*IZIG*76*29*_*_;FR*SOD*S*IZIG*76*3*_*_;FR*SOD*S*IZIG*76*6*_*_", + "description": "CNPE FLAMANVILLE - HDF - RB", + "operator:email": "sav@izivia.com", + "start_date": "2021-02-12;2021-02-11;2021-02-10;2021-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87739964551, + 49.53583807962 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "ref": "FRCPIE6896095;FRCPIE6896055", + "description": "AERODROME PM STATION 1", + "amenity": "charging_station", + "capacity": "4", + "network": "AERODROME PM STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6896095;FRCPIE6896055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79021300000, + 47.49272100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3927EVCP03;FRFR1P3854815091973317782;LFR3927EVCP01;LFR3927EVCP02", + "description": "BREST - Plymouth;Freshmile/EHGQLKGHD4", + "capacity": "4;6", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "LFR3927EVCP02;LFR3927EVCP01;529196;LFR3927EVCP03", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.53241300000, + 48.38610400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP104114", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "description": "ENGIE Vianeo - A61 Port Lauragais Nord", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2023-11-30", + "charging_station:output": "50 kW;90 kW;22 kW;300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80876600000, + 43.35316700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CXJ72OM8NT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6056800801351408287", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "465990", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67852500000, + 48.74755900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 09:00-13:00, Mo 16:00-23:00, Tu 09:00-13:00, Tu 16:00-23:00, We 09:00-13:00, We 16:00-23:00, Th 09:00-13:00, Th 16:00-23:00, Fr 09:00-13:00, Fr 16:00-23:00, Sa 09:00-13:00, Sa 16:00-23:00, Su 09:00-13:00, Su 16:00-23:00", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-08-13", + "ref:EU:EVSE": "FRSSDPFONTENELLE133701", + "charging_station:output": "22.08 kW", + "description": "Camping Fontenelle", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16044900000, + 43.72088200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/UGFTMLOCNC", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "541871", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2476104889374595623", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.55227800000, + 42.16075300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E112214", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E112214", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - PLAIMPIED GIVAUDINS - Gobbiers", + "network": "MODULO - PLAIMPIED GIVAUDINS - Gobbiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45226000000, + 46.99799000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "description": "MobiSDEC/IAHFSZDOJL", + "ref:EU:EVSE": "FRS14P4287194140599475508", + "capacity": "3", + "opening_hours": "24/7", + "ref": "706025", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67658700000, + 48.85295100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWA5LZJCEUQDB", + "ref": "1128000", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P4529248299043794459", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11271800000, + 48.30124800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P502241", + "description": "TORIGNY LES VILLES (GUILBERVILLE) - Rue des Bleuets", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-03-23", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94902300000, + 48.98812900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "description": "NOAILHAC - Avenue Charles Taillhades", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81196001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35031700000, + 43.57455500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059797", + "owner:ref:FR:SIREN": "531680647", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "opening_hours": "24/7", + "description": "RELAIS MARCHAUX", + "ref:EU:EVSE": "FRHPCPNF059797", + "network": "TotalEnergies Charge Rapide", + "start_date": "2021-06-30", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12200000000, + 47.32580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Bouleternère - Parking Jean Jaurès", + "charging_station:output": "22 kW", + "start_date": "2024-10-02", + "network": "Reveo", + "ref:EU:EVSE": "FRS48E66023001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58614600000, + 42.64975600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lorient - Parking gare", + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56PIQBKMPJAIG", + "start_date": "2023-04-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36687356916, + 47.75411041182 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH06E62041006", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ARRAS - Place Guy Mollet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77897100000, + 50.29325500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30006002", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "charging_station:output": "60 kW;150 kW", + "start_date": "2021-12-24", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "AIMARGUES - Chemin De Saint Roman", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20544000000, + 43.69073300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-tugdual - Route de l'Abbaye", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2018-07-26", + "ref:EU:EVSE": "FRS56PCHQQTM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34054000000, + 48.09947000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346052602;FRLMSE12346052601;FRLMSE12346052592;FRLMSE12346052591", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "MONTS SUR GUESNES MEMORIAL 1 - 002;MONTS SUR GUESNES MEMORIAL 1 - 001", + "start_date": "2022-11-02", + "operator:email": "irve@soregies.fr", + "ref": "B153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21052700000, + 46.92049300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "description": "Métropolis/FR*MGP*P93048*L", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93048L", + "ref": "514931", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42329600000, + 48.85316400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79202P0043A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2015-07-08", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Parthenay - Mairie", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25164100000, + 46.64883300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRATLP4167008369444361257", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "1190938", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "charging_station:output": "300 kW;150 kW", + "description": "Atlante/FRATLFR00374" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30814000000, + 49.92300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Chavelot - ZA Les Fougères", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89397436", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43432800000, + 48.22925800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "EDF", + "capacity": "5", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "820078780", + "opening_hours": "24/7", + "ref": "c628b65ac59f5cbb", + "ref:EU:EVSE": "FRMAPP000000008217", + "operator:email": "ismael@electromaps.com", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "description": "SCI LM APT", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37456300000, + 43.89566700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-10-05", + "ref": "FRS88E150253;FRS88E150251", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - NOMEXY- Rue sœur Sidonie", + "description": "MODULO - NOMEXY- Rue sœur Sidonie", + "ref:EU:EVSE": "FRS88E150253;FRS88E150251" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38363600000, + 48.30736100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "BEGLES", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSBEGLE", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "start_date": "2023-08-11", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53148000000, + 44.79481000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "CORBIE Curé", + "ref:EU:EVSE": "LFR3397EVCP01;LFR3397EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3397EVCP01;LFR3397EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50293500000, + 49.91117100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-11E, Boulevard Pierre Ménard", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PHFZWKZHQRS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43911200000, + 43.29026800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPR3ZND15N5P", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/R3ZND15N5P;Cornas, Avenue du Colonel Rousset", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30293;R3ZND15N5P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84810300000, + 44.96071900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "782493", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HWK6HWHJML", + "ref:EU:EVSE": "FRFR1P3691072361031428207", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693900000, + 48.93964500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis - Mont Saint Michel", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIBSSGG", + "start_date": "2023-02-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54389880000, + 48.56895110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75206;JV1D6ZX6CS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "capacity": "2;3", + "description": "Cruseilles, Grande Rue;Réseau eborn/JV1D6ZX6CS", + "ref:EU:EVSE": "FREBNPJV1D6ZX6CS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10641000000, + 46.03216000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34332E", + "description": "e-Totem - VIAS - Place des Arènes", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRETIP34332E", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41843000000, + 43.31308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ACC HUSSE - GRANDCHAMPS DES FONTAINES", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2021-05-21", + "ref:EU:EVSE": "FROTHPOTHR23121;FROTHPOTHR23111", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*231*1*_*_;FR*SOD*S*OTHR*231*2*_*_", + "network": "ACC HUSSE", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64563200000, + 47.37471400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6596835", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED ST-ETIENNE 2", + "ref": "FRCPIE6596835", + "charging_station:output": "22 kW", + "description": "CGED ST-ETIENNE 2", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40171800000, + 45.45937700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/E0XDVX1DK6", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2626637544336103641", + "charging_station:output": "7.4 kW", + "ref": "368821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55238500000, + 44.86105000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA1P4341378466502812026", + "network": "WAAT", + "description": "WAAT/FRWATL8PFXXQHG", + "capacity": "2", + "amenity": "charging_station", + "ref": "735816", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26232500000, + 50.73881500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4341586895778765789", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QP2QGHOLTL", + "ref": "466164", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11311000000, + 45.14450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1000133292;1000133291;1000117530", + "description": "ABB 22kW PMA EUROPCAR intérieur droite;ABB 7kW PMA EUROPCAR Exterieur;ABB 22kW PMA EUROPCAR intérieur gauche", + "amenity": "charging_station", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "start_date": "2023-03-02;2023-03-08", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000133291;FRSWSE1000117530;FRSWSE1000133292", + "owner:ref:FR:SIREN": "903356970", + "charging_station:output": "22 kW;7 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63706900000, + 45.94444100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521354", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3931042481702240867", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RNDADH3NG0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988000000, + 44.96064800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Loc+ - Fréjus", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "ref:EU:EVSE": "FRSSDPLOC836001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73060000000, + 43.46635000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E141733", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - TERMINIER - Rue de charette", + "charging_station:output": "0 kW", + "ref": "FRS28E141733", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - TERMINIER - Rue de charette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74254300000, + 48.08237400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Hôtel du Pont Vieux - Securecharge", + "start_date": "2022-03-09", + "ref": "Securecharge-PONCAR-HBS-1", + "operator:email": "contact@securecharge.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "operator": "Securecharge", + "description": "Securecharge Hôtel Pont Vieux", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "802704445", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36173572699, + 43.20905731879 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39788", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/HCL9EMOH18", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P6881247714038342164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95040000000, + 48.40760100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "ref:EU:EVSE": "FRZP1P7208944262803986553", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "1117032", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP003B12", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29418500000, + 46.36645000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE535", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2023-02-27", + "operator": "RossiniEnergy", + "description": "DECA_Proprete_Barentin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97108800000, + 49.53813700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/YWHVYH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PYWHVYH", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "34003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04088000000, + 44.02820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - AVIGNON LA CRISTOLE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*114*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-06-13", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST11412;FRIZFPFAST11411;FRIZFPFAST11413", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85878052697, + 43.92211423974 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ETRICHE - Place de l'Abbé Humeau", + "ref:EU:EVSE": "FRS49E49132001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44388899200, + 47.64961242676 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/LLLDJITPL2JAB6", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P5988195927923518102", + "ref": "896697" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03379000000, + 49.62746000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "BRN02 - AVENUE PIERRE BROSSOLETTE", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON322;FRGLYPLYON312;FRGLYPLYON311;FRGLYPLYON321", + "network": "GRAND LYON", + "start_date": "2020-02-06", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*3*2*_*_;FR*SOD*S*LYON*3*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91972100000, + 45.74236600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PUJAUT - Place Du Marché", + "ref:EU:EVSE": "FRS30E30209001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77443500000, + 44.00266000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/NDWAGL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PNDWAGL", + "operator": "Morbihan énergies | FR*S56", + "ref": "25088", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04573000000, + 47.92570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.4 kW;22 kW", + "owner:ref:FR:SIREN": "007220338;901360602", + "ref:EU:EVSE": "FRLODP;FRLODPCANDAS80150", + "network": "Bornes de recharge AC Candas;LODMI", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Normatech Lodmi;Normatech ", + "ref": "9a20d4d6-4f37-4557-be0f-81cae434db06;6a3786a6-dc93-4cb9-af0c-ed80139a1d37", + "start_date": "2023-06-22", + "description": "Parking Candas;Le BOISLE", + "operator:email": "contact@lodmi.com", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98560900000, + 50.27354100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/1924e6e2-90bd-43f7-a7a6-339284c4bdf9", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMW1P8973178349994818759", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "951437", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48792000000, + 43.56730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 23 ALLEE DU COLLEGE - VAUCRESSON", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2021-07-15", + "ref": "FR*SOD*S*SIGE*167*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE16711;FRSIGPSIGE16712", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14995700000, + 48.83363500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Station HPC Super U Saint Jean de Monts - 1", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001355;FRCG0E001353;FRCG0E001356;FRCG0E001357;FRCG0E001358", + "ref": "FRCG0E001355;FRCG0E001353;FRCG0E001356;FRCG0E001357;FRCG0E001358", + "description": "Station HPC Super U Saint Jean de Monts - 1", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2023-12-13", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04617230000, + 46.79526729000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89877017", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Beaune Sud 1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-07-27;2023-07-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84299000000, + 47.01228200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-08", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "description": "MOBIVE | Moliets | Parking du Tennis;MOLIETS - PARKING DU TENNIS", + "ref": "ddfe1c3f-32f0-5484-af84-74ff0d32fccf;FR*SOD*S*MB40*69*1*_*_", + "operator": "199__SYDEC40;IZIVIA", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "ref:EU:EVSE": "FRS40PMB406913;FRS40PMB406911;Non concerné;FRS40PMB406912;FRS40PMB406914", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35945800000, + 43.84949500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEAUX - Gendarmerie Nationale", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE77MXAA", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89236300000, + 48.95774200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9005652;FRALLEGO9005572;FRALLEGO9003511;FRALLEGO9003512;FRALLEGO9003531;FRALLEGO9003532;FRALLEGO9005571;FRALLEGO9005651", + "capacity": "8", + "network": "Allego Carrefour Châteauroux", + "start_date": "2024-03-22", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9005652;FRALLEGO9005572;FRALLEGO9003511;FRALLEGO9003512;FRALLEGO9003531;FRALLEGO9003532;FRALLEGO9005571;FRALLEGO9005651", + "description": "Allego Carrefour Châteauroux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69724815000, + 46.80667947000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4074EVCP04;LFR4074EVCP01;LFR4074EVCP02;LFR4074EVCP03", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "ABBEVILLE - Schuman", + "ref": "LFR4074EVCP04;LFR4074EVCP01;LFR4074EVCP02;LFR4074EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85845200000, + 50.10426100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRABELS - Rue Louis Pasteur Haute", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34116001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82601600000, + 43.64386260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Les Orres, Parking Bois Méan;Réseau eborn/G7IIRTHTVV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "G7IIRTHTVV;30419", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPG7IIRTHTVV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55290000000, + 44.48520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8824274524074156061", + "ref": "1090530", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLSOJ6FLSM98P0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25368900000, + 49.06895600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE CHESNAY - Hôpital Mignot", + "ref:EU:EVSE": "FRP07E78158001", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-07-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12824700000, + 48.82990600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/PFIHFF2BIG;Anthy-Sur-Leman, Parking Salle des Fêtes", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "32890;PFIHFF2BIG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPPFIHFF2BIG", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42785000000, + 46.35486000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-08-08", + "socket:type2_combo:output": "300 kW;225 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPMULIGB", + "charging_station:output": "300 kW;225 kW", + "operator": "ELECTRA", + "description": "Mulhouse - Indigo Mulhouse Gare Bâle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34566400000, + 47.74599200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E76351002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-09-13", + "description": "Parking le Havre René Coty - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11075191953, + 49.49598723714 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR VIRY-CHATILLON", + "capacity": "2", + "network": "SONEPAR VIRY-CHATILLON", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6628885", + "ref": "FRCPIE6628885", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38968500000, + 48.67589400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/LLW6DV1LC1EF7X;Besançon, Rue Frédéric Chopin", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPLLW6DV1LC1EF7X;FRECHP763304354154502534", + "ref": "1110411;LLW6DV1LC1EF7X", + "charging_station:output": "22 kW", + "start_date": "2024-05-14", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04009000000, + 47.26222000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Boulevard Exelmans 77", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1617", + "start_date": "2021-09-07", + "capacity": "4", + "ref": "FR*V75*PPX16*17", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25950000000, + 48.84330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20815600000, + 49.97166030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/VSEYDG", + "amenity": "charging_station", + "ref": "909870", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "44 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P4153464739194536713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87378000000, + 48.00240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP01004", + "start_date": "2022-12-07", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "352191910", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRTCBP01004", + "network": "VIKINGS CASINO MERCURE GRANVILLE", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "VIKINGS CASINO MERCURE GRANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59540402889, + 48.84031677246 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/WOJVP7XK3S", + "ref:EU:EVSE": "FRFR1P2199004390135362372", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "ref": "466266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70918600000, + 48.59542800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Mini - Saint-Herblain - zone MINI", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW448002", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61894000000, + 47.24845400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2910800", + "description": "Landudec-Rue des Écoles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33824300000, + 48.00072100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARCASSONNE - Avenue Claude Bernard", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11069010", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34888000000, + 43.22830900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1PEAC78083;FRZP1PEAC77679", + "charging_station:output": "22 kW", + "description": "Hostellerie du Causse - 22 kW AC", + "ref": "a9c063c0-e238-4baf-93a7-9769dcf0aac7", + "network": "Logis Hostellerie du Causse", + "owner:ref:FR:SIREN": "440450526", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71171707000, + 44.76948160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BAIRON ET SES ENVIRONS - Mairie", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "network": "MODULO - BAIRON ET SES ENVIRONS - Mairie", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS08E57698;FRS08E57697", + "ref:EU:EVSE": "FRS08E57698;FRS08E57697" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76344500000, + 49.51316500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "79501", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/BPQRSK", + "ref:EU:EVSE": "FRS80PBPQRSK", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75484000000, + 50.31400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST25212;FRIZFPFAST25211;FRIZFPFAST25213", + "start_date": "2024-08-13", + "description": "IZIVIA FAST - MC DONALDS - MOURENX", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*252*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62579000000, + 43.37221900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44029002;FRS44P44029B", + "charging_station:output": "22 kW", + "description": " DIVATTE-SUR-LOIRE - Rue Des Mésanges;OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Mesanges", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-26;2024-04-19;2024-04-21", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33496700000, + 47.26965300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-08-12;2023-05-31", + "ref:EU:EVSE": "FRS77P77100B;FRS77E77100002", + "ref": "01F5ZAKH615GBMD56QDRJ7JNPA", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "LE CHATELET-EN-BRIE - Rue Des Petits Champs;Le Châtelet-en-Brie / CCVC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80007600000, + 48.50958600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "THALAZUR ROYAN", + "amenity": "charging_station", + "description": "THALAZUR ROYAN", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000056009;FRGSPP1000056010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04104710263, + 45.61853402616 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BOURGUEIL - Rue Jean Causseret", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E219941;FRS37E219947", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219941;FRS37E219947", + "description": "MODULO - BOURGUEIL - Rue Jean Causseret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16848028000, + 47.27856391000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "operator": "44__CCCPH", + "description": "CCCPH - Audun-le-Roman", + "capacity": "2", + "amenity": "charging_station", + "ref": "a2a72af8-86a2-53cf-8e56-d4de60e4ac57", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90574900000, + 49.36665700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "1", + "network": "LPA Parking FAO - N1 - Zone 2", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "LPA Parking FAO - N1 - Zone 2", + "ref:EU:EVSE": "FRG10P69383CB", + "ref": "FRG10P69383CB", + "start_date": "2024-06-28", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84047289000, + 45.75710720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | ST JULIEN EN BORN - Parking Office du Tourisme", + "ref": "c92eaf73-3145-5207-8565-126fd24f83cc", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22715500000, + 43.06325300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-20", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE28112;FRSIGPSIGE28111", + "ref": "FR*SOD*S*SIGE*281*1*_*_", + "description": "SIGEIF - 29 AVENUE DE LIVRY - LE RAINCY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51999400000, + 48.90223900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCPIE6501915", + "ref": "FRCPIE6501915", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-05-15", + "description": "GVA ORANGE ABB", + "network": "GVA ORANGE ABB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84174700000, + 44.11830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "BRICO LECLERC BOURCEFRANC", + "ref:EU:EVSE": "FRLE2PWKPH;FRLE2PMGTV;FRLE2PJYES;FRLE2PEVBZ", + "description": "BRICO LECLERC BOURCEFRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143871552, + 45.83584669111 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "d8adae73-2dbf-5b0d-95b8-05a3e3c2be80", + "description": "MOBIVE | Saint laurent Sur Manoire (Boulazac Isle Manoire) | Zadu Grand Front", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79182700000, + 45.15127600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "network": "AlterBase", + "charging_station:output": "3.22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - St Loup Lamairé - Centre", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB25010A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16642619000, + 46.78781078000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Pays de Gex - ePremium - Saint-Genis-Pouilly - Georges Sand", + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "start_date": "2020-03-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRAGXP01354B", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02112400000, + 46.24408900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "ANNOEULLIN", + "ref:EU:EVSE": "LFR2389EVCP02;LFR2389EVCP01;LFR2389EVCP03", + "ref": "LFR2389EVCP02;LFR2389EVCP01;LFR2389EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94012000000, + 50.53080300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRM38E38524006", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VARCES-ALLIERES-ET-RISSET - Rue des Tanneurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68367354801, + 45.09583538644 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*138*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ13811;FRA16PWIIZ13812", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ANTIBES PARKING ROI SOLEIL", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10888200000, + 43.58331700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/VIY9LSWFOF", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "735207", + "ref:EU:EVSE": "FRFR1P2580663172896472051", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61174900000, + 48.94217100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26;2024-01-28", + "ref:EU:EVSE": "FRPD1PAUCVIL", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Auchan - Villers-Bretonneux", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52566999377, + 49.85707986257 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "DDGRGVA9AS;85718", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDDGRGVA9AS", + "description": "Valbonnais, Rue Principale;Réseau eborn/DDGRGVA9AS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90845000000, + 44.90066000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPLVVCA", + "network": "ELECTRA", + "socket:type2_combo:output": "50 kW;300 kW", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "description": "La Valette-du-Var - Auchan", + "capacity": "10", + "charging_station:output": "300 kW;22 kW;50 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98233900000, + 43.13379400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "35", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E060880071;FRP07E06088007;FRP07E060880072;FRP07E060880073", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-02", + "description": "NICE - Arénas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21461200000, + 43.66899510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT RAILLENCOURT", + "ref": "FRCPIE6690045", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT RAILLENCOURT", + "ref:EU:EVSE": "FRCPIE6690045", + "start_date": "2023-02-16", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19068100000, + 50.18603100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "description": "Cucq , Place Jean Sapin;Easy Charge/ADPWEZEQNB", + "socket:type2_combo:output": "24 kW", + "ref": "756828;ADPWEZEQNB", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP103865360623843702;FRECHPADPWEZEQNB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58981400000, + 50.48126900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP143024", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Communauté d'Agglomération d'Epinal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44108800000, + 48.18079800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1170465", + "ref:EU:EVSE": "FRFR1P2148040889699808605", + "description": "Freshmile France/LLYRBZCI5H24GI", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61372600000, + 45.25146400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-06-17", + "ref": "FR*V75*PPX07*03", + "ref:EU:EVSE": "FRV75PPX0703", + "opening_hours": "24/7", + "description": "Paris | Rue Constantine 25", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31483400000, + 48.85872630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "294455", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PLJENBZ", + "description": "Freshmile France/LJENBZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93729000000, + 49.03760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "7.36 kW", + "opening_hours": "Mo 10:00-17:00, Tu 10:00-17:00, We 10:00-17:00, Th 10:00-17:00, Fr 10:00-17:00", + "ref:EU:EVSE": "FRSSDPOFFICENOTARIAL341601", + "start_date": "2021-03-31", + "operator:email": "support@driveco.com", + "description": "Office Notarial - Castries", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97590300000, + 43.66989800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22379001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Trevou Treguignec-Rue de la mairie", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35838800000, + 48.81290800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - COURS-LES-BARRES - Grande Rue", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E181472;FRS18E181473", + "description": "MODULO - COURS-LES-BARRES - Grande Rue", + "ref": "FRS18E181472;FRS18E181473" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03166000000, + 47.02565600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "383328358", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "a1df7b5d-fc64-4512-a3fe-b97d6722da61", + "operator": "CENTAURE", + "network": "CENTAURE", + "operator:email": "centaure.jlr@orange.fr", + "start_date": "2023-07-21", + "description": "CENTAURE GEVREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99812700000, + 47.21967400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/SX6GEG8ZZ9", + "ref:EU:EVSE": "FRS10P5247441857020479130", + "ref": "32104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72618400000, + 48.52045600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBINE - Avenue de la Ribaute - La Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81005001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-05-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53934298971, + 43.46044962193 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2019-04-10", + "capacity": "5", + "description": "IONITY Vrigny", + "ref": "FRIONE401700", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIONE401700", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91867100000, + 49.24297400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-22;2024-04-24", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAINT-ANDRE-DES-EAUX - Impasse Du Parvis;OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Parvis", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44E44151001;FRS44P44151A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30994000000, + 47.31383200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Ormesson;ORMESSON - Rue De Beaumont", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-22", + "ref:EU:EVSE": "FRS77P77348A;FRS77E77348001", + "ref": "01F5ZAKH61HXHE8EZ4KVA08RHB", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65441700000, + 48.24354600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-OMER - Quartier de la cavalerie", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH01E62765004", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26548800000, + 50.75224300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E254847;FRS37E254848", + "capacity": "2", + "network": "MODULO - VEIGNE - Centre Abbé Fiot", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - VEIGNE - Centre Abbé Fiot", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E254847;FRS37E254848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73551700000, + 47.28810400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Baden - Chemin du Vrancial", + "start_date": "2016-10-04", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PYLFQUA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91851626990, + 47.61833014968 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-03-08", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*156*2*_*_;FR*SOD*S*LYON*156*1*_*_", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "FOS01 - MAIRIE DE FONTAINES", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON15622;FRGLYPLYON15621;FRGLYPLYON15611;FRGLYPLYON15612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84474600000, + 45.83536300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*MEL*P59496*01", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "HANTAY - Rue Mirabeau", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRMELP5949601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86681500000, + 50.53306600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPNOVOTEL629501", + "start_date": "2019-07-12", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Hôtel Novotel - Noyelles", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97969000000, + 50.41490200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "description": "SONEPAR VAUPALIERE 1", + "network": "SONEPAR VAUPALIERE 1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6585645", + "ref": "FRCPIE6585645", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01412700000, + 49.48268500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/U5VKNYZZH8", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "529895", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRLE2P2477864115282131159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45208000000, + 48.64571500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Maransin | Rd N°120- Ld le Bourg-Parking Eglise", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "5bb34201-e2e1-5baa-854e-667934e6d30c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26885000000, + 45.07088900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "description": "Crosne - Avenue Jean Jaurès", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "26c64ebc-a66d-57eb-b70a-e6218c7915ab" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45889600000, + 48.71585800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "description": "CASINO MONTPELLIER", + "network": "ALLEGO;CASINO MONTPELLIER;GreenToWheel", + "amenity": "charging_station", + "charging_station:output": "50 kW;350 kW;43 kW;300 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSITE00000102;FRALLPCAS006", + "start_date": "2021-04-14;2022-06-27", + "capacity": "16;7;9", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "socket:type2_combo:output": "50 kW;350 kW;300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88903400000, + 43.58858000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3667EVCP01", + "operator:email": "bornes@lidl.fr", + "description": "MONTMELIAN", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3667EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05022900000, + 45.49669300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Saint-Esteve-Jeanson, Parking Sud", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PVAMSGXGVKQ", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40410100000, + 43.67940200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "100 kW;160 kW", + "amenity": "charging_station", + "ref": "741150", + "description": "SDEY/YNELILYBTU", + "socket:type2_combo:output": "160 kW", + "ref:EU:EVSE": "FRS89P7756505531585881944", + "network": "SDEY", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99151400000, + 47.50868500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-05-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MANDELIEU-LA NAPOULE - PARKING BEGUIER", + "ref": "FR*SOD*S*WIIZ*26*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ2611;FRA16PWIIZ2612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94127400000, + 43.54782900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "435165", + "ref:EU:EVSE": "FRFR1P1629668838226490164", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/UQMWXP1LTB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58292600000, + 47.59199100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-06-13", + "description": "Mr. Bricolage - Dombasle-sur-Meurthe", + "ref:EU:EVSE": "FRPD1PMRBDOM", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34852844299, + 48.62336284097 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1154037;LLTHE8SJ62IOXV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Sollières-Sardières, Val Cenis - Intermarché;Réseau eborn/LLTHE8SJ62IOXV", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLLTHE8SJ62IOXV;FREBNP788905395956236377", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81207800000, + 45.26549600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1131276", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FREVZP8214009809315980385", + "network": "EVzen", + "operator:email": "support@evzen.com", + "description": "EVzen/4955BFD0-12DF-49AE-B0AB-41CDB883C198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66380800000, + 45.19265000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*594*1*_*_;FR*SOD*S*OTHR*594*2*_*_", + "start_date": "2023-02-23", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - GRIGNY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR59411;FROTHPOTHR59421", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78226800000, + 45.60553600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPXQQCZS16EH", + "ref": "79303;XQQCZS16EH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Jausiers, Place d'Arnaud Ville;Réseau eborn/XQQCZS16EH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73510500000, + 44.41953100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Mably, COSEC Mably", + "ref:EU:EVSE": "FREBNPJMKUVVPZI3", + "ref": "JMKUVVPZI3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06897568000, + 46.07763561000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "50 kW;300 kW", + "start_date": "2023-07-06", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "charging_station:output": "50 kW;300 kW;62.5 kW;22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A11 Les Manoirs du Perche", + "ref:EU:EVSE": "FRVIAP104111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08310400000, + 48.24037000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1053123", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P400889421262046970", + "description": "Freshmile France/LLUI2JRZYG7UCV", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02616100000, + 42.83702900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX13*21", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Avenue D'Ivry 58", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1321", + "start_date": "2022-01-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36430800000, + 48.82406800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1179954", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1907389166247082872", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMSXW1TR21P2A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73339200000, + 48.60809300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-30", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSIBLU444201", + "operator:email": "support@driveco.com", + "description": "Le Parc de Guibel (Camping Siblu) - Piriac-sur-Mer", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51025200000, + 47.38671300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-07-26", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PGIVERNYTOURISTIQUE2", + "description": "900047", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53008100000, + 49.07471200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22021001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Brusvilly-Parking rue de Broons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12900000000, + 48.38900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78590001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "SENLISSE - Malvoisine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98287670000, + 48.68721370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Moy_Park_2;Moy_Park_1", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "12", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-09-13", + "ref:EU:EVSE": "FRROSE151;FRROSE150", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97773480000, + 50.40121440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWATLPSZFKBE4", + "ref": "1061154", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP1737991028382970380", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41738700000, + 48.65672900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIONE403300", + "network": "IONITY GMBH", + "start_date": "2019-10-17", + "capacity": "5", + "description": "IONITY Sarthe Nord", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE448300", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54851680000, + 49.08925900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - AVIZE - Rue du bourg Joli", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - AVIZE - Rue du bourg Joli", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E43907;FRS51E43906", + "start_date": "2020-12-11", + "ref:EU:EVSE": "FRS51E43907;FRS51E43906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00981800000, + 48.97194100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS65E65184001", + "operator": "Bouygues E&S", + "description": "GALAN - Centre", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40721800000, + 43.22220300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20886750000, + 49.97224150000 + ], + [ + 1.20879060000, + 49.97229140000 + ], + [ + 1.20873630000, + 49.97225680000 + ], + [ + 1.20881320000, + 49.97220690000 + ], + [ + 1.20886750000, + 49.97224150000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Saint-Rénan", + "ref": "FRIENE000302;FRIENE000301", + "description": "Saint-Rénan", + "ref:EU:EVSE": "FRIENE000302;FRIENE000301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.64257100000, + 48.43570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MUDAISON - Rue des Ecoles", + "ref:EU:EVSE": "FRS34E34176002", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04151700000, + 43.64877130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PFZXXAW", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Guidel - Route de Kerbrest", + "start_date": "2016-09-30", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52617400000, + 47.77237600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3265172082798507672", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398912", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JXSPR9YPGN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02390000000, + 47.21450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "UZES - Rue De L'Escalette - Parking du Stade du Refuge", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30334001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41914700000, + 44.00711500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Tivoli Capital - Villeneuve d\\'Ascq", + "amenity": "charging_station", + "start_date": "2020-11-18", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPTIVOLI594931" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15962000000, + 50.60425400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "FELIS CANIS", + "description": "FELIS CANIS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator": "CAR2PLUG", + "ref": "FRC2P007001", + "owner:ref:FR:SIREN": "803965110", + "start_date": "2023-06-10", + "ref:EU:EVSE": "FRC2P007001", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34235070000, + 49.89694550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMELACLAPE11", + "start_date": "2022-06-01", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "ref": "f1be318f-a242-42a9-ad6e-73d6cd386179", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "LACLAPE CAMPING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51940100000, + 43.28532000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "description": "MOBIVE | Javerlhac-Et-La-Chapelle-Saint-Robert | Place du 8 Mai 1945", + "amenity": "charging_station", + "ref": "e6c87df6-ce52-5739-90f5-d065cb6a35f9", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55972000000, + 45.56986000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE33VACA", + "operator": "STATIONS-E", + "capacity": "2", + "description": "CAPA PROMOTION", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-07-10", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58537300000, + 44.78035100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "description": "BornEco/63dcf040de530c3ec2928d03", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRBHMP2638385355307209845", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "ref": "767310" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01379200000, + 48.55540200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "529892", + "ref:EU:EVSE": "FRLE2P1530381304938787793", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/TXZL7KODSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00039900000, + 49.28251100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Le Rove, Place de L'Eglise", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PX5YVABTEAR", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035000000, + 43.36924000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "SDEY/XCORTW51OS", + "capacity": "4", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS89P8987892870082386993", + "ref": "529967" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33688800000, + 47.70702400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89363736", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "R3 - Norauto Selestat", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "start_date": "2023-04-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46209100000, + 48.28071800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6142550020817820361", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/WRHI28XGMJ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "387713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05861000000, + 49.03502700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUFQM", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Système U - Faulquemont", + "start_date": "2023-11-15", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59389473016, + 49.04896772130 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Pradelles, Place du Foirail", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPZDR9Q4PKYJ", + "ref": "ZDR9Q4PKYJ", + "start_date": "2021-09-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88370200000, + 44.76987890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP1235276152076401260", + "ref": "590672", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "description": "CARF - Bornes Publiques/30863A27-91A6-40AA-9C8C-2A08ADC581E5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41443800000, + 43.94150800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - BOUCAU", + "ref": "FR*SOD*S*OTHR*793*1*_*_;FR*SOD*S*OTHR*793*2*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR79311;FROTHPOTHR79321", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48056110000, + 43.53033580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNMSA4LEJVKS;FREBNPMSA4LEJVKS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "MSA4LEJVKS;106955", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/MSA4LEJVKS;Montfort-Sur-Argens, Rue De La Rougiere", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12120900000, + 43.47324700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/G3IUATQPKH;Le Beausset, 3 Rue Du Stade", + "ref": "75287;G3IUATQPKH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNG3IUATQPKH;FREBNPG3IUATQPKH", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79895800000, + 43.19584800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR40011", + "start_date": "2022-05-11", + "description": "UNIVITIS - LES LEVES-ET-THOUMEYRAGUES", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*400*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "network": "UNIVITIS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17675200000, + 44.79435100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/X0KAYOBXRZ", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4162686080791950069", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "479235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65746800000, + 45.24507800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Sisteron, France - Val de Durance", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP4003025", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91310760000, + 44.23637610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7544470099361121798", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MGDPUMKMC1", + "operator": "Freshmile | FR*FR1", + "ref": "735168" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71620000000, + 47.20721500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "description": "AMP | Mirabeau", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "FR*TCB*P02574", + "ref:EU:EVSE": "FRTCBP02574", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31216825470, + 43.40882484562 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Freshmile France/OA04A96XNU", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7171382002153417914", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "510545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83662900000, + 47.07524800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1112112", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/LLV2GR8642HBIN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P3580686693217809531", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89059400000, + 48.84378400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mazda - Mareil-Marly - 22kW AC ;Mazda - Mâcon - 22kW AC ", + "network": "MAZDA MAREIL MARLY - TECHNIC AUTO SERVICES;Mazda Macon - ACT AUTOMOBILES ", + "amenity": "charging_station", + "capacity": "1", + "ref": "95769;57516", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00;Mo-sat 08:00-19:00", + "owner:ref:FR:SIREN": "423313014;379198443", + "ref:EU:EVSE": "FRZMAE22AC95769;FRZMAE22AC57516", + "start_date": "2021-12-23;2021-04-13", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07661690000, + 48.88695870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "Najeti_Chateau_Tilques", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-06-15", + "ref:EU:EVSE": "FRROSE362" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21411800000, + 50.77506500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEZY-SUR-SEINE - Avenue De Château Briand", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78403001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88645830000, + 48.99940830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE459453;FRIOYE459452;FRIOYE459451;FRIOYE459403;FRIOYE459402;FRIOYE459401;FRIOYE459404", + "capacity": "7", + "description": "Rodez", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE459453;FRIOYE459452;FRIOYE459451;FRIOYE459403;FRIOYE459402;FRIOYE459401;FRIOYE459404", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Rodez", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58600600000, + 44.36932500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2024-05-27;2021-03-31", + "description": "LOUVERNE - Rue Auguste Renoir;OuestCharge - Diva Sp - Louverne - Renoir", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS53P53140A;FRS53E53140001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71852300000, + 48.12177300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "description": "LATOUR DE FRANCE - Avenue du Général de Gaulle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS66E66096002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66573200000, + 42.76557600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE011701;FRIENE011702", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE011701;FRIENE011702", + "start_date": "2024-01-09", + "network": "Reims B", + "description": "Reims B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02982200000, + 49.22571100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "FOUGERES - 2 rue Jean Marie Chaperon (Esplanade des chaussonnieres) ", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35115002B1", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19424600000, + 48.34965100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-14", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "description": "LA FERRIERE AUX ETANGS - Place Henri Buron", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61278A", + "ref": "SE61-FERRI-001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51790000000, + 48.66138800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLJ2K65U34HTVY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1711323751776818604", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892314", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95928200000, + 48.83015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "YKUDXS;49033", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-08", + "owner:ref:FR:SIREN": "200075240", + "description": "Peyssies, Mairie;Roulez Électrique En Haute-Garonne/YKUDXS", + "ref:EU:EVSE": "FRS31PYKUDXS", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17716000000, + 43.32110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92050013", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-07-19", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "NANTERRE - Rue Paul Vaillant Couturier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20408000000, + 48.88275000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-22", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000512;FRCG0E000511", + "network": "TIGNESPACE - 73320 - 1", + "opening_hours": "Su 10:00-21:00,Sa 10:00-21:00,Fr 10:00-21:00,Th 10:00-21:00,We 10:00-21:00,Tu 10:00-21:00,Mo 10:00-21:00", + "operator:email": "info@chargeguru.com", + "description": "TIGNESPACE - 73320 - 1", + "ref": "FRCG0E000512;FRCG0E000511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90413600000, + 45.46809200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-13", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE18221;FRM06PNICE18212;FRM06PNICE18211;FRM06PNICE18222", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "SAINT-JEAN-CAP-FERRAT - PARKING DU CENTENAIRE", + "ref": "FR*SOD*S*NICE*182*1*_*_;FR*SOD*S*NICE*182*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33438860870, + 43.68908918544 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "94d7365a-2fbe-52d2-b231-d073ba20ee79", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Nérac | Foirail | Gauche", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33556200000, + 44.13417900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32111;FRSIGPSIGE32112", + "ref": "FR*SOD*S*SIGE*321*1*_*_", + "description": "SIGEIF - 204 RUE DESTIENNE DORVES - VERRIERES-LE-BUISSON", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25240100000, + 48.74098400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "1;2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS242093;FRBMPS222277", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Garage Moritz Automobiles - Val-de-Moder", + "operator:email": "exploitation@bump-charge.com", + "ref": "222277;242093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59156100000, + 48.84331700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3624EVCP01;LFR3624EVCP02;LFR3624EVCP03;LFR3624EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "SAINT MAXIMIN Liberte", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3624EVCP01;LFR3624EVCP02;LFR3624EVCP03;LFR3624EVCP04", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46999200000, + 49.24107000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Monbahus | Rue de L'Eglise", + "ref": "19fa7759-51df-5366-ab22-076a0c808876" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53505000000, + 44.54946000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "description": "Épinay-sur-Orge - Rue Pasteur", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "dd8be330-3717-59fb-a24d-1b1c571d1f96", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33194400000, + 48.66905600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "2.3 kW;22.08 kW", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP78140VLZL0UV01S", + "operator:email": "contact@e55c.com", + "description": "PLACE LOUVOIS - VELIZY", + "ref": "FR*55C*P78140*VLZ*L0UV01S", + "start_date": "2022-11-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19694500000, + 48.78112200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3829EVCP08;LFR3829EVCP03;LFR3829EVCP06;LFR3829EVCP05;LFR3829EVCP01;LFR3829EVCP02;LFR3829EVCP04;LFR3829EVCP07", + "operator:email": "bornes@lidl.fr", + "capacity": "13", + "description": "NIMES Saint-Gilles", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "360 kW;180 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3829EVCP08;LFR3829EVCP03;LFR3829EVCP06;LFR3829EVCP05;LFR3829EVCP01;LFR3829EVCP02;LFR3829EVCP04;LFR3829EVCP07", + "socket:type2_combo:output": "360 kW;180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37218400000, + 43.80849800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Bolbec", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMBBC", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47444600000, + 49.57966000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/SKTP3NLG6S", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP2540399838140367121", + "opening_hours": "24/7", + "ref": "598287", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22993200000, + 44.09927100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP59172A", + "ref": "FRETIP59172A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2023-11-15", + "description": "e-Totem - Jet Car Wash Denain", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38375568619, + 50.32246313364 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04;2024-03-19", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E381850061;FRP01E38185006", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "network": "EFFIA France", + "charging_station:output": "22 kW;7 kW", + "description": "Parking Grenoble Notre Dame Musée - PARK GRENOBLE ALPES METROPOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73254300000, + 45.19475600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT951501", + "start_date": "2023-10-10", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Taverny", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20871500000, + 49.01634900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-06-06", + "ref": "LLIJYLL152EXZ6;892800", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hyères, Parking de l'Almanarre;Réseau eborn/LLIJYLL152EXZ6", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP7191472956365391902;FREBNPLLIJYLL152EXZ6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12466400000, + 43.07996100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-18", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR51522;FROTHPOTHR51521", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ES/ EGELHOF-HOLDING - SELTZ", + "ref": "FR*SOD*S*OTHR*515*2*_*_", + "network": "ES B2B", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.10929300000, + 48.90299400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2023-09-05", + "network": "COMM VILLEJUIF CTM 11", + "description": "COMM VILLEJUIF CTM 11", + "opening_hours": "24/7", + "capacity": "11", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6721995;FRCPIE6721985;FRCPIE6721975;FRCPIE6721965;FRCPIE6721955;FRCPIE6721945;FRCPIE6721935;FRCPIE6721925;FRCPIE6721915;FRCPIE6722005;FRCPIE6722015", + "ref": "FRCPIE6721995;FRCPIE6721985;FRCPIE6721975;FRCPIE6721965;FRCPIE6721955;FRCPIE6721945;FRCPIE6721935;FRCPIE6721925;FRCPIE6721915;FRCPIE6722005;FRCPIE6722015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35766500000, + 48.80077500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5623673141033150451", + "charging_station:output": "22 kW", + "ref": "801579", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/B6VI5YO8DJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36999100000, + 48.94491600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-02-15", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*UNIB*11*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRURWPUNIB1121", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "description": "CONFLUENCE - PKG N0M", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81605400000, + 45.74084400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/WNIBH3CHGH", + "ref:EU:EVSE": "FRFR1P4845656799808619233", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "505734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64497600000, + 43.66540500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-27", + "description": "TOULOUSE - Rue des Troênes", + "ref:EU:EVSE": "FRTLSE31555053", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41241400000, + 43.62115000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7798719120854850563", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JLDOS4PD2H", + "operator": "Freshmile | FR*FR1", + "ref": "368866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17119300000, + 44.50570200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P1664688123989678519", + "ref": "1194649", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "120 kW", + "description": "MobiSDEC/LM1KC3UIY2JKN4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48826500000, + 48.91233000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-03-21", + "operator": "Bouygues E&S", + "description": "ESPALION - Parking Alexandre Bessieres", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12096002", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76475700000, + 44.52484700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLHW9HHL6J", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA3P8407508192222947934", + "opening_hours": "24/7", + "ref": "694034", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42148200000, + 48.66422400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "description": "ROCHEFORT-SUR-LOIRE - Place du Pilori", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49228002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65569400800, + 47.35816574000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "FRESNAY-SUR-SARTHE - Gare de la Hutte Coulombiers", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-18", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS72E72097002", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10533600000, + 48.30341690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "WORMHOUT - Rue de l'église", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59663002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46799000000, + 50.88084500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44188A;FRS44E44188001", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Jardins;SAINT-PHILBERT-DE-GRAND-LIEU - Rue Des Jardins", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-28;2024-04-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64324500000, + 47.03774400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-10-06", + "amenity": "charging_station", + "ref": "518399", + "opening_hours": "24/7", + "description": "SIEG63 - ePremium - Riom - Reynouard;SIEG 63/FR*S63*P63300*C", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63300C", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11178700000, + 45.89586000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59365001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "LOUVROIL - Route d'Avesnes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96251400000, + 50.26446900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34015001", + "start_date": "2023-12-14", + "description": "ASSIGNAN - Avenue de Saint-Chinian", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89034500000, + 43.39883400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CRETEIL - Avenue Magellan", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94028008", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45767399069, + 48.76858337095 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE34522;FRM06PNICE34512;FRM06PNICE34511;FRM06PNICE34521", + "network": "NICE RP", + "description": "NICE - PARKING MIN", + "opening_hours": "24/7", + "start_date": "2023-12-21;2023-12-01", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*345*1*_*_;FR*SOD*S*NICE*345*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20658100000, + 43.67043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Neuvic | Parking Centre Multimedia, Rue des Freres Pouget", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "ref": "a5c242e7-4b17-50f6-afbb-d3445b8bf2b4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47081400000, + 45.09845000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*43*5*_*_;FR*SOD*S*SIGE*43*4*_*_;FR*SOD*S*SIGE*43*2*_*_;FR*SOD*S*SIGE*43*1*_*_;FR*SOD*S*SIGE*43*3*_*_;FR*SOD*S*SIGE*43*6*_*_", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FRSIGPSIGE4361;FRSIGPSIGE4311;FRSIGPSIGE4321;FRSIGPSIGE4331;FRSIGPSIGE4341;FRSIGPSIGE4351", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-10-15;2020-10-16", + "description": "SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26408100000, + 48.90525600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSPERPR", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "PERPIGNAN ROUSSILLON", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-02", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94604100000, + 42.70271600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTCEAU LES MINES Bois-du-Verne", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR0519EVCP01", + "capacity": "2", + "amenity": "charging_station", + "ref": "LFR0519EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35662200000, + 46.68877700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Anglet | Parking Paul Courbin", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "ref": "fc354d20-70d2-5758-ac71-9f79cf5663ff" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52859900000, + 43.49427000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VACQUEYRAS - Montée de Bellevue", + "amenity": "charging_station", + "ref": "7f35448d-ed1d-5cff-8912-967f2d6411f7", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98135700000, + 44.13892200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GAZERAN - Avenue du Général De Gaulle", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78269001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77238180000, + 48.63854620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4079EVCP03;LFR4079EVCP02;LFR4079EVCP01;LFR4079EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4079EVCP03;LFR4079EVCP02;LFR4079EVCP01;LFR4079EVCP04", + "socket:type2_combo:output": "120 kW", + "description": "LA GUERCHE DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23190100000, + 47.93604400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMTRY", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Troyes", + "socket:type2_combo:output": "160 kW", + "start_date": "2023-12-22;2024-09-16", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "160 kW;50 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08779265460, + 48.30126033155 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/IMKLPMKKZY", + "operator:email": "roaming@freshmile.com", + "ref": "75227", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPIMKLPMKKZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20972800000, + 46.19138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "18", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP01195A", + "opening_hours": "24/7", + "description": "E-VADEA/FR*EVA*P01195*A", + "network": "E-VADEA", + "charging_station:output": "22 kW;300 kW;50 kW;43 kW;150 kW", + "ref": "680714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451900000, + 46.20556600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORVSM", + "description": "Cora - Villers-Semeuse", + "opening_hours": "24/7", + "start_date": "2023-03-14;2023-03-15", + "socket:type2_combo:output": "100 kW;60 kW", + "charging_station:output": "50 kW;100 kW;22 kW;60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75294034393, + 49.73404510467 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT505601", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Blainville-Sur-Mer", + "start_date": "2024-06-17", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59392800000, + 49.06570200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRESEPS42218AF", + "operator": "E-TOTEM", + "start_date": "2019-06-20", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEPS42218AF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SEMOB Technopole - artisanat", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39277800000, + 45.45730300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*IZIG*344*3*_*_;FR*SOD*S*IZIG*344*2*_*_;FR*SOD*S*IZIG*344*1*_*_;FR*SOD*S*IZIG*344*4*_*_", + "description": "HYDRO EST FESSENHEIM - EXTERIEUR", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "start_date": "2022-04-07", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPIZIG34441;FROTHPIZIG34431;FROTHPIZIG34422;FROTHPIZIG34421;FROTHPIZIG34412;FROTHPIZIG34411;FROTHPIZIG34432;FROTHPIZIG34442" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56969000000, + 47.91683000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-12", + "ref:EU:EVSE": "FRCPIE6845515", + "capacity": "2", + "description": "LA NORMA BORNE LE PRA", + "amenity": "charging_station", + "network": "LA NORMA BORNE LE PRA", + "charging_station:output": "17 kW", + "ref": "FRCPIE6845515", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69871200000, + 45.20248400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521291", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/HDIXLRAADA", + "ref:EU:EVSE": "FRFR1P3508657438000504068" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60276700000, + 49.05228400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP122009", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-11-13;2024-02-01", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - B&B HOTEL ANTIBES SOPHIA ANTIPOLIS", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05861600000, + 43.62122300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/BH6XELLB75", + "ref:EU:EVSE": "FRFR1P5509419661539678873", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "368788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57355800000, + 44.83134400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Tournus, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP28396", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89953818000, + 46.57734067000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P2132823538036157866", + "ref": "980601", + "description": "Freshmile France/LLKUVJ1Y0QQMQG", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Fr,Th,We,Tu,Mo 07:30-18:30", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13368500000, + 45.74899000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/VAT5RXQZXS", + "ref:EU:EVSE": "FRS14P387765106726681984", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461979" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51699100000, + 49.34334600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461952", + "description": "MobiSDEC/TL6QWRNSBJ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P2811838328084460501", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62384600000, + 49.33847800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P1639955764221761948", + "network": "WAAT", + "description": "WAAT/FRWATLRCFIE15G", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "ref": "1128144", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31797100000, + 48.67414500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHERBOURG EN COTENTIN - Cité de la Mer", + "ref:EU:EVSE": "FRS50P501297", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-04-27", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61773100000, + 49.64358100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8115600122;FRS81E8115600112;FRS81E8115600111;FRS81E8115600121", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "MARSSAC S/ TARN - Place Du Barry", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-01-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02921522748, + 43.91775581549 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRHPCPNF059472", + "owner:ref:FR:SIREN": "531681694", + "network": "TotalEnergies Charge Rapide", + "description": "AIRE NARBONNE VINASSAN SUD", + "ref:EU:EVSE": "FRHPCENF059472", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-07-19", + "charging_station:output": "175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09247800000, + 43.21618900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS48E48075001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;150 kW", + "start_date": "2024-07-25", + "network": "Reveo", + "description": "ISPAGNAC - Route Neuve" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53344000000, + 44.37204000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/LYFYJOBRX4", + "operator:email": "roaming@freshmile.com", + "ref": "541925", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56P6701786562516578450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58990000000, + 47.73120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH05E62300001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ÉQUIHEN-PLAGE - Rue Charles Cazin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57130000000, + 50.67353100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Scrignac - Place de la Mairie", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2927500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.67820200000, + 48.43352100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZFUQTJ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-10-20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Vannes - Rue Tamara de Lempicka" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78828200000, + 47.65153100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MORTON-1-1;MORTON-1-2", + "ref:EU:EVSE": "FRLMSE12346052081;FRLMSE12346052071;FRLMSE12346052072;FRLMSE12346052082", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2017-04-20", + "operator": "SOREGIES MOBILITES", + "ref": "B074", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02363000000, + 47.10852800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "1084677", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P93030*B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93030B", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41673000000, + 48.94690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BRUNOY - Rue du Donjon", + "ref:EU:EVSE": "FRSIPE91114009", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50332107511, + 48.69938550417 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRATLP6833897761894114022", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref": "1000011", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Atlante/FRATLFR00350", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36594400000, + 48.12680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "NVH", + "start_date": "2022-07-01", + "capacity": "2", + "amenity": "charging_station", + "description": "CSE - BdF - Bidart", + "network": "CSE-Central BDF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "0", + "operator:email": "supervision@nvh-france.fr", + "owner:ref:FR:SIREN": "775657463", + "ref:EU:EVSE": "FRLMSE1000100977;FRLMSE1000100976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60000000000, + 43.43000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Le Refuge des Aiglons", + "owner:ref:FR:SIREN": "348002718", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "NM SECURELEC", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRMAPE000013448034;FRMAPE000013386096", + "ref": "2a58421e-08e5-4992-bcad-7e53de800fdf", + "description": "Refuge des Aiglons", + "start_date": "2022-05-02", + "operator:email": "infos@nmsecurelec.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86765700000, + 45.91680040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-FULGENT - Rue Jules Verne - Parking De La Communauté De Communes", + "ref:EU:EVSE": "FRS85E85215002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17026000000, + 46.85125000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour L'Hay-Les-Roses", + "description": "Allego Carrefour L'Hay-Les-Roses", + "start_date": "2023-12-19", + "amenity": "charging_station", + "ref": "FRALLEGO9007962;FRALLEGO9007961;FRALLEGO9007951;FRALLEGO9001602;FRALLEGO9000461;FRALLEGO9000462;FRALLEGO9001341;FRALLEGO9001342;FRALLEGO9001601;FRALLEGO9007952", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9007962;FRALLEGO9007961;FRALLEGO9007951;FRALLEGO9001602;FRALLEGO9000461;FRALLEGO9000462;FRALLEGO9001341;FRALLEGO9001342;FRALLEGO9001601;FRALLEGO9007952", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34530378000, + 48.78397890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "IZIVIA | PLAN-DE-CUQUES - BOULEVARD DE LA RESISTANCE", + "owner:ref:FR:SIREN": "912043676", + "ref:EU:EVSE": "FRIZMPMAMP522;FRIZMPMAMP521", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*MAMP*5*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46520600000, + 43.34521500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Match - Malzéville", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PMATMLZ", + "start_date": "2024-04-23", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17602330871, + 48.71874837968 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPEDM5XZ78S5", + "ref": "EDM5XZ78S5", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Theys, Parking RD 2558" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99250500000, + 45.29966110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "1115553", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP3151059653240760980", + "description": "EVzen/E8603EC2-E939-4F63-A781-319CBB4D7435", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26930900000, + 47.62492900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "description": "Ibis Styles - Chambray-lès-Tours", + "amenity": "charging_station", + "start_date": "2023-02-17", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PIBSCLT", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69904119018, + 47.33553160313 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LDJEOI8BK0;75149", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Crolles, Avenue Joliot Curie;Réseau eborn/LDJEOI8BK0", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLDJEOI8BK0", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88173900000, + 45.28348500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - VILLA DES OLIVIERS - TOULOUSE", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP31555A", + "ref": "FRETIP31555A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49211000000, + 43.58446100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "U EXPRESS - ORADOUR-SUR-GLANE", + "network": "SYSTEME U", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-11-05", + "ref:EU:EVSE": "FROTHPOTHR20511;FROTHPOTHR20512", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*205*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03177800000, + 45.93465600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "description": "MONTHLERY - BOURGUIGNONS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS3512;FRCPSPCAPS3511", + "opening_hours": "24/7", + "start_date": "2020-01-06", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*CAPS*35*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27330600000, + 48.64486700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1173165", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LM00PYZOP1MYG3", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3259098235931173359" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61115000000, + 44.76757500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVISP2179330972127022548", + "charging_station:output": "2.1 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "ENRGETICA/e51d006a-9055-46c9-acb6-66eded5c5e53", + "ref": "873906", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30660900000, + 43.57236400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "559820", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/W9MMBJJDP7", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5852631131231206256", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42536800000, + 43.64393000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ABB T54 Hyundai ECHIROLLES", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000081566", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1000081566", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2023-12-21", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70735900000, + 45.15252700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PNW2L9MBAJT", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-12-29", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "528932627", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Touquet, Avenue de l'Hippodrome", + "network": "Touquet Semi Rapide", + "operator:email": "advenir@freshmile.com", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59567398311, + 50.51999281984 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 07:30-19:00, Tu 07:30-19:00, We 07:30-19:00, Th 07:30-19:00, Fr 07:30-19:00", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "VSF - Saint-Amand-Longpré (2ème bâtiment)", + "start_date": "2022-12-13", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPVSF413102", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00391400000, + 47.69525400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-03", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - GARNAY - Pkg. mairie", + "opening_hours": "24/7", + "network": "MODULO - GARNAY - Pkg. mairie", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E137367;FRS28E137368", + "ref": "FRS28E137367;FRS28E137368" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34046400000, + 48.70357800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Point P Sotteville Carrelage", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-22", + "network": "point p", + "operator:email": "support@evbox.com", + "ref": "EVB-P2212257", + "owner:ref:FR:SIREN": "310818000", + "operator": "EVERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10723844974, + 49.42364041622 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P2267415954770605934", + "opening_hours": "24/7", + "ref": "39791", + "description": "SDEA 10/TNUS0N5LCV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19428900000, + 48.53144300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "706280", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP6485420376803982813", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLTGDFSVCU", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04187900000, + 43.40071400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Kiloutou_Bruz", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "ref:EU:EVSE": "FRROSE446", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72569800000, + 48.03539200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8130800111;FRS81E8130800112;FRS81E8130800121;FRS81E8130800122", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-04-06", + "capacity": "1", + "description": "VALENCE D'ALBIGEOIS - Chemin De Ginestous Salle Communale", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40204691900, + 44.02026748700 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "442414207", + "ref": "FRIPKPNEM", + "amenity": "charging_station", + "capacity": "15", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-06", + "ref:EU:EVSE": "FRIPKPNEM", + "description": "INTERPARKING - Nimes Nemausus", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856000000, + 43.83188200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-27;2024-04-05", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49P49099C;FRS49E49099003", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "CHOLET - Rue Bourg Baudry - Parking;OuestCharge - Diva Sp - Cholet - Baudry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87911900000, + 47.06010900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PCMFXCG", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "505512", + "description": "Mouv'Oise/CMFXCG", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40999000000, + 49.34540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA COUTURE - Rue du Colonel Bento Roma", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRH13E62252001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "start_date": "2022-03-02;2022-03-03", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71459300000, + 50.58034700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NIMES - Droite - Ancienne Route De Générac", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36031162739, + 43.81832649925 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2017-06-09", + "description": "Gourin - Place Général de Gaulle", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PCYTRZG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60097700000, + 48.14101600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-07-13", + "ref": "B081", + "description": "QUINCAY-1-1;QUINCAY-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346396831;FRLMSE12346396841" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22979000000, + 46.61040100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94080H", + "start_date": "2021-01-12", + "description": "Metropolis - ePremium - Vincennes - Diderot (118)", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44706335000, + 48.85030215000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "description": "SIGEIF - 1 RUE GEORGES CORETE - GENNEVILLIERS", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "start_date": "2021-05-10", + "ref": "FR*SOD*S*SIGE*139*4*_*_;FR*SOD*S*SIGE*139*1*_*_;FR*SOD*S*SIGE*139*2*_*_;FR*SOD*S*SIGE*139*3*_*_;FR*SOD*S*SIGE*139*5*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE13941;FRSIGPSIGE13931;FRSIGPSIGE13921;FRSIGPSIGE13911;FRSIGPSIGE13951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30774800000, + 48.92073700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-29", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78545001", + "network": "CPO Alizé Liberté Public", + "description": "SAINT CYR l'ECOLE - Place Lully" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06824600000, + 48.80614980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89732236", + "amenity": "charging_station", + "start_date": "2023-10-05", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Valenciennes Ouest", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47212600000, + 50.37801800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "start_date": "2020-06-08", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "ref:EU:EVSE": "Non concerné;FRS16PMB162011;FRS16PMB162012", + "opening_hours": "24/7", + "description": "MAINE DE BOIXE - PLACE DE LA MAIRIE;MOBIVE | Maine de Boixe | Place de la Mairie", + "ref": "FR*SOD*S*MB16*20*1*_*_;bc8fa21b-9ddc-5bd6-9a0e-83246ce08538", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17747200000, + 45.85203600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-08", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "description": "L'Abreuvoir - Combs-la-Ville", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77CVAA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57538300000, + 48.65993600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-16", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "CHARLEVILLE MEZIERES", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSCHLME", + "charging_station:output": "75 kW;0 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70654000000, + 49.73837000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "FORBACH Prouvé", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3625EVCP02;LFR3625EVCP01;LFR3625EVCP03", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3625EVCP02;LFR3625EVCP01;LFR3625EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87778400000, + 49.17587000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM31E31555014", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "TOULOUSE - Allée Maurice Sarrault", + "start_date": "2022-02-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42233200000, + 43.59548100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPI87DFGGXNC", + "ref": "I87DFGGXNC", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Roanne, Victor Hugo Mulsant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05725700000, + 46.03848930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4380668026660152522", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1122543", + "description": "Freshmile France/LLSOFFALFE4FLB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27704100000, + 49.05379100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E75112001;FRP07E751120011", + "start_date": "2020-06-19;2021-11-03;2023-09-08;2020-06-24", + "description": "PARIS - Faubourg Saint Antoine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37539600000, + 48.85084900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo,Tu,Th,Fr,We 09:00-12:00,We,Tu,Th,Mo 14:00-17:00;24/7", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPEDVOP2GKDT", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/EDVOP2GKDT;Nyons, 170 Rue Ferdinand Fert -", + "ref": "EDVOP2GKDT;85691" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11810700000, + 44.35214000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "description": "Aulnay-sous-Bois - Carrefour de l'Europe", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPAULCE", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-01-04", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48696500000, + 48.95119600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking gare de Lens - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E62498001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82910648563, + 50.42662287118 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT CAUDEBEC", + "ref": "FRCPIE6612515", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT CAUDEBEC", + "ref:EU:EVSE": "FRCPIE6612515", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03103900000, + 49.28983800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPVCBKGKDJE4;FREBNP1186415966935921843", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "VCBKGKDJE4;369028", + "description": "Réseau eborn/VCBKGKDJE4;Six-Fours-les-Plages, Quai St Pierre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80050600000, + 43.07487000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1182075", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570535", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P8745108157853384177" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46801300000, + 48.41456300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/FQNUI0CSO4", + "opening_hours": "24/7", + "ref": "585497", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "3.7 kW", + "ref:EU:EVSE": "FRFR1P3824674652337565404" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13385900000, + 45.76226700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "FRTCBP00707", + "start_date": "2022-10-17", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "network": "BMW EPINAL", + "ref:EU:EVSE": "FRTCBP00707", + "description": "CAR AVENUE - BMW EPINAL CHAVELOT", + "owner:ref:FR:SIREN": "347638884", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "charging_station:output": "50 kW;43 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43787095756, + 48.21586889781 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892167;892299", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "2;6", + "ref:EU:EVSE": "FRFR1P8871868460552079;FRFR1P465512877874964469", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLISKVAE12QGET;Freshmile France/LLJ2IG4DK1XFQ8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97340400000, + 45.11851100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Mercedes - Montluçon", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2020-06-19", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINMERCEDES031001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59695900000, + 46.35014600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Guilvinec-Place de la Poste", + "ref:EU:EVSE": "FRS29E29072001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28034200000, + 47.79613100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11018001", + "operator": "Bouygues E&S", + "start_date": "2018-07-13", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "ARZENS - Rue Des Condamines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21000000000, + 43.20083330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "819284126", + "description": "Hôtel Pullman Toulouse - 22 kW AC - N°4;Hôtel Pullman Toulouse - 22 kW AC - N°1;Hôtel Pullman Toulouse - 22 kW AC - N°3;Hôtel Pullman Toulouse - 22 kW AC - N°2", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "Pullman Toulouse Airport Hotel", + "charging_station:output": "22 kW", + "ref": "9d74974f-f717-4c9a-b962-e02de12d37b4", + "ref:EU:EVSE": "FRZP1PEAC36915;FRZP1PEAC39197;FRZP1PEAC39198;FRZP1PEAC39199", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38243000000, + 43.62704700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS08E46467;FRS08E46468", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - BRIENNE SUR AISNE - Pkg. co-voiturage", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS08E46467;FRS08E46468", + "start_date": "2020-12-11", + "description": "MODULO - BRIENNE SUR AISNE - Pkg. co-voiturage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04468352000, + 49.42853006000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1122771", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/LLXAAVOBH1MG6W", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80P1098091562634489574", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50396000000, + 50.07866400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRIZFPFAST20913;FRIZFPFAST20912;FRIZFPFAST20911", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - PERPIGNAN SAN REMO", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-26", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*209*1*_*_", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93504270000, + 42.69962940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "description": "OuestCharge - Pulse 50 - Aigrefeuille-Sur-Maine - Filee;AIGREFEUILLE-SUR-MAINE - Rue De La Filée", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44P44002A;FRS44E44002001", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-30;2024-04-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41093300000, + 47.08167500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-22", + "ref": "01F5ZAKH611V33JBR9K727DM53", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "BOISSY-LE-CHATEL - Rue Des Carrières;Boissy-le-Châtel", + "ref:EU:EVSE": "FRS77E77042001;FRS77P77042A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13829000000, + 48.82180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "30 kW;22 kW", + "description": "Xavier MAQUIN", + "amenity": "charging_station", + "operator": "GREENSPOT", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "494436611", + "start_date": "2023-12-20", + "socket:type2_combo:output": "30 kW", + "network": "Ambulance - Taxi - VSL MAQUIN", + "ref:EU:EVSE": "FRGSPP1898575;FRGSPP1898386;FRGSPP11746022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48919400000, + 46.23884600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - MONTS - Pl. de la Fontaine", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MONTS - Pl. de la Fontaine", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E219805;FRS37E219806", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219805;FRS37E219806" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62694200000, + 47.27740800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Guénin - Rue de Maneguen", + "ref:EU:EVSE": "FRS56PGTDFXE", + "start_date": "2017-11-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97686400000, + 47.90828800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "description": "Aéroport de Lille-Lesquin", + "start_date": "2018-12-11", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P59343A", + "operator:email": "contact@e-totem.fr", + "network": "Aéroport de Lille-Lesquin", + "ref": "FRG10P59343A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10584776148, + 50.57202836955 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "1f6cbc96-8266-58a4-8119-0ad99edce3eb", + "description": "MOBIVE | Damazan | Avenue de la Confluence", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26763600000, + 44.29068800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE25112;FRSIGPSIGE25111", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-05-18", + "description": "SIGEIF - 17 AVENUE LOUIS PASTEUR - BAGNEUX", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*251*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31767500000, + 48.79875600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCN1P5899C629F2214", + "description": "Move In Pure/5899c629f2214", + "socket:type2_combo:output": "44 kW", + "ref": "33343", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90853000000, + 45.81920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/XGDLZYXS0Z", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P3522533925375525161", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43888600000, + 45.45249000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Beynat | Place du Champ de Foire", + "ref": "d7367eea-da91-521a-b07e-c04a972b5dbc", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72462000000, + 45.12491800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-06-30", + "network": "AlterBase", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "description": "Réseau AlterBase - Boismé - Mairie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB08004A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43454000000, + 46.77368000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRADPE91479010;FRADPE914790101", + "capacity": "18", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-12-08;2023-09-25", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "description": "ORY - Parking P2 - Niveau -1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36162300000, + 48.72983600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3618EVCP02;LFR3618EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "AUSSILLON Nationale", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3618EVCP02;LFR3618EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37746300000, + 43.50820600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38382002", + "start_date": "2022-11-29", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-EGREVE - Parking Karben" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66929590000, + 45.24273240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CANNES PARKING SAINT LOUIS", + "start_date": "2018-01-24", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ111;FRA16PWIIZ112", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*1*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01392000000, + 43.55690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,We,Th,Tu 09:00-14:30,Sa,Th,Fr,We,Tu 18:00-23:00,Su 09:00-15:30", + "operator:email": "roaming@freshmile.com", + "ref": "575306", + "description": "Freshmile France/SOH2CQN127", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2874486727684858336", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25725300000, + 45.82427200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "description": "Action - Aubenas", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PACTAUB", + "start_date": "2023-11-10;2024-06-11", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40732479074, + 44.61791130965 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPIQXD4XD3T3", + "ref": "IQXD4XD3T3", + "start_date": "2020-12-09", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Villefontaine, 118 Avenue du Driève", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14502610000, + 45.61654650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-08-03", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPECHKF", + "opening_hours": "24/7", + "description": "Échirolles - KFC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69601400000, + 45.15080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E95127002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Cergy-Pontoise Marché Neuf - EFFIA", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07976943083, + 49.03953275758 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED CGED BERGERAC", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED CGED BERGERAC", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-12-21", + "ref:EU:EVSE": "FRCPIE6668835", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6668835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52020000000, + 44.85592600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "description": "Rambouillet , Gustave Eiffel", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "charging_station:output": "22 kW;60 kW;90 kW", + "socket:type2_combo:output": "90 kW;60 kW", + "start_date": "2023-03-08", + "ref": "IT4BUYWVOG", + "ref:EU:EVSE": "FRECHPIT4BUYWVOG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82780140000, + 48.62417000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX20*16", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue du Télégraphe 16", + "ref:EU:EVSE": "FRV75PPX2016", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39950980000, + 48.87233140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CVWVHT", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PCVWVHT", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "159337", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27657000000, + 43.12150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX0501", + "amenity": "charging_station", + "ref": "FR*V75*PPX05*01", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris | Quai de la Tournelle 21", + "start_date": "2021-05-21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35443090000, + 48.85003200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529175", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile/DQAOP9IPRJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8075801144457991398", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52003700000, + 45.47888200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-02-01", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Ford - Manosque", + "ref:EU:EVSE": "FRSSDPMAURINFORD041001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78792300000, + 43.82422600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Saint Clet-Rue du Trégor", + "start_date": "2017-07-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22283001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13341900000, + 48.66484800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E126241", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS18E126241", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - ST HILAIRE DE GONDILLY - Le Golf", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST HILAIRE DE GONDILLY - Le Golf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88865000000, + 47.04476000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "342583796", + "amenity": "charging_station", + "capacity": "1", + "ref": "67139;67140", + "start_date": "2021-08-05", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", + "network": "TOYOTA FONTENAY LE COMTE- LES GARAGES CHAIGNEAU", + "operator": "ZEBORNE", + "description": " Toyota - Fontenay le Comte - 22kW AC G ;Toyota - Fontenay le Comte - 22kW AC D ", + "ref:EU:EVSE": "FRZTLE22AC67140;FRZTLE22AC67139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82612740000, + 46.46755000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/SNEL0NL1TY", + "ref": "741147", + "ref:EU:EVSE": "FRS10P5104583325047057762" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07575000000, + 48.30246700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/LLNUH64DHI2I5E", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80P5615455992058666833", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "charging_station:output": "50 kW", + "ref": "1050399", + "opening_hours": "24/7", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56571400000, + 50.34192500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-29", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST9012;FRIZFPFAST9011;FRIZFPFAST9013", + "ref": "FR*SOD*S*FAST*90*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - MARSEILLE SAINTE MARGUERITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40035092499, + 43.27220439238 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "LA PLAINE-SUR-MER - Rue Joseph Rousse;OuestCharge - Diva Sp - La Plaine-Sur-Mer - Rousse", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44126001;FRS44P44126A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-16;2024-04-18;2024-04-21", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.19186900000, + 47.13616300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MELUN - Colonel Picot", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS77E77288008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65415880000, + 48.54986900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH01E62265001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "DELETTES - Rue du centre", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21283100000, + 50.61977400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - CIVRAY DE TOURAINE - Salle des fêtes", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221421;FRS37E221420", + "network": "MODULO - CIVRAY DE TOURAINE - Salle des fêtes", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221421;FRS37E221420", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04625100000, + 47.33293800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - GONDRECOURT- Rue de la grande fontaine", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "network": "MODULO - GONDRECOURT- Rue de la grande fontaine", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66326;FRS55E66327", + "ref": "FRS55E66326;FRS55E66327" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50714400000, + 48.51339200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*132*2*_*_;FR*SOD*S*LYON*132*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON13222;FRGLYPLYON13221;FRGLYPLYON13212;FRGLYPLYON13211", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2022-02-10", + "socket:type2_combo:output": "24 kW", + "description": "LY310 - ARISTIDE BRIAND", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84944300000, + 45.75333800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "description": "TEMPLEMARS - Rue du Chevalier de la Barre", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59175*01", + "ref:EU:EVSE": "FRMELP5917501", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05451065200, + 50.57183104000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-08-31", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "description": "Jaguar Land Rover - La Garde", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPJLRAAV831301", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03592000000, + 43.14040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED ALFORTVILLE", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED ALFORTVILLE", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6571185", + "ref": "FRCPIE6571185", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42548600000, + 48.78011000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRLE2P8770929586158970656", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/OH8L29VRNN", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "505776" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09547000000, + 48.93084200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "97894d4d-514e-510c-903b-c9b4d5013eb9", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Andernos les Bains | Esplanade de Broustic-Allee Max et Paulette Faye" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09894700000, + 44.74308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "72845bb5-40ac-5516-bb0a-b094f43f4ca8", + "description": "Guibeville - Rue Antoine de Saint-exupéry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26809300000, + 48.56944100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego NISSAN Labège", + "amenity": "charging_station", + "capacity": "1", + "description": "Allego NISSAN Labège", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "start_date": "2022-03-12", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO0001461", + "ref:EU:EVSE": "FRALLEGO0001461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52095986000, + 43.54291363000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2033EVCP02;LFR2033EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "CARCASSONNE Cité", + "ref:EU:EVSE": "LFR2033EVCP02;LFR2033EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38107400000, + 43.20863400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-12-08", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*94*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-BLAISE - PARKING VILLAGE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE9411;FRM06PNICE9412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23928800000, + 43.82106400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E162331;FRS88E162333", + "network": "MODULO - RAON AUX BOIS - Rte. d'Arches", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS88E162331;FRS88E162333", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - RAON AUX BOIS - Rte. d'Arches" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52264000000, + 48.05880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "SAINT-RAPHAEL - PARKING DE LA CAPITAINERIE", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*220*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ22012;FRA16PWIIZ22011", + "start_date": "2022-12-02", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78057800000, + 43.41341600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/Y5T0WNKPDM", + "ref:EU:EVSE": "FRFR1P4237892220623150926", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "579002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23638200000, + 47.90067100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Mr. Bricolage - Hazebrouck", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-05", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PMBRHAZ", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55234456564, + 50.73621594026 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPQRT5VAQ5PW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Valaurie, Place Nicolas Appert;Réseau eborn/QRT5VAQ5PW", + "ref": "QRT5VAQ5PW;48409", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80216700000, + 44.41806500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1019592", + "operator:email": "support@evzen.com", + "description": "ENGIE MAMP - Bornes publiques/6F118744-CC2B-4C46-8D56-33B57CCA4DD3", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "FREVZP7290107358437489481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36676300000, + 43.34652600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "start_date": "2022-01-05", + "description": "LILLE - Rue des Templiers - Euratechnologies", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E59350004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02223220000, + 50.63348040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNBFO8FWAXWY;FREBNPBFO8FWAXWY", + "ref": "75320;BFO8FWAXWY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/BFO8FWAXWY;Les Mayons, Avenue Pierre Gaudin", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35791300000, + 43.31438400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Beaumont-Monteux, Place De La Mairie;Réseau eborn/QIYDUPSLD7", + "ref:EU:EVSE": "FREBNPQIYDUPSLD7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "QIYDUPSLD7;63977", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92136500000, + 45.01804100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Beauvais-Sud", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121021", + "start_date": "2023-05-31", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11100600000, + 49.40844100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P762979594086126034", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/SXIAVCPQMS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529625", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66641500000, + 49.46825500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | cours de Vincennes 120", + "amenity": "charging_station", + "ref": "FR*V75*PPX12*13", + "capacity": "4", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1213", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41075100000, + 48.84630400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Th,Tu,Mo,Fr,We 09:00-17:00", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3090181183467809407", + "ref": "521306", + "description": "Freshmile France/JO5BRM2AZJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13067800000, + 49.04873400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-29;2023-06-23", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Tarbes", + "ref:EU:EVSE": "FRSSDPCOMMERESVOLVO656001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10595600000, + 43.22096900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-07-04", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PDAMVILLESERVPUB", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900019", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08028500000, + 48.87168300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "description": "SICECO/FR*S21*P21501*A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS21P21501A", + "ref": "180407" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55660900000, + 47.26238600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-04", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT-GERMAIN-EN-LAYE - SAINT VINCENT 2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78551009", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07274000000, + 48.89442000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE101", + "capacity": "2", + "description": "hotel_mercure_st_omer", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-02-18", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26226700000, + 50.75170300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP3341259526771506116", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "828303", + "description": "WAAT/FRWATLVBL6QJMI", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85217900000, + 43.11581900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH;La Garde", + "ref": "FRIOYE432653;FRIOYE432652;FRIOYE432651;FRIOYE432602;FRIONE432600;FRIOYE432601;FRIOYE432603;FRIOYE432604;FRIOYE432605;FRIOYE432606", + "capacity": "5;9", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "ref:EU:EVSE": "FRIOYE432653;FRIOYE432651;FRIOYE432605;FRIOYE432603;FRIONE432600;FRIOYE432601;FRIOYE432602;FRIOYE432604;FRIOYE432606;FRIOYE432652", + "description": "IONITY La Garde;La Garde", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2020-12-01", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25303300000, + 44.87054400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - MAROLLES - Rue St. Hubert", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E40928;FRS51E40929", + "network": "MODULO - MAROLLES - Rue St. Hubert", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E40928;FRS51E40929", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62527900000, + 48.71674700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "bee67197-8809-4b53-961b-74bc3b7df487", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS77P77266B", + "socket:type2_combo:output": "24 kW", + "description": "Machault - Cimetière", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83578500000, + 48.45633600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HAVRINCOURT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "300 kW;54 kW", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080350", + "start_date": "2022-12-23", + "ref": "FRHPCPNF080350", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681076;531681075;531681073;531681074", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08980000000, + 50.12270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LESPIGNAN - Rue Des Buissonnets", + "ref:EU:EVSE": "FRS34E34135001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16972777778, + 43.27212500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-06", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PZCGGHS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Erdeven - Place Saint Märgen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15693800000, + 47.64114400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1221569267336177968", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/W35JGY6RKE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "368968", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12119000000, + 49.14190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-12-09", + "description": "Métropolis/FR*MGP*P92051*I;Metropolis - ePremium - Neuilly-sur-Seine - Borghèse", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92051I", + "owner:ref:FR:SIREN": "885354860", + "ref": "599067", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27456500000, + 48.88667300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHESSFIAT900001", + "amenity": "charging_station", + "capacity": "4", + "description": "Fiat - HESS - Belfort", + "start_date": "2020-06-30", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85970900000, + 47.62797100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AGAPHONE", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "412235319", + "charging_station:output": "11.04 kW", + "operator": "CAR2PLUG", + "start_date": "2022-08-26", + "operator:email": "contact@car2plug.fr", + "ref": "FRC2P003901;FRC2P003902", + "description": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003901;FRC2P003902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11573200000, + 49.28056030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*GACO*6*2*_*_;FR*SOD*S*GACO*6*1*_*_;FR*SOD*S*GACO*6*3*_*_;FR*SOD*S*GACO*6*4*_*_;FR*SOD*S*GACO*6*5*_*_;FR*SOD*S*GACO*6*6*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN", + "network": "GARENNE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLGCPGACO611;FRLGCPGACO621;FRLGCPGACO631;FRLGCPGACO641;FRLGCPGACO651;FRLGCPGACO661", + "owner:ref:FR:SIREN": "219200359", + "operator:email": "sav@izivia.com", + "start_date": "2020-10-28;2020-11-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23113700000, + 48.90390600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "description": "MOBIVE | Lacanau | Parking du lac", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW", + "ref": "93d43a50-24e0-58f1-9a9e-81f804dac6da" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09047200000, + 44.97780500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE19SABA", + "capacity": "2", + "amenity": "charging_station", + "description": "Citroën Besse - SEILHAC", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-25", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71424900000, + 45.36031100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP7488554927489376037", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "description": "BornEco/63ac339611a81405a7c9652f", + "ref": "701342", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30446500000, + 50.90961700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P4589390649489334931", + "ref": "446732", + "charging_station:output": "50 kW;43 kW;22 kW", + "description": "Leclerc/J9REMMMQYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322300000, + 45.82316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Martigues, Quai Jean Verandy", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PBHNTH2N03P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03966900000, + 43.32972300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS89P7811658782318409646", + "description": "SDEY/A1XMAJTU8H", + "ref": "1026858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75843100000, + 47.60327300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ7512;FRA16PWIIZ7511", + "ref": "FR*SOD*S*WIIZ*75*1*_*_", + "description": "VALBONNE PLACE BERMOND", + "opening_hours": "24/7", + "start_date": "2018-06-14", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03927500000, + 43.62195600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P9084965170259101562", + "description": "Freshmile France/YCPEWRGL9L", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "706013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52677700000, + 43.47698000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "description": "Butech Shop - Wittenheim", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-01-25", + "ref:EU:EVSE": "FRPD1PSTRWIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31177147847, + 47.79837308017 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Collonges-Sous-Salève, Rd 1206", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "GA7MONBEKP", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPGA7MONBEKP", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13777290000, + 46.14212460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP6932231311178836707", + "description": "CARF - Bornes Publiques/50298C72-AF6A-4A0E-B49C-304F82EECC24", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "377766" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48751000000, + 43.77632000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR68651;FROTHPOTHR68631;FROTHPOTHR68621;FROTHPOTHR68611;FROTHPOTHR686101;FROTHPOTHR68641;FROTHPOTHR68661;FROTHPOTHR68671;FROTHPOTHR68681;FROTHPOTHR68691", + "ref": "FR*SOD*S*OTHR*686*9*_*_;FR*SOD*S*OTHR*686*8*_*_;FR*SOD*S*OTHR*686*5*_*_;FR*SOD*S*OTHR*686*4*_*_;FR*SOD*S*OTHR*686*1*_*_;FR*SOD*S*OTHR*686*10*_*_;FR*SOD*S*OTHR*686*2*_*_;FR*SOD*S*OTHR*686*3*_*_;FR*SOD*S*OTHR*686*6*_*_;FR*SOD*S*OTHR*686*7*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "INTERMARCHE - DOLE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51026600000, + 47.10925100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPMONTLUCONPI", + "charging_station:output": "22 kW", + "ref": "120719;montluconpi", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Montluçon, Place Pierre Petit;Réseau eborn/montluconpi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60423000000, + 46.34140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGHRMESD8H2", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30356;GHRMESD8H2", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/GHRMESD8H2;Ucel, Rte de la manufacture royale Esp. Deydier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39729500000, + 44.62625500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR37531;FROTHPOTHR37521;FROTHPOTHR37511;FROTHPOTHR37541", + "description": "SUPER U - BRUGUIERES", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-04-01", + "ref": "FR*SOD*S*OTHR*375*4*_*_;FR*SOD*S*OTHR*375*3*_*_;FR*SOD*S*OTHR*375*1*_*_;FR*SOD*S*OTHR*375*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41500100000, + 43.72142500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/KSPUBKEN0J", + "ref:EU:EVSE": "FRFR1P9128724173451455031", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "472218", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76907700000, + 48.62156900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Albi, France", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30248", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15495100000, + 43.95773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "559832", + "ref:EU:EVSE": "FRFR1P4420489598384889869", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WO3R2EBCJ5", + "opening_hours": "Mo,We,Fr,Sa,Tu,Th 08:00-12:30,Fr,We,Th,Tu,Sa,Mo 14:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46748900000, + 49.23210100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-05-04", + "description": "BMW - Chalon sur Saone", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "capacity": "10", + "ref:EU:EVSE": "FRSSDPSAVYBMW711001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86013800000, + 46.76886200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3754765373385792310", + "ref": "529301", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HZ9ZG0T5CS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92562400000, + 50.27938600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-12-14", + "description": "PLEMET - Rue de Bodiffé", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22183002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59615100000, + 48.17712800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "49577", + "network": "Mazda BRIE COMTE ROBERT - ZELUS AUTOMOBILES ", + "amenity": "charging_station", + "capacity": "1", + "description": "Mazda - Brie Comte Robert - 22KW AC", + "owner:ref:FR:SIREN": "785550138", + "start_date": "2020-12-03", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:30", + "ref:EU:EVSE": "FRZMAE22AC49577", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60603410000, + 48.69731700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Golf_Bauge", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2022-05-05", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE308", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07630350000, + 47.53809380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GUITRANCOURT - Rue André Touraud", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78296001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77737000000, + 49.00828100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Maison Dieu", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Maison Dieu", + "opening_hours": "24/7", + "start_date": "2022-02-05", + "ref:EU:EVSE": "FRIOYE438852;FRIOYE438851;FRIOYE438802;FRIOYE438801;FRIOYE438803;FRIOYE438804;FRIOYE438805;FRIOYE438806;FRIOYE438853", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE438852;FRIOYE438851;FRIOYE438802;FRIOYE438801;FRIOYE438803;FRIOYE438804;FRIOYE438805;FRIOYE438806;FRIOYE438853", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03597100000, + 47.50436300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-06-16", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53096B", + "opening_hours": "24/7", + "description": "OuestCharge - Quick Charger Evtronic - Ernee - Hôtel", + "charging_station:output": "3.7 kW;50 kW;43 kW", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93954000000, + 48.29696300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BARCARES - Rue Annibal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66017001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03428200000, + 42.78891600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE008601;FRIENE008602", + "amenity": "charging_station", + "start_date": "2023-05-26", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE008601;FRIENE008602", + "description": "Quevilloncourt", + "network": "Quevilloncourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09642000000, + 48.47696000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35023001B1", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "BEDEE - place du lieutenant louessard ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.94425000000, + 48.18107200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS61P61293B", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-MORTA-002", + "start_date": "2017-12-06", + "description": "MORTAGNE AU PERCHE - Carré du Perche", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54100160000, + 48.52184090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "ref": "1173048", + "network": "Freshmile France", + "description": "Freshmile France/LLQ2IX2HQ13IL4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3064636534225770896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15329900000, + 49.34887500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "64850", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/GHPTEX", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref:EU:EVSE": "FRS31PGHPTEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50053800000, + 43.51520600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COURBEVOIE - Avenue Gallieni", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92026011", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26938491357, + 48.90487158860 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLAGE VACANCES SCODO NERI - 20113 - 1", + "start_date": "2023-02-13", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000295;FRCG0E000293;FRCG0E000294;FRCG0E000296", + "operator:email": "info@chargeguru.com", + "network": "VILLAGE VACANCES SCODO NERI - 20113 - 1", + "ref": "FRCG0E000295;FRCG0E000293;FRCG0E000294;FRCG0E000296" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85057700000, + 41.69707600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE15212;FRM06PNICE15211", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "charging_station:output": "22 kW", + "description": "SAINT-ANDRE-DE-LA-ROCHE - PARKING MAIRIE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*152*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28792900000, + 43.73880700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "8b23258b-6477-5b0c-adcc-38aedfffc4f1", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Tarnos | Parking Espace Bertin", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49181100000, + 43.54551300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-25", + "ref": "FR*SOD*S*SIGE*298*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE29812;FRSIGPSIGE29811", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 13 AVENUE DESAIX - MAISONS-LAFFITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15020200000, + 48.95908200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - E.Leclerc - PERONNE", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "261801;261802", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS261801;FRBMPS261802", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94013240000, + 49.94292480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3062EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3062EVCP01", + "description": "ESCAUTPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55864800000, + 50.41373900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "ref": "ff0304e3-27fb-5fe4-a49b-ef1e3cf6d879", + "opening_hours": "24/7", + "description": "MOBIVE | Brive | Tujac", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49358100000, + 45.15870800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "description": "Viry-Châtillon - Place François Mitterrand", + "opening_hours": "24/7", + "ref": "6cad6178-f4c5-5375-afc5-5e79287504e3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36715800000, + 48.65867400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "BOULEVARD DE GAULLE - GARCHES", + "ref": "FR*55C*P92380*GAR*GAULLE", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92380GARGAULLE", + "operator:email": "contact@e55c.com", + "start_date": "2020-03-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696000000, + 48.83858700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3287EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3287EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MONTREJEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57316100000, + 43.08597300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-07-09", + "description": "Cesson - Le Plein Décathlon", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "26", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRPL2PCSSDC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59974700000, + 48.58998000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85868;MGSHTS9WRC", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/MGSHTS9WRC;Le Cannet-Des-Maures, 48 Avenue du 8 mai 1945", + "ref:EU:EVSE": "FREBNPMGSHTS9WRC;FREBNMGSHTS9WRC", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34279400000, + 43.39050300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "e-Totem - DASSIN KYRIAD OLIVET", + "operator": "E-TOTEM", + "ref": "FRETIP45232A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP45232A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91590163784, + 47.83884817759 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E29232001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Quimper horodateurs - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08703883566, + 47.99323043901 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT591291", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Avesnes-les-Aubert", + "amenity": "charging_station", + "start_date": "2023-09-06", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38468500000, + 50.19247600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "OTB2ORHCSB;75023", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Château-Ville-Vieille, Ville Vieille;Réseau eborn/OTB2ORHCSB", + "ref:EU:EVSE": "FREBNPOTB2ORHCSB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82230000000, + 44.76160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "network": "BOULANGER VARTELEC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*489*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR48912;FROTHPOTHR48911", + "operator:email": "sav@izivia.com", + "description": "WELDOM VABEMA - BAGNOLS SUR CEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62128200000, + 44.15569200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "102275", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DTWHHE", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PDTWHHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30075000000, + 49.00470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "ref:EU:EVSE": "FRUBIE10087889;FRUBIE10036416", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Rue André Gide Route du Château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26405600000, + 49.66425000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "50 kW;3 kW", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/NMHCTA", + "ref": "74975", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4800522251956495302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59020000000, + 44.83760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRTLSE31555027", + "start_date": "2023-02-15", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;90 kW;180 kW", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - 274 Route de Launaguet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43797500000, + 43.65306100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "opening_hours": "Sa 14:00-18:00,Fr,Mo,Tu,Sa,We,Th 08:00-12:00,Tu,We,Fr,Mo,Th 14:00-19:00", + "ref:EU:EVSE": "FRFR1P9100060066191485559", + "ref": "529391", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LAMORX8BZO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31052800000, + 43.20437200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/EO8WQHNMPB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461700", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P3463403344460286584", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34537100000, + 49.20240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12044001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CAMARES - Place Du Docteur Elisée Bousquet", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87856800000, + 43.82380700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HERBEVILLE - Domaine Gallo", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-10-11", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78305001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88828000000, + 48.90450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49176001;FRS49P49176A", + "amenity": "charging_station", + "start_date": "2024-03-26;2021-04-09", + "charging_station:output": "22 kW", + "description": "LE LION-D'ANGERS - Place Champ de Foire;OuestCharge - Diva Sp - Le Lion-d'Angers - Foire", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71168800000, + 47.62620500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "79846", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "description": "SIED70/QFLQSK", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70PQFLQSK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51139000000, + 47.67230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-01", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "ref:EU:EVSE": "FRH14E59307001", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "HOLQUE - Route de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20370000000, + 50.85458000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "description": "LE VIVIER SUR MER - 40 rue de la greve ", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "start_date": "2022-01-01", + "ref:EU:EVSE": "FRS35P35361001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78007200000, + 48.60407000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS63P63195A", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "518351", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "description": "SIEG 63/FR*S63*P63195*A", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37857400000, + 45.82825800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MMGYMF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4251246547106068541", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009194", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.49060000000, + -20.89010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/FR*S32*PKVTXUX", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32PKVTXUX", + "ref": "120650", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46049000000, + 43.75790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94017002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-05-21;2021-06-06", + "capacity": "0", + "network": "SIPPEREC", + "description": "CHAMPIGNY SUR MARNE - Voie Sonia Delaunay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52800000000, + 48.81360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-06", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE27511;FRM06PNICE27512", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*275*1*_*_", + "description": "LANTOSQUE - PARKING PIVOL", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31202146770, + 43.97527136027 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Monpazier | Place du Foirail Nord", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1aefb81b-134a-50ea-8215-8aa23bd1dc6d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89505400000, + 44.68235800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - CHARLES DE GAULLE - LE PLESSIS-BOUCHARD", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE40612;FRSIGPSIGE40611", + "network": "SIGEIF", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*406*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23634000000, + 49.00190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76540005", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROUEN - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09488700000, + 49.44830500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR2859EVCP03;LFR2859EVCP02;LFR2859EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "MARLY Ladre", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2859EVCP03;LFR2859EVCP02;LFR2859EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14749600000, + 49.08318200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "197__SDEEG33;IZIVIA", + "charging_station:output": "50 kW;22 kW", + "ref": "e93eefb8-202f-52bd-9830-de10ce00278e;FR*SOD*S*MB33*153*2*_*_", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2024-02-19", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "description": "MOBIVE | La Teste-De-Buch | Plaine des Sports;LA TESTE-DE-BUCH - PLAINE DES SPORTS", + "capacity": "2;3", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref:EU:EVSE": "Non concerné;FRS33PMB3315321;FRS33PMB3315322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12449300000, + 44.61890200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "JONQUIERES - Route de Courthézon", + "capacity": "2", + "amenity": "charging_station", + "ref": "6674a592-08cc-5359-8771-ffc11907d08e", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89755400000, + 44.11311200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FR594E59122005", + "description": "CAMBRAI - Rue du Paon", + "start_date": "2021-09-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22672500000, + 50.17513500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3721EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3721EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BOURGUEIL Causeret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16849000000, + 47.27875400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Quessoy", + "start_date": "2023-06-27", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PITMQSY", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.65592553873, + 48.42272061456 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP5301001985390223426;FREBNPJCAUYPEAYA", + "opening_hours": "24/7", + "ref": "JCAUYPEAYA;492156", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "description": "Réseau eborn/JCAUYPEAYA;Gannat, Place Rantian 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19590000000, + 46.10168000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP80164A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP80164A", + "opening_hours": "24/7", + "start_date": "2023-12-01", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - ROTISSERIE CAMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35601532124, + 49.89837218241 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;200 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;200 kW;100 kW;22 kW", + "description": "Cora - Livry-Gargan", + "capacity": "20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORLIV", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55385054841, + 48.92882671413 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT272101", + "amenity": "charging_station", + "description": "Carrefour Market - Beuzeville", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-05-28", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33669700000, + 49.34648700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB Andrézieux Palais des Sports", + "ref": "FRESEPS42005AB", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42005AB", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2020-10-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27216500000, + 45.52955400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "ref": "FR*SOD*S*AUCH*198*1*_*_", + "description": "AUCHAN - CALAIS ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPAUCH19811;FROTHPAUCH19812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80838340000, + 50.94440650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-18:30,Tu 07:00-18:30,We 07:00-18:30,Th 07:00-18:30,Fr 07:00-18:30", + "charging_station:output": "22 kW", + "network": "FM AUTOMOBILES BORNE 1", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6807825", + "ref:EU:EVSE": "FRCPIE6807825", + "description": "FM AUTOMOBILES BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32532000000, + 50.27512700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6500791967245547980", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346511", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ZSYZPW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95026000000, + 48.28510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Avenue Emile Zola 18", + "ref:EU:EVSE": "FRV75P901501", + "start_date": "2021-03-15", + "ref": "FR*V75*P9015*01", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27988400000, + 48.84621400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026849", + "ref:EU:EVSE": "FRFR1P1171595259066316188", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLP2DXZTQI95SI", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26047900000, + 48.95888700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP5432", + "description": "Tesla Supercharger Charleville-Mézières, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74409500000, + 49.73683400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P563749448319967399", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLIVSC5DAWCNP3", + "capacity": "2", + "amenity": "charging_station", + "ref": "892272", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.02838800000, + 48.85174400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "13", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89885401", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "description": "R3 - Avelin " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07671571946, + 50.53833009599 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/DI3I8QNHXO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P3499037782314441216", + "ref": "456813", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57639600000, + 48.92002900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLENEUVE - Place du Sol de Dîme", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS12E12301001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-03-15;2022-05-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03254100000, + 44.43863300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWA4LPYR1NTBQ", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA5P5296270268955082229", + "operator": "WAAT SAS | FR*WA5", + "ref": "781575", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08240100000, + 43.59531800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2021-04-22;2024-04-14;2024-04-05", + "charging_station:output": "22 kW", + "description": "VILLEDIEU-LA-BLOUERE - Rue des Chevaliers de Malte;OuestCharge - Diva Sp - Villedieu-la-Blouere - Malte", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49375001;FRS49P49375A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05720100000, + 47.15339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAGRAVE - Place Toulouse Lautrec", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81131001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99008600000, + 43.89864100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF058500", + "capacity": "7", + "start_date": "2023-05-16;2023-08-10;2024-03-22", + "amenity": "charging_station", + "description": "RELAIS PONT DE L'ANE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF058500", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681400;531681398;531681394;531681395;531681396;531681397;531681399", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40961000000, + 45.44210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46251001", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "description": "SAINT CERE - Place de la république" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89334600000, + 44.85834800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "25078", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PRWCLSX", + "description": "Mobilité électrique 56/RWCLSX", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07039000000, + 47.65300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH04E59276001", + "start_date": "2024-03-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "GUESNAIN - MAIRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14337698000, + 50.35338395000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Redene-Place de l'Église", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2923400", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46194700000, + 47.86029100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2018-07-20", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PPQFPGY", + "description": "Meucon - Route de Vannes", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76371600000, + 47.71628700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B029", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2017-12-14", + "description": "CHENECHE-1-2;CHENECHE-1-1", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346051562;FRLMSE12346051561;FRLMSE12346051551;FRLMSE12346051552", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28073200000, + 46.73765200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "484760", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "start_date": "2023-02-02", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93001D", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Express - Aubervilliers - Henri Barbusse;Métropolis/FR*MGP*P93001*D", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38822700000, + 48.90165000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*79*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - RUE IMPRIMEUR AU BLOC - JOUY-EN-JOSAS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-12-23", + "ref:EU:EVSE": "FRSIGPSIGE7911;FRSIGPSIGE7912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16453100000, + 48.77241000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "970217", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRATLP3032145540388407597", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLZ330_FR22ETAP_000001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44939100000, + 48.54943200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Howdens Morangis", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000081815", + "amenity": "charging_station", + "start_date": "2023-05-15", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33659300000, + 48.69606200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a9565353-6a84-5a08-97f4-8f51132a5cb2", + "description": "MOBIVE | Jatxou | Place des Sports" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42859200000, + 43.38806500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85166003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LES SABLES D'OLONNE(OLONNE-SUR-MER) - Olonnespace - Allée Des Cèdres", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77019000000, + 46.50640900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Angers St Serge", + "amenity": "charging_station", + "start_date": "2024-05-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref": "FRALLEGO9008432;FRALLEGO9008431;FRALLEGO9000251;FRALLEGO9000252;FRALLEGO9001751;FRALLEGO9001752;FRALLEGO9002551;FRALLEGO9002552;FRALLEGO9002553;FRALLEGO9008711;FRALLEGO9008712", + "description": "Allego Carrefour Angers St Serge", + "ref:EU:EVSE": "FRALLEGO9008432;FRALLEGO9008431;FRALLEGO9000251;FRALLEGO9000252;FRALLEGO9001751;FRALLEGO9001752;FRALLEGO9002551;FRALLEGO9002552;FRALLEGO9002553;FRALLEGO9008711;FRALLEGO9008712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54037600000, + 47.48869800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*13*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "IZIVIA | MARIGNANE - PLACE COMTE DE GRASSE", + "network": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP1311;FRIZMPMAMP1312", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19051000000, + 43.43160800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Marie Blachère - Lambres-lez-Douai", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-08-29", + "ref:EU:EVSE": "FRPD1PMARLAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09347737738, + 50.34324648203 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "RQVKOP24BA;85982", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRQVKOP24BA", + "description": "Villerest, Parking mairie de Villerest;Réseau eborn/RQVKOP24BA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03728000000, + 45.99649800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/D8BE9DDD-A50B-4631-816A-F662AE317E4E", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP7072612073950076175", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "ref": "1170945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70431800000, + 46.71669300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2024-02-13;2024-02-07", + "description": "hotelF1 - Saint-Cergues", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PHF1SRG", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31244543796, + 46.22321968095 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "48313", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/G03APSS9V1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPG03APSS9V1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36421300000, + 44.56330200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "e-Totem - Mouss'Auto Tonnay Charente", + "ref": "FRETIP17449A", + "start_date": "2024-04-08", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP17449A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88263028296, + 45.95152454653 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR17711;FROTHPOTHR17721", + "network": "METRE CARRE", + "start_date": "2021-05-26", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*177*1*_*_;FR*SOD*S*OTHR*177*2*_*_", + "capacity": "1", + "opening_hours": "24/7", + "description": "METRE CARRE - LE PASSAGE DAGEN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60633600000, + 44.16035500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRCPSPCAPS112;FRCPSPCAPS111", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*1*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BALLAINVILLIERS - CTRE CIAL ROUILLON", + "start_date": "2024-08-08", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29316500000, + 48.67696400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1278447899734456038", + "capacity": "4", + "network": "Freshmile France", + "ref": "585512", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JUJD4UMKPZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28188500000, + 48.67241100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CENTER PARCS LES TROIS FORETS - Parking J", + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP123012", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97946800000, + 48.61396400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TMKMTF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "232360", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PTMKMTF", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22804000000, + 46.20480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "network": "SAS GUYDIS", + "ref": "FRSUAP39056A", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "SUPER U BLETTERANS", + "ref:EU:EVSE": "FRSUAP39056A", + "start_date": "2023-11-21", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45044900000, + 46.74499800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/OMMSBZGWY6", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P9135561969399627756", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "419133" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69037300000, + 48.18167400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Lyomat - Pierre-Bénite", + "start_date": "2022-06-27;2022-09-22", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPLYOMAT693101", + "opening_hours": "Mo 08:00-13:00, Mo 13:00-18:00, Tu 08:00-13:00, Tu 13:00-18:00, We 08:00-13:00, We 13:00-18:00, Th 08:00-13:00, Th 13:00-18:00, Fr 08:00-13:00, Fr 13:00-18:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83473400000, + 45.70162000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E134496", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BONNEVAL - Rue de la grève", + "description": "MODULO - BONNEVAL - Rue de la grève", + "ref": "FRS28E134496" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38745400000, + 48.17977000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/NJ4BNTOLRY", + "operator:email": "roaming@freshmile.com", + "ref": "88190", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P5235021888041134061" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26242000000, + 48.34547900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "708692", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLH3W7FDYX", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P9199917945530429543", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26925800000, + 45.59568000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-11-30", + "ref:EU:EVSE": "FRS50P505024", + "description": "ST LO - Gare", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "215005026", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10001400000, + 49.11643700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "SAIX - Place du RIVET", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8127300312;FRS81E8127300311;FRS81E8127300313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17926590000, + 43.58560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE475653;FRIOYE475605;FRIOYE475604;FRIOYE475602;FRIOYE475601;FRIOYE475603;FRIOYE475606;FRIOYE475651;FRIOYE475652", + "ref:EU:EVSE": "FRIOYE475653;FRIOYE475605;FRIOYE475604;FRIOYE475602;FRIOYE475601;FRIOYE475603;FRIOYE475606;FRIOYE475651;FRIOYE475652", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "description": "Seyssins", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "Seyssins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69521700000, + 45.16018400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49035001;FRS49P49035A", + "description": "OuestCharge - Diva Sp - Bouchemaine - Chevriere;BOUCHEMAINE - Rue Chevriere", + "start_date": "2024-03-31;2024-03-27;2021-04-29", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60913700000, + 47.42431900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mouv'Oise/TXWWXP", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PTXWWXP", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "64829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82250000000, + 49.42140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LUMBRES - Chemin du pressart", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH10E62534002", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11046000000, + 50.70634100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE GRAU DU ROI - Capitainerie - Port Camargue", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30133005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12795100000, + 43.52119500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Carnac - Boulevard de la plage", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2019-08-01", + "ref:EU:EVSE": "FRS56PUT10PKNXV9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07781430000, + 47.57026302000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B070", + "start_date": "2015-11-06", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346396321;FRLMSE12346396311", + "capacity": "1", + "description": "MONTMORILLON FRANCE TRAVAIL-1-2;MONTMORILLON FRANCE TRAVAIL-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87700900000, + 46.43351000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP94059A", + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "1121532", + "description": "Métropolis/FR*MGP*P94059*A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57804500000, + 48.80557700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*11*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE1112;FRSIGPSIGE1111", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-08-04", + "description": "SIGEIF - 31 RUE CAMILLE DESMOULINS - ISSY-LES-MOULINEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26495300000, + 48.82991000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LES CLAYES SOUS BOIS - Chemin des Vignes", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78165001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98779500000, + 48.82605300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89462136", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Epinal - BMI Parking P2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45747000000, + 48.17742000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Ansac-Sur-Vienne | Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "ref": "671aae32-c084-589d-9656-98323f61292e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64638800000, + 45.99348500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Centre Ville - WISSANT", + "ref:EU:EVSE": "FRSE1PSE62WABA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66317900000, + 50.88590600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9007621;FRALLEGO9002421;FRALLEGO9001651;FRALLEGO9001631;FRALLEGO9001632;FRALLEGO9001652;FRALLEGO9002422;FRALLEGO9002423;FRALLEGO9007611;FRALLEGO9007612;FRALLEGO9007622", + "start_date": "2024-03-22", + "description": "Allego Carrefour St brice", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9007621;FRALLEGO9002421;FRALLEGO9001651;FRALLEGO9001631;FRALLEGO9001632;FRALLEGO9001652;FRALLEGO9002422;FRALLEGO9002423;FRALLEGO9007611;FRALLEGO9007612;FRALLEGO9007622", + "operator:email": "info@allego.eu", + "capacity": "11", + "network": "Allego Carrefour St brice" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35079200000, + 49.00889400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3758EVCP01;LFR3758EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3758EVCP01;LFR3758EVCP02", + "capacity": "4", + "description": "COULOMMIERS - Rue de l'Orgeval", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08705100000, + 48.80319400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31163001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-09-09", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "DREMIL-LAFAGE - Allee De LEglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60037000000, + 43.59682500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chatuzange-Le-Goubet, 9 Rue du Mont du Matin;Réseau eborn/SXUCBY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "48367;SXUCBY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPSXUCBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09230000000, + 45.00340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GX0S6HFHSI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3203948453673951857", + "ref": "626081", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29784400000, + 48.16644500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "PARIS - Sébastopol - Les Halles", + "ref:EU:EVSE": "FRP07E751010441;FRP07E75101044;FRP07E751010442", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34970960000, + 48.86162930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLYMQEMVE1L2PL;1152036", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP8012395793769224797;FREBNPLLYMQEMVE1L2PL", + "socket:type2_combo:output": "24 kW", + "description": "Toulon, Place Paul Maurel;Réseau eborn/LLYMQEMVE1L2PL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93580400000, + 43.11675300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Road", + "amenity": "charging_station", + "charging_station:output": "50 kW;43 kW;150 kW", + "socket:type2_combo:output": "50 kW;150 kW", + "ref:EU:EVSE": "FREFLP98022452766479246", + "opening_hours": "We,Fr,Su,Th,Mo,Sa,Tu 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref": "1036020", + "description": "Road/65fd6a0c0835d4001c86dfd6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36041100000, + 43.31587700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "start_date": "2022-01-17", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*301*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR30111;FROTHPOTHR30112", + "charging_station:output": "22 kW", + "description": "HOTEL DE VILLE BISCHWILLER - PARKING DE LA MAIRIE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.85970600000, + 48.76819800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6608805;FRCPIE6608795", + "amenity": "charging_station", + "network": "SU PLOUARZEL BORNE 2", + "capacity": "4", + "description": "SU PLOUARZEL BORNE 2", + "ref": "FRCPIE6608805;FRCPIE6608795", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.71710600000, + 48.43204100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/QJDZRN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "94454", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPQJDZRN", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00383000000, + 45.55390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1182063", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P4683070971358268292", + "description": "WAAT/s570503", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95593300000, + 43.55076600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLRKRZZXO1GLIL", + "opening_hours": "24/7", + "charging_station:output": "9 kW", + "ref:EU:EVSE": "FRFR1P6208175853162991332", + "operator": "Freshmile | FR*FR1", + "ref": "1017051" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44509700000, + 44.91350700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ACCOR Hotels", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "Mercure Cabourg", + "capacity": "3", + "owner:ref:FR:SIREN": "433528734", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "ref:EU:EVSE": "FRTCBP00427", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP00427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11729500000, + 49.28212600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TK3O6QSGPC", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3258758026994395252", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "682253", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.45911200000, + 48.41931300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-07-01", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPHYUNDAIBASTIA206201", + "description": "Hyundai - Corse Diffusion - Bastia", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43849800000, + 42.59319500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2904200", + "description": "Crozon-Quai du Fret", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50788500000, + 48.28532800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/RCTBEA2JQY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P4654124602975897206", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "88214", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92672700000, + 48.44521500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP003B2E", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P3840747864432682467", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "576113", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13520300000, + 49.17327300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Régie Services Energie/FR*RSE*P01207*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "ref:EU:EVSE": "FRRSEP01207A", + "opening_hours": "24/7", + "ref": "481257", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97338900000, + 45.98369400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PPOIXGARE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/poixgare", + "ref": "64706", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98929000000, + 49.77770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST17713;FRIZFPFAST17711;FRIZFPFAST17712", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - ORCHIES", + "start_date": "2024-06-27", + "ref": "FR*SOD*S*FAST*177*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23517430000, + 50.47586190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4931;FRS41E4932", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS41E4931;FRS41E4932", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - MONTOIRE SUR LE LOIR - Rue Marecot", + "network": "MODULO - MONTOIRE SUR LE LOIR - Rue Marecot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86145800000, + 47.75157900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2021-12-16", + "capacity": "1", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS72E72181009", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE MANS - Rue Paul Courboulay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19081100000, + 48.00129000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*89*2*_*_;FR*SOD*S*LYON*89*1*_*_;FR*SOD*S*LYON*89*3*_*_;FR*SOD*S*LYON*89*4*_*_", + "description": "LY203 - BELLECOUR - CHARITE", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8921;FRGLYPLYON8911;FRGLYPLYON8931;FRGLYPLYON8941", + "opening_hours": "24/7", + "start_date": "2021-06-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83445100000, + 45.75485900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E215725;FRS37E215726", + "ref": "FRS37E215725;FRS37E215726", + "start_date": "2019-03-18", + "description": "MODULO - BETZ LE CHÂTEAU - Pl. des Anciens Combattants", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BETZ LE CHÂTEAU - Pl. des Anciens Combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92006500000, + 46.99123400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Landaul - Place de la Mairie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-14", + "ref:EU:EVSE": "FRS56PZMJPKM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07617400000, + 47.74835100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "E-TOTEM", + "description": "Mairie Aillant sur Milleron", + "capacity": "2", + "amenity": "charging_station", + "network": "Mairie Aillant sur Milleron", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P45002A", + "ref:EU:EVSE": "FRG10P45002A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92908258875, + 47.79296364087 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - CAVAILLON", + "start_date": "2023-08-29", + "ref:EU:EVSE": "FROTHPAUCH13312;FROTHPAUCH13311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*AUCH*133*1*_*_", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05400800000, + 43.86371700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "operator": "IZIVIA", + "description": "SIGEIF - 52 RUE CARNOT - SURESNES", + "ref:EU:EVSE": "FRSIGPSIGE22411;FRSIGPSIGE22412", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*224*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22755300000, + 48.87426400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0EFRCG0E000956", + "description": "La Villa Guy & Spa - Malves - 34500 - 2", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "La Villa Guy & Spa - Malves - 34500 - 2", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0EFRCG0E000956", + "start_date": "2024-02-29", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22508700000, + 43.34290800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P8044924184969140548", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/AGMLBZ12K4", + "ref": "454239", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71811600000, + 45.18910500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "7afa4a77-70e8-5c74-9e3f-c82e5de46feb", + "charging_station:output": "36 kW", + "description": "MOBIVE | Ecoyeux | Rue des Artisans", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50544800000, + 45.81753400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Stations-e - Marcel Pagnol - BOUSSY ST ANTOINE", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "47 kW", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "charging_station:output": "22 kW;47 kW", + "opening_hours": "Mo-Th 08:00-22:00", + "ref:EU:EVSE": "FRSE1PSE91BMDC;FRSE1PSE91BMAC", + "start_date": "2024-01-26", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52953400000, + 48.67847500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1ce943d0-0fe2-11ed-861d-0242ac120002", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-07-30", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA68P68021001", + "owner:ref:FR:SIREN": "317782282", + "charging_station:output": "22 kW", + "network": "Charge parking", + "description": "parking", + "operator:email": "hostellerie.des.ducs@wanadoo.fr", + "operator": "Hostellerie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18225850130, + 44.67712655146 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3312EVCP02;LFR3312EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3312EVCP02;LFR3312EVCP01", + "description": "GRUISSAN Mateille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10424900000, + 43.11751600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRENOBLE - Rue Félix Esclangon - Cité Internationale", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185006", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71071900000, + 45.19574000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Roanne, Hôtel de Ville", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPE1O6R0CI23", + "ref": "E1O6R0CI23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07213587000, + 46.03464886000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8540220323846110723", + "ref": "1060413", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLT30NKXUAH1CC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59442400000, + 49.09833500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BEZONS - Rue Francis de Pressencé - Coeur de Ville", + "start_date": "2022-04-01", + "ref:EU:EVSE": "FRP07E95063001;FRP07E950630011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21688330000, + 48.92751610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Vesseaux, Chemin de l'Ancien Stade;Réseau eborn/RKLKJ18RNS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPRKLKJ18RNS", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "RKLKJ18RNS;75110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44517800000, + 44.65252300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPSDEHF", + "start_date": "2023-05-22", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Saint-Denis - Hôtel F1 Centre Basilique", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36852100000, + 48.93834600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Massy Vilmorin P+R - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E91377004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25613000000, + 48.72518700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-24", + "description": "SONEPAR CONNECT SOISY", + "network": "SONEPAR CONNECT SOISY", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6654305", + "ref": "FRCPIE6654305" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29944100000, + 48.99390800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1123164;LLX0E2OET203CT", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/LLX0E2OET203CT;Novillars, Mairie", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "start_date": "2024-06-04", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP7402260674400230572;FRECHPLLX0E2OET203CT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13408500000, + 47.28519000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "description": "Paris | Rue Botzaris 50", + "amenity": "charging_station", + "ref": "FR*V75*PPX19*07", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1907", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38390000000, + 48.87920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/CF7MTSVDNC", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3364129332788210443", + "charging_station:output": "22 kW", + "ref": "594392", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43693100000, + 42.62800900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*PPX01*03", + "description": "Paris | Rue Bertin Poirée 14", + "opening_hours": "24/7", + "start_date": "2021-07-07;2021-07-08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75PPX0103", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34495010000, + 48.85881090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/SWOWXFTE8O", + "ref": "294467", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1PSWOWXFTE8O", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03343000000, + 49.06000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-28", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEUROPAUTO621001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Volvo - Europ Auto - Calais", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86025200000, + 50.93750400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22233001", + "charging_station:output": "22 kW", + "description": "Plourivo-Le bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07167000000, + 48.74575800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "LE GRAND NARBONNE - Av Docteur Paul Pompidor", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11262008", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97928905500, + 43.18224335000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Toyota - Cergy Eragny (GCA) - 22kW AC;Toyota - Cergy Eragny (GCA) - 22kW AC ", + "ref": "128774;128773;128771;128770;128713;E161583;E161582;128703;128704;128710;128711;128712;128751;128752;128757;128758;128765;128766;128787;128788;128789;128790", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "18 kW;19 kW;22 kW", + "owner:ref:FR:SIREN": "302695325", + "operator:email": "advenir@zeborne.com", + "network": "GCA ERAGNY", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00; Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "ref:EU:EVSE": "FRZTLE22AC128790;FRZTLE22AC128774;FRZTLE22AC128771;FRZTLE22AC128766;FRZTLE22AC128752;FRZTLE22AC128751;FRZTLE22AC128713;FRZTLE22AC128703;FRZTLE161583;FRZTLE161582;FRZTLE22AC128704;FRZTLE22AC128710;FRZTLE22AC128711;FRZTLE22AC128712;FRZTLE22AC128757;FRZTLE22AC128758;FRZTLE22AC128765;FRZTLE22AC128770;FRZTLE22AC128773;FRZTLE22AC128787;FRZTLE22AC128788;FRZTLE22AC128789", + "start_date": "2022-10-26;2022-04-13", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10565020000, + 49.02459850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "160098", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "description": "SDEA 10/KAI86XVIQL", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "ref:EU:EVSE": "FRS10P4342074356360036228", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07005000000, + 48.27956700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/XWTTNG", + "ref:EU:EVSE": "FRS80PXWTTNG", + "ref": "79462", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65235000000, + 49.97950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST5911;FRIZFPFAST5912;FRIZFPFAST5913", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-04-25", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*59*1*_*_", + "description": "IZIVIA FAST - MCDONALDS - LIEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77786390000, + 50.42261760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-15", + "description": "MALVILLE - Rue Des Musiciens;OuestCharge - Diva Sp - Malville - Musiciens", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44089A;FRS44E44089001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86128400000, + 47.35942400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LESIGNY - Rue Du Petit Parc", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS77E77249001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61518060000, + 48.74718030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "ref": "1138446", + "capacity": "2", + "amenity": "charging_station", + "description": "GreenYellow Shift Mobility/93", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref:EU:EVSE": "FRGYMP1314810284565247070" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51306200000, + 48.42740500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - CERE LA RONDE – Château Montpoupon", + "ref:EU:EVSE": "FRS37E221225;FRS37E221221", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - CERE LA RONDE – Château Montpoupon", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221225;FRS37E221221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14341900000, + 47.25306800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-04-10", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - TREVERAY - Mairie", + "opening_hours": "24/7", + "network": "MODULO - TREVERAY - Mairie", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E122901;FRS55E122900", + "ref:EU:EVSE": "FRS55E122901;FRS55E122900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39689800000, + 48.61017500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*110*1*_*_;FR*SOD*S*LYON*110*2*_*_;FR*SOD*S*LYON*110*3*_*_;FR*SOD*S*LYON*110*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "VIL09 - TOTEM", + "start_date": "2021-08-24", + "ref:EU:EVSE": "FRGLYPLYON11041;FRGLYPLYON11031;FRGLYPLYON11011;FRGLYPLYON11021", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87406100000, + 45.76316400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "c2420913-8ee4-4745-9114-19cce2417fa3;f465b36d-7ec3-42c1-be30-574f1300f843", + "ref:EU:EVSE": "FRMBZEPIGZC;FRMBZEPQKDI", + "operator": "Mobilize Power Solutions", + "description": "Société Lanionnaise de Location", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "start_date": "2023-08-09", + "capacity": "1", + "network": "Société Lanionnaise de Location", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72905900000, + 48.03311900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "891771", + "network": "WattzHub", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "ref:EU:EVSE": "FRSMIP748696938506277084", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WattzHub/64b8efa85e05ac8c687485af", + "operator": "WattzHub | FR*SMI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08459000000, + 46.79292500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BSMD BORNE 2", + "description": "BSMD BORNE 2", + "amenity": "charging_station", + "capacity": "4", + "ref": "FRCPIE6543785;FRCPIE6543795", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6543785;FRCPIE6543795", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51740600000, + 48.99097500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "505521", + "description": "Leclerc/RCVNUCGJWB", + "ref:EU:EVSE": "FRLE2P1715662707750822909", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63320400000, + 43.40185900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | La Reole | Avenue Jean delsol", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "eae4b535-1140-50c4-a9ec-f2ae57ef94d7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03701200000, + 44.58161900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "ref": "5ce87099-5d65-56a5-aa45-7827dccbd23c", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "description": "Évry-Courcouronnes - Rue Jacques Tati", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42311400000, + 48.62752500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Airbus - St Martin", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS31772P1", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35265100000, + 43.61799800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MONTELIMAR Marseille", + "ref:EU:EVSE": "LFR0551EVCP01", + "ref": "LFR0551EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74772100000, + 44.54199200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - ROSA BONHEUR RP", + "start_date": "2019-01-28", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE6512;FRM06PNICE6511", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*65*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24822800000, + 43.69170700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ19612;FRA16PWIIZ19611", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "VILLENEUVE-LOUBET - PARKING ALLEE DE LA PLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*196*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14207900000, + 43.64114400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5815192085850416747", + "ref": "706010", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XZLZEXJEIY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15333100000, + 48.89502200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBUFPTL", + "charging_station:output": "50 kW;160 kW;22 kW", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2024-01-19", + "operator": "Power Dot France", + "description": "Buffalo Grill - Pontarlier", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33092578291, + 46.90375588393 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPSWI9PR0KMU", + "description": "Réseau eborn/SWI9PR0KMU;Mont-Saxonnex, 89 route de Cluses - Chemin du Bugnon", + "ref": "SWI9PR0KMU;30509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48578000000, + 46.05360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP8269161965507221789", + "opening_hours": "24/7", + "description": "ENGIE MAMP - Bornes publiques/E0B66D3B-591B-48F7-AD4B-0BC5046A4EDC", + "operator:email": "support@evzen.com", + "ref": "922107", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37622800000, + 43.25393200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E37261003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-14", + "description": "TOURS - Nationale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68822070000, + 47.39299540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "ref:EU:EVSE": "FREBNPX64XQRUOP2;FREBNP6665341514104462133", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/X64XQRUOP2;Six-Fours-Les-Plages, Avenue de l'Europe", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "682313;X64XQRUOP2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84817700000, + 43.11682700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "852602259", + "description": "F3CBaume", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "network": "PROPERPHI", + "operator": "EcoPhi mobility", + "ref:EU:EVSE": "FRECPEF3CBAUME", + "operator:email": "contact@properphi.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34913470000, + 47.35175960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - La Vôge-les-Bains - Gymnase", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-08-02", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24775100000, + 48.00047600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile/SORRN2XLAU", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "ref:EU:EVSE": "FRFR1P4330841473130001586", + "opening_hours": "24/7", + "ref": "574550", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47528300000, + 48.41515500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX11*03", + "opening_hours": "24/7", + "description": "Paris | Rue François de Neufchateau 11", + "start_date": "2021-06-10", + "ref:EU:EVSE": "FRV75PPX1103", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38252480000, + 48.85615290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3018128686663769792", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLO7BBI6DTVY7M", + "operator": "Freshmile | FR*FR1", + "ref": "1025328" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33781200000, + 45.35813500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPCACHETGIRAUDVOLVO790001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Niort", + "start_date": "2021-07-29;2021-10-26;2021-12-09", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47535800000, + 46.31645400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PBERNAYLAPOSTE", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900027", + "start_date": "2016-07-08", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59252800000, + 49.08871900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "MOBIVE - FDEE 19", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB19*22*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2021-05-20", + "description": "DONZENAC - AVENUE JEAN CHICOU", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "200087955", + "ref:EU:EVSE": "FRS19PMB192211;FRS19PMB192212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52392000000, + 45.22794400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NEAUPHLE-LE-CHATEAU - Poste", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-03-28", + "ref:EU:EVSE": "FRY03E78442003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90517000000, + 48.81440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*72*9*_*_;FR*SOD*S*QPRK*72*8*_*_;FR*SOD*S*QPRK*72*7*_*_;FR*SOD*S*QPRK*72*6*_*_;FR*SOD*S*QPRK*72*5*_*_;FR*SOD*S*QPRK*72*4*_*_;FR*SOD*S*QPRK*72*1*_*_;FR*SOD*S*QPRK*72*10*_*_;FR*SOD*S*QPRK*72*2*_*_;FR*SOD*S*QPRK*72*3*_*_", + "ref:EU:EVSE": "FRQPKPQPRK7291;FRQPKPQPRK7281;FRQPKPQPRK7261;FRQPKPQPRK7251;FRQPKPQPRK7241;FRQPKPQPRK7221;FRQPKPQPRK7211;FRQPKPQPRK72101;FRQPKPQPRK7231;FRQPKPQPRK7271", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-01-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - ANTIBES - MEDIATHEQUE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11909800000, + 43.57962800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWATLYHS1JLJC", + "ref": "805344", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP630470846707033897", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47335300000, + 43.28368800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "ref": "FRIONE412900", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2022-12-09", + "ref:EU:EVSE": "FRIONE412900", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "description": "IONITY Saint-Rambert Est", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82798900000, + 45.27640400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2016-09-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50800002", + "description": "VILLEDIEU LES POELES - La Gare", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22638100000, + 48.83415900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77517001;FRS77P77517A", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61ZBJNVVX7GPVZJR86", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "VILLEVAUDE - Place De Bordeaux;Villevaudé", + "start_date": "2023-05-14;2016-08-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67217900000, + 48.90055100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF080200", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680790;531680791;531680792;531680793", + "ref:EU:EVSE": "FRHPCPNF080200", + "start_date": "2022-07-29", + "description": "REL. DE LA RIPAILLE", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07130000000, + 45.87600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS41E2936;FRS41E2935", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref": "FRS41E2936;FRS41E2935", + "network": "MODULO - MOREE - Pl. du 8 Mai", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - MOREE - Pl. du 8 Mai", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23336800000, + 47.90233900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mobilité électrique 56/ADZEDJ", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PADZEDJ", + "ref": "25083", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96661000000, + 48.06500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XSXPKS4QIH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5987739867349075143", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "441066", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68763000000, + 48.60510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "383190", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P92040*H", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040H", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128900000, + 48.82162700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Biocoop - Bouvines", + "capacity": "16", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2020-06-08;2020-06-07;2021-12-15", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPAVENTIM598301", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19946600000, + 50.57404500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-09", + "ref": "FRC2AEDE0120B1GNAC00030F", + "capacity": "2", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC2AEDE0120B1GNAC00030F", + "description": "MANIERE FIOUL AVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "415249085", + "socket:type2_combo:output": "120 kW", + "network": "MANIERE FIOUL AVIA", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57586750000, + 45.18190700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892698", + "description": "Leclerc/LLIU6KI5HG2O2J", + "ref:EU:EVSE": "FRLE2P1504088220638272047" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51717100000, + -21.28263100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | Aulnay de Saintonge | Place Charles de Gaulle", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9da8ca21-0eaf-50d0-9ee9-c108e5fc541e", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34592300000, + 46.01952100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAEMES | PARKING LAGRANGE ", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref": "FRSAEPLAG", + "network": "SAEMES", + "start_date": "2022-02-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "317032993", + "capacity": "10", + "ref:EU:EVSE": "FRSAEPLAG", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34869048951, + 48.85072312818 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2024-05-19", + "ref:EU:EVSE": "FRALLEGO8001142;FRALLEGO8001141;FRALLEGO8001131;FRALLEGO8001132;FRALLEGO8008611;FRALLEGO8008612", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego FR, Bazalp Salaise sur Sanne", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO8001142;FRALLEGO8001141;FRALLEGO8001131;FRALLEGO8001132;FRALLEGO8008611;FRALLEGO8008612", + "network": "Allego FR, Bazalp Salaise sur Sanne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80378800000, + 45.34785700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P3870622854710008355", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/GILDOVEZFC", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454275" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88858000000, + 48.69860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PQIH3BAQZEB", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Ensues-la-Redonne, Parking des Coulins", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355600000, + 43.35601200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1026861", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P5730392954810300298", + "charging_station:output": "24 kW;22 kW", + "description": "SDEY/SI15JQVFV0", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55744300000, + 48.23396000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2018-05-30", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ5011;FRA16PWIIZ5012", + "charging_station:output": "22 kW", + "description": "TOURRETTES-SUR-LOUP - PARKING DE LA MADELEINE", + "ref": "FR*SOD*S*WIIZ*50*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06329700000, + 43.71861600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/WRBRGD5HQU", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466269", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6308154505755072622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49894300000, + 47.26988800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-04-26", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Retail Park - Brive-la-Gaillarde", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PSCIBLG", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47208500000, + 45.14667500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31819;FT9RYLHLGP", + "ref:EU:EVSE": "FREBNPFT9RYLHLGP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Donzère, 20 Avenue P. de Coubertin - Pkg piscine;Réseau eborn/FT9RYLHLGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70930200000, + 44.44186700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP8737752757325179243", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "EVzen/DC424425-9997-4726-ADB4-97A939C8973C", + "opening_hours": "24/7", + "ref": "1191022", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45216200000, + 48.23626900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ES/ CREDIT AGRICOLE - EPINAL", + "ref": "FR*SOD*S*OTHR*654*4*_*_;FR*SOD*S*OTHR*654*1*_*_;FR*SOD*S*OTHR*654*2*_*_;FR*SOD*S*OTHR*654*3*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-01-25", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "ES B2B", + "ref:EU:EVSE": "FROTHPOTHR65431;FROTHPOTHR65411;FROTHPOTHR65421;FROTHPOTHR65441", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45526300000, + 48.20413600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "XCVDYSHQYD;1069332", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Pontcharra, Parking de la gare;Réseau eborn/XCVDYSHQYD", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNP685665849596143918;FREBNPXCVDYSHQYD", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00822700000, + 45.43503200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-17", + "ref:EU:EVSE": "FREBNPWVAJPP", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "WVAJPP;231568", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Prémilhat, Étang de Sault;Réseau eborn/WVAJPP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55699000000, + 46.32730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SUPER U - MASSEUBE", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR34821;FROTHPOTHR34811", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*348*1*_*_;FR*SOD*S*OTHR*348*2*_*_", + "start_date": "2022-03-17", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57781700000, + 43.44282000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLL51FXD2PEZZA", + "amenity": "charging_station", + "capacity": "1", + "ref": "971765", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3591259712478007061", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.79486200000, + 47.82589500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1607", + "ref": "FR*V75*PPX16*07", + "opening_hours": "24/7", + "description": "Paris | square Tolstoï 2", + "start_date": "2021-07-22", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26169810000, + 48.85310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "412100", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6729678660843189244", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/RTGNLZP5RI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968000000, + 48.89630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2022-11-16", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "description": "Volvo - HESS - Metz", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPHESSVOLVO570501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16472900000, + 49.13023600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PANDELYSGENGAULLE", + "description": "Z19Z1003", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42020400000, + 49.24669200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22143001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "description": "Matignon-Place Rioust des Villes Audrains" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29119000000, + 48.59710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZIME22AC59778;FRZIME22AC59777", + "start_date": "2021-04-26", + "ref": "59778;59777", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "Intermarché Freneuse - CASTEL", + "description": "Intermarché - Freneuse - 22kW AC ", + "owner:ref:FR:SIREN": "401802087", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59222950000, + 49.03964560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-07-01", + "capacity": "2", + "amenity": "charging_station", + "description": "Paillard_Investissement", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60503100000, + 50.38595100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHANTELOUP-LES-VIGNES - Rue D'Andresy", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78138001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03327700000, + 48.97535000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "description": "Giberville Nord", + "start_date": "2021-10-23", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE414952;FRIOYE414904;FRIOYE414903;FRIOYE414901;FRIOYE414902;FRIOYE414951;FRIOYE414953", + "ref:EU:EVSE": "FRIOYE414952;FRIOYE414904;FRIOYE414903;FRIOYE414901;FRIOYE414902;FRIOYE414951;FRIOYE414953", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Giberville Nord", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27379670000, + 49.16790590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "474498", + "ref:EU:EVSE": "FRS52P7583435724084864277", + "description": "SDED52/ZLMJZJ3PZH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04174000000, + 48.60593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65440014", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-07-19", + "charging_station:output": "22 kW", + "description": "TARBES - Place au bois", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07986400000, + 43.22989100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-05-26", + "ref": "FRIENE006002;FRIENE006001", + "capacity": "4", + "network": "Allaire", + "operator:email": "support@iecharge.io", + "ref:EU:EVSE": "FRIENE006002;FRIENE006001", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Allaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21511550000, + 47.64896786000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "VALROS - Rue des platanes - Parking de l'Octroi", + "ref:EU:EVSE": "FRS34E34325001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36393888889, + 43.41806110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-06;2017-12-05", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "SE61-DOPI-001", + "ref:EU:EVSE": "FRS61P61146A", + "description": "DOMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55155300000, + 48.63266000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YFBKCUHMCA", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "466293", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRFR1P1454241176780067462", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74097500000, + 48.60012200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PBSZNXE", + "start_date": "2017-04-13", + "ref": "BSZNXE;33439", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Eaunes, Mairie;Roulez Électrique En Haute-Garonne/BSZNXE", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35633000000, + 43.42400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-03-21", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92004015", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - Rue du Contrat Social" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28965357700, + 48.91540932900 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000165;FRCG0E000163;FRCG0E000164", + "start_date": "2022-09-24", + "amenity": "charging_station", + "capacity": "3", + "description": "BMW - BAVARIA MOTORS (LA GARDE) - 83130 - 2", + "opening_hours": "24/7", + "network": "BMW - BAVARIA MOTORS (LA GARDE) - 83130 - 2", + "ref:EU:EVSE": "FRCG0E000165;FRCG0E000163;FRCG0E000164", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02630500000, + 43.13691200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRM06PNICE12221;FRM06PNICE12222", + "start_date": "2021-05-11", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "description": "EZE - PARKING COL DEZE", + "ref": "FR*SOD*S*NICE*122*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34145100000, + 43.73089300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saubrigues | Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref": "2246824f-f601-5c9f-bd91-cde47cf5451d", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31280900000, + 43.61050800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PISCINE - Florange", + "start_date": "2023-05-11", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE57FPBA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12591100000, + 49.31851200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS264489;FRBMPS226853;FRBMPS226855;FRBMPS226856", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "226855;226856;226853;264489", + "description": "Bump - Auchan Supermarché - MOUANS SARTOUX", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97591100000, + 43.61386550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3838EVCP03;LFR3838EVCP02;LFR3838EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LE HAVRE - Demidoff", + "ref:EU:EVSE": "LFR3838EVCP03;LFR3838EVCP02;LFR3838EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13590400000, + 49.49756300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-10E, 271 Bd Paul Claudel", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PT0JAIS6CEK", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42182400000, + 43.26977300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "65d28914-3054-5e19-8e31-cda123339f93", + "capacity": "2", + "amenity": "charging_station", + "description": "Chilly-Mazarin - Rue de Gravigny", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31361800000, + 48.69332300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP84000AVGTARASC0N", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "AVENUE TARASCON - AVIGNON", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84000*AVG*TARASC0N", + "charging_station:output": "22.08 kW", + "start_date": "2020-11-20", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80938700000, + 43.93019200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MANOSQUE - St Joseph", + "ref": "LFR3818EVCP03;LFR3818EVCP02;LFR3818EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3818EVCP03;LFR3818EVCP02;LFR3818EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79484600000, + 43.82049400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Super U - Veynes", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUVEY", + "start_date": "2024-06-05", + "operator": "Power Dot France", + "charging_station:output": "160 kW;50 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83161890152, + 44.53645937873 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "399011;JRIJGWQ7GS", + "ref:EU:EVSE": "FREBNPJRIJGWQ7GS;FREBNP5549085762722725453", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "La Crau, Parking Bonnaud;Réseau eborn/JRIJGWQ7GS", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07549200000, + 43.14716900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Freshmile France/SRD9E7Z4IO", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "479220", + "ref:EU:EVSE": "FRFR1P5272896515271757020", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769900000, + 47.33501200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Aix-en-Provence Route des Alpes - METROPOLE AIX MARSEILLE PROVENCE", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E13001004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45784900000, + 43.54072800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGFBM3TN5RY", + "ref": "GFBM3TN5RY", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "La Ricamarie, Parking Boulevard Victor Hugo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36668990000, + 45.40213200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/FW8JB0GBVB;Le Chatelard, En face ex siège social CC BAUGES", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP3627250272623756415;FREBNPFW8JB0GBVB", + "ref": "FW8JB0GBVB;346718" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13480200000, + 45.68745000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-01", + "ref:EU:EVSE": "FROTHPOTHR46532;FROTHPOTHR46531;FROTHPOTHR46512;FROTHPOTHR46511;FROTHPOTHR46521;FROTHPOTHR46522", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "HOTELS IBIS", + "ref": "FR*SOD*S*OTHR*465*3*_*_;FR*SOD*S*OTHR*465*1*_*_;FR*SOD*S*OTHR*465*2*_*_", + "description": "IBIS BUDGET - VITROLLES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22871700000, + 43.44351800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLP6MSMON178SW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1042053", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1489759230400999846" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78149300000, + 50.12820600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "ref:EU:EVSE": "FRUBIE10015666;FRUBIE10078825", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "ref": "setp0100000177", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-03-08", + "description": "UBI-LHSM-208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13622200000, + 49.50938900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/DCQLBIKEE8", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521249", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5125033858000247246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34193800000, + 48.68083800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555001", + "start_date": "2022-02-07", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TOULOUSE - Avenue de Collignon", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44392000000, + 43.61593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8549045721276621251", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/K7EP7K1IOK", + "operator": "Freshmile | FR*FR1", + "ref": "482025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59452200000, + 45.90408600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P2328144311852299736", + "opening_hours": "24/7", + "network": "MobiSDEC", + "charging_station:output": "50 kW;44 kW", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/E7G17KGQS8", + "ref": "467484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20715500000, + 48.90821800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-07", + "description": "TUCHAN - Promenade Du Docteur Chavanette", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11401001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72027800000, + 42.88861100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-02-04", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BUC - Rue de la Bièvre", + "ref:EU:EVSE": "FRY03E78117003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12971000000, + 48.77547000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "482df5c3-464b-56aa-af17-a9d84e7b52ec", + "description": "CCTLB - Flin", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65513700000, + 48.49751700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "706073", + "ref:EU:EVSE": "FRS70P6671379034086456151", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "SIED70/SL7L7X7UFK", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99392100000, + 47.91713100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOEUX LES MINES - Avenue Pierre Guillon", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH13E62617002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66968700000, + 50.47201500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2023-01-01", + "opening_hours": "24/7", + "charging_station:output": "206 kW", + "socket:type2_combo:output": "206 kW", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35281002B1;FRS35P35281002B2;FRS35P35281002B3", + "network": "OUEST CHARGE", + "description": "ST JACQUES DE LA LANDE - 97 boulevard Jean Mermoz (Parc Relais Gaité 1 ) ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70300700000, + 48.09079600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "start_date": "2022-10-26", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63113*E;SIEG63 - ePremium - Clermont Ferrand - Banville", + "opening_hours": "24/7", + "ref": "518306", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63113E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10505700000, + 45.77844800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1189813", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3888884472906793929", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLY2RF16A2PCQZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14893100000, + 49.30430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21849", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PXPAZYK", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/XPAZYK", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38198400000, + 43.88290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94002004", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-05-21;2021-05-26", + "description": "ALFORTVILLE - Rue de Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42695300000, + 48.79614800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "EPAF VACANCES LA BAULE - 44500 - 1", + "description": "EPAF VACANCES LA BAULE - 44500 - 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-11", + "ref": "FRCG0E001287;FRCG0E001466", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001287;FRCG0E001466" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36161400000, + 47.27604900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-03", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "ROQUEBILLIERE - PARKING PLACE MOLINIER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*241*1*_*_", + "ref:EU:EVSE": "FRM06PNICE24112;FRM06PNICE24111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30806981005, + 44.01279328793 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Castelculier | Rue lesboulbenes", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "ref": "9bca590e-4b2a-5067-a28f-e65c38139c60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68968700000, + 44.17527400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - GARE PARKING NORD - TAVERNY", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-24", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*382*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE38212;FRSIGPSIGE38211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22150000000, + 49.02580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76408001", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "description": "SAINT PIERRE DE MANNEVILLE - Route De Sahurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93103400000, + 49.39088800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2595EVCP04;LFR2595EVCP01;LFR2595EVCP02;LFR2595EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "TALMONT ST HILAIRE", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR2595EVCP04;LFR2595EVCP01;LFR2595EVCP02;LFR2595EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63789800000, + 46.47094800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "77306db8-294e-5ab5-adee-307558aba227", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Bussac Forêt | Place du Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37018000000, + 45.21267500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/capucins", + "ref": "46651", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PCAPUCINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10945000000, + 44.03990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RUE DE MALABRY - LE PLESSIS-ROBINSON", + "ref": "FR*55C*P92350*LPR*MALABRY", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92350LPRMALABRY", + "start_date": "2024-09-04", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27354500000, + 48.77971700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3812EVCP02;LFR3812EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "description": "BEAUGENCY - Blois", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3812EVCP02;LFR3812EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62042700000, + 47.77279000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "start_date": "2022-12-16", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Intermarché - Montbéliard", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMMBL", + "charging_station:output": "40 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79255300000, + 47.50354100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "398999;EXSLDWIYGA", + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPEXSLDWIYGA;FREBNP1878789020157766715", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/EXSLDWIYGA;Hyeres, Parking Piscine Municipale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13792300000, + 43.11163400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-08-27", + "description": "e-Totem - Carrefour Aiguebelle", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP73002A", + "ref:EU:EVSE": "FRETIP73002A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29992978435, + 45.54407800558 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-05-03", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "description": "Contact Hotel - Kimotel Epone", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCOHEPN", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83152831957, + 48.95682281354 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT563801", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-04-10", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Guer", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12229400000, + 47.91116700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Taverny - Hôtel Campanile", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPTAVHC", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-03-07", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21894300000, + 49.01594200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AUCHAN - NOYON", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*155*1*_*_", + "ref:EU:EVSE": "FROTHPAUCH15512;FROTHPAUCH15511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97611560000, + 49.56968823487 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6770865", + "capacity": "2", + "description": "IRVE PROTHERMO BORNE PROTHERMO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "IRVE PROTHERMO BORNE PROTHERMO", + "ref": "FRCPIE6770865", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70629600000, + 45.76945300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLQ0UTCYX9PIG7", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P436956580092264956", + "operator": "Freshmile | FR*FR1", + "ref": "1025391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37432200000, + 48.91045700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Boulevard de Clichy 31", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*V75*P9009*01", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900901", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33572800000, + 48.88264000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/RGSVS1AL8N", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2569605188140856236", + "ref": "682235", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59285200000, + 50.35287900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "11;8", + "socket:type2_combo:output": "250 kW;150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Albaret-Sainte-Marie - Aire de La Garde;Tesla Supercharger Albaret-Sainte-Marie - Aire de La Garde, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1720", + "network": "Tesla Supercharger", + "operator": "Tesla", + "charging_station:output": "250 kW;150 kW", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25302500000, + 44.87094500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6690686223042602083", + "network": "Freshmile France", + "ref": "346529", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/AGOI4WEQ4K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76673000000, + 48.49240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "start_date": "2022-12-02", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283510", + "description": "R3 - Norauto Petite Forêt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47850900000, + 50.38103600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P1361977187275008993", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/Z454AWT7LX", + "ref": "462033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64974200000, + 49.29209100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12224001", + "charging_station:output": "50 kW;43 kW;22 kW", + "network": "Reveo", + "start_date": "2022-02-17;2023-02-27", + "description": "SAINT GENIEZ D'OLT - Parking De La Roseraie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97570500000, + 44.46404100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA5P2500718351823050915", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "description": "WAAT/FRWA5L4AUJMAK7", + "operator:email": "exploitation@waat.fr", + "ref": "815391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58302800000, + 43.31302800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-15;2024-04-22", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SEICHES-SUR-LE-LOIR - Parking Marcel Coudray", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49333001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35941666700, + 47.57616670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8109900211;FRS81E8109900221;FRS81E8109900222", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-12-24", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "description": "GAILLAC Salle des Fêtes - Rue Philippe Noiret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89350300000, + 43.90056500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF010114", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "RELAIS CROIX FOUCREAU", + "owner:ref:FR:SIREN": "531681873;531681868;531681866;531681867;531681869;531681870;531681871;531681872;531681874;531681875", + "ref:EU:EVSE": "FRHPCPNF010114", + "network": "TotalEnergies Charge Rapide", + "capacity": "10", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-06-28", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70399200000, + 47.34143900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FLOIRAC - La barrière", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS46E46106001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65336300000, + 44.91292100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PQRHCVG", + "ref": "242134", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/QRHCVG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47243000000, + 48.01400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DOUAI - Boulevard Bréguet", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59178001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08319500000, + 50.38081000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2921800", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pont Croix-Rue Constantine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48804900000, + 48.04267500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE94068001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MAUR-DES-FOSSÉS - 2 Avenue du Mesnil", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51366160000, + 48.79405420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B Toulouse Cité de l'Espace Hurel", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90248388", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49387300000, + 43.58427600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "8f8cf3eb-b374-51f6-af82-22697a0fedb4", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Nontron | Impasse Notre Dame (Parking St Sauver)", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66476800000, + 45.52895700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-05-17", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE5111;FRSIGPSIGE5112", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*51*1*_*_", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 147 AVENUE DE LA DIVISION LECLERC - ENGHIEN-LES-BAINS", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30834200000, + 48.97491800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSLEMAN", + "start_date": "2023-08-08", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "LE MANS", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21766000000, + 47.97081000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ALLENERGIES", + "charging_station:output": "30 kW;22 kW", + "description": "Intermarché Replonges", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "socket:type2_combo:output": "30 kW", + "network": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "operator:email": "contact@allenergies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88000000000, + 46.30000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Bayonne | Quai de lesseps", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "e87fc261-5ac2-5733-aa3f-c8a6338275f2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47256700000, + 43.49588400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85092005", + "owner:ref:FR:SIREN": "200042489", + "description": "FONTENAY-LE-COMTE - Boulevard Du Chail - Place De Verdun", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80221000000, + 46.46231800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-06-24", + "description": "Allego Carrefour Beauvais Centre", + "ref:EU:EVSE": "FRALLEGO9006452;FRALLEGO9006411;FRALLEGO9001672;FRALLEGO9000031;FRALLEGO9000032;FRALLEGO9001671;FRALLEGO9006412;FRALLEGO9006451", + "network": "Allego Carrefour Beauvais Centre", + "ref": "FRALLEGO9006452;FRALLEGO9006411;FRALLEGO9001672;FRALLEGO9000031;FRALLEGO9000032;FRALLEGO9001671;FRALLEGO9006412;FRALLEGO9006451" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07333800000, + 49.42956900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVREUX Orléans", + "ref:EU:EVSE": "LFR3795EVCP01;LFR3795EVCP04;LFR3795EVCP03;LFR3795EVCP02;LFR3795EVCP05", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3795EVCP01;LFR3795EVCP04;LFR3795EVCP03;LFR3795EVCP02;LFR3795EVCP05", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "capacity": "10", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15354400000, + 49.00149700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-08-26;2024-08-27", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "La Boucherie - Saint-Laurent-des-Vignes", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PLBCSLV", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44085286250, + 44.83331421599 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "YENI22PAXC;75263", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPYENI22PAXC", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/YENI22PAXC;Vougy, Place Des Anciens Combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49167000000, + 46.06668000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref": "697535", + "ref:EU:EVSE": "FREVZP2721945400767601545", + "socket:type2_combo:output": "120 kW", + "description": "Norauto - Bornes publiques/0E8DE6A2-82B9-4261-B1BB-6ED01D981CA6", + "operator:email": "support@evzen.com", + "opening_hours": "Th,Fr,Mo,Tu,Sa,We 08:00-19:00,Tu,Th,Sa,Mo,We,Fr 09:00-20:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03631700000, + 43.82999500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-04-22", + "capacity": "10", + "operator": "Power Dot France", + "description": "Gamm Vert - Challans", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PGAMCHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88629428902, + 46.83865605917 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leroy Merlin - Bordeaux - Le Lac", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "start_date": "2018-11-16", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRE11PLMBORDEAUX33300P1", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56557800000, + 44.88280100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP02168B", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP02168B", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-04", + "description": "e-Totem - Best Western Chateau Thierry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39948823608, + 49.05607568125 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-18", + "ref:EU:EVSE": "FROTHPOTHR14911;FROTHPOTHR14912", + "capacity": "2", + "amenity": "charging_station", + "description": "CCVL - MESSIMY - CHEMIN DES LATS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*149*1*_*_", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68951600000, + 45.70166700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BLETTERANS SQUARE SIMONIN", + "description": "BLETTERANS SQUARE SIMONIN", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6956985", + "opening_hours": "24/7", + "start_date": "2024-07-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6956985", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45607500000, + 46.74675500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9135321993094954460", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CXWV1XDUHI", + "operator": "Freshmile | FR*FR1", + "ref": "782367" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79864000000, + 44.51890300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-08-20", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP100401", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Kyriad Niort Est - La Crèche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34263700000, + 46.35103700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2426088782196894359", + "operator:email": "roaming@freshmile.com", + "ref": "466017", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "description": "Freshmile France/FOR8S4ILKZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42471400000, + 43.06401000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-12-07", + "description": "Nissan - Annemasse", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN741001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26436100000, + 46.19919700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P732109436098653226", + "ref": "971759", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLK9E3P4T2NSNW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47017000000, + 43.57395500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRSSDPHESSRENAULT672001", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:30-18:00", + "description": "Renault - HESS - Strasbourg Hautepierre", + "start_date": "2022-05-19", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69000300000, + 48.59038400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-06-11", + "ref:EU:EVSE": "FRS28E130744", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E130744", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - CHARTRES - Pl. Morad", + "operator": "Modulo", + "network": "MODULO - CHARTRES - Pl. Morad", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49582900000, + 48.44576500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/J2CAXWCJQ2", + "opening_hours": "24/7", + "ref": "457479", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P7007902074367363142", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04679400000, + 49.14957400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA6LGMY0DFRR", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P2387757657493470662", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128054", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36185600000, + 46.16789000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50400002", + "start_date": "2017-02-03", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GRANVILLE - St Nicolas Agora", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56835010000, + 48.83279240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "ROUMEGOUX - Louis Vignals", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-31", + "ref:EU:EVSE": "FRS81E8123300112;FRS81E8123300111;FRS81E8123300121;FRS81E8123300122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26345000000, + 43.80009300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "RELAIS DES BRONDILLANTS BRON", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-01-13;2021-06-21", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF078069", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680570;531680571", + "ref:EU:EVSE": "FRHPCPNF078069", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90510000000, + 45.73930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-03-28;2024-04-02;2021-04-29", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49P49007O;FRS49E49007015", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "ANGERS - Avenue Hôtel Dieu;OuestCharge - Diva Sp - Angers - Hotel Dieu", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56062600000, + 47.47947900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/Senlisboutt", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PSENLISBOUTT", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "48931" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58969000000, + 49.20600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH07E59574002", + "network": "pass pass électrique", + "description": "SOMAIN - Boulevard Louise Michel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28420500000, + 50.34763000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CAVILLARGUES - Place Du 19 Mars 1962", + "ref:EU:EVSE": "FRS30E30076001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52407300000, + 44.11406400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "Mobilité électrique 56/JSEDAA", + "network": "Mobilité électrique 56", + "ref": "251920", + "ref:EU:EVSE": "FRS56PJSEDAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95376000000, + 48.05400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP90199114", + "description": "ENGIE Vianeo - B&B Hôtel Brest Kergaradec", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.45950600000, + 48.43249400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "ref": "446924", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93071B", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2021-11-09", + "network": "Métropolis;METROPOLIS", + "description": "Métropolis/FR*MGP*P93071*B;Metropolis - Citadine - Sevran - Avenue de Livry", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53516300000, + 48.93427700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Shell Parvis - Le Havre", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "description": "Shell Parvis - Le Havre", + "start_date": "2024-02-21", + "capacity": "13", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "150 kW;125 kW;22 kW", + "ref:EU:EVSE": "FRSHEE313;FRSHEE312;FRSHEE310;FRSHEE311", + "opening_hours": "24/7", + "ref": "FRSHEE313;FRSHEE312;FRSHEE310;FRSHEE311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10843100000, + 49.49691800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E28134002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "150 kW", + "description": "DREUX - Président Kennedy", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-08-01", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37906400000, + 48.73052200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A71 L'Allier Doyet", + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2022-12-22", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89369690" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80237600000, + 46.35500400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Coteaux du Blanzacais | Parking du Cinéma", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "b6cfe464-700f-52d1-8cb2-6e51a848dd36", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03329900000, + 45.47636100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "start_date": "2024-04-30", + "description": "Place de Verdun - AUXI LE CHATEAU", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62ABFA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11129200000, + 50.22969600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DRANCY", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "start_date": "2024-02-20", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW", + "ref:EU:EVSE": "FRALLPEVCARSDRNCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42094000000, + 48.92064000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "BEAUVAIS Dassault", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3739EVCP01;LFR3739EVCP04;LFR3739EVCP02;LFR3739EVCP03", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3739EVCP01;LFR3739EVCP04;LFR3739EVCP02;LFR3739EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09485000000, + 49.44662800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM29E29019001", + "description": "BREST - Avenue De La 1re Dfl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.54398400000, + 48.37805000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Privas, Place du Foiral", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTE9XLMEDEJ", + "ref": "TE9XLMEDEJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59508584000, + 44.73409181000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJNXVN2WJ28GV", + "ref": "892401", + "ref:EU:EVSE": "FRFR1P7764267168182255822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33240500000, + 49.14694400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "BIARRITZ - Verdun Médiathèque", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E641220041;FRP07E64122004", + "start_date": "2023-12-28", + "capacity": "12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55505533283, + 43.48112285919 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Puget-Ville, 1-6 Rue des Cantons;Réseau eborn/SEODRBQGWL", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SEODRBQGWL;50746", + "ref:EU:EVSE": "FREBNPSEODRBQGWL;FREBNSEODRBQGWL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13767900000, + 43.28809300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "4", + "description": "Road/65dde6ca172729001cd2f010", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP6235282446951219280", + "operator:email": "roaming-dev@road.io", + "ref": "1036065", + "operator": "Road | FR*EFL", + "opening_hours": "We,Tu,Su,Sa,Mo,Th,Fr 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81638500000, + 49.53579800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ECOLE DINGENIEURS DE PURPAN - SAINT-LYS", + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "network": "ECOLE DINGENIEURS DE PURPAN SITE TOULOUSE", + "start_date": "2021-10-28", + "ref": "FR*SOD*S*OTHR*267*4*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR26741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24646500000, + 43.49870500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED AGEN", + "description": "CGED AGEN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6604805", + "ref": "FRCPIE6604805", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62405100000, + 44.17650300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "694439", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PGHLVV2XSS", + "ref:EU:EVSE": "FRFR1P3584240658389863631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55636500000, + 45.04762100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1132308", + "network": "WAAT", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P8161506599349897478", + "capacity": "3", + "opening_hours": "24/7", + "description": "WAAT/s520624", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25382800000, + 48.95473300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3605133904211940786", + "network": "Freshmile France", + "description": "Freshmile France/LLYZS37XN14C1D", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1156302", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77459600000, + 44.84004700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1234656991", + "ref:EU:EVSE": "FRSWSE1234656991", + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "description": "ALPI 225 LAITERIE CHABERT", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "start_date": "2024-09-05", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17635100000, + 45.92226000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P3687822901046843711", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "ref": "521330", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile/MTMBQ1VMJY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78068200000, + 48.57150700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBEAUCHAMPKIA132001", + "description": "Kia - Arles", + "capacity": "4", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:30, Tu 09:00-12:00, Tu 14:00-18:30, We 09:00-12:00, We 14:00-18:30, Th 09:00-12:00, Th 14:00-18:30, Fr 09:00-12:00, Fr 14:00-18:30, Sa 09:00-12:00, Sa 14:00-18:30", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "start_date": "2019-12-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64107900000, + 43.66473400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Benodet-Corniche de la Plage", + "ref:EU:EVSE": "FRS29E2900600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10216200000, + 47.87105900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "88238", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2447862236332240951", + "description": "SDEA 10/WX2E9X4IMC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30282100000, + 48.14286900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1193647", + "description": "Zephyre/LP20018E", + "network": "Zephyre", + "ref:EU:EVSE": "FRZP1P4382583086494723744", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76794200000, + 47.63940400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "owner:ref:FR:SIREN": "839265951", + "amenity": "charging_station", + "capacity": "1", + "description": "Domaine_Enchantoir", + "ref:EU:EVSE": "FRROSE732", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22043470000, + 47.11023550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/NGTDGD", + "ref": "79474", + "ref:EU:EVSE": "FRS80PNGTDGD", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54700000000, + 50.32210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST15011;FRIZFPFAST15012;FRIZFPFAST15013", + "ref": "FR*SOD*S*FAST*150*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - SAINT GERMAIN LES CORBEIL", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-23", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49866180000, + 48.62672000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - ST LAURENT NOUAN - Pl. Soleil d'Or", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4605;FRS41E4606", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ST LAURENT NOUAN - Pl. Soleil d'Or", + "ref:EU:EVSE": "FRS41E4605;FRS41E4606" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61287800000, + 47.71724000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "ref:EU:EVSE": "FRS60PBORNEL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "38794", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Bornel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20654000000, + 49.19860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*LYON*64*1*_*_", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "MIS02 - ROCADE EST - D318", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2021-03-08", + "ref:EU:EVSE": "FRGLYPLYON6412;FRGLYPLYON6411", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95743200000, + 45.67984500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES SALLES DU GARDON - Parking Mairie", + "ref:EU:EVSE": "FRS30E30307001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03439800000, + 44.20688300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/DDQTSB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PDDQTSB", + "network": "Mobilité électrique 56", + "ref": "242128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32281000000, + 47.87560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFZDP74330001", + "capacity": "2", + "network": "Réseau de recharge Fuzed", + "amenity": "charging_station", + "start_date": "2024-05-20", + "opening_hours": "24/7", + "operator:email": "contact@fuzed.fr", + "charging_station:output": "22 kW", + "operator": "Fuzed", + "description": "Key West Epagny", + "owner:ref:FR:SIREN": "927865220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08109700000, + 45.93358300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-27", + "operator:email": "support@modulo-energies.fr", + "ref": "FRN54E216760;FRN54E216759;FRN54E187014;FRN54E187015", + "amenity": "charging_station", + "capacity": "4", + "description": "MODULO - VANDOEUVRE LES NANCY - Pkg. Piscine", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VANDOEUVRE LES NANCY - Pkg. Piscine", + "ref:EU:EVSE": "FRN54E216760;FRN54E216759;FRN54E187014;FRN54E187015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17863000000, + 48.66690800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE19831;FRSIGPSIGE19811;FRSIGPSIGE19821;FRSIGPSIGE19841", + "description": "SIGEIF - 1 RUE GOUNOD - COLOMBES", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*198*1*_*_;FR*SOD*S*SIGE*198*2*_*_;FR*SOD*S*SIGE*198*3*_*_;FR*SOD*S*SIGE*198*4*_*_", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "start_date": "2021-08-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842000000, + 48.92366200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Bleecker Group Genevilliers - 92230 - 5", + "description": "Bleecker Group Genevilliers - 92230 - 5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-03-16", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001761;FRCG0E001762;FRCG0E001763;FRCG0E001768;FRCG0E001769;FRCG0E001774", + "charging_station:output": "22 kW;2 kW;150 kW", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001761;FRCG0E001762;FRCG0E001763;FRCG0E001768;FRCG0E001769;FRCG0E001774" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31408900000, + 48.92439200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-04-21", + "capacity": "2", + "amenity": "charging_station", + "ref": "E46104", + "network": "Bornevo Connect", + "owner:ref:FR:SIREN": "418152302", + "ref:EU:EVSE": "FRLMSE117293791", + "operator": "Bornevo", + "charging_station:output": "22 kW", + "description": "NNR France", + "operator:email": "contact@bornevo.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50000000000, + 49.00000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint leonard de Noblat | Place du Champs de Mars", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "077dd9d6-91d4-5272-9496-3a801c6b369d", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49332500000, + 45.83819800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE85SACA", + "network": "Stations-e", + "description": "Bégaud Pôle - SAINT GILLES CROIX DE VIE", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-25", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90058100000, + 46.69323700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "BOURG EN BRESSE", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-04-13", + "ref:EU:EVSE": "FRALLPEVCARSBRGBR", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24173100000, + 46.20035600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "CASTANET TOLOSAN -Rabaudy", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3827EVCP02;LFR3827EVCP01", + "capacity": "4", + "ref": "LFR3827EVCP02;LFR3827EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51407400000, + 43.52181200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "description": "SAINT JEAN DE VEDAS - Rond Point De L'Europe", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34270002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83834600000, + 43.57106000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "30338", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/NEKQQUXFMO", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPNEKQQUXFMO", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66594200000, + 45.16699500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "694190", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5789317085776169654", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/BKKQY5R3K6", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86283800000, + 47.64676300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "NEUILLY SUR SEINE - Avenue Charles de Gaulle Niveau -3;NEUILLY SUR SEINE - Avenue Charles de Gaulle Niveau -2;NEUILLY SUR SEINE - Avenue Charles de Gaulle Niveau -1", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E920510072;FRP07E920510071;FRP07E920510062;FRP07E920510061;FRP07E92051006;FRP07E920510051;FRP07E92051005;FRP07E92051007", + "operator": "Bouygues E&S", + "capacity": "20;10", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-05-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27127310000, + 48.88157660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Montsegur-Sur-Lauzon, Avenue Saint Jean;Réseau eborn/E6Y7M7AMVB", + "ref:EU:EVSE": "FREBNPE6Y7M7AMVB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "E6Y7M7AMVB;31900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85676000000, + 44.36141000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPROYIM", + "socket:type2_combo:output": "300 kW", + "capacity": "10", + "description": "Roye - Intermarché", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77541000000, + 49.70658900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Gare de la Verrière Saint-Quentin-En-Yvelines - EFFIA", + "ref:EU:EVSE": "FRP01E786440012;FRP01E786440011;FRP01E78644001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-09-11", + "capacity": "20", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94454280000, + 48.75599590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "description": "FRANKENBOURG BORNE GARAGE", + "network": "FRANKENBOURG BORNE GARAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6640555", + "start_date": "2022-10-12", + "ref": "FRCPIE6640555" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30300700000, + 48.28390400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHPLTETLMWDSZ;FRECHP3443015921894713294", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "description": "Easy Charge/LTETLMWDSZ;Vienne, Place Saint-Paul", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "446492;LTETLMWDSZ", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87390000000, + 45.52472000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1721", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "description": "Paris | Rue Brunel 42", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref": "FR*V75*PPX17*21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28785570000, + 48.87884420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8979501114414279354", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/sarrepide", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;22 kW", + "ref": "454464", + "charging_station:output": "50 kW;44 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05582000000, + 48.73410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Avenue de la Porte de Villiers 2", + "ref": "FR*V75*P9017*01", + "start_date": "2022-03-07", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28693800000, + 48.88328200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8567343669304503198", + "operator:email": "roaming@freshmile.com", + "ref": "453957", + "capacity": "2", + "description": "Freshmile France/AKJDIXOW7V", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43150000000, + 46.80750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLANCIEN566001", + "start_date": "2022-08-03", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Lorient", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33951000000, + 47.78138600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2916500", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plobannalec Lesconil-Rue de Pont l Abbé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22864200000, + 47.82432900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11172001;FRS11E11172002", + "capacity": "4", + "start_date": "2022-02-16;2023-08-10", + "description": "HOMPS - Site Parking Du Stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72150359964, + 43.26787339773 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "NOMADE BREWERY", + "owner:ref:FR:SIREN": "819452657", + "ref:EU:EVSE": "FRZPEE22AC122021", + "amenity": "charging_station", + "capacity": "1", + "ref": "122021", + "opening_hours": "Tue-Fri 12:00-22:00,Sat 16:00-23:00", + "charging_station:output": "22.0 kW", + "operator:email": "advenir@zeborne.com", + "start_date": "2022-03-03", + "description": "NOMADE BREWERY - Genas - 22kW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98499570000, + 45.73126370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAZERES - Parking Lotissement Du Collège, Chemin Couloumié", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09185002", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67596200000, + 43.24382700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "86663", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/TBRBZZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PTBRBZZ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61750000000, + 49.66020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MC DONALDS - REDON", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST32711;FRIZFPFAST32712;FRIZFPFAST32713", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*327*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-10-02", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06844580000, + 47.66970110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "GUEMENE-PENFAO - Rue Saint-Jean;OuestCharge - Diva Sp - Guemene-Penfao - Saint-Jean", + "start_date": "2024-04-15;2021-05-21", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44067A;FRS44E44067001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83397600000, + 47.62739800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "EVRY-GREGY-SUR-YERRE - Grande rue", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS77E77175002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63323720000, + 48.65286790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref": "993405", + "description": "GreenYellow Shift Mobility/17", + "ref:EU:EVSE": "FRGYMP1566387167469020594", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43189900000, + 48.90384700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220285;FRS37E220281", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E220285;FRS37E220281", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHÂTEAU LA VALLIERE - Champ de Foire", + "description": "MODULO - CHÂTEAU LA VALLIERE - Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31917483000, + 47.54761660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "c1c33520-2e2e-5c01-80da-e42c1fab4ec8", + "operator": "43__CCTLB", + "capacity": "2", + "description": "CCTLB - Franconville", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45182200000, + 48.50039500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "ETS Marchand", + "description": "Station Marchand", + "start_date": "2024-05-30", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com", + "owner:ref:FR:SIREN": "887676260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08630000000, + 49.91873000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | AILLAS | ZA Bois Majou Nord", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "91ba1e25-0c8c-5de4-a537-e69ad082ce68", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05271700000, + 44.51271600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VALENTON - Avenue Julien Duranton", + "start_date": "2023-04-07", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94074003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44744830221, + 48.76586256649 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6542705;FRCPIE6530295", + "description": "SUPER U SEM BORNE 2", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6530295;FRCPIE6542705", + "network": "SUPER U SEM BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77408500000, + 47.27010600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/OOAD2XGWNN", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3838881569129006561", + "ref": "521426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32998900000, + 50.27656400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "3d29397d-ead5-5c8e-8524-27ce235c1db3;FR*SOD*S*MB33*127*1*_*_", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS33PMB3312712;FRS33PMB3312711;Non concerné", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "253303473", + "description": "SAINT SEURIN SUR L ISLE - PLACE GENERAL RAOUL SALAN;MOBIVE | Saint Seurin Sur L Isle | Place General Raoul Salan", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00313400000, + 45.01342000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-16", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Prahecq - Mairie", + "ref:EU:EVSE": "FRSEOPAB54092A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34483773000, + 46.25910761000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-17", + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS317007", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Airbus - Blagnac - AGLU ACCUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36135600000, + 43.65420800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "SARCELLES", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR1876EVCP03;LFR1876EVCP01;LFR1876EVCP02;LFR1876EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR1876EVCP03;LFR1876EVCP01;LFR1876EVCP02;LFR1876EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37759100000, + 48.98792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE36612;FRM06PNICE36611", + "ref": "FR*SOD*S*NICE*366*1*_*_", + "description": "EZE - MARECHAL LECLERC", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35286401820, + 43.73364146102 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA ROQUETTE SUR SIAGNE PARKING ST JEAN", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ1711;FRA16PWIIZ1712", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*17*1*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2018-04-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94794200000, + 43.58018900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "971801", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7572202875791566742", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMG95DSS2RQ34" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25312700000, + 45.59213400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "description": "Basic Fit - Saint-Sulpice-sur-Risle", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PBOUSUL", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64957354411, + 48.76097050274 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/DSABFFKF7S", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP8835846669308970404", + "charging_station:output": "50 kW;44 kW", + "ref": "749424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17547600000, + 46.15737000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Nice - Indigo Parking Massena", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPNICIMA", + "operator": "ELECTRA", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27069900000, + 43.69768200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "TOULOUSE - Carmes", + "start_date": "2020-06-18;2023-02-17;2021-11-08", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E315550022;FRP07E31555002;FRP07E315550021", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44440800000, + 43.59761000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31957", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPKUZMMX4TIX", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/KUZMMX4TIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53849100000, + 44.20221400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/GVR3SGYX1N;L'Isle-sur-la-Sorgue , René Char", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP5968119069577156717;FRECHPGVR3SGYX1N", + "ref": "756852;GVR3SGYX1N", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05571500000, + 43.91890100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "description": "ENGIE Vianeo - A26 Champ Roland", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP102105", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92796600000, + 49.44571600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1199390155899985806", + "ref": "892122", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLIIL4KRO26MRR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13651300000, + 46.53952800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0902", + "capacity": "3", + "description": "Paris | Rue de Chateaudun 21", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "ref": "FR*V75*PPX09*02", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33828980000, + 48.87592100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLVKS1SZQ17CZP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1083342", + "ref:EU:EVSE": "FRFR1P5316855742380972462", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41550000000, + 47.69614700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAURINRENAULT772101", + "start_date": "2021-05-07", + "capacity": "2", + "amenity": "charging_station", + "description": "Renault - Avon", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73791000000, + 48.42187400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS25PYLQMYY", + "operator:email": "roaming@freshmile.com", + "ref": "94340", + "capacity": "2", + "description": "SYDED/YLQMYY", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19530000000, + 46.71440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E206382;FRS18E206381", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - AVORD - Alouettes", + "ref": "FRS18E206382;FRS18E206381", + "description": "MODULO - AVORD - Alouettes", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65183700000, + 47.03270300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78367003", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "MAREIL-MARLY - Bois Noirs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06930000000, + 48.88248000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - MARSEILLE - PHARO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2023-02-23;2023-01-05", + "ref:EU:EVSE": "FRQPKPQPRK2581;FRQPKPQPRK2561;FRQPKPQPRK2541;FRQPKPQPRK2531;FRQPKPQPRK2521;FRQPKPQPRK25201;FRQPKPQPRK25181;FRQPKPQPRK25131;FRQPKPQPRK25121;FRQPKPQPRK25111;FRQPKPQPRK2511;FRQPKPQPRK25101;FRQPKPQPRK25141;FRQPKPQPRK25151;FRQPKPQPRK25161;FRQPKPQPRK25171;FRQPKPQPRK25191;FRQPKPQPRK2551;FRQPKPQPRK2571;FRQPKPQPRK2591", + "ref": "FR*SOD*S*QPRK*25*9*_*_;FR*SOD*S*QPRK*25*8*_*_;FR*SOD*S*QPRK*25*7*_*_;FR*SOD*S*QPRK*25*6*_*_;FR*SOD*S*QPRK*25*2*_*_;FR*SOD*S*QPRK*25*20*_*_;FR*SOD*S*QPRK*25*19*_*_;FR*SOD*S*QPRK*25*18*_*_;FR*SOD*S*QPRK*25*13*_*_;FR*SOD*S*QPRK*25*12*_*_;FR*SOD*S*QPRK*25*10*_*_;FR*SOD*S*QPRK*25*1*_*_;FR*SOD*S*QPRK*25*11*_*_;FR*SOD*S*QPRK*25*14*_*_;FR*SOD*S*QPRK*25*15*_*_;FR*SOD*S*QPRK*25*16*_*_;FR*SOD*S*QPRK*25*17*_*_;FR*SOD*S*QPRK*25*3*_*_;FR*SOD*S*QPRK*25*4*_*_;FR*SOD*S*QPRK*25*5*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35976100000, + 43.29196000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAHUZAC / VERE - Route De Gaillac", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81051001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90915600000, + 43.98230900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref": "FRIONE408300", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Jura", + "start_date": "2019-10-08", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE408300", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52262700000, + 46.77589800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Saint-Malo-De-Guersac - Sainte-Anne;SAINT-MALO-DE-GUERSAC - Salle Sainte-Anne", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-20;2024-04-24", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44176A;FRS44E44176001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17980600000, + 47.35248300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sancy;SANCY - Rue De Meaux", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77443A;FRS77E77443001", + "ref": "01F5ZAKH61N7MXZGDJMEN8TQYQ", + "start_date": "2016-08-31;2023-05-17", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96165300000, + 48.88573500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080047", + "socket:type2_combo:output": "150 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "RELAIS SOUCHEZ", + "owner:ref:FR:SIREN": "531681110;531681111", + "opening_hours": "24/7", + "start_date": "2023-05-05;2022-12-22", + "ref:EU:EVSE": "FRHPCPNF080047", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74260000000, + 50.40450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E211885;FRS41E211886", + "network": "MODULO - SEIGY - Rue Marcel Cottereau", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E211885;FRS41E211886", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-08-01", + "description": "MODULO - SEIGY - Rue Marcel Cottereau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39745300000, + 47.25505000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "24758", + "description": "Mobilité électrique 56/TJTDLE", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PTJTDLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73667000000, + 47.61880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-03-02", + "network": "GRAND LYON", + "description": "GIV02 - VERRERIES", + "ref:EU:EVSE": "FRGLYPLYON18422;FRGLYPLYON18421;FRGLYPLYON18412;FRGLYPLYON18411", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*184*1*_*_;FR*SOD*S*LYON*184*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77758400000, + 45.58172200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Metropolis - Proximité - Antony - De Tocqueville;Métropolis/FR*MGP*P92002*E", + "ref:EU:EVSE": "FRMGPP92002E", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-04-26", + "ref": "383175", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31383000000, + 48.73274000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT621001", + "description": "Peugeot - Calais", + "start_date": "2019-12-11", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-18:45, Tu 08:00-12:00, Tu 13:30-18:45, We 08:00-12:00, We 13:30-18:45, Th 08:00-12:00, Th 13:30-18:45, Fr 08:00-12:00, Fr 13:30-18:45, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91026000000, + 50.94738000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "90 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540023", + "start_date": "2023-06-09", + "description": "ROUEN - Quai de Paris", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09869700000, + 49.43676500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "14", + "opening_hours": "24/7", + "ref": "446810", + "charging_station:output": "22 kW", + "description": "Leclerc/RYFDYJESIX", + "ref:EU:EVSE": "FRLE2P3435215914147410812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53047300000, + 48.12114900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "description": "CAMPS SUR L ISLE - AV DE LA REPUBLIQUE;MOBIVE | Camps Sur L Isle | Av de la Republique", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "Non concerné;FRS33PMB332411;FRS33PMB332412", + "ref": "f1371667-6a7d-5591-9675-0ad8421983a0;FR*SOD*S*MB33*24*1*_*_", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03050800000, + 45.01512900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "NESLES-LA-VALLEE - Rue Pierre Pilon", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95446001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17094683218, + 49.12836973624 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "12;14", + "operator": "Allego", + "start_date": "2023-04-20;2023-01-27", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "description": "TOULOUSE SUD NORD ASF", + "ref:EU:EVSE": "FRSITE00000019;FRALLPASF023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014000000, + 43.48583000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "1009248", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/RSFPURX5RY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5285392559995872670" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75608600000, + 50.48275300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PDJ0EEX8K6J", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Allauch, Avenue Jean Moulin, Parking Fassanaro", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48831700000, + 43.35785800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P8672093855118574280", + "ref": "402605", + "description": "SDEY/RGITKSMNLH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20538900000, + 48.28647200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*308*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-07-15", + "description": "FREJUS - PARKING PLACE DES JESUITES", + "ref:EU:EVSE": "FRA16PWIIZ30812;FRA16PWIIZ30811", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73454182432, + 43.43162153527 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1009233", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7837165753630235626", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ZTZRSG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62611000000, + 49.05290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "description": "Le Marché de Léopold - Langon", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRPD1PPATLAN", + "start_date": "2024-02-29", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24282706134, + 44.54438102341 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Toulon, Parking co-voiturage Ste Musse;Réseau eborn/LLI8VDSIC2KY6Q", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-05-29", + "ref:EU:EVSE": "FREBNPLLI8VDSIC2KY6Q;FREBNP2619435953773378087", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "892791;LLI8VDSIC2KY6Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98225200000, + 43.12927100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "Norauto - Bornes publiques/D75BE6AB-582C-4862-B6F3-E847503DDBEB", + "opening_hours": "24/7", + "ref": "613468", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP2320903693655712263", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66634100000, + 44.83152800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - GERARDMER", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "100 kW", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR62511;FROTHPOTHR62512;FROTHPOTHR62521;FROTHPOTHR62522", + "opening_hours": "24/7", + "start_date": "2024-01-19", + "ref": "FR*SOD*S*OTHR*625*1*_*_;FR*SOD*S*OTHR*625*2*_*_", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88725800000, + 48.07851600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/YLSVBYAJM1", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "86000", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPYLSVBYAJM1", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39485100000, + 45.28257500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLU2PYM1E4V76C;St Martin d'Uriage - Parking de la piscine", + "capacity": "2", + "start_date": "2024-03-22", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLU2PYM1E4V76C;FREBNP6798083649031151151", + "ref": "LLU2PYM1E4V76C;1041420", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83715500000, + 45.15061600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "operator": "IZIVIA", + "description": "CAMPING LES EMBRUNS - CLOHARS-CARNOET", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR31912;FROTHPOTHR31911", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "CAMPING LES EMBRUNS", + "ref": "FR*SOD*S*OTHR*319*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.54512400000, + 47.76851900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P537765868721408646", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKRYVNQX1IHP1", + "ref": "892578", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06373200000, + 50.83298400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1518", + "ref": "FR*V75*PPX15*18", + "description": "Paris | Rue de la Fédération 10", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29040530000, + 48.85481900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1026771", + "network": "Freshmile France", + "description": "Freshmile France/LLMSXGV0Q2BOS8", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5825279895459893860" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71573800000, + 48.64128200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Decathlon - Bourgoin-Jallieu", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPDECATHLON383002", + "start_date": "2022-02-25", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20:00, Th 08:00-20:00, Fr 08:00-20:00, Sa 08:00-20:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24737600000, + 45.59143500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "description": "900051", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PSTMARCELDEGAULLE", + "start_date": "2016-07-08", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45208800000, + 49.10168900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22084002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Jugon les Lacs-Place de la poste (derrière salle des fêtes)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32436800000, + 48.40846600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NOISY-LE-ROI - Avenue Charles De Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY24E78455002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06411100000, + 48.84353900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE211", + "amenity": "charging_station", + "capacity": "4", + "description": "Camping_Esplanade", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-07-04", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88821840000, + 41.69565940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78005003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "ACHERES - Rue St Germain" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07218330000, + 48.95566110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE408151;FRIOYE408103;FRIOYE408102;FRIOYE408101;FRIOYE408104;FRIOYE408152;FRIOYE408153", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "network": "Darvault", + "ref:EU:EVSE": "FRIOYE408151;FRIOYE408103;FRIOYE408102;FRIOYE408101;FRIOYE408104;FRIOYE408152;FRIOYE408153", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2019-08-24", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Darvault" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72181146000, + 48.26436754000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "474504", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/QH0DVWC2XY", + "ref:EU:EVSE": "FRS52P7665618935869224712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13530300000, + 48.10884900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65362002", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "PIERREFITTE - Ecole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07615000000, + 42.95916000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE003402;FRIENE003401", + "description": "La Vôge les Bains", + "ref": "FRIENE003402;FRIENE003401", + "network": "La Vôge les Bains" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27424821000, + 48.00709402000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34267001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT JEAN DE FOS - Parking Ecole maternelle", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55471435371, + 43.69804550126 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-BELLE-001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "description": "BELLEME", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61038A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56433800000, + 48.37433500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "477690", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P370981602620547884", + "description": "Freshmile France/PAR6SVC8CT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97879200000, + 43.45844800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-29", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PCHTQTA", + "ref": "CHTQTA", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "description": "Fourquevaux", + "opening_hours": "24/7", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61735000000, + 43.50750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Ford - Toulon (La Valette)", + "start_date": "2020-12-14", + "ref:EU:EVSE": "FRSSDPMAURINFORS831601", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99858700000, + 43.13678100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000057;FRCG0E000055;FRCG0E000053;FRCG0E000052;FRCG0E000051;FRCG0E000050;FRCG0E000049;FRCG0E000054;FRCG0E000056;FRCG0E000058;FRCG0E000059", + "start_date": "2022-03-08", + "network": "BIC CONTE - 62830 - 1", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000057;FRCG0E000055;FRCG0E000053;FRCG0E000052;FRCG0E000051;FRCG0E000050;FRCG0E000049;FRCG0E000054;FRCG0E000056;FRCG0E000058;FRCG0E000059", + "capacity": "11", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "description": "BIC CONTE - 62830 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73082800000, + 50.64466500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-01", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "1", + "description": "Camping le Valserine", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMEVALSERINE1", + "ref": "3c260145-276e-492d-82fd-bed3fda057ba", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86000000000, + 46.22000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Mauleon | Parking du Jeu de Paume", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "ref": "44d3fd42-6f67-5eea-803d-04bff39a74a3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89250000000, + 43.22081000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "LESMENILS - Bistro 28", + "start_date": "2023-05-31", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE54LMBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11746700000, + 48.93716100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "202095;202096;202094", + "description": "Bump - Intermarché Super - Rodez", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS202095;FRBMPS202096;FRBMPS202094", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55562740000, + 44.36407210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3090EVCP01", + "ref": "LFR3090EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "QUIMPERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.53041300000, + 47.86207700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PQPVEMIHEDP", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-4E, Avenue des Chutes lavie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39797400000, + 43.31513800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TE90/LVMKNE", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90PLVMKNE", + "ref": "232498" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753000000, + 47.73030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALLEE LATECOERE - DASSAULT - VELIZY", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP78140VLZDASSAULT", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-07-21", + "ref": "FR*55C*P78140*VLZ*DASSAULT", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21193100000, + 48.78543700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6878035433505633608", + "network": "Freshmile France", + "ref": "466281", + "capacity": "14", + "description": "Freshmile France/XWE4EWS3MA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48968800000, + 45.45974300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUPNL", + "description": "Système U - Pineuilh", + "start_date": "2023-08-18", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "charging_station:output": "100 kW;187.5 kW;22 kW", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22766754715, + 44.84119689668 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Vichy, Gare;Réseau eborn/vichy2", + "ref:EU:EVSE": "FREBNPVICHY2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "231613;vichy2", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2017-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43013000000, + 46.12720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "ref:EU:EVSE": "FRFASE33101", + "amenity": "charging_station", + "ref": "FRFASE33101", + "network": "Fastned Aire de Wancourt Est", + "operator:email": "support@fastned.nl", + "start_date": "2023-02-03", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Fastned Aire de Wancourt Est", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86415800000, + 50.26148500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SUPER U - VILLAINES-LA-JUHEL", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW", + "start_date": "2021-12-10", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPSENT20521;FROTHPSENT20511", + "ref": "FR*SOD*S*SENT*205*1*_*_;FR*SOD*S*SENT*205*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27123100000, + 48.34139300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "GXDZ8OG6HC", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGXDZ8OG6HC", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "La Clusaz, 39 Rue du cimetière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42500000000, + 45.90611110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "La Bauche, Parking Nord Château", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLSU6NO681DFU8", + "ref": "LLSU6NO681DFU8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76971891000, + 45.48975041000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR43822;FROTHPOTHR43811;FROTHPOTHR43812;FROTHPOTHR43821", + "ref": "FR*SOD*S*OTHR*438*2*_*_;FR*SOD*S*OTHR*438*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "start_date": "2022-07-22;2022-07-25", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW", + "description": "FFF - LIGUE DE FOOTBALL NOUVELLE AQUITAINE - LE HAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67331200000, + 44.87688900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "782439", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/C2AJENOGKE", + "ref:EU:EVSE": "FRFR1P2970407572800275068", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542400000, + -21.32312800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Auch, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP33157", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59093379000, + 43.66446075000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/O6N2OWJJ7V", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "674243", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P775124316221921004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29266000000, + 45.51107900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "capacity": "7", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "VAUDOY-EN-BRIE-14 Rue de Pécy", + "ref": "4d29bc3d-8a12-5acb-a3c5-3f0f1070f9e5", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08675100000, + 48.68399700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/CHPBCT", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454443", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3891520922270425993" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11605000000, + 48.67090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/TJTE9E9IPY", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P902753726054539713", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461946" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04507800000, + 49.23008700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Beaudouin 1 - 22 kW AC", + "network": "Garage Beaudouin", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "87837cb5-a16e-417f-8605-289788300138", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P12345", + "owner:ref:FR:SIREN": "404729972", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63117400000, + 48.18639700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE430", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "Sorofi_Bourgoin", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-10-10", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24160500000, + 45.59232960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78647001", + "description": "VERT - Salle des fêtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68710000000, + 48.94009000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "VILLE DE NANCY - Parking III Maisons - Nancy", + "ref": "5e1dc18a-20d9-59df-be90-21b954f7b5b4", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "operator": "49__VILLE DE NANCY", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17554200000, + 48.70359300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-09-20", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66180002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "SAINT LAURENT DE LA SALANQUE - Av De L'Aviation" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99014400000, + 42.77546100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "1", + "ref:EU:EVSE": "FRIKAPIKEA13891;FRIKAPIKEA13881;FRIKAPIKEA13871;FRIKAPIKEA13851;FRIKAPIKEA138121;FRIKAPIKEA13811;FRIKAPIKEA138101;FRIKAPIKEA138111;FRIKAPIKEA13821;FRIKAPIKEA13831;FRIKAPIKEA13841;FRIKAPIKEA13861", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "IKEA VITROLLES - PARKING CLIENTS", + "ref": "FR*SOD*S*IKEA*138*9*_*_;FR*SOD*S*IKEA*138*8*_*_;FR*SOD*S*IKEA*138*6*_*_;FR*SOD*S*IKEA*138*5*_*_;FR*SOD*S*IKEA*138*3*_*_;FR*SOD*S*IKEA*138*2*_*_;FR*SOD*S*IKEA*138*10*_*_;FR*SOD*S*IKEA*138*1*_*_;FR*SOD*S*IKEA*138*11*_*_;FR*SOD*S*IKEA*138*12*_*_;FR*SOD*S*IKEA*138*4*_*_;FR*SOD*S*IKEA*138*7*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26770300000, + 43.42913300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "description": "PLELAN LE GRAND - 2 rue des korrigans ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35223001B1", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08934500000, + 48.00603500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "ref": "518243", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "ref:EU:EVSE": "FRS63P63038B", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG 63/FR*S63*P63038*B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93248000000, + 45.51014600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ASYZQT6BCE", + "capacity": "2", + "amenity": "charging_station", + "ref": "742920", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6636933226456547475" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42238100000, + 45.39339200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-01", + "ref": "46567;TSMEXT", + "ref:EU:EVSE": "FRS31PTSMEXT", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/TSMEXT;Bessières", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60842000000, + 43.80040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DRANCY - Rue Sadi Carnot", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-18", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93029006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44046041864, + 48.92577012860 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-20", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000903;FRCG0E000902;FRCG0E000901", + "ref": "FRCG0E000903;FRCG0E000902;FRCG0E000901", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "SVEG - 56890 - 2", + "network": "SVEG - 56890 - 2", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73248647000, + 47.67609470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-22", + "ref:EU:EVSE": "FRM06PNICE21811;FRM06PNICE21812", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING ASSALIT", + "ref": "FR*SOD*S*NICE*218*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26868557868, + 43.70652318002 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "3f40bdf1-a003-537b-aa28-420a996ae9ea", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Lauzun | Avenue de Schlierbach" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45961100000, + 44.63051600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE35611;FRSIGPSIGE35612;FRSIGPSIGE35711;FRSIGPSIGE35712", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE - FRANCONVILLE;SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE 2 - FRANCONVILLE", + "ref": "FR*SOD*S*SIGE*357*1*_*_;FR*SOD*S*SIGE*356*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23380000000, + 48.99400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-24", + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76165003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CAUDEBEC LES ELBEUF - Rue des champs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02458700000, + 49.27782400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2814EVCP01", + "description": "HEGENHEIM", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2814EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53469000000, + 47.55835000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "aa701d39-8c86-561f-897b-e430482157d5", + "description": "MOBIVE | La Courtine | Place du Monument", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25758600000, + 45.70540700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/PMVNFH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "38980", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PPMVNFH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08389000000, + 43.93140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "MONTFAVET PAROISSIENS - AVIGNON", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2021-08-13", + "ref:EU:EVSE": "FR55CP84140AVGPAR01SS1ENS", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87124500000, + 43.93499800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GUIDEL - Chemins", + "ref": "LFR3819EVCP05;LFR3819EVCP04;LFR3819EVCP01;LFR3819EVCP02;LFR3819EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3819EVCP05;LFR3819EVCP04;LFR3819EVCP01;LFR3819EVCP02;LFR3819EVCP03", + "capacity": "10", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.47698300000, + 47.79985100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PITMGRT", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "start_date": "2023-02-02;2022-12-19", + "capacity": "9", + "description": "Intermarché Super - Gratentour", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41864300000, + 43.71417900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPOAUEVKIP5N", + "operator:email": "roaming@freshmile.com", + "ref": "96101", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/OAUEVKIP5N" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44996300000, + 45.48772300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-Totem - BIARRITZ AV. du Jaizquibel", + "operator": "E-TOTEM", + "capacity": "7", + "ref": "FRETIP64122K", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP64122K", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55202453931, + 43.46642225820 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Centre Commercial De L'Arche - La Fouillouse", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCCALFL", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-03-18;2023-03-17", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34490900000, + 45.48340320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Beaurepaire", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT382701", + "start_date": "2023-11-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04842900000, + 45.34109600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Écully - BYD & Quick", + "operator:email": "help@electra.com", + "start_date": "2022-05-10", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPECUSM", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78311100000, + 45.78565100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-01-20", + "network": "CAMPING DEVILLAIRS", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "CAMPING DOMAINE DE KERZERHO - ERDEVEN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR55311;FROTHPOTHR55312", + "ref": "FR*SOD*S*OTHR*553*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.14775500000, + 47.63366400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6744725", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6744725", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CCF TOULOUSE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "description": "SONEPAR CCF TOULOUSE", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47470200000, + 43.64007900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446522", + "ref:EU:EVSE": "FRFR1P5108601823445644175", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/F4V8VL9UIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62519000000, + 48.57790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "CRAS-SUR-REYSSOUZE - Place Du Marché", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRV20E01130001", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16570200000, + 46.30766000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/BIJ5VAY56V", + "operator:email": "roaming@freshmile.com", + "ref": "487191", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2056285110521953366" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94162000000, + 45.76063000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "description": "Tesla Supercharger Vélizy 2, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP9507", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22094500000, + 48.78407800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/GJTASUUHDC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6316714827126507450", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "674219" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13593700000, + 45.76525900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "description": "CLUB MED", + "capacity": "20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "network": "CLUB MED", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89727300000, + 45.45923300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "467508", + "ref:EU:EVSE": "FRS14P3792130257954815864", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/TTTLWP8ERC", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40512100000, + 49.02367800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12167001", + "start_date": "2022-02-16", + "description": "NAJAC - Place Du Sol Del Barry - D39", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98401100000, + 44.22101100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWATLMOTDFQ9E", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA4P4371383304375919609", + "operator": "WAAT SAS | FR*WA4", + "ref": "789195", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14769400000, + 48.37831200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-17;2021-04-20", + "charging_station:output": "22 kW", + "description": "OREE-D'ANJOU - Rue du Maroni;OuestCharge - Diva Sp - Oree-d Anjou - Maroni", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49296001;FRS49P49296A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18857700000, + 47.28782600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8106900121;FRS81E8106900112;FRS81E8106900111;FRS81E8106900122", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2017-02-27", + "capacity": "1", + "description": "CORDES SUR CIEL - Avenue Du 8 Mai 1945", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95997750205, + 44.06129210734 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ETAPLES-SUR-MER - Place de la gare", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-07-04", + "ref:EU:EVSE": "FRHDFE62318001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64165258089, + 50.51679288747 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Geneston - Madeleine;GENESTON - Place De La Madeleine", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-27;2024-04-16", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44223A;FRS44E44223001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51371200000, + 47.05524600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63439B", + "ref": "518456", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63439*B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33631500000, + 45.52655000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARLY - Angle rue Barbara et Chemin Latéral", + "ref:EU:EVSE": "FRH03E59383002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53596500000, + 50.34729400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plouegat Guerand-Place du Bourg", + "ref:EU:EVSE": "FRS29E2918200", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.67544900000, + 48.62149800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94038010", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "L'HAY LES ROSES - Avenue du Général Leclerc", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2023-04-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33529969822, + 48.77332211107 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-11-08", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Nantes Ouest", + "ref:EU:EVSE": "FRLMSP90001900", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63535500000, + 47.22724100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Champagnac de Belair | Parking Avenue Charles Serre", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "73fd3cb4-d9c1-59bb-998d-6247d5dd2ee2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69803700000, + 45.39222300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 10 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2021-02-23", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4612;FRSIGPSIGE4611", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*46*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23722300000, + 48.84473900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Allego Carrefour Le Cres", + "amenity": "charging_station", + "network": "Allego Carrefour Le Cres", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "ref:EU:EVSE": "FRALLEGO9009402;FRALLEGO9009401;FRALLEGO9006772;FRALLEGO9005611;FRALLEGO9005612;FRALLEGO9006771;FRALLEGO9009391;FRALLEGO9009392", + "ref": "FRALLEGO9009402;FRALLEGO9009401;FRALLEGO9006772;FRALLEGO9005611;FRALLEGO9005612;FRALLEGO9006771;FRALLEGO9009391;FRALLEGO9009392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94055276000, + 43.64142360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PORTES LES VALENCE - Tassigny", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3895EVCP02;LFR3895EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3895EVCP02;LFR3895EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87773900000, + 44.88575300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "eb81bdb0-b75f-58ab-8bbd-9255782c4a19", + "description": "MOBIVE | Bayonne | Place des Gascons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45506200000, + 43.49933200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BAZOGES-EN-PAREDS - Rue Georges Clémenceau", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85014001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91576000000, + 46.65713900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "ref:EU:EVSE": "FRSITE00000200", + "operator:email": "info.allego.france@allego.eu", + "description": "TIKEAU Perigueux", + "start_date": "2024-05-06", + "charging_station:output": "22 kW;150 kW;300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66174550000, + 45.19466660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "ref": "LFR3875EVCP04;LFR3875EVCP02;LFR3875EVCP01;LFR3875EVCP05;LFR3875EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3875EVCP04;LFR3875EVCP02;LFR3875EVCP01;LFR3875EVCP05;LFR3875EVCP03", + "capacity": "10", + "description": "SALAISE SUR SANNE N7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80345600000, + 45.34808100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-07", + "description": "KFC - Roanne Mably", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PKFCMBL", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05614253175, + 46.06628733646 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNPWYCEFWFH1H", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-21", + "ref": "WYCEFWFH1H", + "description": "Le Luc, Parking Combaluzier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31308669000, + 43.39244429000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "Non concerné", + "operator": "PLAGECO DISTRIBUTION", + "amenity": "charging_station", + "start_date": "2021-02-11", + "capacity": "1", + "operator:email": "sylvie.at@scaso.fr", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "charging_station:output": "22 kW", + "network": "Leclerc Express Labouheyre", + "owner:ref:FR:SIREN": "394121545", + "ref:EU:EVSE": "FREVBP1936003", + "description": "Leclerc Express Labouheyre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92638800000, + 44.20274000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-02-01;2024-02-02;2024-02-17;2024-01-31", + "description": "E.Leclerc - Espace Perpignan Sud", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PELCPPN", + "opening_hours": "24/7", + "capacity": "22", + "charging_station:output": "50 kW;187.5 kW;22 kW", + "socket:type2_combo:output": "50 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88346709626, + 42.68727433582 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "ref:EU:EVSE": "FRE000014786885", + "operator:email": "contact@indigo-proprete.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "382547677", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Indigo Propreté", + "network": "INDIGO PROPRETE", + "description": "INIGO PROPRETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26308104576, + 45.63375398175 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEMOB Sablière", + "operator": "E-TOTEM", + "ref": "FRESEPS42218BM", + "start_date": "2022-03-18", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218BM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38351000000, + 45.43067000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "description": "LEVAPARC - PARKING SO OUEST - CANTON 34", + "ref:EU:EVSE": "FROTHPLVPR492;FROTHPLVPR481;FROTHPLVPR472;FROTHPLVPR471;FROTHPLVPR462;FROTHPLVPR452;FROTHPLVPR451;FROTHPLVPR442;FROTHPLVPR441;FROTHPLVPR431;FROTHPLVPR422;FROTHPLVPR421;FROTHPLVPR411;FROTHPLVPR461;FROTHPLVPR482;FROTHPLVPR491", + "network": "LEVAPARC", + "owner:ref:FR:SIREN": "353347222", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LVPR*4*9*_*_;FR*SOD*S*LVPR*4*8*_*_;FR*SOD*S*LVPR*4*7*_*_;FR*SOD*S*LVPR*4*5*_*_;FR*SOD*S*LVPR*4*1*_*_;FR*SOD*S*LVPR*4*2*_*_;FR*SOD*S*LVPR*4*3*_*_;FR*SOD*S*LVPR*4*4*_*_;FR*SOD*S*LVPR*4*6*_*_", + "start_date": "2018-01-15;2018-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29743400000, + 48.89309700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6903015", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-19:00,Tu 07:00-19:00,We 07:00-19:00,Th 07:00-19:00,Fr 07:00-19:00", + "charging_station:output": "22 kW", + "start_date": "2024-04-11", + "operator:email": "info@chargepoint.com", + "description": "BORNE TECHNIQUE STATION 1", + "ref:EU:EVSE": "FRCPIE6903015", + "network": "BORNE TECHNIQUE STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34949900000, + 50.44153700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "102323", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TNSVNN", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PTNSVNN", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95344000000, + 49.15740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Hôtel Campanile Reims-Est", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-03-08", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121049" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07318200000, + 49.21763400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3759083631656394578", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKMP8JVT6GRWD", + "ref": "892566" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00979300000, + 46.35199300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPEVERLINEVOLVO250001", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo -Besançon", + "start_date": "2022-07-26", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-17:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95366800000, + 47.21570400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3120192849826531783", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971870", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMRJRCRH1MNDZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81710000000, + 50.91200100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E112821;FRS18E112822", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - ORCENAIS - Rte. de Marçais", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - ORCENAIS - Rte. de Marçais", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E112821;FRS18E112822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41992000000, + 46.71490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/PEMGBREIMZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "699092", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1111320194514822539" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28876800000, + 49.13478000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA6L6B6O8VFG", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128021", + "ref:EU:EVSE": "FRWA9P1918090282902585673", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97196300000, + 43.61525300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50250002", + "opening_hours": "24/7", + "description": "LA HAYE - Champ de foire", + "charging_station:output": "22 kW", + "network": "e-charge50", + "start_date": "2016-10-28", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54354400000, + 49.29329100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PAULINET - Rue Guillaume de Paulin", + "start_date": "2023-03-30", + "ref:EU:EVSE": "FRS81E81203001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43105000000, + 43.84891500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS BAUMETTES A", + "amenity": "charging_station", + "ref": "FRHPCPNF059977", + "capacity": "4", + "ref:EU:EVSE": "FRHPCPNF059977", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "531681698;531681697;531681696;531681699", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-03-06", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57310000000, + 47.45770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "SOULAINES-SUR-AUBANCE - Parking Salle Cortequisse;OuestCharge - Diva Sp - Soulaines-sur-Aubance - Cortequisse", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49338001;FRS49E0490182;FRS49P49338A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-23;2024-04-29;2024-04-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52488100000, + 47.36428900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOLESMES - Parking Barbari - Rue de Selle", + "start_date": "2023-05-11", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS59E59571002", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49656760000, + 50.18360600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARRAS - Place Verlaine", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH06E62041011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74661400000, + 50.30175400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30007006", + "description": "ALES - Parc De La Tour Vieille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07988200000, + 44.11205100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P7368601239191174677", + "ref": "24757", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/WMRUPK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95061100000, + 47.70414500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "CHAUNAY QC50-1", + "amenity": "charging_station", + "start_date": "2023-02-23", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "B156", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346052751;FRLMSE12346052752", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16332700000, + 46.20657000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93049D", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Metropolis - Proximité - Neuilly-Plaisance - Stalingrad", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902000, + 48.87290298000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "network": "AlterBase", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79329P0077A", + "description": "Réseau AlterBase - Thouars - Centre commercial Super U - QC", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "start_date": "2019-01-15", + "charging_station:output": "50 kW;43 kW", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19795410000, + 46.98136900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATL*COUL1201", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "782652", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP4903106638453093394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08907100000, + 48.80272200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "description": "Howdens Rennes", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000116303", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72892300000, + 48.10446500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Auvent | Allée du Château", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "d08b42f7-6e9b-56dc-adbc-76e82daf9daa", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92782300000, + 45.80973000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E159237;FRS88E159235", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - EPINAL - Rue Philippe Séguin", + "ref:EU:EVSE": "FRS88E159237;FRS88E159235", + "network": "MODULO - EPINAL - Rue Philippe Séguin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46639600000, + 48.19388000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "10", + "network": "Allego Carrefour Soyaux", + "ref": "FRALLEGO9008992;FRALLEGO9000812;FRALLEGO9000811;FRALLEGO9001111;FRALLEGO9001112;FRALLEGO9008991;FRALLEGO9009071;FRALLEGO9009072;FRALLEGO9009341;FRALLEGO9009342", + "description": "Allego Carrefour Soyaux", + "ref:EU:EVSE": "FRALLEGO9008992;FRALLEGO9000812;FRALLEGO9000811;FRALLEGO9001111;FRALLEGO9001112;FRALLEGO9008991;FRALLEGO9009071;FRALLEGO9009072;FRALLEGO9009341;FRALLEGO9009342" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21057100000, + 45.63633700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3640EVCP02;LFR3640EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "DOUAI Boulevard de la Republique", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3640EVCP02;LFR3640EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07993400000, + 50.37861400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Marseille-12E, 365 Avenue de Montolivet", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PPTTDTJW2TK", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42204000000, + 43.31842100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "TJPZS8BPH4", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTJPZS8BPH4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-21", + "description": "Montbrison, Boulevard Lachèze" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06505750000, + 45.60489804000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/TPWWYVYVMM", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8055021296048215939", + "ref": "682256", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59440400000, + 43.55145800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PIBSSTE", + "start_date": "2023-03-14", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Ibis Budget - Saint Etienne Stade", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40132150000, + 45.45574750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref:EU:EVSE": "FREBNPHFWNFZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "HFWNFZ;75242", + "description": "Annecy Meythet, Parking Fruitières;Réseau eborn/HFWNFZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09100000000, + 45.92080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP38455A", + "description": "e-Totem - INTERMARCHE SAINT SAVIN", + "amenity": "charging_station", + "ref": "FRETIP38455A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85992242659, + 46.56683372302 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR24011;FROTHPOTHR24012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*240*1*_*_", + "description": "PAYS RHENAN - PISCINE DE DRUSENHEIM 001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.96341200000, + 48.76063200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "BIOPATH HDF WAZEMMES 1", + "amenity": "charging_station", + "description": "BIOPATH HDF WAZEMMES 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6599885", + "ref": "FRCPIE6599885", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05093100000, + 50.62811900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GID8GC3XH5", + "ref:EU:EVSE": "FRFR1P3604192524829187051", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "ref": "529238", + "charging_station:output": "24 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84780700000, + 43.93576800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "346448", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P6149077666991798385", + "capacity": "12", + "opening_hours": "24/7", + "description": "WAAT/s421366", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35441900000, + 48.74623300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "213020", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/AGLFNH", + "ref:EU:EVSE": "FRFR1PAGLFNH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49336000000, + 49.54740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 2X22 GOUPIL VENISSIEUX", + "ref": "1000147480", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSWSE1000147480", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86506600000, + 45.71712200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Freshmile France/JFVT9N4ES5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Th,Fr,Tu,We,Mo 08:30-19:00,Sa 08:30-18:00", + "ref:EU:EVSE": "FRFR1P7716823260663794085", + "charging_station:output": "7.4 kW;22 kW", + "ref": "626114", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122100000, + 49.20863600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "description": "Loc+ - Avignon", + "opening_hours": "Mo 07:00-18:00, Tu 07:00-18:00, We 07:00-18:00, Th 07:00-18:00, Fr 07:00-18:00", + "amenity": "charging_station", + "start_date": "2023-09-01", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPLOC840001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85121200000, + 43.93612600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS28E203809;FRS28E203810", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - EPERNON - Rue du Général Leclerc", + "description": "MODULO - EPERNON - Rue du Général Leclerc", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E203809;FRS28E203810" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67467700000, + 48.61002700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "ESPACE AUTO COURNON", + "ref": "01FEJX4YZEHDSET14TRKNSJJ2C", + "owner:ref:FR:SIREN": "490391620", + "amenity": "charging_station", + "operator:email": "espaceautocournon@orange.fr", + "ref:EU:EVSE": "Non concerné", + "start_date": "2021-09-06", + "network": "ESPACE AUTO COURNON", + "charging_station:output": "11 kW", + "operator": "ESPACE AUTO COURNON", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19000000000, + 45.73000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/IXWB4EBYDV", + "ref": "529949", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P813167217797519521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937200000, + 48.28691300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P2681939285099576596;FRZP1P7354116996948849498", + "capacity": "1", + "ref": "575948;575939", + "description": "Zephyre/LE0053CA;Zephyre/LE004E94", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88293700000, + 49.19146100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE566", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Sorofi_Montelimar", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73554730000, + 44.53827470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PMNENFV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/MNENFV", + "opening_hours": "24/7", + "ref": "34018", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81618000000, + 44.11030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST12013;FRIZFPFAST12012;FRIZFPFAST12011", + "description": "IZIVIA FAST - MCDONALDS - SAINT JEAN DE VEDAS", + "ref": "FR*SOD*S*FAST*120*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83862112358, + 43.56947007020 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - OUCQUES - Pl. du Château", + "ref:EU:EVSE": "FRS41E4072;FRS41E4071", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - OUCQUES - Pl. du Château", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4072;FRS41E4071", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29412000000, + 47.82207700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "896709", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/LLLDNZNG8G7P62", + "ref:EU:EVSE": "FRS60P5520463338212792925" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07532700000, + 49.23771100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*4*1*_*_;FR*SOD*S*LYON*4*2*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "CHY01 - PARKING MALPAS", + "ref:EU:EVSE": "FRGLYPLYON421;FRGLYPLYON411;FRGLYPLYON412;FRGLYPLYON422", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79538100000, + 45.65211400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT ANDRE DE VALBORGNE - Rd907", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30231001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68531400000, + 44.15523200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PNWTLJV", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-10-07", + "description": "Guilliers - Place Glaharon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40389400000, + 48.04344100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "ref:EU:EVSE": "FRLUMEATRIUMGOLBEY11", + "charging_station:output": "12 kW", + "description": "Hôtel Atrium", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "aad5992e-ec2a-488b-95f6-47523dc8ed89" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44000000000, + 48.21000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMW1P4029503369808789306", + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/d36373f8-fc1e-4046-b6b0-ccd76f611860", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "369562", + "capacity": "54", + "socket:type2_combo:output": "120 kW", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40328000000, + 43.58320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17111;FRSIGPSIGE17112", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*171*1*_*_", + "start_date": "2021-07-20", + "description": "SIGEIF - PARKING PLACE DES FETES - VAUJOURS", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56954900000, + 48.92995200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "network": "Berger Location Limoges - 87280 - 1", + "amenity": "charging_station", + "opening_hours": "Fr 14:00-18:00,Th 14:00-18:00,We 14:00-18:00,Tu 14:00-18:00,Sa 08:00-12:00,Fr 08:00-12:00,Th 08:00-12:00,We 08:00-12:00,Tu 08:00-12:00,Mo 14:00-18:00,Mo 08:00-12:00", + "start_date": "2024-07-22", + "capacity": "3", + "charging_station:output": "50 kW;22 kW", + "description": "Berger Location Limoges - 87280 - 1", + "ref:EU:EVSE": "FRCG0E001488;FRCG0E001489;FRCG0E001490", + "ref": "FRCG0E001488;FRCG0E001489;FRCG0E001490", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26528000000, + 45.86970900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;63 kW;22 kW", + "start_date": "2023-06-19", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89877631", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - A52 Baume de Marron", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57747700000, + 43.40094900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "7e8e084c-d5e2-5ed9-85a9-ed49b85742e4", + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "description": "MOBIVE | Benquet | Parking Ecole", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50120300000, + 43.82895700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEAUX - CSM Louis Braillle", + "ref:EU:EVSE": "FRSE1PSE77MXKA", + "start_date": "2023-06-14", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87351200000, + 48.96849700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSMTLMA", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-21", + "network": "Carrefour Energies", + "description": "MONTELIMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74832900000, + 44.53240500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;180 kW", + "socket:type2_combo:output": "50 kW;180 kW", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3073EVCP02;LFR3073EVCP01;LFR3073EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "description": "METZ Drapiers", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3073EVCP02;LFR3073EVCP01;LFR3073EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24728600000, + 49.11763400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "PEROLS - Rue Alfred Sauvy", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34129004", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93451300000, + 43.58249800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/vichy4;Vichy, Square Gal Leclerc", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPVICHY4", + "start_date": "2017-05-02", + "ref": "vichy4;231619" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41922000000, + 46.12250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/YE8TVC3QFK", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "ref": "466287", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7315808707867558001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72863200000, + 48.61987800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-12-13;2020-06-23", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "HYÈRES - Clemenceau", + "ref:EU:EVSE": "FRP07E83069001;FRP07E830690011;FRP07E830690012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13212000000, + 43.12086100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "O6NF58E9RW;454425", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP4478793280620182983;FREBNPO6NF58E9RW", + "start_date": "2021-07-23", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Toulon, Place du 4 septembre;Réseau eborn/O6NF58E9RW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95285600000, + 43.12303900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "5", + "owner:ref:FR:SIREN": "891624884", + "description": "Saintes - E.Leclerc", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSAILE", + "start_date": "2023-09-28", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67690600000, + 45.74656800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-17", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking le Havre Maréchal Joffre - EFFIA", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRP01E76351007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12805376734, + 49.50048861502 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "SUPER U ARNAGE ARNAGE 5 DC", + "opening_hours": "24/7", + "ref": "FRCPIE6631545;FRCPIE6631745", + "operator:email": "info@chargepoint.com", + "network": "SUPER U ARNAGE ARNAGE 5 DC", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6631545;FRCPIE6631745" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18337100000, + 47.93826400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHP1292556488804111498", + "ref": "896586", + "description": "Easy Charge/F1BZD36MJS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17241400000, + 49.00563000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX16*26", + "description": "Paris | Rue du Ranelagh 33", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1626", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27687720000, + 48.85381340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/UHPYPQ", + "ref:EU:EVSE": "FRFR1P4221100090951078736", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "454164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05301800000, + 48.73824800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "725721757", + "start_date": "2022-10-04", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP01166", + "capacity": "4", + "ref": "FRTCBP01166", + "description": "DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83975189833, + 47.02111450501 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8122333832770545960", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLZ879I6G1Q40I", + "ref": "1180131", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39872200000, + 48.25312000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPPANELBMW772101", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "BMW Mini - Fontainebleau", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-05-05", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76308900000, + 48.42486700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "ref:EU:EVSE": "FRS29E2911700", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Lannilis-Rue de la Fontaine", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52327200000, + 48.57039600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11088001", + "description": "Cazilhac - Parking Place Du 19 Mars 1962", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-05", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36627200000, + 43.18304400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC97456;FRZP1PEAC94579", + "capacity": "1", + "ref": "e0ed2ebe-dbfe-4233-bc9e-4b26265581ac", + "network": "Logis Central Hôtel", + "owner:ref:FR:SIREN": "407951946", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Central Hôtel - 22 kW AC;Central Hôtel - 7,4 kW AC", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49996482000, + 45.40095607000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57727;FRS08E57726", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - LES MAZURES - Centre des Congrès", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS08E57727;FRS08E57726", + "network": "MODULO - LES MAZURES - Centre des Congrès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59986590000, + 49.87341310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79459", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/QKKLGT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PQKKLGT", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97890000000, + 50.03890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST26611;FRIZFPFAST26612;FRIZFPFAST26613", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*266*1*_*_", + "network": "IZIVIA FAST", + "start_date": "2024-09-04", + "owner:ref:FR:SIREN": "951478437", + "description": "IZIVIA FAST - MCDONALDS - GIVET", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85158368491, + 50.13431185840 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44038001;FRS44P44038A", + "description": "CHAUVE - La Petite Routière;OuestCharge - Diva Sp - Chauve - Routiere", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-15;2024-06-05;2024-04-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98786500000, + 47.15043500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "CLAYE-SOUILLY - Parking La Poste - DC", + "start_date": "2024-06-18", + "ref:EU:EVSE": "FRS77E77118002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68746600000, + 48.94600053000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000056021", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CHÂTEAU GABY", + "network": "CHÂTEAU GABY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27906501726, + 44.93175044511 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - PARCAY SUR VIENNE - Rue du Prieure", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219958;FRS37E219959", + "ref": "FRS37E219958;FRS37E219959", + "network": "MODULO - PARCAY SUR VIENNE - Rue du Prieure" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47780600000, + 47.10344800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "ref": "640415c7-cc90-5537-8db4-72171548a62d", + "capacity": "2", + "description": "CCTLB - Chanteheux", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52949300000, + 48.59679400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P73135A", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "100 kW", + "description": "Intermarché Hermillon", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P73135A", + "start_date": "2024-07-04", + "operator:email": "contact@e-totem.fr", + "network": "Intermarché Hermillon", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35710821605, + 45.29114256822 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | SAINT-SEVER | Parking Route de Tartas", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "7581d2f9-b758-51c1-a3e2-de2597abfe07", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57052400000, + 43.77107200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*291*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE29112;FRSIGPSIGE29111", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 21 RUE HOUDART - ROISSY-EN-FRANCE", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51443900000, + 49.00374100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALPTIS 25CAT PLACE 35 36", + "ref": "FRCPIE6507275", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6507275", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "ALPTIS 25CAT PLACE 35 36" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86274734000, + 45.74865449000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P8056362728119077930", + "operator:email": "roaming@freshmile.com", + "ref": "735231", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/C0EV8XYVBH", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308500000, + 49.05785200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "40020701-7eb8-5d06-b336-37599e519b57", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Campsegret | Parking de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56341900000, + 44.93570700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSEOPAB31001A", + "network": "AlterBase", + "description": "Réseau AlterBase - Lageon - Aire de covoiturage", + "start_date": "2015-12-18", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23694974000, + 46.73014296000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "description": "Airbus ADS - Toulouse - Parking PKS2", + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS314004", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49913500000, + 43.56338500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MONTEREAU Enfer", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR1005EVCP01;LFR1005EVCP02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR1005EVCP01;LFR1005EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95122900000, + 48.39909400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P9044278142756144988", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/LXDKXFFZNL", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref": "414759" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01551000000, + 47.95631000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANNES - PARKING REINE ASTRID", + "ref:EU:EVSE": "FRA16PWIIZ14212;FRA16PWIIZ14211", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2022-07-28", + "ref": "FR*SOD*S*WIIZ*142*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03597000000, + 43.53970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/LLWT2RXLR1IX62", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7802600529559946041", + "operator": "Freshmile | FR*FR1", + "ref": "1090395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20940800000, + 45.90144700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "ref:EU:EVSE": "FRPD1PBBFBET", + "socket:type2_combo:output": "120 kW", + "description": "Boulangerie Ange - Bettancourt-la-Ferrée", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95916903922, + 48.64986337396 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint-Marcel-Lès-Valence, Le Village;Réseau eborn/HCVY8ZZGX8", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPHCVY8ZZGX8", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "HCVY8ZZGX8;31939" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95701500000, + 44.97280200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Les Ulis - Hôtel Mercure", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2022-07-12", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPULIHM", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19833900000, + 48.67884300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "16", + "charging_station:output": "7 kW", + "description": "NARBONNE - Les Halles", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E11262001;FRP07E112620011", + "start_date": "2024-02-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00559990000, + 43.18166270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "SONEPAR ST-VULBAS 2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6696765;FRCPIE6696695;FRCPIE6696685;FRCPIE6696705", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6696765;FRCPIE6696695;FRCPIE6696685;FRCPIE6696705", + "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", + "network": "SONEPAR ST-VULBAS 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28436400000, + 45.85693900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRECHP4676827140968144203", + "description": "Easy Charge/FSWAKMUXFE", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "756849", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39366300000, + 47.28589100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP103101", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW;62.5 kW", + "description": "ENGIE Vianeo - A6 Les Chères Est", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72961200000, + 45.90311900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/PTGFUYTSHN", + "ref:EU:EVSE": "FRFR1P5718715008759983248", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "466155", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81625800000, + 45.54545100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0712", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | place du Président Mithouard 6", + "ref": "FR*V75*PPX07*12", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31291610000, + 48.85128270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/OBVHYS3K6X", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2297640247526351977", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "471138", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89541800000, + 49.36933700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Toyota Lexus - Aubière", + "capacity": "8", + "network": "DRIVECO", + "start_date": "2021-05-04", + "amenity": "charging_station", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO", + "opening_hours": "Mo 09:00-19:00, Tu 09:00-19:00, We 09:00-19:00, Th 09:00-19:00, Fr 09:00-19:00, Sa 09:00-19:00", + "ref:EU:EVSE": "FRSSDPMAURINTOYOTA631701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13968600000, + 45.75135600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "ref": "294500", + "opening_hours": "24/7", + "description": "SYDED/Morteaugare", + "ref:EU:EVSE": "FRS25PMORTEAUGARE", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60546000000, + 47.05850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E186205;FRS18E186206", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS18E186205;FRS18E186206", + "network": "MODULO - ALLOGNY - Rue de l'abreuvoir", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - ALLOGNY - Rue de l'abreuvoir", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31845780000, + 47.22576477000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1c8d2166-70d1-11ef-b864-0242ac120002", + "operator:email": "contact@e-motum.net", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "sas e-motum", + "start_date": "2024-09-11", + "opening_hours": "24/7", + "network": "e-motum", + "charging_station:output": "22 kW", + "description": "Garage du XIV", + "owner:ref:FR:SIREN": "752982645" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32362000000, + 48.82469000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "PICOTY/3f583109-a2d1-40d8-9232-8bb7dbc930b0", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPY1P7932776962029221925", + "charging_station:output": "50 kW;44 kW", + "network": "PICOTY", + "operator": "Mobilygreen | FR*PY1", + "ref": "1007349" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85086000000, + 44.35887100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ASSAC - Parking Salles Des Fêtes", + "ref:EU:EVSE": "FRS81E8101900121;FRS81E8101900111", + "start_date": "2024-07-24", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43947200000, + 43.97502900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIONE402200", + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Longué la Couaille", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE402200", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2019-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50181100000, + 47.30968000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "SAINT-BREVIN-LES-PINS - Boulevard De L'Océan;OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Ocean", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-15;2024-04-15", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44154C;FRS44E44154003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17505800000, + 47.22830500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77361A;FRS77E77361001", + "ref": "01F5ZAKH6106VFGF12QKK3NDS9", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "PIERRE-LEVEE - Rue De Verdun;Pierre-Levée", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-13;2016-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04081600000, + 48.89972300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "THÉROUANNE - Route de Clarques", + "ref:EU:EVSE": "FRH01E62811001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26029000000, + 50.63860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E5513;FRS37E5512", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - NOUZILLY - Rue du Prieure", + "opening_hours": "24/7", + "network": "MODULO - NOUZILLY - Rue du Prieure", + "ref": "FRS37E5513;FRS37E5512", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74477100000, + 47.54501200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Lorient - Place Anatole Le Braz", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PWUMDJK", + "start_date": "2016-10-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36004300000, + 47.74903900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "SGL02 - AVENUE ERNEST AUBOYER", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*16*2*_*_;FR*SOD*S*LYON*16*1*_*_", + "start_date": "2020-02-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON1612;FRGLYPLYON1611;FRGLYPLYON1621;FRGLYPLYON1622", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80393900000, + 45.69209300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*MEL*P59780*02", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5978002", + "network": "MEL", + "description": "WILLEMS - Square Eugène Thomas", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24023600000, + 50.63196900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2019-12-16;2023-01-16", + "description": "OPEL/Fiat - Dell' Motors - Valenciennes", + "capacity": "10", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPEURAUTOOPEL598801", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55273000000, + 50.38380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6588995", + "network": "SONEPAR CONNECT LIMOGES", + "charging_station:output": "22 kW", + "description": "SONEPAR CONNECT LIMOGES", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6588995", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28857900000, + 45.88831100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "892680", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P8390318348063632301", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Leclerc/IKYUTHP1BE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25487400000, + 48.76418700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Lege | Cap-Ferret | Avenue du Monument Saliens (Parking | Cap-Ferret)", + "amenity": "charging_station", + "ref": "60499ebc-0807-5d36-940d-95f845743988", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24585800000, + 44.65079900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "CHAMPAGNE SUR OISE - Place Verdun", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-06-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95134001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24065800000, + 49.13702900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO8000642;FRALLEGO8000641;FRALLEGO8000532;FRALLEGO8000531;FRALLEGO0020882;FRALLEGO0020841;FRALLEGO0020842;FRALLEGO0020881;FRALLEGO8000461;FRALLEGO8000462", + "amenity": "charging_station", + "network": "Allego Tisseo Balma Gramont", + "description": "Allego Tisseo Balma Gramont", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO8000642;FRALLEGO8000641;FRALLEGO8000532;FRALLEGO8000531;FRALLEGO0020882;FRALLEGO0020841;FRALLEGO0020842;FRALLEGO0020881;FRALLEGO8000461;FRALLEGO8000462", + "operator:email": "info@allego.eu", + "capacity": "10", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48249700000, + 43.62825800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3424EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3424EVCP01", + "charging_station:output": "22 kW", + "description": "LE GRAND LEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42227000000, + 45.39341900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PU6R2I3MI6S", + "capacity": "4", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW", + "description": "Marseille, Parking Technoptic" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43138500000, + 43.34440200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "488859", + "description": "SDEY/HKSZNBMAIQ", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FRS89P7083438889852883910" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73200000000, + 47.66077500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*277*1*_*_;FR*SOD*S*WIIZ*277*2*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ27722;FRA16PWIIZ27721;FRA16PWIIZ27711;FRA16PWIIZ27712", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-05-03", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "LA ROQUETTE SUR SIAGNE - PARKING ESPACE CULTUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94004830000, + 43.58658950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4193849429083549825", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "782490", + "network": "Freshmile France", + "description": "Freshmile France/HUXQMH", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88729000000, + 48.67530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Mr. Bricolage - Moncel-lès-Lunéville", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-06-04", + "ref:EU:EVSE": "FRPD1PMRBMON", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51910439596, + 48.58046843577 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "749421;DR8DDD8O45", + "description": "Parking des Tennis, Besse Sur Issole;Réseau eborn/DR8DDD8O45", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPDR8DDD8O45;FREBNP5075780477966150318" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17595200000, + 43.34850800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "ref": "1050996", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FREVZP3613576356122163593", + "operator:email": "support@evzen.com", + "description": "EVzen/F53E63A7-AD02-402A-81CB-DBE50C821A17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19663700000, + 46.10554900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - SAINT GELY DU FESC", + "ref": "FR*SOD*S*OTHR*599*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR59913;FROTHPOTHR59911;FROTHPOTHR59912", + "amenity": "charging_station", + "charging_station:output": "100 kW", + "capacity": "3", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "start_date": "2023-04-19", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81965100000, + 43.67656900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "94460;NPPCXP", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPNPPCXP", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-06-12", + "capacity": "2;3", + "description": "Réseau eborn/NPPCXP;Argonay, Rue Des Contamines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15570000000, + 45.94510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3598193135524615731;FREBNPOMXZZQL6TV", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/OMXZZQL6TV;Romans-Sur-Isere, Place Jules Nadi ", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-09-27", + "ref": "OMXZZQL6TV;741105" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05254900000, + 45.04402600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2023-09-12", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Hôtel Campanile Cholet", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121039" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87093300000, + 47.04971700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/SI6AYMQRSF", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "529613", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4288821641261008706" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07897200000, + 43.63446000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1405", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX14*05", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Boulard 1", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32978310000, + 48.83485490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8281453820186379722", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/EPVLVLOVWF", + "ref": "597795", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88945300000, + 42.61074800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW;24 kW", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-20:00, Tu 08:30-20:00, We 08:30-20:00, Th 08:30-20:00, Fr 08:30-20:00, Sa 08:30-20:00, Su 08:30-20:00", + "description": "La Réserve (Camping Siblu) - Gastes", + "ref:EU:EVSE": "FRSSDPSIBLU40160", + "start_date": "2022-03-23", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16907500000, + 44.31460500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900043", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PLIEUREYECOLE", + "opening_hours": "24/7", + "network": "SIEGE27", + "start_date": "2016-07-08", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49855000000, + 49.23069200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22040001", + "description": "Coadout-Place de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18730000000, + 48.51783400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY05E78092003", + "description": "BOUGIVAL - Rue Yvan Tourgueneff" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14521300000, + 48.86773100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-10-21", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Kiloutou_Beauvain", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE161" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11687600000, + 49.43033100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWATLNJEGCXGA", + "ref": "1085115", + "ref:EU:EVSE": "FRWATP2121736492279445683", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25205400000, + 48.88068900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Poitou-Charentes", + "ref": "FRIOYE124853;FRIOYE124852;FRIOYE124804;FRIOYE124803;FRIOYE124802;FRIOYE124801;FRIOYE124851", + "description": "Poitou-Charentes", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2021-12-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE124853;FRIOYE124852;FRIOYE124804;FRIOYE124803;FRIOYE124802;FRIOYE124801;FRIOYE124851", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37847590000, + 46.29628490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-12-19", + "description": "MODULO - BEZANNES -2 - Pkg. Louis Victor de Broglie", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - BEZANNES -2 - Pkg. Louis Victor de Broglie", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E49689;FRS51E49688", + "ref": "FRS51E49689;FRS51E49688" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99611200000, + 49.21854400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65258001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-06-30", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "LANNEMEZAN - golf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41333100000, + 43.11173600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE000801;FRIENE000802", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE000801;FRIENE000802", + "description": "Noyal-Pontivy", + "network": "Noyal-Pontivy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85530500000, + 48.06850400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34189001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "OLONZAC - Route d'Homps - Parking Gymnase", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73015550000, + 43.28015830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "368995", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/PREPCWAOME", + "network": "Mobilité électrique 56", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRS56P6412019077964321500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85221900000, + 47.60101700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/BZR3NP5DYR", + "ref:EU:EVSE": "FRFR1P213678195679249103", + "opening_hours": "24/7", + "ref": "471018", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06361300000, + 43.93415800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30344002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VERGEZE - Rue Charron", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22357100000, + 43.74216100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-09-07", + "capacity": "5", + "ref:EU:EVSE": "FRSSDPGRENARDFORD250001", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-17:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Ford - Besançon", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95338700000, + 47.21651700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRC2P007801", + "owner:ref:FR:SIREN": "530386721", + "ref:EU:EVSE": "FRC2P007801", + "network": "LES CABANES DANS LES BOIS", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "description": "LES CABANES DANS LES BOIS", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40926926534, + 43.24851462123 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "4568bb01-f18a-4013-93b0-aa196cb6e8b2", + "ref:EU:EVSE": "FRLUMELIBERATION11", + "operator": "LUMI'IN", + "start_date": "2022-07-06", + "description": "GARAGE LAROSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90000000000, + 44.12000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Pompignac | Av de la Mairie", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "ref": "8b91581b-66ae-56d8-84f5-b5de6ac39e46", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43885300000, + 44.85042000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-01", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE39LABA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MAGELLAN 2006 - LONS LE SAUNIER", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57595000000, + 46.68267500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP7740583311777320657", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "ref": "585578", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "description": "BornEco/63208b4f5b86b978c9c55057" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30337700000, + 43.14917400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "charging_station:output": "50 kW", + "description": "Leclerc/WPHL8KYUMW", + "opening_hours": "24/7", + "ref": "471255", + "ref:EU:EVSE": "FRLE2P2992335559217112788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059100000, + 46.33838700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Salon-de-Provence, Rue André Marie Ampère", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PWXW2IZZV6L", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10792700000, + 43.63922200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "402632", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P1340032921024095972", + "description": "SDEY/U1NNX3EPG6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26496800000, + 48.25799400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-02-24", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FR3R3P89363742", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "R3 - Norauto Caudry", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42617300000, + 50.12927600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "559823", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/WFJRFUKQ6R", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6114720122848189561" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556000000, + 43.64235000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-15;2023-05-16", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PSYUIST", + "capacity": "10", + "charging_station:output": "100 kW;187.5 kW;22 kW", + "description": "Super U - Ille-sur-Têt", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63461234110, + 42.67566601402 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/F8KFZXGKDI;La Motte Servolex, Borne parking SDES, 1 rue de la petite eau", + "start_date": "2024-03-01", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "F8KFZXGKDI;441126", + "capacity": "2;4", + "ref:EU:EVSE": "FREBNPF8KFZXGKDI;FREBNP7210291179860943986" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88728500000, + 45.59287400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/8135fed3-9d4c-4950-befa-d08896ca4eb1", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP1882518763496258563", + "charging_station:output": "22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref": "1075332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28898600000, + 48.17243600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-18", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR81021;FROTHPOTHR81012;FROTHPOTHR81011;FROTHPOTHR81022", + "ref": "FR*SOD*S*OTHR*810*2*_*_;FR*SOD*S*OTHR*810*1*_*_", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "description": "INTERMARCHE - CHANAS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80908074465, + 45.32487873736 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "NKBQJ8XDAJ", + "ref:EU:EVSE": "FREBNPNKBQJ8XDAJ", + "capacity": "2", + "description": "Château-Bernard, Parking de l'Eglise", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57614180000, + 44.97511990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/BR5VEJ4LUC;Huez, L'éclose", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "529910;BR5VEJ4LUC", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-06-15", + "ref:EU:EVSE": "FREBNP6744631304893273697;FREBNPBR5VEJ4LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06886000000, + 45.08731000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-31", + "description": "VILLAGE CAP ESTEREL - SAINT-RAPHAEL", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR40692;FROTHPOTHR40691;FROTHPOTHR40681;FROTHPOTHR40672;FROTHPOTHR40662;FROTHPOTHR40651;FROTHPOTHR40641;FROTHPOTHR40632;FROTHPOTHR40622;FROTHPOTHR40611;FROTHPOTHR406101;FROTHPOTHR406102;FROTHPOTHR40612;FROTHPOTHR40621;FROTHPOTHR40631;FROTHPOTHR40642;FROTHPOTHR40652;FROTHPOTHR40661;FROTHPOTHR40671;FROTHPOTHR40682", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref": "FR*SOD*S*OTHR*406*7*_*_;FR*SOD*S*OTHR*406*6*_*_;FR*SOD*S*OTHR*406*4*_*_;FR*SOD*S*OTHR*406*3*_*_;FR*SOD*S*OTHR*406*10*_*_;FR*SOD*S*OTHR*406*1*_*_;FR*SOD*S*OTHR*406*2*_*_;FR*SOD*S*OTHR*406*5*_*_;FR*SOD*S*OTHR*406*8*_*_;FR*SOD*S*OTHR*406*9*_*_", + "operator:email": "sav@izivia.com", + "network": "ASCAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85048800000, + 43.42838100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4638970365879138899", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/RUIVJ6JIHW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "541856" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.28808100000, + -21.16896500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "capacity": "24", + "amenity": "charging_station", + "description": "Tesla Supercharger Centre Tesla Aix-Marseille, France", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP26558", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27525190000, + 43.41476090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "94226", + "description": "Freshmile France/HVUHMZ", + "ref:EU:EVSE": "FRFR1PHVUHMZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11577000000, + 48.89760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP02714", + "operator": "Total Charging Services", + "charging_station:output": "7 kW", + "opening_hours": "Mo-Fr 08:00-12:15,Mo-Fr 13:30-19:00,Sa 08:00-12:30,Sa 13:30-17:00", + "amenity": "charging_station", + "capacity": "4", + "network": "Carglass Services SAS - VILLENEUVE D'ASCQ", + "owner:ref:FR:SIREN": "425050556", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Carglass Services SAS - VILLENEUVE D'ASCQ", + "start_date": "2024-06-28", + "ref": "FRTCBP02714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12225784890, + 50.63591259619 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "fence" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20738310000, + 49.97257030000 + ], + [ + 1.20658160000, + 49.97205030000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5922774395409526608", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "347177", + "description": "Freshmile France/KFCMGC", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23984000000, + 47.96110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "456837", + "description": "MobiSDEC/IS3DWADVWS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P3002148027204105139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55365600000, + 48.85095200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64555;64556", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "344659941", + "operator:email": "advenir@zeborne.com", + "ref:EU:EVSE": "FRZMAE22AC64556;FRZMAE22AC64555", + "start_date": "2021-06-24", + "charging_station:output": "22 kW", + "network": "AUTOS SELECTION - Mazda Laval", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 08:30-18:00", + "description": "Mazda - Laval - 22kW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73632930000, + 48.05788530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Najeti_Hotel_Hardelot", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE382", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60516900000, + 50.63255600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78484001", + "charging_station:output": "22 kW", + "start_date": "2023-09-13", + "network": "CPO Alizé Liberté Public", + "description": "PERDREAUVILLE - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62586100000, + 48.96709800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "description": "Hanches", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE462753;FRIOYE462752;FRIOYE462702;FRIOYE462701;FRIOYE462703;FRIOYE462704;FRIOYE462705;FRIOYE462706;FRIOYE462751", + "network": "Hanches", + "opening_hours": "24/7", + "ref": "FRIOYE462753;FRIOYE462752;FRIOYE462702;FRIOYE462701;FRIOYE462703;FRIOYE462704;FRIOYE462705;FRIOYE462706;FRIOYE462751", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67773700000, + 48.59414700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS53E53152001", + "start_date": "2024-05-31", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MESLAY-DU-MAINE - Place De La Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55193420000, + 47.95097490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MOSSET - Carretera Del Coll De Jau", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66119001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34745500000, + 42.66850600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Dommartin-lès-Remiremont", + "start_date": "2024-01-09", + "ref:EU:EVSE": "FRIENE013301;FRIENE013302", + "ref": "FRIENE013301;FRIENE013302", + "network": "Dommartin-lès-Remiremont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64107100000, + 48.00576000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "description": "JANZE - 1 rue paul painleve ", + "ref:EU:EVSE": "FRS35P35136001B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49469600000, + 47.95903800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-BAGNOL-002", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61483B", + "description": "BAGNOLES DE L'ORNE - Avenue de la Ferte Macé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41069000000, + 48.55668000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AAWKPFVNSO", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P9011042299086818673", + "network": "Freshmile France", + "opening_hours": "Tu,Th,Fr,Mo,We 07:00-18:00", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "541724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87724900000, + 45.70839500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "64871", + "ref:EU:EVSE": "FRS31PUXRGDF", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/UXRGDF", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22590000000, + 43.53309600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NANTERRE - Avenue des Guilleraies", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-02", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92050018", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18593280597, + 48.89376757323 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "SELARL BRUNEL HALLIER ASSELIN", + "amenity": "charging_station", + "network": "SELARL BRUNEL HALLIER ASSELIN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-11-10", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000567;FRCG0E000568", + "ref": "FRCG0E000567;FRCG0E000568" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34653000000, + 47.58673700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "FALICON - PARKING STADE", + "ref:EU:EVSE": "FRM06PNICE19112;FRM06PNICE19111", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*191*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27667351013, + 43.75008795936 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "4b91206b-d390-5a6e-8990-94646493dd1c", + "description": "MOBIVE | Monflanquin | Abattoir", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76076200000, + 44.52736700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE33012;FRSIGPSIGE33011", + "capacity": "2", + "description": "SIGEIF - 42 RUE DU NOYER DE LIMAGE PARKING - CORMEILLES EN PARISIS", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*330*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20921800000, + 48.96577500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "170172", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS170172", + "socket:type2_combo:output": "90 kW", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Revolte, e-Garages - Nantes - Carquefou", + "charging_station:output": "22 kW;90 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49994990000, + 47.26900300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3204EVCP01", + "description": "MORANGIS", + "ref:EU:EVSE": "LFR3204EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34549600000, + 48.70545000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "9839fb30-6a4b-5250-8dc6-e2b4d7b1c86b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Fals | Rue du Chateau d'Eau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67475100000, + 44.09276600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lisses - Rue de Hurepoix", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "ee0c5412-1818-50de-9041-f7c1b455e6fd", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41678100000, + 48.61158800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2022-09-12", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83310GRIPRAIRIEVIS", + "charging_station:output": "22.08 kW", + "description": "PRAIRIE DE LA MER - PARKING CLIENTS - GRIMAUD", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83310*GRI*PRAIRIEVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58432000000, + 43.28033000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR3374EVCP01;LFR3374EVCP02;LFR3374EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "SOTTEVILLE LES ROUEN Arago", + "ref:EU:EVSE": "LFR3374EVCP01;LFR3374EVCP02;LFR3374EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10503000000, + 49.42199100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMBRO", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Intermarché Super - Broons", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25127549074, + 48.32459661088 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Brignoles, 15 Rue Petit Paradis;Réseau eborn/VFR4L4ZIYV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNVFR4L4ZIYV;FREBNPVFR4L4ZIYV", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "79180;VFR4L4ZIYV", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06168800000, + 43.40724800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - La Foir'Fouille Petite-Forêt", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP59459A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP59459A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47828250107, + 50.38215306400 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E38544001", + "start_date": "2023-07-04", + "capacity": "7", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Gare de Vienne centre-ville - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87223000000, + 45.52011000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT603401", + "description": "Carrefour Market - Villers-Sous-Saint-Leu", + "start_date": "2023-12-21", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38805700000, + 49.20647300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-09-27", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDPKJ", + "capacity": "4", + "opening_hours": "24/7", + "description": "Salon-de-Provence - King Jouet", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09151000000, + 43.63350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2022-10-27", + "ref:EU:EVSE": "FROTHPOTHR52561;FROTHPOTHR52541;FROTHPOTHR52521;FROTHPOTHR52511;FROTHPOTHR52531;FROTHPOTHR52551", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*525*3*_*_;FR*SOD*S*OTHR*525*2*_*_;FR*SOD*S*OTHR*525*1*_*_;FR*SOD*S*OTHR*525*4*_*_;FR*SOD*S*OTHR*525*5*_*_;FR*SOD*S*OTHR*525*6*_*_", + "description": "SUPER U - JOUE LES TOURS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64373500000, + 47.34454200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BORNE BUT BORNE 1", + "ref": "FRCPIE6726995", + "network": "BORNE BUT BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6726995", + "start_date": "2024-04-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03799500000, + 44.72144100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7578225560082279815", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLPWMD27T2QUTL", + "ref": "1025337", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38448300000, + 48.83198000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VELIZY 2 - PKG P2 NIVEAU 0", + "ref:EU:EVSE": "FRURWPUNIB2042;FRURWPUNIB2032;FRURWPUNIB2031;FRURWPUNIB2022;FRURWPUNIB2021;FRURWPUNIB2012;FRURWPUNIB2011;FRURWPUNIB2041", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-05-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*UNIB*20*4*_*_;FR*SOD*S*UNIB*20*2*_*_;FR*SOD*S*UNIB*20*1*_*_;FR*SOD*S*UNIB*20*3*_*_", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22001100000, + 48.78034500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "86771", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PDLLYWL", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "Freshmile France/DLLYWL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21538000000, + 48.99180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "description": "Tesla Supercharger Centre Tesla Paris-Val d’Europe", + "ref:EU:EVSE": "FRTSLP29532", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79924300000, + 48.83593700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "370190", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/XWSYQ6PXC8", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5302985038634941877", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86402000000, + 45.92520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "44 kW;50 kW;400 kW", + "description": "Zunder/122319", + "operator:email": "roaming@zunder.com", + "network": "Zunder", + "amenity": "charging_station", + "capacity": "48", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;400 kW", + "ref:EU:EVSE": "ESZUNP3720995230489869257", + "ref": "1080339", + "operator": "Zunder | ES*ZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24069200000, + 47.09598600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "467505", + "opening_hours": "24/7", + "description": "MobiSDEC/NNOGALD1MD", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS14P4142724671618830844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26881300000, + 49.14691200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2024-05-16", + "ref:EU:EVSE": "FRS12E12106001", + "description": "GABRIAC - Rue Du Vieux Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79413000000, + 44.45092300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WAAT", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATL4TDE07E3", + "ref": "1170357", + "operator": "WAAT SAS | FR*WA4", + "ref:EU:EVSE": "FRWA4P2372036392019712013", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11430900000, + 49.05338500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49246A", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Président Vilette", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "start_date": "2021-04-23", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52725100000, + 47.43730600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "start_date": "2021-03-22;2022-10-06", + "description": "LE MANS - Avenue Maréchal Lyautey", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS72E72181001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22183712572, + 48.01485853682 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH16E59283001", + "start_date": "2023-05-12", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "HARGNIES - Rue du bois - Parking de la Mairie", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84449130000, + 50.25556730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44194001;FRS44P44194A", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAUTRON - Rue De Bretagne;OuestCharge - Diva Sp - Sautron - Bretagne", + "start_date": "2021-03-29;2024-04-12", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67281300000, + 47.26250600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63308A", + "amenity": "charging_station", + "start_date": "2022-10-19", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Royat - Allard", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05585580000, + 45.76645580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59406001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-03", + "description": "MONCEAU SAINT VAAST - La Place" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85655800000, + 50.17080300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34032003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BEZIERS - Rue Pierre Flourens (Place Des Trois Six)", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21294440000, + 43.34250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-02", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94028019", + "network": "SIPPEREC", + "description": "CRETEIL - Rue du Général Lacharrière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46576249815, + 48.78525698476 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*353*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2024-09-10", + "description": "SAINT-LAURENT-DU-VAR - BOIS DE PUGETS", + "ref:EU:EVSE": "FRM06PNICE35311;FRM06PNICE35312", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17987370982, + 43.68671209590 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "00668964-8482-56c2-8e64-71264b9724b9", + "description": "MOBIVE | Lanouaille | Rue du Pont lasveyras (Parking)", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14033200000, + 45.39226200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*435*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-11-17", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 55 AVENUE DES GRESILLONS - GENNEVILLIERS", + "ref:EU:EVSE": "FRSIGPSIGE43511;FRSIGPSIGE43512", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30127700000, + 48.91511300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "capacity": "8", + "amenity": "charging_station", + "ref": "FRALLEGO9006521;FRALLEGO9004201;FRALLEGO9004202;FRALLEGO9004401;FRALLEGO9004402;FRALLEGO9006491;FRALLEGO9006492;FRALLEGO9006522", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Fougères", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Fougères", + "ref:EU:EVSE": "FRALLEGO9006521;FRALLEGO9004201;FRALLEGO9004202;FRALLEGO9004401;FRALLEGO9004402;FRALLEGO9006491;FRALLEGO9006492;FRALLEGO9006522" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18114521000, + 48.34697836000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3263EVCP01;LFR3263EVCP02", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3263EVCP01;LFR3263EVCP02", + "description": "NICE Galliéni;NICE Gallieni", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28130700000, + 43.70652800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "5ac3a8ab-884f-5c5b-b0f9-ca0a347ad494", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bidart | Parking du lavoir", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59103000000, + 43.43792700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "c29c7a5d-ee6f-5f32-aba9-7a451ef82b5f", + "description": "MORNAS - Avenue Jean Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72713900000, + 44.20216600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MITTAINVILLE - Mairie", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-10-30", + "ref:EU:EVSE": "FRA05E78407001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62399000000, + 48.66548000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3110EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3110EVCP01", + "description": "ST PIERRE SUR DIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03754400000, + 49.01943200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "120 kW;60 kW", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;120 kW;22 kW;60 kW", + "start_date": "2022-01-17", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché Super - Villemandeur", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMVLM", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71794284841, + 47.97217127478 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Gaillard, Espace Louis Simon", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPCX2VTC22TK", + "ref": "CX2VTC22TK", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21154130000, + 46.18894690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "18", + "ref": "680720", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP21111B", + "opening_hours": "24/7", + "description": "E-VADEA/FR*EVA*P21111*B", + "charging_station:output": "43 kW;22 kW;50 kW;150 kW;300 kW", + "network": "E-VADEA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17247200000, + 47.42182800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-07-14;2023-06-30", + "description": "Carrefour - Le Crès", + "ref:EU:EVSE": "FRPD1PCRFLCR", + "capacity": "9", + "charging_station:output": "100 kW;188 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94352342328, + 43.64294452712 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT583001", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-08-02", + "description": "Carrefour Market Decize", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46997400000, + 46.83635800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEMOB Dalgabio - Grüner", + "operator": "E-TOTEM", + "ref": "FRESEPS42218AK", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "start_date": "2019-11-20", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218AK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39932500000, + 45.44078300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-11-24;2022-11-30;2022-11-25", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IZIG*399*8*_*_;FR*SOD*S*IZIG*399*6*_*_;FR*SOD*S*IZIG*399*5*_*_;FR*SOD*S*IZIG*399*48*_*_;FR*SOD*S*IZIG*399*47*_*_;FR*SOD*S*IZIG*399*46*_*_;FR*SOD*S*IZIG*399*45*_*_;FR*SOD*S*IZIG*399*44*_*_;FR*SOD*S*IZIG*399*43*_*_;FR*SOD*S*IZIG*399*42*_*_;FR*SOD*S*IZIG*399*41*_*_;FR*SOD*S*IZIG*399*4*_*_;FR*SOD*S*IZIG*399*38*_*_;FR*SOD*S*IZIG*399*36*_*_;FR*SOD*S*IZIG*399*33*_*_;FR*SOD*S*IZIG*399*31*_*_;FR*SOD*S*IZIG*399*3*_*_;FR*SOD*S*IZIG*399*30*_*_;FR*SOD*S*IZIG*399*29*_*_;FR*SOD*S*IZIG*399*24*_*_;FR*SOD*S*IZIG*399*22*_*_;FR*SOD*S*IZIG*399*17*_*_;FR*SOD*S*IZIG*399*16*_*_;FR*SOD*S*IZIG*399*13*_*_;FR*SOD*S*IZIG*399*12*_*_;FR*SOD*S*IZIG*398*7*_*_;FR*SOD*S*IZIG*398*6*_*_;FR*SOD*S*IZIG*398*5*_*_;FR*SOD*S*IZIG*398*48*_*_;FR*SOD*S*IZIG*398*46*_*_;FR*SOD*S*IZIG*398*45*_*_;FR*SOD*S*IZIG*398*44*_*_;FR*SOD*S*IZIG*398*43*_*_;FR*SOD*S*IZIG*398*42*_*_;FR*SOD*S*IZIG*398*41*_*_;FR*SOD*S*IZIG*398*4*_*_;FR*SOD*S*IZIG*398*40*_*_;FR*SOD*S*IZIG*398*38*_*_;FR*SOD*S*IZIG*398*35*_*_;FR*SOD*S*IZIG*398*34*_*_;FR*SOD*S*IZIG*398*31*_*_;FR*SOD*S*IZIG*398*3*_*_;FR*SOD*S*IZIG*398*30*_*_;FR*SOD*S*IZIG*398*29*_*_;FR*SOD*S*IZIG*398*24*_*_;FR*SOD*S*IZIG*398*17*_*_;FR*SOD*S*IZIG*398*15*_*_;FR*SOD*S*IZIG*398*12*_*_;FR*SOD*S*IZIG*398*11*_*_;FR*SOD*S*IZIG*397*8*_*_;FR*SOD*S*IZIG*397*7*_*_;FR*SOD*S*IZIG*397*6*_*_;FR*SOD*S*IZIG*397*4*_*_;FR*SOD*S*IZIG*397*29*_*_;FR*SOD*S*IZIG*397*28*_*_;FR*SOD*S*IZIG*397*24*_*_;FR*SOD*S*IZIG*397*18*_*_;FR*SOD*S*IZIG*397*16*_*_;FR*SOD*S*IZIG*397*15*_*_;FR*SOD*S*IZIG*397*11*_*_;FR*SOD*S*IZIG*397*1*_*_;FR*SOD*S*IZIG*397*10*_*_;FR*SOD*S*IZIG*397*12*_*_;FR*SOD*S*IZIG*397*13*_*_;FR*SOD*S*IZIG*397*14*_*_;FR*SOD*S*IZIG*397*17*_*_;FR*SOD*S*IZIG*397*19*_*_;FR*SOD*S*IZIG*397*20*_*_;FR*SOD*S*IZIG*397*2*_*_;FR*SOD*S*IZIG*397*21*_*_;FR*SOD*S*IZIG*397*22*_*_;FR*SOD*S*IZIG*397*23*_*_;FR*SOD*S*IZIG*397*25*_*_;FR*SOD*S*IZIG*397*26*_*_;FR*SOD*S*IZIG*397*27*_*_;FR*SOD*S*IZIG*397*3*_*_;FR*SOD*S*IZIG*397*5*_*_;FR*SOD*S*IZIG*397*9*_*_;FR*SOD*S*IZIG*398*10*_*_;FR*SOD*S*IZIG*398*1*_*_;FR*SOD*S*IZIG*398*13*_*_;FR*SOD*S*IZIG*398*14*_*_;FR*SOD*S*IZIG*398*16*_*_;FR*SOD*S*IZIG*398*18*_*_;FR*SOD*S*IZIG*398*19*_*_;FR*SOD*S*IZIG*398*20*_*_;FR*SOD*S*IZIG*398*2*_*_;FR*SOD*S*IZIG*398*21*_*_;FR*SOD*S*IZIG*398*22*_*_;FR*SOD*S*IZIG*398*23*_*_;FR*SOD*S*IZIG*398*25*_*_;FR*SOD*S*IZIG*398*26*_*_;FR*SOD*S*IZIG*398*27*_*_;FR*SOD*S*IZIG*398*28*_*_;FR*SOD*S*IZIG*398*32*_*_;FR*SOD*S*IZIG*398*33*_*_;FR*SOD*S*IZIG*398*36*_*_;FR*SOD*S*IZIG*398*37*_*_;FR*SOD*S*IZIG*398*39*_*_;FR*SOD*S*IZIG*398*47*_*_;FR*SOD*S*IZIG*398*8*_*_;FR*SOD*S*IZIG*398*9*_*_;FR*SOD*S*IZIG*399*10*_*_;FR*SOD*S*IZIG*399*1*_*_;FR*SOD*S*IZIG*399*11*_*_;FR*SOD*S*IZIG*399*14*_*_;FR*SOD*S*IZIG*399*15*_*_;FR*SOD*S*IZIG*399*18*_*_;FR*SOD*S*IZIG*399*19*_*_;FR*SOD*S*IZIG*399*20*_*_;FR*SOD*S*IZIG*399*2*_*_;FR*SOD*S*IZIG*399*21*_*_;FR*SOD*S*IZIG*399*23*_*_;FR*SOD*S*IZIG*399*25*_*_;FR*SOD*S*IZIG*399*26*_*_;FR*SOD*S*IZIG*399*27*_*_;FR*SOD*S*IZIG*399*28*_*_;FR*SOD*S*IZIG*399*32*_*_;FR*SOD*S*IZIG*399*34*_*_;FR*SOD*S*IZIG*399*35*_*_;FR*SOD*S*IZIG*399*37*_*_;FR*SOD*S*IZIG*399*39*_*_;FR*SOD*S*IZIG*399*40*_*_;FR*SOD*S*IZIG*399*7*_*_;FR*SOD*S*IZIG*399*9*_*_", + "description": "CNPE DAMPIERRE - NORD;CNPE DAMPIERRE - SUD - RANGEE 1;CNPE DAMPIERRE - SUD - RANGEE 2", + "ref:EU:EVSE": "FROTHPIZIG39981;FROTHPIZIG39961;FROTHPIZIG39951;FROTHPIZIG399461;FROTHPIZIG399451;FROTHPIZIG399421;FROTHPIZIG399411;FROTHPIZIG39941;FROTHPIZIG399401;FROTHPIZIG399351;FROTHPIZIG399331;FROTHPIZIG399321;FROTHPIZIG399311;FROTHPIZIG39931;FROTHPIZIG399291;FROTHPIZIG399221;FROTHPIZIG39921;FROTHPIZIG399191;FROTHPIZIG399181;FROTHPIZIG399171;FROTHPIZIG399141;FROTHPIZIG399121;FROTHPIZIG39911;FROTHPIZIG399101;FROTHPIZIG39891;FROTHPIZIG39861;FROTHPIZIG39851;FROTHPIZIG398461;FROTHPIZIG398431;FROTHPIZIG398411;FROTHPIZIG39841;FROTHPIZIG398351;FROTHPIZIG398331;FROTHPIZIG398311;FROTHPIZIG398291;FROTHPIZIG398251;FROTHPIZIG398211;FROTHPIZIG39821;FROTHPIZIG398191;FROTHPIZIG398111;FROTHPIZIG39811;FROTHPIZIG398101;FROTHPIZIG39781;FROTHPIZIG39751;FROTHPIZIG397251;FROTHPIZIG397241;FROTHPIZIG397211;FROTHPIZIG397161;FROTHPIZIG397151;FROTHPIZIG397141;FROTHPIZIG397131;FROTHPIZIG397101;FROTHPIZIG39711;FROTHPIZIG397111;FROTHPIZIG397121;FROTHPIZIG397171;FROTHPIZIG397181;FROTHPIZIG397191;FROTHPIZIG397201;FROTHPIZIG39721;FROTHPIZIG397221;FROTHPIZIG397231;FROTHPIZIG397261;FROTHPIZIG397271;FROTHPIZIG397281;FROTHPIZIG397291;FROTHPIZIG39731;FROTHPIZIG39741;FROTHPIZIG39761;FROTHPIZIG39771;FROTHPIZIG39791;FROTHPIZIG398121;FROTHPIZIG398131;FROTHPIZIG398141;FROTHPIZIG398151;FROTHPIZIG398161;FROTHPIZIG398171;FROTHPIZIG398181;FROTHPIZIG398201;FROTHPIZIG398221;FROTHPIZIG398231;FROTHPIZIG398241;FROTHPIZIG398261;FROTHPIZIG398271;FROTHPIZIG398281;FROTHPIZIG398301;FROTHPIZIG39831;FROTHPIZIG398321;FROTHPIZIG398341;FROTHPIZIG398361;FROTHPIZIG398371;FROTHPIZIG398381;FROTHPIZIG398391;FROTHPIZIG398401;FROTHPIZIG398421;FROTHPIZIG398441;FROTHPIZIG398451;FROTHPIZIG398471;FROTHPIZIG398481;FROTHPIZIG39871;FROTHPIZIG39881;FROTHPIZIG399111;FROTHPIZIG399131;FROTHPIZIG399151;FROTHPIZIG399161;FROTHPIZIG399201;FROTHPIZIG399211;FROTHPIZIG399231;FROTHPIZIG399241;FROTHPIZIG399251;FROTHPIZIG399261;FROTHPIZIG399271;FROTHPIZIG399281;FROTHPIZIG399301;FROTHPIZIG399341;FROTHPIZIG399361;FROTHPIZIG399371;FROTHPIZIG399381;FROTHPIZIG399391;FROTHPIZIG399431;FROTHPIZIG399441;FROTHPIZIG399471;FROTHPIZIG399481;FROTHPIZIG39971;FROTHPIZIG39991" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51773000000, + 47.73272000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6872185", + "capacity": "2", + "charging_station:output": "150 kW", + "description": "IRVE HOPITAUX NEUFS", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-02-09", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6872185", + "network": "IRVE HOPITAUX NEUFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37355100000, + 46.77657100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/YLCU4JWUCU", + "ref": "591266", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2069685454465648156" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744000000, + 45.58954500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL BORDEAUX MÉRIGNAC HÔTEL DE VILLE", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRVIAP122041", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66903900000, + 44.84480800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "782370", + "network": "Freshmile France", + "description": "Freshmile France/VEL3NQFHW0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P145698126189808265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52900300000, + 45.84779100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Beaune Nord, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP27742", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84118200000, + 47.04312000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8645845249244688190", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/OIRPBLPGGO", + "ref": "487221", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68619700000, + 43.34195900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/GWNCBEVKLC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P6997016291981083798", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457467" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56637100000, + 49.29074500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457605", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/YDK2B0ERXB", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2985952604169648174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27565100000, + 49.24791000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA3LR012DNKK", + "ref:EU:EVSE": "FRWA9P5609285685304250978", + "ref": "1127883", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16415600000, + 49.28080200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50150001", + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2016-06-30", + "capacity": "2", + "amenity": "charging_station", + "description": "SOURDEVAL - Cote Eglise", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92149240000, + 48.72441280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAZAMET - Parking De La Gare", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81163003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37421800000, + 43.49775000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRHPCPNF059628", + "amenity": "charging_station", + "ref": "FRHPCPNF059628", + "owner:ref:FR:SIREN": "531681381;531681380;531681379;531681378;531681377;531681376;531681374;531681375", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS ST PRIVAT METZ Ville", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "start_date": "2023-04-12;2023-04-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16283200000, + 49.10091100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEYRUEIS - Avenue Ae Martel", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-12-15", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48096001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43042100000, + 44.18070200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PWRRLPV", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/WRRLPV", + "ref": "812373", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76808000000, + 47.67090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62643001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "OUTREAU - Boulevard Splinglard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58545200000, + 50.70063400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-04-30", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Tréglonou - Rue du Pont", + "ref:EU:EVSE": "FRS29E2929000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.53817900000, + 48.55260100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PEETZMB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/EETZMB", + "network": "Mobilité électrique 56", + "ref": "24753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31030000000, + 47.71220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052251;FRLMSE12346052252;FRLMSE12346052261;FRLMSE12346052262", + "charging_station:output": "18 kW", + "description": "SAINT-JULIEN L ARS-1-1;SAINT-JULIEN L ARS-1-2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref": "B085", + "start_date": "2016-12-06", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49724000000, + 46.55970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Métropolis/FR*MGP*P93033*A;Metropolis - Citadine - Gournay-sur-Marne - Près de Noisy", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref": "330317", + "ref:EU:EVSE": "FRMGPP93033A", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2021-08-30", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57554100000, + 48.86291900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Chef-Boutonne - Stade", + "ref:EU:EVSE": "FRSEOPAB79083P0021A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "start_date": "2016-02-26", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07567057000, + 46.10834219000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "39", + "charging_station:output": "22 kW;100 kW;300 kW;150 kW;289 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRATLP2509961108966466286", + "socket:type2_combo:output": "300 kW;150 kW;289 kW", + "operator:email": "operations.france@atlante.energy", + "ref": "976547", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00309", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59942000000, + 45.60930800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "NVH", + "ref:EU:EVSE": "FRLMSE1000100988;FRLMSE1000100987", + "capacity": "2", + "description": "MP - Bezon", + "amenity": "charging_station", + "network": "Station Mattieu et Pauline", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "0", + "start_date": "2022-09-29", + "operator:email": "supervision@nvh-france.fr", + "owner:ref:FR:SIREN": "813164282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20000000000, + 48.91000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-08-11", + "operator:email": "olivier@eqos.fr", + "amenity": "charging_station", + "description": "LMS Charge", + "network": "LMS Informatique", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMAPP000000006951", + "operator": "LMS Informatique", + "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", + "owner:ref:FR:SIREN": "482399896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39809900000, + 46.69899900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTAIGU-VENDEE(SAINT-HILAIRE-DE-LOULAY) - Rue L'Abbe Rene Giraudet", + "ref:EU:EVSE": "FRS85E85224001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33125000000, + 47.00351000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VITROLLES", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "start_date": "2023-11-22", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSVTRLL", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25955300000, + 43.43181100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MAMP*7*2*_*_", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com", + "description": "IZIVIA | GEMENOS - BOULEVARD VESSIOT - PARKING DES GRANGES", + "ref:EU:EVSE": "FRIZMPMAMP722;FRIZMPMAMP721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62911900000, + 43.29411500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Match - Tourcoing (Fleurus)", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMATTGF", + "network": "Power Dot France", + "start_date": "2023-12-18", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "capacity": "9", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17329171378, + 50.73559984838 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Pont-De-L'Isère, Place du 16 Août;Réseau eborn/ONVAVTDPJC", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPONVAVTDPJC", + "ref": "ONVAVTDPJC;31921", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "capacity": "2;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87242700000, + 45.00160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "79675", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PWWLUVL", + "description": "Freshmile France/WWLUVL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57471200000, + 45.39717500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "start_date": "2023-06-12", + "network": "Power Dot France", + "description": "Ibis - Essômes-sur-Marne", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBSESM", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38014490000, + 49.03461990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPCVEVFLDAHI;FREBNP3500634694322720752", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/CVEVFLDAHI;Saint Julien En Genevois, Rue Jacques Duboin", + "socket:type2_combo:output": "24 kW", + "ref": "598221;CVEVFLDAHI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07367600000, + 46.14280900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34087A", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - 3M - Cournonsec - Rue de la Billière", + "start_date": "2024-07-16", + "ref": "FRETIP34087A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71422485311, + 43.55144913500 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "SUPER U - PLANCOET", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "ref:EU:EVSE": "FROTHPOTHR21341;FROTHPOTHR21331;FROTHPOTHR21311;FROTHPOTHR21321", + "ref": "FR*SOD*S*OTHR*213*2*_*_;FR*SOD*S*OTHR*213*1*_*_;FR*SOD*S*OTHR*213*3*_*_;FR*SOD*S*OTHR*213*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23973300000, + 48.52520400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS4012;FRCPSPCAPS4011", + "ref": "FR*SOD*S*CAPS*40*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-05-19", + "operator:email": "sav@izivia.com", + "description": "LONGJUMEAU - GARE GRAVIGNY-BALIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31621400000, + 48.68493400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "579008", + "charging_station:output": "22 kW", + "description": "Freshmile France/ZPJ9RWYGCH", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7660485675091944331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79092400000, + 43.39060600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref:EU:EVSE": "FRVISP7415050556488688035", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "ref": "951347", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENRGETICA/8093966d-5d7a-4f7c-98ba-24b5464a398d", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52631500000, + 45.72623200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SYZW93FWG5", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P957169086287086985", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "786978" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33668500000, + 45.78753200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "description": "WB 22kW Honda Seynod;ALPITRONIC 225kW Hyundai Seynod;ABB 7kW Hyundai Seynod", + "amenity": "charging_station", + "start_date": "2022-12-05;2022-11-22;2022-11-21", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "ref": "1000115681;1000098810;1000087993", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "capacity": "1;3", + "charging_station:output": "22 kW;225 kW;7 kW", + "operator:email": "contact@sowattsolutions.com", + "ref:EU:EVSE": "FRSWSE1000115681;FRSWSE1000087993;FRSWSE1000098810" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08924900000, + 45.87825400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLIK018BS1Z3O4", + "ref:EU:EVSE": "FRFR1P1773397917604586589", + "opening_hours": "Th,Tu,We,Fr,Su,Mo,Sa 00:00-07:30,We,Sa,Tu,Fr,Th,Mo 19:00-23:59,Su 13:00-23:59", + "ref": "892128", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20613000000, + 48.67100100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPHESSRENAULT677001", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Renault - HESS - Saverne", + "start_date": "2023-05-31", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38329800000, + 48.74162300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "network": "MODULO - NOGENT-LE-ROTROU - Pl. du 11 août", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "description": "MODULO - NOGENT-LE-ROTROU - Pl. du 11 août", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E139024", + "ref:EU:EVSE": "FRS28E139024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81835900000, + 48.32219400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EVB-P20151643", + "network": "OVERCHEM", + "amenity": "charging_station", + "start_date": "2021-06-17", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "bornes.overchem@laposte.net", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:30-17:30", + "owner:ref:FR:SIREN": "328170113", + "description": "Parking Overchem", + "operator": "OVERCHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91872188095, + 49.87516700888 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P9127844022825740067", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/UCV3A9QN03", + "ref": "39704" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01720200000, + 48.14210900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP5853569840402611002", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "894693", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "3.7 kW", + "description": "WAAT/FRWATLGHFUFVOH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588600000, + 48.80112200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE47", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-03", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "description": "portdelille-LCT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02496800000, + 50.62484900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VILLEFRANCHE D'ALBIGEOIS - Place De La Bascule", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS81E81317001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047700000, + 43.89608800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIPKPPRA", + "start_date": "2023-03-20", + "owner:ref:FR:SIREN": "692051113", + "description": "INTERPARKING - Paris Rex Atrium", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "20", + "opening_hours": "24/7", + "ref": "FRIPKPPRA", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781000000, + 48.87122000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS49E49099008", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-10", + "description": "OREE-D'ANJOU - Rue des Mauges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18914401500, + 47.28610610962 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/YRXMTJ", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "79510", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PYRXMTJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07117000000, + 49.43220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-24", + "ref:EU:EVSE": "FRH13E62454001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "HINGES - Rue Des Fusilles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62362420000, + 50.56492950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189013", + "start_date": "2022-02-28", + "description": "NIMES - Boulevard Gambetta", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35749900000, + 43.84040700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-08-29", + "network": "Morbihan Energies", + "description": "La gacilly - Rue de l'Hôtel de ville", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PFYJMNZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.13433500000, + 47.76628000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90291270", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo-Center Parcs Bois Francs-P2", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2024-06-14", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84300000000, + 48.72570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "description": "Metropolis - Proximité - Vincennes - Général de Gaulle;Métropolis/FR*MGP*P94080*K", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2021-06-14", + "ref:EU:EVSE": "FRMGPP94080K", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref": "419991", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43433900000, + 48.84440800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - RUE FAUBERT - BELLOY", + "network": "SIGEIF", + "start_date": "2021-07-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*146*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE14612;FRSIGPSIGE14611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36695000000, + 49.08752300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-13", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TRAPPES - Avenue Hector Berlioz", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78621002", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98012300000, + 48.78187100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89732226", + "description": "ENGIE Vianeo - Hôtel Campanile Wasquehal", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-06-06", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11560400000, + 50.68216100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "83e7028f-1270-5305-9fd2-dbd52a2c1c4e", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Chasseneuil Sur Bonnieure | Place du Champ de Mars", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45222500000, + 45.82461500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Gare SNCF - COMBS LA VILLE", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-16", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77CVRA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54793200000, + 48.66674000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-23", + "description": "Allego Carrefour Niort", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9005662;FRALLEGO9005661;FRALLEGO9005462;FRALLEGO9003172;FRALLEGO9003171;FRALLEGO9002671;FRALLEGO9002672;FRALLEGO9002673;FRALLEGO9003091;FRALLEGO9003092;FRALLEGO9005461", + "network": "Allego Carrefour Niort", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9005662;FRALLEGO9005661;FRALLEGO9005462;FRALLEGO9003172;FRALLEGO9003171;FRALLEGO9002671;FRALLEGO9002672;FRALLEGO9002673;FRALLEGO9003091;FRALLEGO9003092;FRALLEGO9005461", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48064042000, + 46.31793311000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "VALMONT Wenheck", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3651EVCP01", + "ref": "LFR3651EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71672000000, + 49.09408900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31555019", + "description": "TOULOUSE - Place Paul Riché", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43275600000, + 43.64743000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLYO9KDEI5S50K;Nangy, Route de Bonneville", + "ref": "1174536;LLYO9KDEI5S50K", + "ref:EU:EVSE": "FREBNPLLYO9KDEI5S50K;FREBNP2371550134166514823", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-07-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30647700000, + 46.15341400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1684429172299834801", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1090329", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLSOM6GTLGHGUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16439900000, + 49.14580700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-16", + "capacity": "8", + "charging_station:output": "7 kW", + "description": "PARIS - Place Victor Hugo", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E75116002", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28444800000, + 48.86936600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLTHE8SNM14BBM;1123020", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLTHE8SNM14BBM;LesAvenieresVeyrins-Thuellin, Place de la Liberté", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07", + "ref:EU:EVSE": "FREBNP4622523064838496801;FREBNPLLTHE8SNM14BBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56371600000, + 45.63507700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2023-10-09", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPREIKF", + "description": "Reims - KFC La Neuvillette", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02662500000, + 49.28699700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Mâcon-Loché TGV P1 - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E71270001", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2023-09-07", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77949650000, + 46.28286170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6615325", + "amenity": "charging_station", + "capacity": "1", + "description": "CADETEL BORNE PARKING", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CADETEL BORNE PARKING", + "start_date": "2022-10-12", + "ref": "FRCPIE6615325" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02323800000, + 46.88197900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Bormes-Les-Mimosas, 38 Rue Montagard", + "ref:EU:EVSE": "FREBNPNPD3JQ3SQ3", + "ref": "NPD3JQ3SQ3", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33876710000, + 43.14383800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLYFDWZNVL;WAAT/s570557", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWATP9183349406477493420;FRWA2P5701010462593784313", + "ref": "671597;1181754" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88816900000, + 47.96278000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "585533", + "ref:EU:EVSE": "FRFR1P6958498616887482335", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/PU8TVQEFNN", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59611700000, + 46.34475200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "description": "BEAL ET FILS - BILLOM", + "owner:ref:FR:SIREN": "345036750", + "network": "Renault Agents France", + "opening_hours": "Mo-Th 08:00-12:00,14:00-18:00,Fr 08:00-12:00,14:00-17:00,Sa 08:00-12:00", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP00724", + "start_date": "2022-08-04", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP00724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33921357083, + 45.72855122129 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "529496", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8134257365991100434", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/OTOLZUTYPN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07523000000, + 47.43460700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ford - Pezenas", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGREGORAUTO341201", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:00, Tu 08:30-12:00, Tu 14:00-18:00, We 08:30-12:00, We 14:00-18:00, Th 08:30-12:00, Th 14:00-18:00, Fr 08:30-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2020-08-04", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41408600000, + 43.44917600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "ref:EU:EVSE": "FRS29E2907700", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Guisseny-Rue de Plouguerneau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.41144800000, + 48.63344600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11041001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "BIZE_MINERVOIS - Rue De La Cave Cooperative", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87194444444, + 43.31277780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Mecasud - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC57277", + "owner:ref:FR:SIREN": "424761419", + "network": "UNICAP - GARAGE MECASUD", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "0599eb23-ed74-4eb6-8e04-1134358f3ff0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46680201000, + 47.20678700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - HAYBES - Pl. de la mairie", + "network": "MODULO - HAYBES - Pl. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS08E57562;FRS08E57561", + "ref:EU:EVSE": "FRS08E57562;FRS08E57561" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70727368000, + 50.01063662000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64655", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PWVTPRJ", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/WVTPRJ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75093000000, + 50.02510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - SAINT-ONEN-LA-CHAPELLE", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST2313;FRIZFPFAST2311;FRIZFPFAST2312", + "ref": "FR*SOD*S*FAST*23*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16847080000, + 48.18977140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "LA BERNERIE-EN-RETZ - Avenue De Noirmoutier;OuestCharge - Diva Sp - La Bernerie-En-Retz - Noirmoutier", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44P44012A;FRS44E44012001", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-26;2021-04-19", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03974600000, + 47.08072900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77053004;FRS77P77053D", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "capacity": "2;4", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "BRIE-COMTE-ROBERT - Place des Halles;Brie-Comte-Robert - Place des Halles", + "start_date": "2024-08-07", + "ref": "419e00d9-0681-4df2-9b89-4477af79fe67" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60921400000, + 48.69102000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "410072177", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "network": "BOISSEE - IBIS BUDGET LE HAVRE", + "opening_hours": "24/7", + "start_date": "2024-03-29", + "description": "IBIS BUDGET LE HAVRE", + "ref:EU:EVSE": "FRGSPP1234595641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14302936213, + 49.49425418226 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - STE MAURE DE TOURAINE – Ronsard", + "ref:EU:EVSE": "FRS37E219835;FRS37E219836", + "description": "MODULO - STE MAURE DE TOURAINE – Ronsard", + "ref": "FRS37E219835;FRS37E219836" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61646419000, + 47.11129467000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "description": "CCTLB - Laneuveville-aux-Bois", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "825193a2-9de4-5a05-8dd8-666ea3aa5f48" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65141200000, + 48.61186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "description": "MAIRIE OLLIERGUES", + "amenity": "charging_station", + "ref:EU:EVSE": "FRG10P63258B", + "ref": "FRG10P63258B", + "network": "MAIRIE OLLIERGUES", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63659823825, + 45.67568495885 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "45b9355e-3f6f-5df9-93b0-d6d386cfd290", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "191__SDEER17", + "description": "MOBIVE | Montlieu la Garde | Maison de la Forêt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27274300000, + 45.24332400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 7 RUE FELIX FAURE - COLOMBES", + "start_date": "2022-06-12", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE26311;FRSIGPSIGE26312", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*263*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25339600000, + 48.91511100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "socket:type2_combo:output": "62 kW", + "network": "GVA B.-JALLIEU DC", + "charging_station:output": "62 kW;22 kW", + "capacity": "2", + "description": "GVA B.-JALLIEU DC", + "amenity": "charging_station", + "start_date": "2021-09-07", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6495155;FRCPIE2836855", + "ref": "FRCPIE6495155;FRCPIE2836855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25950900000, + 45.58646000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P4808361192997866824", + "ref": "972005", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/LLOEBXTBE28KRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28460700000, + 45.53677300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "05cee0cf-8d9c-5644-8358-ae46c8a9d64a", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Brive | Parking Parc des Expositions des 3 Provinces | 2", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54435100000, + 45.16464800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "charging_station:output": "18 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - Bressuire / St Sauveur - Mairie", + "ref:EU:EVSE": "FRSEOPAB12016A", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2018-10-08", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41672600000, + 46.82252300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1EDSVA1", + "operator:email": "exploitation@freshmile.com", + "owner:ref:FR:SIREN": "215701061", + "charging_station:output": "24 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Bouzonville Mairie", + "socket:type2_combo:output": "24 kW", + "operator": "FRESHMILE", + "start_date": "2021-02-19", + "network": "FRESMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53594500000, + 49.28969400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "QUEVERT", + "ref": "LFR0736EVCP01;LFR0736EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR0736EVCP01;LFR0736EVCP02", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07068300000, + 48.44752200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SASSENAGE - Place Jean Prevost", + "ref:EU:EVSE": "FRM38E38474001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66108450000, + 45.21377200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-01-05", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ11412;FRA16PWIIZ11411", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*114*1*_*_", + "description": "MANDELIEU-LA NAPOULE - PARKING BALCONS DAZUR", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93946500000, + 43.52155200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026729", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LLSX18SSN1JGV5", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2724749605558877423", + "capacity": "9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51122900000, + -20.89397300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PACTLBT", + "start_date": "2024-01-03;2023-10-14", + "description": "Action - Lebetain", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98231177888, + 47.49534541939 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lapeyrouse-Mornay, Place Jérôme Cavalli;Réseau eborn/LK4IORN6OX", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "75122;LK4IORN6OX", + "ref:EU:EVSE": "FREBNPLK4IORN6OX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99484600000, + 45.32287900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;150 kW", + "description": "La Valette-du-Var - CC L'Avenue 83", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPLVVAV", + "start_date": "2024-08-06", + "operator": "ELECTRA", + "socket:type2_combo:output": "200 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00669700000, + 43.13599000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking Gare de Nointel Mours P+R- EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E95452001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28081200000, + 49.13292500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CHATILLON CHARLES RIVER 2", + "opening_hours": "Su 06:00-20:00,Mo 06:00-20:00,Tu 06:00-20:00,We 06:00-20:00,Th 06:00-20:00,Fr 06:00-20:00,Sa 06:00-20:00", + "description": "CHATILLON CHARLES RIVER 2", + "ref:EU:EVSE": "FRCPIE6675765;FRCPIE6675745", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6675765;FRCPIE6675745" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00136500000, + 46.11888100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/LLYID88WO2RPBD", + "ref": "1193725", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP4436755048583294841", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15083800000, + 47.30409000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-10-30;2021-12-08", + "description": "Paris | rue Frédérick Lemaître 5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX2021", + "ref": "FR*V75*PPX20*21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39117980000, + 48.87364730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2138172731681927687", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346445", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MUR6AGZUL1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16499000000, + 49.13020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-10-12", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX05*10", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Paul Painlevé 7", + "ref:EU:EVSE": "FRV75PPX0510", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34442860000, + 48.84990240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "882732", + "ref:EU:EVSE": "FRFR1P5158193641232733158", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "100 kW", + "network": "Freshmile France", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SKSFD8QFSZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.44755700000, + -20.88369800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ford -Sallanches", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "ref:EU:EVSE": "FRSSDPMAURINFORD747001", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "start_date": "2021-02-18", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63339800000, + 45.95745600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22325001", + "description": "Saint Quay Portrieux-Parking Port d'Armor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82407500000, + 48.64803300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - LE CHATELET - Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "network": "MODULO - LE CHATELET - Pl. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS18E143928;FRS18E143927", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS18E143928;FRS18E143927", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28348400000, + 46.64226900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "La jabotte", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "network": "La jabotte", + "start_date": "2021-05-03", + "owner:ref:FR:SIREN": "440591782", + "opening_hours": "Mo-Su 7:30-12:00,Mo-Su 15:00-20:00", + "charging_station:output": "11 kW", + "ref": "01F52RT5T5C8MK3VG25J93RKKE", + "description": "La jabotte", + "operator:email": "info@jabotte.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28759200000, + 48.86272500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/AW2Y62ZANM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "32053", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P5631754945777350751" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33211300000, + 48.36401200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81004005", + "description": "ALBI - Allee Du Lude" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14967000000, + 43.92180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - FECAMP", + "start_date": "2024-05-31", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*97*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST9712;FRIZFPFAST9711;FRIZFPFAST9713", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37592551423, + 49.75945800285 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-28;2024-04-19;2024-04-20", + "ref:EU:EVSE": "FRS44P44130B;FRS44E44130002", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Pont-Saint-Martin - Loisirs;PONT-SAINT-MARTIN - Aire Des Loisirs", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58058700000, + 47.12724900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Montdauphin;MONTDAUPHIN - Rue Brulée", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77303A;FRS77E77303001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-25;2016-08-31", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH6160PFDJT763HCR33P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42743400000, + 48.85177200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62458001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "HOULLE - Route de Watten", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17411200000, + 50.79665800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221479;FRS37E221477", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - NAZELLES NEGRON - Rue d'Amboise", + "description": "MODULO - NAZELLES NEGRON - Rue d'Amboise", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E221479;FRS37E221477", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97706083000, + 47.41940150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - VIGNEULES LES HATTONCHATEL - Rte. St MIhiel", + "operator:email": "support@modulo-energies.fr", + "start_date": "2020-04-11", + "ref:EU:EVSE": "FRS55E66442;FRS55E66443", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - VIGNEULES LES HATTONCHATEL - Rte. St MIhiel", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E66442;FRS55E66443", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70167600000, + 48.97642400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LAM01 - BASTERO - CENTRE", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*137*1*_*_", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON13711;FRGLYPLYON13712", + "operator:email": "sav@izivia.com", + "start_date": "2022-03-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80822100000, + 45.72786100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "description": "AUBERS - Place de l'Eglise", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5924901", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59249*01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82549000000, + 50.59518400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPJLRABC061101", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "7.36 kW", + "start_date": "2018-07-26", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 08:30-18:00", + "operator:email": "support@driveco.com", + "description": "Jaguar Land Rover - Le Cannet", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01280600000, + 43.57431400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED PROUVY", + "capacity": "2", + "description": "CGED PROUVY", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6576985", + "ref": "FRCPIE6576985", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45680600000, + 50.33288100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P8189288001771739934", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "892692", + "capacity": "2", + "description": "Leclerc/LLINATGFY10GT3", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14377000000, + 47.64476100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Sainte Eulalie | Rue Eugene Colette", + "ref": "57c7a822-de71-5912-b126-4141bbdcdf67" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47335600000, + 44.90874900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "9b6c116d-9f8e-576c-9bc2-f5e34df29bab", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "description": "Viry-Châtillon - Avenue du Bellay", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36361400000, + 48.67547600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego NISSAN La Teste de Buch", + "ref": "FRALLEGO0001531", + "network": "Allego NISSAN La Teste de Buch", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-03-15", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO0001531", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13155428000, + 44.60838347000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2570EVCP01", + "description": "SIX-FOURS PLAGES Sablettes", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2570EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85091200000, + 43.08921400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Fuveau, Avenue Du Maréchal, Parking", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PQPPRKM9JOL", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55797200000, + 43.45286100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E177100;FRS88E177098", + "description": "MODULO - XERTIGNY - Rue du Commandant St Sernin", + "network": "MODULO - XERTIGNY - Rue du Commandant St Sernin", + "ref": "FRS88E177100;FRS88E177098" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40224000000, + 48.04420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-01-20", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*229*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ22911;FRA16PWIIZ22912", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "LE CANNET - PARKING CANEOPOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99149300000, + 43.57303600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XTEHCGKCGX", + "capacity": "5", + "opening_hours": "Mo,Tu,Fr,Sa,Th,We 08:00-12:00,Mo,We,Sa,Th,Fr,Tu 13:30-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P3143154672904370283", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "466278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47903700000, + 50.38043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Mr. Bricolage - Paray-le-Monial", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRPLM", + "start_date": "2024-03-21", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11386976688, + 46.46719042351 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/GE3HA5PUXP;Pierrelatte, Avenue Jean-Perrin", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "75128;GE3HA5PUXP", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPGE3HA5PUXP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69954000000, + 44.37728200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref": "1008546", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "network": "EVzen", + "description": "EVzen/bdd4104b-baef-41c6-b924-7894fccd6fc4", + "ref:EU:EVSE": "FREVZP6928174218009374357", + "opening_hours": "Tu,We,Sa,Su,Mo,Th,Fr 06:00-20:59", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33000800000, + 43.98106200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LILLE - Gare A", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-11-24", + "ref:EU:EVSE": "FRP07E59350010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07529250000, + 50.64063400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "IWC3A33G30;399005", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP4996660545241344502;FREBNPIWC3A33G30", + "charging_station:output": "22 kW", + "start_date": "2021-05-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Crau, Parking Boulodrome;Réseau eborn/IWC3A33G30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07809500000, + 43.12054800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/NZUZDQ7AS5", + "ref:EU:EVSE": "FREBNPNZUZDQ7AS5", + "ref": "32875" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35817500000, + 46.34599900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL BEAUNE NORD", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP122003", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84819400000, + 47.04263900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "419103", + "charging_station:output": "22 kW", + "description": "Freshmile France/GPVWBL", + "ref:EU:EVSE": "FRFR1P4422468065956966559", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71117800000, + 47.83866400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX1218", + "capacity": "7", + "network": "Belib'", + "start_date": "2021-10-12", + "amenity": "charging_station", + "description": "Paris | boulevard de Bercy 5", + "opening_hours": "24/7", + "ref": "FR*V75*PPX12*18", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37873900000, + 48.84035780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "585569", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/WGU09TC7OO", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5626329163288361444", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80607200000, + 45.73084800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "14", + "charging_station:output": "100 kW;22.08 kW", + "opening_hours": "Mo 07:30-18:30, Tu 07:30-18:30, We 07:30-18:30, Th 07:30-18:30, Fr 07:30-18:30, Sa 09:00-18:00", + "description": "BMW Mini - Lisses", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPINDIGO910901", + "socket:type2_combo:output": "100 kW", + "start_date": "2022-06-17;2022-05-25;2022-03-31", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44063700000, + 48.60035900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-10-24", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900110", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PETREPAGNYCOMCOM", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61297400000, + 49.30339600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SICECO/FR*S21*P21607*A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180431", + "ref:EU:EVSE": "FRS21P21607A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14952500000, + 46.99710500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-GERMAIN-EN-LAYE - Rue du Président Roosevelt", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78551018", + "start_date": "2024-04-21", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07628770000, + 48.89950940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-06-28", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE107", + "description": "Ariston", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73888400000, + 49.22574200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLL2INRX7P", + "network": "WAAT", + "ref": "880236", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP5501369538068957735", + "operator": "WAAT SAS | FR*WAT", + "charging_station:output": "6.9 kW;22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16544800000, + 45.65287100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IONITY Rosny Nord;Rely", + "ref": "FRIOYE408951;FRIONE437900;FRIOYE408901;FRIOYE408902;FRIOYE408903;FRIOYE408904;FRIOYE408952;FRIOYE408953", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "ref:EU:EVSE": "FRIOYE408951;FRIONE437900;FRIOYE408901;FRIOYE408902;FRIOYE408903;FRIOYE408904;FRIOYE408952;FRIOYE408953", + "start_date": "2019-10-09;2021-11-05", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Rely;IONITY GMBH", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37879500000, + 50.57180800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E41909;FRS51E41910", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - VAL DE VESLE - Rue du Général de Gaulle", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VAL DE VESLE - Rue du Général de Gaulle", + "start_date": "2020-12-11", + "ref:EU:EVSE": "FRS51E41909;FRS51E41910" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22270900000, + 49.17521400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AUREILHAN - Rue Jules Ferry", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "ref:EU:EVSE": "FRS65E65047001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09638300000, + 43.24305100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-23;2023-11-24", + "description": "RELAIS DE VALLEE DE L ERVE", + "ref": "FRHPCPNF080355", + "capacity": "7", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681383;531681384;531681382;531681385", + "opening_hours": "24/7", + "charging_station:output": "300 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF080355", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34300000000, + 48.02660700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-20", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34144001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LUNAS - Parking de l'Eglise", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19338985373, + 43.70687657620 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25069", + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/KHNUDJ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PKHNUDJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37788000000, + 47.75320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "441060", + "ref:EU:EVSE": "FRFR1P8357065824746731356", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WGX350GV80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71434000000, + 48.48750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P92051*Q;Metropolis - ePremium - Neuilly-sur-Seine - Longchamp", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRMGPP92051Q", + "start_date": "2023-03-03", + "capacity": "2", + "amenity": "charging_station", + "ref": "599091", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25511400000, + 48.88200700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fiat - HESS - Huningue", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPHESSFIAT683301", + "charging_station:output": "22.08 kW", + "start_date": "2020-07-01", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-17:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57861600000, + 47.58700600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC2P004601", + "ref": "FRC2P004601", + "description": " LOY'S HOTEL", + "opening_hours": "24/7", + "network": " LOY'S HOTEL", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95883045767, + 43.10066375283 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "e5ed9769-55df-4ef0-9f84-62673a8b44da", + "operator": "LUMI'IN", + "description": "La Clé des Champs", + "ref:EU:EVSE": "FRLUMECLECHAMPS11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31000000000, + 44.51000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref": "83dd6cc4-45e2-5517-abba-1300ed4d9890", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Camblanes et Meynac | Route de Morillon", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48694300000, + 44.76524900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE24SABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-07-08", + "owner:ref:FR:SIREN": "835124280", + "description": "Citroën Lasternas - SAVIGNAC LEDRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20731900000, + 45.39619500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "ref": "1018974", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "description": "BornEco/659ea9cc22c67491b170052b", + "ref:EU:EVSE": "FRBHMP4685059543219417049" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50206000000, + 47.66108700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P4489349173987284467", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/UX2IS8EDAX", + "ref": "454338", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79155300000, + 47.66757700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Les Pennes-Mirabeau, Parking Square Jean Moulin", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PCXCWHGZ76X", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34899400000, + 43.38087400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/ANLLRYSDTF", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "3", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1017729", + "ref:EU:EVSE": "FRS89P4146236371108558217" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63877800000, + 47.89970600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ8011;FRA16PWIIZ8012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-29", + "network": "WIIIZ", + "description": "PEYMEINADE PARKING ST MARC", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*80*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87587200000, + 43.63910700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UHMXW9N8BO", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "491901", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7781832261822743611", + "opening_hours": "Mo,Tu,We,Th,Sa,Fr 08:00-19:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13402800000, + 49.49892100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Super U Bernolsheim", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSUPBER", + "start_date": "2024-09-27;2024-09-19", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68660372101, + 48.74729365454 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "50737;WLVMFDV1MU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNWLVMFDV1MU;FREBNPWLVMFDV1MU", + "description": "Réseau eborn/WLVMFDV1MU;Lorgues, 10 Rue Du 8 Mai 1945", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36110500000, + 43.49080300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP2679108592697738461", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "1034760", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques", + "description": "ENGIE MAMP - Bornes publiques/B0A42FB9-F570-41CA-B907-0B9671F4EC80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41862600000, + 43.30515100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-12-08", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*701*5*_*_;FR*SOD*S*OTHR*701*1*_*_;FR*SOD*S*OTHR*701*2*_*_;FR*SOD*S*OTHR*701*3*_*_;FR*SOD*S*OTHR*701*4*_*_;FR*SOD*S*OTHR*701*6*_*_", + "capacity": "1", + "description": "HOTEL F1 AVRANCHES - SAINT-QUENTIN-SUR-LE-HOMME", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR70151;FROTHPOTHR70141;FROTHPOTHR70111;FROTHPOTHR70121;FROTHPOTHR70131;FROTHPOTHR70161", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34728100000, + 48.64948700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFGJRNL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "description": "Réseau eborn/FGJRNL;Epagny Metz-Tessy, Parking Du Clocher", + "ref": "75215;FGJRNL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10531000000, + 45.93970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1026819", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP9132042752992064302", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/LLSU6GCCYW5N17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77509200000, + 45.50811800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SUPER U - PORNIC", + "network": "SYSTEME U", + "capacity": "1;2", + "ref:EU:EVSE": "FROTHPOTHR38052;FROTHPOTHR38041;FROTHPOTHR38031;FROTHPOTHR38021;FROTHPOTHR38011;FROTHPOTHR38051", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*380*5*_*_;FR*SOD*S*OTHR*380*4*_*_;FR*SOD*S*OTHR*380*1*_*_;FR*SOD*S*OTHR*380*2*_*_;FR*SOD*S*OTHR*380*3*_*_", + "start_date": "2023-02-23;2022-04-15", + "operator:email": "sav@izivia.com", + "charging_station:output": "50 kW;3.68 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11844700000, + 47.12282200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1992075341326797901", + "description": "Freshmile France/AVGTCZQU9B", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "578834", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04282500000, + 48.72047700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Saint-Jean-de-Maurienne, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP30242", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37274261000, + 45.26639202000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "559796", + "capacity": "2", + "description": "Freshmile France/TQ382YIB2F", + "opening_hours": "Mo,Tu,Sa,We,Th,Fr 14:00-19:00,We,Th,Tu,Fr,Mo,Sa 08:00-12:30", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2251858871148361045" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33435900000, + 49.91168200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "description": "BMW - Mantes la Jolie", + "amenity": "charging_station", + "start_date": "2022-07-20", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBMSBMW782001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:30-18:30, Tu 08:30-18:30, We 08:30-18:30, Th 08:30-18:30, Fr 08:30-18:30, Sa 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67677000000, + 48.99052400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1806788149720353095", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "ref": "735171", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MWMLUQHPM0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17465500000, + 47.96788100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Pleslin Trigavou-Le Bourg (parking derrière la poste)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS22E22190001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05624900000, + 48.53179600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mazda - Nîmes - 22kW AC ", + "amenity": "charging_station", + "capacity": "1", + "ref": "49683", + "owner:ref:FR:SIREN": "421659764", + "ref:EU:EVSE": "FRZMAE22AC49683", + "operator:email": "advenir@zeborne.com", + "start_date": "2020-12-04", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-19:00", + "network": "MAZDA NIMES ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33852600000, + 43.81485200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-05-16", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE326;FRROSE327", + "operator": "RossiniEnergy", + "description": "Kiloutou_Thiais_DR;Kiloutou_Thiais_Bureau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37470300000, + 48.75222100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78335003", + "network": "CPO Alizé Liberté Public", + "description": "LIMAY - Rue Adrien Roelandt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73140300000, + 48.99299300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE440052;FRIOYE440051;FRIOYE440004;FRIOYE440001;FRIOYE440002;FRIOYE440003;FRIOYE440053", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Baralle", + "opening_hours": "24/7", + "description": "Baralle", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2022-02-24", + "ref:EU:EVSE": "FRIOYE440052;FRIOYE440051;FRIOYE440004;FRIOYE440001;FRIOYE440002;FRIOYE440003;FRIOYE440053" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07035700000, + 50.22547800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "description": "FOUGEROLLES-DU-PLESSIS - Place Du Rassemblement Du 28 Juillet 1944;OuestCharge - Diva Sp - Fougerolles-Du-Plessis - Rassemblement", + "amenity": "charging_station", + "start_date": "2024-05-16;2021-04-14", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53E53100001;FRS53P53100A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97292800000, + 48.47451900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOURG MADAME - Place De La Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66025001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94502700000, + 42.43409500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-06-12", + "description": "Lauzerte", + "amenity": "charging_station", + "capacity": "4", + "network": "Lauzerte", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE009502;FRIENE009501", + "ref": "FRIENE009502;FRIENE009501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10210100000, + 44.26723900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "ref:EU:EVSE": "FRS35P35051003B1", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "CESSON SEVIGNE - 40 rue de bray " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61493700000, + 48.10766200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "start_date": "2018-01-22", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61327A", + "opening_hours": "24/7", + "ref": "SE61-PERV-001", + "description": "PERVENCHERES - Le Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42450790000, + 48.43851060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/X8N8GBP7Y5", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1522899430397523073", + "ref": "477729", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75548700000, + 48.62134900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/Massabrac", + "amenity": "charging_station", + "ref": "49021", + "ref:EU:EVSE": "FRS31PMASSABRAC", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37318000000, + 43.22639800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92044003", + "description": "LEVALLOIS PERRET - Rue Pierre Brossolette", + "start_date": "2021-08-13;2021-08-04;2021-05-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29231500000, + 48.89546800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "amenity": "charging_station", + "capacity": "23", + "description": "Eden park - 77170 - 5", + "ref:EU:EVSE": "FRCG0E000352;FRCG0E000351;FRCG0E000350;FRCG0E000343;FRCG0E000341;FRCG0E000340;FRCG0E000334;FRCG0E000333;FRCG0E000335;FRCG0E000336;FRCG0E000338;FRCG0E000339;FRCG0E000342;FRCG0E000344;FRCG0E000345;FRCG0E000346;FRCG0E000347;FRCG0E000348;FRCG0E000349;FRCG0E000353;FRCG0E000354;FRCG0E000355;FRCG0E000356", + "ref": "FRCG0E000352;FRCG0E000351;FRCG0E000350;FRCG0E000343;FRCG0E000341;FRCG0E000340;FRCG0E000334;FRCG0E000333;FRCG0E000335;FRCG0E000336;FRCG0E000338;FRCG0E000339;FRCG0E000342;FRCG0E000344;FRCG0E000345;FRCG0E000346;FRCG0E000347;FRCG0E000348;FRCG0E000349;FRCG0E000353;FRCG0E000354;FRCG0E000355;FRCG0E000356", + "opening_hours": "24/7", + "network": "Eden park - 77170 - 5", + "operator:email": "info@chargeguru.com", + "start_date": "2022-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58444300000, + 48.70758300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-07", + "capacity": "2", + "description": "NICE - PARKING 11 MADELEINE", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*165*1*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE16511;FRM06PNICE16512", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24324500000, + 43.69497700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bf8de44a-2fa7-5e25-994a-d767d6935130", + "operator": "200__TE47", + "description": "MOBIVE | Montayral | Place Pierre Caumont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98584200000, + 44.48038500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "SIGEIF - 33 RUE DE LA TUILERIE - SURESNES", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*306*1*_*_", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-09-19", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE30612;FRSIGPSIGE30611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21346500000, + 48.86188000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS203655;FRBMPS203654;FRBMPS203653;FRBMPS203656", + "description": "Bump - Grand Mail Station 3 - SAINT-PAUL-LES-DAX", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "203653;203654;203655;203656", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03959040000, + 43.72920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR0448EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "TOURCOING Levant", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR0448EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18066400000, + 50.72119400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "3bd061bc-0ef7-58b2-a567-68fa2025dee4", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "description": "MOBIVE | Lissac-Sur-Couze | Plan d'Eau", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45461800000, + 45.10027900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "de0e30a4-6311-5474-824c-8ea1a4ad12b4", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Boissy-sous-Saint-Yon - Rue Courtanesse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20882000000, + 48.55882600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "description": "PLATEAU - VENTABREN", + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P13122*VTB*PLATEAU", + "ref:EU:EVSE": "FR55CP13122VTBPLATEAU", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29477200000, + 43.53596800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4260EVCP02;LFR4260EVCP04;LFR4260EVCP01;LFR4260EVCP03", + "description": "Combs-la-Ville - rue Pablo Picasso", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4260EVCP02;LFR4260EVCP04;LFR4260EVCP01;LFR4260EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56366600000, + 48.65941900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Proviridis/5ecd3f9aa176410007f744d8", + "socket:type2_combo:output": "100 kW;150 kW;300 kW", + "capacity": "5", + "ref": "917304", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPVDP2921322229966457522", + "network": "Proviridis", + "opening_hours": "24/7", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD", + "charging_station:output": "100 kW;150 kW;300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01416800000, + 43.82252500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPPYBWJB", + "ref": "75104;PYBWJB", + "description": "Réseau eborn/PYBWJB;Valgorge, Le Village", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12942000000, + 44.58780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP49099A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-09-14", + "description": "e-Totem - Lav'Car Cholet", + "ref:EU:EVSE": "FRETIP49099A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91022370000, + 47.03592090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking Béziers Jean Jaurès - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E34032003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21592800000, + 43.34099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-08-25", + "ref:EU:EVSE": "FRDRVPCRFMKT621401", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Hesdin", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02741000000, + 50.37153400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPFACVXR", + "start_date": "2020-06-11", + "ref": "FACVXR;78609", + "description": "Le Chaffaut-Saint-Jurson, Lycée Carmejane;Réseau eborn/FACVXR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13566000000, + 44.03270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR49712;FROTHPOTHR49711", + "ref": "FR*SOD*S*OTHR*497*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "network": "CANTAL REPROGRAPHIE", + "description": "CANTAL REPROGRAPHIE - YTRAC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39536000000, + 44.89300800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6018216130843954706", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/NMFEQ90JG9", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "801633", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05049900000, + 48.90436300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "UBI-LHSM-006", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "ref:EU:EVSE": "FRUBIE10040966;FRUBIE10097775", + "ref": "setp0100000090" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13133000000, + 49.59530400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "50 kW;3 kW", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "50 kW;3 kW", + "ref": "74963", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/EHJHDE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P872770247754457512", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58120000000, + 44.83680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Chemin de la terrasse", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555036", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-08-09;2022-08-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48300000000, + 43.58610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/QHUUUYBQNY", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7448166219521030617", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "368914", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54977500000, + 44.81634000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "461856", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1406887264404516348", + "description": "MobiSDEC/NWNXQPH8TD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35509400000, + 49.14001800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASSAGNES BEGONHES - Avenue De Lodeve", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12057001", + "start_date": "2021-10-26", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52982800000, + 44.16774800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLIJ81VEGA", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "805278", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA3P7337803932989848330", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98286100000, + 43.90901100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49192A;FRS49E49192001", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "MAULEVRIER - Rue Stofflet;OuestCharge - Diva Sp - Maulevrier - Stofflet", + "start_date": "2021-04-22;2024-04-30", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74470000000, + 47.00727100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "description": "SIED70/VesoulGerlingen", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70PVESOULGERLINGEN", + "charging_station:output": "22 kW", + "ref": "79870" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15962000000, + 47.62080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LEDERZEELE - Route du chemin vert", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59339001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29401932587, + 50.81988253030 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E214027;FRS37E214028", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - SAINT CYR SUR LOIRE - Esplanade", + "opening_hours": "24/7", + "ref": "FRS37E214027;FRS37E214028", + "network": "MODULO - SAINT CYR SUR LOIRE - Esplanade", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66668400000, + 47.39997400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-09-21", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63236A", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Mont Dore - Libération", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80837310000, + 45.57239080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH02E59103001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-04", + "description": "BOUSSIÈRES-SUR-SAMBRE - Rue de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88284900000, + 50.23686200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEG32/FPMRAX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PFPMRAX", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "21843", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30692600000, + 43.42870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-08-21", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHAMPIGNY SUR MARNE - Rue Gambetta", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94017011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51095000000, + 48.81473300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "3 kW", + "description": "NICE - TURIN RP", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*28*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE2812;FRM06PNICE2811", + "start_date": "2019-01-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28449020903, + 43.71294148861 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Verteillac | Parking des Vieux Metiers | le Bourg", + "ref": "944d9b27-3a0d-5dae-92b0-7b9dfe864058" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36504500000, + 45.34658400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE412;FRSIGPSIGE411", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 8 RUE DU MONT-VALERIEN - SAINT-CLOUD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*4*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21552800000, + 48.85504200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76540013", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROUEN - Place Saint Clément" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07760800000, + 49.42644100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "VANNES Copernic", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2649EVCP01;LFR2649EVCP02", + "ref": "LFR2649EVCP01;LFR2649EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79560000000, + 47.66863800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "ref": "aa6dd924-77b7-5500-9b28-2c87744e2bc8", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "description": "MOBIVE | Felletin | Place des Arbres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17194100000, + 45.88471000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTE-CECILE-LES-VIGNES - Avenue Jean Jaurès", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "41304a46-3475-5bc2-b415-bf99998fc727" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88583600000, + 44.24401300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR594E59122010", + "start_date": "2022-03-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CAMBRAI - Place de la République", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "network": "pass pass électrique", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23522400000, + 50.17687900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3469EVCP02;LFR3469EVCP01;LFR3469EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3469EVCP02;LFR3469EVCP01;LFR3469EVCP03", + "description": "LES ACHARDS Clemenceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66594700000, + 46.60795000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-04", + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Rillieux-la-Pape", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRPD1PITMRLP", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90225366260, + 45.81840584562 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/XDQPVX", + "ref": "368736", + "ref:EU:EVSE": "FREBNPXDQPVX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72489500000, + 44.60970700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - REDZONE CHALLANS", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP85047", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP85047", + "start_date": "2024-04-10", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86017382642, + 46.85068487673 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-05-15;2023-02-06", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PCORROT", + "description": "Cora - Rots", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46093750000, + 49.19931250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-08-22", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT626601", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Beuvry", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68287400000, + 50.51711900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42095AA", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2019-04-26", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Firminy - Gare", + "ref:EU:EVSE": "FRESEPS42095AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28576900000, + 45.39124300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FROTHPAUCH20711;FROTHPAUCH20712", + "opening_hours": "24/7", + "ref": "FR*SOD*S*AUCH*207*1*_*_", + "network": "AUCHAN", + "start_date": "2024-01-16", + "description": "AUCHAN - VILLENEUVE DASCQ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15114200000, + 50.64964440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6826835", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "network": "ELEC SBE STATION 5", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6826835", + "operator:email": "info@chargepoint.com", + "description": "ELEC SBE STATION 5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46234900000, + 49.02066100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4950268882018159580", + "network": "Freshmile France", + "ref": "479184", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "description": "Freshmile France/BSE7UXMPKB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97394000000, + 46.37465600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9016*03", + "description": "Paris | Avenue Henri Martin 101", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P901603", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27153000000, + 48.86360200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LUHPQG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "94232", + "ref:EU:EVSE": "FRFR1PLUHPQG", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58230000000, + 49.25890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP3826", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "description": "Tesla Supercharger Amiens", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27815400000, + 49.86349600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "472173", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5230591369828029497", + "description": "Freshmile France/BNAYVYPNUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75620600000, + 48.57564200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8690040957920850345", + "description": "MobiSDEC/MACRGC0HBC", + "opening_hours": "24/7", + "ref": "467499", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517000000, + 49.05752500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "description": "Saint-Martin-De-Crau, Avenue Nostradamus", + "ref:EU:EVSE": "FRS13PNDJUZUDKNN", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81302600000, + 43.63846600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P8670958908758573369", + "capacity": "2", + "amenity": "charging_station", + "ref": "1128066", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/FRWA6LJFHGOAAP", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04540200000, + 43.43077700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-10;2023-08-22;2021-06-04", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49381A;FRS49E49381001", + "description": "YZERNAY - Place Corbert;OuestCharge - Diva Sp - Yzernay - Corbert", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70343100000, + 47.02195500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8113200122;FRS81E8113200111;FRS81E8113200121", + "description": "GUITALENS LALBAREDE - Place de la Poste", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "start_date": "2022-09-22", + "capacity": "1", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03870015178, + 43.64237447424 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680801;531680798;531680799;531680803;531680802;531680804;531680805;531680800", + "capacity": "8", + "ref:EU:EVSE": "FRHPCPNF058969", + "socket:type2_combo:output": "175 kW", + "description": "REL.PORTES LES VALENCE EST", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRHPCPNF058969", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86690000000, + 44.86550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE VIGAN - Le lac", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS46E46334001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44243700000, + 44.74253100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "description": "Sauzon - Le Cardinal", + "ref:EU:EVSE": "FRS56PCGGCRTEPRZ", + "start_date": "2020-01-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22063890000, + 47.37594440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "LAUWIN PLANQUE - MAIRIE", + "start_date": "2023-11-20", + "ref:EU:EVSE": "FRH04E59334001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04569000000, + 50.39046200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Rosporden - PEM Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2924100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.83276900000, + 47.96024400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PDXRKQV", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/DXRKQV", + "ref": "39071", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38255000000, + 47.73620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-11-28", + "ref": "B128", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "LA ROCHE-POSAY-1-1;LA ROCHE-POSAY-1-2", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346051742;FRLMSE12346051731;FRLMSE12346051732;FRLMSE12346051741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81115000000, + 46.78644900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P93005*E", + "ref:EU:EVSE": "FRMGPP93005E", + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref": "484769", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48857000000, + 48.94913400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-01-15", + "amenity": "charging_station", + "capacity": "1", + "description": "SIGEIF - 41 RUE MARTHE - CLICHY", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8831;FRSIGPSIGE8811;FRSIGPSIGE8821;FRSIGPSIGE8841;FRSIGPSIGE8851;FRSIGPSIGE8861", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*SIGE*88*6*_*_;FR*SOD*S*SIGE*88*3*_*_;FR*SOD*S*SIGE*88*2*_*_;FR*SOD*S*SIGE*88*1*_*_;FR*SOD*S*SIGE*88*4*_*_;FR*SOD*S*SIGE*88*5*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30836300000, + 48.90024900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Atlante/FRATLZ334_FRPETITE_000001", + "ref": "940611", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "24/7", + "network": "Atlante", + "socket:type2_combo:output": "300 kW", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP1862762795934961546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47484100000, + 50.37874400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1000081822", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "start_date": "2023-04-19", + "description": "Howdens Armentieres", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89222300000, + 50.65729900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Benejacq | Impasse de la Fontaine", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "7b735f83-f169-51dd-b9d6-dc0f686e29b9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21315400000, + 43.19156300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS85E85182002", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "POUZAUGES - Place De Lattre De Tassigny", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83792000000, + 46.78198600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-06-08", + "amenity": "charging_station", + "description": "WASQUEHAL", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSWQHAL", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12558700000, + 50.68053600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP2212;FRIZMPMAMP2211", + "ref": "FR*SOD*S*MAMP*22*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "description": "IZIVIA | MARSEILLE 02 - PUVIS DE CHAVANNE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37350100000, + 43.29947700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Match - Commercy (Rue d'Euville)", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMATCEU", + "start_date": "2024-01-28;2024-01-17", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60544646751, + 48.75987688994 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Annecy, Parking Trésum;Réseau eborn/TSAVE2OGXW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "TSAVE2OGXW;492117", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP3808687597667505860;FREBNPTSAVE2OGXW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13118000000, + 45.89654000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/B94A91F7-2922-4868-BBD6-1E47329EB25C", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP2620497296241555569", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "ref": "1171401", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72396400000, + 46.83254000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-19;2023-12-08", + "charging_station:output": "100 kW;22 kW;50 kW;120 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "description": "Basic Fit - Le Trait", + "ref:EU:EVSE": "FRPD1PHLFLTT", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81124985390, + 49.47696709661 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "75038", + "ref:EU:EVSE": "FREBNPIMNKKM8CKN", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/IMNKKM8CKN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82631100000, + 44.31366100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - F3C Besançon", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP25056A", + "start_date": "2024-04-30", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP25056A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98372543414, + 47.24416520739 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ORECO", + "description": "ORECO - TREILLIERES", + "start_date": "2021-06-29", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR18621;FROTHPOTHR18611", + "network": "ORECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*186*1*_*_;FR*SOD*S*OTHR*186*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58704500000, + 47.28090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-01-14", + "description": "PALAISEAU - DR MORERE", + "ref": "FR*SOD*S*CAPS*16*1*_*_", + "ref:EU:EVSE": "FRCPSPCAPS1612;FRCPSPCAPS1611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24357100000, + 48.71172700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9201080558495251966", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "782508", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GCDA7HXZKI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31603100000, + 43.43813600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2024-09-06", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP123019", + "description": "CENTER PARCS LANDES DE GASCOGNE - Parking Visiteur", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04258700000, + 44.29485200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5938569741242998999", + "ref": "694358", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Tu,Th,Fr,We,Mo 09:00-16:30", + "description": "Freshmile France/XEBBF2YBFN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69575800000, + 48.95471300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRSUAP79109A", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-07-28", + "network": "SAS COPADIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSUAP79109A", + "operator:email": "contact@e-totem.fr", + "description": "SUPER U ECHIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42473100000, + 46.38894100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "477639", + "network": "Freshmile France", + "description": "Freshmile France/GP0E9NWEG5", + "ref:EU:EVSE": "FRFR1P9022427502061993794", + "opening_hours": "Fr,Th,Tu,Sa 09:00-18:00,Mo 08:00-18:00,We 09:00-19:00", + "charging_station:output": "50 kW;43 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54881100000, + 48.83723400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-25", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPRIVESDUPLANTIE471101", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Les Rives du Plantié - Le temple sur Lot", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49861200000, + 44.38685300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E134835", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - MARBOUE - Av. Aristide Briand", + "ref:EU:EVSE": "FRS28E134835", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MARBOUE - Av. Aristide Briand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33066500000, + 48.11296600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "charging_station:output": "7 kW", + "network": "Freshmile", + "amenity": "charging_station", + "description": "Hopital Saint Camille Parking exterieur", + "ref:EU:EVSE": "Non concerné", + "operator:email": "web@freshmile.com", + "owner:ref:FR:SIREN": "785665126", + "opening_hours": "24/7", + "capacity": "10", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52710519266, + 48.83282586606 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "892836", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/LLJOC348M1CZYA", + "ref:EU:EVSE": "FRS10P1870782579600925427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04961200000, + 48.29617300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLMR3PB4ZB", + "network": "WAAT", + "ref:EU:EVSE": "FRWATP142491420111346056", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "484970" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73220800000, + 45.97939100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P505431", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "ST QUENTIN SUR LE HOMME - Zone de Cromel", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "socket:type2_combo:output": "100 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34753200000, + 48.64971400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8128400122;FRS81E8128400121;FRS81E8128400112;FRS81E8128400111", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "description": "LE SEQUESTRE - Zi La Baute - Allee Du Commerce", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11278242967, + 43.91753469270 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE479012;FRIOYE479011;FRIOYE479010;FRIOYE479007;FRIOYE479008;FRIOYE479009;FRIOYE479051;FRIOYE479052;FRIOYE479053", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Farebersviller", + "description": "Farebersviller", + "opening_hours": "24/7", + "start_date": "2023-12-13", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE479012;FRIOYE479007;FRIOYE479008;FRIOYE479009;FRIOYE479010;FRIOYE479011;FRIOYE479051;FRIOYE479052;FRIOYE479053", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85834100000, + 49.11122300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - ePremium - Brissac-Loire-Aubance - Layon", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS49P49050B", + "network": "SIEML", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40891700000, + 47.31863900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PXGBNMT", + "description": "Mouv'Oise/XGBNMT", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "79519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88512000000, + 49.26420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "HUCQUELIERS - Grand Place", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH12E62463001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90666200000, + 50.56869900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30146001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LEDIGNAN - Place Roger Chabalier", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10644200000, + 43.98845500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "54 kW", + "ref": "1162362", + "description": "Mobilité électrique 56/LLXUCJ80G22YB7", + "ref:EU:EVSE": "FRS56P7114030688184488869", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "charging_station:output": "22 kW;54 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33449200000, + 47.69920400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346396411;FRLMSE12346396421", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "LA TRIMOUILLE-1-2;LA TRIMOUILLE-1-1", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B047", + "operator": "SOREGIES MOBILITES", + "start_date": "2016-04-08", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04277800000, + 46.46694600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRMGPP94069A", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "description": "Metropolis - Proximité - Saint-Maurice - Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205713000, + 48.82215245000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-05-18", + "description": "SIGEIF - PARKING DU SQUARE DE LA CROIX BLANCHE - VAUCRESSON", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*115*1*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11511;FRSIGPSIGE11512", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15680800000, + 48.83814500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GUYANCOURT - Rue de la Mare de Troux", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-24", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78297002", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05287300000, + 48.78474000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89913617", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-08-02", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Thaon Les Vosges - Maison de Santé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42112900000, + 48.25340800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Chasseneuil Sur Bonnieure | Parking du Gymnase", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "ref": "bb3ae592-aee1-594f-8e8e-4cbdad2c9471" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45549700000, + 45.82288700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-22", + "operator": "STATIONS-E", + "capacity": "2", + "description": "Citroën - Pfaffenhoffen", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE67PFHA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59463400000, + 48.84319900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "GRUCHET LE VALASSE", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-21", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSGRLVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49353400000, + 49.54978000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4019EVCP03;LFR4019EVCP01;LFR4019EVCP02;LFR4019EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4019EVCP03;LFR4019EVCP01;LFR4019EVCP02;LFR4019EVCP04", + "description": "COURTRY " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60834000000, + 48.91123600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAUNAGUET - Av. Des Nobles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31282001", + "charging_station:output": "22 kW", + "start_date": "2022-02-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45583800000, + 43.67409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP2704336128284821448;FREBNPLLTHE8SEP253UA", + "ref": "1154322;LLTHE8SEP253UA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LLTHE8SEP253UA;La Roche-sur-Foron, Parking Plantard", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31039200000, + 46.06553200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1156902", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLKMOW8JP22K8R", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4246743508306049413", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12090500000, + 46.45316600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E75106002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PARIS - Saint Sulpice -1", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33356500000, + 48.85119600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/GDURFISRRH;Devoluy, Superdevoluy - Parking Lilas", + "ref:EU:EVSE": "FREBNPGDURFISRRH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30407;GDURFISRRH", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92860100000, + 44.67598800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP2785013721137407774", + "network": "Road", + "ref": "1061106", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "roaming-dev@road.io", + "description": "Road/6619550aeba046001cd2f1d3", + "opening_hours": "Sa,Su,Th,Mo,Fr,Tu,We 08:00-18:00", + "operator": "Road | FR*EFL", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03285400000, + 45.09359200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - LAIZ", + "ref:EU:EVSE": "FROTHPOTHR30721;FROTHPOTHR30711", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*307*2*_*_;FR*SOD*S*OTHR*307*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-01-20", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88902300000, + 46.25560900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "PARKING N-1 SAVENAY 5", + "description": "PARKING N-1 SAVENAY 5", + "socket:type2_combo:output": "62 kW", + "amenity": "charging_station", + "charging_station:output": "62 kW", + "capacity": "1", + "ref": "FRCPIE6609185", + "ref:EU:EVSE": "FRCPIE6609185", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93808600000, + 47.37279300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/DKBK3IZL5E;Six-Fours-Les-Plages, Corniche de la Coudouliere", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "DKBK3IZL5E;75362", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPDKBK3IZL5E", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81199100000, + 43.09991000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1181748", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P5625598674309903404", + "opening_hours": "24/7", + "description": "WAAT/s570515", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39849700000, + 48.91009700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2870530702481668160", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/VTOBODIIAL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "598065", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57660800000, + 45.90715800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "ref": "FRTCBP00529", + "owner:ref:FR:SIREN": "520393661", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "ACCOR HOTELS", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTCBP00529", + "description": "IBIS BETHUNE CENTRE GARE", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64245000000, + 50.52183000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "operator:email": "roaming@freshmile.com", + "ref": "749322", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/G7WRYXX7TU", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4736396012277818589" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244800000, + 45.26052000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-08-03", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN300001", + "description": "Nissan -Nimes", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38929200000, + 43.83891300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2904400", + "charging_station:output": "22 kW", + "description": "Dineault-Place de l'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16549400000, + 48.21922700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "801759", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P5581267314722091968", + "description": "SDEA 10/XPANXNORV0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50861400000, + 48.46476700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LE006E51", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P1164796778864250006", + "ref": "576032", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83839600000, + 44.48556400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRRSEP01371A", + "ref": "481239", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "description": "Régie Services Energie/FR*RSE*P01371*A", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98519400000, + 45.94813900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PSTQUENTEGLISE", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/stquenteglise", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64811", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45285000000, + 50.07330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MC DONALDS - LYON CHAMPAGNE", + "ref:EU:EVSE": "FRIZFPFAST18621;FRIZFPFAST18611;FRIZFPFAST18612;FRIZFPFAST18613;FRIZFPFAST18622;FRIZFPFAST18623", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-19", + "ref": "FR*SOD*S*FAST*186*1*_*_;FR*SOD*S*FAST*186*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78519000000, + 45.80233830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BLOIS - Mail Pierre Sudreau", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - BLOIS - Mail Pierre Sudreau", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E88229;FRS41E88230", + "ref": "FRS41E88229;FRS41E88230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34025000000, + 47.58884600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Achères-la-Forêt;ACHERES-LA-FORET - Rue Du Closeau", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-23;2016-01-22", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH60ESS2APKE7BR49DN1", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77001001;FRS77P77001A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56414000000, + 48.34816700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-07-09", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9322;FRGLYPLYON9311;FRGLYPLYON9312;FRGLYPLYON9321", + "opening_hours": "24/7", + "description": "LY704 - QUARTIER GENERAL FRERE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*93*2*_*_;FR*SOD*S*LYON*93*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83371000000, + 45.74364500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E215809;FRS37E215810", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BOUSSAY - Rue Notre Dame des Champs", + "network": "MODULO - BOUSSAY - Rue Notre Dame des Champs", + "ref": "FRS37E215809;FRS37E215810" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88746000000, + 46.84141600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/RTQNMD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PRTQNMD", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "39092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28271000000, + 47.81980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "AGGLOMERATION MONTARGOISE - CHALETTE BRANLY", + "capacity": "2", + "description": "AGGLOMERATION MONTARGOISE - CHALETTE BRANLY", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-02-29", + "ref": "FRG10P45068B", + "ref:EU:EVSE": "FRG10P45068B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73098372842, + 48.01230866468 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-10-18", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH14911;FROTHPAUCH14912", + "opening_hours": "24/7", + "ref": "FR*SOD*S*AUCH*149*1*_*_", + "charging_station:output": "22 kW", + "description": "AUCHAN - BRIVES CHARENSAC", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91539774589, + 45.04929057034 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE23211;FRSIGPSIGE23212", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*232*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - PARKING DU STADE MUNICIPAL - FONTENAY-EN-PARISIS", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-03-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44493400000, + 49.05017800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "ref": "21814", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "description": "Move In Pure/DFWYXZ", + "ref:EU:EVSE": "FRCN1PDFWYXZ", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61806000000, + 43.67410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/MOHBRNPVBT", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref": "454305", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P213889289120212384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47654800000, + 46.80530300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Gemozac | Place de Verdun", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "18e76471-59a5-5070-909b-46d83f024dda" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67888500000, + 45.56893700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2024-02-21", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Zone Test Intérieure - Boussy St Antoine", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE91BSP1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53053400000, + 48.67914500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRABAPGSYEOU8ML0", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mas-Blanc-Des-Alpilles, Place Pierre Limberton", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75586200000, + 43.78842300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3726EVCP02;LFR3726EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "LE TIGNET Draguignan", + "ref:EU:EVSE": "LFR3726EVCP02;LFR3726EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85639900000, + 43.63530800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-12", + "ref:EU:EVSE": "FRM38E38185015", + "charging_station:output": "22 kW", + "description": "GRENOBLE - Place De Lavalette - ND - Musée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73162700000, + 45.19407000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPEC5TK1JROM", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "95999;EC5TK1JROM", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Grand-Croix, Parking médiathèque;Réseau eborn/EC5TK1JROM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56950000000, + 45.50397000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2831792936386176604", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LJS7NW956Z", + "charging_station:output": "22 kW", + "ref": "510515", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Sa,Tu,Fr,Th,We,Su,Mo 09:00-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242300000, + 45.21069800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PACCCHA", + "amenity": "charging_station", + "start_date": "2023-10-24", + "opening_hours": "24/7", + "description": "hotelF1 - Chaumont", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14613058733, + 48.08706245049 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carqueiranne, Rue De La Liberation;Réseau eborn/R1VOSOO7GO", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "79189;R1VOSOO7GO", + "ref:EU:EVSE": "FREBNPR1VOSOO7GO;FREBNR1VOSOO7GO", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07442500000, + 43.09295800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPVLJHC", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2024-02-20", + "network": "ELECTRA", + "capacity": "4", + "description": "Villejuif - Hôtel Campanile", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34728000000, + 48.79714300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E92073002", + "description": "Parking Suresnes Hôpital Foch-Franklin Roosevelt - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22228510000, + 48.87191590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "ref": "FRCPIE6654675", + "capacity": "2", + "amenity": "charging_station", + "network": "HMV SAINT DIE 2", + "description": "HMV SAINT DIE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6654675", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96302100000, + 48.28993400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "998760", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "capacity": "1", + "operator": "Easy Charge | FR*ECH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHP3429681685930823088", + "description": "Easy Charge/LLP8JSIBO1GCWA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32550200000, + 43.45721800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1912", + "description": "Paris | Avenue de Flandre 119", + "opening_hours": "24/7", + "ref": "FR*V75*PPX19*12", + "start_date": "2021-11-16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37759420000, + 48.89165900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VEZIJLLV8J", + "operator:email": "roaming@freshmile.com", + "ref": "446591", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7704166900523849370", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73300200000, + 46.11365700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-10-12", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0207", + "opening_hours": "24/7", + "ref": "FR*V75*PPX02*07", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue d'Uzès 1", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34545380000, + 48.87042090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "479241", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRFR1P2095435979198029403", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YGNJTREMMH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29175400000, + 43.70535500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPVOLVOATHISMONS912001", + "amenity": "charging_station", + "start_date": "2021-05-03", + "opening_hours": "24/7", + "capacity": "30", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "description": "Volvo - Athis Mons - Bidaud", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37115700000, + 48.70279500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22251002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Tremeloir-Rue Saint Fiacre (parking mairie)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85712300000, + 48.55488600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PORT LA NOUVELLE - Avenue Charles Palauqui", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11266002", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03760700000, + 43.02198500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "network": "GCA CAEN", + "charging_station:output": "22 kW", + "start_date": "2022-04-12", + "ref": "128615;128616", + "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "owner:ref:FR:SIREN": "448310771", + "description": "Toyota - Mondeville - 22kW AC ;Toyota - Mondeville - 22kW AC", + "ref:EU:EVSE": "FRZTLE22AC128615;FRZTLE22AC128616", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32340400000, + 49.17014000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/Q60WEBZNBK", + "ref:EU:EVSE": "FRS10P8940837122826724286", + "ref": "32029" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09802300000, + 48.31434000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PXREDGG", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/XREDGG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79441", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82170000000, + 50.04980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*64*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BERCK", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST6413;FRIZFPFAST6412;FRIZFPFAST6411", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59470850000, + 50.40389730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MISSILLAC - Rue Du Chemin De La Ville;OuestCharge - Diva Sp - Missillac - Ville", + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44098A;FRS44E44098001", + "amenity": "charging_station", + "start_date": "2021-05-21;2024-04-22", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15995100000, + 47.48299200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77260001;FRS77P77260A", + "start_date": "2023-05-10;2016-01-19", + "description": "LONGUEVILLE - Rue Michel Gendron;Longueville", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61MGQBB90EPZZ6RBP9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24652400000, + 48.51399200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "FRGYMP5987075068756897423", + "capacity": "2", + "amenity": "charging_station", + "description": "GreenYellow Shift Mobility/96", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "GreenYellow | FR*GYM", + "ref": "1167594" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78853800000, + 43.92921900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - ATHEE SUR CHER - Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-10-18", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221258;FRS37E221257", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ATHEE SUR CHER - Pl. de la mairie", + "ref": "FRS37E221258;FRS37E221257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91599400000, + 47.32201500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SEUIL D'ARGONNE - Pl. Poincaré", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - SEUIL D'ARGONNE - Pl. Poincaré", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66173;FRS55E66174", + "ref": "FRS55E66173;FRS55E66174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05980200000, + 48.97847900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VIL16 - CHAPLIN - STALINGRAD", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON11341;FRGLYPLYON11321;FRGLYPLYON11311;FRGLYPLYON11331", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-08-24", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*113*4*_*_;FR*SOD*S*LYON*113*3*_*_;FR*SOD*S*LYON*113*1*_*_;FR*SOD*S*LYON*113*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85932400000, + 45.77464300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "operator": "Mobilize Power Solutions", + "description": "BODEMER St Lo", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "network": "BODEMER St Lo", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMBZEUCDWT", + "ref": "9ce21bfc-2f6b-4c76-9fcc-95373d4c51b5", + "start_date": "2024-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07826679814, + 49.13361750457 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "BMW - Chaumont", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSAVYBMW520001", + "start_date": "2024-09-30;2023-02-23", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 13:30-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14625800000, + 48.08805800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BORNE HU BORNE 2", + "amenity": "charging_station", + "capacity": "4", + "description": "BORNE HU BORNE 2", + "ref:EU:EVSE": "FRCPIE6609555;FRCPIE6557355", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6609555;FRCPIE6557355", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49080600000, + 43.45161400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/BHJBR6MTSL", + "ref:EU:EVSE": "FRLE2P2481136202064698096", + "ref": "477750" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60899500000, + 49.31810300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "b8f6ef45-0362-582f-b31a-19fa0923baf7", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Le Teich | Parking Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02583300000, + 44.63277800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "19ec5009-bb65-5cbf-8723-78a671edc9ab", + "description": "Lisses - Place du Général Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42521600000, + 48.59732100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO0000011", + "description": "Allego NISSAN Fleury-les-Aubrais", + "amenity": "charging_station", + "capacity": "1", + "network": "Allego NISSAN Fleury-les-Aubrais", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO0000011", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89701970000, + 47.92866759000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3873EVCP01;LFR3873EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "CASTELNAU DE MEDOC Avensan", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3873EVCP01;LFR3873EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78678100000, + 45.02884400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-08-27", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE7112;FRM06PNICE7111", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-ETIENNE-DE-TINEE - CHEMIN DE LARDON", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*71*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92200200000, + 44.25660300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*204*2*_*_;FR*SOD*S*WIIZ*204*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ20411;FRA16PWIIZ20412;FRA16PWIIZ20421;FRA16PWIIZ20422", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FREJUS - PARKING SQUARE ROLAND GARROS", + "start_date": "2022-12-02", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74681200000, + 43.41919200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P1620363084361748900", + "network": "Freshmile France", + "ref": "487194", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CLKIBX2TKQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43852100000, + 43.52868400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marie Blachère Rivieres (16)", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBCRIV", + "socket:type2_combo:output": "100 kW", + "start_date": "2024-10-03", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38674315278, + 45.75092644094 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-01-12", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLCSCVQIEWU;FREBNP7050120341371939720", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Aiguilhe, Quincieu – Parking Salle Multisport;Réseau eborn/LCSCVQIEWU", + "ref": "LCSCVQIEWU;699101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88127800000, + 45.04977800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP8911468417414597775", + "capacity": "7", + "description": "EVzen/66d49bcc-aff4-4c4f-ab1a-f1cecd0a2849", + "socket:type2_combo:output": "120 kW;180 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1029546", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "charging_station:output": "22 kW;120 kW;180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75758300000, + 48.50394900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-09-12;2020-08-12", + "description": "AGEN - Reine Garonne", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E47001003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61549200000, + 44.20408200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP590305C6AAD59", + "ref": "231508;590305c6aad59", + "description": "Besson , Mairie;Réseau eborn/590305c6aad59" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26319000000, + 46.47100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com;roaming-dev@road.io", + "amenity": "charging_station", + "ref": "761445;1005591", + "capacity": "10", + "description": "Freshmile France/FO6DYAVEZA;Road/65a7d66c3b3b6f001dc828b4", + "charging_station:output": "14 kW;22 kW", + "operator": "Freshmile | FR*FR1;Road | FR*EFL", + "network": "Road;Freshmile France", + "opening_hours": "We,Mo,Sa,Su,Th,Fr,Tu 08:00-18:00;24/7", + "ref:EU:EVSE": "FREFLP3578522145565087188;FRFR1P5126656200678681004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24274900000, + 45.59673200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-20", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP121001", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Première Classe Blois" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33187000000, + 47.61242200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P6114747219480743982", + "operator:email": "roaming@freshmile.com", + "ref": "742926", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CNMYXQ1FIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.49691000000, + -20.90150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1108", + "start_date": "2021-06-18", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris | Boulevard Richard Lenoir 36", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX11*08", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37139000000, + 48.85725900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/FRILS7BK9O", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P292154709266696122", + "ref": "466020", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.45930000000, + -21.33442700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-07-21;2021-11-02", + "description": "Volvo Angoulème", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPPERICAUD164301", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17449800000, + 45.68902800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PBOSCROGERROUMOISCEN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27", + "description": "900092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92208300000, + 49.29067100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS21P21154A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "ref": "180359", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "description": "SICECO/FR*S21*P21154*A", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57212000000, + 47.86279400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-03", + "ref:EU:EVSE": "FRY03E78481002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE PECQ - Théâtre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10686000000, + 48.89874000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK8241;FRQPKPQPRK8231;FRQPKPQPRK8211;FRQPKPQPRK8221", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*82*1*_*_;FR*SOD*S*QPRK*82*2*_*_;FR*SOD*S*QPRK*82*3*_*_;FR*SOD*S*QPRK*82*4*_*_", + "start_date": "2024-07-09;2023-07-21", + "opening_hours": "24/7", + "description": "QPARK - NANCY CHRU MATERNITE - 10 AVENUE DU DOCTEUR HEYDENREICH 54000 NANCY", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "charging_station:output": "7.4 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18956500000, + 48.68130300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLJNY1MSZ2", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP4784835965373307627", + "charging_station:output": "7.4 kW;22 kW", + "ref": "706226", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64838800000, + 48.52690100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Jardin des arbres;IONITY GMBH", + "description": "Jardin des arbres;IONITY Jardin des arbres", + "ref": "FRIOYE415653;FRIOYE415652;FRIONE415600;FRIOYE415601;FRIOYE415602;FRIOYE415603;FRIOYE415604;FRIOYE415651", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "start_date": "2020-10-02;2020-09-30", + "operator": "IONITY", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE415653;FRIOYE415652;FRIONE415600;FRIOYE415601;FRIOYE415602;FRIOYE415603;FRIOYE415604;FRIOYE415651", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68473100000, + 47.85240500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - CHALONS EN CHAMPAGNE - Bd. Vaubecourt", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E125306;FRS51E10672;FRS51E10673;FRS51E125305", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E125306;FRS51E10672;FRS51E10673;FRS51E125305", + "capacity": "4", + "charging_station:output": "0 kW", + "description": "MODULO - CHALONS EN CHAMPAGNE - Bd. Vaubecourt", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36394976000, + 48.95182009000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-19", + "description": "Mormant", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77317A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH61ZAYE68C06G8Q9BMV", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89050000000, + 48.60649900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080259", + "ref": "FRHPCPNF080259", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "531681542;531681539;531681540;531681541", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS DE MEYLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78100000000, + 45.19720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS41E2954;FRS41E2955", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST AIGNAN - Pl. du Président Wilson", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - ST AIGNAN - Pl. du Président Wilson", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E2954;FRS41E2955", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37315900000, + 47.26894300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Plescop - Rue de la République", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLTFJPE", + "start_date": "2016-08-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80441600000, + 47.69746800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "559733;LFR3233EVCP01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3233EVCP01;FRFR1P1816646748988464603", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "description": "Freshmile/IQU4R0ABMI;DOLE Bellonte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48983700000, + 47.08234700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "419967", + "capacity": "7", + "description": "Métropolis/FR*MGP*P92049*B", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92049B", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361400000, + 48.81256200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPSAGGPEUGEOT694701", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "description": "Peugeot - SAGG - Cours-la-Ville", + "opening_hours": "24/7", + "start_date": "2020-05-19", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32123200000, + 46.10542600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "448848283", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRC2P000301", + "description": "STATION CIEL", + "charging_station:output": "22 kW", + "network": "STATION CIEL", + "start_date": "2021-06-10", + "operator": "CAR2PLUG", + "opening_hours": " 24/7", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92596268654, + 45.74607681215 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/TJGAVFF5GW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P6133452348046786913", + "ref": "477786" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91854300000, + 48.95732900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Rivedoux | Place des Lions", + "ref": "b6a7dddb-a27c-50c4-a3d7-5f814c592140", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27607700000, + 46.15982200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "ANIZY LE GRAND - ZAC", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE02ABCA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-04-26", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44338200000, + 49.50474400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Allego FR, Bazalp, TV3 Colmar", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO8007602;FRALLEGO8007601;FRALLEGO8001352;FRALLEGO8001321;FRALLEGO8001322;FRALLEGO8001351;FRALLEGO8001381;FRALLEGO8001382", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2024-07-01", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO8007601;FRALLEGO8001381;FRALLEGO8001352;FRALLEGO8001321;FRALLEGO8001322;FRALLEGO8001351;FRALLEGO8001382;FRALLEGO8007602", + "network": "Allego FR, Bazalp, TV3 Colmar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36456600000, + 48.10949300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/XFYFEZAQNO", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "454353", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8193805401049665194" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65832000000, + 48.42879400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Gemenos, Chemin de Routelle", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PEY80KDCGAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62745100000, + 43.29344400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "488892;402461", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/CFQAIZFBFN;SDEY/RBJSJAWJIU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P1182981947973856296;FRS89P4202510737102733424", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16613100000, + 47.77365000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*54*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "VALLAURIS PARKING MAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-06", + "ref:EU:EVSE": "FRA16PWIIZ5412;FRA16PWIIZ5411", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05604800000, + 43.57943000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5233791440738286571", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "ref": "471171", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/S4ZHGIJPO6", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45320300000, + 49.10410300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-06-23", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSCIOBG", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "description": "Optical Center - Brive-la-Gaillarde", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49565350000, + 45.14977850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1176282;LLTHE8SK61OERI", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLTHE8SK61OERI;Saint-François-Longchamp, Parking Mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLLTHE8SK61OERI;FREBNP7768495665885791946", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34876900000, + 45.41009200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP3543539831576197584", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "Norauto - Bornes publiques/1389CA75-EEAA-4C7F-B250-256D79907116", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "746973", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77970200000, + 45.80773900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "CAMP ATLANTIC", + "description": "CAMP ATLANTIC - LACANAU", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-07-18", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*665*4*_*_;FR*SOD*S*OTHR*665*1*_*_;FR*SOD*S*OTHR*665*2*_*_;FR*SOD*S*OTHR*665*3*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR66541;FROTHPOTHR66531;FROTHPOTHR66511;FROTHPOTHR66521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19254800000, + 45.00950200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Montbrison, Parking avenue thermale", + "network": "eborn", + "ref:EU:EVSE": "FREBNPATU4HTPHF1", + "ref": "ATU4HTPHF1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07149870000, + 45.59600700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPPXOA6DYBFU", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "85997", + "description": "Réseau eborn/PXOA6DYBFU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87573100000, + 46.17604500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SUPER U - CHALONNES-SUR-LOIRE", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR35361;FROTHPOTHR35341;FROTHPOTHR35311;FROTHPOTHR35321;FROTHPOTHR35331;FROTHPOTHR35351", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*353*5*_*_;FR*SOD*S*OTHR*353*4*_*_;FR*SOD*S*OTHR*353*3*_*_;FR*SOD*S*OTHR*353*1*_*_;FR*SOD*S*OTHR*353*2*_*_;FR*SOD*S*OTHR*353*6*_*_", + "start_date": "2022-03-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75876500000, + 47.34883300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P616048465830506472", + "operator:email": "roaming@freshmile.com", + "ref": "471051", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "description": "Freshmile France/FAONUN3BFI", + "opening_hours": "Tu,Mo,Th,We,Fr 08:00-18:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07700700000, + 47.35132300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP11605", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Aire de l'Abis, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97656800000, + 45.52497100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EK29BLZG2U", + "operator:email": "roaming@freshmile.com", + "ref": "705914", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3106884884214866254", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24052300000, + 48.80027300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "start_date": "2023-08-09", + "capacity": "3", + "description": "Audi - ByMyCar - Villefranche sur Saone", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBYMYCARAUDI694001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74353400000, + 45.99200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "description": "900073", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PPACYSUREUREGARE", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38267500000, + 49.01392500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Moncontour-Place de la carrière", + "ref:EU:EVSE": "FRS22E22153001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.63364500000, + 48.35979400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "411793177", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-09-03", + "description": " Bricomarché - Nontron - 22kW AC ;Bricomarché - Nontron - 22kW AC", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", + "network": "BRICOMARCHE NONTRON - S.A.S PERIVERT", + "ref:EU:EVSE": "FRZIME22AC76647;FRZIME22AC76648", + "operator": "ZEBORNE", + "ref": "76647;76648" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67090030000, + 45.54322070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-24;2022-02-24", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE278", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "FPB_Decize", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46739890000, + 46.83683490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78172006", + "network": "CPO Alizé Liberté Public", + "description": "CONFLANS-SAINTE-HONORINE - Rue Eugène Berrurier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09813414915, + 48.99764396495 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE417651;FRIOYE417606;FRIOYE417601;FRIOYE417602;FRIOYE417603;FRIOYE417604;FRIOYE417605;FRIOYE417652;FRIOYE417653", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2022-05-16", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE417651;FRIOYE417606;FRIOYE417601;FRIOYE417602;FRIOYE417603;FRIOYE417604;FRIOYE417605;FRIOYE417652;FRIOYE417653", + "description": "Verdun Saint-Nicolas Sud", + "network": "Verdun Saint-Nicolas Sud", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50979300000, + 49.11857100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-16;2021-06-01", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "description": "AMBRIERES-LES-VALLEES - Place Du Château;OuestCharge - Diva Sp - Ambrieres-Les-Vallees - Château", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS53P53003A;FRS53E53003001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62993660000, + 48.40301590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65460001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VIC BIGORRE - parking centre multimédia", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05527000000, + 43.38707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE006902;FRIENE006901", + "network": "Saint-Vincent-d'Autéjac", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "ref": "FRIENE006902;FRIENE006901", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Saint-Vincent-d'Autéjac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48584000000, + 44.15779100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "description": "LA GRANDE MOTTE - Quai Tabarly ", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34344006", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08046070000, + 43.55982470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61195A", + "operator:email": "Exploitation@tevgo.fr", + "description": "LE GRAIS", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-LEGR-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32785200000, + 48.63937200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9010171218787250000", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1034499", + "network": "Freshmile France", + "charging_station:output": "100 kW", + "description": "Freshmile France/LLSBPHR1F1S2X3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62999700000, + 46.24789400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PUDMJKD", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "94304;UDMJKD", + "description": "Roulez Électrique En Haute-Garonne/UDMJKD;Villemur-sur-Tarn", + "start_date": "2018-04-16", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50365000000, + 43.86490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-03", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92004021", + "description": "ASNIERES-SUR-SEINE - Rue Jean-Jacques Rousseau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29481484233, + 48.91278924272 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "FRCG0E000200;FRCG0E000199", + "network": "BMW MINI - HERMONE AUTOMOBILE - Thonon-les-Bains - 74200 - 1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000200;FRCG0E000199", + "start_date": "2022-03-02", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "info@chargeguru.com", + "description": "BMW MINI - HERMONE AUTOMOBILE - Thonon-les-Bains - 74200 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44193400000, + 46.34960600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "start_date": "2021-07-29", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - PARKING TURIN / A8", + "ref:EU:EVSE": "FRM06PNICE13221;FRM06PNICE13222", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*132*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28795800000, + 43.73067500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Mimizan | Parking Segosa", + "operator": "199__SYDEC40", + "ref": "d6cae95c-efb7-5804-b629-b0c6e5c3564f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29203200000, + 44.21330300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "BEAUVOIS EN CAMBRESIS - Centre", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE59BACA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-07-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37972400000, + 50.13790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - SAGS - Porte de Clignancourt - Paris", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "289475", + "ref:EU:EVSE": "FRBMPS289475", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34481750000, + 48.90006340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3207EVCP02;LFR3207EVCP01;LFR3207EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3207EVCP02;LFR3207EVCP01;LFR3207EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "CONDREN Chauny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27649000000, + 49.64956000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "654bbdad-c3a3-5a00-a10c-ac6e0f33b7a7", + "description": "MOBIVE | Brive | Mairie de Brive-La-Gaillarde", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53375800000, + 45.15945000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Étiolles - Boulevard Charles de Gaulle", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "5aa802bd-7b75-5eda-a216-2a935e59418e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47119100000, + 48.63675300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "RUE MARTIN LUTHER KING - AVIGNON", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84000*AVG*MLK", + "operator:email": "contact@e55c.com", + "start_date": "2021-01-08", + "charging_station:output": "22.08 kW;7.36 kW", + "ref:EU:EVSE": "FR55CP84000AVGMLK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79695200000, + 43.94314900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "BAGNOLS SUR CEZE - Avignon", + "ref:EU:EVSE": "LFR3988EVCP03;LFR3988EVCP02;LFR3988EVCP01", + "ref": "LFR3988EVCP03;LFR3988EVCP02;LFR3988EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64794700000, + 44.15194700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PVALMOU", + "socket:type2_combo:output": "120 kW", + "description": "Valimmo Mougins HUB N°2", + "start_date": "2024-09-18", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97207100000, + 43.61236800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/GGVI7THWNN;Coublevie, Impasse Des Genets", + "ref": "85700;GGVI7THWNN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPGGVI7THWNN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59829300000, + 45.34977400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "13", + "amenity": "charging_station", + "ref": "1090434", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7723255871669293369", + "opening_hours": "24/7", + "description": "Freshmile France/HPOS14DX5I", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433000000, + 48.90150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking Marseille Félix Baret - EFFIA", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "start_date": "2024-06-16", + "ref:EU:EVSE": "FRP01E13201005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38022738000, + 43.29115018000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*CAPS*8*1*_*_", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-01-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PALAISEAU - AUVERGNE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRCPSPCAPS811;FRCPSPCAPS812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24632600000, + 48.71475600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/JBGVKCN6U7;La Roquebrussanne, Place Gueit", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPJBGVKCN6U7;FREBNJBGVKCN6U7", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "JBGVKCN6U7;79207", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97666200000, + 43.33822000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "BRICOMARCHE - MILLY LA FORET", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR47311;FROTHPOTHR47312", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-06", + "ref": "FR*SOD*S*OTHR*473*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41973800000, + 48.39710400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TMKRKF2NVZ", + "ref:EU:EVSE": "FRFR1P4213947917255957828", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "626285", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30818100000, + 46.06964700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "12 Rue des Caraques", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10064408;FRUBIE10019270", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20208300000, + 49.50561100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/TIVE2CNYCX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "419145", + "ref:EU:EVSE": "FRFR1P1170024455518189237", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11513300000, + 45.77976100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Rue du Général J.Guillaut", + "ref:EU:EVSE": "FRTLSE31555010", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46780000000, + 43.57827000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892287", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5692341157757935060", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLIWW36VL49NY2", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19763700000, + 47.97468600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P944287266190789059", + "ref": "1084854", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLV6ONLLHXML7X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23479000000, + 49.24947900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "VILLEGLY - Villegly 1", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-01-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS11E11426001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43638200000, + 43.28191300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHÂTEAUFORT - Moulin", + "start_date": "2023-06-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78143002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09493000000, + 48.73618000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "ref": "684a149e-fc0b-5e98-9ae2-24b7ce143ae3", + "network": "CPO CITEOS SDE54", + "description": "SDE54 - CCMM - Neuves-Maisons", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10679400000, + 48.61568200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "65012;347171", + "description": "SIED70/FR*S70*PWTQUNF;SIED70/WTQUNF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "18 kW;22 kW", + "ref:EU:EVSE": "FRS70PWTQUNF;FRS70P2798446033912958865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37407000000, + 47.81930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59018001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ARNEKE - Rue de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41118150000, + 50.83105260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35288003B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "description": "ST MALO - 5 boulevard de la tour d auvergne ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00806600000, + 48.65160400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "description": "SIEG63 - ePremium - Clermont Ferrand - Bruyant;SIEG 63/FR*S63*P63113*J", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63113J", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "533921", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-10-12", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08381500000, + 45.76490200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P189391161653757677", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/PPXUSFEVQZ", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "370148" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53107100000, + 49.29204600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS32PRAMSWR", + "operator:email": "roaming@freshmile.com", + "ref": "21818", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/RAMSWR", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91559800000, + 43.47450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE94003001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-01-14", + "description": "ARCUEIL - Rue Emile Raspail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33159500000, + 48.80000700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRCG0E001882;FRCG0E001347;FRCG0E001348;FRCG0E001879;FRCG0E001880;FRCG0E001881", + "amenity": "charging_station", + "network": "Volvo Construction Equipment France 33 - 78190 - 2", + "ref:EU:EVSE": "FRCG0E001882;FRCG0E001347;FRCG0E001348;FRCG0E001879;FRCG0E001880;FRCG0E001881", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "description": "Volvo Construction Equipment France 33 - 78190 - 2", + "operator:email": "info@chargeguru.com", + "opening_hours": "Fr 07:30-19:00,Th 07:30-19:00,We 07:00-19:00,Tu 07:30-19:00,Mo 07:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98748800000, + 48.76694500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*250*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING CENDO", + "ref:EU:EVSE": "FRM06PNICE25012;FRM06PNICE25011", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24006967411, + 43.69227699022 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "2528c9f4-0125-5322-8980-c8206445ee24", + "description": "MOBIVE | Tombeboeuf | Place du Basket" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45167600000, + 44.50532500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE38712;FRSIGPSIGE38711", + "ref": "FR*SOD*S*SIGE*387*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "description": "SIGEIF - PARKING STADE DELAUNE - SANNOIS", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25756000000, + 49.97165000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "network": "Métropole Rouen Normandie", + "description": "MONT SAINT AIGNAN - Parc de la Vatine", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76451002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09424470000, + 49.47649720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3173EVCP01;LFR3173EVCP02", + "capacity": "4", + "ref": "LFR3173EVCP01;LFR3173EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "CARPENTRAS Eisenhower" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05053800000, + 44.03698100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "0e9153e7-6b0d-50f1-b675-fd41c73845e4", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Les Mathes | Rue Sainte Marie", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14555000000, + 45.71733100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PCORBARIEU", + "description": "SDE82/corbarieu", + "operator:email": "roaming@freshmile.com", + "ref": "38950", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36766000000, + 43.94370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARISTIDE BRIAND - LE PLESSIS-ROBINSON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-05", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*55C*P92350*LPR*BR1AND", + "ref:EU:EVSE": "FR55CP92350LPRBR1AND", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25948000000, + 48.78001000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHANTONNAY - Corne", + "ref:EU:EVSE": "LFR4010EVCP01;LFR4010EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR4010EVCP01;LFR4010EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05601300000, + 46.69575100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMMSB", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "description": "Intermarché - Mirebeau-sur-Bèze", + "start_date": "2024-03-29", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30982142936, + 47.39284434157 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/LLTHE8SP2IRQ16;Satillieu, Place de la Faurie", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "1155288;LLTHE8SP2IRQ16", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPLLTHE8SP2IRQ16;FREBNP1966174748984768645", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61607100000, + 45.15049600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRETIP77284A", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP77284A", + "start_date": "2023-11-21", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - SCI Victoire Meaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92862500000, + 48.95741800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORCOL", + "opening_hours": "24/7", + "start_date": "2023-09-27;2023-11-21;2023-11-24", + "operator": "Power Dot France", + "charging_station:output": "40 kW;80 kW;50 kW;22 kW", + "description": "Cora - Colmar", + "operator:email": "hello@powerdot.fr", + "socket:type2_combo:output": "40 kW;80 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36993827116, + 48.12786586151 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT611201", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Vimoutiers", + "opening_hours": "24/7", + "start_date": "2024-04-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19904500000, + 48.93390700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2023-10-09", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPBBQIM", + "description": "Bousbecque - Intermarché", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08415500000, + 50.76964200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-24", + "description": "AUCHAN - SAINT NAZAIRE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "ref:EU:EVSE": "FROTHPAUCH16012;FROTHPAUCH16011", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*160*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20904150000, + 47.30279920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "BORNE CHARGE CE BORNE COT ETIQU", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6778195", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6778195", + "description": "BORNE CHARGE CE BORNE COT ETIQU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25616500000, + 49.31253600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SUUVYU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7885353351118885945", + "ref": "346517", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81137000000, + 49.14980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref:EU:EVSE": "FRV75P901203", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9012*03", + "capacity": "3", + "description": "Paris | Cours de Vincennes 66", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40173600000, + 48.84748500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8445840289111365436", + "ref": "466071", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KQ9R7VJ1CG", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20465400000, + 46.15217900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4;6", + "opening_hours": "24/7", + "charging_station:output": "125 kW;150 kW", + "socket:type2_combo:output": "125 kW;150 kW", + "ref:EU:EVSE": "FRTSLP2819;FRTSLP1738", + "description": "Tesla Supercharger Cagnes-sur-Mer;Tesla Supercharger Calais", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12735500000, + 43.66646600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLJ2K1XZH2333U", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P227976118908563731", + "operator": "Freshmile | FR*FR1", + "ref": "892302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.91941600000, + 48.71267500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-05-04", + "description": "R3 - Norauto Nancy Laxou", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89363751", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12795000000, + 48.69356100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/LLU9UWAQK2CHRH", + "capacity": "2", + "amenity": "charging_station", + "ref": "1052511", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS14P6660208992796550260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34857700000, + 49.15617200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT SYMPHORIEN DE THENIERES - Saint Gervais", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12250001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67907100000, + 44.73712800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P1156681965945622270", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LNJ2OROHI", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref": "972749" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36723100000, + 48.64875900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "LA TESSOUALLE - Place de la Poste;OuestCharge - Diva Sp - La Tessoualle - Poste", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-08;2024-04-10;2021-04-29", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49343A;FRS49E49343001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85034900000, + 47.00548400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRAULHET - Place Du Languedoc", + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8110500122;FRS81E8110500121;FRS81E8110500112;FRS81E8110500111", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2017-09-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99274825118, + 43.76303742799 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "ref": "FRHPCPNF038838", + "ref:EU:EVSE": "FRHPCENF038838", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "start_date": "2024-08-05", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS TOUR D'AIGUES", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54193000000, + 43.72118100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46149001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAMAGDELAINE - Salle Des Fêtes", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48515000000, + 44.46622000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PPDYFKZ", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Radenac - Rue Anne de Bretagne", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.71399300000, + 47.96186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DOUAI - Rue d'Arleux", + "ref:EU:EVSE": "FRH04E59178006", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08017300000, + 50.36216000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2922000", + "charging_station:output": "22 kW", + "description": "Pont l Abbe-Rue de la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22465600000, + 47.87065900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "SAINT-MAUR-DES-FOSSÉS - Parking Place Des Marronniers", + "ref:EU:EVSE": "FRSIPE94068006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49762264784, + 48.80528352047 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOURESSE-1-2;BOURESSE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "B011", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-11-25", + "ref:EU:EVSE": "FRLMSE12346051222;FRLMSE12346051221;FRLMSE12346051211;FRLMSE12346051212", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61114000000, + 46.36157100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "340658", + "capacity": "4;6", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92063I", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Proximité - Rueil-Malmaison - Bois Préau;Métropolis/FR*MGP*P92063*I", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17346100000, + 48.87709200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 3 RUE DES TILLEULS - MONTSOULT", + "ref": "FR*SOD*S*SIGE*62*1*_*_", + "start_date": "2021-03-17", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE6212;FRSIGPSIGE6211", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30765700000, + 49.06973000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSCHELL", + "start_date": "2023-12-15", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "CHELLES", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61055000000, + 48.87840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "397906264", + "start_date": "2022-02-17", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ZEENCO", + "description": "Dulamon Auto", + "ref:EU:EVSE": "FRLMSE1000043430", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45870000000, + 43.53783000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1a2c4520-1a60-54f0-ae27-1df4fb120a54", + "description": "MOBIVE | Monein | Jardin Public", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57909900000, + 43.32256300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS85E85109003", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LES HERBIERS - Rue Pierre De Coubertin", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01728000000, + 46.86148100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "QUIMPER", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-21", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSQMPER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10767000000, + 47.98307700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LISIEUX Duval", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3105EVCP01", + "ref": "LFR3105EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27172800000, + 49.14533600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "188 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "188 kW;50 kW;22 kW", + "amenity": "charging_station", + "description": "E.Leclerc - Libourne", + "opening_hours": "24/7", + "start_date": "2023-11-13", + "capacity": "9", + "ref:EU:EVSE": "FRPD1PLCLLBN", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24023943445, + 44.92878135329 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Unieux, Parking le Pertuiset", + "ref:EU:EVSE": "FREBNPQOX8DO7S4R", + "ref": "QOX8DO7S4R", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25111960000, + 45.40931420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "description": "EVzen/698C38B7-6746-4E29-9F94-C269DD2DC2A6", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref": "1133745", + "ref:EU:EVSE": "FREVZP5101274405760633760" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92147500000, + 47.38475800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PGENBAY", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "description": "Hôtel Restaurant Les Genêts - Bayonne", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "start_date": "2023-03-30", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49594370000, + 43.46492260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 03:30-20:30, Tu 03:30-20:30, We 03:30-20:30, Th 03:30-20:30, Fr 03:30-20:30, Sa 03:30-20:30, Su 03:30-20:30", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Leroy Merlin - Le port", + "start_date": "2020-09-30", + "ref:EU:EVSE": "FRE11PLM974381", + "charging_station:output": "7.36 kW", + "capacity": "10", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.31006200000, + -20.95355500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP05170", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2024-05-31", + "description": "e-Totem - LE MAS D'ESTELLO - TALLARD", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP05170", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03162800000, + 44.44570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR15821;FROTHPOTHR15811;FROTHPOTHR15831;FROTHPOTHR15841", + "network": "KAFREMBO", + "description": "LES TOURRES - PARKING SOUTERRAIN HATS MODS HAIR...", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-14", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*158*2*_*_;FR*SOD*S*OTHR*158*1*_*_;FR*SOD*S*OTHR*158*3*_*_;FR*SOD*S*OTHR*158*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47262900000, + 43.33800800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-21:00,Tu 08:00-21:00,We 08:00-21:00,Th 08:00-21:00,Fr 08:00-21:00,Sa 08:00-21:00", + "capacity": "5", + "amenity": "charging_station", + "network": "BORNES ESPACE55 STATION 4", + "charging_station:output": "22 kW", + "description": "BORNES ESPACE55 STATION 4", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6963415;FRCPIE6963395;FRCPIE6963385;FRCPIE6963375;FRCPIE6963405", + "ref": "FRCPIE6963415;FRCPIE6963395;FRCPIE6963385;FRCPIE6963375;FRCPIE6963405", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07789100000, + 45.93353700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7404253760720751406", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLXU85634TTMMW", + "ref": "1184944", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55955800000, + 44.80653400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-07-22", + "ref:EU:EVSE": "FRVIAP122063", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - B&B HOTEL MARNE-LA-VALLEE BUSSY-SAINT-GEORGES", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70431300000, + 48.83155900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/QBFZECLLXJ", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2455035455422514729", + "ref": "626225", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03207600000, + 48.28769400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ford- Saint-Brieuc", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-19:00", + "ref:EU:EVSE": "FRSSDPDMD220001", + "start_date": "2022-11-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74128000000, + 48.50130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLIDCQ4E41W16R", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3648155780281432443", + "ref": "892113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09309000000, + 48.26196200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2022-09-30", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Kia - Dieppe", + "ref:EU:EVSE": "FRSSDPMOTORSKIA763701", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10490300000, + 49.90671600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LE THIEULIN - Rue de la mairie", + "ref:EU:EVSE": "FRS28E134175", + "network": "MODULO - LE THIEULIN - Rue de la mairie", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS28E134175", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13248609000, + 48.40772761000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/FVD33KIR4U", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRS14P7756814293700854423", + "ref": "757020", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542000000, + 49.28792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P9021688032152596532", + "ref": "1127961", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LKQN5XBRS", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43010700000, + 48.93321400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-14", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50420001", + "network": "e-charge50", + "description": "TESSY BOCAGE - Rue des Anciennes Halles", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05910780000, + 48.97347090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81257001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "description": "SAINT JUERY - Place De La Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21120700000, + 43.94921400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF078171", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "ref:EU:EVSE": "FRHPCENF078171", + "description": "RELAIS AMIRAL MOUCHEZ", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "start_date": "2022-06-15", + "charging_station:output": "175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14961600000, + 49.48755900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49007022;FRS49P49007V", + "amenity": "charging_station", + "description": "ANGERS - Boulevard Dumesnil;OuestCharge - Diva Sp - Angers - Dumesnil", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-03-28;2021-04-26;2024-04-02", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56653800000, + 47.47330200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PPONTARMEGLISE", + "ref": "46588", + "description": "Mouv'Oise/pontarmeglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55009000000, + 49.15440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH08E59295007", + "description": "HAZEBROUCK - Rue Notre Dame" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54217000000, + 50.72863000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRUVIERS-LASCOURS - Parking Parvis Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30100001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20450200000, + 44.00328100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/LBRBBU", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PLBRBBU", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56", + "ref": "24742" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54602000000, + 47.95410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOULISMES AIRE T2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346367101", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2024-06-26", + "ref": "B173", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80996886384, + 46.33314664189 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-02-07", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93077B", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Villemomble - Outrebon;Métropolis/FR*MGP*P93077*B", + "owner:ref:FR:SIREN": "885354860", + "ref": "484841", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51134300000, + 48.88911000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "amenity": "charging_station", + "ref": "FRSHEE45;FRSHEE43;FRSHEE387;FRSHEE386;FRSHEE385;FRSHEE388;FRSHEE44", + "description": "Shell- France Aire de Sommesous RN4", + "opening_hours": "24/7", + "network": "Shell- France Aire de Sommesous RN4", + "ref:EU:EVSE": "FRSHEE45;FRSHEE43;FRSHEE387;FRSHEE386;FRSHEE385;FRSHEE388;FRSHEE44", + "capacity": "21", + "socket:type2_combo:output": "75 kW;300 kW", + "charging_station:output": "22 kW;75 kW;300 kW;125 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22809100000, + 48.72924200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-19;2023-01-07", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBE1E42168001", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "PELUSSIN - Rue de l'Europe (Publique)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69162570000, + 45.42103590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - A16 Lormaison Est", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89370713", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09750900000, + 49.24587800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "f9dcfdf2-6bfe-53a3-ae1f-32137fd778b1", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Rouillac | Place du Champ de Foire", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06449600000, + 45.77404800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "L'Adresse Restaurant", + "start_date": "2024-01-31", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62CABA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94412000000, + 50.44764900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Stains", + "ref": "FRALLEGO9006391;FRALLEGO9006251;FRALLEGO9002451;FRALLEGO9001471;FRALLEGO9001192;FRALLEGO9001191;FRALLEGO9001472;FRALLEGO9002452;FRALLEGO9002453;FRALLEGO9006252;FRALLEGO9006392", + "network": "Allego Carrefour Stains", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9006391;FRALLEGO9006251;FRALLEGO9002451;FRALLEGO9001471;FRALLEGO9001192;FRALLEGO9001191;FRALLEGO9001472;FRALLEGO9002452;FRALLEGO9002453;FRALLEGO9006252;FRALLEGO9006392", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38542600000, + 48.94821000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR3750EVCP02;LFR3750EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "ROMILLY SUR SEINE Entrepreneurs", + "capacity": "4", + "ref:EU:EVSE": "LFR3750EVCP02;LFR3750EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71255200000, + 48.50948100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRM29E29061002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GOUESNOU - Place Des Fusillés", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46562300000, + 48.45032300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPCKECHE1YMR;FREBNPFBD13FK4ZJ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-10-15", + "ref": "CKECHE1YMR;301186;301195;FBD13FK4ZJ", + "description": "La Londe-Les-Maures, Parking Chateauvert, 2;Réseau eborn/CKECHE1YMR;Réseau eborn/FBD13FK4ZJ;La Londe-Les-Maures, Parking Chateauvert, 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23848500000, + 43.13889000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLPMSIENS2QIPG", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1795614795771563269", + "ref": "1002897", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16993100000, + 49.10794200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "STRASBOURG - Silo Coop", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E674820056;FRP07E674820055;FRP07E674820054;FRP07E674820053;FRP07E674820052;FRP07E67482005;FRP07E674820051", + "charging_station:output": "22 kW", + "capacity": "60", + "start_date": "2024-03-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79143200000, + 48.57482020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Ville-La-Grand, Place Porte-Bonheur", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPZUDHFC7WPK", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref": "ZUDHFC7WPK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25005720000, + 46.20124240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1153677", + "ref:EU:EVSE": "FREFLP2390725904663438411", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/65f999a4127d52001c188445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55805100000, + 45.46763600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "E.LECLERC - ARES - ZONE 2", + "network": "E.LECLERC", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "ref:EU:EVSE": "FROTHPOTHR27291;FROTHPOTHR27261;FROTHPOTHR27251;FROTHPOTHR27241;FROTHPOTHR27231;FROTHPOTHR27221;FROTHPOTHR272151;FROTHPOTHR272141;FROTHPOTHR272131;FROTHPOTHR272121;FROTHPOTHR272111;FROTHPOTHR27211;FROTHPOTHR272101;FROTHPOTHR272161;FROTHPOTHR272171;FROTHPOTHR272181;FROTHPOTHR27271;FROTHPOTHR27281", + "ref": "FR*SOD*S*OTHR*272*9*_*_;FR*SOD*S*OTHR*272*7*_*_;FR*SOD*S*OTHR*272*4*_*_;FR*SOD*S*OTHR*272*3*_*_;FR*SOD*S*OTHR*272*2*_*_;FR*SOD*S*OTHR*272*14*_*_;FR*SOD*S*OTHR*272*13*_*_;FR*SOD*S*OTHR*272*12*_*_;FR*SOD*S*OTHR*272*11*_*_;FR*SOD*S*OTHR*272*1*_*_;FR*SOD*S*OTHR*272*10*_*_;FR*SOD*S*OTHR*272*15*_*_;FR*SOD*S*OTHR*272*16*_*_;FR*SOD*S*OTHR*272*17*_*_;FR*SOD*S*OTHR*272*18*_*_;FR*SOD*S*OTHR*272*5*_*_;FR*SOD*S*OTHR*272*6*_*_;FR*SOD*S*OTHR*272*8*_*_", + "start_date": "2021-11-05", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11251800000, + 44.76892300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6606665", + "operator:email": "info@chargepoint.com", + "network": "LE FRESNE BORNE 1", + "start_date": "2022-10-12", + "ref": "FRCPIE6606665", + "description": "LE FRESNE BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61672600000, + 47.41534300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/IWWUMCVSIG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "541775", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2946520525327894745" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39833200000, + 48.89512800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P7520435979044551367", + "description": "WAAT/s540963", + "ref": "1168257", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06443900000, + 50.66129400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PAKLPHK", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/AKLPHK", + "ref": "232465" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10311000000, + 47.27130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "aguerin@seeyousun.fr", + "start_date": "2021-09-17", + "description": "Les Fontenelles", + "opening_hours": "24/7", + "operator": "See You Sun", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRSYSELMSFON", + "network": "Le mans sun ", + "owner:ref:FR:SIREN": "824641294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23746500000, + 48.01838400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/T6PQZXSMTB", + "ref": "521366", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8606329334358089879", + "network": "Freshmile France", + "opening_hours": "Tu,We,Fr,Mo,Th 08:00-18:00", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75739700000, + 46.21397800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-17", + "description": "Genevray", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPGENEVRAY382001", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85791400000, + 45.50366100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Brignogan Plage-Rue de Naot Hir", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2902100", + "start_date": "2023-03-27", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32679700000, + 48.66479100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "88211", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/YGET3T8P8P", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7764073067735689742" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36418800000, + 47.99249900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC43386;FRZP1PEAC43385;FRZP1PEAC43384;FRZP1PEAC43383;FRZP1P803290591731392845", + "amenity": "charging_station", + "description": "GHO Sophia Antipolis;Zephyre/1948470", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "GHO Sophia Antipolis;Zephyre", + "ref": "95e5e145-fa87-44d1-b0c9-f490795504e6;575903", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "owner:ref:FR:SIREN": "310635537", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05615300000, + 43.61996200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE788", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2023-11-23", + "description": "Herlin_Invest ", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33335100000, + 50.36418800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/SNGDFA", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "79411", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PSNGDFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39265000000, + 50.08580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST15913;FRIZFPFAST15912;FRIZFPFAST15911", + "ref": "FR*SOD*S*FAST*159*1*_*_", + "description": "IZIVIA FAST - MC DONALDS - CONCARNEAU", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-05-02", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.91525727004, + 47.89006916274 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - CONTRES - Rue de la gare", + "ref": "FRS41E4692;FRS41E4693", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E4692;FRS41E4693", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CONTRES - Rue de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42500300000, + 47.41834900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PSERIFONTAINE", + "network": "Mouv'Oise", + "description": "Mouv'Oise/Serifontaine", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "34631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77086000000, + 49.35910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*69*2*_*_;FR*SOD*S*LYON*69*1*_*_", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-05-03", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON6912;FRGLYPLYON6911;FRGLYPLYON6921;FRGLYPLYON6922", + "description": "SPR05 - MENIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95211900000, + 45.69574000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E214061;FRS37E214062", + "charging_station:output": "0 kW", + "ref": "FRS37E214061;FRS37E214062", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - PARCAY MESLAY - Pl. de l'église", + "description": "MODULO - PARCAY MESLAY - Pl. de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74583800000, + 47.44188600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PHTGWJF", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Quistinic - Rue de la Résistance", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13532400000, + 47.90607100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P17028A", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "ETOTEM Aytré", + "operator:email": "contact@e-totem.fr", + "socket:type2_combo:output": "100 kW", + "charging_station:output": "50 kW;100 kW;43 kW", + "start_date": "2020-05-25", + "network": "ETOTEM Aytré", + "ref:EU:EVSE": "FRG10P17028A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09498820219, + 46.13314849171 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LUDRES - Pkg. de la mairie", + "ref": "FRN54E187776;FRN54E187775", + "description": "MODULO - LUDRES - Pkg. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2020-03-07", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRN54E187776;FRN54E187775" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16172000000, + 48.62190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "SIGEIF - 16 RUE MARAT - IVRY-SUR-SEINE", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*206*1*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20612;FRSIGPSIGE20611", + "opening_hours": "24/7", + "start_date": "2021-11-19", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38510000000, + 48.81043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E001853;FRCG0E001852", + "description": "C2PDL", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001853;FRCG0E001852", + "network": "C2PDL", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49231600000, + 44.85815600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Epinal - Gare", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2023-12-11", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90123484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44197800000, + 48.17829900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Cancon | Jardin Public", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "79d0a4f0-db08-50fa-95a4-318587203898", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62402500000, + 44.53630300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSE1PSE86CFPS", + "capacity": "2", + "amenity": "charging_station", + "description": "FUTUROPOLE - Chasseneuil du Poitou", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-06-21", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36101400000, + 46.66988700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2020-02-18", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ9911;FRA16PWIIZ9912", + "ref": "FR*SOD*S*WIIZ*99*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "VILLENEUVE-LOUBET - PARKING GARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13359200000, + 43.62893100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3807EVCP02;LFR3807EVCP01", + "description": "MIRANDE - Saint-Martin", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3807EVCP02;LFR3807EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40091000000, + 43.50962100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CLAIX - Gymnase Pompidou", + "start_date": "2024-03-25", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38111003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69234314278, + 45.12013577965 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/Z77EKJ57Z0;La Roche-Sur-Foron, Avenue de la Gare", + "ref:EU:EVSE": "FREBNPZ77EKJ57Z0", + "ref": "30494;Z77EKJ57Z0", + "start_date": "2020-06-18", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30372000000, + 46.06820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GPP1YONDA5", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5167804607504637557", + "ref": "786969", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16973700000, + 43.40428100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-01-17", + "ref:EU:EVSE": "FRP07E92063005", + "capacity": "9", + "description": "RUEIL-MALMAISON - République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17508010000, + 48.87999210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31918;HTGDQIHOM0", + "ref:EU:EVSE": "FREBNPHTGDQIHOM0", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/HTGDQIHOM0;Pierrelatte, Rue Charcot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69898600000, + 44.37231100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-12-08", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "socket:type2_combo:output": "50 kW;300 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPIADCC", + "charging_station:output": "50 kW;300 kW", + "operator": "ELECTRA", + "description": "L'Isle-Adam - CC Grand Val" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24691800000, + 49.12549900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E87085002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking Limoges Churchill - EFFIA", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25223170357, + 45.83230528225 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HMV / MOYENMOUTIER 2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE66430252", + "operator:email": "support.eu@chargepoint.com", + "ref": "FRCPIE66430152", + "network": "HOPITAUX MASSIF DES VOSGES", + "owner:ref:FR:SIREN": "200096824", + "operator": "ChargePoint" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88012609986, + 48.37601283657 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP1734904252974180377;FRECHPLLW6FSKXES4TGY", + "ref": "1092153;LLW6FSKXES4TGY", + "amenity": "charging_station", + "description": "Easy Charge/LLW6FSKXES4TGY;Besançon, Chemin des Vareilles", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "start_date": "2024-05-14", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04610500000, + 47.24264800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1802", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "ref": "FR*V75*PPX18*02", + "description": "Paris | Rue Henri Huchard 48", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33037500000, + 48.89919000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "741063", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3747050851562642269", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XT0CTGQFSH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61636600000, + 43.17996100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9018*05", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901805", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Ordener 27", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35423000000, + 48.89061000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PUMXEJQLLD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346346", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7616921903130865908" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03127600000, + 43.17587100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Hyundai -La Queue en Brie", + "ref:EU:EVSE": "FRSSDPEURODESNATIONSBMW945101", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20:00, Th 08:00-20:00, Fr 08:00-20:00, Sa 08:00-19:00, Su 09:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57038500000, + 48.78160900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2917600", + "operator": "Bouygues E&S", + "description": "Plonevez Porzay-Allée du Stade", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22115500000, + 48.12531300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LA REDORTE - Avenue Du Minervois", + "ref:EU:EVSE": "FRS11E11190001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65333333333, + 43.25138890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "534056148", + "ref:EU:EVSE": "FRZPEE74AC71708;FRZPEE74AC71707;FRZPEE22AC129846;FRZPEE22AC129868", + "description": "Mellone Construction - Roquevaire - 22kW AC ;Mellone Construction - Roquevaire - 22kW AC;Mellone Construction - Roquevaire - 7,4kW AC ", + "ref": "71707;129846;129868;71708", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "7.4 kW;22 kW", + "network": "MELLONE CONSTRUCTION", + "start_date": "2020-11-18;2021-09-03", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939000000, + 43.33679600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "QUERIGUT - Rue Carrière Dal Barris (Salle des fêtes)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-05", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09239001", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09749900000, + 42.70043200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/58d24440e77bf", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80P58D24440E77BF", + "capacity": "2", + "amenity": "charging_station", + "ref": "34649", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31279000000, + 49.94650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - MONTPELLIER SAINT-AUNES", + "start_date": "2024-09-23", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST3711;FRIZFPFAST3712;FRIZFPFAST3713", + "ref": "FR*SOD*S*FAST*37*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97750300000, + 43.65161890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - La Haie-Fouassiere - Etang;LA HAIE-FOUASSIERE - Rue De L'Étang", + "start_date": "2024-04-19;2021-04-21", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44E44070001;FRS44P44070A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39995300000, + 47.15532800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61697B2JJF1YQXZYFQ", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77187A;FRS77E77187001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-11;2016-01-25", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "FONTAINE-FOURCHES - Rue Mérot;Fontaine-Fourches" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39162000000, + 48.41394000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;47 kW;150 kW", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "description": "GreenYellow Shift Mobility/61", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGYMP2345979451867321202", + "operator": "GreenYellow | FR*GYM", + "ref": "978452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72207000000, + 48.55331200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - FONDETTES - Rue Edouard Branly", + "ref:EU:EVSE": "FRS37E220419;FRS37E220416", + "description": "MODULO - FONDETTES - Rue Edouard Branly", + "ref": "FRS37E220419;FRS37E220416", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62133245000, + 47.40762349000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "fcd17604-482e-5483-9e95-7126bd71447c", + "capacity": "2", + "amenity": "charging_station", + "description": "CCPHVA - Parking Place Juliot Curie - Villerupt", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "7.328 kW", + "operator": "51__CCPHVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92731400000, + 49.45875600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;60 kW", + "capacity": "8", + "amenity": "charging_station", + "network": "Super U Contres", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "120 kW;60 kW;22 kW", + "owner:ref:FR:SIREN": "389407610", + "start_date": "2024-05-02", + "description": "Super U Contres", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43598700000, + 47.43066300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "b899e733-efd4-5014-887d-33404752977d", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "191__SDEER17", + "description": "MOBIVE | MARENNES HIERS BROUAGE | Rue des entrepreneurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09645000000, + 45.82806700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "VILLEJUIF - Rue Rene Hamon", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-12-18", + "ref:EU:EVSE": "FRSIPE94076004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36110500000, + 48.79143720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6623905;FRCPIE6623885;FRCPIE6534535;FRCPIE6623895", + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6623905;FRCPIE6623885;FRCPIE6534535;FRCPIE6623895", + "charging_station:output": "22 kW", + "description": "SONELOG CHÂTEAUBOURG 6", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "network": "SONELOG CHÂTEAUBOURG 6", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42752600000, + 48.09386100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/XGXZ9LPBQY", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "ref:EU:EVSE": "FRLE2P8000940214309010789", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "585575" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33472000000, + 47.14713000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Saint-Andre-De-Cubzac | Impasse du Pas de Monnac", + "ref": "9e04a3ff-ae93-5629-a85f-8101a94af4ac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43028900000, + 44.99244700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "description": "Réseau AlterBase - Nueil les Aubiers - Espace Culturel Belle Arrivée", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2019-01-22", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB73023A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59389300000, + 46.94496400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPCKSW;FRAIRPAIRBUS317005", + "network": "DRIVECO", + "description": "Airbus - Blagnac - SANTOS DUMONT SUD;Airbus - Blagnac - SANTOS DUMONT SUD - CUBE MOB ENERGY", + "start_date": "2024-02-22;2023-06-28;2024-02-12", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "2;20", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38464400000, + 43.62020700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR1864EVCP01;LFR1864EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR1864EVCP01;LFR1864EVCP02", + "description": "BRIARE Bapterosses" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73721000000, + 47.65647900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*38*1*_*_", + "start_date": "2019-01-17", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - RENE CASSIN RP", + "ref:EU:EVSE": "FRM06PNICE3811;FRM06PNICE3812", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22651143040, + 43.67439712901 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*179*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ17911;FRA16PWIIZ17912", + "start_date": "2022-10-11", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "PIERREFEU - PARKING VILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08271600000, + 43.87491900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "749370", + "ref:EU:EVSE": "FRFR1P5921919110676925678", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RQQJRQFCA0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55829200000, + 48.53687000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Bricomarché - Graulhet", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBRCGHT", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2023-08-18;2023-08-24;2023-08-20", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97080536603, + 43.76069687667 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDIMB9HNUST", + "ref": "78624;DIMB9HNUST", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Mane, Maison de Pays RN10/Clavieres;Réseau eborn/DIMB9HNUST", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76464200000, + 43.93593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPSFOMB", + "start_date": "2022-11-28", + "description": "Saint-Fons - Mercedes-Benz Lyon", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85455800000, + 45.71459000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-30;2021-11-03;2023-01-06;2024-03-22;2024-03-19", + "network": "INDIGO FRANCE", + "description": "TOULOUSE - Jean Jaurès", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E315550074;FRP07E315550073;FRP07E315550071;FRP07E31555007;FRP07E315550072;FRP07E315550075;FRP07E315550076", + "capacity": "60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44950400000, + 43.60606100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLP9JM3WG15ZU6;Sainte hélène du lac, parking mairie", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLP9JM3WG15ZU6;1026807", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP5389867242631001650;FREBNPLLP9JM3WG15ZU6", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2023-11-22", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06408000000, + 45.48155000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref": "UTCAFKUEJR;756945", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP8375202813096192180;FRECHPUTCAFKUEJR", + "description": "Easy Charge/UTCAFKUEJR;Golbey , Place du Souvenir", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44110800000, + 48.19804800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "start_date": "2023-02-02", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A4 Brumath Est", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP102103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69651100000, + 48.72127100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597723", + "description": "Freshmile France/AAPOEUSRPM", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8225676832586526245", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22537900000, + 43.94412700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX09*07", + "capacity": "4", + "description": "Paris | boulevard de la Madeleine 8", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0907", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32669100000, + 48.86972000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "514991", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3787396870666536833", + "description": "Freshmile France/EIFCSLELR2", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67808200000, + 48.08433600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:30, Tu 08:00-12:00, Tu 14:00-18:30, We 08:00-12:00, We 14:00-18:30, Th 08:00-12:00, Th 14:00-18:30, Fr 08:00-12:00, Fr 14:00-18:30, Sa 09:00-12:00, Sa 14:00-17:30", + "start_date": "2021-10-21", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPPAVOLVO890001", + "description": "Volvo -Auxerre", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57273700000, + 47.81223200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SYDED", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "description": "SYDED/LLIOIE5QBW48KJ", + "socket:type2_combo:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25P6430430675351264868", + "ref": "892863", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62701800000, + 47.10412200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - St AMAND MONTROND - Pl. du Marché", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - St AMAND MONTROND - Pl. du Marché", + "ref": "FRS18E224935;FRS18E224936", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E224935;FRS18E224936", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-11-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50760300000, + 46.72211400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78382002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-01-08", + "network": "Seymaborne", + "description": "MAURECOURT - Cerisaie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06472000000, + 48.99867000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK3051;FRQPKPQPRK3011;FRQPKPQPRK3021;FRQPKPQPRK3031;FRQPKPQPRK3041", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - 88009 EPINAL - SAINT-MICHEL", + "opening_hours": "24/7", + "network": "QPARK", + "start_date": "2023-02-23;2023-02-22", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*30*5*_*_;FR*SOD*S*QPRK*30*3*_*_;FR*SOD*S*QPRK*30*2*_*_;FR*SOD*S*QPRK*30*1*_*_;FR*SOD*S*QPRK*30*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45328700000, + 48.17605100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "60 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106000321;FRS81E8106000311;FRS81E8106000222;FRS81E8106000221;FRS81E8106000212;FRS81E8106000211;FRS81E8106000122;FRS81E8106000112;FRS81E8106000111;FRS81E8106000121;FRS81E8106000312;FRS81E8106000322", + "start_date": "2018-04-07", + "description": "CARMAUX - Bld Augustin Malroux;CARMAUX 3 - Bld Augustin Malroux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15355396300, + 44.04802703900 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref": "FRIONE409300", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE409300", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Mouxy", + "start_date": "2020-09-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91204000000, + 43.92293100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-05", + "description": "CHERBOURG EN COTENTIN (TOURLAVILLE) - Mairie", + "ref:EU:EVSE": "FRS50P50602003", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57945200000, + 49.63974400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH61X8484D24XKRFEH9V", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77459A;FRS77E77459001", + "start_date": "2023-05-25;2016-08-11", + "description": "SOURDUN - Rue Du Petit Paraclet;Sourdun - Petit Paraclet", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35406000000, + 48.53721200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF080070", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "start_date": "2023-01-26;2023-01-25", + "opening_hours": "24/7", + "ref": "FRHPCPNF080070", + "owner:ref:FR:SIREN": "531680988;531680987;531680985;531680989;531680986;531680990;531680991;531680992", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS LES PYRENEES", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08066000000, + 43.23150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS41E233628;FRS41E233629", + "ref": "FRS41E233628;FRS41E233629", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - EPUISAY - Rue des Bleuets", + "description": "MODULO - EPUISAY - Rue des Bleuets" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92958800000, + 47.90104600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Caudan - Place du Presbytère", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PUXWAZX", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34155700000, + 47.81082900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*LYON*192*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "description": "RIL05 - Z.I SEMENAZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON19211;FRGLYPLYON19212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91599800000, + 45.82143800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "419961", + "ref:EU:EVSE": "FRMGPP92019D", + "operator": "Métropolis | FR*MGP", + "description": "Métropolis/FR*MGP*P92019*D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27218500000, + 48.76457400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2019-11-27", + "network": "DRIVECO", + "description": "Peugeot - Saint Omer", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT622191", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26739500000, + 50.74531600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-05", + "ref:EU:EVSE": "FRC01E76561001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT AUBIN LES ELBEUF - Rue Pierre Saint Georges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00907400000, + 49.30288900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/YCCDL67FO4", + "capacity": "4", + "ref": "694400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1486562698660899848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.53460700000, + 48.58220700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Castillon-La-Bataille | Place du 14 Juillet", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "0080ef4e-bcf6-5c0d-9c71-da95e52f410f", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04214600000, + 44.85408000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAGY - Rue Maurice Vauviller", + "ref:EU:EVSE": "FRS95E95535001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95248100000, + 49.04995900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO8007482;FRALLEGO8007481;FRALLEGO8000732;FRALLEGO8000722;FRALLEGO8000721;FRALLEGO8000711;FRALLEGO8000691;FRALLEGO8000692;FRALLEGO8000712;FRALLEGO8000731", + "amenity": "charging_station", + "start_date": "2024-07-22", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO8007482;FRALLEGO8007481;FRALLEGO8000732;FRALLEGO8000722;FRALLEGO8000721;FRALLEGO8000711;FRALLEGO8000691;FRALLEGO8000692;FRALLEGO8000712;FRALLEGO8000731", + "description": "Allego FR, ASF2, AIRE DE LIVRON", + "capacity": "10", + "network": "Allego FR, ASF2, AIRE DE LIVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83542800000, + 44.78644300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14", + "ref:EU:EVSE": "FRLE2P3813803430319961542", + "ref": "446822", + "opening_hours": "24/7", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "description": "Leclerc/SZ5LMBLQWL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995700000, + 46.11121400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PCCLDSL1I4Z", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Aurons, Route de Pelissane", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15630800000, + 43.66379600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P102228360285112196", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "SDEY/NCSVTXWFT3", + "socket:type2_combo:output": "24 kW", + "ref": "488871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76558300000, + 47.96411700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ31411;FRA16PWIIZ31412", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-09-10", + "ref": "FR*SOD*S*WIIZ*314*1*_*_", + "description": "VALBONNE - PARKING VIGNASSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00589871505, + 43.64040966608 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "120815", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRFR1P58D90DAA7C461", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/58d90daa7c461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39025000000, + 42.54400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Pizza & Pasta - Bourg-en-Bresse", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PPIPBEB", + "start_date": "2024-09-10;2024-06-22", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24745188717, + 46.20007455647 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31639;MPFTAS9LHS", + "description": "Réseau eborn/MPFTAS9LHS;Renaison, Parking rue Robert Barathon", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPMPFTAS9LHS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93090000000, + 46.05204200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/91607891-A4BC-4C3E-9549-A33B5DBF776A", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP5027030978853162059", + "charging_station:output": "22 kW", + "ref": "1084113", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37812800000, + 43.26366900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2023-05-22", + "ref:EU:EVSE": "FROTHPOTHR63461;FROTHPOTHR63451;FROTHPOTHR63441;FROTHPOTHR63431;FROTHPOTHR63421", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*634*5*_*_;FR*SOD*S*OTHR*634*4*_*_;FR*SOD*S*OTHR*634*2*_*_;FR*SOD*S*OTHR*634*3*_*_;FR*SOD*S*OTHR*634*6*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "SUPER U - AUNEAU-BLEURY-SAINT-SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76864200000, + 48.47798800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPCYFHJJ", + "description": "Réseau eborn/CYFHJJ;Pont Eveque, Rue Louis Leydier", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "CYFHJJ;102620", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91750000000, + 45.52810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "R4UYHEAYOG;75092", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPR4UYHEAYOG", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/R4UYHEAYOG;Orgnac-L'Aven, Camp Redon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41385700000, + 44.31816000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAMPING LEZ-EAUX", + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-02-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR32521;FROTHPOTHR32511", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*325*1*_*_;FR*SOD*S*OTHR*325*2*_*_", + "description": "CAMPING LEZ-EAUX - SAINT-AUBIN-DES-PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52473000000, + 48.79800600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7041586975905203854", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "419136", + "charging_station:output": "22 kW", + "description": "Freshmile France/PMW0TWM1G9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14913200000, + 45.75690100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1527", + "ref": "FR*V75*PPX15*27", + "opening_hours": "24/7", + "description": "Paris | Rue Beaugrenelle 4", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28470000000, + 48.84790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1130427", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3646938369316865796", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLXUEVA3ZDZCJA", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76585800000, + 48.59346300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Théobald Automobiles - Metz", + "start_date": "2022-08-08", + "ref:EU:EVSE": "FRSSDPTHEOBALDHYUNDAI576851", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11224100000, + 49.07340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "description": "900095", + "ref:EU:EVSE": "FRS27PVALREUIL4SAISONS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21749100000, + 49.27201000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Langoat-Rue des étangs (parking terrain foot)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22101001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27989100000, + 48.75124400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY29E78616001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "THOIRY - Rue De La Mare Agrad", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79256400000, + 48.86562100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE222", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "FrancePareBrise_Lyon", + "start_date": "2022-01-25", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90230500000, + 45.82289400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUBERGENVILLE - Place François Mitterrand", + "ref:EU:EVSE": "FRY01E78029001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84832000000, + 48.97163400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE409005;FRIOYE409004;FRIOYE409003;FRIOYE409002;FRIOYE409051;FRIOYE409052;FRIOYE409053", + "start_date": "2019-11-26", + "capacity": "7", + "description": "Fontanelles", + "network": "Fontanelles", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE409005;FRIOYE409004;FRIOYE409003;FRIOYE409002;FRIOYE409051;FRIOYE409052;FRIOYE409053", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06969009000, + 45.87566876000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "474534", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDED52/QNU5WLRMLT", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P8768873800401561625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32062600000, + 47.74663000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-LARY-SOULAN (PARKING OFFICE DU TOURISME) - Rue Vincent Mir", + "ref:EU:EVSE": "FRS65E65388003", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32219000000, + 42.81680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE004302;FRIENE004301", + "amenity": "charging_station", + "start_date": "2023-02-23", + "description": "Winnezeele", + "capacity": "4", + "operator:email": "support@iecharge.io", + "ref": "FRIENE004302;FRIENE004301", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Winnezeele" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54317000000, + 50.83325000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34299001", + "start_date": "2021-09-29", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "SERIGNAN - Parking Cigalière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27990555556, + 43.28490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "description": "CERISE", + "ref": "SE61-CERI-001", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-01-21", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61077B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11461800000, + 48.44594500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LM0WMJUZ51HIXE", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1183290", + "ref:EU:EVSE": "FRFR1P1688410017656400313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77545000000, + 48.58995000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "38836", + "network": "Roulez Électrique En Haute-Garonne", + "ref:EU:EVSE": "FRS31PTDZVPU", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "description": "Roulez Électrique En Haute-Garonne/TDZVPU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27555000000, + 43.35820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Mazda - Douai - Dechy", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-12-01", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPLEMPEREURMAZDA591871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12124700000, + 50.34280600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000098;FRCG0E000097;FRCG0E000092", + "amenity": "charging_station", + "start_date": "2024-03-20", + "capacity": "3", + "description": "Carrefour Contact de Cayeux sur Mer", + "opening_hours": "24/7", + "network": "Carrefour Contact de Cayeux sur Mer", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "ref": "FRCG0E000098;FRCG0E000097;FRCG0E000092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49320000000, + 50.17958600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*103*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE10312;FRM06PNICE10311", + "start_date": "2020-09-16", + "description": "SAINT-LAURENT-DU-VAR - PARKING JACQUON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18249700000, + 43.66569900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Sanguinet | Rue du Maréchal Ferrant", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "97094454-4242-5180-b084-df0f29c96991", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07717100000, + 44.48080400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "operator": "STATIONS-E", + "description": "Carrefour Contact Thiaucourt-Régnieville", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE54TABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87465800000, + 48.94632400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS2782", + "ref": "2782", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "50 kW;43 kW", + "description": "Bump - Intermarché Super - Rive de Gier", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62761150000, + 45.53300610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2915EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "EQUEURDREVILLE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2915EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68084300000, + 49.66115600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Marseille-5E, Place Jean Jaurès", + "ref:EU:EVSE": "FRM13PYACDJSIY62", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38730600000, + 43.29544400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TE90/ZCPMXK", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "232507", + "capacity": "4", + "ref:EU:EVSE": "FRS90PZCPMXK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415000000, + 47.65680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310GRISTPONS", + "amenity": "charging_station", + "capacity": "1", + "description": "PARKING AIRE DE ST PONS GRIMAUD", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "socket:type2_combo:output": "75.0 kW", + "start_date": "2020-04-05", + "ref": "FR*55C*P83310*GRI*STPONS", + "operator:email": "contact@e55c.com", + "charging_station:output": "44.16 kW;75.0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57763100000, + 43.27963600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/KAYLQU8CEK", + "ref": "440997", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1322770519636003416" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11827000000, + 45.75970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "description": "Super U - Russ", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYURUS", + "opening_hours": "24/7", + "start_date": "2023-09-02;2023-08-23", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25153513492, + 48.49334836132 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref": "ANTREV;48436", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Annecy Cran-Gevrier, Les Passerelles;Réseau eborn/ANTREV", + "ref:EU:EVSE": "FREBNPANTREV", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10387000000, + 45.90760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "Fastned France", + "ref": "FRFASE33110", + "description": "Fastned Aire de La Maxe", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFASE33110", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-03-08", + "owner:ref:FR:SIREN": "853300010", + "network": "Fastned Aire de La Maxe", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18470000000, + 49.15048300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "200 kW", + "network": "OF COURSE TRANSPORT", + "description": "OF COURSE TRANSPORT - PERIGNY", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPSENT42771;FROTHPSENT42761;FROTHPSENT42711;FROTHPSENT42721;FROTHPSENT42731;FROTHPSENT42741;FROTHPSENT42751;FROTHPSENT42772;FROTHPSENT42773", + "ref": "FR*SOD*S*SENT*427*7*_*_;FR*SOD*S*SENT*427*6*_*_;FR*SOD*S*SENT*427*5*_*_;FR*SOD*S*SENT*427*3*_*_;FR*SOD*S*SENT*427*1*_*_;FR*SOD*S*SENT*427*2*_*_;FR*SOD*S*SENT*427*4*_*_", + "opening_hours": "24/7", + "start_date": "2024-02-14;2024-05-15", + "operator:email": "sav@izivia.com", + "capacity": "1;3", + "charging_station:output": "3.68 kW;22 kW;200 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11454060000, + 46.16122840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "S2X4SQRIWM;32716", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/S2X4SQRIWM;Buis-Les-Baronnies, Parking Digue Sud", + "ref:EU:EVSE": "FREBNPS2X4SQRIWM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27411300000, + 44.27315500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPLFIWEBSSVC", + "ref": "LFIWEBSSVC", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Passy, Place Berger", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72060400000, + 45.92798080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR44622;FROTHPOTHR44621;FROTHPOTHR44611;FROTHPOTHR44612", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "description": "BRICOMARCHE - NOYON", + "network": "LES MOUSQUETAIRES", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*446*1*_*_;FR*SOD*S*OTHR*446*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97899200000, + 49.57166300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1111923", + "network": "Freshmile France", + "description": "Freshmile France/LLP6SJYOCD3GFQ", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2001255703593412250" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13999600000, + 43.63529800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-07;2023-06-30", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "description": "Conservatoire Arthur Honegger - Place des Expositions", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10081403;FRUBIE10077154;FRUBIE10066971;FRUBIE10027011;FRUBIE10016292;FRUBIE10011169;FRUBIE10001446;FRUBIE10006653;FRUBIE10014387;FRUBIE10021897;FRUBIE10022941;FRUBIE10033822;FRUBIE10052886;FRUBIE10056169;FRUBIE10072670;FRUBIE10084296", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12746100000, + 49.49564500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P229719886944454755", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "510491", + "description": "Freshmile France/G9SVXXKLU9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36037000000, + 48.74335300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "description": "Station-service de Pouilly en Auxois", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2bd52060-57df-5c65-973a-4782463c5fee", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49492900000, + 47.31776800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "419094", + "ref:EU:EVSE": "FRFR1P8398888066275882327", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Freshmile France/FOXO36TF3N", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52842400000, + 44.50620100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P3915809719847647218", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "MobiSDEC/LLSUEEQIW15L1H", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "ref": "1026801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10584300000, + 49.29584900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP00957A", + "opening_hours": "24/7", + "ref": "576212", + "ref:EU:EVSE": "FRZP1P3720255502093771180", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25669300000, + 48.83452800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "RENNES LES BAINS - Parking D14", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11310001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32083300000, + 42.92166700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BONNIERES-SUR-SEINE - Rue Des Caboches - Gauche", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY02E78089002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57954220000, + 49.03167820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "ref": "2ddb9d52-5eb8-52d3-83b9-04564881976d", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "CCTLB - Saint-Clément", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60799500000, + 48.53114200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TAUTAVEL - Rue Anatole France", + "network": "Reveo", + "ref:EU:EVSE": "FRS66E66205001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74488800000, + 42.81439800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*IKEA*174*9*_*_;FR*SOD*S*IKEA*174*8*_*_;FR*SOD*S*IKEA*174*7*_*_;FR*SOD*S*IKEA*174*6*_*_;FR*SOD*S*IKEA*174*5*_*_;FR*SOD*S*IKEA*174*4*_*_;FR*SOD*S*IKEA*174*25*_*_;FR*SOD*S*IKEA*174*2*_*_;FR*SOD*S*IKEA*174*20*_*_;FR*SOD*S*IKEA*174*19*_*_;FR*SOD*S*IKEA*174*17*_*_;FR*SOD*S*IKEA*174*16*_*_;FR*SOD*S*IKEA*174*14*_*_;FR*SOD*S*IKEA*174*10*_*_;FR*SOD*S*IKEA*174*1*_*_;FR*SOD*S*IKEA*174*11*_*_;FR*SOD*S*IKEA*174*12*_*_;FR*SOD*S*IKEA*174*13*_*_;FR*SOD*S*IKEA*174*15*_*_;FR*SOD*S*IKEA*174*18*_*_;FR*SOD*S*IKEA*174*21*_*_;FR*SOD*S*IKEA*174*22*_*_;FR*SOD*S*IKEA*174*23*_*_;FR*SOD*S*IKEA*174*24*_*_;FR*SOD*S*IKEA*174*3*_*_", + "capacity": "1", + "description": "IKEA EVRY - PARKING CLIENTS", + "start_date": "2023-10-02", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA17481;FRIKAPIKEA17471;FRIKAPIKEA17451;FRIKAPIKEA174251;FRIKAPIKEA174241;FRIKAPIKEA174231;FRIKAPIKEA174221;FRIKAPIKEA174211;FRIKAPIKEA17421;FRIKAPIKEA174191;FRIKAPIKEA174161;FRIKAPIKEA174151;FRIKAPIKEA174141;FRIKAPIKEA174131;FRIKAPIKEA174121;FRIKAPIKEA174101;FRIKAPIKEA17411;FRIKAPIKEA174111;FRIKAPIKEA174171;FRIKAPIKEA174181;FRIKAPIKEA174201;FRIKAPIKEA17431;FRIKAPIKEA17441;FRIKAPIKEA17461;FRIKAPIKEA17491", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44053439102, + 48.59596494492 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RENNES - 1 avenue henri freville ", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35238005B2", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67419800000, + 48.09241200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63046B", + "amenity": "charging_station", + "network": "SIEG 63", + "ref": "518255", + "capacity": "3", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63046*B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18769100000, + 45.45757500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "749334", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/IOMGH1LYJJ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P929967903552151664", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58046400000, + 50.52363100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PLLNBOSC1ADBQLS", + "start_date": "2024-01-23", + "network": "Freshmile", + "description": "Le Plan", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "UWCY", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12052766100, + 43.16728502372 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "NOISY-LE-SEC - Rue De Frépillon", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE93053003", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45308030000, + 48.88994920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCG0E000955", + "network": "La Villa Guy & Spa - Malves - 34500 - 1", + "description": "La Villa Guy & Spa - Malves - 34500 - 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E000955", + "start_date": "2024-02-29", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22536000000, + 43.34298400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - ALEXANDRE MEDECIN RP", + "ref:EU:EVSE": "FRM06PNICE2221;FRM06PNICE2222", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*22*2*_*_", + "start_date": "2021-03-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26244600000, + 43.72045400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Monflanquin | Place Yves Balségur", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "e2354860-8962-5f01-aa53-6c87a7ea325e", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76795500000, + 44.53086900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 2 RUE DE COUDRAY - FREPILLON", + "ref": "FR*SOD*S*SIGE*362*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE36211;FRSIGPSIGE36212", + "network": "SIGEIF", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20600000000, + 49.05090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "ELBEUF - Place de la Libération", + "amenity": "charging_station", + "start_date": "2022-09-22", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76231003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00694800000, + 49.28884700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3444EVCP02;LFR3444EVCP03", + "description": "SELESTAT Colmar", + "ref": "LFR3444EVCP02;LFR3444EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43913600000, + 48.25194600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f0cd8eb3-4405-5ff5-8a2a-abb07e6ce34d", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Saint Loubes | Centre Nautique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42466400000, + 44.91433900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PENXVSY", + "ref": "294485", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "SDE82", + "description": "SDE82/ENXVSY", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99949000000, + 44.01940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "description": "PARKING PETITOU - LOURMARIN", + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84160*M0U*PET1T0U", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP84160M0UPET1T0U", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36400800000, + 43.76544200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3680EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3680EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "RENNES Chatillon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67211000000, + 48.08881700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMILC", + "description": "Intermarché Super - Illiers-Combray", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25601106652, + 48.30415333087 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DB729VJMID;79243", + "description": "Signes, Rue Ferraillette;Réseau eborn/DB729VJMID", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref:EU:EVSE": "FREBNPDB729VJMID;FREBNDB729VJMID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86238300000, + 43.29057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - BIARRITZ Avenue d'Etienne", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRETIP64122U", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP64122U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54574557217, + 43.48752246036 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Chaussea - Essey-lès-Nancy", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCHAESS", + "opening_hours": "24/7", + "start_date": "2024-02-09;2023-12-13", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24614182331, + 48.71053422956 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Auxerre", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT890001", + "operator:email": "support@driveco.com", + "start_date": "2024-03-07", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54585800000, + 47.79621000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRELCPACYSC", + "operator": "ELECTRA", + "description": "Annecy - Greet Annecy Sud Cran" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08708100000, + 45.89374700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "description": "VOLKSWAGEN - VITRE", + "amenity": "charging_station", + "network": "VOLKSWAGEN", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR55912;FROTHPOTHR55911;FROTHPOTHR55913", + "start_date": "2023-07-11", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*559*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20848149448, + 48.10966215645 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-24", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6752265;FRCPIE6752305", + "ref": "FRCPIE6752265;FRCPIE6752305", + "capacity": "4", + "description": "CLOSEAU1 BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CLOSEAU1 BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41511200000, + 47.89923000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6895366220356831882", + "ref": "368974", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WPFVK4XLRP", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55955800000, + 44.84110100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9004*02", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Quai Henri IV 44", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P900402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36157630000, + 48.85023050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "472242", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PMDA7DOBMH", + "ref:EU:EVSE": "FRFR1P5149940282478379241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66234700000, + 44.79974700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Senlis", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP2566", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60666200000, + 49.20873000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "752424", + "ref:EU:EVSE": "FRFR1P1816237515825916826", + "amenity": "charging_station", + "capacity": "15", + "network": "Freshmile France", + "description": "Freshmile France/YKFOCWHZH9", + "opening_hours": "24/7", + "charging_station:output": "120 kW;60 kW;22 kW;150 kW", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "120 kW;60 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183000000, + 49.29012100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FR0NXPOOLHFX48", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "11", + "description": "Ville d'Annecy - Parking de Bonlieu", + "operator": "NEXTENEO", + "network": "Ville d'Annecy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12983000000, + 45.90228500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P332854008807537953", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1152936", + "description": "MobiSDEC/LLW66ZW3H1NXEI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87899600000, + 49.24216800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "REQUISTA - Rue De L'Egalité", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12197001", + "start_date": "2021-11-08", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53685100000, + 44.03283500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "972752", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA5P4802765644870124044", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5LRRE3IXFO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11194800000, + 45.89671400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-03-29;2021-04-29", + "amenity": "charging_station", + "description": "SEVREMOINE - Rue du Commerce;OuestCharge - Diva Sp - Sevremoine - Commerce", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49P49301B;FRS49E49301002", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99404600000, + 47.12309800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CUQ TOULZA - Place Du Caducée", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS81E81076001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88433400000, + 43.56930100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680637;531680638", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "description": "RELAIS DE PORTET OUEST", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF001019", + "ref": "FRHPCPNF001019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39860000000, + 43.52450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46042003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-05-25", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CAHORS - GUINGUETTE - Rue de la Guinguette", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44338600000, + 44.45573700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*MB64*3*3*_*_", + "network": "MOBIVE - SDEPA 64", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-11-18", + "description": "ANGLET - PARKING QUINTAOU", + "owner:ref:FR:SIREN": "256402041", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS64PMB64332;FRS64PMB64331", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51197000000, + 43.48389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59484002", + "description": "QUIÉVRECHAIN - rue Jean Mermoz", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66936800000, + 50.39659500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2918800", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plougasnou-Rue des Martyrs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.79268900000, + 48.69690300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94042004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2024-06-24", + "description": "JOINVILLE LE PONT - Avenue du président Wilson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47691070000, + 48.81727810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP90176342", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Corbeil-Essonnes", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-02-02;2024-03-19", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46008400000, + 48.61044200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Sarlat la Caneda | Place des Cordeliers", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "54c8a09f-6fa3-520c-8ba5-ebcf73a245aa", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21738900000, + 44.89267300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE4712;FRSIGPSIGE4711", + "start_date": "2021-02-04", + "ref": "FR*SOD*S*SIGE*47*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 28 RUE CHANZY - VIROFLAY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17741800000, + 48.79829200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-10-20", + "ref:EU:EVSE": "FRALLPEVCARSGGAMP", + "description": "GUINGAMP", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16573000000, + 48.56236000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3555EVCP01", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3555EVCP01", + "description": "VIZILLE Forges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76858200000, + 45.07724800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "22817954-067c-51f7-b1b7-6baab378a22a", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bidarray | Parking Artetxea" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35078700000, + 43.26526300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85034001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "BOURNEZEAU - Place Des Papillons", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17294000000, + 46.63612000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2024-01-10", + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRSITE00000188", + "description": "BAZALP ORLEANS SARAN", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89029140000, + 47.95883310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3727EVCP02;LFR3727EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "PERRIGNY RN152", + "ref": "LFR3727EVCP02;LFR3727EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57258200000, + 46.66975700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;188 kW;50 kW;22 kW", + "socket:type2_combo:output": "100 kW;50 kW;188 kW", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "start_date": "2023-08-02;2021-07-27", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Station Karcher Plan de Campagne - Les Pennes-Mirabeau", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PKRCLPM", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36596322824, + 43.41675243381 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPJJZ5BFGYRF", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Samoëns, Parking Le Criou;Réseau eborn/JJZ5BFGYRF", + "start_date": "2020-06-21", + "ref": "JJZ5BFGYRF;85808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72854000000, + 46.08306000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FREVBP2213445", + "description": "guilbert", + "network": "EVBOX", + "start_date": "2023-05-17", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "contact@evbox.com", + "opening_hours": "24/7", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "572055812", + "ref:EU:EVSE": "FREVBP2213445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66223000000, + 48.82823200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-10-18", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "L'Antre Frères - Saint-Méloir-des-Ondes", + "ref:EU:EVSE": "FRPD1PESPSMO", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91121444981, + 48.63893141025 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "IZIVIA | STATION ORLY", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OAZS*222*3*_*_;FR*SOD*S*OAZS*222*1*_*_", + "start_date": "2022-10-07;2022-06-01", + "opening_hours": "24/7", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22231;FRE04POAZS22211;FRE04POAZS22212;FRE04POAZS22232", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36534400000, + 48.73258700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42218BV", + "start_date": "2024-01-11", + "description": "SEMOB - Rue Buisson", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref": "FRESEPS42218BV", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38092360564, + 45.44142258977 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "MAIRIE DE FREVENT", + "ref": "FR*SOD*S*OTHR*130*6*_*_;FR*SOD*S*OTHR*130*4*_*_;FR*SOD*S*OTHR*130*1*_*_;FR*SOD*S*OTHR*130*2*_*_;FR*SOD*S*OTHR*130*3*_*_;FR*SOD*S*OTHR*130*5*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "MAIRIE DE FREVENT - PLACE JEAN JAURES", + "start_date": "2021-02-04;2022-12-12", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR13061;FROTHPOTHR13051;FROTHPOTHR13041;FROTHPOTHR13031;FROTHPOTHR13021;FROTHPOTHR13011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29238500000, + 50.27853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BORNE MAIRIE STATION 1", + "description": "BORNE MAIRIE STATION 1", + "ref": "FRCPIE6921445", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-08-09", + "ref:EU:EVSE": "FRCPIE6921445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83007600000, + 46.60549600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "94241", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/RCMPVP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PRCMPVP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86352000000, + 49.46370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Clermont Nord Riom", + "ref:EU:EVSE": "FRVIAP121051", + "start_date": "2024-05-31", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12253000000, + 45.89073000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LV4TH6NHCE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7306730215700361534", + "opening_hours": "24/7", + "ref": "505623", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14117300000, + 45.76111100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-26", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Renault - Trucks Nancy", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT547101", + "capacity": "4", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-17:00, Tu 08:00-12:00, Tu 13:30-17:00, We 08:00-12:00, We 13:30-17:00, Th 08:00-12:00, Th 13:30-17:00, Fr 08:00-12:00, Fr 13:30-17:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18221300000, + 48.61484100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2823160531835287639", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/APWTIE1O95", + "operator": "Freshmile | FR*FR1", + "ref": "674192" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08895400000, + 47.01917900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "description": "MODULO - OUARVILLE - Rue de le République", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - OUARVILLE - Rue de le République", + "ref": "FRS28E129076", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E129076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77138871000, + 48.35464382000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P6242184920607600510", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/SAKCOZYZCV", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "461934", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36450300000, + 49.18415500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5L2GSISMCR", + "network": "WAAT", + "amenity": "charging_station", + "ref": "1127892", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P1373701470555004840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55957700000, + 50.33763200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50292001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-11-22", + "description": "MARIGNY LE LOZON - Rue du 8 Mai 45", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24368550000, + 49.10001910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PUYLAURENS - Avenue De Revel", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS81E81219002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00587600000, + 43.56714800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF062209", + "start_date": "2021-06-02;2021-07-26;2023-04-17", + "amenity": "charging_station", + "capacity": "3", + "description": "RELAIS COURBEVOIE VERDUN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF062209", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "50 kW;175 kW", + "owner:ref:FR:SIREN": "531680530;531680532;531680531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26090000000, + 48.90010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-03-28;2021-04-29", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Angers - Bichon;ANGERS - Place Bichon", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49007017;FRS49P49007Q", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56429300000, + 47.47872700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "46630", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PBAILLANDO", + "description": "Mouv'Oise/baillando" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22433000000, + 49.38380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH06E62744001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SAINTE-CATHERINE - Rue Nationale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76380500000, + 50.30411500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30027001", + "operator": "Bouygues E&S", + "description": "BAGARD - Parking Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05298700000, + 44.07325000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PUXSADP", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-01-19", + "description": "Pluméliau-bieuzy - Rue de la Ferrière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97226800000, + 47.95769500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REBEILLEAU HPC-2", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "ref": "B137", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346052802;FRLMSE12346052801", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "socket:type2_combo:output": "120 kW", + "start_date": "2019-09-13", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37070000000, + 46.57145000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93059C", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "514940", + "start_date": "2023-08-24", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "description": "Métropolis/FR*MGP*P93059*C;Metropolis - Citadine - Pierrefitte-sur-Seine - Général de Gaulle", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37115500000, + 48.96474300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "304891641", + "network": "Réseau de recharge Sogestran", + "operator": "SGA Industries", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRSGAP1D2008", + "charging_station:output": "22 kW;1.7 kW", + "start_date": "2021-03-10", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator:email": "contact@sga-automation.com", + "description": "D2008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15317700000, + 49.48322000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "828619346", + "ref": "559912", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAU1E0022", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Fasthôtel Montpellier Ouest - 2 Bornes ALFEN 22kW + prise E/F ouvertes au public ( Identification via badge RFID )", + "operator:email": "m.drif@autorecharge.fr", + "network": "AUTORECHARGE SAS", + "start_date": "2022-05-01", + "operator": "AUTORECHARGE SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84909333446, + 43.56165141809 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89370721", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A1 Cœur des Hauts-de-France Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83781100000, + 49.88604200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint-Priest-Taurion | Esplanade du Stade", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "8fe43216-6b5a-545f-aed6-afffc0b6e8e5", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39528700000, + 45.88619700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-23", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - LAMARCHE - Av. des Tilleuls", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E162018;FRS88E162020", + "ref:EU:EVSE": "FRS88E162018;FRS88E162020", + "network": "MODULO - LAMARCHE - Av. des Tilleuls" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78046000000, + 48.06840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ISSOIRE", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSISSRE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26237000000, + 45.54848000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3607EVCP01;LFR3607EVCP02", + "description": "SALLAUMINES Darras", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3607EVCP01;LFR3607EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84827100000, + 50.42362600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PEPGB68LSIC", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-13E, 34 Bouevard Laveran", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41379300000, + 43.32673300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Saint-Just-Saint-Rambert, Parking place Jean Monnet", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPWCGRDIRD61", + "ref": "WCGRDIRD61" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24048830000, + 45.50049880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "626228", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/QJ5GYSMHHX", + "ref:EU:EVSE": "FRFR1P1050211046204280358", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66426900000, + 45.74606100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-23", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PIMCETM", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Darty - Étampes", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14307312342, + 48.44277776600 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPAU1YWRKLWE", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/AU1YWRKLWE", + "amenity": "charging_station", + "ref": "96014", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09647700000, + 46.02962100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP191128373511512415", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "description": "Road/668eab9486ffb7001cecdfda", + "ref": "1149978", + "charging_station:output": "11 kW", + "opening_hours": "Mo,Sa,Tu,Th,Su,We,Fr 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09945000000, + 47.59113100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PAYS RHENAN - GARE DE ROUNTZENHEIM AUENHEIM", + "ref:EU:EVSE": "FROTHPOTHR24511;FROTHPOTHR24512", + "ref": "FR*SOD*S*OTHR*245*1*_*_", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.00764600000, + 48.81857100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6600975", + "ref": "FRCPIE6600975", + "description": "NETTO BORNE 1", + "opening_hours": "24/7", + "network": "NETTO BORNE 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03894200000, + 47.26256500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2908435984485583493", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XJ5L0C9ZRQ", + "charging_station:output": "7.4 kW", + "ref": "694370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04761800000, + 48.71980800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s437341", + "network": "WAAT", + "ref": "597930", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P893365786016757948", + "capacity": "4", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36977600000, + 48.90396500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLK174HG81PAI5", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2540627593511609317", + "capacity": "15", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "892467", + "charging_station:output": "22 kW;150 kW;300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21621400000, + 48.68976300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2023-10-16", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 22kW MG Vénissieux 1;Alfen 22kW MG Vénissieux 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234596044;1234596047", + "ref:EU:EVSE": "FRSWSE1234596044;FRSWSE1234596047", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86476000000, + 45.71742200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLP6MXHXFQ95WN", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "998811", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2650698696513927501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56494000000, + 48.86530400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-29", + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Golden Tulip - Sophia Antipolis Valbonne", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPGOLDENTULIP065601", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04265700000, + 43.62849900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - CHARTRES - Pl. Chatelet", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHARTRES - Pl. Chatelet", + "ref:EU:EVSE": "FRS28E234847", + "ref": "FRS28E234847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48407805000, + 48.44726082000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "Olga.Bouthoorn@lastmilesolutions.com", + "amenity": "charging_station", + "network": "A Cupulatta", + "owner:ref:FR:SIREN": "421526641", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "description": "A Cupulatata", + "operator": "LAST MILE SOLUTIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90822270000, + 42.02711610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/GCLIDDLXMP", + "ref": "75479", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P6476952194329629758" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29736900000, + 48.08484400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "575954;576041", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "description": "Zephyre/LE0057A4;Zephyre/LE006E63", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P8777677382035357499;FRZP1P6162999961120026775", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85138000000, + 50.95703100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE584", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "CentreAffairesLoges", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51031710000, + 47.51544350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "86870", + "description": "SDE82/ABVXRQ", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PABVXRQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19435000000, + 43.98610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*130*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST13011;FRIZFPFAST13012;FRIZFPFAST13013", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - REIMS CROIX BLANDIN", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08241740000, + 49.24149790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BLOIS - Rue des Alliés", + "capacity": "2", + "network": "MODULO - BLOIS - Rue des Alliés", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4387;FRS41E4388", + "ref": "FRS41E4387;FRS41E4388" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33985200000, + 47.58380200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "46618", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PTRIECHATEAU", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/triechateau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82131000000, + 49.28520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "FEZ01 - LES RAZES", + "opening_hours": "24/7", + "start_date": "2020-11-27", + "ref:EU:EVSE": "FRGLYPLYON4511;FRGLYPLYON4512;FRGLYPLYON4521;FRGLYPLYON4522", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*45*1*_*_;FR*SOD*S*LYON*45*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85010800000, + 45.66627500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT GENIES DE MALGOIRES - Chemin De Font Barjarret", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30255001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21381300000, + 43.94614500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Monterblanc - Place Anne de Bretagne", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PEKCQMR", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68107200000, + 47.74251400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-22", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "Camping les lavandes Darbres ", + "ref": "747a4ee8-b28d-11ed-afa1-0242ac120002", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECAMPINGLAVANDES11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50364430000, + 44.64777370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMW1P643488993314270222", + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "477264", + "charging_station:output": "22 kW", + "capacity": "10", + "description": "Mobilygreen CPO/c540e64f-07aa-40d7-809a-66dd94dcb402", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35436000000, + 43.54210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-10-01", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18111;FRSIGPSIGE18112", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*181*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - RUE DANIELLE CASANOVA - MAISONS-ALFORT", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45514315284, + 48.80606605771 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001544;FRCG0E001521;FRCG0E001522;FRCG0E001543", + "description": "Espace 3000 - Groupe Cassard - Audi Belfort - 90000", + "amenity": "charging_station", + "capacity": "4", + "ref": "FRCG0E001544;FRCG0E001521;FRCG0E001522;FRCG0E001543", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-06-09", + "network": "Espace 3000 - Groupe Cassard - Audi Belfort - 90000", + "charging_station:output": "300 kW;22 kW;100 kW", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87789102000, + 47.63979453000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REBEILLEAU 3 - 2;REBEILLEAU 3 - 1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE10001470292;FRLMSE10001470291;FRLMSE10001470301;FRLMSE10001470302", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B135", + "start_date": "2019-10-23", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37065000000, + 46.57140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS40PMB409214;FRS40PMB409211;Non concerné;FRS40PMB409212;FRS40PMB409213", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB40*92*1*_*_;69212b09-ec9d-516e-ba55-6a35b70bca86", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "description": "YCHOUX - PARKING DE LA MAIRIE AVENUE FELIX ARNAUDIN;MOBIVE | Ychoux | Parking de la Mairie Avenue Felix Arnaudin", + "operator": "199__SYDEC40;IZIVIA", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "start_date": "2020-05-26", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96217100000, + 44.32790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "MEAUX - Hôtel de Ville", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MXUA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87700200000, + 48.95854900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9009892;FRALLEGO9009891;FRALLEGO9003802;FRALLEGO9003801;FRALLEGO9004191;FRALLEGO9004192;FRALLEGO9009921;FRALLEGO9009922", + "amenity": "charging_station", + "ref": "FRALLEGO9009892;FRALLEGO9009891;FRALLEGO9003802;FRALLEGO9003801;FRALLEGO9004191;FRALLEGO9004192;FRALLEGO9009921;FRALLEGO9009922", + "network": "Allego Carrefour Etampes", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Etampes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16091925000, + 48.42953349000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "CHARMES Didierjean", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3558EVCP01;LFR3558EVCP02", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3558EVCP01;LFR3558EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28369400000, + 48.36983400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09;2022-02-23", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM34E34172008", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONTPELLIER - Rue Georges Méliès", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91953166500, + 43.60479000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "saintvictorla;34277;R13ICZC6D5;298564", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPSAINTVICTORLA;FREBNPR13ICZC6D5", + "capacity": "4;2;6", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW;22 kW", + "description": "Réseau eborn/saintvictorla;Saint-Victor, La Loue;Réseau eborn/R13ICZC6D5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58477000000, + 46.37870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1580441142510862429", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLUMS6J8D21SC1", + "operator": "Freshmile | FR*FR1", + "ref": "1085793" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48057600000, + 50.50134000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AVIGNON - Parking Jean Jaurès", + "start_date": "2023-12-21;2022-12-01", + "ref:EU:EVSE": "FRP07E84007002;FRP07E840070021;FRP07E840070022", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80647760000, + 43.94283850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "31609", + "description": "Réseau eborn/WUFELBWHT7", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPWUFELBWHT7", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26300700000, + 45.50767300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Salon-de-Provence - Marie Blachère - Retail Park", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPSDPRP", + "start_date": "2024-07-30", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11301600000, + 43.62838500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking gare de Chessy Marne-la-Vallée Disneyland Paris - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E77111001", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78354000000, + 48.87226000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6632365", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED CGED VIENNE", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CGED CGED VIENNE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6632365", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82826800000, + 45.49171200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "socket:type2_combo:output": "90 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Easy Charge/JSXHVQBXWH", + "ref:EU:EVSE": "FRECHP8106158606828456752", + "ref": "944493", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10070000000, + 46.10849600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2023-03-16", + "description": "Paris | Avenue Marceau 59", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1631", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref": "FR*V75*PPX16*31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29764450000, + 48.86989290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLMT4KRGK2LEGA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3022981444119168574", + "ref": "1053129", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75172800000, + 48.56573700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Entrepôt du Bricolage - Annemasse", + "opening_hours": "Mo-Sa 07:30-19:30", + "network": "SAMSE - ERP EDB ANNEMASSE", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779463223", + "operator": "TotalEnergies Marketing France", + "start_date": "2023-03-28", + "charging_station:output": "22 kW", + "capacity": "10", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25974975582, + 46.19579293671 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P456222009285625274", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "510458", + "description": "Freshmile France/DWO4IMGBLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51897700000, + 48.80638600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-12", + "network": "DRIVECO", + "description": "Hyundai - Imporauto - Le Havre", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00, Su 09:00-12:00, Su 14:00-18:00", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPIMPERAUTOHYUNDAI766001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14559200000, + 49.49335100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2913600", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-06-20", + "description": "Locunole-Rue de Beg Ar Roz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.47816700000, + 47.93708800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COURSAN - Rue Du Cimetière", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11106001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05636600000, + 43.23488900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-23", + "opening_hours": "Lu- Ve 08:00-19:00, Sa 09:00-18:00", + "ref:EU:EVSE": "FRZPEE142953;FRZPEE142950", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "379296841", + "capacity": "1", + "description": " FORD - VILLENEUVE SUR LOT 22kW ;FORD - VILLENEUVE SUR LOT 22kW ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "E142953;E142950", + "network": "Ford Concession MAP", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66975310000, + 44.40288290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BELESTA - Av De Lavelanet / Rue Des Jardins", + "network": "Reveo", + "ref:EU:EVSE": "FRS09E09047001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93189700000, + 42.90439200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PFEUQUIEREMAI", + "operator:email": "roaming@freshmile.com", + "ref": "64676", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/feuquieremai", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60870000000, + 50.06100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - VALDAHON", + "ref:EU:EVSE": "FRIZFPFAST2711;FRIZFPFAST2712;FRIZFPFAST2713", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2023-12-21", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*27*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33005820000, + 47.14790350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44045A;FRS44E44045001", + "capacity": "1;2", + "start_date": "2021-04-20;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Cordemais - Quatre Vents;CORDEMAIS - Avenue Des Quatre Vents", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87739100000, + 47.29084600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77127B;FRS77E77127001", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "charging_station:output": "24 kW;22 kW", + "description": "Coubert - Constantine;COUBERT - Constantine", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07", + "ref": "c7b9d1ba-63b3-4c13-b0c6-90cbc3c7c9bf", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69709200000, + 48.66872400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mercure Tours Nord", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "network": "Mercure Tours Nord", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGSPP1000085963;FRGSPP1000085918", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71025069817, + 47.43853719147 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO- DAME MARIE LES BOIS - Pl. 11 Novembre", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E220231;FRS37E220191", + "charging_station:output": "0 kW", + "ref": "FRS37E220231;FRS37E220191", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-11-03", + "description": "MODULO- DAME MARIE LES BOIS - Pl. 11 Novembre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03213549000, + 47.54070211000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Vacqueville", + "ref": "aa242f26-6be5-5101-a642-a8a05fff726a", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81563300000, + 48.48002200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "description": "Holiday Marina Resort", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "network": "Holiday Marina Resort", + "ref:EU:EVSE": "FRG10P83068A", + "ref": "FRG10P83068A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57309100000, + 43.26980100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d38bf6d9-eeab-591d-be81-e33663f21015", + "operator": "199__SYDEC40", + "description": "MOBIVE | MONT-DE-MARSAN | Parking Place Jean Jaures" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49945000000, + 43.88683900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*296*1*_*_", + "description": "SIGEIF - 15 AVENUE DU GENERAL LECLERC - BOULOGNE-BILLANCOURT", + "ref:EU:EVSE": "FRSIGPSIGE29612;FRSIGPSIGE29611", + "start_date": "2023-01-18", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24163400000, + 48.83291600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6517155", + "ref": "FRCPIE6517155", + "description": "SONEPAR CONNECT AUBAGNE", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AUBAGNE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59915400000, + 43.28562800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P7952450879072494317", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446843", + "charging_station:output": "22 kW", + "opening_hours": "Fr,Sa,Th,Tu,We,Mo 07:00-20:30,Su 07:00-12:30", + "capacity": "10", + "description": "Leclerc/VEWFZ6V02A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758900000, + 44.11759800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "feb6c56b-aaf6-567a-ad72-409d9672265c", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Belves | Esplanade de la Breche (Parking)", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00649300000, + 44.77749600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-03-30", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB37093A", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Bessines - rue Pierre Mendes France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49691272000, + 46.30560420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPAIRBUS313008", + "network": "DRIVECO", + "description": "Airbus - Marignane - parking P1", + "amenity": "charging_station", + "capacity": "14", + "start_date": "2023-06-26;2023-01-05", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23348000000, + 43.43567800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR0495EVCP02;LFR0495EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "WATTRELOS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR0495EVCP02;LFR0495EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21025600000, + 50.69505500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "414777", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/PSUDUL9MIJ", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref:EU:EVSE": "FRM45P9142739121576787163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90985300000, + 47.90531300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-21", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ15211;FRA16PWIIZ15212", + "description": "GARS - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*152*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80229400000, + 43.86568200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/R7NWGYM2SZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4936098751392482777", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "682232", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73211000000, + 47.99810400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PBCMNVL", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "start_date": "2023-10-04", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Bricomarché - Nivillac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29460222541, + 47.51755052225 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPSGQBB9ZVMN;FREBNSGQBB9ZVMN", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Garde, Parking Gymnase J.Troin;Réseau eborn/SGQBB9ZVMN", + "ref": "244027;SGQBB9ZVMN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01033400000, + 43.12046700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "start_date": "2023-11-29", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Albertville - Intermarché", + "ref:EU:EVSE": "FRELCPALBIM", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38197000000, + 45.66178500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-16", + "ref:EU:EVSE": "FRP07E13103002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SALON DE PROVENCE - Emperi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09883600000, + 43.63899500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "network": "SONEPAR DOLE", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR DOLE", + "ref": "FRCPIE6704845", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6704845", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45233300000, + 47.07164800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/LLYSFJR2N19WEJ", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "1190992", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "capacity": "9", + "ref:EU:EVSE": "FRECHP1510984130147102700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33468000000, + 49.14013700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A51 Chabauds (Cabriès)", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP103108", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39599900000, + 43.43384400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3451003117457145672", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/F9AE6Z9DRG", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "559706", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73840100000, + 48.36185200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | boulevard Saint -Germain 188", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX07*17", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0717", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32998200000, + 48.85461000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RCMSEE", + "operator:email": "roaming@freshmile.com", + "ref": "120779", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PRCMSEE", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53039000000, + 48.52260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "start_date": "2023-05-31;2021-06-14", + "description": "Volvo - Melun", + "opening_hours": "24/7", + "capacity": "10", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPELYSEEVOLVO772401", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63387300000, + 48.56160800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "capacity": "4", + "opening_hours": "24/7", + "description": "SYDED/audincourpos", + "ref:EU:EVSE": "FRS25PAUDINCOURPOS", + "ref": "102401", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116000000, + 47.48150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E196425;FRS18E196424", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - BANNEGON - Pl. St Georges", + "network": "MODULO - BANNEGON - Pl. St Georges", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E196425;FRS18E196424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71346000000, + 46.80106000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "502941479", + "ref": "EVB-P2011075", + "operator": "GAZ DE BORDEAUX", + "start_date": "2021-11-25", + "amenity": "charging_station", + "description": "Parking GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "network": "GAZ DE BORDEAUX", + "charging_station:output": "22 kW", + "capacity": "10", + "opening_hours": "Mo-Thu 8:15-17:30", + "operator:email": "clients@gazdebordeaux.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57458700000, + 44.86602670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRQPKPQPRK10242;FRQPKPQPRK10222;FRQPKPQPRK10221;FRQPKPQPRK102201;FRQPKPQPRK102191;FRQPKPQPRK102161;FRQPKPQPRK10212;FRQPKPQPRK10211;FRQPKPQPRK102101;FRQPKPQPRK102111;FRQPKPQPRK102121;FRQPKPQPRK102131;FRQPKPQPRK102141;FRQPKPQPRK102151;FRQPKPQPRK102171;FRQPKPQPRK102181;FRQPKPQPRK10231;FRQPKPQPRK10232;FRQPKPQPRK10241;FRQPKPQPRK10251;FRQPKPQPRK10252;FRQPKPQPRK10261;FRQPKPQPRK10271;FRQPKPQPRK10281;FRQPKPQPRK10291", + "network": "QPARK", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref": "FR*SOD*S*QPRK*102*9*_*_;FR*SOD*S*QPRK*102*8*_*_;FR*SOD*S*QPRK*102*6*_*_;FR*SOD*S*QPRK*102*5*_*_;FR*SOD*S*QPRK*102*4*_*_;FR*SOD*S*QPRK*102*20*_*_;FR*SOD*S*QPRK*102*15*_*_;FR*SOD*S*QPRK*102*13*_*_;FR*SOD*S*QPRK*102*11*_*_;FR*SOD*S*QPRK*102*10*_*_;FR*SOD*S*QPRK*102*1*_*_;FR*SOD*S*QPRK*102*12*_*_;FR*SOD*S*QPRK*102*14*_*_;FR*SOD*S*QPRK*102*16*_*_;FR*SOD*S*QPRK*102*17*_*_;FR*SOD*S*QPRK*102*18*_*_;FR*SOD*S*QPRK*102*19*_*_;FR*SOD*S*QPRK*102*2*_*_;FR*SOD*S*QPRK*102*3*_*_;FR*SOD*S*QPRK*102*7*_*_", + "description": "QPARK - LA DEFENSE - IRIS 1", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-20;2022-01-01;2024-07-22;2024-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24666600000, + 48.89064000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81032001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "BLAN - Rue Du Mont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00838000000, + 43.52978000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "bench" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20632750000, + 49.97200790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE403500", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Montélimar Est", + "start_date": "2019-07-17", + "ref": "FRIONE403500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30848800000, + 43.91490100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44158002;FRS44P44158B", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "SAINT-ETIENNE-DE-MONTLUC - Rue Amaury D'Acigné;OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Acigne", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-03-30;2024-04-12", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77915800000, + 47.27421300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "La Rochette - Henri Matisse;LA ROCHETTE - Henri Matisse", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77389002;FRS77P77389B", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2024-03-06", + "ref": "c7ad60e8-7939-4c8c-b4a5-14f87efcc12a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65578500000, + 48.51775300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62902001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "WIZERNES - Place de la mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22809700000, + 50.70961800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - ESVRES SUR INDRE - Rue Nationale", + "amenity": "charging_station", + "ref": "FRS37E6024;FRS37E6023", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - ESVRES SUR INDRE - Rue Nationale", + "ref:EU:EVSE": "FRS37E6024;FRS37E6023", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78136900000, + 47.28464000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "257179", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PNEDQCA", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/NEDQCA", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82364200000, + 47.62690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "VIL08 - CHATEAU GAILLARD - FORT", + "ref": "FR*SOD*S*LYON*169*1*_*_;FR*SOD*S*LYON*169*2*_*_", + "start_date": "2022-07-19", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON16922;FRGLYPLYON16921;FRGLYPLYON16911;FRGLYPLYON16912", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88827000000, + 45.77463400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "320 kW", + "ref:EU:EVSE": "FRMFCP4945445301134042;FRMFCP7564673874523108079", + "amenity": "charging_station", + "charging_station:output": "320 kW;22 kW", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "description": "Mobilize Fast Charge/f4c354cd-1209-48cc-8675-b621e8a86380;Mobilize Fast Charge/a6dfeb9e-7732-4558-9c16-1d62a46dd5ea", + "opening_hours": "24/7", + "ref": "1064928;1066467", + "capacity": "1;6", + "network": "Mobilize Fast Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15657900000, + 50.76241300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2020-01-23", + "description": "Opel - Dechy - Business center", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPLEMPEREUROPEL591871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11940600000, + 50.34336900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6589695", + "description": "UEXPRESS BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "network": "UEXPRESS BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref": "FRCPIE6589695" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02580600000, + 44.12048300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "579032", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "26", + "description": "Leclerc/R7NKMNWNJE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1826357439220576332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745000000, + 48.40887100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-04-01", + "ref:EU:EVSE": "FRS33PMB3314512;Non concerné;FRS33PMB3314511", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref": "fd7c2894-0706-5d75-b438-b259f50e9546;FR*SOD*S*MB33*145*1*_*_", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "description": "SOULAC SUR MER - LAMELIE - 4 RUE DU 8 MAI;MOBIVE | Soulac Sur Mer | L'Amélie | 4 Rue du 8 Mai", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15000000000, + 45.48494300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "ECOUEN - Allée Aristide Maillol", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-27", + "ref:EU:EVSE": "FRS95E95205001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37832400000, + 49.02399550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRALLEGO7002012;FRALLEGO7002011;FRALLEGO7002001;FRALLEGO7001001;FRALLEGO7001002;FRALLEGO7002002", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO7002012;FRALLEGO7002011;FRALLEGO7002001;FRALLEGO7001001;FRALLEGO7001002;FRALLEGO7002002", + "operator:email": "info@allego.eu", + "network": "Allego Klepierre La Seguiniere Outlet", + "start_date": "2024-05-28", + "description": "Allego Klepierre La Seguiniere Outlet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94228100000, + 47.05578800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SERVIAN - Entrepreneurs", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3976EVCP01", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3976EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31863000000, + 43.39168000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PX3IV7MS20Y", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Aix-En-Provence, Avenue Jules Ferry", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44973400000, + 43.51915500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "402479", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P1649426475214029443", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/DOV1RQ6FH9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27955700000, + 48.19743600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CANNES - PARKING TRIPET", + "ref:EU:EVSE": "FRA16PWIIZ28212;FRA16PWIIZ28211", + "ref": "FR*SOD*S*WIIZ*282*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03803350000, + 43.54666400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P8969694348057354636", + "opening_hours": "24/7", + "ref": "575300", + "charging_station:output": "22 kW", + "description": "Freshmile France/BTIOCISWLO", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20659300000, + 43.65908200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-28", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "description": "Netto - Graulhet", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PNETGHT", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99584500000, + 43.76721400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPL4NKVCKURV;FREBNP2647065009655896520", + "ref": "L4NKVCKURV;454413", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint-Georges-D'Aurac, place Louis de Cazenave;Réseau eborn/L4NKVCKURV", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54074000000, + 45.15616000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP1743300660866418819", + "ref": "1053594", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "charging_station:output": "11 kW;120 kW", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "description": "EVzen/ABE6D91D-0A0E-48E1-874F-F78A13F539E9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441800000, + 45.05652600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref": "FR*SOD*S*OTHR*607*7*_*_;FR*SOD*S*OTHR*607*6*_*_;FR*SOD*S*OTHR*607*1*_*_;FR*SOD*S*OTHR*607*10*_*_;FR*SOD*S*OTHR*607*2*_*_;FR*SOD*S*OTHR*607*3*_*_;FR*SOD*S*OTHR*607*4*_*_;FR*SOD*S*OTHR*607*5*_*_;FR*SOD*S*OTHR*607*8*_*_;FR*SOD*S*OTHR*607*9*_*_", + "description": "RESERVE AFRICAINE DE SIGEAN - SIGEAN", + "amenity": "charging_station", + "network": "RESERVE AFRICAINE DE SIGEAN", + "start_date": "2023-03-21;2023-05-12", + "charging_station:output": "3.68 kW;24 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FROTHPOTHR60792;FROTHPOTHR60751;FROTHPOTHR60741;FROTHPOTHR60731;FROTHPOTHR60711;FROTHPOTHR607102;FROTHPOTHR607101;FROTHPOTHR60721;FROTHPOTHR60761;FROTHPOTHR60771;FROTHPOTHR60781;FROTHPOTHR60791", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95816500000, + 43.06572100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPXOOHDY43SH", + "operator:email": "roaming@freshmile.com", + "ref": "32659", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "capacity": "3", + "opening_hours": "24/7", + "description": "Réseau eborn/FR*EBN*PXOOHDY43SH", + "socket:type2_combo:output": "43 kW", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59494500000, + 44.73507400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Saint-Marcellin, Avenue de la santé", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "ref": "YZ10HKDMQ8", + "ref:EU:EVSE": "FREBNPYZ10HKDMQ8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31861937000, + 45.15396959000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP121042", + "capacity": "1", + "start_date": "2023-09-06", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Nancy-Est - Essey", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24860900000, + 48.71258500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "482052", + "description": "Freshmile France/TXPJR8TDQE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2753998787039326863", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96552400000, + 49.16652900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX1501", + "capacity": "7", + "network": "Belib'", + "ref": "FR*V75*PPX15*01", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue du Colonel Pierre Avia 1", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27888530000, + 48.83259950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com;cpo@citeos.com", + "charging_station:output": "3.7 kW;22 kW", + "description": "CCMAMO - Ancy-Dornot - Route d'Ars;Freshmile France/LMNMJ3G89K", + "network": "CPO CITEOS SDE54;Freshmile France", + "ref:EU:EVSE": "FRFR1P8707332561642437067;Non concerné", + "capacity": "2", + "amenity": "charging_station", + "operator": "Freshmile | FR*FR1;5_AM0004_SDE54", + "opening_hours": "24/7", + "ref": "e2e530db-4c6d-5a36-8f31-388c5fbba8e4;559742" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06259100000, + 49.05771300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Le Montourey (Camping Siblu) - Fréjus", + "charging_station:output": "22.08 kW", + "start_date": "2022-06-02", + "ref:EU:EVSE": "FRSSDPSIBLU836001", + "operator:email": "support@driveco.com", + "opening_hours": "We 10:00-12:30, We 14:00-18:00, Th 10:00-12:30, Th 14:00-18:00, Fr 10:00-12:30, Fr 14:00-18:00, Sa 09:30-12:30, Sa 14:00-18:00, Su 09:30-12:30, Su 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73726400000, + 43.45719500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "ref:EU:EVSE": "FRS27PPHILBERTRISLEINTER", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900050", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65917500000, + 49.29396300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22047001", + "description": "Corlay-Place du marché", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.05721400000, + 48.31594100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY09E78233001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "FEUCHEROLLES - Grande Rue", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97403890000, + 48.87452500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "Taim_Hotel", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81644300000, + 49.41786500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLTSTTX36G", + "ref": "1123809", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWATP5134218652287075510", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81551400000, + 45.78983700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-03-31", + "capacity": "7", + "network": "Boismandé Ouest", + "description": "Boismandé Ouest", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE402053;FRIOYE402051;FRIOYE402003;FRIOYE402002;FRIOYE402001;FRIOYE402004;FRIOYE402052", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE402053;FRIOYE402051;FRIOYE402003;FRIOYE402002;FRIOYE402001;FRIOYE402004;FRIOYE402052", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41711443000, + 46.31311857000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - JONCHERY-SUR-VESLE - Pl. René Sarette-Rue Emile Wenz", + "description": "MODULO - JONCHERY-SUR-VESLE - Pl. René Sarette-Rue Emile Wenz", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "start_date": "2021-07-07", + "amenity": "charging_station", + "ref": "FRS51E61497;FRS51E61498", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E61497;FRS51E61498" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81413500000, + 49.28857200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65282002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LOUDENVIELLE - Parking Balnea", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40798700000, + 42.79932600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE001702;FRIENE001701", + "description": "Orignolles", + "network": "Orignolles", + "ref": "FRIENE001702;FRIENE001701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034000, + 45.20460480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PINET - Avenue De Pomérols", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34203001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51042777778, + 43.40235560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/saintgermer", + "ref:EU:EVSE": "FRS60PSAINTGERMER", + "ref": "46624" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78182000000, + 49.44330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892023", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLHQ8XLQM1082U", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1133507140191783669", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42489900000, + 49.05088200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "SAINT PAUL LES FONTS - Place De La Mairie", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30355001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61405100000, + 44.08165000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "7", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD596501", + "charging_station:output": "22.08 kW", + "start_date": "2020-09-04", + "operator:email": "support@driveco.com", + "description": "Ford - Groupe Dugardin - Villeneuve d'Ascq", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12049700000, + 50.63243500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCARP62652A", + "ref:EU:EVSE": "FRCARP62652A", + "description": "Carrefour Contact Pernes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "network": "Carrefour Contact Pernes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40220615387, + 50.48322459908 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMEOASISBORNE11", + "description": "CAMPING OASIS VILLAGE ", + "operator": "LUMI'IN", + "start_date": "2022-05-13", + "ref": "ac79fb7e-9741-4cb8-a72c-a7e514190a20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66000000000, + 43.47000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | La Couarde sur Mer | Cours des Poilus", + "ref:EU:EVSE": "Non concerné", + "ref": "18eb47aa-1ea5-56d5-ad97-9473fd2ee0fb", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42197200000, + 46.19535100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;24 kW;22 kW", + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE45NSBA;FRSE1PSE45NSBB", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Nissan Basty - AMILLY", + "owner:ref:FR:SIREN": "835124280", + "capacity": "2;3", + "start_date": "2022-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73247900000, + 47.97457600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP1636410033935857321", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "description": "BornEco/6451167a2f5a364fea49731d", + "ref": "1117695", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38554600000, + 43.99958000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "DELLE - Belfort ;DELLE - Belfort", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4046EVCP03;LFR4046EVCP01;LFR4046EVCP02;LFR4046EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4046EVCP03;LFR4046EVCP01;LFR4046EVCP02;LFR4046EVCP04", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00103700000, + 47.51524400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PNBWYREEXN0", + "description": "Sausset-Les-Pins, Place des Droits de L'Homme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10900400000, + 43.33243200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDEY/I0OZLDNOPA", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "488862", + "ref:EU:EVSE": "FRS89P1818606331933323689" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54842600000, + 48.28645900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "303486377", + "description": "Camping de la Torche", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Evbox", + "start_date": "2023-12-22", + "ref:EU:EVSE": "FR44P2213465", + "network": "Reseau Evbox charge", + "operator:email": "frsupport@evbox.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32583800000, + 47.83265000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSX2AMLM26MRX", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3223740327783408252", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1026732", + "charging_station:output": "22 kW", + "capacity": "22", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51009000000, + -20.89440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-06;2023-03-07", + "capacity": "6", + "ref:EU:EVSE": "FRPD1PSYUMAE", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "150 kW;50 kW;22 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Système U - Saint Brice en Cogles", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38608890756, + 48.41531044242 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "29563", + "description": "Réseau eborn/KUPUVRMJH2", + "ref:EU:EVSE": "FREBNPKUPUVRMJH2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04080900000, + 46.02823300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFASE33004", + "operator": "Fastned France", + "capacity": "8", + "amenity": "charging_station", + "description": "Fastned Aire de la Plaine du Forez Est", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "ref": "FRFASE33004", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "start_date": "2022-12-02", + "network": "Fastned Aire de la Plaine du Forez Est", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15491982000, + 45.68216914000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR81712;FROTHPOTHR81711", + "description": "CCVL - VAUGNERAY - PAE MAISON BLANCHE CHEMIN DE SEIBEL", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*817*1*_*_", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67390500000, + 45.73392200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJYGTRRTRSD;FREBNP6661183261901760482", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "JYGTRRTRSD;492081", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/JYGTRRTRSD;Annecy, Rue Max Bruchet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12474000000, + 45.91174000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "DMH0PBAXCF;50755", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNDMH0PBAXCF;FREBNPDMH0PBAXCF", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Taradeau, 23 rue l'Ormeau;Réseau eborn/DMH0PBAXCF", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42688900000, + 43.45384500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-06-21", + "network": "SYSTEME U", + "description": "SUPER U - LARBRESLE", + "ref:EU:EVSE": "FROTHPOTHR41811;FROTHPOTHR41821;FROTHPOTHR41831;FROTHPOTHR41841", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*418*3*_*_;FR*SOD*S*OTHR*418*2*_*_;FR*SOD*S*OTHR*418*1*_*_;FR*SOD*S*OTHR*418*4*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60870000000, + 45.82473200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8167163527981974054", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/PLIIJQRR9K", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "756984" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76905100000, + 50.91536100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP29498", + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Aire de Portes-Lès-Valence Ouest, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86480400000, + 44.86490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLLUOIMBA1WXFS", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "1009146", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5763222578930486719", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19751700000, + 48.67635800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "61ba061f-2069-56eb-854b-36fb341b1ed9", + "charging_station:output": "50 kW;43 kW", + "description": "Station-service de Passy Le Fayet - A40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71844800000, + 45.91406900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "786981", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7260257941736753228", + "description": "Freshmile France/UYBK6R4NSB", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55172400000, + 43.30796100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/ZMLGDQBPJM", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "charging_station:output": "22 kW;100 kW;43 kW", + "amenity": "charging_station", + "ref": "682301", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P6255056940663713754", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22928400000, + 49.14418800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Logis Maison Glenn Anna ", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "Logis Maison Glenn Anna ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P00016", + "owner:ref:FR:SIREN": "539060947", + "charging_station:output": "22 kW", + "ref": "8dd928a8-96f4-4389-b11c-fd0d94f07d95", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94887600000, + 47.70387300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE389", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2023-02-09", + "operator": "RossiniEnergy", + "description": "Kiloutou_Chassieu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96220470000, + 45.72725880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78498006", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-01-19", + "description": "POISSY - Rue Voltaire (Secteur Hopital)", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02540800000, + 48.91855100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Saint Brieuc", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Saint Brieuc", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE473653;FRIOYE473652;FRIOYE473603;FRIOYE473601;FRIOYE473602;FRIOYE473604;FRIOYE473605;FRIOYE473606;FRIOYE473651", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE473653;FRIOYE473652;FRIOYE473603;FRIOYE473601;FRIOYE473602;FRIOYE473604;FRIOYE473605;FRIOYE473606;FRIOYE473651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.67514100000, + 48.48079300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RENAZE - Place De L'Europe;OuestCharge - Diva Sp - Renaze - Europe", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "start_date": "2024-05-27;2021-04-20", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53E53188001;FRS53P53188A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05571500000, + 47.79355700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PORTE PUYMORENS - Los Camps De Clot", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66147001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82562800000, + 42.54798900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "area": "yes", + "highway": "service", + "survey:date": "2022-05-28" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20767460000, + 49.97167210000 + ], + [ + 1.20762270000, + 49.97178700000 + ], + [ + 1.20764260000, + 49.97190680000 + ], + [ + 1.20776770000, + 49.97189990000 + ], + [ + 1.20778760000, + 49.97191270000 + ], + [ + 1.20779220000, + 49.97192550000 + ], + [ + 1.20779070000, + 49.97194710000 + ], + [ + 1.20773420000, + 49.97198440000 + ], + [ + 1.20774450000, + 49.97200180000 + ], + [ + 1.20777120000, + 49.97201840000 + ], + [ + 1.20800020000, + 49.97216090000 + ], + [ + 1.20811340000, + 49.97217180000 + ], + [ + 1.20823710000, + 49.97210000000 + ], + [ + 1.20830430000, + 49.97213120000 + ], + [ + 1.20834340000, + 49.97211790000 + ], + [ + 1.20837560000, + 49.97210610000 + ], + [ + 1.20840920000, + 49.97203600000 + ], + [ + 1.20843340000, + 49.97200500000 + ], + [ + 1.20847770000, + 49.97198150000 + ], + [ + 1.20853120000, + 49.97197850000 + ], + [ + 1.20861360000, + 49.97196280000 + ], + [ + 1.20849450000, + 49.97189500000 + ], + [ + 1.20843340000, + 49.97184990000 + ], + [ + 1.20836780000, + 49.97179190000 + ], + [ + 1.20830210000, + 49.97175560000 + ], + [ + 1.20823950000, + 49.97173690000 + ], + [ + 1.20817540000, + 49.97173300000 + ], + [ + 1.20767460000, + 49.97167210000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-08", + "owner:ref:FR:SIREN": "898270251", + "description": "Wittenheim", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE028401;FRIENE028402", + "ref": "FRIENE028401;FRIENE028402", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Wittenheim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30860794000, + 47.81095053000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "ref:EU:EVSE": "FRS35P35162001B1", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "LOUVIGNE DU DESSERT - 19 rue de la Lariboisière (Place de la Mairie) " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12465300000, + 48.47993800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-06;2017-12-05", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "SE61-TRUN-001", + "ref:EU:EVSE": "FRS61P61494A", + "description": "TRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03312400000, + 48.84291000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8150619657613201660", + "operator:email": "roaming@freshmile.com", + "ref": "1009128", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DGVPICTNNL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77706500000, + 48.80356300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/SDKRWE;Valentine, Baracane", + "ref": "SDKRWE;33409", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PSDKRWE", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2017-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70622000000, + 43.09620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-08-08;2022-01-13", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92071003", + "description": "SCEAUX - Avenue de la gare", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28166100000, + 48.77928300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRCG0E000609;FRCG0E000610;FRCG0E000611", + "charging_station:output": "11 kW;2 kW", + "start_date": "2023-01-19", + "network": "CYT HOLDING 29000", + "operator:email": "info@chargeguru.com", + "description": "CYT HOLDING 29000", + "ref:EU:EVSE": "FRCG0E000609;FRCG0E000610;FRCG0E000611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10766200000, + 47.98727500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE19512;FRM06PNICE19511", + "charging_station:output": "50 kW", + "description": "GILETTE - PONT CHARLES ALBERT", + "ref": "FR*SOD*S*NICE*195*1*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19146744691, + 43.83801626751 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Marmande | Place du 14 Juillet", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "ad47ce25-49cc-5649-b8ed-5dadd172f253", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16333300000, + 44.50388700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33412;FRSIGPSIGE33411", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-08", + "ref": "FR*SOD*S*SIGE*334*1*_*_", + "description": "SIGEIF - 47-49 AVENUE ROGER SALENGRO - BEAUCHAMP", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19591000000, + 49.01340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "AMFREVILLE LA MIEVOIE - Parking Municipal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76005001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12367300000, + 49.40420100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "ANZIN Jaurès", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3071EVCP01;LFR3071EVCP02", + "ref": "LFR3071EVCP01;LFR3071EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51847000000, + 50.37658000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint-Vaury | Place de la Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "e6d7f07d-76d1-5c37-b55d-baecc4e5c415", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75615600000, + 46.20408900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "SDE82/verdun", + "ref": "49012", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PVERDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23461000000, + 43.85180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-05-24", + "description": "PRAIRIE DE LA MER ENTREE GRIMAUD", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83310GRIPRAIRIEGRI", + "charging_station:output": "22.08 kW", + "ref": "FR*55C*P83310*GRI*PRAIRIEGRI", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58117300000, + 43.27678500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3688EVCP01;LFR3688EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3688EVCP01;LFR3688EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "GAINNEVILLE Libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27942800000, + 49.51920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-12-21", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMCHV", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché Super - Chaveignes", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33364160000, + 47.02148980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPERWQRN", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/ERWQRN;Pont-De-Cheruy, 10 Rue Grammont", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-06-11", + "ref": "ERWQRN;32758", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16856000000, + 45.75030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP62443A", + "start_date": "2023-10-18", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP62443A", + "description": "e-Totem - RAPIDEAU Hersin Coupigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63754289540, + 50.45182729140 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E441090052;FRP01E441090051;FRP01E44109005", + "operator:email": "support@alizecharge.fr", + "description": "Parking gare de Nantes Sud 3 Jallais - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53884600000, + 47.21489900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT956401", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Carrefour Market - Marines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97392400000, + 49.14697000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Viry-Châtillon - E.Leclerc", + "ref:EU:EVSE": "FRELCPVCHLE", + "start_date": "2023-08-24", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37582500000, + 48.66142900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CCI - CALAIS", + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR5341;FROTHPOTHR5311;FROTHPOTHR5321;FROTHPOTHR5331", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*53*1*_*_;FR*SOD*S*OTHR*53*2*_*_;FR*SOD*S*OTHR*53*3*_*_;FR*SOD*S*OTHR*53*4*_*_", + "start_date": "2020-10-30", + "description": "CCI - CALAIS - CALAIS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91490700000, + 50.95345300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LA CAPRICIEUSE BORNE OMAHA", + "ref": "FRCPIE6733705", + "description": "LA CAPRICIEUSE BORNE OMAHA", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-06", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6733705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35993300000, + 49.31780300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892143", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLIK0MKQP2KRJB", + "ref:EU:EVSE": "FRFR1P8993036633052668595", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Sa,Th,Mo,Su,Fr,We,Tu 00:00-07:30,Th,Tu,Mo,Fr,Sa,We 19:00-23:59,Su 13:00-23:59", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20483100000, + 48.67200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-12-06;2022-12-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GAITE - SS03;GAITE - SS04", + "ref": "FR*SOD*S*UNIB*34*18*_*_;FR*SOD*S*UNIB*34*17*_*_;FR*SOD*S*UNIB*34*16*_*_;FR*SOD*S*UNIB*34*14*_*_;FR*SOD*S*UNIB*34*13*_*_;FR*SOD*S*UNIB*34*12*_*_;FR*SOD*S*UNIB*34*11*_*_;FR*SOD*S*UNIB*34*10*_*_;FR*SOD*S*UNIB*33*9*_*_;FR*SOD*S*UNIB*33*6*_*_;FR*SOD*S*UNIB*33*3*_*_;FR*SOD*S*UNIB*33*14*_*_;FR*SOD*S*UNIB*33*12*_*_;FR*SOD*S*UNIB*33*11*_*_;FR*SOD*S*UNIB*33*10*_*_;FR*SOD*S*UNIB*33*13*_*_;FR*SOD*S*UNIB*33*15*_*_;FR*SOD*S*UNIB*33*2*_*_;FR*SOD*S*UNIB*33*4*_*_;FR*SOD*S*UNIB*33*5*_*_;FR*SOD*S*UNIB*33*7*_*_;FR*SOD*S*UNIB*33*8*_*_;FR*SOD*S*UNIB*34*15*_*_", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096", + "ref:EU:EVSE": "FRURWPUNIB34181;FRURWPUNIB34161;FRURWPUNIB34151;FRURWPUNIB34141;FRURWPUNIB34131;FRURWPUNIB3391;FRURWPUNIB3381;FRURWPUNIB3361;FRURWPUNIB3331;FRURWPUNIB3321;FRURWPUNIB33141;FRURWPUNIB33131;FRURWPUNIB33121;FRURWPUNIB33101;FRURWPUNIB33111;FRURWPUNIB33151;FRURWPUNIB3341;FRURWPUNIB3351;FRURWPUNIB3371;FRURWPUNIB34101;FRURWPUNIB34111;FRURWPUNIB34121;FRURWPUNIB34171" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32258200000, + 48.83773400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLIJWV6HQ25LEY", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2421205209502540006", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37747300000, + 44.74493300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30234;FRTSLP1734", + "description": "Tesla Supercharger Chambéry, France", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89817600000, + 45.59313200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4209183087837555318", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "505671", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/S7OUF5KWNV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41340300000, + 43.54042500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;400 kW", + "description": "Zunder/143955", + "operator:email": "roaming@zunder.com", + "network": "Zunder", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "ESZUNP8033868051549180952", + "capacity": "26", + "opening_hours": "24/7", + "operator": "Zunder | ES*ZUN", + "ref": "1130610" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08937000000, + 43.93739100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/HYNZH5Z54R", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P1840924223764314511", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457473" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14983800000, + 49.00452400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LIVINHAC LE HAUT - Village Des Artisans", + "start_date": "2021-09-24;2021-09-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12130001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23229500000, + 44.58741800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA4LVOTNCZKR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "880194", + "ref:EU:EVSE": "FRWA4P5644917300039185363", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11829200000, + 49.48386300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49248B", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "OuestCharge - ePremium - Ombree D Anjou - Foire", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17483300000, + 47.73916700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2018-07-03", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106500422;FRS81E8106500411;FRS81E8106500412;FRS81E8106500421", + "description": "CASTRES - Parking Sicard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24091521583, + 43.60768679789 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH16E59481002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE QUESNOY - Parking de la gare", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64738446828, + 50.24951471731 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "TREILLIERES - Rue De La Gouérie;OuestCharge - Pulse 50 - Treillieres - Gouerie", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44P44209A;FRS44E44209001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-29;2024-04-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59398580000, + 47.28067000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63352*B", + "ref": "244081", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS63P63352B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25478100000, + 45.46027400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "QUIÉVELON - Grand Rue", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59483001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07450100000, + 50.23796100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-03-02;2022-03-03", + "ref:EU:EVSE": "FRS34E34039001", + "network": "Reveo", + "description": "BOUZIGUES - Place De La Golette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65852770000, + 43.44682500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028025", + "start_date": "2023-07-21", + "description": "CRETEIL - Rue Paul-François Avet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46357289087, + 48.79544567798 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90199086", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Goussainville CDG", + "start_date": "2024-04-23", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46213300000, + 49.01885300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Bergerac | Place du Foirail", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "df3f0eee-74af-5b31-9c79-fb225a631a82", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48747600000, + 44.85006000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-22", + "ref": "FR*SOD*S*SIGE*443*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE44312;FRSIGPSIGE44311", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 352 RUE DETIENNE DORVES - COLOMBES", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23528790000, + 48.91075490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GOUSSAINVILLE", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-05-10", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSGOUSS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45621100000, + 49.02114100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3975EVCP02;LFR3975EVCP01", + "description": "VILLENEUVE LOUBET - Départementale 7", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3975EVCP02;LFR3975EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13440000000, + 43.63160300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Bardos | Parking du Stade", + "opening_hours": "24/7", + "ref": "ac6b5550-e5a7-5cdc-ad02-c345bfe3f27b", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20519000000, + 43.47467800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "688d6f1b-38c0-53d1-96c8-ee707adb3f1e", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "SAUMANE-DE-VAUCLUSE - Cours René Char" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10552300000, + 43.93722700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PONTHEVRARD - Parking de la Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRA05E78499001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91277500000, + 48.55330800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3697EVCP02;LFR3697EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "ST JEAN DE SOUDAIN Setives", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3697EVCP02;LFR3697EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43083400000, + 45.56774300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-10-03;2024-09-26", + "ref:EU:EVSE": "FRPD1PJARCHA", + "opening_hours": "24/7", + "description": "Intergestion Jardiland Champniers (16)", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18485555404, + 45.69281740199 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WLHJJJF5Z0;Belgentier, Avenue Louis Arnaud", + "ref": "85859;WLHJJJF5Z0", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPWLHJJJF5Z0;FREBNWLHJJJF5Z0", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00019800000, + 43.24660900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "18", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "E-VADEA/FR*EVA*P25368*A", + "ref:EU:EVSE": "FREVAP25368A", + "network": "E-VADEA", + "ref": "680726", + "charging_station:output": "300 kW;50 kW;43 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712500000, + 47.32890200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Roquevaire", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-05-29;2024-07-11", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PCRFRQV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59984255683, + 43.33798149483 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Saint-Rémy-Les-Chevreuse", + "amenity": "charging_station", + "start_date": "2024-07-11", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT784701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08522600000, + 48.71667000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-02-21", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42218AU", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB GROUCHY", + "opening_hours": "24/7", + "ref": "FRESEPS42218AU", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37865100000, + 45.46357100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG50851;FROTHPIZIG50831;FROTHPIZIG50821;FROTHPIZIG50811;FROTHPIZIG50841;FROTHPIZIG50861;FROTHPIZIG50871;FROTHPIZIG50881;FROTHPIZIG50891", + "ref": "FR*SOD*S*IZIG*508*9*_*_;FR*SOD*S*IZIG*508*5*_*_;FR*SOD*S*IZIG*508*1*_*_;FR*SOD*S*IZIG*508*2*_*_;FR*SOD*S*IZIG*508*3*_*_;FR*SOD*S*IZIG*508*4*_*_;FR*SOD*S*IZIG*508*6*_*_;FR*SOD*S*IZIG*508*7*_*_;FR*SOD*S*IZIG*508*8*_*_", + "charging_station:output": "3.68 kW;7.36 kW;50 kW;22 kW", + "socket:type2_combo:output": "50 kW", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-12-08;2022-11-17", + "opening_hours": "24/7", + "description": "TOULOUSE WOODPARK - BAT A - EXTERIEUR", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38186000000, + 43.57400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "LARTEM STATION 5", + "charging_station:output": "7 kW", + "description": "LARTEM STATION 5", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6878555;FRCPIE6878545;FRCPIE6878535;FRCPIE6878345;FRCPIE6878525", + "operator:email": "info@chargepoint.com", + "start_date": "2024-02-28", + "ref": "FRCPIE6878555;FRCPIE6878545;FRCPIE6878535;FRCPIE6878345;FRCPIE6878525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01529200000, + 43.55446600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;60 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "LFR3724EVCP02;LFR3724EVCP01;529073", + "description": "PLESTIN LES GREVES Guergay;Freshmile/A818R6G62Y", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "ref:EU:EVSE": "LFR3724EVCP01;FRFR1P4581514564495678065;LFR3724EVCP02", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "charging_station:output": "120 kW;22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.62543700000, + 48.66224000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B HOTEL AVIGNON 2", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-15", + "ref:EU:EVSE": "FRVIAP122049" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87221200000, + 43.97695300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6476583352902012909", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "368902", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/OCRUUMPHSX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11770300000, + 46.26114300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Biganos, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP30181", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96021500000, + 44.63698500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892431", + "ref:EU:EVSE": "FRFR1P4922610321988156079", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLJWL56T61KEYF", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09214300000, + 49.25931800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGOGNE - PARKING MAIRIE", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB16*64*1*_*_", + "start_date": "2021-06-01", + "opening_hours": "24/7", + "network": "MOBIVE - SDEG 16", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS16PMB166411;FRS16PMB166412", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15867200000, + 45.73702200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "description": "MobiSDEC/HKI3EEJ2VG", + "capacity": "3", + "opening_hours": "24/7", + "ref": "467487", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRS14P655675344097160740" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327000000, + 49.16438300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P1004504158472851520", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LIHY8IMGZ", + "ref": "1127946", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34029900000, + 47.61610800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50185001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "FLEURY - la Maison Neuve", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-11-22", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25047030000, + 48.84146600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8117000222;FRS81E8117000221;FRS81E8117000212;FRS81E8117000211", + "description": "MONESTIES - Place Du Foirail", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09690807776, + 44.07183616351 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "description": "RELAIS LE CEDRE", + "ref": "FRHPCPNF059704", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "start_date": "2024-08-02", + "capacity": "11", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW", + "ref:EU:EVSE": "FRHPCENF059704" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52299300000, + 49.00004400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "RIEUTORT-DE-RANDON - Parking Foyer", + "network": "Reveo", + "charging_station:output": "18 kW;180 kW", + "ref:EU:EVSE": "FRS48E48127001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48120300000, + 44.63218000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PGKP4F0ALTF", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Auray - Parking Porte Océane", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2021-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00841400000, + 47.67033400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MARTIN-BOULOGNE - Place Briand", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH05E62758003", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63362300000, + 50.72644800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "LOGONNA DAOULAS - Rue Ar Mor", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-26", + "ref:EU:EVSE": "FRS29E29460001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29722400000, + 48.32183700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "487275", + "description": "Mobilité électrique 56/EKGZCS", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56P8558065502558752117" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82046000000, + 48.12330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B093", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-05-18", + "description": "SAINT-SAUVEUR-1-2;SAINT-SAUVEUR-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346052352;FRLMSE12346052351;FRLMSE12346052361;FRLMSE12346052362", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62647000000, + 46.80711000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Métropolis/FR*MGP*P93048*B;Metropolis - Proximité - Montreuil - Désiré Préaux", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93048B", + "ref": "484790", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43160500000, + 48.85819000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "start_date": "2023-06-13", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Melle - Place Bujault Marché", + "ref:EU:EVSE": "FRSEOPAB79174P0017C", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14501628000, + 46.22232960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Atlante/FRATLFR00337", + "ref": "1081224", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP17006639794590379", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.71724200000, + 48.57387700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89900874", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Girmont - Parking Salle Polyvalente", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-07-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43675200000, + 48.25763800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE REVE DE JANINE", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-10-06", + "network": "LE REVE DE JANINE", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531181220", + "capacity": "3", + "ref:EU:EVSE": "FRMAPP000000007777", + "operator:email": "pozzodimastri.adm@gmail.com", + "operator": "LE REVE DE JANINE", + "ref": "non concerné", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.13692121534, + 41.50017664596 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA TRANCHE-SUR-MER - Rue Du Perthuis Breton", + "ref:EU:EVSE": "FRS85E85294001", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43012000000, + 46.34767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "network": "Allego Carrefour Villabe", + "description": "Allego Carrefour Villabe", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9005042;FRALLEGO9005041;FRALLEGO9001152;FRALLEGO9001151;FRALLEGO9000571;FRALLEGO9000572;FRALLEGO9008161;FRALLEGO9008162", + "start_date": "2024-05-21", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9008162;FRALLEGO9005042;FRALLEGO9005041;FRALLEGO9001152;FRALLEGO9001151;FRALLEGO9000571;FRALLEGO9000572;FRALLEGO9008161" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44971200000, + 48.58529600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ddf131c7-d2c6-4814-ab75-66fb5d3979e8", + "start_date": "2024-02-12", + "ref:EU:EVSE": "FRJRCPBOURG00001", + "capacity": "2", + "description": "Monthléry - Les Bourguignons", + "amenity": "charging_station", + "operator": "Jerecharge.com", + "opening_hours": "Mo-Su 08:00-18:00", + "owner:ref:FR:SIREN": "905083895", + "charging_station:output": "22 kW", + "network": "Jerecharge.com", + "operator:email": "contact@jerecharge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27493000000, + 48.64913600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Match - Wattrelos Abattoir", + "capacity": "7", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PMATWTR", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-11-30", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "50 kW;100 kW;22.17025 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21905763155, + 50.70337177656 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP4701859169119894907", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/WKHCVF4ZLP", + "socket:type2_combo:output": "24 kW", + "ref": "741123" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70472800000, + 44.35463000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Freshmile France", + "description": "Freshmile France/LLNK7Q2VL2G4XR", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1432168468039242654", + "ref": "971909", + "capacity": "9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12645500000, + 45.78183400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "start_date": "2023-12-07", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBSLIL", + "description": "Ibis - Lille Lomme Centre", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00972777490, + 50.64651909580 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-01", + "description": "Réseau eborn/WG33PV1KGE;Saint Quentin Fallavier, Rue du Commerce", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP5368804200759296867;FREBNPWG33PV1KGE", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "749454;WG33PV1KGE", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11158600000, + 45.63323300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34172A", + "socket:type2_combo:output": "120 kW;180 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - 3M - Montpellier - Avenue Jacques Quartier", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34172A", + "charging_station:output": "22 kW;120 kW;180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89146204164, + 43.60715955351 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "PROVENCIA - ANNECY-LE-VIEUX", + "capacity": "2", + "amenity": "charging_station", + "network": "PROVENCIA", + "ref": "FR*SOD*S*OTHR*218*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR21812;FROTHPOTHR21811", + "operator:email": "sav@izivia.com", + "start_date": "2021-08-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14929700000, + 45.91098600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CHAMPLAN - GYMNASE", + "ref:EU:EVSE": "FRCPSPCAPS4912;FRCPSPCAPS4911", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*49*1*_*_", + "start_date": "2021-06-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27416400000, + 48.71111400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLRGC25MN3GNTU", + "ref:EU:EVSE": "FRFR1P8396820823617645767", + "ref": "1075029", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16424300000, + 45.64648700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "6.9 kW;7.4 kW", + "ref": "706625", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA1P4208115676379966339", + "description": "WAAT/FRWATLGDWONW24", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26587300000, + 50.72871900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "801639", + "description": "Freshmile France/O9BO3ARE6X", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2747970944559264846" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86802900000, + 48.96984300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1000098522", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "start_date": "2023-12-27", + "capacity": "3", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "socket:type2_combo:output": "60 kW", + "owner:ref:FR:SIREN": "903356970", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRSWSE1000098522", + "description": "WB60K STANDFORD LANE", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88928600000, + 45.60796400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5307886959741288667", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/MMGQZODB2U", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "505635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09338500000, + 49.25121600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Renault - Epernay", + "amenity": "charging_station", + "start_date": "2023-08-09", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPEMILFREYRENAULT515301", + "opening_hours": "Mo 07:30-12:00, Mo 14:00-19:00, Tu 07:30-12:00, Tu 14:00-19:00, We 07:30-12:00, We 14:00-19:00, Th 07:30-12:00, Th 14:00-19:00, Fr 07:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96559400000, + 49.05808900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E139348", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - COMBRES - Pl. de l'église", + "description": "MODULO - COMBRES - Pl. de l'église", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E139348" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06447400000, + 48.32510400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f0563af9-5bb6-48ef-9982-2d8a8b00639c", + "network": "Borne de recharge Sud Camargue", + "operator:email": "info@sudcamargue.fr", + "start_date": "2023-06-12", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "charging_station:output": "22 kW", + "description": "Borne de recharge Sud Camargue Lunel Viel", + "operator": "Sud Camargue", + "owner:ref:FR:SIREN": "802393371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08000000000, + 43.68000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P7238717743488620818", + "description": "SDEA 10/IA7F7BLY0N", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "521450", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11032600000, + 48.23574100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LE006633", + "ref:EU:EVSE": "FRZP1P8643202797614596583", + "ref": "682946", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46200900000, + 50.89489900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-25", + "ref:EU:EVSE": "FRROSE501", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Menus_Services_Valence", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91530900000, + 44.91449250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDE82/XWWSHW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PXWWSHW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "38935", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52286000000, + 44.07620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - AMIENS NORD", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST10023;FRIZFPFAST10022;FRIZFPFAST10013;FRIZFPFAST10011;FRIZFPFAST10012;FRIZFPFAST10021", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-06-04", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*100*2*_*_;FR*SOD*S*FAST*100*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31881147115, + 49.90741687753 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49117A;FRS49E49117001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-05-29;2021-04-21;2024-05-15", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - La Dagueniere - Acacias;LA DAGUENIERE - Parking Acacias", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43545700000, + 47.41890800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60P119279558220200982", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/XPMOM4XZ9H", + "ref": "368998" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61002000000, + 49.21850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*208*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "BRN08 - ROOSEVELT - LES ALIZES", + "ref:EU:EVSE": "FRGLYPLYON20811;FRGLYPLYON20812", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91670570000, + 45.73111590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NIMES - Avenue Robert Bompard", + "ref:EU:EVSE": "FRS30E30189018", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39450400000, + 43.83423000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/APALYU", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PAPALYU", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "ref": "39077", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36819000000, + 47.74680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "CLOUE | B035;CLOUE-1-1;CLOUE-1-2", + "amenity": "charging_station", + "network": "SOREGIES MOBILITES;SOREGIES", + "ref:EU:EVSE": "FRLMSE12346402751;FRLMSE12346402761;FRS86PSOREB0351;FRS86PSOREB0352", + "opening_hours": "24/7", + "operator:email": "irve@soregies.fr;sav@izivia.com", + "start_date": "2017-01-12;2016-12-01", + "owner:ref:FR:SIREN": "450889225", + "ref": "FR*SOD*S*SORE*69*1*_*_;B035", + "charging_station:output": "18 kW;22 kW", + "operator": "SOREGIES MOBILITES;IZIVIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16584000000, + 46.44435900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "598449", + "description": "Mobilygreen CPO/67d36730-1315-49b1-a0fd-10a85aed3683", + "operator:email": "contact@mobilygreen.fr", + "capacity": "18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMW1P6916650005837811274", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42377500000, + 43.56324500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-29", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*155*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE15512;FRSIGPSIGE15511", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - FACE AU 7 ALLEE DU VERGER - PARKING DE LORANGERIE - ROISSY-EN-FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51946500000, + 49.00167600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E78674002", + "description": "VILLEPREUX - Avenue du Grand Canal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99170200000, + 48.83476700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ANYOS", + "description": "ANYOS - Data Valley", + "start_date": "2023-06-01", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "897541264", + "operator:email": "contact@anyos.fr", + "opening_hours": "24/7", + "ref": "ANYOS-IOTLAB-HBS42-P435;ANYOS-IOTLAB-HBS40-P415;ANYOS-IOTLAB-HBS39-P356;ANYOS-IOTLAB-HBS38-P344;ANYOS-IOTLAB-HBS36-P342;ANYOS-IOTLAB-HBS35-P341;ANYOS-IOTLAB-HBS31-P337;ANYOS-IOTLAB-HBS27-P304;ANYOS-IOTLAB-HBS24-P243;ANYOS-IOTLAB-HBS22-P241;ANYOS-IOTLAB-HBS19-P238;ANYOS-IOTLAB-HBS18-P237;ANYOS-IOTLAB-HBS15-P215;ANYOS-IOTLAB-HBS12-P144;ANYOS-IOTLAB-HBS9-P141;ANYOS-IOTLAB-HBS1-P104;ANYOS-IOTLAB-HBS2-P115;ANYOS-IOTLAB-HBS3-P135;ANYOS-IOTLAB-HBS4-P136;ANYOS-IOTLAB-HBS5-P137;ANYOS-IOTLAB-HBS6-P138;ANYOS-IOTLAB-HBS7-P139;ANYOS-IOTLAB-HBS8-P140;ANYOS-IOTLAB-HBS10-P142;ANYOS-IOTLAB-HBS11-P143;ANYOS-IOTLAB-HBS13-P156;ANYOS-IOTLAB-HBS14-P204;ANYOS-IOTLAB-HBS16-P235;ANYOS-IOTLAB-HBS17-P236;ANYOS-IOTLAB-HBS20-P239;ANYOS-IOTLAB-HBS21-P240;ANYOS-IOTLAB-HBS23-P242;ANYOS-IOTLAB-HBS25-P244;ANYOS-IOTLAB-HBS26-P256;ANYOS-IOTLAB-HBS28-P315;ANYOS-IOTLAB-HBS29-P335;ANYOS-IOTLAB-HBS30-P336;ANYOS-IOTLAB-HBS32-P338;ANYOS-IOTLAB-HBS33-P339;ANYOS-IOTLAB-HBS34-P340;ANYOS-IOTLAB-HBS37-P343;ANYOS-IOTLAB-HBS41-P434;ANYOS-IOTLAB-HBS43-P455", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE1000135844;FRLMSE1000135842;FRLMSE1000135841;FRLMSE1000135839;FRLMSE1000135837;FRLMSE1000135836;FRLMSE1000135835;FRLMSE1000135834;FRLMSE1000135831;FRLMSE1000135830;FRLMSE1000135826;FRLMSE1000135825;FRLMSE1000135824;FRLMSE1000135823;FRLMSE1000135822;FRLMSE1000135814;FRLMSE1000135813;FRLMSE1000135812;FRLMSE1000135810;FRLMSE1000135809;FRLMSE1000135804;FRLMSE1000135802;FRLMSE1000135803;FRLMSE1000135805;FRLMSE1000135806;FRLMSE1000135807;FRLMSE1000135808;FRLMSE1000135811;FRLMSE1000135815;FRLMSE1000135816;FRLMSE1000135817;FRLMSE1000135818;FRLMSE1000135819;FRLMSE1000135820;FRLMSE1000135821;FRLMSE1000135827;FRLMSE1000135828;FRLMSE1000135829;FRLMSE1000135832;FRLMSE1000135833;FRLMSE1000135838;FRLMSE1000135840;FRLMSE1000135843", + "operator": "ANYOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51000000000, + 43.54000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | L'Isle d'Espagnac | Parking Rue Anatole France", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "65d637b9-adaf-5dc8-b048-656e108da6ec", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19738700000, + 45.66228200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-09-15", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77GACA", + "description": "GRISY-SUISNES - COMPLEXE SPORTIF", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67007200000, + 48.68616700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-17", + "charging_station:output": "22 kW;150 kW", + "description": "LIEVIN", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSLIEVI", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76984800000, + 50.42104700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3630EVCP02;LFR3630EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3630EVCP02;LFR3630EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "TROYES Tassigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09416700000, + 48.30486000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31557001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "TOURNEFEUILLE - Impasse Max Baylac", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34664500000, + 43.58344100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/HXTWYM;Cour-Et-Buis, Place de la Croix", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPHXTWYM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref": "32737;HXTWYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00648000000, + 45.44090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "971903", + "capacity": "5", + "ref:EU:EVSE": "FRFR1P2409663212938194291", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLNAEE4ND2CBO9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93665400000, + 49.06293600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E75117002", + "start_date": "2021-08-17", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Villiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31431000000, + 48.88195000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPKRPNCH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Alixan, Parc Colombet;Réseau eborn/KRPNCH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref": "48349;KRPNCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02596000000, + 44.97410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2024-01-10", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Saint-Denis - Hôtel Ibis Stade Sud", + "ref:EU:EVSE": "FRELCPSDEHI", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36528400000, + 48.92127000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E75108002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "9", + "description": "Parking Paris Rome Batignolles - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32138080000, + 48.88197110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR NANCY", + "ref": "FRCPIE6619675", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR NANCY", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6619675", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18420000000, + 48.64518100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/RVMNOOPOGM", + "ref": "95978", + "ref:EU:EVSE": "FREBNPRVMNOOPOGM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54145000000, + 45.52291800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "735828", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "WAAT SAS | FR*WA3", + "ref:EU:EVSE": "FRWA3P221702943762085529", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLJ6DJ2DQQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11549200000, + 45.80038600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRFR1P6572522775202120084", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/AKAQHLZXWE", + "opening_hours": "24/7", + "ref": "477594", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61780100000, + 50.38016700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00814", + "start_date": "2022-11-07", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "charging_station:output": "22 kW", + "description": "Vikings Casinos Frejus", + "owner:ref:FR:SIREN": "533913497", + "ref:EU:EVSE": "FRTCBP00814", + "opening_hours": "Mo-Th 08:00-03:00,Fr-Sa 08:00-04:00,Su 08:00-03:00", + "network": "VIKINGS CASINO FREJUS", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74562293862, + 43.42562041099 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "705947", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8430506040876850028", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MEHMD1BJY0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92603100000, + 49.93849600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:30-12:30, Mo 13:30-19:00, Tu 07:30-12:30, Tu 13:30-19:00, We 07:30-12:30, We 13:30-19:00, Th 07:30-12:30, Th 13:30-19:00, Fr 07:30-12:30, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00;24/7", + "start_date": "2020-06-18;2022-12-21", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINMERCEDES631702;FRSSDPMAURINMERCEDES631701;FRSSDPMAURINMERCEDES631703", + "capacity": "2;10", + "description": "Mercedes - Aubière (Côté neuf);Mercedes - Aubière (Côté occasion);Mercedes - Aubière", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13380500000, + 45.75036700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2909800", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Lampaul Plouarzel-Rue de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.76381300000, + 48.44870800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E110560021;FRS11E11056002", + "operator": "Bouygues E&S", + "description": "CABRESPINE - Parking Du Gouffre", + "start_date": "2023-12-05", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45722220000, + 43.35944440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "f6da6bc4-e71d-493b-898a-b1855c5610b2", + "network": "Hôtel Logis Europa", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "530450535", + "charging_station:output": "22 kW", + "description": "Hôtel Logis Europa 2 - 22 kW AC;Hôtel Logis Europa 1 - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC61523;FRZP1PEAC61642", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14176911000, + 45.46613600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57619;FRS08E57620", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - VOUZIERS - Rue du Champ de Foire", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - VOUZIERS - Rue du Champ de Foire", + "operator": "Modulo", + "ref:EU:EVSE": "FRS08E57619;FRS08E57620", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70091199000, + 49.40010707000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/MBFALP", + "ref": "79420", + "ref:EU:EVSE": "FRS80PMBFALP", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34355000000, + 49.88750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20857800000, + 49.97185460000 + ], + [ + 1.20861100000, + 49.97178590000 + ], + [ + 1.20874480000, + 49.97181250000 + ], + [ + 1.20888510000, + 49.97184030000 + ], + [ + 1.20885210000, + 49.97190900000 + ], + [ + 1.20857800000, + 49.97185460000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*235*1*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST23512;FRIZFPFAST23511;FRIZFPFAST23513", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MC DONALDS - MONTUSSAN", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42805746700, + 44.87445576668 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "50 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRS44P44015C", + "opening_hours": "24/7", + "description": "OuestCharge - Pulse 50 - Blain - Resistance", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-04-30", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76164900000, + 47.47294600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77067001;FRS77P77067A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CESSON - Route De Saint-Leu;Cesson ", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61N10JK8ACTNKVMS13", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-24;2015-07-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60187400000, + 48.56225000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "NOVOTEL SENART", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "description": "NOVOTEL SENART", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000054873;FRGSPP1000054872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52097134161, + 48.62399700836 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219863;FRS37E219864", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - MARIGNY MARMANDE - Grande Rue", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E219863;FRS37E219864", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MARIGNY MARMANDE - Grande Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48861100000, + 46.98139000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PETR - Badonviller", + "operator": "37__PETR", + "ref": "daba3dc1-6aa6-5f06-a121-1f59f69ef34b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89610000000, + 48.49720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRG10P69381AC;FRG10P69381AB;FRG10P69381AA", + "capacity": "1", + "start_date": "2024-08-01", + "network": "SPLM Parking Terreaux - N1 - Zone 2;SPLM Parking Terreaux - N1 - Zone 1;SPLM Parking Terreaux - N1 - Zone 3", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "SPLM Parking Terreaux - N1 - Zone 2;SPLM Parking Terreaux - N1 - Zone 1;SPLM Parking Terreaux - N1 - Zone 3", + "ref": "FRG10P69381AC;FRG10P69381AB;FRG10P69381AA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83390210000, + 45.76713930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "479fd818-b95f-5fdd-b3bf-97667b7123f3", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40", + "description": "MOBIVE | CACHEN | Parking Restaurant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42788000000, + 44.07154000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-20", + "ref:EU:EVSE": "FRSIGPSIGE27011;FRSIGPSIGE27012", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*270*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - RUE DE TORCY - VAIRES-SUR-MARNE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64296100000, + 48.86640500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MEHARI COR BORNE SE", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "description": "MEHARI COR BORNE SE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6495255", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6495255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74068100000, + 45.70124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Leclerc/GHORFZQQIB", + "ref": "492054", + "ref:EU:EVSE": "FRLE2P8222576049528575849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076200000, + 48.98947500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "86bb2d99-aff3-5131-bf80-fe36e849357b", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Moustier Ventadour | la Chanselve", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11451200000, + 45.39263900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "network": "AlterBase", + "description": "Réseau AlterBase - St Pierre des Echaubrognes - Centre", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB16001A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74281700000, + 46.98994600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2020-06-17", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "ref:EU:EVSE": "FRAGXP01109A", + "description": "Pays de Gex - ePremium - Collonges - Biere", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90597500000, + 46.13785400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4195EVCP03;LFR4195EVCP02;LFR4195EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "HAGUENAU Bitche", + "ref:EU:EVSE": "LFR4195EVCP03;LFR4195EVCP02;LFR4195EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77875300000, + 48.82006700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "description": "SEYSSINS - Parking Le Prisme (CITIZ)", + "ref:EU:EVSE": "FRM38E38486001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69117010000, + 45.16558270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CANNES - PARKING BASTIDE ROUGE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-28", + "ref": "FR*SOD*S*WIIZ*126*1*_*_;FR*SOD*S*WIIZ*126*2*_*_;FR*SOD*S*WIIZ*126*3*_*_;FR*SOD*S*WIIZ*126*4*_*_", + "ref:EU:EVSE": "FRA16PWIIZ12642;FRA16PWIIZ12631;FRA16PWIIZ12622;FRA16PWIIZ12621;FRA16PWIIZ12611;FRA16PWIIZ12612;FRA16PWIIZ12632;FRA16PWIIZ12641", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95991100000, + 43.55150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4304423091387778153", + "network": "Freshmile France", + "description": "Freshmile France/PHETZJE3DT", + "opening_hours": "24/7", + "ref": "477693", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28527500000, + 49.14325700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACTSPA", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Action - Saint-Pierre-en-Auge", + "start_date": "2024-02-27;2024-04-12", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02768725398, + 49.02456703429 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLZYYD;48385", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLZYYD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LLZYYD;Montvendre, Le Pré du Bost", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02250000000, + 44.87150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPSGLCC", + "description": "Saint-Genis-Laval - CC Saint Genis 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79289900000, + 45.67978100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E95572001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Cergy-Pontoise Liesse Sud - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12730367022, + 49.03361931737 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUSAINTCONTEST BORNE 2", + "ref:EU:EVSE": "FRCPIE6681485;FRCPIE6681505", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-04-04", + "opening_hours": "24/7", + "ref": "FRCPIE6681485;FRCPIE6681505", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SUSAINTCONTEST BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39694800000, + 49.20068000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "charging_station:output": "120 kW;22 kW", + "ref": "CBKQJQZV8O", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPCBKQJQZV8O", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "description": "La Roche sur Yon 2, Cash Piscine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42838785000, + 46.69610152000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-14", + "description": "ENGIE Vianeo - Golbey - Piscine Germain Creuse", + "ref:EU:EVSE": "FRVIAP143006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045100000, + 48.19058500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3427126900801136865", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "75 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "477648", + "capacity": "3", + "socket:type2_combo:output": "75 kW", + "description": "Freshmile France/HSR5CVUBSN", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74653800000, + 48.55950300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0602", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX06*02", + "description": "Paris | Rue Danton 8", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34210700000, + 48.85262000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LSDAFX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PLSDAFX", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "294458", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92897000000, + 49.05290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-16", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "3", + "description": "Hyundai - ABVV Automobiles - Gonesse", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPABVVHYUNDAI955001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41923800000, + 48.99775600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22340001", + "start_date": "2023-04-19", + "description": "TONQUEDEC - Parking Rue Angéla Duval" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39697100000, + 48.66951200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - PREVERANGES - Mairie", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E148778", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2021-01-08", + "description": "MODULO - PREVERANGES - Mairie", + "ref": "FRS18E148778" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25417363000, + 46.43396250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "GROUPE LGE SOCIETE AUTOPLUG", + "capacity": "5", + "operator:email": "cindyt@groupelge.com", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "ref": "f9bed002-5bbd-44d6-aaaf-7673a109fc32", + "owner:ref:FR:SIREN": "393755962", + "charging_station:output": "22 kW", + "start_date": "2022-12-22", + "description": "LAGNY", + "network": "AUTOPLUG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68135196654, + 48.87247201934 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/QQCJJBHN5V", + "opening_hours": "24/7", + "ref": "32068", + "ref:EU:EVSE": "FRS10P3467255794120902687" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47342900000, + 48.07142700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "ALBI - Parking du Bondidou 1", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8100400711;FRS81E8100400712;FRS81E8100400721;FRS81E8100400722", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2017-11-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13963699300, + 43.92764282200 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIKAPIKEA6991;FRIKAPIKEA6971;FRIKAPIKEA6961;FRIKAPIKEA6951;FRIKAPIKEA6941;FRIKAPIKEA69101;FRIKAPIKEA6911;FRIKAPIKEA69111;FRIKAPIKEA69121;FRIKAPIKEA69131;FRIKAPIKEA6921;FRIKAPIKEA6931;FRIKAPIKEA6981", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "IKEA AVIGNON - PARKING CLIENT 1", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-31", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*69*9*_*_;FR*SOD*S*IKEA*69*8*_*_;FR*SOD*S*IKEA*69*7*_*_;FR*SOD*S*IKEA*69*6*_*_;FR*SOD*S*IKEA*69*5*_*_;FR*SOD*S*IKEA*69*4*_*_;FR*SOD*S*IKEA*69*13*_*_;FR*SOD*S*IKEA*69*10*_*_;FR*SOD*S*IKEA*69*1*_*_;FR*SOD*S*IKEA*69*11*_*_;FR*SOD*S*IKEA*69*12*_*_;FR*SOD*S*IKEA*69*2*_*_;FR*SOD*S*IKEA*69*3*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89004900000, + 43.97940200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - ePremium - Pornichet - Léon Gambetta", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33588200000, + 47.26101300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77316005", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "description": "MORÊT-LOING-ET-ORVANNE - Médiathèque" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82612200000, + 48.35982500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62543001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "MAMETZ - Rue de l'école Buissonnière", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32133700000, + 50.63526500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - NOIZAY - Rue de la République", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E221501;FRS37E221499", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - NOIZAY - Rue de la République", + "ref:EU:EVSE": "FRS37E221501;FRS37E221499" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89095700000, + 47.42115700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VERDUN - Rue des Tanneries", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E66477;FRS55E66478", + "ref:EU:EVSE": "FRS55E66477;FRS55E66478", + "network": "MODULO - VERDUN - Rue des Tanneries" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38771400000, + 49.15923000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON14522;FRGLYPLYON14521;FRGLYPLYON14511", + "socket:type2_combo:output": "50 kW;175 kW", + "network": "GRAND LYON", + "description": "BRN06 - MERMOZ-PINEL - CHARGE ULTRA-RAPIDE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*145*1*_*_;FR*SOD*S*LYON*145*2*_*_", + "operator:email": "sav@izivia.com", + "charging_station:output": "50 kW;175 kW", + "start_date": "2022-03-22;2021-11-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88787600000, + 45.73023800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59320*01", + "description": "EMMERIN - Rue Auguste Potié", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRMELP5932001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00025572800, + 50.59342856000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2019-05-11;2019-11-08", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "description": "PETIT MENIN 2 PIRATE PARADISE - Neuville-en-Ferrain", + "ref:EU:EVSE": "FRSSDPCEETRUS596561", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 10:00-19:30, Tu 10:00-19:30, We 10:00-19:30, Th 10:00-19:30, Fr 10:00-19:30, Sa 10:00-19:30, Su 10:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14382000000, + 50.74177000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6579965;FRCPIE6579955", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6579965;FRCPIE6579955", + "capacity": "4", + "network": "SUPER U OLONNE OLONNE SUR MER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U OLONNE OLONNE SUR MER", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77247800000, + 46.54389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LLZ12QMH81Y7FN", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1161705", + "ref:EU:EVSE": "FRLE2P880495485245050326" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49019700000, + 44.90550800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*MB33*117*1*_*_;f582c257-7ec9-5601-baa7-8f0c774d594d", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint denis de Pile | Rue du Champs de Foire | Salle des Fëtes | Au Bourg;SAINT DENIS DE PILE - RUE DU CHAMPS DE FOIRE - SALLE DES FETES - AU BOURG", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS33PMB3311711;Non concerné;FRS33PMB3311712", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20442600000, + 44.99210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Paray-Vieille-Poste - Avenue du Général de Gaulle", + "ref": "ef52480b-f36e-55a1-9bab-ae174972a87f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36737400000, + 48.71717500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CASINO FENOUILLET", + "operator": "Green To Wheel", + "description": "CASINO FENOUILLET", + "ref:EU:EVSE": "FRALLPCAS001", + "charging_station:output": "50 kW;43 kW;160 kW;22 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;160 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "capacity": "9", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40036050000, + 43.69259229000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3347EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ARGENTON SUR CREUSE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3347EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52875700000, + 46.58993600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Istres, Gare Sncf", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PZA82QDL3L4", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98059900000, + 43.51558300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E181009;FRS88E181007", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - EPINAL - Rue Marie Marving", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "start_date": "2023-11-10", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - EPINAL - Rue Marie Marving", + "ref:EU:EVSE": "FRS88E181009;FRS88E181007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43273000000, + 48.17860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ23312;FRA16PWIIZ23311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*233*1*_*_", + "network": "WIIIZ", + "description": "ANTIBES - PARKING DES COMBES", + "operator:email": "sav@izivia.com", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09096800000, + 43.60081100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "892371", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P146505422329048363", + "description": "Freshmile France/LLJ8KS3IN19LQ6", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20371000000, + 44.93715900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "100 kW;50 kW;22 kW;188 kW", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Mr. Bricolage - Saint-Romain-de-Colbosc", + "opening_hours": "24/7", + "start_date": "2023-04-25;2023-04-26", + "ref:EU:EVSE": "FRPD1PMBRSRC", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34341814375, + 49.52818177580 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPLAPALISSEPA", + "ref": "64820;lapalissepa", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Lapalisse, Pasteur;Réseau eborn/lapalissepa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64484000000, + 46.25050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "927792", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "ENGIE MAMP - Bornes publiques/81AEC69E-C8B1-4827-B206-15B423F0FED4", + "ref:EU:EVSE": "FREVZP5899508344725216513", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43888000000, + 43.30969100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BIARRITZ - Halles Clemenceau", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E64122003", + "start_date": "2020-06-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55880470000, + 43.48071740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/EJFSUCSX8H;Châtel, Pré-la-joux", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2022-09-22", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "EJFSUCSX8H;598236", + "ref:EU:EVSE": "FREBNPEJFSUCSX8H;FREBNP6623210577269517608", + "charging_station:output": "7.4 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78992000000, + 46.23258000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPWJ8Z1KJHM8", + "description": "Orcières, Parking de la Poste;Réseau eborn/WJ8Z1KJHM8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30428;WJ8Z1KJHM8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32571100000, + 44.68419100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Hôtel Première Classe Epernay", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-09-28", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95525000000, + 49.05245800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P7322314604528897470", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKM85IHWK4VAP", + "ref": "892548", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47767200000, + 49.40767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-12-01", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1309", + "description": "Paris | Rue Croulebarbe 1", + "opening_hours": "24/7", + "ref": "FR*V75*PPX13*09", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35305600000, + 48.83452420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5493930791357454438", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WTNQL6YW1O", + "charging_station:output": "22 kW", + "opening_hours": "Th,We,Mo,Tu,Fr 08:00-18:45,Sa 08:30-17:30", + "ref": "1061055", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27048000000, + 45.87117000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "BMW - Pontarlier", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSAVYBMW253001", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 13:30-19:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "start_date": "2022-07-27", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33592100000, + 46.90052700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PEZYEUREMAIRIE", + "capacity": "2", + "description": "900024", + "amenity": "charging_station", + "start_date": "2016-05-30", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41963000000, + 48.86551000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS21P21710A", + "charging_station:output": "50 kW;43 kW", + "ref": "211331", + "description": "SICECO/FR*S21*P21710*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53628900000, + 47.39857000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551024", + "start_date": "2024-03-28", + "description": "SAINT-GERMAIN-EN-LAYE - MERMOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08271000000, + 48.90212000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-07-08", + "capacity": "2", + "description": "Hutt_Lyon", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE127", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72919400000, + 45.76353300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "WAAT/FRWATLOFDOHO5Q", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "ref": "932085", + "ref:EU:EVSE": "FRWATP2649595477991553525", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78315600000, + 43.93349800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE438900", + "network": "IONITY GMBH", + "capacity": "7", + "start_date": "2021-12-15", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Vinassan Nord", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE438900", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08926900000, + 43.21589000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - PONTFAVERGER - Rue de la gare", + "ref:EU:EVSE": "FRS51E42467;FRS51E42468", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E42467;FRS51E42468", + "start_date": "2020-12-11", + "network": "MODULO - PONTFAVERGER - Rue de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32007100000, + 49.30130700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LA BARTHE DE NESTE - Rue Du Stade", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65069001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38087000000, + 43.07855000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080364", + "capacity": "18", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681358;531681356;531681367;531681369;531681365;531681364;531681362;531681366;531681363;531681368;531681370;531681371;531681373;531681372;531681357;531681360;531681359;531681361", + "ref:EU:EVSE": "FRHPCPNF080364", + "description": "RELAIS BEAUGENCY MESSAS", + "start_date": "2023-06-28;2023-06-30", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64124000000, + 47.81910600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34157001", + "charging_station:output": "22 kW", + "description": "MEZE - Rue Victor Hugo - Parking du Château", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60844166667, + 43.42811670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PMNFMWG", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-05-27", + "description": "Kervignac - Rue de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24083500000, + 47.76408900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/IB0HMQS0YP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1957037779486333774", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "915093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98239800000, + 49.22589300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "599106", + "amenity": "charging_station", + "description": "Metropolis - Express - Neuilly-sur-Seine - Maillot;Métropolis/FR*MGP*P92051*V", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92051V", + "start_date": "2023-08-24", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27103600000, + 48.87881000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARFIAT386001", + "description": "Fiat - ByMyCar - Echirolles", + "operator:email": "support@driveco.com", + "start_date": "2020-07-02", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70877800000, + 45.14515000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC2P005802;FRC2P005801", + "network": "MAIRIE - 77640", + "start_date": "2023-03-01", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "217702380", + "description": "MAIRIE - 77640", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "ref": "FRC2P005802;FRC2P005801", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13317260000, + 48.92402510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "6b682e0d-7227-4979-b08c-66740b2c7e61", + "ref:EU:EVSE": "FRLUMEHOTELCHEVALBLANC11", + "start_date": "2022-08-30", + "charging_station:output": "12 kW", + "capacity": "2", + "description": "Hôtel Le Cheval Blanc 13", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62000000000, + 43.67000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | La lande-De-Fronsac | Parking Mairie", + "operator:email": "cpo@citeos.com", + "ref": "ad250e22-0b62-5da5-a5d5-d7f610ba9454", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38323200000, + 44.97941800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Route de Latrape - RIEUX VOLVESTRE", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE31RVTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19609800000, + 43.26671100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "BornEco/644e2d8e2f5a364fea312d3d", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP7039565220812896665", + "ref": "788925", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651000000, + 45.20972500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "485166", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/QMM82OX1GG", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "34", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1464556723029295279" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720800000, + 47.83017800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Plan-de-Cuques, Rue du 14 Juillet, Parking Piscine", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PQQMLW36C4P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46472000000, + 43.34767700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "402533", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/JMYY8FYAWD", + "ref:EU:EVSE": "FRS89P3527468438335739009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41985600000, + 47.54730600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*88*1*_*_", + "start_date": "2018-06-11", + "capacity": "2", + "amenity": "charging_station", + "description": "LE CANNET PARKING RUE DES ORANGERS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ8811;FRA16PWIIZ8812", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01854800000, + 43.57538600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLTX0V6CAGJ6RO", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1118373", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9087297789537458510", + "operator": "Freshmile | FR*FR1", + "capacity": "40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28351200000, + 43.69636500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "description": "Super U - Les Achards", + "amenity": "charging_station", + "start_date": "2023-01-02", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PSYUACH", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66287518361, + 46.60837662828 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/NZGBPIAKU2;Dolomieu, Rue du Stade", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30134;NZGBPIAKU2", + "ref:EU:EVSE": "FREBNPNZGBPIAKU2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50410700000, + 45.60983500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARF - Bornes Publiques/81878BD6-4B78-4DBE-94AD-872F818E1194", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "674621", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP1211160944227973495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44938500000, + 43.87610300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "SCHILTIGHEIM - PREVERT", + "amenity": "charging_station", + "start_date": "2018-06-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*7*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR712;FROTHPOTHR711", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73829400000, + 48.60187100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPR8PQPHRS5Y", + "description": "Réseau eborn/R8PQPHRS5Y", + "ref": "294506" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13872900000, + 45.94507900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "PK3YEM8DDW;94442", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPPK3YEM8DDW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/PK3YEM8DDW;Allemond, Chemin Des Ecoliers", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03748000000, + 45.12733900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING LE FIEF MELIN", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "LE FIEF MELIN", + "ref": "FR*SOD*S*OTHR*388*2*_*_;FR*SOD*S*OTHR*388*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR38821;FROTHPOTHR38811", + "operator:email": "sav@izivia.com", + "start_date": "2022-04-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21471700000, + 45.89383200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8497361666695729135", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RVEHPJBOQM", + "operator": "Freshmile | FR*FR1", + "ref": "756993" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98604700000, + 46.74053400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Roissy-en-France, France", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP29159", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51148300000, + 48.98600400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "435132", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8789442998603310254", + "amenity": "charging_station", + "description": "Freshmile France/MLFLCWKQQC", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74004900000, + 50.31345700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01861", + "description": "AMP | 4-28 bd. De la Maillane", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-21", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*TCB*P01861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39510606900, + 43.27749170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PWR6BZZQGG", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3964243732960592219", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "578951", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.04803100000, + 48.00097100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Chatelaudren-Place La poste", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS22E22206001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96804600000, + 48.54139300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mazda - Chalon-sur-Saône - 22kW AC", + "start_date": "2021-01-05", + "network": "MAZDA CHALON S.SAONE - GROUPE GUILLET", + "owner:ref:FR:SIREN": "391060480", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZMAE22AC50711", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "50711", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86012700000, + 46.76897800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-05-11", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Kiloutou_Sentinelle", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE340" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48050900000, + 50.34261900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MANTES-LA-JOLIE - Rue Christophe Colomb", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-03-27", + "ref:EU:EVSE": "FRY01E78361009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69189080000, + 49.00284360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-15", + "description": "Sisteron", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE449051;FRIOYE449004;FRIOYE449002;FRIOYE449001;FRIOYE449003;FRIOYE449052;FRIOYE449053", + "ref:EU:EVSE": "FRIOYE449051;FRIOYE449004;FRIOYE449002;FRIOYE449001;FRIOYE449003;FRIOYE449052;FRIOYE449053", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "Sisteron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91298300000, + 44.23649500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAVAL - Avenue Robert Buron;OuestCharge - Diva Sp - Laval - Buron", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2021-04-12;2024-05-14", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS53E53130002;FRS53P53130B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76145520000, + 48.07447270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2017-09-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66050001", + "charging_station:output": "22 kW", + "description": "CLAIRA - Place De La Republique", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95632300000, + 42.75975000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE010002;FRIENE010001", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-09-04", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE010002;FRIENE010001", + "operator": "NW IECharge", + "description": "Mondoubleau", + "network": "Mondoubleau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90973000000, + 47.98551000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "CHATEAUGIRON - 16 boulevard pierre et julien gourdel ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35069001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50139100000, + 48.04928600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-06;2017-12-05", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "REMALARD", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61345A", + "ref": "SE61-REMA-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77428600000, + 48.43005600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "541727", + "ref:EU:EVSE": "FRFR1P3389997544816083077", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ACRYNFDCV8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25867500000, + 49.50863300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PBDSPXY", + "owner:ref:FR:SIREN": "200075240", + "start_date": "2018-06-01", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "79762;BDSPXY", + "description": "Roulez Électrique En Haute-Garonne/BDSPXY;Labroquère, Rue Armand Ribet", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58737400000, + 43.03930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEVALLOIS PERRET - Rue de Trezel", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-12-13", + "ref:EU:EVSE": "FRSIPE92044012", + "network": "SIPPEREC", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29470250000, + 48.89542890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-26", + "network": "SCP POUSSET HAMON - 53940", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SCP POUSSET HAMON - 53940", + "ref:EU:EVSE": "FRCG0E000403", + "ref": "FRCG0E000403", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81427600000, + 48.07710400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - SARAMITO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*170*1*_*_", + "start_date": "2022-05-24", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE17011;FRM06PNICE17012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30559400000, + 43.73905600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "d64edc47-2e66-5fb4-bed3-01464dd81778", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Laroque Timbaut | Place de L'Hôtel de Ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76361100000, + 44.28305400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*3*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE311;FRSIGPSIGE312", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 52 AVENUE DU MARECHAL FOCH - SAINT-CLOUD", + "start_date": "2020-10-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20739100000, + 48.84777800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS170150;FRBMPS170552;FRBMPS170153;FRBMPS170152", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Best Western Plus Hotel Metz Technopole - Metz", + "ref": "170552;170153;170152;170150", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22508200000, + 49.10014300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FISMES Soissons", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3286EVCP02;LFR3286EVCP01", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3286EVCP02;LFR3286EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66728000000, + 49.30847800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ff29cf11-c93a-57c6-81b3-3446eb452238", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Collonges-La-Rouge | Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65823100000, + 45.06031600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "description": "Bondoufle - Rue de Villeroy", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "807cc343-9080-5251-97dd-84a6dfa24270" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37732300000, + 48.61554700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA CARLESSE - AIGUES-VIVES", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P30670*AGV*CARLESSE", + "start_date": "2024-05-22", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP30670AGVCARLESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18409400000, + 43.73359700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "description": "MOISSAC Chasselas", + "ref:EU:EVSE": "LFR3184EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3184EVCP01", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10236400000, + 44.10856700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Proviridis/64103225e68d736255229995", + "ref": "917313", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "capacity": "3", + "network": "Proviridis", + "opening_hours": "24/7", + "operator:email": "data.gouv@proviridis.fr", + "ref:EU:EVSE": "FRPVDP1167939710572693971", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13545700000, + 43.39567500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP368451486148488015;FREBNPQARUGNOVMP", + "description": "Réseau eborn/QARUGNOVMP;Menthon-Saint-Bernard, Rte Des Moulins - Parking du Cimetière", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "QARUGNOVMP;882741", + "start_date": "2023-03-06", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19847200000, + 45.86207700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP57672C", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP57672C", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW", + "description": "e-Totem - Thionville Boucle de la Milliaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14627400000, + 49.35900500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Saint-Malo Quai Saint-Louis P5 - EFFIA", + "ref:EU:EVSE": "FRP01E35288005", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02345000000, + 48.64757000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT587001", + "capacity": "4", + "start_date": "2023-11-15", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Carrefour Market - Premery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32631000000, + 47.17510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Noyant-d'Allier, Marché;Réseau eborn/noyantmarche", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPNOYANTMARCHE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "231526;noyantmarche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12541000000, + 46.47990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING RESTAURANT LA PERLE", + "capacity": "2", + "amenity": "charging_station", + "network": "CAMPING LA PERLE", + "ref:EU:EVSE": "FROTHPOTHR50211;FROTHPOTHR50212", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*502*1*_*_", + "start_date": "2022-09-29", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13905000000, + 46.02132000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6715655", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6715655", + "network": "ITM ST JEOIRE BORNE 1", + "charging_station:output": "22 kW", + "description": "ITM ST JEOIRE BORNE 1", + "operator:email": "info@chargepoint.com", + "start_date": "2023-05-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46166000000, + 46.13500400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZYJ7I0FGEH", + "ref": "801738", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7279541481182228155", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05583200000, + 48.90359100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "ref:EU:EVSE": "FRUBIE10056568;FRUBIE10058428", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Centre ville - Montivilliers", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19394200000, + 49.54421100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "opening_hours": "Mo,Sa,We,Th,Tu,Fr 09:00-18:00", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6216208587280154578", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "485148", + "description": "Freshmile France/STVWQJJZNN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08224400000, + 49.23751600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE – Station Deux-Roues Lazare Carnot", + "start_date": "2022-09-20", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555040", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45026000000, + 43.60407010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1639472290653376844", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "446537", + "opening_hours": "24/7", + "description": "Freshmile France/GUOMXU8IF3", + "socket:type2_combo:output": "7.4 kW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91136900000, + 50.38211000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P8313839028532206398", + "description": "MobiSDEC/KWSB5QN7ZK", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73914900000, + 49.02071000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12076001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CONQUES-EN-ROUERGUE - Parking De La Salesse", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40317800000, + 44.59893000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA3P3902101185903058583", + "ref": "735831", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3", + "description": "WAAT/FRWATLJ8V5JVAV", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34728000000, + 47.69007600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-04;2021-06-07", + "charging_station:output": "22 kW", + "description": "LA MENITRE - Place Colonel Léon Faye;OuestCharge - Diva Sp - La Menitre - Leon Faye", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS49P49201A;FRS49E49201001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27001400000, + 47.40170900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "ref": "65006", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "SIED70/romchamp14uil", + "ref:EU:EVSE": "FRS70PROMCHAMP14UIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63035200000, + 47.69877100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20834340000, + 49.97211790000 + ], + [ + 1.20848530000, + 49.97230750000 + ], + [ + 1.20850330000, + 49.97233610000 + ], + [ + 1.20867210000, + 49.97255650000 + ], + [ + 1.20880990000, + 49.97273740000 + ], + [ + 1.20890130000, + 49.97281690000 + ], + [ + 1.20893860000, + 49.97284160000 + ], + [ + 1.20924120000, + 49.97304180000 + ], + [ + 1.20983440000, + 49.97343440000 + ], + [ + 1.21011680000, + 49.97352260000 + ], + [ + 1.21036690000, + 49.97353990000 + ], + [ + 1.21063310000, + 49.97351910000 + ], + [ + 1.21142910000, + 49.97341360000 + ], + [ + 1.21172730000, + 49.97342060000 + ], + [ + 1.21236380000, + 49.97350400000 + ], + [ + 1.21255320000, + 49.97353120000 + ], + [ + 1.21289200000, + 49.97354160000 + ], + [ + 1.21320400000, + 49.97351050000 + ], + [ + 1.21390590000, + 49.97334960000 + ], + [ + 1.21424740000, + 49.97324070000 + ], + [ + 1.21448090000, + 49.97315430000 + ], + [ + 1.21543870000, + 49.97279960000 + ], + [ + 1.21587700000, + 49.97261110000 + ], + [ + 1.21610830000, + 49.97249520000 + ], + [ + 1.21628310000, + 49.97242260000 + ], + [ + 1.21638530000, + 49.97241050000 + ], + [ + 1.21648750000, + 49.97243990000 + ], + [ + 1.21658430000, + 49.97250730000 + ], + [ + 1.21662190000, + 49.97258170000 + ], + [ + 1.21660040000, + 49.97265440000 + ], + [ + 1.21650900000, + 49.97273910000 + ], + [ + 1.21581520000, + 49.97305910000 + ], + [ + 1.21554090000, + 49.97322680000 + ], + [ + 1.21533650000, + 49.97337130000 + ], + [ + 1.21521360000, + 49.97348460000 + ], + [ + 1.21507030000, + 49.97361680000 + ], + [ + 1.21479060000, + 49.97400860000 + ], + [ + 1.21470590000, + 49.97421010000 + ], + [ + 1.21467490000, + 49.97426820000 + ], + [ + 1.21439530000, + 49.97479290000 + ], + [ + 1.21397850000, + 49.97556080000 + ], + [ + 1.21385210000, + 49.97571820000 + ], + [ + 1.21372840000, + 49.97577870000 + ], + [ + 1.21352940000, + 49.97579430000 + ], + [ + 1.21338420000, + 49.97576140000 + ], + [ + 1.21303990000, + 49.97559360000 + ], + [ + 1.21269300000, + 49.97539480000 + ], + [ + 1.21213910000, + 49.97504630000 + ], + [ + 1.21175450000, + 49.97479380000 + ], + [ + 1.21146600000, + 49.97473230000 + ], + [ + 1.21131110000, + 49.97478410000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH14E59535001", + "operator": "Bouygues E&S", + "description": "SAINT JANS CAPPEL - Chemin Haut", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71962600000, + 50.76335800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - LA MEMBROLLE SUR CHOISILLE - Mazagran", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LA MEMBROLLE SUR CHOISILLE - Mazagran", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E214045;FRS37E214044", + "ref:EU:EVSE": "FRS37E214045;FRS37E214044", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62615408000, + 47.43926466000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Nonette Orsonnette - Place du Bouillas", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRS63P63255B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28099446000, + 45.47737767000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59187001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ECLAIBES - Ch Margot", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93298600000, + 50.20298400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-01-27", + "ref:EU:EVSE": "FRS33PMB3316512;FRS33PMB3316511", + "capacity": "2", + "network": "MOBIVE - SDEEG 33", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB33*165*1*_*_", + "owner:ref:FR:SIREN": "253303473", + "socket:type2_combo:output": "24 kW", + "description": "GUJAN-MESTRAS - AV DU MARECHAL DE LATTRE DE TASSIGNY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11576800000, + 44.63986700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94018003", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-12-15", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHARENTON LE PONT - Rue du nouveau bercy", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39646200000, + 48.82338700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-05", + "description": "CAGNES-SUR-MER - PASSAU", + "ref:EU:EVSE": "FRM06PNICE29112;FRM06PNICE29111", + "ref": "FR*SOD*S*NICE*291*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15394904714, + 43.66420123922 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1ed3cd3a-cfd2-53f2-99d3-e3586107fb31", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Saint Martial de Nabirat | Parking Multiple Rural", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26206300000, + 44.74525800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41811;FRSIGPSIGE41812", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*418*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - 121 RUE DU GENERAL DE GAULLE - ERMONT", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-05-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26694200000, + 48.98461100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76540018", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROUEN - Hangar 106 - Borne n°2", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07528800000, + 49.44011200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR3569EVCP02;LFR3569EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3569EVCP02;LFR3569EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "TORCY Champs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44899500000, + 46.76814500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "13bd8511-0e52-50a5-b62e-2a334b3c586d", + "description": "MOBIVE | Arbus | Place Mairie", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50667200000, + 43.33459100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CADENET - Route de Vaugines", + "amenity": "charging_station", + "ref": "3aea01b7-4260-535e-a0f4-9dfb8c19a9bc", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37668800000, + 43.73769500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUFFARGIS - Arsenal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-12-04", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78030003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88439000000, + 48.70209000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3192EVCP02;LFR3192EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "NANTES Chevreul", + "ref:EU:EVSE": "LFR3192EVCP02;LFR3192EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59179400000, + 47.19791300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "187.5 kW;50 kW;24 kW;22 kW;100 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-10-26", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "11", + "socket:type2_combo:output": "24 kW;100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PITMSMA", + "operator": "Power Dot France", + "description": "Intermarché - Saint-Malo", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99706570000, + 48.64877720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-13;2020-06-21", + "ref": "KBJBS33OUJ;25279", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPKBJBS33OUJ", + "capacity": "4;6", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/KBJBS33OUJ;Vallon-Pont-D'Arc, Quartier Ratiere", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39753000000, + 44.40623100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP87148A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - U Express - Saint-Hilaire-Bonneval ", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-08-08", + "ref:EU:EVSE": "FRETIP87148A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37432764981, + 45.71642692471 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;180 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Cora - Saint-Jouan-des-Guérets", + "opening_hours": "24/7", + "start_date": "2023-06-01;2023-01-06", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PCORSMA", + "socket:type2_combo:output": "50 kW;100 kW;180 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97758660000, + 48.60614000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT453001", + "amenity": "charging_station", + "description": "Carrefour Market - Dadonville", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25650900000, + 48.16212400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB Hotel Dieu St Chamond", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42207AD", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "ref": "FRESEPS42207AD", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51582080000, + 45.47823790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "network": "EDF-EV100", + "start_date": "2022-02-02;2022-02-21", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG234561;FROTHPIZIG234551;FROTHPIZIG234541;FROTHPIZIG234531;FROTHPIZIG234521;FROTHPIZIG234491;FROTHPIZIG234481;FROTHPIZIG234451;FROTHPIZIG234441;FROTHPIZIG234431;FROTHPIZIG234401;FROTHPIZIG234391;FROTHPIZIG234381;FROTHPIZIG234371;FROTHPIZIG234361;FROTHPIZIG234341;FROTHPIZIG234331;FROTHPIZIG234321;FROTHPIZIG234311;FROTHPIZIG234351;FROTHPIZIG234411;FROTHPIZIG234421;FROTHPIZIG234461;FROTHPIZIG234471;FROTHPIZIG234501;FROTHPIZIG234511", + "ref": "FR*SOD*S*IZIG*234*52*_*_;FR*SOD*S*IZIG*234*49*_*_;FR*SOD*S*IZIG*234*46*_*_;FR*SOD*S*IZIG*234*45*_*_;FR*SOD*S*IZIG*234*44*_*_;FR*SOD*S*IZIG*234*38*_*_;FR*SOD*S*IZIG*234*37*_*_;FR*SOD*S*IZIG*234*36*_*_;FR*SOD*S*IZIG*234*35*_*_;FR*SOD*S*IZIG*234*34*_*_;FR*SOD*S*IZIG*234*33*_*_;FR*SOD*S*IZIG*234*32*_*_;FR*SOD*S*IZIG*234*31*_*_;FR*SOD*S*IZIG*234*39*_*_;FR*SOD*S*IZIG*234*40*_*_;FR*SOD*S*IZIG*234*41*_*_;FR*SOD*S*IZIG*234*42*_*_;FR*SOD*S*IZIG*234*43*_*_;FR*SOD*S*IZIG*234*47*_*_;FR*SOD*S*IZIG*234*48*_*_;FR*SOD*S*IZIG*234*50*_*_;FR*SOD*S*IZIG*234*51*_*_;FR*SOD*S*IZIG*234*53*_*_;FR*SOD*S*IZIG*234*54*_*_;FR*SOD*S*IZIG*234*55*_*_;FR*SOD*S*IZIG*234*56*_*_", + "operator:email": "sav@izivia.com", + "description": "CNPE CHOOZ - PARKING C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78738700000, + 50.09373500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-29", + "amenity": "charging_station", + "capacity": "4", + "network": "VALUE RETAIL 77 BORNE EXT 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6832235;FRCPIE6841695", + "description": "VALUE RETAIL 77 BORNE EXT 2", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6832235;FRCPIE6841695" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78289900000, + 48.85382500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P1008321455193440073", + "operator:email": "roaming@freshmile.com", + "ref": "971768", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/LLLGE2I8012M5T", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.45723500000, + -21.33797500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B HOTEL ORLY CHEVILLY-LARUE", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-11", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP123459" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36766000000, + 48.77096000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/BVLDH0AW95", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5015631591215017594", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "694196" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892000000, + 43.30517000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP16733", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Bègles, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53318556000, + 44.79377597000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/MCN2TV5DLV", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2768414115943966830", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "491970" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034200000, + 43.66406000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461742", + "description": "MobiSDEC/GNV9UFSQLR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1046810216486280795" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10300400000, + 49.34425000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "ref:EU:EVSE": "FRS13PVWCDEJHEV0", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Cabannes, Place De La Mairie", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94837300000, + 43.86083600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P6647205407831899480", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "14", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWATLBZJBORNV", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "708686" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90287100000, + 44.42036400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "ref:EU:EVSE": "FRS50P50076002", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "BREHAL - Place Monaco" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56586300000, + 48.89774800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81140002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "LAVAUR - Place Stalingrad" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81465400000, + 43.69834500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-15;2023-07-19", + "description": "RELAIS AMBRUSSUM SUD", + "capacity": "8", + "ref:EU:EVSE": "FRHPCPNF059051", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "FRHPCPNF059051", + "owner:ref:FR:SIREN": "531680954;531680950;531680951;531680948;531680953;531680952;531680956;531680955;531680949", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13120000000, + 43.71200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48027001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "description": "LE BLEYMARD - Rd901", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73774500000, + 44.49057400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "25046", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mobilité électrique 56/WHRADG", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PWHRADG", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.06502000000, + 47.98130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH04E59569006", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-16", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SIN-LE-NOBLE - Polarys" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10235580000, + 50.35186570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2925900", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Pol de Leon-Place du Marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98622000000, + 48.68670300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-07", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Lanester - Avenue françois Billoux", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PRUZCWL", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34963900000, + 47.76330400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LIGUGE-1-2;LIGUGE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-02-16", + "ref:EU:EVSE": "FRLMSE12346051842;FRLMSE12346051841;FRLMSE12346051831;FRLMSE12346051832", + "opening_hours": "24/7", + "ref": "B055", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33276000000, + 46.51911900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-12-29", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRMGPP93006C", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "599115", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Proximité - Bagnolet - Edouard Vaillant;Métropolis/FR*MGP*P93006*C", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41565200000, + 48.85773500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE9311;FRSIGPSIGE9312", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - PLACE MON IDEE - CHENNEVIERES-SUR-MARNE", + "ref": "FR*SOD*S*SIGE*93*1*_*_", + "start_date": "2021-01-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53254900000, + 48.80101600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref": "1064577", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP6396836256161545466", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64317400000, + 48.42174100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000081841", + "description": "Howdens BaillyRomainvilliers", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79728500000, + 48.84214900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRM59E59009001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-16;2020-02-21;2020-02-19", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VILLENEUVE D'ASCQ - Rue du Moulin Delmar", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12561600000, + 50.65028700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA ROCHE-SUR-YON - Place De La Vendée", + "ref:EU:EVSE": "FRS85E85191011", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43173900000, + 46.66900900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Antibes", + "ref:EU:EVSE": "FRALLEGO9006512;FRALLEGO9006462;FRALLEGO9006461;FRALLEGO9000602;FRALLEGO9000601;FRALLEGO9000552;FRALLEGO9000351;FRALLEGO9000352;FRALLEGO9000551;FRALLEGO9006511", + "amenity": "charging_station", + "network": "Allego Carrefour Antibes", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9006512;FRALLEGO9006462;FRALLEGO9006461;FRALLEGO9000602;FRALLEGO9000601;FRALLEGO9000552;FRALLEGO9000351;FRALLEGO9000352;FRALLEGO9000551;FRALLEGO9006511", + "capacity": "10", + "start_date": "2023-07-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09100600000, + 43.60436400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "IZIVIA | MARSEILLE 14 - CHEMIN DU FONTAINIEU", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2022-06-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*MAMP*31*1*_*_", + "network": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP3111;FRIZMPMAMP3112", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37881200000, + 43.34764000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "200 kW;100 kW;160 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMATCRI", + "charging_station:output": "200 kW;100 kW;22 kW;160 kW", + "description": "Match - Calonne-Ricouart", + "start_date": "2024-04-26", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47583620399, + 50.48418970276 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3586869411801177226", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/GM4SFCKU5P", + "socket:type2_combo:output": "24 kW", + "ref": "1175877" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92742900000, + 43.07507000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/EC142BEF-6032-4F1B-82F1-409695E655F7", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3924090303160926304", + "ref": "735702", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78252900000, + 44.93073600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PIBBSFO", + "start_date": "2024-03-01", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "description": "Ibis Budget - Saint-Fons", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86119360000, + 45.69019250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPHF7UWCT3XU;FREBNP5371755379238605312", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "HF7UWCT3XU;346745", + "description": "Bourg-Saint-Andeol, Place Jardin Neptune;Réseau eborn/HF7UWCT3XU", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64673000000, + 44.36710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP26324B", + "ref": "FRETIP26324B", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - Mairie St-Paul-Trois-Châteaux", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76283936371, + 44.34547152430 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2021-05-31;2021-06-01", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR19261;FROTHPOTHR19251;FROTHPOTHR192121;FROTHPOTHR192101;FROTHPOTHR19211;FROTHPOTHR192111;FROTHPOTHR19221;FROTHPOTHR19231;FROTHPOTHR19241;FROTHPOTHR19271;FROTHPOTHR19281;FROTHPOTHR19291", + "description": "SUPER U - TREILLIERES", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*192*9*_*_;FR*SOD*S*OTHR*192*3*_*_;FR*SOD*S*OTHR*192*2*_*_;FR*SOD*S*OTHR*192*12*_*_;FR*SOD*S*OTHR*192*1*_*_;FR*SOD*S*OTHR*192*10*_*_;FR*SOD*S*OTHR*192*11*_*_;FR*SOD*S*OTHR*192*4*_*_;FR*SOD*S*OTHR*192*5*_*_;FR*SOD*S*OTHR*192*6*_*_;FR*SOD*S*OTHR*192*7*_*_;FR*SOD*S*OTHR*192*8*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61689300000, + 47.33251800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRCPSPCAPS2412;FRCPSPCAPS2411", + "description": "IGNY - SARRAUT / FERRY", + "owner:ref:FR:SIREN": "200056232", + "ref": "FR*SOD*S*CAPS*24*1*_*_", + "start_date": "2019-12-05", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22107800000, + 48.73223100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1150068", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLYE6QPQ91961S", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P7941034427427032399", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63362000000, + 44.91766300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "capacity": "1", + "description": "ENRGETICA/53382160-8967-42b3-b170-c86ffbbaa044", + "ref:EU:EVSE": "FRVISP8826447280228000950", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "754167", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83995200000, + 43.56958500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "515051", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P7374262996343426808", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/KBPNNPSUZB", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43574200000, + 48.21888500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "ref:EU:EVSE": "FRSWSE1000081549", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "description": "ABB T54 Audi Seynod", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000081549", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05578000000, + 45.84640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6019732387299932596", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref": "971840", + "description": "Freshmile France/LLMOPV0PD1Z2EF", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34638800000, + 48.07141500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSUPERU294601", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Super U - Daoulas", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25766700000, + 48.35851100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRS28E134921", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E134921", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BROU - Pl. de l'hôtel de ville", + "network": "MODULO - BROU - Pl. de l'hôtel de ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16588111000, + 48.21094659000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*MAP*P000000006985", + "ref:EU:EVSE": "Non concerné", + "network": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "opening_hours": "Mo-Su 00:00-23:59", + "charging_station:output": "22 kW", + "description": "IBIS 2", + "operator:email": "support@electromaps.com", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06530600000, + 44.11600600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/FI7LYGYWRE", + "ref:EU:EVSE": "FRS10P2498720843727626370", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "39749" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33723400000, + 48.25602600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP4734500177515932278", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "description": "WAAT/FRWATLW3KV3PYQ", + "ref": "706298" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95816700000, + 43.12581400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST VAAST LA HOUGUE - Flandres Dunkerque", + "start_date": "2018-02-15", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P505621", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27161690000, + 49.58864210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOUAL - Impasse Des Clairs Logis", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81289001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12028800000, + 43.56084400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRIPKPARC", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRIPKPARC", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "network": "INTERPARKING ", + "description": "INTERPARKING | PARKING Azay-le-Rideau Château", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46574632726, + 47.25906999771 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS49E49069002", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-10", + "description": "LA ROMAGNE - Rue de Touraine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01063895200, + 47.05989074707 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/VWGFNR", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "120620", + "ref:EU:EVSE": "FRS60PVWGFNR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47432000000, + 49.27980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BETHUNE - Avenue du Maréchal juin", + "ref:EU:EVSE": "FRH13E62119001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63900300000, + 50.52202100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30159001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "LE MARTINET - Rd 59", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08324600000, + 44.25515600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Mobilité électrique 56/LLXUDF35HJDLSI", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "1179675", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P4060412547013186054", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31751200000, + 47.76907300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346396591;FRLMSE12346396601", + "ref": "B103", + "capacity": "1", + "start_date": "2017-02-07", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "description": "SAINT-MARTIN LA PALLUE-1-1;SAINT-MARTIN LA PALLUE-1-2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30653600000, + 46.73026700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P94080*B", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Métropolis | FR*MGP", + "ref:EU:EVSE": "FRMGPP94080B", + "ref": "348962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42866200000, + 48.84385700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 140 AVENUE DE LA REPUBLIQUE - CHATILLON", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "ref:EU:EVSE": "FRSIGPSIGE12411;FRSIGPSIGE12412", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*124*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29823800000, + 48.80656800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-10", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAUREPAS - Avenue de Langres", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E78383001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94495560000, + 48.76137220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89901968", + "start_date": "2023-07-13", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Thaon Les Vosges - Hôtel de Ville", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41891900000, + 48.25070800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1c622518-81fa-5c79-aa74-f5ffb1edc93a", + "operator": "190__SDEG16", + "description": "MOBIVE | Terres-De-Haute-Charente | Roumazières-Loubert | Parking du Marché Couvert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58223200000, + 45.88616200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE69LABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-01-29", + "description": "HOTEL AMBIANCE - LIMAS", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73249700000, + 45.97770600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-15;2022-12-08", + "description": "Allego Carrefour Portet sur Garonne;PORTET SUR GARONNE", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "75 kW;300 kW;0 kW", + "ref": "FRALLEGO9009862;FRALLEGO9009861;FRALLEGO9003182;FRALLEGO9003181;FRALLEGO9002483;FRALLEGO9001901;FRALLEGO9001902;FRALLEGO9002481;FRALLEGO9002482;FRALLEGO9009911;FRALLEGO9009912", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "capacity": "11;10", + "opening_hours": "24/7", + "network": "Carrefour Energies;Allego Carrefour Portet sur Garonne", + "ref:EU:EVSE": "FRALLEGO9009861;FRALLEGO9003182;FRALLEGO9002482;FRALLEGO9001902;FRALLEGO9001901;FRALLPEVCARSPRTSG;FRALLEGO9002481;FRALLEGO9002483;FRALLEGO9003181;FRALLEGO9009862;FRALLEGO9009911;FRALLEGO9009912", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40165200000, + 43.53219200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3638EVCP01;LFR3638EVCP02", + "description": "MARCKOLSHEIM Ortenbourg", + "ref": "LFR3638EVCP01;LFR3638EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54744500000, + 48.17263700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT ORENS - Rue Des Sports", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM31E31506002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53362900000, + 43.55286100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNY7IPA7UM6O;FREBNPY7IPA7UM6O", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "Y7IPA7UM6O;79240", + "start_date": "2020-08-26", + "description": "Signes, Chemin De La Rode;Réseau eborn/Y7IPA7UM6O" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86157000000, + 43.28892900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1192249", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLZ2H1N6U1F46D", + "ref:EU:EVSE": "FRFR1P7331352225860295467", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65369700000, + 45.75532500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "PARIS - Etoile Friedland Wagram", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-10-11;2020-06-17;2021-11-03;2020-06-29", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "11", + "ref:EU:EVSE": "FRP07E75108003;FRP07E751080031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29919000000, + 48.87414900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-06-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "JYICHSALWP;412235", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/JYICHSALWP;Gonfaron, Place de la Victoire", + "ref:EU:EVSE": "FREBNPJYICHSALWP;FREBNP9047402226184707767" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28863000000, + 43.31940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FREFLP20786351133662579", + "opening_hours": "We,Fr,Mo,Sa,Su,Tu,Th 08:00-18:00", + "charging_station:output": "11 kW", + "description": "Road/65e05a96ff9b62001cb2cb99", + "operator:email": "roaming-dev@road.io", + "ref": "1036032", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26957100000, + 49.15223300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E58194001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Nevers - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15026800000, + 46.98932100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT BEZIERS_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6609535", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "network": "SONEPAR CONNECT BEZIERS_", + "ref": "FRCPIE6609535" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25609900000, + 43.33177700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPRVQSHO7N5L", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Roanne, Parking Technopole Diderot;Réseau eborn/RVQSHO7N5L", + "ref": "133468;RVQSHO7N5L", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07970100000, + 46.03681800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1181739", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P8448069569064158311", + "description": "WAAT/s570517", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32039500000, + 43.75216600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "706097", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6886420212808771944", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SK6TT9VRDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91072500000, + 49.18416100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00690", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "880708748", + "operator": "TotalEnergies Marketing France", + "network": "PSA Agents France", + "opening_hours": "24/7", + "description": "LE RANCH - VANNES", + "ref:EU:EVSE": "FRTCBP00690", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72146909211, + 47.65561996207 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ETJO1NSOE0", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8014815566691495005", + "ref": "521264", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76398200000, + 48.57274500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPMAURINSUZUKI732001", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-29", + "description": "Suzuki - Albertville", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37035600000, + 45.66082200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ERGUE GABERIC - Rouillen", + "charging_station:output": "50 kW;43 kW", + "start_date": "2023-04-20", + "ref:EU:EVSE": "FRS29E29051002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05180300000, + 47.99935200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P2044000445121886575", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "412238", + "description": "SDEA 10/JBVMTPZMH6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50281000000, + 48.49327800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Garage Gois Automobiles - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC118023", + "owner:ref:FR:SIREN": "423150952", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNICAP - Garage Gois Automobiles", + "ref": "addabbda-5a9a-445e-b742-d8f11e340081", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03144765000, + 46.90988668000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO- GIVET - Pl. Jacques Sourdille", + "description": "MODULO- GIVET - Pl. Jacques Sourdille", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2024-03-19", + "ref": "FRS08E127000;FRS08E127001", + "ref:EU:EVSE": "FRS08E127000;FRS08E127001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82163200000, + 50.13579900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "79444", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PFLERSPARIS", + "description": "FDE 80/flersparis", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25249000000, + 49.73660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST19313;FRIZFPFAST19312;FRIZFPFAST19311", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-06-27", + "ref": "FR*SOD*S*FAST*193*1*_*_", + "description": "IZIVIA FAST - MC DONALDS - GRENOBLE SAINT MARTIN DHERES", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76498490000, + 45.18504480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2024-04-29;2024-04-22;2021-04-21", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44072A;FRS44E0440049;FRS44E44072001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "HERBIGNAC - Hb Bourg;OuestCharge - Diva Sp - Herbignac - Bourg", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31680900000, + 47.44876600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "start_date": "2020-06-25;2023-05-17", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Bagneaux sur Loing;BAGNEAUX-SUR-LOING - Rue De La Ballastière", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77016A;FRS77E77016001", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH60YSH183AXJKF1QDE3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70627800000, + 48.23150400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DOMIA JARRY", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "capacity": "3", + "network": "GMOB", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGOBPDOMIAGP", + "ref": "f5f6d1d7-5a46-4b1a-80d5-9b23d4b9e5e0", + "owner:ref:FR:SIREN": "911886703", + "operator:email": "contact@gmob.fr", + "operator": "G-MOB", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.55694000000, + 16.24178200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - BOURNAN - Rue Principale", + "ref:EU:EVSE": "FRS37E219675;FRS37E219671", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219675;FRS37E219671", + "network": "MODULO - BOURNAN - Rue Principale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73106000000, + 47.06308200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-22", + "description": "Locmariaquer - Parking Wilson", + "ref:EU:EVSE": "FRS56PQDNNRD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94377500000, + 47.56807600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2023-04-05", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Ferrières-en-Gatinais - Rue du Perray", + "operator:email": "contact@e-totem.fr", + "network": "Ferrières-en-Gatinais - Rue du Perray", + "ref:EU:EVSE": "FRG10P45145A", + "ref": "FRG10P45145A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78600000000, + 48.09200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saubion | Parking Bibliothèque", + "ref": "c5f63bbb-d142-5bf0-ba99-640465653b79", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34761400000, + 43.67086600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE23911;FRSIGPSIGE23912", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*239*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-03-15", + "description": "SIGEIF - 67 RUE GABRIEL PERI - IVRY-SUR-SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37958300000, + 48.81676900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "ref:EU:EVSE": "FRCN1PKEYUDK", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref": "21810", + "description": "Move In Pure/KEYUDK", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80890000000, + 43.38370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P6509323603068063627", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/OMWSI0JG0A", + "ref": "699083" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782000000, + 48.73735100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "9b532fad-0086-564b-a7d9-b051e351cecc", + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | La Tremblade | Place Jean Noel de Lipkowski", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14289600000, + 45.76892700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE91EMCA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-01-18", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "MAC - Epinay sous Senart" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51755000000, + 48.69445900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRABAPH0XRZTNB67", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Saint-Etienne-Du-Gres, Avenue Frédéric Mistral" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72641900000, + 43.78170800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "15", + "charging_station:output": "360 kW;22 kW;180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "360 kW;180 kW", + "ref:EU:EVSE": "LFR3908EVCP03;LFR3908EVCP02;LFR3908EVCP01;LFR3908EVCP04;LFR3908EVCP05;LFR3908EVCP06;LFR3908EVCP07;LFR3908EVCP08;LFR3908EVCP09", + "description": "PENNES MIRABEAU - Pins", + "ref": "LFR3908EVCP03;LFR3908EVCP02;LFR3908EVCP01;LFR3908EVCP04;LFR3908EVCP05;LFR3908EVCP06;LFR3908EVCP07;LFR3908EVCP08;LFR3908EVCP09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35964600000, + 43.41351300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38185020", + "description": "GRENOBLE - Place Victor Hugo", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "start_date": "2021-12-05", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72381500000, + 45.18895000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA07E78561001", + "description": "SAINT LAMBERT DES BOIS - Port Royal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01939760000, + 48.73324890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLMYXMIOI210DL", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P888945190015619290", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1152921" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50178400000, + 47.13367000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "hotelF1 - Saint-Étienne-du-Rouvray", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2024-01-19", + "ref:EU:EVSE": "FRPD1PACCSDR", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06460776568, + 49.40020274281 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPNSZLO1DE4B;FREBNNSZLO1DE4B", + "description": "Réseau eborn/NSZLO1DE4B;Le Pradet, Rue Paulin David", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref": "75338;NSZLO1DE4B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02432500000, + 43.10613600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "A7 - Aire de Vitrolles Est (direction Orange)", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "capacity": "10", + "ref:EU:EVSE": "FRELCPAAVITE", + "start_date": "2023-06-20", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24311100000, + 43.44689900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E93005001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Aulnay-Sous-Bois Marché - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49408000000, + 48.93132000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6664165", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR BETHUNE 1", + "ref:EU:EVSE": "FRCPIE6664165", + "network": "SONEPAR BETHUNE 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-12-12", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65424000000, + 50.53930100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "FRECHPLLUWS9RE7ZW7TR;FRECHP6496322359574395691", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "description": "Vaison-la-Romaine, Avenue du Général de Gaulle;Easy Charge/LLUWS9RE7ZW7TR", + "start_date": "2024-04-12", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge", + "ref": "LLUWS9RE7ZW7TR;1129725", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07191200000, + 44.24409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-01-27", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX20*04", + "opening_hours": "24/7", + "description": "Paris | bis Rue du Capitaine Ferber 5", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX2004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40520700000, + 48.86535900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "213056", + "description": "Freshmile France/LNEUNA", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PLNEUNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78571000000, + 49.35430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0303", + "amenity": "charging_station", + "ref": "FR*V75*PPX03*03", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Boulevard Beaumarchais 87" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36737980000, + 48.85896820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1130436", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2409677603056874328", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLMT4OIPF2R7NW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76278400000, + 48.56265200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:30", + "ref:EU:EVSE": "FRSSDPMAURINFORD831701", + "charging_station:output": "22.08 kW", + "start_date": "2021-01-28", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Ford - Brignoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07801500000, + 43.40529900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22262002", + "charging_station:output": "22 kW", + "description": "Quintin-Square Blanchet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91030000000, + 48.40148200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PORTEL-DES-CORBIERES - Avenue Des Corbieres", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11295001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92194444444, + 43.05777780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "435088919", + "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", + "start_date": "2021-04-08", + "description": " Toyota - Montagnat - 22kW AC;Toyota - Montagnat - 22kW AC", + "network": "TOYOTA MONTAGNAT - DJB BOURG", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZTLE22AC57335;FRZTLE22AC57332;FRZTLE22AC57333;FRZTLE22AC57334", + "capacity": "1", + "ref": "57334;57332;57333;57335", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25920280000, + 46.17465230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "32044", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P4930400622702692375", + "description": "SDEA 10/LX4TJ9LIGD", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73928100000, + 48.33184400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "64793", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PAILLYHAUTCLOC", + "description": "FDE 80/aillyhautcloc", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99503000000, + 50.07900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*74*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST7411;FRIZFPFAST7412;FRIZFPFAST7413", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-04", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - BEZIERS-FRIGOULAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25062040000, + 43.34815930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS44P44110A;FRS44E44110001", + "description": "NORT-SUR-ERDRE - Rue D'Ancenis;OuestCharge - Pulse 50 - Nort-Sur-Erdre - Ancenis", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2024-04-24;2021-04-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48018650000, + 47.43990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61AYQENVTDGRD2NHFM", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77279A;FRS77E77279001", + "start_date": "2023-05-15;2015-05-28", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Marolles sur seine;MAROLLES-SUR-SEINE - Rue Blanchard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03499400000, + 48.38625000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref": "1091004", + "description": "GreenYellow Shift Mobility/90", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref:EU:EVSE": "FRGYMP2383862778026638331", + "charging_station:output": "180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97673400000, + 43.65010900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-27", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221282;FRS37E221280", + "network": "MODULO - AZAY SUR INDRE – Vallée de l'Indre", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221282;FRS37E221280", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - AZAY SUR INDRE – Vallée de l'Indre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94627322000, + 47.20955182000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BAR LE DUC - Pl. des exelmans", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BAR LE DUC - Pl. des exelmans", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-05-03", + "ref:EU:EVSE": "FRS55E66230;FRS55E66231", + "ref": "FRS55E66230;FRS55E66231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16231900000, + 48.77513700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*121*2*_*_;FR*SOD*S*LYON*121*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-11-02", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON12122;FRGLYPLYON12111;FRGLYPLYON12112;FRGLYPLYON12121", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "description": "LY806 - BERLIET - EPARGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86031600000, + 45.74207300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5911201", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ANNOEULLIN - Rue du 8 mai 1945", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59112*01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93742200000, + 50.52312300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "ref:EU:EVSE": "FRSSDPJLRSVAAVIGNON841301", + "start_date": "2018-07-06", + "description": "Jaguar Land Rover - Le Pontet", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87422000000, + 43.97710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SAS PETIT BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6562155", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6562155", + "start_date": "2022-10-12", + "description": "SAS PETIT BORNE 1", + "opening_hours": "Mo 08:00-12:00,Mo 14:00-18:00,Tu 08:00-12:00,Tu 14:00-18:00,We 08:00-12:00,We 14:00-18:00,Th 08:00-12:00,Th 14:00-18:00,Fr 08:00-12:00,Fr 14:00-18:00,Sa 08:00-12:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69348100000, + 50.44332400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRLE2P1252084116326849450", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "Tu,Th,We,Sa,Fr,Mo 08:30-20:30,Fr 08:30-21:00", + "ref": "446756", + "description": "Leclerc/LSQHXACDBJ", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20428700000, + 48.88284700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Antoine Sur L Isle | Avenue de la Libération - Rue Bartebrune", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW", + "ref": "40ef6d32-0249-5097-8f0a-af802daedc43" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04066800000, + 45.02743500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "description": "Morsang-sur-Orge - Place Ferdinand Buisson", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "b0fc4632-25a0-5e97-9b0c-161c88e40c58" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35188000000, + 48.66150300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego NISSAN Castres", + "network": "Allego NISSAN Castres", + "ref:EU:EVSE": "FRALLEGO0000171", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRALLEGO0000171", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "start_date": "2023-09-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20663200000, + 43.59127600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2483EVCP01;LFR2483EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "AIGUES-MORTES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2483EVCP01;LFR2483EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18932100000, + 43.57819100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ROQUEBILLIERE - PARKING REGIE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*81*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE8111;FRM06PNICE8112", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30695700000, + 44.01250800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*210*1*_*_", + "description": "PUGET SUR ARGENS - PARKING ESPACE VICTOR HUGO", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ21011;FRA16PWIIZ21012", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68875300000, + 43.45599300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/W31RKKRAWS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4558802458939062463", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "694340", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61840600000, + 50.51424600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRANO", + "start_date": "2023-06-05", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "Mr. Bricolage - Annœullin", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94315700000, + 50.52853300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Salernes, Place Clémenceau;Réseau eborn/K9AZWC5W94", + "ref:EU:EVSE": "FREBNPK9AZWC5W94;FREBNP5188086629241414522", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref": "346784;K9AZWC5W94", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23329400000, + 43.56295600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/0FC6763F-C607-4446-93A1-D5BAEFF65ADE", + "ref": "927753", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "FREVZP5018432470161993638" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38778100000, + 43.29992800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-22", + "description": "VANNES - Parking République", + "ref:EU:EVSE": "FRP07E56260001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76097600000, + 47.65616900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-20", + "ref:EU:EVSE": "FREBNPORFDPC1FUM;FREBNP3680438983548350464", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint Genix les Villages, Parking Salle Jean Bouchard;Réseau eborn/ORFDPC1FUM", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref": "896733;ORFDPC1FUM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63189900000, + 45.59844300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Th,Tu,Sa,We,Fr,Su,Mo 08:00-18:00", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FREFLP7000721654959459932", + "description": "Road/6584145ce63c1b001b055426", + "charging_station:output": "11 kW", + "operator:email": "roaming-dev@road.io", + "ref": "1005435", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45603400000, + 47.18582900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Dunkerque-Est", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-03-30", + "ref:EU:EVSE": "FRVIAP121003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33603000000, + 50.99509000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1488647137009495335", + "charging_station:output": "22 kW", + "ref": "559838", + "description": "Freshmile France/XA7W3VU7CJ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28624500000, + 47.08027000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Boulevard Richard Lenoir 110", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1117", + "amenity": "charging_station", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "ref": "FR*V75*PPX11*17", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37139850000, + 48.86406210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "22 kW;90 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Sa 14:00-17:00,We,Mo,Tu,Fr,Th 14:00-18:00,Sa,Th,We,Fr,Mo,Tu 09:00-12:00", + "ref": "510494", + "capacity": "3", + "description": "Freshmile France/HUMNVVMJLC", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5930128120842240592", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13683500000, + 45.74877500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPLESAFFRE592731", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2021-09-15", + "operator:email": "support@driveco.com", + "description": "Lesaffre Utilitaires Volkswagen - Fretin", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11992400000, + 50.57702000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PBROGLIEPOSTE", + "start_date": "2016-09-30", + "description": "900127", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53114600000, + 49.00831900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "description": "SICECO/FR*S21*P21292*A", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180374", + "ref:EU:EVSE": "FRS21P21292A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22118100000, + 47.24131300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA QUEUE LEZ YVELINES - EHPAD", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY03E78513002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-10-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77294213148, + 48.80513330098 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@qwello.fr", + "operator": "Qwello", + "ref": "FRQWCE4853R", + "amenity": "charging_station", + "start_date": "2024-07-11", + "description": "Avenue du Portou", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQWCE4853R", + "owner:ref:FR:SIREN": "913705380", + "network": "Qwello" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44567368792, + 43.48184838263 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP6696212122742420103", + "ref": "706193", + "network": "WAAT", + "description": "WAAT/FRWATLDYKHGVCG", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91185500000, + 43.61496400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIONE417600", + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE417600", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2022-05-13", + "description": "IONITY Verdun Sud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50902000000, + 49.11820100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E175071;FRS51E175072", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS51E175071;FRS51E175072", + "network": "MODULO - REIMS - René Descartes", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - REIMS - René Descartes", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03617900000, + 49.22843800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Melun - Paul Doumer", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS77P77288A", + "start_date": "2023-09-20", + "ref": "a46bcb09-20a3-4300-9baf-deaa39fd89b5", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66006900000, + 48.53963100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRHPCENF080333", + "ref": "FRHPCPNF080333", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS PLAINE FAVREUSE EST", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19600700000, + 48.74625000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-20", + "network": "Reveo", + "description": "GANGES - Parking Covoiturage - Avenue Du Mont Aigoual", + "ref:EU:EVSE": "FRS34E34111002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70843900000, + 43.93119000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Questembert - Place Général de Gaulle", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PVMWQEJ", + "start_date": "2016-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45204300000, + 47.66019500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "1034112", + "description": "Freshmile France/LLPS9MXFC1DNJE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6857730268247355267", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12221600000, + 49.05887200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92049D", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2021-08-05", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31799070000, + 48.81739460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPLEMPEREUROPEL628001", + "opening_hours": "24/7", + "description": "Opel - Lievin", + "charging_station:output": "22.08 kW", + "start_date": "2020-01-23", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78603700000, + 50.42631900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "340119411", + "ref:EU:EVSE": "FRC2P002401", + "opening_hours": "24/7", + "network": "HOTEL LE TILBURY", + "charging_station:output": "11.04 kW", + "description": "HOTEL LE TILBURY", + "operator": "CAR2PLUG", + "start_date": "2022-02-16", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27859840000, + 41.59301270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "892719", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P6739888600997271521", + "description": "Leclerc/QSN0XM5KUX", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415600000, + 45.28977900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "519526c8-d0fb-5a88-948b-04b5ce25a28e", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Bergerac | Aire de Covoiturage | Pombonne", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50333400000, + 44.87089300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "KIM - CHARLEVILLE MEZIERE", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-04-25", + "ref:EU:EVSE": "FRSE1PSE08CABA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70350000000, + 49.73802900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "capacity": "6", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "BIOT - Route des Dolines", + "ref:EU:EVSE": "FRBE2E06018002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05458870000, + 43.62711720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P4806010277654500079", + "ref": "492051", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/KGCAZGUM9A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75531400000, + 50.48283100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PM1NPQJLPCX", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Jouques, Avenue de la Gare", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63648200000, + 43.63589900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "694415", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P2524169579072891444", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/LCZG98BJYC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07245200000, + 48.34212500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-07-03", + "ref:EU:EVSE": "FRA16PWIIZ6412;FRA16PWIIZ6411", + "description": "GRASSE PARKING LA CHESNAIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*64*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91108500000, + 43.63910300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "257125", + "description": "Freshmile France/SHXYLZ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PSHXYLZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09308000000, + 48.48800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSOMTLS", + "start_date": "2023-11-30", + "description": "Ibis - Toulouse Purpan", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39683033869, + 43.61373567109 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31927;KU7GOCOQLM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/KU7GOCOQLM;Remuzat, 1 Place du Champs de Mars", + "ref:EU:EVSE": "FREBNPKU7GOCOQLM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35632700000, + 44.41424500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP5256676869592364009", + "ref": "1041597", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENGIE MAMP - Bornes publiques/7FD9C748-2A9B-4FCF-A6AB-36B1D95A7363", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36856800000, + 43.28485500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*OTHR*670*1*_*_", + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR67011", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "network": "AGILAUTO", + "description": "AGILAUTO - SAINT-PAUL-EN-FORET OPEN", + "operator:email": "sav@izivia.com", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69251900000, + 43.56674700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/YO5QCAKPXE;Massongy, Parking Mairie", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref": "741132;YO5QCAKPXE", + "ref:EU:EVSE": "FREBNPYO5QCAKPXE;FREBNP4950364668530370981" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33385200000, + 46.31617500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "LZJLZN;48433", + "description": "Réseau eborn/LZJLZN;Annecy Cran-Gevrier, Allée Jean Mermoz", + "ref:EU:EVSE": "FREBNPLZJLZN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09222000000, + 45.90640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*362*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CAMPING DOUCE QUIETUDE - SAINT-RAPHAEL", + "ref:EU:EVSE": "FROTHPOTHR36212;FROTHPOTHR36211", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80657200000, + 43.44641600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRFR1P7881412320942311328", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ZACLSUBH9M", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "896664", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31247700000, + 49.18212700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1770", + "description": "Tesla Supercharger Toulouse (Castelnau-d'Estrétefonds)", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36137800000, + 43.76933400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HRWXYL", + "ref": "120716", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1PHRWXYL", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87375000000, + 48.89360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Volkswagen - ByMyCar - Roanne", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-05-10", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS421201", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09303100000, + 46.02016700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHARTRES - Pl. Drouaise", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - CHARTRES - Pl. Drouaise", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E126231", + "ref": "FRS28E126231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48852000000, + 48.45289000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "description": "Perros Guirec-Place de l'hotel de ville", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22168001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44497400000, + 48.81539200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "KIA SENS - 22KW AC;KIA - Sens - 24kW DC ", + "ref:EU:EVSE": "FRZKAE24DC63712;FRZKAE22AC63713", + "ref": "63712;63713", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-sat 08:30-19:00", + "network": "KIA SENS;KIA SENS ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "start_date": "2021-06-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "440793552", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28583730000, + 48.20506030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Adage_Paray", + "start_date": "2022-05-10", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE284" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12505500000, + 46.44883900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "EVECQUEMONT - Rue D'Adhemar", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78227001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94226900000, + 49.01411600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ele": "101", + "name": "Mont de Vassonville", + "natural": "peak", + "source": "IGN - 2021-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20426410000, + 49.97028930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Hauconcourt", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE432452;FRIOYE432451;FRIOYE432418;FRIOYE432417;FRIOYE432411;FRIOYE432410;FRIOYE432409;FRIOYE432407;FRIOYE432406;FRIOYE432405;FRIOYE432401;FRIOYE432402;FRIOYE432403;FRIOYE432404;FRIOYE432408;FRIOYE432412;FRIOYE432413;FRIOYE432414;FRIOYE432415;FRIOYE432416;FRIOYE432453", + "description": "Hauconcourt", + "ref:EU:EVSE": "FRIOYE432452;FRIOYE432451;FRIOYE432418;FRIOYE432417;FRIOYE432411;FRIOYE432410;FRIOYE432409;FRIOYE432407;FRIOYE432406;FRIOYE432405;FRIOYE432401;FRIOYE432402;FRIOYE432403;FRIOYE432404;FRIOYE432408;FRIOYE432412;FRIOYE432413;FRIOYE432414;FRIOYE432415;FRIOYE432416;FRIOYE432453", + "opening_hours": "24/7", + "capacity": "21", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2020-10-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17106126000, + 49.21508486000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-16;2021-04-20", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS53P53018A;FRS53E53018001", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "BALLOTS - Rue De La Closeraie;OuestCharge - Diva Sp - Ballots - Closeraie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04825800000, + 47.89557400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES ANGLES - Rue De La Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66004001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2017-07-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07384500000, + 42.57857500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE007401;FRIENE007402", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2024-04-08", + "description": "Plouyé", + "amenity": "charging_station", + "capacity": "4", + "network": "Plouyé", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE007401;FRIENE007402", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69776000000, + 48.31896000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34923001", + "network": "Reveo", + "description": "LA PEYRADE FRONTIGNAN - Parking Place Gabriel Péri", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72722777778, + 43.42585560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-LAIG-002", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "L'AIGLE - Pl. de l'Europe", + "ref:EU:EVSE": "FRS61P61214B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62458500000, + 48.76456100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/KFIO5AUOI5", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2924549663497681544", + "ref": "741015", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09718100000, + 45.60512800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-08-23", + "ref:EU:EVSE": "FRS31PFVTRXZ", + "ref": "FVTRXZ", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "description": "Barbazan, Pradaou", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62402000000, + 43.03420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-20;2023-11-18", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE92004034", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "ASNIERES-SUR-SEINE - Rue Louis Armand", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31431830000, + 48.91716610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000231;FRCG0E000230", + "capacity": "2", + "description": "Logis Hôtel Le Relais d'Aumale - 60560 - Borne 1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000231;FRCG0E000230", + "network": "Logis Hôtel Le Relais d'Aumale - 60560 - Borne 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-04-18", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52096500000, + 49.15478400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LANTOSQUE - PARKING PLACE DE GAULLE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2021-06-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE13711;FRM06PNICE13712", + "ref": "FR*SOD*S*NICE*137*1*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31119100000, + 43.97452300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "381c8e50-c5e2-58d8-8aa3-fdb0f5de9778", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Messanges | Route des lacs", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37862600000, + 43.81494900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Restaurant Nicolas... La suite au Cottage", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2024-05-02", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE59LABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04330000000, + 50.34916000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Bump", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS229466", + "description": "Bump - Polyclinique de Picardie - Amiens", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "ref": "229466", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29704110000, + 49.87124850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3826EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CALAIS OUEST Salengro", + "ref:EU:EVSE": "LFR3826EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82319900000, + 50.94443700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "a5c091f2-1b12-5194-a8f3-284ee9ac3c32", + "description": "MOBIVE | Nespouls | Parking de L'Aéroport" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48984900000, + 45.04190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "d336470b-fa6f-5cd9-bd3a-06281240e4d5", + "capacity": "2", + "amenity": "charging_station", + "description": "Marolles-en-Hurepoix - Parking Mairie", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29893900000, + 48.56295600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P84000*AVG*BARTHELASSE", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "BARTHELASSE - AVIGNON", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-03-26;2021-03-31", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP84000AVGBARTHELASSE", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79691300000, + 43.95267300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3130EVCP01", + "ref:EU:EVSE": "LFR3130EVCP01", + "description": "CASTRES Toulouse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18646500000, + 43.58728700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Weldom - Saujon", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PWELSAJ", + "start_date": "2022-12-23", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91536500000, + 45.67935780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "301249;NRPAT4JCYN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/NRPAT4JCYN;Toulon, Avenue F.Lesseps", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNRPAT4JCYN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93886300000, + 43.12624200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "Freshmile France/DQGV4VYAGN", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2514025133084453340", + "capacity": "3", + "opening_hours": "24/7", + "ref": "749307", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33708200000, + 45.92053900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking de Dijon Clémenceau - DIVIAPARK", + "ref:EU:EVSE": "FRP01E21231004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05166000000, + 47.32921000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Dropnplug", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRDNPP115469190018577456", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "756678", + "operator:email": "contact@dropnplug.fr", + "operator": "Dropnplug | FR*DNP", + "description": "Dropnplug/39" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41064400000, + 42.79888900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPZ4C1VGM0DH", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "Z4C1VGM0DH;31834", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/Z4C1VGM0DH;La Begude-De-Mazenc, Parking de la Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93330000000, + 44.54480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR47812;FROTHPOTHR47811", + "ref": "FR*SOD*S*OTHR*478*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "BRICOMARCHE - SAUVETERRE DE GUYENNE", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08801100000, + 44.69662800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "472293", + "ref:EU:EVSE": "FRFR1P9189148898633513590", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XUJE2L5JUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69718900000, + 48.68468500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Rue du Général Mangin - Bléville", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10089507;FRUBIE10084195;FRUBIE10026838;FRUBIE10033467", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09606200000, + 49.51801600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/JWHLNC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PJWHLNC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120788", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52341900000, + 48.26842200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTLSE31555015", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-10", + "description": "TOULOUSE - Contre Allée Jules Guesdes", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44845400000, + 43.59453900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5874042488950328830", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/SZ3N6E2YCW", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "505677", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17077400000, + 49.13026500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461982", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/VFSQFDC7FS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P4864900362753398310" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10462600000, + 48.82373800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ALRANCE - Derriere La Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12006001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68203700000, + 44.13134800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-10-26", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DAMMARTIN EN SERVE - Bibliothèque", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78192001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61749159502, + 48.90374749203 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49137A;FRS49E49137001", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Le Fief-Sauvin - Eglise;LE FIEF-SAUVIN - Rue de l'Evre - Parking Eglise", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-06-03;2024-04-03", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04012900000, + 47.22179300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "ref": "79867", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PVRUSJX", + "description": "SIED70/VRUSJX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09598000000, + 47.92260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH14E59086001", + "start_date": "2022-10-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BOESCHEPE - Grande Place", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69124819564, + 50.79972162723 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35306002B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "ST PÈRE MARC EN POULET - Place Arthur Regnault (Parking du centre) " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92370000000, + 48.58805000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "description": "SIEG63 - ePremium - Cunlhat - Olliergues", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRS63P63132A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56246663000, + 45.63282501000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PFLHFYV", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "257122", + "description": "Freshmile France/FLHFYV", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17064000000, + 48.75600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEG32/GCCRUJ", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS32PGCCRUJ", + "capacity": "2", + "amenity": "charging_station", + "ref": "21825", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58347000000, + 43.64760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARCUEIL - Rue Marius Barbieri", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94003006", + "network": "SIPPEREC", + "start_date": "2022-03-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34470330000, + 48.80041920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-24", + "description": "NICE - PARKING 10 BD RAIMBALDI", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE26011;FRM06PNICE26012;FRM06PNICE26021;FRM06PNICE26022", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*260*2*_*_;FR*SOD*S*NICE*260*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26875526807, + 43.70722151463 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Boulazac | Place Mandela", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bafce84d-68c4-5be2-8152-b03acf9a6b4e", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75831000000, + 45.18185400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE39512;FRSIGPSIGE39511", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref": "FR*SOD*S*SIGE*395*1*_*_", + "description": "SIGEIF - POSTE - SAINT-LEU-LA-FORET", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24271000000, + 49.01970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT PAER - Rue de l'église", + "ref:EU:EVSE": "FRC01E76480001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88011900000, + 49.51664100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR2847EVCP02;LFR2847EVCP03;LFR2847EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CHEVIGNY ST SAUVEUR Dijon", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2847EVCP02;LFR2847EVCP03;LFR2847EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11470600000, + 47.30283400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "7eff42de-6f32-5ea7-bc48-f0cc6e38f988", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "194__SDEC23", + "description": "MOBIVE | Ahun | Route du Moutier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04599400000, + 46.08781600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "99220002-d450-57ac-9b65-89994c380c5d", + "description": "CHATEAUNEUF-DU-PAPE - Rue des Consuls" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83477400000, + 44.05647000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP92380GARJAUNE", + "owner:ref:FR:SIREN": "832489801", + "start_date": "2023-02-21", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "description": "PARKING DU 19 JANVIER - GARCHES", + "ref": "FR*55C*P92380*GAR*JAUNE", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20076300000, + 48.84900200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3981EVCP03;LFR3981EVCP02;LFR3981EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR3981EVCP02;LFR3981EVCP01;LFR3981EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "TRELISSAC-Petunias", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76054600000, + 45.18786100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Pont-à-Mousson", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMPAM", + "start_date": "2024-06-20", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05804179563, + 48.92084545396 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP6767377486597864005;FREBNPQKKIKZK3ZD", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/QKKIKZK3ZD;Mery, Agrion, Rue Maurice Herzog Savoie Hexapole", + "ref": "QKKIKZK3ZD;346898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91289200000, + 45.64526600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP77390B", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP77390B", + "description": "e-Totem - Roissy-en-Brie - Parking de la mairie", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65475755463, + 48.79026345038 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORDOL", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "9", + "start_date": "2023-05-15;2023-06-21;2022-08-24", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Cora - Dole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45375760000, + 47.06586820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - La Capelle", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT022601", + "capacity": "4", + "start_date": "2024-06-20", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91922600000, + 49.97253300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bornes SIE-ELY", + "description": "MAULETTE - Mairie", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-14", + "ref:EU:EVSE": "FRELYE78381003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62152000000, + 48.79213500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH17412;FROTHPAUCH17411", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*174*1*_*_", + "description": "AUCHAN - BRETIGNY SUR ORGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30033590000, + 48.58760110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6783135;FRCPIE6783105;FRCPIE6783125", + "start_date": "2023-09-26", + "amenity": "charging_station", + "ref": "FRCPIE6783135;FRCPIE6783105;FRCPIE6783125", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "HEDERA HOTEL B&B 3", + "network": "HEDERA HOTEL B&B 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12012300000, + 45.78015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "521273", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2219202195639105556", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FTRU0LBPTW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94633100000, + 46.87591300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue Villiot 10", + "ref": "FR*V75*P9012*08", + "ref:EU:EVSE": "FRV75P901208", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37488280000, + 48.84120370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "674279", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P52027285358522406", + "description": "Freshmile France/X39YEQWXEA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30036700000, + 49.18885100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Les Herbiers, France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP10696", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03299400000, + 46.88936800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PXLPHWS", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/XLPHWS", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "102338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40140000000, + 48.27000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "description": "R3 - Cucq", + "owner:ref:FR:SIREN": "902726488", + "capacity": "7", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7 kW;150 kW;22 kW", + "ref:EU:EVSE": "FR3R3P89629589", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61321700000, + 50.48556200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461991", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/VYHQHHZGSX", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P5443604602800774525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56810700000, + 49.27784300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "SEBRAZAC - Place de l'Eglise", + "ref:EU:EVSE": "FRS12E12265001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65743100000, + 44.52454300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA5P4208750580985422373", + "amenity": "charging_station", + "capacity": "1", + "ref": "937872", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "description": "WAAT/FRWA5LAVPRPKAF", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50316300000, + 48.44881700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TREMENTINES - Rue Maurice Ravel", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49355001", + "start_date": "2024-04-26;2024-04-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78939020600, + 47.12269847407 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81117001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-20", + "description": "LABESSIERE-CANDEIL - Place Saint Anne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00501000000, + 43.80184400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF042331", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-04-25", + "capacity": "4", + "owner:ref:FR:SIREN": "531681433;531681431;531681430;531681432", + "opening_hours": "24/7", + "description": "RELAIS URVILLERS", + "ref:EU:EVSE": "FRHPCPNF042331", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33436100000, + 49.78542000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-10-01", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46177001", + "description": "LOUBRESSAC - Bourg Loubressac", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80352400000, + 44.87092200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25064", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PPYLBEV", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/PYLBEV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18881000000, + 48.07090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "DOUAI - Parc Jacques Vernier", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59178015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09235900000, + 50.38187800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Quimper-Boulevard de Bretagne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-05-04", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.12790000000, + 47.98647900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068015", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Saint Masmes", + "start_date": "2024-03-20", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50706870000, + 48.80243260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B016", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "CHAMPAGNE SAINT-HILAIRE-1-1;CHAMPAGNE SAINT-HILAIRE-1-2", + "ref:EU:EVSE": "FRLMSE12346051311;FRLMSE12346051312;FRLMSE12346051321;FRLMSE12346051322", + "operator:email": "irve@soregies.fr", + "start_date": "2017-04-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491000000, + 46.31971000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP92063O", + "start_date": "2021-01-15", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "330305", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92063*O;Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20289600000, + 48.87149900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT", + "start_date": "2020-11-17", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6741;FRSIGPSIGE6711;FRSIGPSIGE6721;FRSIGPSIGE6731;FRSIGPSIGE6751;FRSIGPSIGE6761", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*SIGE*67*6*_*_;FR*SOD*S*SIGE*67*4*_*_;FR*SOD*S*SIGE*67*2*_*_;FR*SOD*S*SIGE*67*1*_*_;FR*SOD*S*SIGE*67*3*_*_;FR*SOD*S*SIGE*67*5*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24198600000, + 48.82819400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "30 kW;22 kW", + "network": "AREA Tech", + "ref:EU:EVSE": "FRAREP", + "amenity": "charging_station", + "operator:email": "contact@area-tech.fr", + "capacity": "4", + "description": "AIRE SUR LA LYS", + "operator": "AREA Tech", + "opening_hours": "Mo-Su 00:00-23:59;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "socket:type2_combo:output": "30 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39501600000, + 50.66104160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89241984", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "210 kW;50 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - Eurotunnel Calais", + "owner:ref:FR:SIREN": "909073363", + "socket:type2_combo:output": "50 kW;210 kW", + "start_date": "2022-05-31;2022-08-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81308600000, + 50.93488300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Soumoulou | Rd817 Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "ref": "97559397-0f0b-5595-af06-6753dc98f67c", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18916900000, + 43.26611300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85135001", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-17", + "description": "MAREUIL-SUR-LAY-DISSAIS - Place Des Halles - Ilôt Marillet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22376000000, + 46.53632000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Orange", + "network": "Allego Carrefour Orange", + "ref": "FRALLEGO9990252;FRALLEGO9990251;FRALLEGO9990242;FRALLEGO9990241;FRALLEGO9000452;FRALLEGO9000181;FRALLEGO9000182;FRALLEGO9000211;FRALLEGO9000212;FRALLEGO9000451", + "start_date": "2024-02-23", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9990252;FRALLEGO9990251;FRALLEGO9990242;FRALLEGO9990241;FRALLEGO9000452;FRALLEGO9000181;FRALLEGO9000182;FRALLEGO9000211;FRALLEGO9000212;FRALLEGO9000451", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83911008000, + 44.12021018000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "JURY", + "ref:EU:EVSE": "LFR1940EVCP02;LFR1940EVCP01", + "ref": "LFR1940EVCP02;LFR1940EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24675100000, + 49.06733200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PLDBVLN", + "capacity": "7", + "network": "Power Dot France", + "description": "Restaurant Léon - Vandœuvre-lès-Nancy", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-08-17;2023-07-28", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18407500000, + 48.65367197667 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/PLHDMFICPU", + "opening_hours": "24/7", + "ref": "30485", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPPLHDMFICPU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58130400000, + 46.06103400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FREVZP5821610901612260454", + "ref": "1187755", + "description": "EVzen/93957581-031B-48E4-BDF2-C8E63399D434", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75979700000, + 48.18001600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-03-01", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PGSTFCV", + "capacity": "3", + "description": "Five Guys - Franconville", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20887580000, + 48.98929070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRE11PLMROSNY931101", + "network": "DRIVECO", + "start_date": "2022-12-07", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-20:00, Tu 09:00-20:00, We 09:00-20:00, Th 09:00-20:00, Fr 09:00-20:00, Sa 09:00-20:00, Su 09:00-19:00", + "description": "Leroy Merlin - Rosny sous Bois", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47341000000, + 48.87960700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - CARREFOUR CONTACT NARBONNE", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP11262A", + "ref:EU:EVSE": "FRETIP11262A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98116600000, + 43.15653300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "RUE DES MYOSOTIS", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR16341;FROTHPOTHR16331;FROTHPOTHR16311;FROTHPOTHR16321", + "capacity": "1", + "start_date": "2021-04-26", + "opening_hours": "24/7", + "network": "CARREFOUR", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*163*3*_*_;FR*SOD*S*OTHR*163*2*_*_;FR*SOD*S*OTHR*163*1*_*_;FR*SOD*S*OTHR*163*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.58696900000, + 48.37241000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AUSSOIS BASE DE LOISIRS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6970125", + "ref": "FRCPIE6970125", + "start_date": "2024-07-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "AUSSOIS BASE DE LOISIRS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74521000000, + 45.22551800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Freshmile/PEPRHZRXHR;DAX Montfort", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3323EVCP03;LFR3323EVCP04;FRFR1P2710115406921984136;LFR3323EVCP01;LFR3323EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3323EVCP01;591221;LFR3323EVCP02;LFR3323EVCP04;LFR3323EVCP03", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03054200000, + 43.70626500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP122093", + "description": "ENGIE Vianeo - B&B HOTEL LE HAVRE HARFLEUR 2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19682900000, + 49.50336600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/NSDP4YBGRR", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3111847794150621662", + "ref": "471126", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76008900000, + 48.56607500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "network": "DRIVECO", + "description": "Churn - Eurotyre - Corte", + "amenity": "charging_station", + "start_date": "2021-06-28", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPEUROTYRE202501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15956700000, + 42.30274500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8070000168042590641", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLW7LEGWIG2M5I", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1174548", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17197300000, + 50.72572700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBOISSET217003", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "description": "Montgolfier - Nuits-Saint-Georges", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96006800000, + 47.12926100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E134257", + "ref:EU:EVSE": "FRS28E134257", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - YEVRES - Rue du pont", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - YEVRES - Rue du pont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18954200000, + 48.20883300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/U45NFW8DLO", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "opening_hours": "24/7", + "ref": "505821", + "ref:EU:EVSE": "FRS10P4801491004955929130", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78165200000, + 48.50121300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LL4JZKGWW", + "operator:email": "exploitation@waat.fr", + "ref": "1127964", + "ref:EU:EVSE": "FRWA9P7971495740837627391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40340900000, + 44.85605900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARENTAN LES MARAIS (ST COME DU MONT) - Maison du Parc des Marais", + "ref:EU:EVSE": "FRS50P504581", + "network": "e-charge50", + "start_date": "2018-02-07", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26453530000, + 49.31993950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "description": "SAINT PAUL CAP DE JOUX - Place De La Resistance", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8126600122;FRS81E8126600112;FRS81E8126600111;FRS81E8126600121", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97556102300, + 43.64754104600 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF078230", + "capacity": "6", + "owner:ref:FR:SIREN": "531680616;531680613;531680611;531680612;531680615;531680614", + "description": "RELAIS DU CAYLAR", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-11-09;2021-06-25;2023-11-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF078230", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31120000000, + 43.86440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "OuestCharge - Diva Sp - Bauge - Europe;BAUGE - Place de l'Europe", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-09-03;2024-04-03", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49018001;FRS49P49018A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10197200000, + 47.54035800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/LLLDQLLK124DBO", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60P7516931218841889701", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref": "896721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05009400000, + 49.46246300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ESTAIRES - Rue de l’Ondine", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH09E59212001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70468200000, + 50.64661400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30117002", + "network": "Reveo", + "description": "FOURQUES - Parking Avenue Du Vieux Pont Station 02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61191800000, + 43.69061700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "description": "Arzon - Parking Maison des Associations", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYEHCXH", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89104400000, + 47.54974100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-12-15", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "B110", + "network": "SOREGIES MOBILITES", + "description": "VOUNEUIL SOUS BIARD-1-2;VOUNEUIL SOUS BIARD-1-1", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346390341;FRLMSE12346390331", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27231900000, + 46.57058000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP94015A", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "owner:ref:FR:SIREN": "885354860", + "ref": "599133", + "network": "Métropolis;METROPOLIS", + "description": "Metropolis - Citadine - Bry-sur-Marne - Pasteur;Métropolis/FR*MGP*P94015*A", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52915700000, + 48.83284400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "capacity": "8", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "ref:EU:EVSE": "FRSHEE94;FRSHEE95", + "amenity": "charging_station", + "ref": "FRSHEE94;FRSHEE95", + "network": "Shell Fenioux Est", + "charging_station:output": "200 kW;300 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Shell Fenioux Est" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60280679000, + 45.89253519000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E64445004", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PAU - Parking République Halle", + "charging_station:output": "22 kW", + "start_date": "2024-05-02", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36860120000, + 43.30015680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2023-02-16", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "description": "ENGIE Vianeo - A4 Longeville Nord", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89370711", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65718400000, + 49.13422200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Mansle | Place de L'Europe", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "4e049dcc-407c-5a34-8422-b5829b930273", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17861400000, + 45.87514500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Petit Séminaire - HESDIN", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE62HAXA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03832200000, + 50.37207100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSSTPOL", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "SAINT POL", + "amenity": "charging_station", + "start_date": "2023-03-16", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33547200000, + 51.02390100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BONNEUIL SUR MARNE - Garry", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3901EVCP01;LFR3901EVCP02", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3901EVCP01;LFR3901EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48410000000, + 48.75767500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUCAMVILLE - Des Ecoles", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM31E31022001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42970200000, + 43.66968700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fontanes, Parking rue Fontanesium;Réseau eborn/VLJGRE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "VLJGRE;95990", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPVLJGRE", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43933000000, + 45.54820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4285042463173436200", + "amenity": "charging_station", + "ref": "482019", + "network": "Freshmile France", + "description": "Freshmile France/HFER1CVNZZ", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583600000, + 43.95264800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "LYON - Bellecour", + "ref:EU:EVSE": "FRP07E69382001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-01-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83038028496, + 45.75803437064 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP8083148733483021528", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/LLX04V1EE1QFZK", + "network": "Réseau eborn", + "ref": "1193269", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91527500000, + 43.15399000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1185067", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP8739087605031525280", + "operator:email": "roaming-dev@road.io", + "description": "Road/66e2e779c192eb001cfa5256", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94701500000, + 45.55707600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LABORATOIRES M&L", + "description": "LOCCITANE - LABORATOIRES M&L - LAGORCE", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "ref:EU:EVSE": "FROTHPOTHR28172;FROTHPOTHR28152;FROTHPOTHR28142;FROTHPOTHR28141;FROTHPOTHR28132;FROTHPOTHR28131;FROTHPOTHR28122;FROTHPOTHR28121;FROTHPOTHR28112;FROTHPOTHR28111;FROTHPOTHR281101;FROTHPOTHR281102;FROTHPOTHR28151;FROTHPOTHR28161;FROTHPOTHR28162;FROTHPOTHR28171;FROTHPOTHR28181;FROTHPOTHR28182;FROTHPOTHR28191;FROTHPOTHR28192", + "ref": "FR*SOD*S*OTHR*281*8*_*_;FR*SOD*S*OTHR*281*7*_*_;FR*SOD*S*OTHR*281*3*_*_;FR*SOD*S*OTHR*281*2*_*_;FR*SOD*S*OTHR*281*1*_*_;FR*SOD*S*OTHR*281*10*_*_;FR*SOD*S*OTHR*281*4*_*_;FR*SOD*S*OTHR*281*5*_*_;FR*SOD*S*OTHR*281*6*_*_;FR*SOD*S*OTHR*281*9*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41426300000, + 44.48608600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT GONESSE", + "description": "SONEPAR CONNECT GONESSE", + "ref:EU:EVSE": "FRCPIE6606905", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6606905", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44455400000, + 48.98073600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "786993", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7245826491957873687", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/ZV5TCKN6XS", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03519900000, + 42.70705000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1168689", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s540968", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P6633729120215925450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50276800000, + 50.35797600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9158821601657119995", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/EI9OT5GBAB", + "ref": "578855", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50533700000, + 45.90362100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00357", + "network": "ACCOR Hotels", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-11", + "operator": "TotalEnergies Marketing France", + "description": "Ibis Saint Nazaire - Trignac", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "331996140", + "ref": "FRTCBP00357", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20836800000, + 47.30007700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P2430211731773497501", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "735219", + "charging_station:output": "22 kW", + "description": "Freshmile France/XTR2GOJ0TI", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51352700000, + 43.58381400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPFARGESMANOIR502701", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "description": "Farges - Manoir - Surtainville", + "start_date": "2019-03-05", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81289900000, + 49.45516600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2903000", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Cleder-Rue de Plouescat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10401600000, + 48.66344500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "101783", + "ref:EU:EVSE": "FRS10P3707723975793660716", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/VLN2PSDDZH", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10109700000, + 48.32960300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "GHO Reims Parc des expositions;Zephyre/1909473", + "network": "GHO Reims Parc des expositions;Zephyre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1PEAC43770;FRZP1PEAC43767;FRZP1P4133047828482339781;FRZP1PEAC43768;FRZP1PEAC43769", + "owner:ref:FR:SIREN": "819256272", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref": "575876;34861b0f-4c67-4f77-9b94-3dada4fa0eb7", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06970400000, + 49.23611900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-06-15", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hutt_rille", + "ref:EU:EVSE": "FRROSE87", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21820200000, + 47.45750600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/SXESMW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PSXESMW", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "79477", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63470000000, + 50.31640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - SAUMUR", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST16412;FRIZFPFAST16411;FRIZFPFAST16413;FRIZFPFAST16421;FRIZFPFAST16422;FRIZFPFAST16423", + "start_date": "2024-07-17", + "ref": "FR*SOD*S*FAST*164*2*_*_;FR*SOD*S*FAST*164*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08099110000, + 47.26008380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ST GEORGES SUR CHER - Pl. Bretonneau", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4715;FRS41E4716", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4715;FRS41E4716", + "description": "MODULO - ST GEORGES SUR CHER - Pl. Bretonneau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12494400000, + 47.32575500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/Agnetz", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "38803", + "ref:EU:EVSE": "FRS60PAGNETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38609000000, + 49.39860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*78*1*_*_;FR*SOD*S*LYON*78*2*_*_;FR*SOD*S*LYON*78*3*_*_;FR*SOD*S*LYON*78*4*_*_", + "start_date": "2021-05-26", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY602 - EDGAR QUINET", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON7811;FRGLYPLYON7821;FRGLYPLYON7831;FRGLYPLYON7841", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84453000000, + 45.76610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BOURGUEIL - Péage A85", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E215275;FRS37E215276", + "start_date": "2023-08-18", + "ref": "FRS37E215275;FRS37E215276", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BOURGUEIL - Péage A85" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16609800000, + 47.25232300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PFWUXXF", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-12-22", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Melrand - Rue Saint Laurent" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11009900000, + 47.97918800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "Carrefour Market Belondis", + "capacity": "2", + "amenity": "charging_station", + "description": "Carrefour Market Belondis", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P29236A", + "operator:email": "contact@e-totem.fr", + "start_date": "2019-04-16", + "ref": "FRG10P29236A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.68765800000, + 47.84583300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRN54E188611;FRN54E188610", + "description": "MODULO - NANCY - Pkg. Piscine Gentilly", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRN54E188611;FRN54E188610", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08", + "network": "MODULO - NANCY - Pkg. Piscine Gentilly" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14207000000, + 48.69796000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 199 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD", + "start_date": "2020-07-08", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE211;FRSIGPSIGE212", + "ref": "FR*SOD*S*SIGE*2*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21099700000, + 48.85706300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRCG0E002198;FRCG0E002197;FRCG0E002081;FRCG0E002199;FRCG0E002200", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2024-02-20", + "description": "BMW Domancy - Borne extérieure 2", + "charging_station:output": "50 kW;11 kW;2 kW", + "network": "BMW Domancy - Borne extérieure 2", + "opening_hours": "Sa 09:00-17:30,Fr 08:00-18:30,Th 08:00-18:30,We 08:00-18:30,Tu 08:00-18:30,Mo 08:00-18:30", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E002198;FRCG0E002197;FRCG0E002081;FRCG0E002199;FRCG0E002200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68557100000, + 45.90399600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89942716", + "description": "ENGIE Vianeo - Hôtel Kyriad Nanteuil Les Meaux", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88111600000, + 48.93555700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Sulpice de Royan | Route de Saint-Palais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "b437b6bc-ef28-5899-bcc2-92e6089a801a", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01114000000, + 45.67263000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE87SABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-11-30", + "description": "PENE AUTO - SAINT JUNIEN", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92856700000, + 45.90236800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "description": "TOULOUSE - Rue André SAVES - Parking P3", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRA31E31555002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40808200000, + 43.60032600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "MILHAUD - Montpellier", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3952EVCP01;LFR3952EVCP02", + "ref:EU:EVSE": "LFR3952EVCP01;LFR3952EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29774200000, + 43.78353100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ECHIROLLES - Salle de Spectacle La RAMPE", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM38E38151003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-01-26", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71971500000, + 45.14918200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EBHUSN;30362", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Vernoux-En-Vivarais, Avenue Vincent D Indy -;Réseau eborn/EBHUSN", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPEBHUSN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64776000000, + 44.89770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "description": "Freshmile France/JSQOWLLCAR", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "491919", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8773247379665525781", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187500000, + 48.91193000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "description": "SAINT DENIS - Université - Rue Toussaint Louverture", + "ref:EU:EVSE": "FRP07E93066002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36559040000, + 48.94682350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP6508112050480072816", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "933423", + "description": "Réseau eborn/OJSEF8KNCZ", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78845600000, + 46.29530600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPGUIPB", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Guipavas - CC Les Portes de Brest-Guipavas", + "opening_hours": "24/7", + "start_date": "2024-07-26", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.43614000000, + 48.41687600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Parking Limoges Bibliothèque - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E87085007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25942790000, + 45.82637600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-04", + "amenity": "charging_station", + "capacity": "4", + "network": "HIEXMLV BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6648255;FRCPIE6648195", + "operator:email": "info@chargepoint.com", + "description": "HIEXMLV BORNE 2", + "ref": "FRCPIE6648255;FRCPIE6648195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83193900000, + 48.84840700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Easy Charge/UVA1GK3BEZ", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP3761024800920754518", + "operator": "Easy Charge | FR*ECH", + "ref": "749262", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396600000, + 47.27512800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1811", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-12-14", + "description": "Paris | Rue Ravignan 1bis", + "opening_hours": "24/7", + "ref": "FR*V75*PPX18*11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33755360000, + 48.88508020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2495045749516038131", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "ref": "479253", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/Z34FCKPU91" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78183800000, + 48.61107500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9019*05", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75P901905", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue de Crimée 14", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39182000000, + 48.87780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2220858452330522625", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "694331", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/UUGQOG3Q0H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13765300000, + 49.04619500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "ref:EU:EVSE": "FRSSDPSIMAHYUNDAI597501", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Hyundai - Maubeuge", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00, Su 09:00-12:00, Su 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90237700000, + 50.28180600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22216001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Plougonver-Rue des écoles (parking arrière mairie)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37783200000, + 48.48503500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11206001", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LIMOUX - Esplanade François Mitterrand", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21861000000, + 43.05055560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "description": "Style and Design - Maurepas - 7.4kW AC", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "network": "STYLE AND DESIGN", + "charging_station:output": "22 kW", + "ref": "45135;45134;45107;45106", + "owner:ref:FR:SIREN": "524678711", + "start_date": "2020-11-10", + "ref:EU:EVSE": "FRZPEE22AC45107;FRZPEE22AC45106;FRZPEE22AC45134;FRZPEE22AC45135", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92888510000, + 48.75800170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT JEAN DU FALGA - Rue De La Republique", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09265001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62740000000, + 43.08660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PSJSVRY", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/SJSVRY", + "opening_hours": "24/7", + "ref": "120542", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56457000000, + 50.33460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - CAMBRAI BD DE LA LIBERTE", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*47*2*_*_;FR*SOD*S*FAST*47*1*_*_", + "start_date": "2024-03-19", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST4723;FRIZFPFAST4722;FRIZFPFAST4721;FRIZFPFAST4713;FRIZFPFAST4712;FRIZFPFAST4711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23318770000, + 50.16888160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44077A;FRS44E44077001", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Joue-Sur-Erdre - Mazureau;JOUE-SUR-ERDRE - Place André Mazureau", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2024-04-16;2024-04-21;2021-04-08", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41999200000, + 47.49559500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-07;2023-05-11", + "description": "GRAVON - Route De Vinneuf;Gravon", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61HT51HJANTGRK3N18", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77212A;FRS77E77212001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12048500000, + 48.39846800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;47 kW;150 kW", + "capacity": "7", + "ref:EU:EVSE": "FRGYMP156536329999335875", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "ref": "993414", + "description": "GreenYellow Shift Mobility/66", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73228600000, + 44.54355000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E220433;FRS37E220436", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E220433;FRS37E220436", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SAINT ROCH - Rue de la Baratterie", + "description": "MODULO - SAINT ROCH - Rue de la Baratterie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57813368000, + 47.44355115000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "88d2c3b7-2c7a-5246-a64e-998ceffc240a", + "description": "CCTLB - Laronxe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60473300000, + 48.53943900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Super U Fauville-en-Caux", + "owner:ref:FR:SIREN": "354051930", + "start_date": "2024-09-10", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "network": "Super U Fauville-en-Caux", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60128900000, + 49.65309700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMBZEZBVIA1;FRMBZEPDCEN;FRMBZEFCCJP", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "description": "Lotus Cars Nanterre", + "network": "Lotus Cars Nanterre", + "start_date": "2023-09-29", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 10:00-12:00,Th14:00-18:00", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref": "812db791-eea1-475a-a7e2-82e4accea7fc;eca8d899-b004-4a0b-bb07-134ebe73b5d8;55565ead-01a2-4722-af5a-d569970d509d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19207000000, + 48.88848600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BEZONS - Rue Edouard Vaillant", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE95063003", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-04-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21389530000, + 48.92655270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING EXTERIE BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "network": "PARKING EXTERIE BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6536955", + "ref": "FRCPIE6536955", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16549200000, + 48.83775000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/K5IED349PE;Leclerc/JDCTMIKNGY", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "598131;585554", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P5264794532240111228;FRLE2P612767503045677849", + "charging_station:output": "22 kW", + "capacity": "2;10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16886100000, + 47.79368600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint Seurin Sur L Isle | Av Georges Clemenceau - Parking Mediatheque;SAINT SEURIN SUR L ISLE - AV GEORGES CLEMENCEAU / PARKING MEDIATHEQUE", + "charging_station:output": "3.7 kW;22 kW", + "ref:EU:EVSE": "Non concerné;FRS33PMB3312611;FRS33PMB3312612", + "capacity": "2", + "amenity": "charging_station", + "ref": "95d3dd3a-7707-57ed-a675-55265281e554;FR*SOD*S*MB33*126*1*_*_", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00099200000, + 45.01500300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - La Crèche - Gare", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "start_date": "2015-07-06", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB79048P0012A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29663900000, + 46.36043600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPAIRBUSSTMARTIN313007", + "network": "DRIVECO", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Airbus Saint Martin Parking JLL", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35929400000, + 43.65587100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4080EVCP01;LFR4080EVCP03;LFR4080EVCP02", + "description": "MIRAMONT DE GUYENNE", + "ref:EU:EVSE": "LFR4080EVCP01;LFR4080EVCP03;LFR4080EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34924200000, + 44.59334500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - JOSEPH GARNIER RP", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE5122;FRM06PNICE5121;FRM06PNICE5131;FRM06PNICE5132", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*51*3*_*_;FR*SOD*S*NICE*51*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25834100000, + 43.71014600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-15", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*183*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "TOUDON - PARKING MAIRIE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ18312;FRA16PWIIZ18311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11236300000, + 43.90138600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LLWHJ10VE16B8K", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1127508", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P260846450636504011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20137400000, + 46.08024100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Bricomarché - Riom", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-12-22;2023-12-26", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PBRIRIO", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11843116931, + 45.87855025620 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SRX4IK756Y;346940", + "ref:EU:EVSE": "FREBNP3239641465547045932;FREBNPSRX4IK756Y", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Saint-Didier-Sous-Aubenas, Place des Vignettes;Réseau eborn/SRX4IK756Y" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40901000000, + 44.61240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/2fb7c680-bf32-4392-bf16-9d7fe6d010e4", + "capacity": "5", + "ref": "1013481", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP1936955211962971945", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93668300000, + 47.06017000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-02-22", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E315550542;FRP07E315550541;FRP07E31555054", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "TOULOUSE - Parking Saint Michel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44227980000, + 43.59233660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/HLIQFU7MBL;Nyons, Promenade de la Digue Est", + "ref": "31909;HLIQFU7MBL", + "ref:EU:EVSE": "FREBNPHLIQFU7MBL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14097200000, + 44.35889500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "ref": "HW9LNU9VCS", + "description": "Chateaubriant, Emeraude", + "start_date": "2023-03-08", + "ref:EU:EVSE": "FRECHPHW9LNU9VCS", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38538980000, + 47.70502658000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A31 Montigny-le-Roi", + "operator": "Greenflux", + "start_date": "2023-03-02;2022-12-30", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "300 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRVIAP101112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49804100000, + 47.97703800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/I4HXYDCXJI", + "ref:EU:EVSE": "FRFR1P3285427208904457502", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "559727", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25594900000, + 43.36649200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-08-17", + "description": "Paris | Rue Beaurepaire 31", + "opening_hours": "24/7", + "ref": "FR*V75*PPX10*05", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1005", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36420600000, + 48.87119000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Tu,We,Fr,Th,Mo 08:00-12:00,We,Tu,Fr,Mo,Th 14:00-19:00,Sa 14:00-18:00,Sa 09:00-12:00", + "description": "Freshmile France/WQLJIEOSPD", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "491985", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRFR1P4599264906969955311", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09245000000, + 43.61957400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPACTENAVOLVO782001", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Actena Automobiles - Buchelay", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67535000000, + 48.99197200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892860", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SYDED", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "SYDED/LLIO765R6CG78K", + "ref:EU:EVSE": "FRS25P3892508623214018759", + "socket:type2_combo:output": "100 kW", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58070100000, + 47.44912000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BANNAY - Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E251640;FRS18E251641", + "network": "MODULO - BANNAY - Pl. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS18E251640;FRS18E251641", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2024-07-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88233200000, + 47.38443600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE MESNIL-LE-ROI - Val", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78396004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-01-08", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11339000000, + 48.92156000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-09;2022-11-18", + "opening_hours": "24/7", + "ref": "FR*SOD*S*QPRK*51*4*_*_;FR*SOD*S*QPRK*51*3*_*_;FR*SOD*S*QPRK*51*21*_*_;FR*SOD*S*QPRK*51*2*_*_;FR*SOD*S*QPRK*51*20*_*_;FR*SOD*S*QPRK*51*19*_*_;FR*SOD*S*QPRK*51*18*_*_;FR*SOD*S*QPRK*51*17*_*_;FR*SOD*S*QPRK*51*1*_*_;FR*SOD*S*QPRK*51*10*_*_;FR*SOD*S*QPRK*51*11*_*_;FR*SOD*S*QPRK*51*12*_*_;FR*SOD*S*QPRK*51*13*_*_;FR*SOD*S*QPRK*51*14*_*_;FR*SOD*S*QPRK*51*15*_*_;FR*SOD*S*QPRK*51*16*_*_;FR*SOD*S*QPRK*51*5*_*_;FR*SOD*S*QPRK*51*6*_*_;FR*SOD*S*QPRK*51*7*_*_;FR*SOD*S*QPRK*51*8*_*_;FR*SOD*S*QPRK*51*9*_*_", + "charging_station:output": "22 kW", + "network": "QPARK", + "ref:EU:EVSE": "FRQPKPQPRK5191;FRQPKPQPRK5181;FRQPKPQPRK5171;FRQPKPQPRK5161;FRQPKPQPRK5131;FRQPKPQPRK5121;FRQPKPQPRK51191;FRQPKPQPRK51181;FRQPKPQPRK51171;FRQPKPQPRK51101;FRQPKPQPRK5111;FRQPKPQPRK51111;FRQPKPQPRK51121;FRQPKPQPRK51131;FRQPKPQPRK51141;FRQPKPQPRK51151;FRQPKPQPRK51161;FRQPKPQPRK51201;FRQPKPQPRK51211;FRQPKPQPRK5141;FRQPKPQPRK5151", + "operator:email": "sav@izivia.com", + "description": "QPARK - VANNES - PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75921000000, + 47.65356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CASTRES - Parking College Jean Jaures", + "start_date": "2022-02-05", + "ref:EU:EVSE": "FRS81E81065001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23846600000, + 43.60894800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-21;2020-12-11", + "ref:EU:EVSE": "FRIOYE403453;FRIONE431400;FRIOYE403401;FRIOYE403402;FRIOYE403403;FRIOYE403404;FRIOYE403451;FRIOYE403452", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "description": "Sarthe Sud;IONITY Saugon Ouest", + "network": "Sarthe Sud;IONITY GMBH", + "operator": "IONITY", + "ref": "FRIOYE403453;FRIOYE403452;FRIOYE403451;FRIOYE403404;FRIONE409800;FRIOYE403401;FRIOYE403402;FRIOYE403403", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809000000, + 47.80350700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-02-17", + "owner:ref:FR:SIREN": "255002883", + "description": "QUETTEHOU - Parking Halle au Grain", + "ref:EU:EVSE": "FRS50P50630001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30360130000, + 49.59386540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-07;2023-06-13", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Ury - Mairie;URY - Rue Bessonville", + "ref": "01F5ZAKH61JC7J36YVW9KYEWZS", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77477A;FRS77E77477001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60209900000, + 48.34220500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-20;2021-03-08", + "owner:ref:FR:SIREN": "531680572;531680573", + "capacity": "2", + "amenity": "charging_station", + "description": "RELAIS RIVESALTES NORD", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF080162", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "50 kW;175 kW", + "ref:EU:EVSE": "FRHPCPNF080162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89940000000, + 42.77980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BLOIS - Mail Pierre Charlot", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E244466;FRS41E244465", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "description": "MODULO - BLOIS - Mail Pierre Charlot", + "ref": "FRS41E244466;FRS41E244465" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34456600000, + 47.60234200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-08-04", + "description": "Vannes - Rue Henri Matisse", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PWRRLPV", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76808300000, + 47.67091100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON19711;FRGLYPLYON19712", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "LY323 - FEUILLAT - LACASSAGNE", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*197*1*_*_", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87577261409, + 45.75008232665 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "484727", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "Métropolis/FR*MGP*P92040*B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040B", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27441900000, + 48.82816100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Opel - Aero Auto - Gometz", + "opening_hours": "Mo 08:00-12:30, Mo 14:00-19:00, Tu 08:00-12:30, Tu 14:00-19:00, We 08:00-12:30, We 14:00-19:00, Th 08:00-12:30, Th 14:00-19:00, Fr 08:00-12:30, Fr 14:00-19:00, Sa 09:00-12:30, Sa 14:00-19:00", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2020-02-17", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPAEROAUTOOPEL919401", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13760900000, + 48.67380700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC01E76640001", + "operator": "Bouygues E&S", + "description": "SAINT PIERRE LES ELBEUF - Rue Hélène Boucher", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04190400000, + 49.27656700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446879", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/ZA8JA9BSVY", + "ref:EU:EVSE": "FRLE2P6694280046028296403" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89656400000, + 50.05887000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "f3acde6a-7ff7-5fbe-9fb5-9c4efdf69f1e", + "description": "MOBIVE | La Teste-De-Buch | Rue du Général Gallieni | Parking la Poste", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14892400000, + 44.63073000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SAINT PRIX - Complexe Sportif ", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95574002", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26519609895, + 49.00436425418 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "description": "ABBEVILLE", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-06-16", + "ref:EU:EVSE": "FRALLPBER025;FRSITE00000133", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86782950000, + 50.09588140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/MA9BCHTCYB", + "ref:EU:EVSE": "FRLE2P6238582372393287680", + "amenity": "charging_station", + "ref": "446759", + "network": "Leclerc", + "capacity": "14", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445900000, + 47.61544900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Bouc-Bel-Air, Impasse des Acacias", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PXTZTDXREI6", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41303000000, + 43.45976800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "488898", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/TWOTKK05J9", + "ref:EU:EVSE": "FRS89P1317185023589428112", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54242200000, + 47.52556100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-05-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANNES PARKING NEGRIN", + "ref": "FR*SOD*S*WIIZ*39*1*_*_", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3911;FRA16PWIIZ3912", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97185200000, + 43.54916000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/IQYT3DE6ZN", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2380838569516528258", + "network": "Freshmile France", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref": "578891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.42519900000, + 48.44034300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "charging_station:output": "50 kW;22 kW;160 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PRODPRX", + "description": "Roady - Perreux", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09595702394, + 46.02911767853 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "85961", + "description": "Réseau eborn/YU5FX9XNFJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPYU5FX9XNFJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03503900000, + 46.04340600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP6359411974419101719", + "capacity": "3", + "ref": "1149762", + "opening_hours": "24/7", + "network": "EVzen", + "description": "EVzen/6E0CEF9A-2124-4A72-9BB1-019597777791", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06963600000, + 47.64344500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*639*1*_*_;FR*SOD*S*OTHR*639*2*_*_;FR*SOD*S*OTHR*639*3*_*_", + "capacity": "1;2", + "description": "INTERMARCHE - TARASCON-SUR-ARIEGE", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR63931;FROTHPOTHR63921;FROTHPOTHR63911;FROTHPOTHR63922;FROTHPOTHR63932", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60600100000, + 42.84514900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP7845719029417674313", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/W3UFAZDOEH", + "ref": "529940", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669000000, + 45.91755000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLK9N6FGDHT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/LK9N6FGDHT;Cereste, Parking Les Aires", + "ref": "LK9N6FGDHT;78606" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59174400000, + 43.85566400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR33611;FROTHPOTHR33621;FROTHPOTHR33631;FROTHPOTHR33641", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*336*4*_*_;FR*SOD*S*OTHR*336*3*_*_;FR*SOD*S*OTHR*336*2*_*_;FR*SOD*S*OTHR*336*1*_*_", + "opening_hours": "24/7", + "start_date": "2022-03-10", + "description": "EURL R.M.A - MILIZAC-GUIPRONVEL", + "network": "EURL R.M.A", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.56792000000, + 48.46605700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/W39HOFBJ3R", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "782526", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6802619168773273885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09994100000, + 48.66418800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue Olier 15", + "start_date": "2021-11-03", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1532", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX15*32", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29142950000, + 48.83519850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "25 kW;7.4 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4536930935049638519", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YVE4QCBHBZ", + "ref": "521405" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37067100000, + 49.18401300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 00:00-23:59, Tu 00:00-23:59, We 00:00-23:59, Th 00:00-23:59, Fr 00:00-23:59, Sa 00:00-23:59, Su 00:00-23:59", + "ref:EU:EVSE": "FRSSDPEDENAUTOBMW642301", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "BMW - Pau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42249300000, + 43.31982900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900064", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PVAUDREUILPAPAVOINE", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20844000000, + 49.25644000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22118001", + "description": "Lanvallay-Place du 19 mars 1962", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02888900000, + 48.45583300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "349429472", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZIME22AC126136;FRZIME22AC81447", + "description": " INTERMARCHE ALTILLAC - 22 KW AC ;INTERMARCHE ALTILLAC - 22 KW AC ", + "ref": "81447;126136", + "start_date": "2021-10-01;2021-09-03", + "opening_hours": "Mo-sat 08:30-19:00, Sun 09:00-12:30", + "network": "INTERMARCHE ALTILLAC ;INTERMARCHE ALTILLAC", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85010000000, + 44.97406000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "Le_Wam_Wambrechies", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE237", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04741320000, + 50.67835310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOUAFLE - Rue De Charnelles", + "ref:EU:EVSE": "FRY01E78090001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89933900000, + 48.96351200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-17", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "description": "Gevrey-Chambertin Est", + "ref": "FRIOYE410253;FRIOYE410252;FRIOYE410251;FRIOYE410202;FRIOYE410201;FRIOYE410203;FRIOYE410204", + "network": "Gevrey-Chambertin Est", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE410253;FRIOYE410252;FRIOYE410251;FRIOYE410202;FRIOYE410201;FRIOYE410203;FRIOYE410204", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01092130000, + 47.22297550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS52P1124817981592108979", + "description": "SDED52/Y6GAKTDMGZ", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref": "378648", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29303800000, + 47.68042300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "TARBES - Place Marcadieu", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65440001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08407900000, + 43.23156500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE004801;FRIENE004802", + "network": "Maurs", + "owner:ref:FR:SIREN": "898270251", + "description": "Maurs", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE004801;FRIENE004802", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-03-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20552248000, + 44.70115106000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SETE - Boulevard Casanova - Médiathèque", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34301003", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-07-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69422500000, + 43.40645280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61096A", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "RIVES D'ANDAINE - Le Bas de la Chapelle", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-LACH-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48149680000, + 48.53418000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "699044", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VOQCWRZDSV", + "ref:EU:EVSE": "FRFR1P8558222071475430891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91440000000, + 43.98442400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-13", + "ref:EU:EVSE": "FRS31PPBFCNZ", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/PBFCNZ;Bagnères-de-Luchon, Lamartine", + "ref": "PBFCNZ;477852", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59199300000, + 42.78940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPVULCAINVOLVO690091", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-02-10;2021-01-27", + "operator": "DRIVECO", + "description": "Volvo - GROUPE VULCAIN - Lyon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79792400000, + 45.77645600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000139;FRCG0E0001340;FRCG0E000108", + "amenity": "charging_station", + "capacity": "3", + "description": "Provendi - Ingeteam sur mur", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000139;FRCG0E0001340;FRCG0E000108", + "network": "Provendi - Ingeteam sur mur", + "start_date": "2022-04-28", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34725900000, + 46.27414300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-04;2021-10-05", + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*146*1*_*_;FR*SOD*S*NICE*110*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE14612;FRM06PNICE14611;FRM06PNICE11012;FRM06PNICE11011", + "description": "VENANSON - PARKING PLACE SAINT JEAN;VENCE - PARKING DE LA ROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25274100000, + 44.05362200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "39ac06db-3ff9-5b22-b085-81c136279c92", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Lit et Mixe | Parking Arrière Mairie, Rue des Arènes", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25872700000, + 44.03413000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "BYMYCAR - VERDUN", + "ref:EU:EVSE": "FRSE1PSE55VYBA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-02-09", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41036900000, + 49.16346400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS242096;FRBMPS242097", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - IFS", + "ref": "242097;242096", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35292300000, + 49.15000100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3122EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "HOUDAIN Bonduelle", + "ref:EU:EVSE": "LFR3122EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54561400000, + 50.45355600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-7E, 85 Boulevard Charles Livon", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PQK9NSBFHAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35848100000, + 43.29196900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "135583", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90PPWMZSD", + "description": "TE90/PWMZSD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128000000, + 47.64110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "ZONE COMMERCIAL PUGET SUR ARGENS", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref": "FR*55C*P83480*PUG*COMMERCIAL", + "start_date": "2013-02-01", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP83480PUGCOMMERCIAL", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70655300000, + 43.44393500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "REYNES Cabanasse", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3665EVCP02;LFR3665EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3665EVCP02;LFR3665EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72529700000, + 42.49459700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Super U - Saint-Laurent-en-Grandvaux", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUSLG", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95688439790, + 46.57199956503 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Laragne-Monteglin, Place des Lavandes;Réseau eborn/R0FHUDC6EV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPR0FHUDC6EV", + "ref": "32653;R0FHUDC6EV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82466400000, + 44.31554700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fastned Enox Gennevilliers", + "operator": "Fastned France", + "capacity": "8", + "ref:EU:EVSE": "FRFASE33211", + "socket:type2_combo:output": "400 kW", + "charging_station:output": "400 kW", + "amenity": "charging_station", + "ref": "FRFASE33211", + "operator:email": "support@fastned.nl", + "network": "Fastned Enox Gennevilliers", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "853300010", + "start_date": "2023-12-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056400000, + 48.93086800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking gare de Vichy - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E03310001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43122800000, + 46.12806100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPTTWQMV", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/TTWQMV;Annecy, Faubourg Des Balmettes", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "TTWQMV;79111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12307000000, + 45.89560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPS17UEJU18E", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/S17UEJU18E", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67147200000, + 45.53460500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR45322;FROTHPOTHR45321;FROTHPOTHR45312;FROTHPOTHR45311", + "ref": "FR*SOD*S*OTHR*453*1*_*_;FR*SOD*S*OTHR*453*2*_*_", + "operator:email": "sav@izivia.com", + "description": "INTERMARCHE - BEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76649800000, + 45.84806600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Fr,Su,Mo,Th,We,Sa,Tu 08:00-19:00", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4885706289124464234", + "ref": "892029", + "description": "Freshmile France/LLHQB3EQ7FWYJ7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62952100000, + 46.50226900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10010270;FRUBIE10006987", + "ref": "setp0100000041", + "operator:email": "contact@ubitricity.com", + "start_date": "2024-02-22", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "description": "UBI-LHSM-035", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18489900000, + 49.50507300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/REUFMB3JUC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466176", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6543716379223752693" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32041500000, + 46.58140400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "ref:EU:EVSE": "FRTLSE31091002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "90 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BRUGUIERES - Rue des Fleurs", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41001000000, + 43.72431000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,Th,Tu,We,Mo,Su,Sa 19:00-23:00,Sa,Tu,Fr,Mo,Su,We,Th 00:00-07:00", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1380992220498889883", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "description": "Freshmile France/LSMJ9I3RMS", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "682181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788000000, + 45.83878600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/QVMV4MMGBF", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P4618245708486809643", + "ref": "457551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50225600000, + 49.09882400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "874224;576257;576215;2caa1c7e-3f41-4150-8125-fcb888fca3fd;576332", + "description": "Opéralia les Pins 4 - 22 kW AC;Zephyre/LP00957F;Zephyre/LP00958F;Opéralia les Pins 1 - 7,4 kW AC;Zephyre/LP009E56;Opéralia les Pins 3 - 7,4kW AC;Zephyre/LP009E6D", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P1902853178783118644;FRZP1P51117;FRZP1P1355935018348213050;FRZP1P130056;FRZP1P1646187183143065522;FRZP1P129835;FRZP1P689669878279340864", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "owner:ref:FR:SIREN": "824940571", + "network": "Opéralia les Pins;Zephyre", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67507700000, + 43.43843100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11361001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-20", + "network": "Reveo", + "description": "SAINT-PAPOUL - Place Monseigneur De Langle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03460000000, + 43.33080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78049001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-10-11", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BAZEMONT - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86441000000, + 48.92863000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "CD54 - Toul", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d77f7f8d-b560-574f-a2de-17c8ddebd6d5", + "charging_station:output": "50 kW;43 kW", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87126300000, + 48.65107900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2017-09-25", + "charging_station:output": "22 kW", + "description": "UR - Rue De Brangoly", + "ref:EU:EVSE": "FRS66E66218001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93669900000, + 42.46239600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-09-13", + "ref:EU:EVSE": "FRIKAPIKEA20311;FRIKAPIKEA20321;FRIKAPIKEA20331", + "description": "IKEA TOULOUSE - PARKING LOGISTIQUE", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "FR*SOD*S*IKEA*203*2*_*_;FR*SOD*S*IKEA*203*1*_*_;FR*SOD*S*IKEA*203*3*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37675330000, + 43.51701520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35240001B1", + "start_date": "2021-10-01", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "LE RHEU - 1 rue du dr wagner ", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79413000000, + 48.10043400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "ref": "518273", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Le Cendre - Gare;SIEG 63/FR*S63*P63069*B", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63069B", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18944500000, + 45.72340800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Su,Sa 08:00-23:00,Th,Fr,We,Mo,Tu 07:00-23:00", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "description": "Freshmile France/EQCDH9J1JP", + "ref": "482007", + "ref:EU:EVSE": "FRFR1P2531744890768258104", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37956200000, + 49.24620200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31P6003872542567340965", + "operator:email": "roaming@freshmile.com", + "description": "Roulez Électrique En Haute-Garonne/LLNBPDA2RW1LWL", + "capacity": "2", + "amenity": "charging_station", + "ref": "1009245", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90712800000, + 42.99601600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-25", + "network": "SIPPEREC", + "description": "NOISY-LE-SEC - Avenue Hoche", + "ref:EU:EVSE": "FRSIPE93053009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45024000000, + 48.88943000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PLD Auto - Audi Aix les Milles - 34E", + "start_date": "2024-08-22", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCG0E001172;FRCG0E001168;FRCG0E001166;FRCG0E001164;FRCG0E001163;FRCG0E001159;FRCG0E001155;FRCG0E001154;FRCG0E001153;FRCG0E001152;FRCG0E001150;FRCG0E001146;FRCG0E001145;FRCG0E001142;FRCG0E001141;FRCG0E001137;FRCG0E001136;FRCG0E001135;FRCG0E001116;FRCG0E001113;FRCG0E001112;FRCG0E001111;FRCG0E001105;FRCG0E001104;FRCG0E001101;FRCG0E001102;FRCG0E001103;FRCG0E001106;FRCG0E001107;FRCG0E001108;FRCG0E001109;FRCG0E001110;FRCG0E001114;FRCG0E001115;FRCG0E001117;FRCG0E001118;FRCG0E001138;FRCG0E001143;FRCG0E001144;FRCG0E001147;FRCG0E001148;FRCG0E001149;FRCG0E001151;FRCG0E001156;FRCG0E001157;FRCG0E001158;FRCG0E001160;FRCG0E001165;FRCG0E001167;FRCG0E001169;FRCG0E001170;FRCG0E001171", + "capacity": "52", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E001172;FRCG0E001167;FRCG0E001164;FRCG0E001163;FRCG0E001157;FRCG0E001156;FRCG0E001154;FRCG0E001153;FRCG0E001152;FRCG0E001150;FRCG0E001148;FRCG0E001142;FRCG0E001141;FRCG0E001137;FRCG0E001136;FRCG0E001135;FRCG0E001116;FRCG0E001113;FRCG0E001112;FRCG0E001111;FRCG0E001105;FRCG0E001104;FRCG0E001101;FRCG0E001102;FRCG0E001103;FRCG0E001106;FRCG0E001107;FRCG0E001108;FRCG0E001109;FRCG0E001110;FRCG0E001114;FRCG0E001115;FRCG0E001117;FRCG0E001118;FRCG0E001138;FRCG0E001143;FRCG0E001144;FRCG0E001145;FRCG0E001146;FRCG0E001147;FRCG0E001149;FRCG0E001151;FRCG0E001155;FRCG0E001158;FRCG0E001159;FRCG0E001160;FRCG0E001165;FRCG0E001166;FRCG0E001168;FRCG0E001169;FRCG0E001170;FRCG0E001171", + "operator:email": "info@chargeguru.com", + "network": "PLD Auto - Audi Aix les Milles - 34E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40987000000, + 43.50851800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING DUNANT", + "start_date": "2023-06-12", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*230*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE23012;FRM06PNICE23011", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27162157449, + 43.73225826709 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "6a3b708e-6746-5688-be73-821da4d930b5", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Feugarolles | Parking de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34764300000, + 44.22272900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRSIGPSIGE3761;FRSIGPSIGE3741;FRSIGPSIGE3731;FRSIGPSIGE3721;FRSIGPSIGE3711;FRSIGPSIGE3751", + "ref": "FR*SOD*S*SIGE*37*2*_*_;FR*SOD*S*SIGE*37*1*_*_;FR*SOD*S*SIGE*37*3*_*_;FR*SOD*S*SIGE*37*4*_*_;FR*SOD*S*SIGE*37*5*_*_;FR*SOD*S*SIGE*37*6*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "description": "SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-10-08;2020-10-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28281200000, + 48.80969300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-07", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76322001", + "description": "GRAND QUEVILLY - Place des Provinces" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05198380000, + 49.40940950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3782EVCP02", + "description": "LINGOLSHEIM - Hannong", + "ref:EU:EVSE": "LFR3782EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69168100000, + 48.55691600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "operator": "193__Syndicat de la Diège", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "168b7060-a353-54ef-abfe-5118ba027552", + "description": "MOBIVE | Eygurande" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45155800000, + 45.66473800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39016", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDE82/pommevic", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PPOMMEVIC", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93407200000, + 44.09960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PLACE DU 8 MARS - ROBION", + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP84440RBN8MARS", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P84440*RBN*8MARS", + "amenity": "charging_station", + "start_date": "2024-08-12", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11372600000, + 43.84364700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3550EVCP01;LFR3550EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "TRELAZE Jaures;TRELAZE Jaurès", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3550EVCP01;LFR3550EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50243900000, + 47.44503800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMLGC", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;60 kW", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "description": "Intermarché - Castelnau-d'Estrétefonds", + "start_date": "2022-09-27", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35270200000, + 43.78130700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP2051586273034249627;FREBNPZAO4L8TSGT", + "description": "Gréoux-les-bains, Parking Ecociné Verdon;Réseau eborn/ZAO4L8TSGT", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-08-05", + "ref": "347000;ZAO4L8TSGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88641000000, + 43.75702000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-Totem - THE ORIGINALS CITY - TARBES SUD", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP65331A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-04-23", + "ref:EU:EVSE": "FRETIP65331A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04455500000, + 43.20830300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;200 kW;50 kW;160 kW", + "owner:ref:FR:SIREN": "891118473", + "description": "Chaussea - Saumur", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCHASAU", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-12-13;2024-01-10", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06359848291, + 47.27792062475 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Crégy-Les-Meaux", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT771241", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-11-30", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86513900000, + 48.97638600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Noisy-le-Grand - Rue du Centre", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2024-03-20", + "capacity": "4", + "ref:EU:EVSE": "FRELCPNLGEP", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54592700000, + 48.83846400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ES/ COMMUN DERSTEIN LA LAITERIE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR57112;FROTHPOTHR57111", + "ref": "FR*SOD*S*OTHR*571*1*_*_", + "start_date": "2023-02-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ES B2B", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66221300000, + 48.42062200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22931850000, + 49.96638070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6755595", + "start_date": "2023-07-24", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "13 kW", + "description": "GERANIUMS OPIO BORNE 1", + "opening_hours": "24/7", + "ref": "FRCPIE6755595", + "operator:email": "info@chargepoint.com", + "network": "GERANIUMS OPIO BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98824900000, + 43.66887900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PNWWABU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "346226", + "description": "Freshmile France/NWWABU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55717900000, + 46.69552000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "description": "Paris | Rue de Medicis 11", + "amenity": "charging_station", + "ref": "FR*V75*P9006*02", + "charging_station:output": "4 kW;22 kW", + "start_date": "2021-04-14", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P900602", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33986500000, + 48.84824000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2004143051534818035", + "description": "Freshmile France/WBBEFNGEV0", + "operator:email": "roaming@freshmile.com", + "ref": "757002", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00004500000, + 47.51791900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1758", + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Nîmes", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34518900000, + 43.81656300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8004859402148615638", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "699140", + "description": "Freshmile France/OVLIOS1NEP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88908400000, + 42.73814900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MOULINS D'ASCQ", + "description": "MOULINS D'ASCQ", + "operator:email": "contact@nexteneo.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "NEXTENEO", + "ref:EU:EVSE": "FR0NXPOOLE4XC3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16502200000, + 50.60651300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P1900488221447483967", + "ref": "461988", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/VRSXXFSM8G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18647200000, + 49.28578200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RODEZ - ZA Les Moutiers (Campanille)", + "start_date": "2022-11-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12202002", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57079000000, + 44.36386200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "932025", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref:EU:EVSE": "FRWA5P9078270462336126032", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5L3RQIRZI1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85197000000, + 43.62022100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "SARRIGNE - Parking Mairie", + "ref:EU:EVSE": "FRS49E49326001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-04-10;2024-04-11", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38316598500, + 47.50183105000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "FAUCH - Rue de l'école", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-31", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8108800122;FRS81E8108800121;FRS81E8108800111;FRS81E8108800112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25465031370, + 43.83085908647 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "300 kW;150 kW", + "description": "RELAIS NIMES AGEL", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "ref": "FRHPCPNF006601", + "start_date": "2024-07-25", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRHPCENF006601", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32936200000, + 43.80985200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CASTELNAU MONTRATIER - Place du grand foirail", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS46E46063001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35179700000, + 44.26888300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARGELES GAZOST - Vieuzac", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS65E65025003", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10043000000, + 43.00925000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH03E59606005", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "VALENCIENNES - Avenue Desandrouin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50147800000, + 50.35860800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2919900", + "operator": "Bouygues E&S", + "description": "Plouigneau-Rue du 9 Août", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70173000000, + 48.56753200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE PERREUX SUR MARNE - Rue de la marne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94058003", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50422740000, + 48.84298100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRLMSP90248436", + "description": "ENGIE Vianeo - B&B Hôtel Bordeaux-Sud", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58831000000, + 44.78449100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bourdeilles | le Parc (Place du Foirail)", + "ref": "886b347d-cc24-5e19-a255-72db09a7d886", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58932800000, + 45.32185400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*477*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE47712;FRSIGPSIGE47711", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - RUE ALEXANDRE BOUCHER - VAUJOURS", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56726450000, + 48.93249660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2022-12-29", + "ref:EU:EVSE": "FRALLEGO9009141;FRALLEGO9009122;FRALLEGO9009121;FRALLEGO9006312;FRALLEGO9006062;FRALLEGO9006061;FRALLEGO9006311;FRALLEGO9009142", + "amenity": "charging_station", + "ref": "FRALLEGO9009141;FRALLEGO9009122;FRALLEGO9009121;FRALLEGO9006312;FRALLEGO9006062;FRALLEGO9006061;FRALLEGO9006311;FRALLEGO9009142", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Puget sur Argens", + "network": "Allego Carrefour Puget sur Argens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70373010000, + 43.44319150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ITM COMBRONBE", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRLIBP003740000001854", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "network": "ITM COMBRONBE", + "operator:email": "mguermouma@eoliberty.fr", + "ref": "FRLIBP003740000001854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83540574700, + 45.93255647460 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Oloron Sainte Marie | Place G. Clemenceau", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "312fdcd5-323e-5d19-8771-05b3fff6161b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60477800000, + 43.19394300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA CHATAIGNERAIE - Place De La République", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-16", + "ref:EU:EVSE": "FRS85E85059001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74243000000, + 46.64722100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "description": "DROME ENERGIES - VALENCE SUD", + "amenity": "charging_station", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2024-07-05", + "charging_station:output": "22 kW;150 kW;300 kW", + "ref:EU:EVSE": "FRSITE00000217" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86839950000, + 44.90233410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3030EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3030EVCP01", + "charging_station:output": "22 kW", + "description": "BOURGOIN Silos" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23470800000, + 45.59995400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PKYRVIN", + "capacity": "3", + "description": "Kyriad - Vineuil", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36801509630, + 47.58323926955 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSKUWSYWI8M", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "30254;SKUWSYWI8M", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/SKUWSYWI8M;Vaulx-Milieu, Parking Gymnase Rue des Ecoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18387000000, + 45.61470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "VQG0D15001", + "network": "CAMPING LE PALACE", + "start_date": "2023-05-23", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FREVMPVQG0D15001", + "opening_hours": "24/7", + "description": "Camping le Palace ", + "charging_station:output": "20 kW", + "socket:type2_combo:output": "20 kW", + "operator:email": "support@evmap.fr", + "operator": "EV MAP", + "owner:ref:FR:SIREN": "463201467" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13185900000, + 45.50171700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-26;2024-04-11", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PETXRVS", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "capacity": "10", + "description": "KFC - Rivesaltes", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90825252761, + 42.77703248961 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SNS SOLUTIONS MARSEILLE", + "opening_hours": "Mo-Fr 09:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "description": "SNS - Marseille - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "128989", + "ref:EU:EVSE": "FRE10E22AC128989", + "owner:ref:FR:SIREN": "451609978", + "start_date": "2022-04-15", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49363660000, + 43.29109610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42237AC", + "start_date": "2021-05-18", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRESEPS42237AC", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Parc Métrotech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45817900000, + 45.45703900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "HOTEL LA CHAMBRE", + "amenity": "charging_station", + "capacity": "1", + "description": "HOTEL LA CHAMBRE - AMIENS", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR13621;FROTHPOTHR13611", + "ref": "FR*SOD*S*OTHR*136*1*_*_;FR*SOD*S*OTHR*136*2*_*_", + "start_date": "2021-02-19", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27514600000, + 49.89547300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6940185", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6940185", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "operator:email": "info@chargepoint.com", + "network": "HIPPOPOTAMUS STATION 1", + "description": "HIPPOPOTAMUS STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87975700000, + 48.93508500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "368842", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4377382129313962402", + "opening_hours": "24/7", + "description": "Freshmile France/HGJLYOTLRF", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61425300000, + 44.85121000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B HOTEL ALENÇON NORD", + "start_date": "2024-04-29", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122044", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09938100000, + 48.45147600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P182398333245054983", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/EWHDONWUTE", + "charging_station:output": "7.4 kW;22 kW", + "opening_hours": "Mo,We,Th,Tu,Fr 08:00-17:00", + "operator": "Freshmile | FR*FR1", + "ref": "782457" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28166600000, + 45.37450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2022-12-19;2023-01-09", + "opening_hours": "24/7", + "description": "Decathlon - Jardin des plantes", + "ref:EU:EVSE": "FRSSDPDECATHLON590001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06045000000, + 50.61515000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8576643208665571544", + "opening_hours": "24/7", + "ref": "1026864", + "charging_station:output": "11 kW", + "description": "Freshmile France/NDHQTP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143000000, + 43.56690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - GALLARDON - Résidence de la tour", + "ref:EU:EVSE": "FRS28E129289", + "ref": "FRS28E129289", + "network": "MODULO - GALLARDON - Résidence de la tour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68742000000, + 48.52747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461640", + "description": "MobiSDEC/ANOW48R3FC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P2581705828370282794", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35555900000, + 49.18405500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1170366", + "description": "WAAT/FRWA6LOE96MWRI", + "ref:EU:EVSE": "FRWA9P1698982520648297521", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29255500000, + 49.83463500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50340001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "start_date": "2016-10-28", + "operator": "Total marketing france", + "description": "BENOITVILLE - Croix Georges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77529530000, + 49.53578810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RAYSSAC - Place du Village", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-06", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81221001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41611300000, + 43.81788700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF070003", + "description": "RELAIS PORTE DE CORREZE", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF070003", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2023-04-28;2023-04-18", + "owner:ref:FR:SIREN": "531681305;531681304;531681303;531681301;531681300;531681298;531681299;531681302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50882000000, + 45.54244000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49007006;FRS49P49007F", + "description": "OuestCharge - Diva Sp - Angers - Arago;ANGERS - Boulevard Arago", + "charging_station:output": "22 kW", + "start_date": "2021-04-28;2024-03-28;2024-03-29", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55871900000, + 47.47580700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "ref:EU:EVSE": "FRS60PCHANTILLY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/chantilly", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "46633" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46639000000, + 49.19410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "AUBERCHICOURT - Boulevard Coquelet", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH07E59024001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23267700000, + 50.33174100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30033001", + "start_date": "2022-02-23", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BEAUVOISIN - Avenue De La Graille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32488600000, + 43.71648700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PQQYWJL", + "operator:email": "roaming@freshmile.com", + "ref": "21880", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mobilité électrique 56/QQYWJL", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38936000000, + 48.14530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Colmar Vignobles Ouest", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90169643", + "start_date": "2024-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31396500000, + 48.08390800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "484829", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93066F", + "description": "Metropolis - Express - Saint-Denis - Cokerie;Métropolis/FR*MGP*P93066*F", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2022-09-16", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36228700000, + 48.92128300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Shell Aire de Roussillon", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "start_date": "2024-03-23", + "amenity": "charging_station", + "charging_station:output": "300 kW;125 kW;22 kW", + "capacity": "14", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRSHEE199;FRSHEE178;FRSHEE179;FRSHEE180;FRSHEE181;FRSHEE200", + "description": "Shell Aire de Roussillon", + "ref:EU:EVSE": "FRSHEE199;FRSHEE178;FRSHEE179;FRSHEE180;FRSHEE181;FRSHEE200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81521712000, + 45.40559119000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-12", + "ref": "6fc1f04e-b3a4-4002-b89f-9955d0a67474", + "network": "Bricomarché Coarraze", + "capacity": "2", + "owner:ref:FR:SIREN": "380363291", + "amenity": "charging_station", + "operator": "AUTORECHARGE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAU1E0033021", + "charging_station:output": "22 kW", + "description": "Bricomarché Coarraze", + "operator:email": "contact@autorecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23322691164, + 43.17534289659 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A51 Chabauds (Cabriès)", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRLMSP89369712", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39599800000, + 43.43384300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Aixe Sur Vienne | Gare", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1eb147ec-ef55-5132-9653-95dafad67490", + "operator": "203__SEHV", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14570300000, + 45.79672000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-03-22", + "capacity": "2", + "amenity": "charging_station", + "description": "Quartier Saint Jean - BEAUVAIS", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE60BVUA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07455600000, + 49.42109000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSAUCHY", + "start_date": "2022-11-16", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "AUCHY LES MINES", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79611700000, + 50.51994100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT QUENTIN Foch", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3681EVCP03;LFR3681EVCP01;LFR3681EVCP02;LFR3681EVCP04;LFR3681EVCP05", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "LFR3681EVCP03;LFR3681EVCP01;LFR3681EVCP02;LFR3681EVCP04;LFR3681EVCP05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29963900000, + 49.83983600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Marseille-14E, 9 Boulevard Gay Lussac", + "ref:EU:EVSE": "FRM13PK8PQPUH6YB", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37455200000, + 43.33219800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Allos, La Foux d'Allos;Réseau eborn/S4VXC1ZBVR", + "ref": "S4VXC1ZBVR;346928", + "start_date": "2020-12-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPS4VXC1ZBVR;FREBNP4259956117681687771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56920000000, + 44.29069300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "466305", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/YUSRPHWAJU", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6222590033512397721", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35308000000, + 49.08600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "Basic Fit - Sartrouville", + "ref:EU:EVSE": "FRPD1PIMCSRT", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20574041310, + 48.94801800087 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "HQNBNX4FTU;48460", + "description": "Puy-Saint-Vincent, Le Laux;Réseau eborn/HQNBNX4FTU", + "ref:EU:EVSE": "FREBNPHQNBNX4FTU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49839400000, + 44.82498900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP340404193781343607", + "ref": "1031421", + "capacity": "8", + "network": "Road", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Road/65ef1f73fba626001c46f673", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55560300000, + 48.53733400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*253*3*_*_;FR*SOD*S*OTHR*253*1*_*_;FR*SOD*S*OTHR*253*2*_*_;FR*SOD*S*OTHR*253*4*_*_", + "network": "SYSTEME U", + "description": "SUPER U - CENTRE COMMERCIAL LA BRIGAUDIERE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2021-10-04", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR25321;FROTHPOTHR25311;FROTHPOTHR25331;FROTHPOTHR25341", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72760900000, + 47.34647600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ASL GAOU BENAT BORNE 1", + "ref:EU:EVSE": "FRCPIE6601775", + "network": "ASL GAOU BENAT BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6601775", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35618000000, + 43.10928500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/IAN9F6VWO1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2538937943150018381", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "782379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79176600000, + 43.43705500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/s437360", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P1625621916856135969", + "ref": "597816", + "capacity": "9", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32901400000, + 48.75448200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3062429207543169471", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "597927", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MECXL47JEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44817600000, + 48.56613500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2024-02-20", + "network": "SOWATT SOLUTIONS", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234622071", + "description": "ALFEN 2x22 MG BOURGOIN", + "ref:EU:EVSE": "FRSWSE1234622071", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26106800000, + 45.59243400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/IVQVUIET9W", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3866786823647229621", + "ref": "368857", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61902400000, + 44.79939700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPSAVYBMW900041", + "start_date": "2023-08-03", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "BMW - Belfort", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87820500000, + 47.64185500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "Place de la Gare - LA LOUPE", + "operator:email": "lionel.chauvet@energie28.fr", + "owner:ref:FR:SIREN": "200080869", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "charging_station:output": "22 kW", + "network": "FR*S28", + "operator": "ENERGIE EURE-ET-LOIR", + "ref:EU:EVSE": "FRS28ESDE28LOU3B1P1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01140900000, + 48.47401700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/FIFWQ1FUV1", + "ref:EU:EVSE": "FRS10P6450027760738077662", + "ref": "39746" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43476900000, + 48.51103200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "ref:EU:EVSE": "FRZP1P8627898157807447629;FRZP1P6126411795642731728", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP008952;Zephyre/LP008974", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "576158;576161", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49965700000, + 45.40092300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-04-07", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Letouche", + "ref:EU:EVSE": "FRROSE62", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06506800000, + 50.24976900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77431B", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Saint-Pierre-lès-Nemours - Font Sèche", + "ref": "0c1ee839-b7d6-4c43-8488-dc03c485d103", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68560600000, + 48.26570300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-18", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*134*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - SAINT-VALERY-SUR-SOMME", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST13413;FRIZFPFAST13412;FRIZFPFAST13411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63768530000, + 50.17352750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4440;FRS41E4441", + "capacity": "2", + "network": "MODULO - CONTRES - Rue de la libération", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS41E4440;FRS41E4441", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CONTRES - Rue de la libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42975000000, + 47.42143800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/S44D2F05PW", + "ref:EU:EVSE": "FRS60P6957966614382566601", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref": "598176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14301900000, + 49.39046600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON5322;FRGLYPLYON5311;FRGLYPLYON5312;FRGLYPLYON5321", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*53*2*_*_;FR*SOD*S*LYON*53*1*_*_", + "start_date": "2020-12-14", + "opening_hours": "24/7", + "description": "LY502 - PLACE DE LABBE LARUE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81951400000, + 45.75546700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT LAURENT D'AIGOUZE - Parking Lotissement D'Aoû Fare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30276001", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19363000000, + 43.63185200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PFSRMLH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "242131", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/FSRMLH", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64136000000, + 47.89150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1035318", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1941603441221973069", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLKAU8Y25175FZ", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31655900000, + 48.78961900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/e9be8edf-f628-4dd8-a3bb-9e18d07f7237", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "ref:EU:EVSE": "FRMW1P5155317148232099597", + "opening_hours": "24/7", + "ref": "598452", + "charging_station:output": "22 kW", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86142200000, + 47.06770800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE18651;FRSIGPSIGE18641;FRSIGPSIGE18631;FRSIGPSIGE18621;FRSIGPSIGE18611;FRSIGPSIGE18671", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*186*7*_*_;FR*SOD*S*SIGE*186*5*_*_;FR*SOD*S*SIGE*186*4*_*_;FR*SOD*S*SIGE*186*2*_*_;FR*SOD*S*SIGE*186*1*_*_;FR*SOD*S*SIGE*186*3*_*_", + "charging_station:output": "7 kW;7.36 kW", + "start_date": "2021-12-02;2021-09-22", + "description": "SIGEIF - 127 RUE DE VERDUN - BAGNEUX", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32197500000, + 48.80181000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-14", + "network": "Chef Lieu la Poste - 73640 - 1", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001629;FRCG0E001630;FRCG0E001646", + "charging_station:output": "22 kW;2 kW", + "ref:EU:EVSE": "FRCG0E001629;FRCG0E001630;FRCG0E001646", + "description": "Chef Lieu la Poste - 73640 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88330500000, + 45.59103400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89900345", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Tarbes Bastillac", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-08-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04314900000, + 43.22184800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "description": "MOBIVE | Biscarrosse | Parking dufau", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "de051f6e-ba18-5f19-82b9-ed69ff19a26d", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25012300000, + 44.44500400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "SEPT-SORTS - Rue du Commerce", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE77SABA", + "start_date": "2023-12-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11032700000, + 48.94546500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-03-31", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSSENSV", + "description": "SENS VOULX", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26513400000, + 48.19984900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3376EVCP02;LFR3376EVCP01", + "charging_station:output": "50 kW;120 kW", + "ref:EU:EVSE": "LFR3376EVCP02;LFR3376EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "ARPAJON Limours" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24078700000, + 48.59947600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34172016", + "description": "MONTPELLIER - Rue De Chambert", + "start_date": "2022-02-05", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82799333300, + 43.63874667000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/K2DBFDWT9W", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "749439", + "ref:EU:EVSE": "FREBNP6253114431659623288" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94582400000, + 43.12513700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Touquet Normal", + "start_date": "2022-12-29", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "528932627", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "advenir@freshmile.com", + "ref:EU:EVSE": "FRFR1PVLIGQ2PRQT", + "operator": "FRESHMILE", + "description": "Touquet, Boulevard Jules Pouget" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57913576095, + 50.51658485952 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP07E920120031;FRP07E92012003", + "start_date": "2020-06-16;2024-03-18", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BOULOGNE BILLANCOURT - Marché", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24171000000, + 48.83140200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/HTIYLP7TN0", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "96017", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPHTIYLP7TN0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21607200000, + 45.98958700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;400 kW", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "A7 - Aire de la Bouterne (direction Lyon)", + "start_date": "2024-06-26", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPAABOU", + "socket:type2_combo:output": "200 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87152600000, + 45.07747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Mormant P+R - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E77317001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88814390000, + 48.61222490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR PRIVAS", + "ref": "FRCPIE6635705", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6635705", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR PRIVAS", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61163900000, + 44.72180100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "description": "La Baule, Parking Escholliers;Easy Charge/PD9O4ON1F6", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHP4279070707317706228;FRECHPPD9O4ON1F6", + "start_date": "2022-12-02", + "network": "Easycharge services;Easy Charge", + "ref": "PD9O4ON1F6;742914" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39456100000, + 47.28203900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue des Batignolles 27", + "amenity": "charging_station", + "ref": "FR*V75*PPX17*09", + "start_date": "2022-08-10", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1709", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32130000000, + 48.88470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LPYWW8B6QN", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "510518", + "charging_station:output": "11 kW", + "opening_hours": "Th,Mo,Tu,We 07:00-17:00,Fr 07:00-16:00", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P993092625782135271" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77214100000, + 49.35462100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAISON DES ENTREPRISES - Dijon", + "ref": "FRTCBP01609", + "owner:ref:FR:SIREN": "383447927", + "start_date": "2023-04-05", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "ref:EU:EVSE": "FRTCBP01609", + "charging_station:output": "22 kW", + "network": "MAISON DES ENTREPRISES DIJON", + "operator:email": "supervision-ev.france@totalenergies.com", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04538900000, + 47.35819200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1933681850546473229", + "ref": "1072752", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLN4MFR9J1Q4W3", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20771100000, + 44.81041200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "BMW - Narbonne", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPEDENAUTOBMW111001", + "operator:email": "support@driveco.com", + "start_date": "2022-09-06", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99224700000, + 43.17268100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Mellac-Route de Quimperlé", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2914700", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58288700000, + 47.90026900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-10-08", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "FENDEILLE - Rue Prosper Estieu", + "ref:EU:EVSE": "FRS11E11138001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94333000000, + 43.27000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "owner:ref:FR:SIREN": "315667410", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lu- Ve 08:30-17:00", + "network": "AMSOM HABITAT - ROYE", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "7.4 kW;22 kW", + "operator": "ZEborne", + "ref:EU:EVSE": "FRZPEE175542;FRZPEE175537;FRZPEE175534;FRZPEE175533", + "description": "BORNE 3 - AMSOM ROYE 7.4kW ;BORNE 4 - AMSOM ROYE 7.4kW ;BORNE 1 - AMSOM ROYE 22kW ;BORNE 2 - AMSOM ROYE - 22kw ", + "ref": "E175542;E175537;E175533;E175534" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77741870000, + 49.70733080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS09E09122002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "FOIX - Allés de Villote", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60952600000, + 42.96436700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PHARBONNIERES", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64649", + "description": "FDE 80/harbonnieres", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67026600000, + 49.84988300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST28713;FRIZFPFAST28711;FRIZFPFAST28712;FRIZFPFAST28721;FRIZFPFAST28722;FRIZFPFAST28723", + "capacity": "3", + "start_date": "2024-08-26", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*287*1*_*_;FR*SOD*S*FAST*287*2*_*_", + "description": "IZIVIA FAST - MCDONALDS - MEYZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02936074890, + 45.76030392244 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "DONGES - Place De La Gare;OuestCharge - Diva Sp - Donges - Gare", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-20;2024-04-24", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44E44052001;FRS44P44052A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07478400000, + 47.31714600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "CRECY-LA-CHAPELLE - Place De La Mairie;Crécy-la-Chapelle / Mairie", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-11-07;2023-05-16", + "ref:EU:EVSE": "FRS77P77142A;FRS77E77142002", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH615ARP522Z2QF17A8J" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90906600000, + 48.85789900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ibis LA TESTE DE BUCH", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000085924", + "description": "Ibis LA TESTE DE BUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13516534686, + 44.61662783640 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-10-29", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E220245;FRS37E220248", + "description": "MODULO - VILLEDOMER - Pkg. rue du Lavoir", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - VILLEDOMER - Pkg. rue du Lavoir", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220245;FRS37E220248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88702100000, + 47.54466700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "description": "CCTLB - Parking Lhuillier-Lunéville", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "23d560c4-6160-5406-a04d-2a880e08f329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49599100000, + 48.59245800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2020-10-15", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRG51PKIPSTA592001", + "description": "Kipsta - Tourcoing", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17293000000, + 50.70878800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "be54f6bb-0840-5a1a-a4e8-568a0378473a", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | SAINT LEONARD DE NOBLAT | Piscine Municipale", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49433500000, + 45.83062900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-05-18", + "network": "SIPPEREC", + "description": "SUCY EN BRIE - 7 Place de la Gare", + "ref:EU:EVSE": "FRSIPE94071001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50868400000, + 48.77112000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "62 kW", + "amenity": "charging_station", + "charging_station:output": "62 kW", + "capacity": "4", + "start_date": "2021-09-07", + "ref:EU:EVSE": "FRCPIE6526885;FRCPIE6526845;FRCPIE6526805;FRCPIE6526915", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6526885;FRCPIE6526845;FRCPIE6526805;FRCPIE6526915", + "description": "LECLERC 06110 PARK AERIEN 1", + "network": "LECLERC 06110 PARK AERIEN 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00121600000, + 43.57243600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/YOTRGWFRUD", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8562090805001580066", + "ref": "559880" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826800000, + 50.12985000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Chancelade | Parking Mairie Rue Andre Maurois", + "ref": "7d92c15f-8f74-54ea-abac-1c85abe6536f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66606700000, + 45.20534100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB42054A", + "operator:email": "bo_dgic@seolis.net", + "description": "Réseau AlterBase - Aiffres - Place René Cassin", + "opening_hours": "24/7", + "start_date": "2016-04-05", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41438100000, + 46.28659530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-11-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS3130017", + "charging_station:output": "22.08 kW", + "description": "Airbus Marignane - parking B03", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23090700000, + 43.43607700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "ref:EU:EVSE": "LFR1116EVCP01;LFR1116EVCP02;LFR1116EVCP03", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "description": "SAINT AVERTIN", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR1116EVCP01;LFR1116EVCP02;LFR1116EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71898700000, + 47.36625000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "414783", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM45P6992688549560434740", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/RG6TILUNOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95514000000, + 47.87808000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ15812;FRA16PWIIZ15811", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "GUILLAUMES - PARKING PLACE DES COMBATTANTS", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*158*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2022-08-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82952600000, + 43.99986200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "368839", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5209602577694403479", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GS6LRLDFED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592000000, + 44.82620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Picard - Groslay", + "ref:EU:EVSE": "FRPD1PBDMGRO", + "start_date": "2024-01-04", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35922894477, + 48.98493968183 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/K4LDSG7HH6", + "ref:EU:EVSE": "FREBNP3250904155898763025", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "741093", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80112400000, + 45.57460700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-12-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPRSAAC", + "operator": "ELECTRA", + "description": "Ramonville-Saint-Agne - Action" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48273200000, + 43.53588400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E13202011;FRP07E132020111;FRP07E132020112;FRP07E132020113", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "34", + "operator": "Bouygues E&S", + "description": "MARSEILLE - Vieux Port Mucem", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36276580000, + 43.29852220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CGED NOISY LE SEC", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6708365", + "network": "CGED NOISY LE SEC", + "ref": "FRCPIE6708365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44281800000, + 48.89486000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "description": "La Baule, Parking Agen", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "network": "Easycharge services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHPMLWOEU75YT", + "ref": "MLWOEU75YT", + "start_date": "2022-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41186401000, + 47.28393813000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A5 Chateauvillain Val Marnay", + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP101104", + "start_date": "2022-12-02", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95913900000, + 48.05740500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892551", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6747247334037509231", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/LLKMDIYHE1NJPT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96894500000, + 47.84283700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX0810", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "description": "Paris | Rue de Courcelles 69", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX08*10", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30449350000, + 48.87835100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "294464", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PPMMYUQ", + "description": "Freshmile France/PMMYUQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96526000000, + 49.01180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Ajaccio - Parking Public - Mezzavia", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPINGEOPARKINGMEZZAVIA200901", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.77707800000, + 41.95180800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SYDED/doubshyper", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS25PDOUBSHYPER", + "network": "SYDED", + "opening_hours": "24/7", + "ref": "86900", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34236000000, + 46.92260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E201975", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "network": "MODULO - APREMONT - Pkg. de l'église", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E201975", + "description": "MODULO - APREMONT - Pkg. de l'église", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04627700000, + 46.90756800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78311008", + "start_date": "2024-10-03", + "description": "HOUILLES - Gymnase Brondani - Rue du Président Kennedy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17763190000, + 48.92263320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-25;2024-01-10", + "operator": "IZIVIA", + "description": "QPARK - CHAMBERY - STADE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRQPKPQPRK11581;FRQPKPQPRK11571;FRQPKPQPRK11541;FRQPKPQPRK11521;FRQPKPQPRK115191;FRQPKPQPRK115141;FRQPKPQPRK115121;FRQPKPQPRK11511;FRQPKPQPRK115101;FRQPKPQPRK115111;FRQPKPQPRK115131;FRQPKPQPRK115151;FRQPKPQPRK115161;FRQPKPQPRK115171;FRQPKPQPRK115181;FRQPKPQPRK115201;FRQPKPQPRK115211;FRQPKPQPRK11531;FRQPKPQPRK11551;FRQPKPQPRK11561;FRQPKPQPRK11591", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*115*9*_*_;FR*SOD*S*QPRK*115*7*_*_;FR*SOD*S*QPRK*115*5*_*_;FR*SOD*S*QPRK*115*19*_*_;FR*SOD*S*QPRK*115*18*_*_;FR*SOD*S*QPRK*115*16*_*_;FR*SOD*S*QPRK*115*15*_*_;FR*SOD*S*QPRK*115*14*_*_;FR*SOD*S*QPRK*115*13*_*_;FR*SOD*S*QPRK*115*12*_*_;FR*SOD*S*QPRK*115*10*_*_;FR*SOD*S*QPRK*115*1*_*_;FR*SOD*S*QPRK*115*11*_*_;FR*SOD*S*QPRK*115*17*_*_;FR*SOD*S*QPRK*115*20*_*_;FR*SOD*S*QPRK*115*2*_*_;FR*SOD*S*QPRK*115*21*_*_;FR*SOD*S*QPRK*115*3*_*_;FR*SOD*S*QPRK*115*4*_*_;FR*SOD*S*QPRK*115*6*_*_;FR*SOD*S*QPRK*115*8*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90662900000, + 45.57406100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81042001", + "operator": "Bouygues E&S", + "description": "BURLATS - Place Du 8 Mai 1945", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31754400000, + 43.63575300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mionnay Chatanay;IONITY Mionnay Saint-Galmier", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;7", + "network": "Mionnay Chatanay;IONITY GMBH", + "ref:EU:EVSE": "FRIOYE404452;FRIOYE404451;FRIONE404000;FRIOYE404401;FRIOYE404402;FRIOYE404404;FRIOYE404405;FRIOYE404453", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "ref": "FRIOYE404452;FRIOYE404451;FRIONE404000;FRIOYE404401;FRIOYE404402;FRIOYE404404;FRIOYE404405;FRIOYE404453", + "start_date": "2020-02-10;2020-09-12", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89403800000, + 45.88990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-22;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44164A;FRS44E44164001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SAINT-HILAIRE-DE-CHALEONS - Place Éloi Guitteny;OuestCharge - Diva Sp - Saint-Hilaire-De-Chaleons - Guitteny", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86705200000, + 47.10402300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "SAINT-CYR-SUR-MORIN - Avenue Daniel Simon;St-Cyr-sur-Morin ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61XCEQM4H8763DKJRV", + "ref:EU:EVSE": "FRS77P77405A;FRS77E77405001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-09-27;2016-02-23", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18528000000, + 48.90621900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF078601", + "capacity": "8", + "owner:ref:FR:SIREN": "531680785;531680786;531680784;531680779;531680780;531680781;531680782;531680783", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "start_date": "2022-08-03;2022-07-01", + "opening_hours": "24/7", + "ref": "FRHPCPNF078601", + "network": "TotalEnergies Charge Rapide", + "description": "REL.ARDENNES-WOINIC", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50420000000, + 49.59310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2020-06-09", + "capacity": "4", + "network": "MOBIVE - SYDEC 40", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS40PMB408613;FRS40PMB408611;FRS40PMB408612;FRS40PMB408614", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "description": "SAINTE MARIE DE GOSSE - PLACE SALLE ISIDORE", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23767800000, + 43.55631300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYPKBZP", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Lorient - Place Alsace Lorraine", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-10-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36112100000, + 47.74982000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON17322;FRGLYPLYON17312;FRGLYPLYON17311;FRGLYPLYON17321", + "start_date": "2022-06-22", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*173*2*_*_;FR*SOD*S*LYON*173*1*_*_", + "operator:email": "sav@izivia.com", + "description": "VIL01 - GRATTE-CIEL - DEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87510100000, + 45.76973000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P91027*B", + "ref": "1121508", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP91027B", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38747200000, + 48.70229200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPBYMYCAR386001", + "amenity": "charging_station", + "start_date": "2020-02-06", + "charging_station:output": "22.08 kW", + "description": "Opel - ByMyCar - Fontaine", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68137000000, + 45.19020100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6590225", + "ref": "FRCPIE6590225", + "network": "SONEPAR AED CROLLES", + "description": "SONEPAR AED CROLLES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88298300000, + 45.28490400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/YBRK29KKAC", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P402006694800233179", + "ref": "446870" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855600000, + 48.49861000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "390661b8-7a4e-5ced-9d3c-f3473654b61b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Audenge | Parking Rue des Hortensias" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01405200000, + 44.68238100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95268001", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GARGE LES GONESSE - Parking Verdun – Opposé au 7 rue de Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41208900000, + 48.96763300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLPEVCARSKLPNX", + "description": "NAILLOUX", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-09-29", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60857000000, + 43.38722000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ETAIN", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4054EVCP03", + "ref:EU:EVSE": "LFR4054EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64947500000, + 49.21733000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PZK2VPLYFXC", + "description": "Aix-En-Provence, Avenue Winston Churchill", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44634900000, + 43.51923700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402530", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/JGEOPKPRGO", + "ref:EU:EVSE": "FRS89P2795156890979204440" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59036000000, + 47.67741900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*292*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "charging_station:output": "22 kW", + "description": "SAINT-RAPHAEL - PARKING TRAVERSE JEAN MOULIN", + "ref:EU:EVSE": "FRA16PWIIZ29212;FRA16PWIIZ29211", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78026790000, + 43.42856270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/E9D0SEHF8O", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "578852", + "ref:EU:EVSE": "FRFR1P2429028668140182783", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52577500000, + 43.84286900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-23", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Novotel - Bagnolet", + "ref:EU:EVSE": "FRPD1PNOVBGL", + "socket:type2_combo:output": "24 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41617940000, + 48.86333030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85979;UDCPRA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPUDCPRA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Galmier, Boulevard Gabriel Cousin;Réseau eborn/UDCPRA", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31657000000, + 45.59210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref": "1019601", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "ref:EU:EVSE": "FREVZP3603564768139302350", + "opening_hours": "24/7", + "network": "EVzen", + "description": "EVzen/6A6D4D31-45B3-4FC8-9068-67B2BFAD56BA", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32567700000, + 47.60662000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref": "FR*SOD*S*OTHR*611*5*_*_;FR*SOD*S*OTHR*611*3*_*_;FR*SOD*S*OTHR*611*2*_*_;FR*SOD*S*OTHR*611*1*_*_;FR*SOD*S*OTHR*611*4*_*_", + "start_date": "2023-03-29;2023-03-28", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "description": "FFF - CLAIREFONTAINE ESPACE HIDALGO", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "ref:EU:EVSE": "FROTHPOTHR61132;FROTHPOTHR61112;FROTHPOTHR61111;FROTHPOTHR61121;FROTHPOTHR61122;FROTHPOTHR61131;FROTHPOTHR61141;FROTHPOTHR61151", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92393800000, + 48.61452700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "96089", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPQOFKA776QB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/QOFKA776QB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49469000000, + 45.26926800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref": "ZYL6ZBTURA", + "ref:EU:EVSE": "FREBNPZYL6ZBTURA", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Digne-Les-Bains, Plan d'eau", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21490165000, + 44.08017094000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL LE TOUQUET 3 ÉTOILES", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP122046", + "operator:email": "support@greenflux.com", + "start_date": "2024-05-14", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62453500000, + 50.50954800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLOSSG85FR1R7Q", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2599319920298603310", + "network": "Freshmile France", + "ref": "1017015", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58360200000, + 47.80501500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX15*06", + "ref:EU:EVSE": "FRV75PPX1506", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Gerbert 11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29864530000, + 48.83957830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/NKCESQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "120674", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PNKCESQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36831000000, + 48.12810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMOBYDICK201371", + "description": "Hôtel Moby Dick - Porto-Vecchio", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-04-15", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27147900000, + 41.52488400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-05-02", + "ref:EU:EVSE": "FRS27PPTAUDEMERMEDIATHE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900011", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51522900000, + 49.35841000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "etables sur Mer-Place Jean Heurtel", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22055002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83390500000, + 48.62648000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE MESNIL-LE-ROI - Rue Jules Rein", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY14E78396002", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12306000000, + 48.92778000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Verbaere_Peronne", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-12-02", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE184", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92744300000, + 49.93977200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1153167", + "ref:EU:EVSE": "FRWATP8344608400125478996", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLB6SHQGDJ", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60990300000, + 43.35767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE403253;FRIOYE403252;FRIOYE403251;FRIOYE403201;FRIOYE403202;FRIOYE403203;FRIOYE403204;FRIOYE403205;FRIOYE403206", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Bréguières Nord", + "opening_hours": "24/7", + "description": "Bréguières Nord", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2019-08-24", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE403253;FRIOYE403252;FRIOYE403251;FRIOYE403201;FRIOYE403202;FRIOYE403203;FRIOYE403204;FRIOYE403205;FRIOYE403206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03652099000, + 43.59198274000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDED52/LLTZJNHV02GMV1", + "ref": "1035333", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS52P8344684552622873855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94566700000, + 48.64262700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "LOURDES - Rue Ampère ZI de SAUX", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65286009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02947100000, + 43.12650350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE002202;FRIENE002201", + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Glonville II", + "network": "Glonville II", + "ref:EU:EVSE": "FRIENE002202;FRIENE002201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70398900000, + 48.46487600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "POUSSAN - Rue Du College", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS34E34213001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66648611111, + 43.48648890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SE61-ALEN-005", + "operator": "TEVGO", + "description": "ALENCON - Place du Cdt D.Desmeulles", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61001E", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-02-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08580520000, + 48.43265140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6916484570275893321", + "opening_hours": "24/7", + "ref": "1084782", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLQ6N2JRD2GSKB", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78609600000, + 45.82147300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "79774", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "ref:EU:EVSE": "FRS31PHQDVPR", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "description": "Roulez Électrique En Haute-Garonne/HQDVPR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01184000000, + 43.20020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Ford - Nîmes", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD309001", + "charging_station:output": "22.08 kW", + "start_date": "2020-12-10", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-17:45, Tu 08:00-17:45, We 08:00-17:45, Th 08:00-17:45, Fr 08:00-17:45, Sa 09:00-17:45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33661500000, + 43.81686800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCARP91552A", + "start_date": "2024-04-29", + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRCARP91552A", + "network": "Carrefour Supply Chaine - Saint Germain les Arpajon", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "7.4 kW", + "description": "Carrefour Supply Chaine - Saint Germain les Arpajon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28262693184, + 48.59303385665 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "ref": "627644eb-6bb8-4745-a77f-f7ae247ea5ef", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "description": "CAMPING LES RAMIERES 26", + "ref:EU:EVSE": "FRLUMERAMIERES11", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25000000000, + 44.40000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Talmont sur Gironde | Avenue de l'Estuaire", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "be986425-cf46-5f99-962c-acdf3d05a550", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90605800000, + 45.53614800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marquis de la guintre - Courtils", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-07-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE50CABA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44486800000, + 48.62515600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRBHMP3494848492642161048", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "ref": "767313", + "description": "BornEco/63dcf0bade530c3ec2928d14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01168600000, + 48.55730600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SARREBOURG Niderviller", + "ref": "LFR2819EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2819EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07564200000, + 48.73782000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PN9PFWXWKQI", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Vernegues, Route du Château Bas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20500500000, + 43.68929900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "402623", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P1112093565162084939", + "charging_station:output": "22 kW", + "description": "SDEY/SLXFPOSIPV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34141200000, + 48.17470700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P30133*LAS*PRIADES", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "description": "PARKING PRIADES LES ANGLES", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2020-03-02", + "ref:EU:EVSE": "FR55CP30133LASPRIADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76842500000, + 43.95842500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLJ5LLDLZ2QNJT", + "ref:EU:EVSE": "FRFR1P5779389634059015675", + "ref": "892347", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46478900000, + 49.26678200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2024-09-27;2024-10-02", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUMNT", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "description": "U Express Monteux (84)", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99347826945, + 44.03458289701 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/N0APSWIASX;Le Pertuis, Parking de la mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP6946029460074855104;FREBNPN0APSWIASX", + "start_date": "2020-11-20", + "ref": "N0APSWIASX;346826" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05984000000, + 45.09719000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Fastned Aire de Gevrey - Chambertin Ouest", + "description": "Fastned Aire de Gevrey - Chambertin Ouest", + "ref:EU:EVSE": "FRFASE33026", + "operator": "Fastned France", + "capacity": "8", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "start_date": "2021-11-29", + "opening_hours": "24/7", + "ref": "FRFASE33026", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00201700000, + 47.21672200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING SANDAYA - SAINT-JUST-LUZAC", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR9212;FROTHPOTHR9211", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*92*1*_*_", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06023200000, + 45.81138300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/ZVTXA1HEAM", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30473", + "ref:EU:EVSE": "FREBNPZVTXA1HEAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86901900000, + 45.92392600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/TL1WGTVEO9", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPTL1WGTVEO9", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "48415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90463800000, + 44.90588000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ASSOCIATION LE BOIS NOIR / ELORN IMMOBILIER - LANDERNEAU", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "ASSOCIATION LE BOIS NOIR / ELORN IMMOBILIER", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR42461;FROTHPOTHR42451;FROTHPOTHR42441;FROTHPOTHR42411;FROTHPOTHR42421;FROTHPOTHR42431", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*424*5*_*_;FR*SOD*S*OTHR*424*2*_*_;FR*SOD*S*OTHR*424*1*_*_;FR*SOD*S*OTHR*424*3*_*_;FR*SOD*S*OTHR*424*4*_*_;FR*SOD*S*OTHR*424*6*_*_", + "start_date": "2022-07-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26681350000, + 48.44674910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5293602806192131967", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/YSYP1FUAQD", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "761481", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41141600000, + 44.43387100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP30379", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Roye, France", + "capacity": "32", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77349400000, + 49.70946500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "735174", + "description": "Freshmile France/NEI1A4E2LR", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4631769980587346025", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46579600000, + 43.54076600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "b75b6e4a-cd3d-5762-87f0-14d15d75d596", + "operator": "271__TDEC", + "description": "ECOLE VALENTIN-Rue de la combe du Puits" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99373300000, + 47.27199200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MDMC6YBZXB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4386609882674464796", + "operator": "Freshmile | FR*FR1", + "ref": "578918" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50862900000, + 46.00356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P8373206604839420058", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461964", + "description": "MobiSDEC/UEPCJ1ONBV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13875700000, + 49.40237400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP009E6E;Zephyre/LP009E78", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P6172765640120899467;FRZP1P2367813428528399144", + "operator:email": "sav@zephyre.fr", + "ref": "682964;682973" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23867900000, + 44.45167900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-01", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRROSE411", + "description": "EstaminetEauQuiGnole", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71627400000, + 50.19933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78624003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TRIEL-SUR-SEINE - Rue Cadot", + "start_date": "2024-07-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00119500000, + 48.98136700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-09;2024-05-24", + "ref:EU:EVSE": "FRS53E53255001;FRS53P53255A", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "description": "SAINTE-SUZANNE - Place Des Charrieres;OuestCharge - Diva Sp - Sainte-Suzanne - Charrieres", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35148300000, + 48.09884800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66164002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "RIVESALTES - Avenue De La Mourere", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87643800000, + 42.76810200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IKEA*113*6*_*_;FR*SOD*S*IKEA*113*4*_*_;FR*SOD*S*IKEA*113*3*_*_;FR*SOD*S*IKEA*113*2*_*_;FR*SOD*S*IKEA*113*19*_*_;FR*SOD*S*IKEA*113*16*_*_;FR*SOD*S*IKEA*113*14*_*_;FR*SOD*S*IKEA*113*13*_*_;FR*SOD*S*IKEA*113*12*_*_;FR*SOD*S*IKEA*113*11*_*_;FR*SOD*S*IKEA*113*1*_*_;FR*SOD*S*IKEA*113*10*_*_;FR*SOD*S*IKEA*113*15*_*_;FR*SOD*S*IKEA*113*17*_*_;FR*SOD*S*IKEA*113*18*_*_;FR*SOD*S*IKEA*113*20*_*_;FR*SOD*S*IKEA*113*5*_*_;FR*SOD*S*IKEA*113*7*_*_;FR*SOD*S*IKEA*113*8*_*_;FR*SOD*S*IKEA*113*9*_*_", + "ref:EU:EVSE": "FRIKAPIKEA11391;FRIKAPIKEA11381;FRIKAPIKEA11371;FRIKAPIKEA11361;FRIKAPIKEA11351;FRIKAPIKEA11341;FRIKAPIKEA11331;FRIKAPIKEA113201;FRIKAPIKEA113191;FRIKAPIKEA113111;FRIKAPIKEA113101;FRIKAPIKEA11311;FRIKAPIKEA113121;FRIKAPIKEA113131;FRIKAPIKEA113141;FRIKAPIKEA113151;FRIKAPIKEA113161;FRIKAPIKEA113171;FRIKAPIKEA113181;FRIKAPIKEA11321", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "IKEA FRANCONVILLE - ZONE CLIENTS 1", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21247900000, + 48.98708900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35188001B1", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "MONTFORT SUR MEU - 22 place de la gare ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95005600000, + 48.13846700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "ref:EU:EVSE": "FRS63P63006B", + "opening_hours": "24/7", + "ref": "518216", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG 63/FR*S63*P63006*B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04208300000, + 45.33291800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/SJWECFVZZW", + "ref": "694316", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4652333226394676992" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06473400000, + 45.34178500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PFHPGXB", + "ref": "FHPGXB", + "start_date": "2017-01-16", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "description": "Montastruc-la-Conseillère", + "opening_hours": "24/7", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59226000000, + 43.71700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUBERVILLIERS - Rue De Presles", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-01-13", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93001003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39453478651, + 48.90857722442 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18", + "description": "Suzuki Buchelay - 78200 - 1", + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "Suzuki Buchelay - 78200 - 1", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "FRCG0E000772;FRCG0E000771;FRCG0E000773;FRCG0E000774;FRCG0E000775", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000772;FRCG0E000771;FRCG0E000773;FRCG0E000774;FRCG0E000775" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67510400000, + 48.99184900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*206*1*_*_", + "start_date": "2023-03-12", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRM06PNICE20612;FRM06PNICE20611", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "SAINT-ETIENNE-DE-TINEE - PARKING POSTE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92484604397, + 44.25518266267 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Villereal | Parking Atelier Technique", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "07fdcb99-7513-5b8a-a470-9e66babbef53", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74570000000, + 44.63833000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*343*1*_*_", + "description": "SIGEIF - 32 RUE FLAMMARION PARKING PLAINE DU LUAT - EAUBONNE", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE34311;FRSIGPSIGE34312", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27636000000, + 49.00220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76095001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BIHOREL - Rue Joseph Roy", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11834200000, + 49.45621000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "VIEUX CONDE - Jaurés", + "ref": "LFR3950EVCP04;LFR3950EVCP03;LFR3950EVCP02;LFR3950EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3950EVCP04;LFR3950EVCP03;LFR3950EVCP02;LFR3950EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57307200000, + 50.45696900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "1364b79f-840b-5a42-9f41-2bb2431a4e22", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "description": "MOBIVE | Moutier-Malcard- Place des Tilleuils" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94566500000, + 46.39383700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "102398", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/chateau", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PCHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10541400000, + 44.03817000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "ref": "FR*55C*P83510*SAV*FLUST1ER", + "description": "PARKING DU SQUARE FUSTIER - SAINT ANTONIN DU VAR", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83510SAVFLUST1ER", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28853900000, + 43.50672400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3662EVCP01;LFR3662EVCP02;LFR3662EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "ISSOUDUN Pomme", + "ref": "LFR3662EVCP01;LFR3662EVCP02;LFR3662EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01063500000, + 46.95506500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Dax", + "owner:ref:FR:SIREN": "891118473", + "capacity": "19", + "ref:EU:EVSE": "FRPD1PITMDAX", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW;60 kW;188 kW", + "start_date": "2023-05-04;2023-12-12", + "charging_station:output": "100 kW;187.5 kW;60 kW;50 kW;22 kW;188 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04997099093, + 43.69134069064 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85766;VHTXXUOXPG", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPVHTXXUOXPG", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Faverges, Aire De Repos;Réseau eborn/VHTXXUOXPG", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27037000000, + 45.75620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "e-Totem - Fasthôtel Gerzat", + "ref": "FRETIP63164A", + "start_date": "2024-01-10", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "capacity": "2;5", + "ref:EU:EVSE": "FRETIP63164A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15725419803, + 45.84120888197 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Nantes Sud 2 - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E44109010;FRP01E441090101", + "start_date": "2023-10-23", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53676900000, + 47.21666800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Bray-Dunes", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-12", + "ref:EU:EVSE": "FRDRVPCRFMKT591231", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52116400000, + 51.06312500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Blagnac - Hôtel Première Classe Toulouse Aéroport", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLAPC", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37510300000, + 43.63754800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CENTRAKOR - PARKING SOUS-SOL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR54041;FROTHPOTHR54021;FROTHPOTHR54011;FROTHPOTHR54031", + "start_date": "2021-11-08", + "network": "CENTRAKOR", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*540*4*_*_;FR*SOD*S*OTHR*540*1*_*_;FR*SOD*S*OTHR*540*2*_*_;FR*SOD*S*OTHR*540*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50243000000, + 43.63716600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAIRIE SMDL GROUPE SCOLAIRE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6737755", + "start_date": "2023-06-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6737755", + "network": "MAIRIE SMDL GROUPE SCOLAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45356600000, + 42.74284300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/OJUO57LEEY", + "ref:EU:EVSE": "FRFR1P2383223578829948537", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892899", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10536200000, + 49.23762200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRV05E67411001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROSHEIM - Parking Gare", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49232000000, + 48.50506600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6329537758687819607", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "description": "Freshmile France/OVRR1M5NIJ", + "amenity": "charging_station", + "ref": "741030", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152700000, + 50.60986000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP5670", + "opening_hours": "24/7", + "description": "Tesla Supercharger Aire de Vidauban Sud, France", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45117700000, + 43.41383200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "694367", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XHQSUJ0P53", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3500894368437568106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93282600000, + 45.69722500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20730600000, + 50.68491800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P2177614222471798377", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457515", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/MNMLPFSE3R", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07314600000, + 49.07160900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MILLAU - Rue Condamine Parking Condamine", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-08", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12145001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07602400000, + 44.10077100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4LR8MA3S0K", + "ref": "880179", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "ref:EU:EVSE": "FRWA4P6229738039157402585", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11805500000, + 49.48386600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49267A;FRS49E49267001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-06;2021-04-19;2024-04-03", + "description": "SAINT-BARTHELEMY-D'ANJOU - Place du Marché;OuestCharge - Diva Sp - Saint-Barthelemy-d'Anjou - Marche", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49428200000, + 47.46826400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81065009", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-05-31;2021-05-28", + "charging_station:output": "50 kW;43 kW", + "description": "CASTRES - HOPITAL - Centre Hospitalier - Parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26279900000, + 43.56672000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH17E59249003", + "start_date": "2020-01-28", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FOURMIES - Rue de Grenoble" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05350000000, + 50.01519440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2021-04-23", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44211A;FRS44E44211001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - La Turballe - Blanc;LA TURBALLE - Avenue Du Pays Blanc", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.50716100000, + 47.34805100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRS63P63370A", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "description": "SIEG 63/FR*S63*P63370*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "charging_station:output": "43 kW;50 kW;25 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "25 kW;50 kW", + "ref": "518435" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70535000000, + 45.64647600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ANZIN - ZA Rives Créatives de l'Escaut", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH03E59014002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52082700000, + 50.37334400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Ceyras - Parking Mairie", + "start_date": "2024-06-26", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34076001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45880200000, + 43.64366600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GENTILLY - Rue Benoit Malon", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94037002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34102934233, + 48.81430793178 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "Hôtel B&B Bordeaux Mios", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP90281411", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82737300000, + 44.66033400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Audrix | le Bourg (Parking Piscine)", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "e30123c1-aed5-5b78-a061-9b7350ed8edb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94714200000, + 44.87957400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-22", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE44811;FRSIGPSIGE44812", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 92 AVENUE JEAN JAURES - VITRY SUR SEINE", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*448*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39654960000, + 48.79342780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9006912;FRALLEGO9006762;FRALLEGO9006761;FRALLEGO9004362;FRALLEGO9004361;FRALLEGO9004331;FRALLEGO9004332;FRALLEGO9006911", + "amenity": "charging_station", + "network": "Allego Carrefour Epinal", + "description": "Allego Carrefour Epinal", + "ref": "FRALLEGO9006912;FRALLEGO9006762;FRALLEGO9006761;FRALLEGO9004362;FRALLEGO9004361;FRALLEGO9004331;FRALLEGO9004332;FRALLEGO9006911", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47752000000, + 48.19741300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4013EVCP02;LFR4013EVCP01;LFR4013EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4013EVCP02;LFR4013EVCP01;LFR4013EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "PORTET SUR GARONNE - Espagne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40382200000, + 43.52843600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Garlin | Place Marcadieu", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "359304dc-8981-51de-ba67-1329a9484ad9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27373300000, + 43.55858600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST MARTIN DE CASTILLON - Route de Viens", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "eeb2048b-4ea3-5693-877e-33aacb4d9f48", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51266000000, + 43.86007800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78517003", + "description": "RAMBOUILLET - Rue Gambetta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82438160000, + 48.64752880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "ref": "LFR3599EVCP04;LFR3599EVCP03;LFR3599EVCP02;LFR3599EVCP01;LFR3599EVCP05", + "ref:EU:EVSE": "LFR3599EVCP04;LFR3599EVCP03;LFR3599EVCP02;LFR3599EVCP01;LFR3599EVCP05", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "CHASSE SUR RHONE Roues", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80588000000, + 45.57681400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PJARGRT", + "opening_hours": "24/7", + "description": "Jardiland Gueret (23)", + "start_date": "2024-09-30;2024-10-01", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88545928700, + 46.18239894888 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Cheylas, Rue du Stade;Réseau eborn/EMAQAISOIN", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPEMAQAISOIN", + "ref": "30170;EMAQAISOIN", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99027000000, + 45.37190100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "capacity": "16", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "E-VADEA", + "ref:EU:EVSE": "FREVAP88440A", + "description": "E-VADEA/FR*EVA*P88440*A", + "charging_station:output": "300 kW;50 kW;43 kW;150 kW;22 kW", + "ref": "680735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041200000, + 48.26813300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCTKLAG", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-28", + "charging_station:output": "50 kW;100 kW;22 kW;180 kW", + "description": "Centrakor - L'Aigle", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;180 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61759020000, + 48.76476580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Commentry", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-08-14", + "ref:EU:EVSE": "FRDRVPCRFMKT036001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74301000000, + 46.29519200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRESEPS42218BA", + "operator:email": "contact@e-totem.fr", + "start_date": "2021-06-22", + "ref": "FRESEPS42218BA", + "description": "SEMOB Technopole - Presse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39763640000, + 45.45722740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-01-11;2023-02-13;2022-12-18;2023-01-10", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref:EU:EVSE": "FROTHPIZIG60081;FROTHPIZIG600241;FROTHPIZIG60021;FROTHPIZIG600191;FROTHPIZIG600181;FROTHPIZIG600171;FROTHPIZIG600131;FROTHPIZIG60011;FROTHPIZIG59961;FROTHPIZIG59951;FROTHPIZIG59941;FROTHPIZIG59931;FROTHPIZIG599261;FROTHPIZIG599251;FROTHPIZIG599241;FROTHPIZIG599231;FROTHPIZIG599221;FROTHPIZIG599211;FROTHPIZIG599201;FROTHPIZIG599191;FROTHPIZIG599161;FROTHPIZIG599151;FROTHPIZIG599141;FROTHPIZIG599131;FROTHPIZIG599111;FROTHPIZIG59911;FROTHPIZIG59871;FROTHPIZIG59851;FROTHPIZIG59841;FROTHPIZIG59831;FROTHPIZIG598221;FROTHPIZIG598211;FROTHPIZIG59821;FROTHPIZIG598201;FROTHPIZIG598191;FROTHPIZIG598181;FROTHPIZIG598171;FROTHPIZIG598161;FROTHPIZIG598151;FROTHPIZIG598141;FROTHPIZIG598131;FROTHPIZIG598121;FROTHPIZIG598111;FROTHPIZIG598101;FROTHPIZIG59791;FROTHPIZIG59741;FROTHPIZIG59731;FROTHPIZIG597281;FROTHPIZIG597271;FROTHPIZIG597241;FROTHPIZIG597231;FROTHPIZIG597221;FROTHPIZIG597211;FROTHPIZIG59721;FROTHPIZIG597191;FROTHPIZIG597161;FROTHPIZIG597151;FROTHPIZIG597121;FROTHPIZIG597111;FROTHPIZIG59711;FROTHPIZIG597101;FROTHPIZIG59661;FROTHPIZIG59631;FROTHPIZIG596241;FROTHPIZIG596231;FROTHPIZIG596221;FROTHPIZIG596161;FROTHPIZIG596151;FROTHPIZIG596141;FROTHPIZIG596131;FROTHPIZIG596121;FROTHPIZIG596111;FROTHPIZIG59611;FROTHPIZIG59591;FROTHPIZIG595261;FROTHPIZIG595251;FROTHPIZIG595241;FROTHPIZIG595231;FROTHPIZIG595221;FROTHPIZIG59521;FROTHPIZIG595181;FROTHPIZIG595161;FROTHPIZIG595151;FROTHPIZIG595141;FROTHPIZIG595131;FROTHPIZIG595121;FROTHPIZIG59511;FROTHPIZIG595101;FROTHPIZIG595111;FROTHPIZIG595171;FROTHPIZIG595191;FROTHPIZIG595201;FROTHPIZIG595211;FROTHPIZIG595271;FROTHPIZIG59531;FROTHPIZIG59541;FROTHPIZIG59551;FROTHPIZIG59561;FROTHPIZIG59571;FROTHPIZIG59581;FROTHPIZIG596101;FROTHPIZIG596171;FROTHPIZIG596181;FROTHPIZIG596191;FROTHPIZIG596201;FROTHPIZIG59621;FROTHPIZIG596211;FROTHPIZIG59641;FROTHPIZIG59651;FROTHPIZIG59671;FROTHPIZIG59681;FROTHPIZIG59691;FROTHPIZIG597131;FROTHPIZIG597141;FROTHPIZIG597171;FROTHPIZIG597181;FROTHPIZIG597201;FROTHPIZIG597251;FROTHPIZIG597261;FROTHPIZIG59751;FROTHPIZIG59761;FROTHPIZIG59771;FROTHPIZIG59781;FROTHPIZIG59811;FROTHPIZIG598231;FROTHPIZIG598241;FROTHPIZIG59861;FROTHPIZIG59881;FROTHPIZIG59891;FROTHPIZIG599101;FROTHPIZIG599121;FROTHPIZIG599171;FROTHPIZIG599181;FROTHPIZIG59921;FROTHPIZIG599271;FROTHPIZIG59971;FROTHPIZIG59981;FROTHPIZIG59991;FROTHPIZIG600101;FROTHPIZIG600111;FROTHPIZIG600121;FROTHPIZIG600141;FROTHPIZIG600151;FROTHPIZIG600161;FROTHPIZIG600201;FROTHPIZIG600211;FROTHPIZIG600221;FROTHPIZIG600231;FROTHPIZIG60031;FROTHPIZIG60041;FROTHPIZIG60051;FROTHPIZIG60061;FROTHPIZIG60071;FROTHPIZIG60091", + "description": "CNPE CATTENOM - CHADWICK 3-3;CNPE CATTENOM - CHADWICK 1-1;CNPE CATTENOM - CHADWICK 1;CNPE CATTENOM - CHADWICK 2;CNPE CATTENOM - CHADWICK 2-2;CNPE CATTENOM - CHADWICK 3", + "ref": "FR*SOD*S*IZIG*600*9*_*_;FR*SOD*S*IZIG*600*8*_*_;FR*SOD*S*IZIG*600*6*_*_;FR*SOD*S*IZIG*600*5*_*_;FR*SOD*S*IZIG*600*4*_*_;FR*SOD*S*IZIG*600*24*_*_;FR*SOD*S*IZIG*600*22*_*_;FR*SOD*S*IZIG*600*21*_*_;FR*SOD*S*IZIG*600*2*_*_;FR*SOD*S*IZIG*600*13*_*_;FR*SOD*S*IZIG*600*12*_*_;FR*SOD*S*IZIG*600*11*_*_;FR*SOD*S*IZIG*600*10*_*_;FR*SOD*S*IZIG*599*9*_*_;FR*SOD*S*IZIG*599*8*_*_;FR*SOD*S*IZIG*599*7*_*_;FR*SOD*S*IZIG*599*5*_*_;FR*SOD*S*IZIG*599*3*_*_;FR*SOD*S*IZIG*599*27*_*_;FR*SOD*S*IZIG*599*26*_*_;FR*SOD*S*IZIG*599*23*_*_;FR*SOD*S*IZIG*599*22*_*_;FR*SOD*S*IZIG*599*21*_*_;FR*SOD*S*IZIG*599*20*_*_;FR*SOD*S*IZIG*599*18*_*_;FR*SOD*S*IZIG*599*15*_*_;FR*SOD*S*IZIG*599*14*_*_;FR*SOD*S*IZIG*599*13*_*_;FR*SOD*S*IZIG*599*1*_*_;FR*SOD*S*IZIG*598*7*_*_;FR*SOD*S*IZIG*598*6*_*_;FR*SOD*S*IZIG*598*22*_*_;FR*SOD*S*IZIG*598*2*_*_;FR*SOD*S*IZIG*598*20*_*_;FR*SOD*S*IZIG*598*18*_*_;FR*SOD*S*IZIG*598*17*_*_;FR*SOD*S*IZIG*598*16*_*_;FR*SOD*S*IZIG*598*14*_*_;FR*SOD*S*IZIG*598*13*_*_;FR*SOD*S*IZIG*598*1*_*_;FR*SOD*S*IZIG*597*9*_*_;FR*SOD*S*IZIG*597*8*_*_;FR*SOD*S*IZIG*597*7*_*_;FR*SOD*S*IZIG*597*5*_*_;FR*SOD*S*IZIG*597*4*_*_;FR*SOD*S*IZIG*597*3*_*_;FR*SOD*S*IZIG*597*27*_*_;FR*SOD*S*IZIG*597*2*_*_;FR*SOD*S*IZIG*597*20*_*_;FR*SOD*S*IZIG*597*19*_*_;FR*SOD*S*IZIG*597*18*_*_;FR*SOD*S*IZIG*597*16*_*_;FR*SOD*S*IZIG*597*13*_*_;FR*SOD*S*IZIG*597*12*_*_;FR*SOD*S*IZIG*596*9*_*_;FR*SOD*S*IZIG*596*6*_*_;FR*SOD*S*IZIG*596*2*_*_;FR*SOD*S*IZIG*596*20*_*_;FR*SOD*S*IZIG*596*19*_*_;FR*SOD*S*IZIG*596*18*_*_;FR*SOD*S*IZIG*596*16*_*_;FR*SOD*S*IZIG*596*12*_*_;FR*SOD*S*IZIG*596*11*_*_;FR*SOD*S*IZIG*596*10*_*_;FR*SOD*S*IZIG*595*9*_*_;FR*SOD*S*IZIG*595*8*_*_;FR*SOD*S*IZIG*595*7*_*_;FR*SOD*S*IZIG*595*6*_*_;FR*SOD*S*IZIG*595*27*_*_;FR*SOD*S*IZIG*595*26*_*_;FR*SOD*S*IZIG*595*25*_*_;FR*SOD*S*IZIG*595*24*_*_;FR*SOD*S*IZIG*595*2*_*_;FR*SOD*S*IZIG*595*20*_*_;FR*SOD*S*IZIG*595*18*_*_;FR*SOD*S*IZIG*595*16*_*_;FR*SOD*S*IZIG*595*13*_*_;FR*SOD*S*IZIG*595*1*_*_;FR*SOD*S*IZIG*595*10*_*_;FR*SOD*S*IZIG*595*11*_*_;FR*SOD*S*IZIG*595*12*_*_;FR*SOD*S*IZIG*595*14*_*_;FR*SOD*S*IZIG*595*15*_*_;FR*SOD*S*IZIG*595*17*_*_;FR*SOD*S*IZIG*595*19*_*_;FR*SOD*S*IZIG*595*21*_*_;FR*SOD*S*IZIG*595*22*_*_;FR*SOD*S*IZIG*595*23*_*_;FR*SOD*S*IZIG*595*3*_*_;FR*SOD*S*IZIG*595*4*_*_;FR*SOD*S*IZIG*595*5*_*_;FR*SOD*S*IZIG*596*1*_*_;FR*SOD*S*IZIG*596*13*_*_;FR*SOD*S*IZIG*596*14*_*_;FR*SOD*S*IZIG*596*15*_*_;FR*SOD*S*IZIG*596*17*_*_;FR*SOD*S*IZIG*596*21*_*_;FR*SOD*S*IZIG*596*22*_*_;FR*SOD*S*IZIG*596*23*_*_;FR*SOD*S*IZIG*596*24*_*_;FR*SOD*S*IZIG*596*3*_*_;FR*SOD*S*IZIG*596*4*_*_;FR*SOD*S*IZIG*596*5*_*_;FR*SOD*S*IZIG*596*7*_*_;FR*SOD*S*IZIG*596*8*_*_;FR*SOD*S*IZIG*597*10*_*_;FR*SOD*S*IZIG*597*1*_*_;FR*SOD*S*IZIG*597*11*_*_;FR*SOD*S*IZIG*597*14*_*_;FR*SOD*S*IZIG*597*15*_*_;FR*SOD*S*IZIG*597*17*_*_;FR*SOD*S*IZIG*597*21*_*_;FR*SOD*S*IZIG*597*22*_*_;FR*SOD*S*IZIG*597*23*_*_;FR*SOD*S*IZIG*597*24*_*_;FR*SOD*S*IZIG*597*25*_*_;FR*SOD*S*IZIG*597*26*_*_;FR*SOD*S*IZIG*597*28*_*_;FR*SOD*S*IZIG*597*6*_*_;FR*SOD*S*IZIG*598*10*_*_;FR*SOD*S*IZIG*598*11*_*_;FR*SOD*S*IZIG*598*12*_*_;FR*SOD*S*IZIG*598*15*_*_;FR*SOD*S*IZIG*598*19*_*_;FR*SOD*S*IZIG*598*21*_*_;FR*SOD*S*IZIG*598*23*_*_;FR*SOD*S*IZIG*598*24*_*_;FR*SOD*S*IZIG*598*3*_*_;FR*SOD*S*IZIG*598*4*_*_;FR*SOD*S*IZIG*598*5*_*_;FR*SOD*S*IZIG*598*8*_*_;FR*SOD*S*IZIG*598*9*_*_;FR*SOD*S*IZIG*599*10*_*_;FR*SOD*S*IZIG*599*11*_*_;FR*SOD*S*IZIG*599*12*_*_;FR*SOD*S*IZIG*599*16*_*_;FR*SOD*S*IZIG*599*17*_*_;FR*SOD*S*IZIG*599*19*_*_;FR*SOD*S*IZIG*599*2*_*_;FR*SOD*S*IZIG*599*24*_*_;FR*SOD*S*IZIG*599*25*_*_;FR*SOD*S*IZIG*599*4*_*_;FR*SOD*S*IZIG*599*6*_*_;FR*SOD*S*IZIG*600*1*_*_;FR*SOD*S*IZIG*600*14*_*_;FR*SOD*S*IZIG*600*15*_*_;FR*SOD*S*IZIG*600*16*_*_;FR*SOD*S*IZIG*600*17*_*_;FR*SOD*S*IZIG*600*18*_*_;FR*SOD*S*IZIG*600*19*_*_;FR*SOD*S*IZIG*600*20*_*_;FR*SOD*S*IZIG*600*23*_*_;FR*SOD*S*IZIG*600*3*_*_;FR*SOD*S*IZIG*600*7*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22003000000, + 49.41220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR LE HAVRE", + "network": "SONEPAR LE HAVRE", + "start_date": "2024-02-21", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6889685", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6889685" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14133400000, + 49.48536400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PCLXN7QZI6H", + "ref": "294431", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/CLXN7QZI6H", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07077000000, + 49.11020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B HOTEL TOULOUSE CITÉ DE L'ESPACE HUREL", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRVIAP122040", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49387400000, + 43.58427700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/W2VLDSAGHB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4953518648806628854", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "801702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58853200000, + 44.85363900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-26", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPDMD355101", + "description": "Ford - Cesson Sévigné", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58417900000, + 48.11628200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "485133", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8664616605663319490", + "network": "Freshmile France", + "description": "Freshmile France/MLAZLGVW42", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27224700000, + 48.64780700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-29", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E107000", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E107000", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BOURGES - Chemin de Villeneuve(Lautier)", + "network": "MODULO - BOURGES - Chemin de Villeneuve(Lautier)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37520100000, + 47.06920300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/W3FDKK3Y4Y", + "amenity": "charging_station", + "ref": "461997", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P5167981850622297964", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51465200000, + 49.21227300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1127982", + "ref:EU:EVSE": "FRWA9P4800228091170749895", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA5LRWUSRZVV", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68613000000, + 46.90672700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "CHERBOURG EN COTENTIN (LA GLACERIE) - Mairie déléguée", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "ref:EU:EVSE": "FRS50P50203001", + "start_date": "2017-10-12", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60372800000, + 49.61365600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8117400122;FRS81E8117400121;FRS81E8117400111", + "network": "Le Plein Tarnais", + "charging_station:output": "48 kW", + "socket:type2_combo:output": "48 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "MONTDRAGON - Route de Lautrec", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10284400000, + 43.77383500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059786", + "start_date": "2023-12-08;2021-04-22;2021-01-27", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680520;531680518;531680519", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF059786", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS BARRE THOMAS", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72600000000, + 48.10720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT GERMAIN DU TEIL - Parking", + "ref:EU:EVSE": "FRS48E48156001", + "start_date": "2022-02-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17181900000, + 44.47887000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "575309", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "charging_station:output": "25 kW", + "description": "Mobilité électrique 56/BTK4GPLMA5", + "ref:EU:EVSE": "FRS56P7214768904997601776", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96770000000, + 48.06970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH06E62004001", + "description": "ACHICOURT - Rue du 19 mars" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76939200000, + 50.27428800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29530001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COLLOREC - Place Du 19 Mars 1962", + "start_date": "2023-08-08", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.77459800000, + 48.28627700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PBJDCGG", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Inzinzac-lochrist - Rue du Blavet", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-03-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24880900000, + 47.82793500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VIVONNE CURIE-1-1;VIVONNE CURIE-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2018-03-21", + "opening_hours": "24/7", + "ref": "B122", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346052542;FRLMSE12346052541;FRLMSE12346052531;FRLMSE12346052532", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26777000000, + 46.43398000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "484808", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P93048*J;Metropolis - Citadine - Montreuil - Rue de Vincennes", + "ref:EU:EVSE": "FRMGPP93048J", + "start_date": "2022-12-21", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43750200000, + 48.85705700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "AlterBase", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79191P0229A", + "start_date": "2023-06-16", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Niort - Centre commercial Intermarché - QC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43795300000, + 46.30387500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1148352", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRATLP7986683406020378", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00360", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "charging_station:output": "300 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13080700000, + 49.34840300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Girancourt - ZA des Mitroches", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89397431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30517200000, + 48.16152200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIM ENERGIES", + "capacity": "2", + "amenity": "charging_station", + "network": "SPIM ENERGIES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-08-24", + "description": "SPIME ENERGIES", + "owner:ref:FR:SIREN": "834837866", + "ref:EU:EVSE": "FRMAPP000000007779", + "operator:email": "cyrilisrael@hotmail.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53189700000, + 45.06534800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E144260;FRS88E144258", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-15", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - EPINAL - Pkg. petit Champ de Mars", + "ref:EU:EVSE": "FRS88E144260;FRS88E144258", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - EPINAL - Pkg. petit Champ de Mars" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44788030000, + 48.16910550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "network": "Allego Carrefour Brive", + "amenity": "charging_station", + "ref": "FRALLEGO9008172;FRALLEGO9000682;FRALLEGO9000681;FRALLEGO9000632;FRALLEGO9000631;FRALLEGO9002731;FRALLEGO9002732;FRALLEGO9002733;FRALLEGO9008141;FRALLEGO9008142;FRALLEGO9008171", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Brive", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9008172;FRALLEGO9000682;FRALLEGO9000681;FRALLEGO9000632;FRALLEGO9000631;FRALLEGO9002731;FRALLEGO9002732;FRALLEGO9002733;FRALLEGO9008141;FRALLEGO9008142;FRALLEGO9008171" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48164400000, + 45.14543400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3372EVCP01;LFR3372EVCP02", + "capacity": "4", + "ref:EU:EVSE": "LFR3372EVCP01;LFR3372EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "CHELLES Sylvie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59302300000, + 48.87026800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-02-05;2024-01-25", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRMAU", + "opening_hours": "24/7", + "description": "Mon Brico - Mauléon", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73882587022, + 46.92565378817 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Valensole, Parking Salle Polyvalente;Réseau eborn/ACHVAB", + "ref": "78663;ACHVAB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPACHVAB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98638000000, + 43.83650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1047736469527334416", + "ref": "505656", + "charging_station:output": "22 kW", + "description": "Freshmile France/PZKKDSGJXT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72223300000, + 48.61121100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIBSMNQ", + "opening_hours": "24/7", + "charging_station:output": "50 kW;100 kW;7.4 kW", + "description": "Ibis Budget - Manosque", + "start_date": "2023-06-26;2023-06-13", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81357045393, + 43.80863348024 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85883;YV38XHFQKK", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNYV38XHFQKK;FREBNPYV38XHFQKK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/YV38XHFQKK;Cuers, Chemin De La Guinguette", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07509500000, + 43.23772000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "amenity": "charging_station", + "description": "e-Totem - VIAS - P. des 3 Plages", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34332B", + "ref:EU:EVSE": "FRETIP34332B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41764200000, + 43.29413400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-02-15", + "network": "E.LECLERC", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*228*4*_*_;FR*SOD*S*OTHR*228*1*_*_;FR*SOD*S*OTHR*228*2*_*_;FR*SOD*S*OTHR*228*3*_*_", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR22841;FROTHPOTHR22831;FROTHPOTHR22821;FROTHPOTHR22811", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "E.LECLERC - AUTO ARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11241000000, + 44.77033100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6595255", + "description": "SONEPAR CONNECT CALAIS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-08-09", + "ref:EU:EVSE": "FRCPIE6595255", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "network": "SONEPAR CONNECT CALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90752800000, + 50.95071100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TWHLZK", + "capacity": "8", + "ref:EU:EVSE": "FRFR1P4414126514448222634", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "782535", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762000000, + 49.04700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "805320", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA1P7260107597302138643", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLU8IG97QI", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19925700000, + 46.20801100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "412298", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/YU7PPYOYU0", + "ref:EU:EVSE": "FRFR1P6055023306003178314", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77221000000, + 50.39142000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1000116732", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "ALPITRONIC 225kW VW Gresy", + "start_date": "2023-03-30", + "ref:EU:EVSE": "FRSWSE1000116732", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92314900000, + 45.71759600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/VXKSVK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398978", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2309096824757463719" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68480400000, + 43.97449500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-17", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 14:00-18:00, Tu 07:00-12:00, Tu 14:00-18:00, We 07:00-12:00, We 14:00-18:00, Th 07:00-12:00, Th 14:00-18:00, Fr 07:00-12:00, Fr 14:00-18:00", + "capacity": "4", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Apex Location - Nîmes", + "ref:EU:EVSE": "FRSSDPAPEX309001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33443300000, + 43.81624300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E139678;FRS28E139679", + "start_date": "2022-09-13", + "capacity": "2", + "network": "MODULO - AUNEAU - complexe sportif", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - AUNEAU - complexe sportif", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E139678;FRS28E139679", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76012700000, + 48.46202900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "network": "BWK", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "ref": "583f9bd2-f966-4412-bc50-1307a8fd4c85", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "491530671", + "description": "BWK WOUSTVILLER", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02130100000, + 49.06958100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39686", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/C2C0H3ORFE", + "ref:EU:EVSE": "FRS10P5710220012369755902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17291000000, + 48.40833200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP003B1E;Zephyre/LP003B17", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref": "701348;701354", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P8549020964342477916;FRZP1P1574463900893918375", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74679300000, + 47.62897800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2023-01-23", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE518", + "description": "Ecobra_Bethune_TOSSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65775800000, + 50.51438700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "description": "SDE82/JRZPUA", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PJRZPUA", + "ref": "38923" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11391000000, + 44.04030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - SAINT-QUENTIN QUAI", + "start_date": "2024-04-08", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST10712;FRIZFPFAST10711;FRIZFPFAST10713", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*107*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28979787606, + 49.83999490699 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Drain - Sports;DRAIN - Salle des Sports", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-21;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49126A;FRS49E49126001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20450400000, + 47.33967500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "34619", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60PFEUQUIERES", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Feuquieres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84394000000, + 49.64780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON2812;FRGLYPLYON2811;FRGLYPLYON2821;FRGLYPLYON2822", + "description": "VER01 - ROUTE DE LYON", + "start_date": "2020-06-18", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*28*1*_*_;FR*SOD*S*LYON*28*2*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81213900000, + 45.64840300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ORSAN - Place du Village", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30191001", + "charging_station:output": "22 kW", + "start_date": "2022-09-29", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66725200000, + 44.13237000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-pierre-quiberon - Rue Curie", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2016-12-22", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PHUSQJB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13192400000, + 47.52060600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BENASSAY-1-1;BENASSAY-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B007", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346449941;FRLMSE12346449951", + "operator": "SOREGIES MOBILITES", + "start_date": "2016-05-17", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05074900000, + 46.56230900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/6d194388-cdca-4fe9-975a-ba35dc757dd5", + "ref:EU:EVSE": "FRMW1P7331074677873088722", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "951449", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06995000000, + 43.60130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*160*1*_*_", + "start_date": "2021-06-29", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE16011;FRSIGPSIGE16012", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - QUAI DE DION BOUTON - PUTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24499200000, + 48.88064300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-21", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHATELLERAULT - Boulevard Victor Hugo - Parking Saint-Jacques", + "ref:EU:EVSE": "FRBE1E86066001", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54695070000, + 46.81531150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "ref:EU:EVSE": "FRLMSE10001422462", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "792962144", + "description": "SAS Agripat", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18174500000, + 45.75182900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "charging_station:output": "3.7 kW;36 kW", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Perdon | Rue de L'Eglise-Parking Mairie", + "ref": "cb24505f-c8a4-58c4-b0da-f0a4cb7970c1", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59110600000, + 43.86497100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "LE MEE SUR SEINE - LA NOUE", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-04-30", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE77MENA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62516500000, + 48.53828700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Berck", + "description": "Allego Carrefour Berck", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22", + "ref": "FRALLEGO9007752;FRALLEGO9007751;FRALLEGO9007372;FRALLEGO9007371;FRALLEGO9003371;FRALLEGO9003372", + "ref:EU:EVSE": "FRALLEGO9007752;FRALLEGO9007751;FRALLEGO9007372;FRALLEGO9007371;FRALLEGO9003371;FRALLEGO9003372" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59973900000, + 50.40457200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VITRY LE FRANCOIS Perthois", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3583EVCP01;LFR3583EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3583EVCP01;LFR3583EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59915300000, + 48.73062800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34022004", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "BAILLARGUES - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00866600000, + 43.65509500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLTHE8SOT2KSFP;1154064", + "ref:EU:EVSE": "FREBNPLLTHE8SOT2KSFP;FREBNP5735117401744377892", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2024-03-07", + "description": "Réseau eborn/LLTHE8SOT2KSFP;Lavilledieu, Ilot des Fournaches" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45927100000, + 44.57021700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/WC5UFQ7KI5", + "opening_hours": "24/7", + "ref": "441054", + "ref:EU:EVSE": "FRFR1P7490490627348201345", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61312800000, + 44.77375200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E77284002", + "operator": "Bouygues E&S", + "start_date": "2023-09-04;2022-03-03", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MEAUX - Parking Luxembourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87920320000, + 48.95395120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/W7NM5NBTSY", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP6145301146180800088", + "ref": "419361" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92388700000, + 43.13027000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "start_date": "2024-04-08", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPSLLBO", + "network": "ELECTRA", + "capacity": "4", + "description": "Sainte-Luce-sur-Loire - PIAPIA Boulangerie", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48746700000, + 47.26510600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-22", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E75112002", + "description": "Parking Paris Hector Malot - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37715600000, + 48.84678500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED CGED ST DIZIER", + "capacity": "2", + "description": "CGED CGED ST DIZIER", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6624885", + "ref": "FRCPIE6624885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95991600000, + 48.64854900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP3629579545342947931;FRECHPB4QYBOUPMM", + "charging_station:output": "22 kW", + "description": "La Baule, Parking des Salines;Easy Charge/B4QYBOUPMM", + "start_date": "2022-12-02", + "network": "Easycharge services;Easy Charge", + "ref": "B4QYBOUPMM;749163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39607100000, + 47.29049300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1614", + "ref": "FR*V75*PPX16*14", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Avenue Georges Mandel 42 bis", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28060000000, + 48.86400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "454467", + "description": "Freshmile France/SQMVNC", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7503426515015707597", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12927000000, + 48.67670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00968", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "start_date": "2022-07-20", + "capacity": "4", + "owner:ref:FR:SIREN": "478915374", + "description": "VIKINGS CASINOS - Casino Bussang", + "network": " VIKINGS CASINO BUSSANG", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP00968", + "opening_hours": "Mo-Su 10:00-01:00", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85745361169, + 47.88572973520 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLWGIXB83K3IK4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1193563", + "ref:EU:EVSE": "FRFR1P906004898713697078", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50297800000, + 48.38990400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "opening_hours": "Mo 08:30-12:30, Mo 13:30-19:00, Tu 08:30-12:30, Tu 13:30-19:00, We 08:30-12:30, We 13:30-19:00, Th 08:30-12:30, Th 13:30-19:00, Fr 08:30-12:30, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW440001", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-01-24", + "operator": "DRIVECO", + "description": "BMW - Rezé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54505800000, + 47.15598000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Landerneau-Rue de la Fontaine Blanche", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2910300", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25588600000, + 48.45371600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-27;2022-03-03", + "description": "CARCASSONNE - Allée Raymond Courrière", + "ref:EU:EVSE": "FRS11E11069007", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35348900000, + 43.23058600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "5e313fc4-0a2b-45ea-b724-9680f9a43d86", + "owner:ref:FR:SIREN": "511499451", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "UNICAP - Garage Pochet", + "charging_station:output": "22 kW", + "description": "Garage Pochet - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC67308", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68909310000, + 45.86899400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57634;FRS08E57633", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "description": "MODULO - RENWEZ - Pl. de l'église", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - RENWEZ - Pl. de l'église", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS08E57634;FRS08E57633" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60301300000, + 49.83827700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "64763", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PWOINCOURTKLEB", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/Woincourtkleb", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54158000000, + 50.07170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - PLEUMELEUC", + "ref:EU:EVSE": "FRIZFPFAST24713;FRIZFPFAST24711;FRIZFPFAST24712;FRIZFPFAST24721;FRIZFPFAST24722;FRIZFPFAST24723", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-07-22", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*247*1*_*_;FR*SOD*S*FAST*247*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91925700000, + 48.17568200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Casson - Montreal;CASSON - Place Montréal", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44027001;FRS44P44027A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-19;2021-04-09", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55897700000, + 47.38418600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61NJM3N38YN4AFMA86", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CHARTRETTES - Rue Edouard Brigeon;Chartrettes", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77096A;FRS77E77096001", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-26;2016-11-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70084700000, + 48.48867800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "PEUGEOT CREON", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "PEUGEOT CREON", + "ref:EU:EVSE": "FRGSPP1000054945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35454464623, + 44.77759119282 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E219900;FRS37E219901", + "capacity": "2", + "network": "MODULO - CHINON - Pkg. de la gare", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - CHINON - Pkg. de la gare", + "ref": "FRS37E219900;FRS37E219901", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25223100000, + 47.16350600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "015e5e7a-59af-5355-8295-f9230353d461", + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Moncel-lès-Lunéville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52961100000, + 48.57410900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "LPA Parking GPD - N1 - Zone 1", + "amenity": "charging_station", + "description": "LPA Parking GPD - N1 - Zone 1", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P69383BA", + "ref": "FRG10P69383BA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86136510000, + 45.76108270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "819b876e-07d5-5c69-9b3e-a09f7cc5a644", + "description": "MOBIVE | LA COURONNE | AVENUE DE LA GARE", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10068100000, + 45.60486900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*278*1*_*_", + "capacity": "2", + "description": "SIGEIF - ALLEE ROMAIN ROLLAND - ARGENTEUIL - 2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27811;FRSIGPSIGE27812", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-05-18", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23088200000, + 48.95089400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "description": "GVA VAULX", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6497015", + "ref": "FRCPIE6497015", + "network": "GVA VAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91196200000, + 45.77788900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P1774674739815859893", + "capacity": "5", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/O2JCWW7L4P", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "479268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30083700000, + 47.83697600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Brive | Halle Brassens", + "ref": "23f872c7-743d-5cf0-a06b-79d600749e0a", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53480000000, + 45.16279300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - Thouars / Ste Radegonde - agence Séolis", + "owner:ref:FR:SIREN": "492041066", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18024A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2018-10-08", + "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr 13:30-17:00", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24457400000, + 46.99604000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRAGXP01281B", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com", + "description": "Pays de Gex - ePremium - Ornex - Perruet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09138200000, + 46.28295900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR4254EVCP03;LFR4254EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "description": "SOLESMES Gaulle", + "ref": "LFR4254EVCP03;LFR4254EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49872500000, + 50.18981500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38524003", + "start_date": "2024-03-25", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "VARCES-ALLIERES-ET-RISSET - Boulodrome", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68195265346, + 45.08471625417 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ANTIBES PARKING JUAN GARE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*131*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-10-19", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13111;FRA16PWIIZ13112", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11193400000, + 43.57075800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "412088", + "ref:EU:EVSE": "FRFR1P8207823738532019860", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/Q0BSVGD4TL", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11297000000, + 49.41669300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PACTVRN", + "start_date": "2023-12-06", + "opening_hours": "24/7", + "description": "Action - Viry-Noureuil", + "charging_station:output": "50 kW;22.17025 kW;160 kW;200 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25298843981, + 49.64096627502 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Pont En Royans, Impasse du Vivier", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGKE5UHODFR", + "ref": "GKE5UHODFR", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34348700000, + 45.05951270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2023-11-17", + "network": "ELECTRA", + "capacity": "4", + "socket:type2_combo:output": "300 kW;225 kW", + "opening_hours": "24/7", + "charging_station:output": "300 kW;225 kW", + "description": "Saint-Apollinaire - Peugeot Dijon", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPSAPPG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07124700000, + 47.34054700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "INDIGO FRANCE", + "description": "NICE - Louvre", + "ref:EU:EVSE": "FRP07E06088004;FRP07E060880041", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-12;2024-05-14", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26435000000, + 43.70002000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6685065", + "network": "SONEPAR CONNECT VAUX LE PENIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-08", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6685065", + "description": "SONEPAR CONNECT VAUX LE PENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68966400000, + 48.53804600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "start_date": "2022-08-25", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "description": "Briançon, Parking du champ de Mars;Easy Charge/BNKAZ43L8B", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP3463508000523616722;FRECHPBNKAZ43L8B", + "ref": "578822;BNKAZ43L8B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64548600000, + 44.90152700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-01-17", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Chantraine - Place de l'Eglise", + "ref:EU:EVSE": "FRVIAP143016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43536100000, + 48.17216900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/LLJWOR2WQJIQ3M", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892437", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5207923246534210906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65437600000, + 46.40083400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "description": "Paris | Rue Michelet 6", + "ref": "FR*V75*PPX06*11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33638960000, + 48.84256310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "description": "Freshmile/HGSOGXCO0T", + "capacity": "4", + "ref:EU:EVSE": "FRFR1P8956282147848090299", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19816400000, + 45.75177000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:30-12:30, Mo 13:30-19:00, Tu 08:30-12:30, Tu 13:30-19:00, We 08:30-12:30, We 13:30-19:00, Th 08:30-12:30, Th 13:30-19:00, Fr 08:30-12:30, Fr 13:30-19:00, Sa 09:00-12:30, Sa 13:30-18:00;Mo 08:30-12:30, Mo 13:30-19:00, Tu 08:30-12:30, Tu 13:30-19:00, We 08:30-12:30, We 13:30-19:00, Th 08:30-12:30, Th 13:30-19:00, Fr 08:30-12:30, Fr 13:30-19:00, Sa 09:00-12:30, Sa 14:00-18:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGENERALAUTOVOLVO447002;FRSSDPGENERALAUTOVOLVO447001", + "start_date": "2023-06-06;2021-03-11;2021-03-17", + "description": "Volvo - Général Automobile - Nantes PDL1;Volvo - Général Automobile - Nantes PDL2", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "capacity": "11;3", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63103600000, + 47.25612000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Tremeur-Les Dineux", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22369001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28777000000, + 48.34727900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS18E150932", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E150932", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LEVET - Pl. du 8 mai 1945(Mairie)", + "network": "MODULO - LEVET - Pl. du 8 mai 1945(Mairie)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40725547000, + 46.92545849000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f152b881-d2ec-4462-b76d-4dd49ba76437", + "network": "Carrosserie Denis Jean ", + "operator:email": "contact@mkhome-energie.fr", + "owner:ref:FR:SIREN": "522537240", + "capacity": "2", + "amenity": "charging_station", + "description": "Denis Jean ", + "ref:EU:EVSE": "Non concerné", + "operator": "Impact Removal ", + "opening_hours": "Mo-FR 7:30-12:00, 13:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32000000000, + 43.33000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32095", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2083165283910406103", + "description": "SDEA 10/VQEXLSVRD6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57751400000, + 48.29715000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81004012", + "description": "ALBI - Rue Gustave EIFFEL", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-04-05;2022-02-02", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16263500000, + 43.91797500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "description": "IKEA NANTES - PARKING CLIENT", + "amenity": "charging_station", + "start_date": "2023-09-06;2023-01-06", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*99*9*_*_;FR*SOD*S*IKEA*99*8*_*_;FR*SOD*S*IKEA*99*7*_*_;FR*SOD*S*IKEA*99*6*_*_;FR*SOD*S*IKEA*99*5*_*_;FR*SOD*S*IKEA*99*3*_*_;FR*SOD*S*IKEA*99*19*_*_;FR*SOD*S*IKEA*99*17*_*_;FR*SOD*S*IKEA*99*16*_*_;FR*SOD*S*IKEA*99*15*_*_;FR*SOD*S*IKEA*99*14*_*_;FR*SOD*S*IKEA*99*11*_*_;FR*SOD*S*IKEA*99*1*_*_;FR*SOD*S*IKEA*99*10*_*_;FR*SOD*S*IKEA*99*12*_*_;FR*SOD*S*IKEA*99*13*_*_;FR*SOD*S*IKEA*99*18*_*_;FR*SOD*S*IKEA*99*20*_*_;FR*SOD*S*IKEA*99*2*_*_;FR*SOD*S*IKEA*99*21*_*_;FR*SOD*S*IKEA*99*4*_*_", + "ref:EU:EVSE": "FRIKAPIKEA9991;FRIKAPIKEA9981;FRIKAPIKEA9971;FRIKAPIKEA99212;FRIKAPIKEA99201;FRIKAPIKEA99101;FRIKAPIKEA9911;FRIKAPIKEA99111;FRIKAPIKEA99121;FRIKAPIKEA99131;FRIKAPIKEA99141;FRIKAPIKEA99151;FRIKAPIKEA99161;FRIKAPIKEA99171;FRIKAPIKEA99181;FRIKAPIKEA99191;FRIKAPIKEA9921;FRIKAPIKEA99211;FRIKAPIKEA9931;FRIKAPIKEA9941;FRIKAPIKEA9951;FRIKAPIKEA9961", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63161300000, + 47.22233800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-20;2024-05-02", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44137001;FRS44P44137A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "PRINQUIAU - Rue De Besné;OuestCharge - Diva Sp - Prinquiau - Besne", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01448700000, + 47.36298300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77326001;FRS77P77326A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61TJN1VMHBQF5R1GH5", + "start_date": "2023-05-27;2016-12-16", + "description": "NANDY - Rue De L'Église;Nandy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56531500000, + 48.58036400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62765001", + "start_date": "2021-06-15;2021-11-03", + "description": "SAINT-OMER - Parking de Lysel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26964100000, + 50.75357100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - TOURS - Rue Giraudeau", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - TOURS - Rue Giraudeau", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E222201;FRS37E222200", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E222201;FRS37E222200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67732483000, + 47.37949270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PAAVVNR", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/AAVVNR", + "opening_hours": "24/7", + "ref": "25040", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38456000000, + 47.70390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON15011;FRGLYPLYON15012", + "ref": "FR*SOD*S*LYON*150*1*_*_", + "network": "GRAND LYON", + "description": "PBE01 - RUE LUCIE AUBRAC", + "start_date": "2022-04-14", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82549900000, + 45.70403000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5932006", + "network": "MEL", + "ref": "FR*MEL*P59320*06", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "HALLENNES-LEZ-HAUBOURDIN - Rue Louis Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96066400000, + 50.61539500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "ref:EU:EVSE": "FRSSDPCORINASSETMANAGEMENT2", + "description": "Géant Casino - Furiani", + "operator:email": "support@driveco.com", + "start_date": "2019-07-03", + "operator": "DRIVECO", + "opening_hours": "Mo 07:00-20:30, Tu 07:00-20:30, We 07:00-20:30, Th 07:00-20:30, Fr 07:00-20:30, Sa 07:00-20:30, Su 07:00-12:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43909300000, + 42.65735400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "CGED DECAZEVILLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CGED DECAZEVILLE", + "ref:EU:EVSE": "FRCPIE6582395", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref": "FRCPIE6582395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26148400000, + 44.55767400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LUORMJVPMO", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "594416", + "capacity": "14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P5549971449273789562", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82252100000, + 46.46420800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-04-01", + "ref:EU:EVSE": "FRS33PMB3314612;Non concerné;FRS33PMB3314611", + "ref": "525b1f8b-ea8a-54a6-bd3f-101efad6e4aa;FR*SOD*S*MB33*146*1*_*_", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "description": "SOULAC SUR MER - PARKING DE LA BALEINE;MOBIVE | Soulac Sur Mer | Parking de la Baleine", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12612600000, + 45.51444200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "412a6998-3df0-532f-9e55-4c004df60ee5", + "operator": "2_AM0001_SMOYS", + "description": "Évry-Courcouronnes - Place de la Coopérative", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46763800000, + 48.62602000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "network": "TISSEO BORDEROUGE", + "amenity": "charging_station", + "description": "TISSEO BORDEROUGE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "capacity": "22", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRALLPTIS017", + "socket:type2_combo:output": "50 kW;350 kW", + "start_date": "2023-08-22", + "charging_station:output": "350 kW;50 kW;43 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45273872000, + 43.64244457000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3345EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "THIONVILLE Gare", + "ref:EU:EVSE": "LFR3345EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15907400000, + 49.34985300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PKFGPLZY9XH", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Istres, Mairie Annexe Prépaou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98333200000, + 43.49433400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS88E184017;FRS88E184019", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-27", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - DARNIEULLES - Rue de Mirecourt", + "network": "MODULO - DARNIEULLES - Rue de Mirecourt", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E184017;FRS88E184019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34929000000, + 48.19880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*241*1*_*_", + "description": "VILLENEUVE-LOUBET - PARKING MISSION LOCALE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ24112;FRA16PWIIZ24111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13445100000, + 43.64195300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "485097", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/CMLN1C0LRD", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6138543946653912808", + "opening_hours": "Tu,Fr,Th,Sa,Mo,We 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25804200000, + 49.85596300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMRBALS", + "network": "Power Dot France", + "description": "Marie Blachère - Alès", + "amenity": "charging_station", + "charging_station:output": "108 kW;120 kW", + "opening_hours": "24/7", + "capacity": "11", + "socket:type2_combo:output": "108 kW;120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09609033006, + 44.11623994595 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chamousset, Impasse de la Gare;Réseau eborn/LLJED5GN510N0M", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-06-27", + "opening_hours": "24/7", + "ref": "892812;LLJED5GN510N0M", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP2943322403405339289;FREBNPLLJED5GN510N0M" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20553500000, + 45.55734700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "description": "EVzen/A94320AE-A9B6-4C21-9A3D-37EA268B3ACC", + "opening_hours": "24/7", + "network": "EVzen", + "ref": "986193", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP8493962043777406524" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66951000000, + 46.52863900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "63 kW", + "description": "BRICORAMA - MAREUIL-LES-MEAUX", + "socket:type2_combo:output": "63 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR58513;FROTHPOTHR58511;FROTHPOTHR58512", + "capacity": "3", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "ref": "FR*SOD*S*OTHR*585*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87645600000, + 48.93699800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLLBHRC", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "32905", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/LLBHRC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03261000000, + 45.97110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/VEVO6DOUKL;Violay, Rue Célestin Linder", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPVEVO6DOUKL;FREBNP4986273441059721054", + "socket:type2_combo:output": "24 kW", + "ref": "VEVO6DOUKL;492174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35785900000, + 45.85243100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP121031", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Dijon-Est", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-01-18", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07533000000, + 47.33389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "896604", + "description": "Freshmile France/J3QGODO0XO", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P207441872768729191", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.56865800000, + -17.53994400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1314", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref": "FR*V75*PPX13*14", + "capacity": "4", + "description": "Paris | Rue Marie-Andrée Lagroua Weil-Halle 2", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38108670000, + 48.82763930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLO4DS3EV15BQ6", + "operator:email": "roaming@freshmile.com", + "ref": "998790", + "capacity": "2", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9199068592881106254", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62554900000, + 44.80776900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Domaine de Dugny (Camping Siblu) - Veuzain-sur-Loire", + "network": "DRIVECO", + "start_date": "2022-02-28", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSIBLU411501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18809000000, + 47.52547400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "ref:EU:EVSE": "FRS27PGAILLONMAISONMEDIC", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900005", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34137500000, + 49.16496900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Bourseul-Rue des Coquelicots", + "ref:EU:EVSE": "FRS22E22014001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26119100000, + 48.48418800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SARTROUVILLE - Parking Guériot", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78586005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16420000000, + 48.93646000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE137", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-08-23", + "description": "Intermarche_Lambersart", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01250000000, + 50.65833300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP348765253887133333", + "ref": "972671", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLPSOHLTMF", + "charging_station:output": "6.9 kW", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45346200000, + 47.43663400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "network": "IONITY GMBH", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE440700", + "ref:EU:EVSE": "FRIONE440700", + "capacity": "9", + "description": "IONITY Mas d'Agenais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18675900000, + 44.40491800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E43897;FRS51E43896", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - HAUTVILLERS - Rue des Côtes de Lhery", + "network": "MODULO - HAUTVILLERS - Rue des Côtes de Lhery", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E43897;FRS51E43896", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94632800000, + 49.08239100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAUTERETS - Gare", + "ref:EU:EVSE": "FRS65E65138004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11463300000, + 42.89202600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-28;2023-02-15", + "capacity": "8", + "description": "RELAIS REIMS CHAMPAGNE NORD", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681192;531681193;531681191;531681186;531681187;531681188;531681189;531681190", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FRHPCPNF080373", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24670000000, + 49.11880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34163001", + "description": "MONTARNAUD - Parking Covoiturage D619", + "charging_station:output": "22 kW", + "start_date": "2022-01-04", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69219481945, + 43.62865537314 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "32845", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/GEPWPS", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PGEPWPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81222000000, + 47.81760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9146762202886739625", + "network": "Freshmile France", + "description": "Freshmile France/BGRBPDRMKQ", + "ref": "453975", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46483400000, + 46.89060700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30321001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SOMMIERES - Rue Eugène Rouché", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08784650000, + 43.78486140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-19", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGEANTCASINO202501", + "description": "Géant Casino - Corte", + "charging_station:output": "7.36 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 07:00-20:00, Tu 07:00-20:00, We 07:00-20:00, Th 07:00-20:00, Fr 07:00-20:00, Sa 07:00-20:00, Su 07:00-12:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15823800000, + 42.30129400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "network": "CJC RECORDING", + "opening_hours": "24/7", + "ref": "FRC2P006301;FRC2P006302", + "description": "CJC RECORDING", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr", + "ref:EU:EVSE": "FRC2P006301;FRC2P006302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78151510000, + 43.58764680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "ref": "b662d8fe-d919-11ed-afa1-0242ac120002", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "Hôtel les Dômes Perpignan Sud ", + "ref:EU:EVSE": "FRLUMEHOTELLESDOMES11", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92777080000, + 42.65858840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "463d21a5-3bdb-5a9c-9174-972e9831b3ba", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | Saint-Saud-Lacoussiere | Place du Champ de Foire", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81836000000, + 45.54399000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE33MJBF;FRSE1PSE33MJBD;FRSE1PSE33MJBB;FRSE1PSE33MJBA;FRSE1PSE33MJBC;FRSE1PSE33MJBE", + "capacity": "1;2", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "SF2I - Saint Medard en Jalles", + "start_date": "2023-09-14", + "opening_hours": "Mo-Fr 09:30-18:00", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68868400000, + 44.88103100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "ref": "1152453", + "capacity": "4", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "description": "BornEco/6690f901073750b648c16262", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRBHMP7797077318422472095" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96437500000, + 45.73296100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P662686515931724016", + "ref": "579011", + "description": "Leclerc/ACOVDL0ZZ4", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752300000, + 49.14671700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Roquefort-la-Bedoule, Avenue Marius Ghirardelli", + "ref:EU:EVSE": "FRM13PREA85RFW29", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58803200000, + 43.24882900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/XEORPSQQHF", + "ref:EU:EVSE": "FRS89P8897508607080286233", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402668" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06651400000, + 48.11360200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "R3 - Norauto Dijon Toison d'Or", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "ref:EU:EVSE": "FR3R3P89363718", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04732200000, + 47.35766400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P76717966076921923", + "operator:email": "roaming@freshmile.com", + "ref": "346469", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RPGBBAKTHH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12984100000, + 45.75870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUAST", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Super U - Arc-sur-Tille", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "start_date": "2023-09-20", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18095484782, + 47.34770792078 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;44 kW", + "ref:EU:EVSE": "FREBNPQQSNCTNJVW;FREBNP1983632263401002548;FREBNP2980384315809976697;FREBNPIQFRXFB9FK", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "IQFRXFB9FK;346766;477825;QQSNCTNJVW", + "description": "Montgenèvre, Le Peychier;Montgenèvre, Le Peychier 2;Réseau eborn/IQFRXFB9FK;Réseau eborn/QQSNCTNJVW", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-12-09;2021-10-29", + "capacity": "1;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73218300000, + 44.93396100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP2520478126124899275", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref": "1183278", + "description": "EVzen/E6517FB4-86A3-41BC-A01A-1B56D9754EB0", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88421400000, + 46.29816200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*790*3*_*_;FR*SOD*S*OTHR*790*1*_*_;FR*SOD*S*OTHR*790*2*_*_;FR*SOD*S*OTHR*790*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "HOTELS IBIS", + "ref:EU:EVSE": "FROTHPOTHR79041;FROTHPOTHR79031;FROTHPOTHR79021;FROTHPOTHR79011", + "description": "SOCIETE DOLOISE HOTELLERIE IBIS DOLE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45235400000, + 47.06422200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/YYKO4XRXGU;Mens, Chemin Pré Colombon", + "ref": "30188;YYKO4XRXGU", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPYYKO4XRXGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75416000000, + 44.81704000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPFZYNI4UPQP", + "ref": "FZYNI4UPQP", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Roanne, Parking avenue de Lyon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07477030000, + 46.04149620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR39351;FROTHPOTHR39341;FROTHPOTHR39331;FROTHPOTHR39321;FROTHPOTHR39311", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SIMON SAS", + "opening_hours": "24/7", + "description": "SIMON SAS - AVALLON", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*393*5*_*_;FR*SOD*S*OTHR*393*4*_*_;FR*SOD*S*OTHR*393*3*_*_;FR*SOD*S*OTHR*393*2*_*_;FR*SOD*S*OTHR*393*1*_*_", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92362700000, + 47.49558300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "120 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "FRFR1P2008564855861909383", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Fr,We,Mo,Th,Tu 14:00-16:00,We,Mo,Tu,Fr,Th 09:00-12:00", + "ref": "578987", + "description": "Freshmile France/UY61K2MLMX", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26974900000, + 48.77042200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP30182", + "description": "Tesla Supercharger Saint-Dizier, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 48.62365700000, + 48.62365700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LIKFVHWT88", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1942769082755500647", + "operator": "Freshmile | FR*FR1", + "ref": "487212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802500000, + 43.41619600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01866", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "22 kW", + "description": "AMP |49 Avenue de la Liberté", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRTCBP01866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45997900000, + 43.34788200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5578088642882095434", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "578996", + "description": "Freshmile France/VWBTJN8VI5", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39136700000, + 49.85814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22207003", + "description": "Plouaret-Rue du foyer (parking EHPAD Melchonnec)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.47037000000, + 48.61334200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "50782", + "amenity": "charging_station", + "capacity": "1", + "network": "Mazda - Rennes ", + "ref:EU:EVSE": "FRZMAE22AC50782", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": " Mazda - Rennes - 22kW AC ", + "start_date": "2021-01-06", + "owner:ref:FR:SIREN": "530271162", + "opening_hours": "Mo-Fr 08:15-19:00,Sat 09:00-18:00", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58628100000, + 48.11537400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRROSE358", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Najeti_Valescure", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09825700000, + 50.71298400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78401002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-25", + "description": "MEULAN-EN-YVELINES - Rue de la ferme du paradis", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91609881047, + 49.00998083555 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "ref": "FRIOYE452154;FRIOYE452152;FRIOYE452151;FRIOYE452106;FRIOYE452101;FRIOYE452102;FRIOYE452103;FRIOYE452104;FRIOYE452105;FRIOYE452107;FRIOYE452108;FRIOYE452153;FRIOYE452155;FRIOYE452156", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "14", + "opening_hours": "24/7", + "description": "Pays de Brives Sud", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE452154;FRIOYE452152;FRIOYE452151;FRIOYE452106;FRIOYE452101;FRIOYE452102;FRIOYE452103;FRIOYE452104;FRIOYE452105;FRIOYE452107;FRIOYE452108;FRIOYE452153;FRIOYE452155;FRIOYE452156", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "Pays de Brives Sud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44092300000, + 45.16072100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS53E531300051;FRS53E53130010", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "LAVAL - Rue Joséphine Baker", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78983181715, + 48.08204650879 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-09-20", + "ref:EU:EVSE": "FRS66E66065001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ELNE - Rue Du Marché", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97407800000, + 42.60153100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE011402;FRIENE011401", + "description": "Chauffailles", + "amenity": "charging_station", + "start_date": "2023-09-27", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE011402;FRIENE011401", + "network": "Chauffailles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31398400000, + 46.21470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "LA DOMINELAIS - 15 rue anne de bretagne ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35098001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68783100000, + 47.76222200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61429A", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-STMACHA-001", + "description": "CHARENCEY - Rue Maurice de Vlaminck" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75763700000, + 48.64897400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "574514", + "ref:EU:EVSE": "FRFR1P5797530146940325590", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/E76N69XL2X", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88104900000, + 48.93828100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64895", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PGTTUTH", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "description": "Roulez Électrique En Haute-Garonne/GTTUTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38562000000, + 43.48060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE92050005", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "NANTERRE - Rue Paul Vaillant Couturier", + "start_date": "2022-03-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20400970000, + 48.88301240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000477", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000477", + "network": "MIDAS_2", + "description": "MIDAS_2", + "operator:email": "info@chargeguru.com", + "start_date": "2022-09-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66036500000, + 43.93579900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-01-10", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE18032;FRM06PNICE18031", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*180*3*_*_", + "operator:email": "sav@izivia.com", + "description": "NICE - MONT BORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29646700000, + 43.68842600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Miramont de Guyenne | Boulevard Aristide Briand", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7aaecd4d-0658-577c-b9b7-4cb611a61396", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35966300000, + 44.60271500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE31911;FRSIGPSIGE31912", + "description": "SIGEIF - 11 AVENUE ALBERT SARRAUT - GOUSSAINVILLE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*319*1*_*_", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46000800000, + 49.02989200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Ibis Styles Paris St-Denis Pleyel - Saint-Ouen", + "ref:EU:EVSE": "FRBMPS222848;FRBMPS222854", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "222848;222854", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34065520000, + 48.92882770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2665EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2665EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LE CATEAU CAMBRESIS Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55805600000, + 50.10128600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "0489e6cb-c993-5919-8606-78774da835eb", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "description": "MOBIVE | Pouydesseaux | Parking Tennis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32630100000, + 43.96866800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "description": "Grigny - Rue Henri Rol-Tanguy", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ebc306bf-4f55-5c6f-9810-91acf9132e69" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38638900000, + 48.65372100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "2.3 kW;22.08 kW", + "ref": "FR*55C*P78140*VLZ*MA1L", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "LE MAIL - VELIZY", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP78140VLZMA1L", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18186200000, + 48.78420200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "THUIR", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3138EVCP01", + "ref:EU:EVSE": "LFR3138EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76152400000, + 42.62880400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Intermarché - Auxon", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-01-16", + "ref:EU:EVSE": "FRPD1PITMAUX", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92078561021, + 48.10916761522 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/HYERDCGEKJ;Mirabel-Et-Blacons, Parking Ecole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPHYERDCGEKJ", + "start_date": "2020-06-21", + "ref": "HYERDCGEKJ;31858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09121500000, + 44.71166800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-09", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - Thionville Avenue de Douai", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP57672H", + "ref:EU:EVSE": "FRETIP57672H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17178108000, + 49.36712420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Saint-Malo Piscine Naye P1 - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E35288011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02016600000, + 48.64128400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT731701", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Yenne", + "start_date": "2023-12-01", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76808600000, + 45.70402300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLTHE8SJU2CRN5;1084764", + "ref:EU:EVSE": "FREBNPLLTHE8SJU2CRN5;FREBNP6462237206294424047", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2024-03-07", + "description": "Réseau eborn/LLTHE8SJU2CRN5;Dullin, D37A/route de vergenucle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74605000000, + 45.55285700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-17", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*512*1*_*_;FR*SOD*S*OTHR*512*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR51222;FROTHPOTHR51221;FROTHPOTHR51212;FROTHPOTHR51211", + "description": "BRICOMARCHE - MAYENNE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61836700000, + 48.28592600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LE VERDINAS BORNE 1", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-09-11", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6716165", + "operator:email": "info@chargepoint.com", + "description": "LE VERDINAS BORNE 1", + "ref:EU:EVSE": "FRCPIE6716165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89313600000, + 45.87562500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UH6ISR4DAZ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "801687", + "ref:EU:EVSE": "FRFR1P5613544532700064663", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14137600000, + 49.23283800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10072897;FRUBIE10091696", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-11-23", + "description": "Beaulieu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19189900000, + 49.50671100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AGJL7CMQDC", + "ref:EU:EVSE": "FRFR1P4626157212892258552", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "510437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91039200000, + 48.69953300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2022-09-22", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "180 kW", + "description": "TOULOUSE - Avenue du Cimetière", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRTLSE31555050" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45830000000, + 43.60665000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7496337600125031067", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/LLITZV34N1D8SJ", + "operator": "Freshmile | FR*FR1", + "ref": "1022391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11487100000, + 48.76453900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/GH4NB90TR9", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "461736", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P7147391221216890835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001000000, + 49.10819600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS12E12089001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DECAZEVILLE - Avenue Du 10 Août Place Cabrol", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25647000000, + 44.55882900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1041828", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLN9EZCXXU", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA3P3855525262403064647" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74559100000, + 50.74331900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-21;2024-04-11", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS49E49222001;FRS49P49222A", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "MOZE-SUR-LOUET - Place de l'Eglise;OuestCharge - Diva Sp - Moze-sur-Louet - Eglise", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55258900000, + 47.35691400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "start_date": "2021-11-24", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRS72E72003001", + "description": "ALLONNES - Rue Maurice Ravel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16137300000, + 47.97029100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E59580001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "STEENVOORDE - Rue De Godewaersvelde", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58837700000, + 50.80890900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-26", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44183001;FRS44P44183A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAINT-MOLF - Salle Des Sports;OuestCharge - Diva Sp - Saint-Molf - Sports", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.42541400000, + 47.39470900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "description": "SIEG 63/FR*S63*P63270*B", + "ref:EU:EVSE": "FRS63P63270B", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref": "518381", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29023500000, + 45.53237500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59324002", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "JEUMONT - Rue Lessines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09861900000, + 50.29708100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34009001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "description": "ALIGNAN DU VENT - Rue des Aires", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34297901493, + 43.46986401977 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-08-19", + "capacity": "0", + "network": "SIPPEREC", + "description": "CRETEIL - Rue Gabriel Faure ", + "ref:EU:EVSE": "FRSIPE94028005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46236861717, + 48.77842083797 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE29611;FRM06PNICE29612", + "ref": "FR*SOD*S*NICE*296*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "NICE - SAINT JEAN DANGELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28913016152, + 43.71004346259 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint Avit de Vialard | Parking Salles des Fetes", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bf3208a2-4138-5428-a8c0-4c63deafef89" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86671000000, + 44.94323700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 10 RUE AUGUSTE RENOIR - CHATOU", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-17", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE42211;FRSIGPSIGE42212", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*422*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15906900000, + 48.90262900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Allego Carrefour Mont de Marsan", + "description": "Allego Carrefour Mont de Marsan", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9007172;FRALLEGO9004091;FRALLEGO9004092;FRALLEGO9007171;FRALLEGO9007301;FRALLEGO9007302", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9007302;FRALLEGO9007172;FRALLEGO9004091;FRALLEGO9004092;FRALLEGO9007171;FRALLEGO9007301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48181000000, + 43.90122000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2951EVCP01;LFR2951EVCP02", + "operator:email": "bornes@lidl.fr", + "description": "Marseille Chartreux", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2951EVCP01;LFR2951EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40021000000, + 43.30835000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Mazerolles | Route de Arzacq D32", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "b6ece5df-e092-539c-934e-3949db1c1efa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47063400000, + 43.44597200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "MAUBEC - Chemin des Guillaumets", + "ref": "743a8dfa-30da-5d82-bc0e-827339efe232", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14063600000, + 43.86744600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA05E78120001", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BULLION - Route des Aulnettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00070590000, + 48.62102970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROYAN Louis Bouchet", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3358EVCP02;LFR3358EVCP01", + "ref": "LFR3358EVCP02;LFR3358EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99761800000, + 45.62728300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PITMSTJ", + "amenity": "charging_station", + "start_date": "2022-09-05;2022-11-03", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Intermarché Super - Saint-Jean", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50762610000, + 43.65033660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/N9XQ3KEFL9", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP2262343232104560107", + "charging_station:output": "50 kW;44 kW", + "ref": "492159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74897900000, + 44.55730600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Crazy Park Bonneuil", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP94011A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP94011A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47808720001, + 48.77922431168 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-27;2024-10-02", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PCORVDV", + "description": "Cora Vendin-le-Vieil (BE)", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82636689423, + 50.46119403030 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-09-30;2024-07-10", + "amenity": "charging_station", + "description": "Carrefour Market - Lens Maës", + "capacity": "4", + "ref:EU:EVSE": "FRDRVPCRFMKT623001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80592000000, + 50.42717400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "ref": "FRESEPS42207AI", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB Place de la Halle", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42207AI", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51205460000, + 45.47779150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-02-21", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPIZIG2761;FROTHPIZIG2751;FROTHPIZIG2741;FROTHPIZIG2721;FROTHPIZIG2711;FROTHPIZIG27101;FROTHPIZIG2731;FROTHPIZIG2771;FROTHPIZIG2781;FROTHPIZIG2791", + "description": "CNPE BUGEY - CAMPUS UFPI", + "ref": "FR*SOD*S*IZIG*27*6*_*_;FR*SOD*S*IZIG*27*10*_*_;FR*SOD*S*IZIG*27*1*_*_;FR*SOD*S*IZIG*27*2*_*_;FR*SOD*S*IZIG*27*3*_*_;FR*SOD*S*IZIG*27*4*_*_;FR*SOD*S*IZIG*27*5*_*_;FR*SOD*S*IZIG*27*7*_*_;FR*SOD*S*IZIG*27*8*_*_;FR*SOD*S*IZIG*27*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26600000000, + 45.80226500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6845365;FRCPIE6845375;FRCPIE6845385", + "start_date": "2024-01-11", + "amenity": "charging_station", + "network": "GHISTELINCK BORNE 3 AC", + "description": "GHISTELINCK BORNE 3 AC", + "ref": "FRCPIE6845365;FRCPIE6845375;FRCPIE6845385", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 08:00-11:30,Mo 14:00-17:00,Tu 08:00-11:30,Tu 14:00-17:00,We 08:00-11:30,We 14:00-17:00,Th 08:00-11:30,Th 14:00-17:00,Fr 08:00-11:30,Fr 14:00-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36220300000, + 50.98962400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3742061142078054500", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "515027", + "description": "Freshmile France/HIPTHVIZZY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13762600000, + 43.51781500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Soissons", + "amenity": "charging_station", + "start_date": "2023-11-06", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121044", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31210800000, + 49.36551700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/HU0OZDLEWF", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "60 kW", + "ref": "574523", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4163839873856272521", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17199100000, + 48.18888600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP17346", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "description": "Tesla Supercharger Salaise-sur-Sanne, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80539400000, + 45.32712800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6301868220507806652", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1130472", + "description": "Freshmile France/LLIVPDG2B9RRW2", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95210900000, + 48.76489100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461766", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P4001723884220316313", + "charging_station:output": "22 kW", + "description": "MobiSDEC/IHLSGMESO6", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08029700000, + 49.36565000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461919", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P6086163492972963568", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/RM3XAKQMTG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05901300000, + 49.25268600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1128147", + "amenity": "charging_station", + "description": "WAAT/FRWATLRRQFZAKL", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P7958037393691661786", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30343400000, + 48.69033500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-06-20", + "description": "CHERBOURG EN COTENTIN - Place Chantereyne", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P5012910", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62385500000, + 49.64531700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LAVAUR - Place Pasteur", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81140006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81441500000, + 43.70022400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DES PERGOLAS", + "ref": "FRHPCPNF059446", + "start_date": "2024-09-12", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCENF059446", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22603887370, + 43.67314728384 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FLORAC - Parking Ancienne Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS48E48061001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59623700000, + 44.32655100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PMCYRPV", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "description": "Mobilité électrique 56/MCYRPV", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "21884" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41844000000, + 47.80320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH05E62160003", + "network": "pass pass électrique", + "description": "BOULOGNE-SUR-MER - Place Dalton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60705000000, + 50.72312900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29265001", + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Sainte Sève-Aire de Covoiturage de Coat Conval", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.87865800000, + 48.55171200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56P5758010339504333468", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/MYZLMIBAEA", + "ref": "487278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44269500000, + 47.80292200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-14", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346052022;FRLMSE12346052021;FRLMSE12346052011;FRLMSE12346052012", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "description": "MONCONTOUR-1-2;MONCONTOUR-1-1", + "owner:ref:FR:SIREN": "450889225", + "ref": "B069", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01987000000, + 46.88098900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRMGPP93027B", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "1121520", + "description": "Métropolis/FR*MGP*P93027*B", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37896200000, + 48.92681100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE91114005", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-04-04", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BRUNOY - Rue des Cerfs", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50359648473, + 48.69342257299 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref": "1081227", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00529", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP506497528638830847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87637600000, + 47.67228600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "owner:ref:FR:SIREN": "668502966", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "description": "Würth Rennes", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "ref:EU:EVSE": "FRLMSE10000882621;FRLMSE10000882611", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73003600000, + 48.10199300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LILLE - Boulevard Eugène Duthoit", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "12", + "start_date": "2024-05-16;2021-11-03", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM59E593500021;FRM59E59350002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03994000000, + 50.60783600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85194002", + "description": "LES SABLES-D'OLONNE - Rue Nicot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78418000000, + 46.49939000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSECHRL", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "ECHIROLLES", + "capacity": "10", + "network": "Carrefour Energies", + "start_date": "2022-07-27", + "charging_station:output": "300 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72426300000, + 45.15878800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-21;2022-09-05", + "ref:EU:EVSE": "FRIZMPMAMP4512;FRIZMPMAMP4511;FRIZMPMAMP4212;FRIZMPMAMP4211", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com", + "description": "IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL SATELITE;IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL MASTER", + "ref": "FR*SOD*S*MAMP*45*1*_*_;FR*SOD*S*MAMP*42*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39096400000, + 43.28914400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMATLMD", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "80 kW", + "description": "Match - Lambersart (Dunkerque)", + "opening_hours": "24/7", + "start_date": "2024-05-02", + "capacity": "9", + "operator": "Power Dot France", + "charging_station:output": "22 kW;80 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02508121878, + 50.63727952088 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPFUTIVJGR3W;FREBNFUTIVJGR3W", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/FUTIVJGR3W;Neoules, 7 Avenue de Fontaine Marcellin", + "ref": "75326;FUTIVJGR3W", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01205400000, + 43.31157100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP2967940215427352125", + "capacity": "3", + "description": "Norauto - Bornes publiques/78E616B4-7BA0-4413-B78D-CFB584AB2799", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "779304", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37817000000, + 47.11035200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis - Mouilleron-le-Captif", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PIBIMOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42993320416, + 46.71053931045 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-23;2022-03-21", + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE;FREBNPV1G6TQKEFF", + "opening_hours": "24/7", + "capacity": "2;10", + "charging_station:output": "50 kW;44 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Chamonix, Parking Grépon;Chamonix - Parking Grépon", + "ref": "DGXASAH8ZE;V1G6TQKEFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266000, + 45.91714084000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-Totem - THE ORIGINALS CITY - LABEGE ", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP31254A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP31254A", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50414800000, + 43.54620500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "capacity": "1;2", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "amenity": "charging_station", + "start_date": "2021-05-20;2021-08-19", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*202*4*_*_;FR*SOD*S*OTHR*202*3*_*_;FR*SOD*S*OTHR*202*1*_*_;FR*SOD*S*OTHR*202*2*_*_", + "description": "SUPER U - SAUJON", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR20242;FROTHPOTHR20232;FROTHPOTHR20231;FROTHPOTHR20211;FROTHPOTHR20221;FROTHPOTHR20241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91485700000, + 45.67916900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-12-05", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*CAPS*29*1*_*_", + "charging_station:output": "22 kW", + "description": "NOZAY - CENTRE CULTUREL HOSSEIN", + "ref:EU:EVSE": "FRCPSPCAPS2911;FRCPSPCAPS2912", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24233400000, + 48.66191900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UGJRF0YHEZ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1164476293112662487", + "operator": "Freshmile | FR*FR1", + "ref": "699020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15049200000, + 49.15149600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRVISP7650547064770575337", + "operator:email": "contact@mobilygreen.fr", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENRGETICA/f4a1362d-d543-4d52-b085-55f936bc66ad", + "ref": "951350", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28667600000, + 47.95011900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5230906679247663092", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJOEL7Y21NWB1", + "ref": "892410" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59570800000, + 47.27799400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALPITRONIC 300kW AccordParfait Divonne;ABB T54 AccordParfait Divonne", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "ref:EU:EVSE": "FRSWSE1000116733;FRSWSE1000081563", + "opening_hours": "24/7", + "start_date": "2023-01-22;2023-06-21", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000116733;1000081563", + "charging_station:output": "300 kW;50 kW;22 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12317300000, + 46.35943300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P980771319819909303", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "510593", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/TA2FAXN8SN", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651000000, + 49.14390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-28", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Renault - Morteau", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT255001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60582600000, + 47.06402600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E137349", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E137349", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - SOURS - Pl. du docteur Bouclet", + "operator": "Modulo", + "network": "MODULO - SOURS - Pl. du docteur Bouclet", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59944811000, + 48.41284129000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "878272285", + "capacity": "2", + "amenity": "charging_station", + "description": "Parking Hippopotamus Massy", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-09-25", + "operator": "MADUREST MASSY", + "ref": "EVB-P22070228", + "network": "HIPPOPOTAMUS ", + "operator:email": "albin.madurel@madurest.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30104280000, + 48.72968290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/SPHOAP76VH", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "101774", + "ref:EU:EVSE": "FRS10P9151004539939903364" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07589800000, + 48.29329600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "706262", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLPMTIPLDG", + "ref:EU:EVSE": "FRWATP379005893711492580", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58243000000, + 47.86667000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "owner:ref:FR:SIREN": "839265974;839265973;839265972;839265975", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRROSE435", + "description": "Mercure_Hotel_Dunkerque", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36908260000, + 51.03359500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81306001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VALDERIES - Place De La Mairie", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23358600000, + 44.01228900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRIPKNRME;FRIPKNGTH", + "description": "INTERPARKING - Nice Gare Thiers", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRIPKNRME;FRIPKNGTH", + "start_date": "2023-01-09", + "capacity": "22;28", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26079425766, + 43.70406601047 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "OuestCharge - Diva Sp - Chaudron-en-Mauges - Mairie;CHAUDRON-EN-MAUGES - Parking de la Mairie", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49083001;FRS49P49083A", + "start_date": "2021-09-06;2024-04-03", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98353300000, + 47.28839500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/SCLMMVPUFB", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "346607", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60P7838603654726675138" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46336700000, + 49.20236500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRUAY LA BUISSIERE - rue Joule", + "ref:EU:EVSE": "FRH13E62178001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55404800000, + 50.48137800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NIMES - Avenue De La Bouvine", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35573200000, + 43.81720100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/ZGBPNA", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "ref:EU:EVSE": "FRS56PZGBPNA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56", + "ref": "25080" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11240000000, + 47.59900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SOREGIES MOBILITES;SOREGIES", + "ref": "FR*SOD*S*SORE*57*1*_*_;B015", + "opening_hours": "24/7", + "operator:email": "irve@soregies.fr;sav@izivia.com", + "ref:EU:EVSE": "FRS86PSOREB0151;FRLMSE12346396691;FRLMSE12346396701;FRS86PSOREB0152", + "owner:ref:FR:SIREN": "450889225", + "charging_station:output": "18 kW;22 kW", + "operator": "SOREGIES MOBILITES;IZIVIA", + "start_date": "2016-07-11;2016-06-20", + "description": "CHALANDRAY-1-1;CHALANDRAY-1-2;CHALANDRAY | B015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00364000000, + 46.66112900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP94080E", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "348971", + "description": "Métropolis/FR*MGP*P94080*E", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44135400000, + 48.84684500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*132*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE JEAN JAURES - MEUDON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE13212;FRSIGPSIGE13211", + "start_date": "2021-02-18", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24084220000, + 48.80793800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBE1E78490004", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "PLAISIR - Parking du Palais des Sports" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95312900000, + 48.82571900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89601217", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Première Cl. Dunkerque St-Pol", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-04-07", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33632200000, + 51.02225300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | RUELLE SUR TOUVRE- Place Auguste Royer", + "operator": "190__SDEG16", + "ref": "62c10975-26b4-5477-8aff-365711c70337", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22882700000, + 45.67844100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "description": "Restaurant Au bon coin - COLLEVILLE", + "amenity": "charging_station", + "start_date": "2024-03-21", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE76CABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45931400000, + 49.74972300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9007762;FRALLEGO9007761;FRALLEGO9004662;FRALLEGO9002032;FRALLEGO9002031;FRALLEGO9002781;FRALLEGO9002782;FRALLEGO9002783;FRALLEGO9004661;FRALLEGO9007811;FRALLEGO9007812", + "amenity": "charging_station", + "network": "Allego Carrefour Laon", + "start_date": "2023-01-03", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9007762;FRALLEGO9007761;FRALLEGO9004662;FRALLEGO9002032;FRALLEGO9002031;FRALLEGO9002781;FRALLEGO9002782;FRALLEGO9002783;FRALLEGO9004661;FRALLEGO9007811;FRALLEGO9007812", + "description": "Allego Carrefour Laon", + "operator:email": "info@allego.eu", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61360000000, + 49.54881000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3935EVCP01;LFR3935EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3935EVCP01;LFR3935EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "BARR - Sélestat", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46545600000, + 48.40041900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "description": "TOULOUSE - Caroline Aigle", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-12", + "ref:EU:EVSE": "FRM31E31555007", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48965060000, + 43.56441040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "801756;ZVTIJMJE4U", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP4750231469372786725;FREBNPZVTIJMJE4U", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "CHENS-SUR-LEMAN, Rue de l'Egalité;Réseau eborn/ZVTIJMJE4U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26740900000, + 46.32406400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6811286219933216976", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLS39BMNY1IFU9", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1040643", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39662000000, + 43.27604900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-09-15", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PARIS - Magenta - Niveau -4", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "63", + "ref:EU:EVSE": "FRP07E751100043;FRP07E751100042;FRP07E75110004;FRP07E751100041;FRP07E751100044;FRP07E751100045;FRP07E751100046" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35521400000, + 48.87546400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDQYFSLZJSI", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/DQYFSLZJSI", + "ref": "30521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68599700000, + 45.92300900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/6654291cf78121001c367fcf", + "network": "Road", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "capacity": "3", + "opening_hours": "Fr,Mo,Tu,Sa,Su,Th,We 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref": "1110510", + "ref:EU:EVSE": "FREFLP8353483501189907683" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07725200000, + 47.64633800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E59350004", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Lille Flandres (Entrée rue Javary) - EFFIA", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07513100000, + 50.63454200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6610525", + "start_date": "2022-10-18", + "capacity": "2", + "amenity": "charging_station", + "description": "HYPER U BORNE 5", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6610525", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "HYPER U BORNE 5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86376400000, + 43.45833100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-07-23", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/AEJY2YM4XC;La Seyne Sur Mer, quai de la marine", + "ref:EU:EVSE": "FREBNPAEJY2YM4XC;FREBNP3255111573111393311", + "ref": "454392;AEJY2YM4XC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88241000000, + 43.10310300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P2001600460928876103", + "charging_station:output": "7.4 kW;22 kW", + "ref": "1181940", + "description": "WAAT/s570528", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31173300000, + 47.79212100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "419139", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7220847817805940674", + "description": "Freshmile France/QZGNESQT2U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68692500000, + 48.53113500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00698", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "description": "CAR AVENUE - BMW SARREBOURG", + "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 13:30-17:30,Fr 09:00-12:00,Fr 13:30-17:30", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "851779066", + "network": "BMW SARREBOURG", + "ref": "FRTCBP00698", + "charging_station:output": "50 kW;43 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04417578466, + 48.72321115587 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "694307", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/RDGTHWLARG", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8492710346524939845" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07039700000, + 46.79957400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDACITROEN624001", + "description": "Citroën - Bethune", + "charging_station:output": "22.08 kW", + "start_date": "2020-02-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64887500000, + 50.51244000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Fouesnant-Rue des Îles", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2905800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.01294300000, + 47.89541200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1017732", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/LLKS0FE0CD63G7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P695042309803412491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09358300000, + 48.25608800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "LE CHRYSTAL (HOTEL CRYSTAL)", + "description": "Logis Urban Style Hôtel Le Crystal - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC128457;FRZP1PEAC128445", + "ref": "aba7dff4-19bf-4850-8554-54daea624b56", + "owner:ref:FR:SIREN": "382378800", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05757491000, + 48.63702831000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MAUBERT FONTAINE - Rte. d'Hirson", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS08E240750;FRS08E240751", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MAUBERT FONTAINE - Rte. d'Hirson", + "ref:EU:EVSE": "FRS08E240750;FRS08E240751" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42756900000, + 49.86954100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/bovesfde80", + "ref": "64739", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PBOVESFDE80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36584000000, + 49.86440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MC DONALDS - HENIN BEAUMONT", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*205*1*_*_", + "start_date": "2024-10-01", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST20513;FRIZFPFAST20512;FRIZFPFAST20511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97541100000, + 50.40524300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2024-04-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LA TURBALLE - Parking Rue Trévaly / D99", + "ref:EU:EVSE": "FRS44E044018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48302793500, + 47.34452820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOISSISE-LA-BERTRAND - Rue De La Tour Maubourg;Boissise-la-Bertrand", + "ref:EU:EVSE": "FRS77E77039001;FRS77P77039A", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61GKXMHQF39J59JWGZ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2023-05-24;2016-01-22", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58840600000, + 48.52665700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "amenity": "charging_station", + "operator": "GREENSPOT", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "428972467", + "description": "Ibis budget Dives sur Mer ", + "network": "Ibis budget Dives sur Mer ", + "charging_station:output": "4 kW;7 kW", + "ref:EU:EVSE": "FRGSPP1000056019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13158300000, + 49.28959400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E219761;FRS37E219762", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref": "FRS37E219761;FRS37E219762", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - NEUILLY LE BRIGNON - Pkg. espace de loisir Jean Vimenet", + "description": "MODULO - NEUILLY LE BRIGNON - Pkg. espace de loisir Jean Vimenet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78997200000, + 46.97345200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25058", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PSWHNTH", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/SWHNTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54198000000, + 47.68870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10P445345A", + "start_date": "2022-09-26", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRG10P445345A", + "charging_station:output": "22 kW", + "network": "AGGLOMERATION MONTARGOISE - VIMORY", + "operator:email": "contact@e-totem.fr", + "description": "AGGLOMERATION MONTARGOISE - VIMORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68600800000, + 47.94595600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Osses | Parking Poche A Eau", + "ref": "f7e52c81-d281-510b-b5ec-7893779126d4", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29831700000, + 43.23440600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24811;FRSIGPSIGE24812", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*248*1*_*_", + "start_date": "2022-04-06", + "description": "SIGEIF - 29 RUE DES RAGUENETS - SAINT GRATIEN", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28395570000, + 48.96040790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "ref": "21808", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "operator": "Freshmile | FR*CN1", + "description": "Move In Pure/WFKGFX", + "ref:EU:EVSE": "FRCN1PWFKGFX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74397000000, + 44.55440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/FHVJ8STYWS", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "466320", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P527617483363857193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079100000, + 46.82398200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "9587b8f6-884d-5120-ac77-bee96f60dcb3", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Tonnay Charente | Rue de l'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89279300000, + 45.94387900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0015A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Thouars - Gare", + "start_date": "2017-11-20", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21094960000, + 46.98515290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-12;2022-12-22;2022-12-09;2022-12-19", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "50 kW;24 kW", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CDG - BAT (Réservé exclusivement aux taxis parisiens)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRADPE772940011;FRADPE772940012", + "capacity": "20", + "network": "ADP Groupe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61094900000, + 49.00764380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3657EVCP03;LFR3657EVCP01;LFR3657EVCP02", + "charging_station:output": "120 kW;22 kW", + "description": "TOULOUSE Lardenne", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3657EVCP03;LFR3657EVCP01;LFR3657EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39926300000, + 43.59246800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-06-23;2021-07-02", + "description": "PONT-DE-CLAIX - Rue Stalingrad", + "ref:EU:EVSE": "FRM38E38317002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69855200000, + 45.12341600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-19;2020-06-22", + "ref": "FR*SOD*S*WIIZ*101*1*_*_;FR*SOD*S*WIIZ*101*2*_*_", + "description": "BIOT PARKING BACHETTE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ10122;FRA16PWIIZ10112;FRA16PWIIZ10111;FRA16PWIIZ10121", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09631500000, + 43.62865300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "491925", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ZQJI8TT2HQ", + "ref:EU:EVSE": "FRFR1P1706147903963525147", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470300000, + 48.98087500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "description": "hotelF1 - Villeneuve-d'Ascq", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2023-10-10", + "ref:EU:EVSE": "FRPD1PACCVDA", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14322387057, + 50.64239082201 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref": "BEXG8FSQXS;346634", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/BEXG8FSQXS;Albertville, Parking Place du Théatre", + "ref:EU:EVSE": "FREBNP2577305972626606182;FREBNPBEXG8FSQXS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39054500000, + 45.67614600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2022-11-29", + "description": "Saint-Laurent-de-Mure - Hôtel Première Classe", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPSLMPC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06372600000, + 45.68819600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-10;2023-07-04;0001-01-01", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E94080003", + "network": "EFFIA France", + "description": "Parking Vincennes Hôtel de Ville - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43915000000, + 48.84716000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR BELFORT CONNECT", + "description": "SONEPAR BELFORT CONNECT", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6665205", + "ref:EU:EVSE": "FRCPIE6665205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87372900000, + 47.64021400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "ref": "LLW6DWOCC1TEW0;1111467", + "capacity": "4", + "owner:ref:FR:SIREN": "901772400", + "description": "Besançon, Parking Léo Lagrange;Easy Charge/LLW6DWOCC1TEW0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-05-14;2024-05-15", + "ref:EU:EVSE": "FRECHP5899206496083919127;FRECHPLLW6DWOCC1TEW0", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00502300000, + 47.24383500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX2009", + "ref": "FR*V75*PPX20*09", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Guébriant 6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40920000000, + 48.87310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "971924", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLNUAINYFTYPRO", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6845584924866905830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68862100000, + 44.55508100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX04*07", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0407", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue du Temple 36", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35426530000, + 48.85966890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8052289230419171956", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "782388", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FE7WITDLPX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.63067500000, + -21.13291800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "DRIVECO", + "description": "Groupe Reguillon - Reventin-Vaugris", + "ref:EU:EVSE": "FRSSDPREGUILLONREVENTIN381211", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82033100000, + 45.48740600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22278003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "description": "SAINT BRIEUC - Quai Armez " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75150900000, + 48.52273000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E113095", + "ref:EU:EVSE": "FRS18E113095", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - St FLORENT SUR CHER - République", + "network": "MODULO - St FLORENT SUR CHER - République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24461000000, + 46.99259000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Toyota - Cheffois - 22kW AC G ;Toyota - Cheffois - 22kW AC D ", + "owner:ref:FR:SIREN": "342583796", + "start_date": "2021-04-29", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZTLE22AC60014;FRZTLE22AC60015", + "operator:email": "advenir@zeborne.com", + "ref": "60015;60014", + "charging_station:output": "22 kW", + "opening_hours": "Mo-sat 08:00-18:00,Sun 09:00-18:00", + "network": "Toyota - Cheffois", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82831610000, + 46.46755370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896745", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEA 10/YDITYHBJKS", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P7520644995419051449" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60694800000, + 48.23492100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/LLNUGSFAO8Y9A6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80P1513016519361411254", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "1184941", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39822100000, + 49.87521700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - MARSEILLE CHAVE", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST8012;FRIZFPFAST8011;FRIZFPFAST8013", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*80*1*_*_", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39965090000, + 43.29557190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-26;2024-04-18;2024-04-16", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OUDON - Rue De La Loire;OuestCharge - Diva Sp - Oudon - Loire", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44E44115001;FRS44P44115A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28439300000, + 47.34632400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "MEAUX - Camille Guérin 2;Meaux - Camille Guérin 2", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77284D;FRS77E77284004", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-09-18;2023-09-13", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "b048b1c6-1fb8-488b-913b-b8c9a0de6a4d", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88230400000, + 48.96729000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BLENDECQUES - Place de la libération", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62139001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28209800000, + 50.71758700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - EPEIGNE LES BOIS - Rue St Vincent", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - EPEIGNE LES BOIS - Rue St Vincent", + "ref:EU:EVSE": "FRS37E221332;FRS37E221409", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221332;FRS37E221409" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11141100000, + 47.28132900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BRAS SUR MEUSE - Av. du Douaumont", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BRAS SUR MEUSE - Av. du Douaumont", + "ref": "FRS55E66306;FRS55E66309", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66306;FRS55E66309" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37668700000, + 49.21012300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON12641;FRGLYPLYON12631;FRGLYPLYON12621;FRGLYPLYON12611", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "LY401 - QUAI JOSEPH GILLET", + "operator:email": "sav@izivia.com", + "start_date": "2021-08-31", + "ref": "FR*SOD*S*LYON*126*4*_*_;FR*SOD*S*LYON*126*1*_*_;FR*SOD*S*LYON*126*2*_*_;FR*SOD*S*LYON*126*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81272000000, + 45.77321800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5913901", + "opening_hours": "24/7", + "ref": "FR*MEL*P59139*01", + "network": "MEL", + "description": "NOYELLES-LÈS-SECLIN - Place Alexandre Gratte", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01777376800, + 50.57627502000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "15", + "description": "Jaguar Land Rover - JFC - Caen", + "ref:EU:EVSE": "FRSSDPJLRJFC141121", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2022-09-28;2018-07-04", + "charging_station:output": "50 kW;22.08 kW;7.36 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36792600000, + 49.22779800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6570275", + "capacity": "2", + "amenity": "charging_station", + "network": "CGED GUERET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6570275", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "CGED GUERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87738200000, + 46.18681100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8790747094901563098", + "ref": "579014", + "description": "Leclerc/CITGXODUAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85628400000, + 48.64680400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné;FRS33PMB3311511;FRS33PMB3311512", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Ciers D Abzac | Rue Montaigne;SAINT CIERS D ABZAC - RUE MONTAIGNE", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref": "FR*SOD*S*MB33*115*1*_*_;a64b5d3f-f37a-5878-84b8-b3fccffd56d8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27698500000, + 45.03099100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "Villeneuve-le-Roi - Place de la Gare", + "opening_hours": "24/7", + "ref": "2baf6e58-6816-5048-bf5e-65d4dfa59a4e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42583300000, + 48.73983400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "description": "Allego NISSAN Dechy", + "network": "Allego NISSAN Dechy", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO0001121", + "ref:EU:EVSE": "FRALLEGO0001121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11840300000, + 50.34358600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LUNEL", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR0856EVCP01;LFR0856EVCP02", + "ref:EU:EVSE": "LFR0856EVCP01;LFR0856EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14050700000, + 43.67205700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-05-13", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE8612;FRM06PNICE8611", + "ref": "FR*SOD*S*NICE*86*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - PARKING DE LA RESERVE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29053000000, + 43.69311100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-01", + "ref": "FR*SOD*S*WIIZ*217*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-RAPHAEL - PARKING BASTIDE DAGAY", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ21711;FRA16PWIIZ21712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87030100000, + 43.43121900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4369310165771694228", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLZ9MKTJNSCTP6", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1169433", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57283300000, + 50.46310200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mr. Bricolage - Chalonnes-sur-Loire", + "ref:EU:EVSE": "FRPD1PMBRCSL", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2021-12-21", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76153080000, + 47.34649730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Rougiers, Rue de la Rousse;Réseau eborn/CQMQZFLODZ", + "ref:EU:EVSE": "FREBNPCQMQZFLODZ;FREBNCQMQZFLODZ", + "ref": "CQMQZFLODZ;75347", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85118500000, + 43.39334300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP8700968449400860682", + "ref": "753657", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "description": "Norauto - Bornes publiques/11146714-0B6A-4EB7-9B99-AB5DF44A6E02", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85653600000, + 45.71658100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E574630182;FRP07E57463018", + "start_date": "2024-04-26;2023-02-15;2024-05-03", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;7 kW", + "description": "METZ - République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16946936784, + 49.11712097862 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Montélimar, Chemin De Ravaly;Réseau eborn/BAWG4VXXRC", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP7166252454262358709;FREBNPBAWG4VXXRC", + "ref": "346631;BAWG4VXXRC", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76077400000, + 44.53259700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "description": "Road/66cc751813f3ae001cd4dc7e", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "We,Sa,Su,Tu,Fr,Th,Mo 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "ref": "1175019", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP8654022726398336780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70797400000, + 46.81944600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-05-12", + "ref:EU:EVSE": "FRVIAP121007", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Rouen Nord Barentin", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95922800000, + 49.54012700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "559763", + "capacity": "2", + "description": "Freshmile France/OQAQOPUOYC", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P460634020672102181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12950900000, + 48.95011900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Boulevard Diderot 73", + "capacity": "5", + "start_date": "2021-06-18", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1205", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX12*05", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38563220000, + 48.84732930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7.4 kW;3 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "24", + "amenity": "charging_station", + "ref": "232528", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "description": "Freshmile France/SCDGJJ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381000000, + 48.70770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "capacity": "9", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW383001", + "description": "BMW - Bourgoin-jallieu", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24938000000, + 45.59211800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PCONCHESGARE2", + "capacity": "2", + "amenity": "charging_station", + "description": "801004", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93723300000, + 48.96229100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SICECO/FR*S21*P21464*A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS21P21464A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "242233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94829500000, + 47.13451100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT-GERMAIN-EN-LAYE - Saint Vincent 1", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78551006", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07302000000, + 48.89434000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "e-Fast 150kW - Parc commercial aéroport Poitiers-Biard", + "ref:EU:EVSE": "FRQWTP86027A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "904074713", + "operator:email": "contact@qowatt.com", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "network": "QoWatt", + "operator": "QoWatt", + "ref": "FR*QWT*S86027*A*1", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31370000000, + 46.58460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP3879854138334441923", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "description": "WAAT/FRWATLK9I1ZJEF", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "charging_station:output": "6.9 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "706232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73543800000, + 48.50967900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref": "FRIONE432300", + "start_date": "2021-07-08", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE432300", + "description": "IONITY Bedenac Est" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33479500000, + 45.16986500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E40896;FRS51E40897", + "capacity": "2", + "network": "MODULO - GIVRY EN ARGONNE - Pkg. Centre Commercial", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E40896;FRS51E40897", + "charging_station:output": "0 kW", + "description": "MODULO - GIVRY EN ARGONNE - Pkg. Centre Commercial", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88966700000, + 48.94691900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "9551de99-46e2-4e9a-8d0f-2e45f0dcd237", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Evry-Grégy-sur-Yerre - République", + "ref:EU:EVSE": "FRS77P77175A", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62073900000, + 48.66704900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080343", + "amenity": "charging_station", + "start_date": "2022-12-29;2023-01-05", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080343", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "capacity": "10", + "operator": "TotalEnergies Charging Services", + "description": "POULET DE BRESSE", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531681109;531681106;531681107;531681105;531681104;531681103;531681100;531681101;531681102;531681108", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31300000000, + 46.49570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GIGNAC - Rue de la Galaxie", + "ref:EU:EVSE": "FRS34E34114004", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54172300000, + 43.65131000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PZTUAMX", + "ref": "25068", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/ZTUAMX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36487000000, + 47.75190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPS9OL8K2D3SQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8850382939420941700", + "operator": "Freshmile | FR*FR1", + "ref": "1020426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24558500000, + 49.15505800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "description": "Métropolis/FR*MGP*P92051*E;Metropolis - ePremium - Neuilly-sur-Seine - Achille Peretti", + "amenity": "charging_station", + "start_date": "2022-12-09", + "opening_hours": "24/7", + "ref": "599058", + "capacity": "2;8", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRMGPP92051E", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26567600000, + 48.88512700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - Groupe Dugardin - Villeneuve d'Ascq", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "start_date": "2023-02-15;2020-09-04", + "ref:EU:EVSE": "FRSSDPDUGARDINVOLVO596501", + "operator:email": "support@driveco.com", + "capacity": "9", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12036700000, + 50.63190800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "829959089", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRC2P003001", + "network": "HOTEL ORIGINALS ACCESS", + "description": "HOTEL ORIGINALS ACCESS", + "operator:email": "contact@car2plug.fr", + "start_date": "2022-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61569400000, + 42.99377860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "We,Sa,Mo,Fr,Tu,Th 08:00-19:30", + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P3191440553762746317", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "charging_station:output": "22 kW", + "ref": "454365", + "description": "Leclerc/YHEYYGZWWB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58967100000, + 49.64777600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8024823b-1cb3-557e-b177-6c4f13298b26", + "description": "Saintes | Zi de L'Ormeau de Pied", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66337300000, + 45.74797100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Affaire MAGASIN U PLEAUX", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-03-19", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE15PABA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22256000000, + 45.13298500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1151574", + "operator:email": "technique.borneco@gmail.com", + "description": "BornEco/65267bdcd66357a549cbe74f", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP3300754742917353353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90367300000, + 46.67231400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "446708", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "description": "Leclerc/GDZIWFR8Y4", + "opening_hours": "We,Th,Tu,Mo,Sa,Fr 08:00-20:00", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRLE2P725020208161528826" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381200000, + 49.38695000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PNPDMLS3DDB", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Vitrolles, Avenue Denis Padovani", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25797500000, + 43.43639200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/AVO6WOWEGE", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402443", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P6851743790887271316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29046000000, + 48.19837900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*69*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ6912;FRA16PWIIZ6911", + "charging_station:output": "22 kW", + "start_date": "2018-06-18", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "ANTIBES PARKING FOCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12086600000, + 43.57824300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P5373826392422753042", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TK1Y6UXGAE", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "749382", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98727900000, + 48.64032400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSPUFRI", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Super U - Frignicourt", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-02-08", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58750628141, + 48.71398425306 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346652;CSC0TUMVZJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP241498683937666764;FREBNPCSC0TUMVZJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "description": "Sainte-Sigolène, Place des Anciens d'AFN;Réseau eborn/CSC0TUMVZJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23258000000, + 45.24424000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/F8AD1950-37F5-478E-8C98-2353DCF4A7E2", + "ref": "1128267", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP3984734562792714300", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36043000000, + 43.28380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*680*2*_*_;FR*SOD*S*OTHR*680*1*_*_;FR*SOD*S*OTHR*680*3*_*_;FR*SOD*S*OTHR*680*4*_*_", + "capacity": "1", + "description": "UP2PLAY - PORNICHET", + "start_date": "2023-08-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR68041;FROTHPOTHR68011;FROTHPOTHR68021;FROTHPOTHR68031", + "network": "UP2PLAY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30769300000, + 47.25816200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPQYJLX8F4UH", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Volonne, Place Charles de Gaulles;Réseau eborn/QYJLX8F4UH", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "QYJLX8F4UH;102641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01332700000, + 44.11129000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref:EU:EVSE": "FREBNPYYJMCQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "85733;YYJMCQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Annecy, Place Des Romains;Réseau eborn/YYJMCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12163000000, + 45.90800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*367*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2022-03-28", + "description": "CAMPING RIVIERA DAZUR - FREJUS", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR36712;FROTHPOTHR36711", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70880800000, + 43.40904300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9091837647954996216", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/NWFQDD7ISJ", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref": "682193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87030400000, + 45.80789100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP29904", + "description": "Tesla Supercharger Evry-Courcouronnes, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "owner:ref:FR:SIREN": "524335265;524335266;524335268;524335263;524335264;524335267;524335269;524335270", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42385500000, + 48.61589500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/OJC67YT8UC", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4185386568107245841", + "charging_station:output": "22 kW", + "ref": "454101", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66280000000, + 46.61300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "200 kW", + "description": "Volvo Le Mans HUB", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPVOLVOHUB726501", + "start_date": "2023-08-04;2023-07-20", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17395700000, + 48.04839600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1017039", + "network": "Freshmile France", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLRAQ8T9CTSMNS", + "ref:EU:EVSE": "FRFR1P3309510105187276165", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94171600000, + 48.38115600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PLANCOET - Gare", + "ref:EU:EVSE": "FRS22E22172002", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.22959700000, + 48.52172900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "126576;126575", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "391060480", + "start_date": "2022-03-30", + "capacity": "1", + "network": "KIA Chalon sur Saone - ZENITH MOTORS", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRZKAE43AC126575;FRZKAE50DC126576", + "operator:email": "advenir@zeborne.com", + "description": "KIA - Chalon-sur-Saône - 43kW AC;KIA - Chalon-sur-Saône - 50kW DC", + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-19:00", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86754190000, + 46.76801970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-05-09", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE305", + "operator": "RossiniEnergy", + "description": "Chateau_Soucherie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63506660000, + 47.32271600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "GARGENVILLE – Parking Général de Gaulle", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78267003", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80851700000, + 48.98592500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE437753;FRIOYE437752;FRIOYE437751;FRIOYE437702;FRIOYE437701;FRIOYE437703;FRIOYE437704;FRIOYE437705;FRIOYE437706", + "start_date": "2022-12-07", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "description": "Val de Reuil", + "ref": "FRIOYE437753;FRIOYE437752;FRIOYE437751;FRIOYE437702;FRIOYE437701;FRIOYE437703;FRIOYE437704;FRIOYE437705;FRIOYE437706", + "network": "Val de Reuil", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18861500000, + 49.24801000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Territoire de Energie TE53;TEM53", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRS53P53054A;FRS53E53054002", + "amenity": "charging_station", + "description": "OuestCharge - ePremium / Diva Sp - Change - Broglie;CHANGE - Rue Louis De Broglie - Parking Te53", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2022-05-19;2024-05-13;2022-08-26", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "charging_station:output": "25 kW;22 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "capacity": "1;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75533800000, + 48.09024400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAGES - Rue De La Paix", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-09-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66011001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89272900000, + 42.60629200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE008301;FRIENE008302", + "start_date": "2023-05-25", + "network": "Coteaux-sur-Loire", + "owner:ref:FR:SIREN": "898270251", + "description": "Coteaux-sur-Loire", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE008301;FRIENE008302", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33374000000, + 47.29969000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "BAINS SUR OUST - 4 impasse de la tourrelle ", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35013001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07020100000, + 47.70546300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SE61-LEME-001", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "LE MERLERAULT", + "ref:EU:EVSE": "FRS61P61275A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28321600000, + 48.69977900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "971912", + "socket:type2_combo:output": "175 kW", + "ref:EU:EVSE": "FRFR1P1586613599938129133", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "175 kW;22 kW", + "description": "Freshmile France/LLNLKYIDK2M2IU", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59190000000, + 46.36129300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Saint-Lys, Rue du Presbytère;Roulez Électrique En Haute-Garonne/DFNPAD", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PDFNPAD", + "start_date": "2018-04-16", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "79783;DFNPAD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17848000000, + 43.51440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92026004", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-09-07", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "COURBEVOIE - Rue Massenet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25608500000, + 48.89623900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW - Equation Castres - 81100 - 1", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-01-02", + "network": "BMW - Equation Castres - 81100 - 1", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRCG0E000273;FRCG0E000274;FRCG0E000275", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000273;FRCG0E000274;FRCG0E000275" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21712400000, + 43.59171500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*147*1*_*_", + "start_date": "2021-10-28", + "description": "SAINT-ETIENNE-DE-TINEE - PARKING BERGERS", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE14712;FRM06PNICE14711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93822494262, + 44.22787925342 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "description": "MOBIVE | Moustey | Parking de la Poste", + "ref": "5b00d486-9343-55a0-a298-838070287a13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76152400000, + 44.35858200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "BEAUVAIS - Eglise St Jean Marie Vianney", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE60BVEA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09771620000, + 49.43543000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Hotel Montmartre - Paris 18", + "ref": "27311;27310", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com", + "ref:EU:EVSE": "FRBMPS27311;FRBMPS27310" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33581420000, + 48.90042540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MERICOURT Desmoulins", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3059EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3059EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88633500000, + 50.39765700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Camps | Saint Mathurin", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a3c454ad-7645-5abe-a999-cb4de64210fa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98710400000, + 44.98331700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "3f950839-c8f5-57c1-a203-05e8a0137696", + "charging_station:output": "22 kW", + "description": "Évry-Courcouronnes - Rue du Marquis de Raies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41340300000, + 48.62940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART", + "start_date": "2021-03-23", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92140CLMBECLERE", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92140*CLM*BECLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25533500000, + 48.78689900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "TEYRAN", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4288EVCP04;LFR4288EVCP03;LFR4288EVCP01;LFR4288EVCP02", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4288EVCP04;LFR4288EVCP03;LFR4288EVCP01;LFR4288EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91470575333, + 43.67360305786 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "LEPLEIN Lille - Btwin village - Hotel", + "start_date": "2023-10-02", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPL1PBTWINPL1590001", + "charging_station:output": "11.04 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08362300000, + 50.62009900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "description": "Montluçon, Ilets Boris Vian;Réseau eborn/SJWERJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SJWERJ;231562", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPSJWERJ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60561000000, + 46.33010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Fr,Th,Mo,We,Tu 09:00-19:00", + "ref:EU:EVSE": "FRFR1P2313111252110539399", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "471207", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/WS9TVOAQQE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95788700000, + 49.04593100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E24322001", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-28", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Périgueux - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70734200000, + 45.18796800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-05-23", + "ref:EU:EVSE": "FRDRVPCRFMKT802301", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Boismont", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64835200000, + 50.17190600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPWDLJPIX1QR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "WDLJPIX1QR;48382", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Luc-En-Diois, Parking des Bains;Réseau eborn/WDLJPIX1QR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45091900000, + 44.61600200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2022-09-12", + "description": "SUPER U - MONTMEDY", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR48611;FROTHPOTHR48621", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*486*2*_*_;FR*SOD*S*OTHR*486*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37508200000, + 49.51313000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4825315498070286010", + "ref": "892644", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RGSEZ6XTV1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480000000, + 47.89160300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2024-02-22", + "ref": "setp0100000171", + "amenity": "charging_station", + "ref:EU:EVSE": "FRUBIE10031259;FRUBIE10088708", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "description": "UBI-LHSM-025", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18825500000, + 49.67249300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Th,Tu,We,Fr,Mo 08:00-12:00,Mo,Tu 13:30-17:30,We,Fr,Th 13:00-17:30", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/AFRSGAL53C", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6765355067997657644", + "ref": "559682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27389900000, + 49.85584500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "TOULOUSE - 9 Boulevard d'Arcole", + "ref:EU:EVSE": "FRTLSE31555024", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-07-29", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44215400000, + 43.61071000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1684704718969454437", + "ref": "521411", + "capacity": "2", + "description": "Freshmile France/ZAWGJI2HTH", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93019500000, + 44.92151200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461673", + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/C8PSNTNXXV", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P2218912273742073586", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31308500000, + 49.28663600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BELMONT SUR RANCE - Route De Lacaune", + "ref:EU:EVSE": "FRS12E12025001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75266800000, + 43.81660400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FRENEUSE - Alpes 2024-22", + "ref:EU:EVSE": "FRY03E78255002", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59696549897, + 49.03552952768 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49163001;FRS49P49163A", + "description": "OuestCharge - Diva Sp - Jarze - Norbert d'Avignon;JARZE - Place Norbert d'Avignon", + "start_date": "2024-04-29;2024-04-17;2021-04-29", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23256400000, + 47.55352400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "description": "SIED70/K5HNSQ9L6I", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70P4968505623678895231", + "ref": "706067" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15995700000, + 47.62037000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH14E59119001", + "start_date": "2020-10-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BUYSSCHEURE - La Place", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33380000000, + 50.80334900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "THORIGNE FOUILLARD - 2 Avenue de Tizé (Village de collectivité) ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35334001B1", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59459200000, + 48.13132900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "description": "SIEG63 - ePremium - Issoire - Place Montagne", + "start_date": "2022-06-28", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRS63P63178C", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25019974000, + 45.54625829000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QURNW8BWEM", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P153622719305428782", + "charging_station:output": "50 kW;22 kW", + "ref": "485139", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34729500000, + 43.81990500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS32PYECSZR", + "ref": "21839", + "operator:email": "roaming@freshmile.com", + "description": "SDEG32/YECSZR", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66637900000, + 43.85050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94016006", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "CACHAN - Rue Francois Delage ", + "start_date": "2021-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33712000000, + 48.79267800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA ROCHE VALDEBLORE - PARKING VILLAGE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*265*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2024-07-17", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE26512;FRM06PNICE26511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17623234182, + 44.06927883868 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Saint Pardoux la Riviere | Place du 8 Mai", + "ref": "f796806c-6c7e-5138-9d5a-f7f7416ea80f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74886400000, + 45.49286300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*400*1*_*_", + "network": "SIGEIF", + "start_date": "2023-03-07", + "description": "SIGEIF - PARKING DE LA GARE - PIERRELAYE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE40012;FRSIGPSIGE40011", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15520000000, + 49.01940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76514001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "QUÉVREVILLE LA POTERIE - Rue Du Centre", + "start_date": "2024-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18962600000, + 49.35493500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2853EVCP01", + "description": "GUENANGE", + "ref": "LFR2853EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19077700000, + 49.29905800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "MOBIVE | Noailles | Place Charles de Gaulle", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "b88fd5ce-a124-5057-b076-7c51fe8807b2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52366200000, + 45.10118500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "APT - Cours Lauze de Perret", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "ref": "2c612458-396a-5ffe-a533-1e2d88b372ec", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39872200000, + 43.87464400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "PLACE DU CIMETIERE - GARCHES", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-14", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P92380*GAR*C1MET1ERE", + "ref:EU:EVSE": "FR55CP92380GARC1MET1ERE", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19366300000, + 48.84692800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR4129EVCP02;LFR4129EVCP01;LFR4129EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "AIZENAY - Roche", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4129EVCP02;LFR4129EVCP01;LFR4129EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59033500000, + 46.73347900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-05-16", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "capacity": "10", + "description": "Intermarché - Pollestres", + "charging_station:output": "100 kW;187.5 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMPLS", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87637530000, + 42.64115060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPOFASLA4XVL;FREBNP1741687710786479516", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Montalieu-Vercieu, Impasse du Port;Réseau eborn/OFASLA4XVL", + "ref": "801744;OFASLA4XVL", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "7.4 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42029600000, + 45.82561500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "start_date": "2024-07-30", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - GPE DASSIN Plaisir", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP78490A", + "ref": "FRETIP78490A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97245783000, + 48.80288084675 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cora - Grosbliederstroff", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "start_date": "2023-03-31;2023-03-29", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORGRO", + "socket:type2_combo:output": "100 kW;187.5 kW", + "charging_station:output": "100 kW;50 kW;22 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04360933188, + 49.13578263832 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Riom", + "ref:EU:EVSE": "FRDRVPCRFMKT632001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12236900000, + 45.88821200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-07-05;2021-12-06", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Yona", + "ref:EU:EVSE": "FRROSE193;FREPIE1896176", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91691040000, + 50.95220230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-14", + "description": "AUCHAN - MACON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPAUCH18212;FROTHPAUCH18211", + "network": "AUCHAN", + "ref": "FR*SOD*S*AUCH*182*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83907740000, + 46.32601470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "STURNO BORNE GAUCHE", + "start_date": "2023-10-09", + "network": "STURNO BORNE GAUCHE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6805645;FRCPIE6805605", + "ref": "FRCPIE6805645;FRCPIE6805605", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84559000000, + 46.77035200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "346502", + "capacity": "2", + "description": "Freshmile France/XFMCZX", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8058243658306802759", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00364000000, + 48.18240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75P901402", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9014*02", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue Reille 46" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33685700000, + 48.82438800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/S3UNUSE4ZE", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8272466500976206044", + "ref": "370160", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.89812000000, + 48.92980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP7322", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Périgueux, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78993800000, + 45.15242400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLUSBXLRTSPEDW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1084305", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5664989875094925628" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15056000000, + 44.50520700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "description": "R3 - Macarez", + "ref:EU:EVSE": "FR3R3P89882095", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53572800000, + 50.37143400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "456840", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2814199356156015218", + "description": "MobiSDEC/KIWGD0YPCW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60603600000, + 48.85727300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLEFRANCHE DE PANAT - Rue du Centre / RD 25 Place des Porcs", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12299001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70445900000, + 44.08729600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "993555", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5LEVTWNRWV", + "ref:EU:EVSE": "FRWA5P1804310055301320948" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39483500000, + 43.25380800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - ePremium - Varrains - Mairie", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49362A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06644400000, + 47.22294400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LACAUNE - Avenue Georges Clémenceau Place De La Poste", + "ref:EU:EVSE": "FRS81E8112400121;FRS81E8112400112;FRS81E8112400111;FRS81E8112400122", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "48 kW", + "socket:type2_combo:output": "48 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-07-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69300989256, + 43.70725050763 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681525;531681522;531681524;531681523;531681521;531681517;531681518;531681519;531681520;531681526", + "description": "RELAIS DE L'EPINETTE", + "start_date": "2023-06-06", + "ref:EU:EVSE": "FRHPCPNF051046", + "opening_hours": "24/7", + "ref": "FRHPCPNF051046", + "network": "TotalEnergies Charge Rapide", + "capacity": "10", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02468700000, + 50.61685000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "description": "PRUDHOMAT - Place Bonneviole", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS46E46228001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81155800000, + 44.89944500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Locoal-mendon - Rue de Kroas Er Bleu", + "ref:EU:EVSE": "FRS56PUNJRKT", + "start_date": "2016-11-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10407500000, + 47.71018600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DOUAI - GAYANT EXPO 1", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59178020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09205749000, + 50.38119356000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Quimper-Place de la Résistance Et du Général de Gaulle", + "ref:EU:EVSE": "FRS29E29232009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10450400000, + 47.99397700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-23", + "charging_station:output": "7 kW", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Kléber", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94068020", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51547707309, + 48.79076602163 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B028", + "description": "CHAUVIGNY BANFORA-1-2;CHAUVIGNY BANFORA-1-1", + "start_date": "2016-11-21", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346051492;FRLMSE12346051491;FRLMSE12346051501;FRLMSE12346051502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64467000000, + 46.56812000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93001B", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P93001*B", + "ref": "484754", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36812200000, + 48.91444900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*75*1*_*_", + "capacity": "2", + "start_date": "2020-12-18", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7511;FRSIGPSIGE7512", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SIGEIF - 17/19 AVENUE JEAN JAURES - JOUY-EN-JOSAS", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16953200000, + 48.76463000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "907830", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLZ336_FRBOISRE_000001", + "ref:EU:EVSE": "FRATLP7252417566915201329", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13762100000, + 50.38575100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE1000081807", + "description": "Howdens Bezons", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21400500000, + 48.91962900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Denguin | Place de la Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "8bb5e98c-4f20-5d3f-9a52-c3d243c44dcf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51017600000, + 43.36106100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85152001", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LES ACHARD (LA MOTHE-ACHARD) - Place De L'Hotel De Ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65902000000, + 46.61770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LIMOGES BOISSEUIL", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "start_date": "2022-12-13", + "ref:EU:EVSE": "FRALLPEVCARSLMGES", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30861800000, + 45.77835700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 09 - CHEMIN DE MORGIOU", + "ref": "FR*SOD*S*MAMP*10*1*_*_", + "ref:EU:EVSE": "FRIZMPMAMP1011;FRIZMPMAMP1012", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41299900000, + 43.23275800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "description": "Maison de la Presse Tabac Arago - Albi", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMAEABI", + "start_date": "2023-09-19;2023-08-08", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19448600000, + 43.92917351100 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNTHCWDAWXKR;FREBNPTHCWDAWXKR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Ponteves, Chemin de Brignoles;Réseau eborn/THCWDAWXKR", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "85889;THCWDAWXKR", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02993900000, + 43.55329600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1034751", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENGIE MAMP - Bornes publiques/4EC8221E-EF39-4223-9083-BA269CF83698", + "ref:EU:EVSE": "FREVZP5491536341508409196", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48071100000, + 43.33628500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Basic Fit - Orange", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRPD1PGSTORG", + "start_date": "2022-08-18", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83975800000, + 44.11771200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "79291;HWBKSS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/HWBKSS;Annot, Place du Germe", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref:EU:EVSE": "FREBNPHWBKSS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66765000000, + 43.96540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "start_date": "2023-12-29", + "description": "e-Totem - SCI BELLE AIRE - AYTRE", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP17028A", + "ref": "FRETIP17028A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09489302498, + 46.13300995669 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR172421;FROTHPOTHR172411;FROTHPOTHR172401;FROTHPOTHR172431;FROTHPOTHR172441;FROTHPOTHR172451;FROTHPOTHR172461;FROTHPOTHR172471", + "start_date": "2021-01-25", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SEMVR", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*172*47*_*_;FR*SOD*S*OTHR*172*46*_*_;FR*SOD*S*OTHR*172*45*_*_;FR*SOD*S*OTHR*172*44*_*_;FR*SOD*S*OTHR*172*43*_*_;FR*SOD*S*OTHR*172*42*_*_;FR*SOD*S*OTHR*172*40*_*_;FR*SOD*S*OTHR*172*41*_*_", + "operator:email": "sav@izivia.com", + "description": "SEMVR - ROUBAIX - GRANDE RUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17734000000, + 50.69333000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6981565", + "capacity": "2", + "amenity": "charging_station", + "description": "DUNKERQUE POINT P BORNE 2", + "ref:EU:EVSE": "FRCPIE6981565", + "opening_hours": "24/7", + "start_date": "2024-09-06", + "network": "DUNKERQUE POINT P BORNE 2", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33877800000, + 51.00511200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477855", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6435990306879332461", + "network": "Freshmile France", + "description": "Freshmile France/ZU4GWOCMMU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77277600000, + 48.58551800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "CENTER PARCS LES TROIS FORETS - Parking M", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRVIAP123005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97914900000, + 48.62062800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3325442551584110886", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "782499", + "description": "Freshmile France/KF35TDNN0J" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10895300000, + 47.37055200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "SUPER U FARGUES ST HILAIRE", + "operator": "E-TOTEM", + "description": "SUPER U FARGUES ST HILAIRE", + "start_date": "2021-05-06", + "ref": "FRSUAP33165A", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSUAP33165A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44515260000, + 44.82541860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/AKZKLJ5ISV", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "465957", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3349249613567526857", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38644100000, + 43.36181400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Gevrey Chambertin - Alambic", + "ref:EU:EVSE": "FRSSDPMAIRIEGEVREY212204", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-02-09", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98376100000, + 47.22910100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E134368", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - DREUX - Rue de la fontaine", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS28E134368", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - DREUX - Rue de la fontaine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37599100000, + 48.74136700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1131354", + "description": "SDEA 10/LLQZEHXJCMHYH1", + "ref:EU:EVSE": "FRS10P4176631620520382443" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50533200000, + 48.49362300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1127952", + "network": "WAAT", + "description": "WAAT/FRWA5LJ3QZCLTZ", + "ref:EU:EVSE": "FRWA9P6119294585976823987", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93703300000, + 47.39988800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-01-11", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "ST LO - Mersier", + "owner:ref:FR:SIREN": "215005026", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P505021", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06914800000, + 49.11150700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81273002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAIX - Dicosa", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14473720000, + 43.58318870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "RELAIS LES VIGNOBLES", + "owner:ref:FR:SIREN": "531680975;531680976;531680972;531680971;531680973;531680974;531680969;531680970", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "start_date": "2023-07-24;2023-01-30;2023-01-11;2023-01-26", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRHPCPNF078333", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078333" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92750000000, + 47.33750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "BEAUFORT-EN-VALLEE - Place de la République;OuestCharge - Diva Sp - Beaufort-en-Vallee - Republique", + "start_date": "2024-05-19;2024-05-17;2021-04-21", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49021002;FRS49P49021B", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21412100000, + 47.43817600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1041396", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Mouv'Oise/LLRG7NW0K1KLZD", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P945714905790649167" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43071000000, + 49.39039100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LESTREM - Place du Huit Mai", + "ref:EU:EVSE": "FRH09E62502001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68524800000, + 50.62076200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE GRAU DU ROI - Avenue De Bernis", + "ref:EU:EVSE": "FRS30E30133002", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13039200000, + 43.54383500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile;Morbihan énergies | FR*S56", + "ref": "298636", + "capacity": "2", + "description": "Le tour-du-parc - Parking Cimetière Place des 4 Frères le Blouch;Mobilité électrique 56/GQ6RXOGQR9", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56PGQ6RXOGQR9", + "start_date": "2020-06-10", + "network": "Morbihan Energies;Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64807400000, + 47.52577100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VALENCE EN POITOU-1-1;VALENCE EN POITOU-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346390441;FRLMSE12346390431", + "ref": "B036", + "operator": "SOREGIES MOBILITES", + "start_date": "2016-12-28", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18271000000, + 46.30725900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Metropolis - Citadine - Choisy-le-Roi - Louis Luc;Métropolis/FR*MGP*P94022*A", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-10-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94022A", + "ref": "599139", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41392200000, + 48.76175500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 85 BD DE LA REPUBLIQUE - LIVRY-GARGAN", + "ref": "FR*SOD*S*SIGE*103*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-05-21", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE10311;FRSIGPSIGE10312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52460800000, + 48.90545100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBE1E66179001", + "operator": "Bouygues E&S", + "description": "SAINT LAURENT DE CERDANS - Place Gabriel Péri", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-26", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61163600000, + 42.38531400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-22;2023-02-23;2023-01-02", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A36 Dole Romange", + "ref:EU:EVSE": "FRLMSP89369686", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58530000000, + 47.14906500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Valence | Pièce du Pont, le Bourg, Rd 739, Route de Mansle", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "2b85a50c-828b-54b8-a650-d51ed0085c61", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30752500000, + 45.88707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "Midas - NOEUX LES MINES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62NABA", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-04-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68221700000, + 50.47659400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "description": "Allego Carrefour Mérignac", + "ref:EU:EVSE": "FRALLEGO9007731;FRALLEGO9007422;FRALLEGO9007421;FRALLEGO9001421;FRALLEGO9001422;FRALLEGO9002851;FRALLEGO9002852;FRALLEGO9002853;FRALLEGO9004521;FRALLEGO9004522;FRALLEGO9007732", + "amenity": "charging_station", + "ref": "FRALLEGO9007731;FRALLEGO9007422;FRALLEGO9007421;FRALLEGO9001421;FRALLEGO9001422;FRALLEGO9002851;FRALLEGO9002852;FRALLEGO9002853;FRALLEGO9004521;FRALLEGO9004522;FRALLEGO9007732", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "network": "Allego Carrefour Mérignac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65569000000, + 44.83044000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3672EVCP01;LFR3672EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "PONTAULT COMBAULT Chênes", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3672EVCP01;LFR3672EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58607500000, + 48.77843800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31088001", + "network": "Reveo", + "description": "BRAX - Place Du Vidalet", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24274800000, + 43.61633400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPTXLNRF6IDO;FREBNTXLNRF6IDO", + "ref": "TXLNRF6IDO;85919", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Verdiere, Route De Varage;Réseau eborn/TXLNRF6IDO", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93591300000, + 43.63647200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SFNDWUV1R9", + "operator:email": "roaming@freshmile.com", + "ref": "626255", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P339886952382585846", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.31865900000, + 42.50669500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "23", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E750560422;FRP07E75056042;FRP07E750560421", + "description": "PARIS - Pont Marie", + "start_date": "2022-12-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35608600000, + 48.85431670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/YLGMS2ZOQX;Les Avenières, Rue Jean Vittoz", + "socket:type2_combo:output": "50 kW;43 kW", + "ref": "121577;YLGMS2ZOQX", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FREBNPYLGMS2ZOQX", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54047000000, + 45.62670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "22 kW;80 kW", + "network": "Road", + "description": "Road/662a125ab23335001dad08bf", + "amenity": "charging_station", + "opening_hours": "Th,Fr,We,Mo,Sa,Tu,Su 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "charging_station:output": "22 kW;80 kW;3.7 kW", + "ref:EU:EVSE": "FREFLP1732529268593791476", + "ref": "1078155" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08492400000, + 48.93944300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "DOMAINE DE LESPERON", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR29421;FROTHPOTHR29411", + "start_date": "2021-12-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "DOMAINE DE LESPERON - DAX", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*294*1*_*_;FR*SOD*S*OTHR*294*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09381600000, + 43.68138700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6608375", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6608375", + "charging_station:output": "22 kW", + "description": "SONEPAR CARPENTRAS", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-31", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "network": "SONEPAR CARPENTRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03896500000, + 44.03374900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/F0HLVDBZUM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79222", + "ref:EU:EVSE": "FREBNF0HLVDBZUM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61083600000, + 43.21721900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "description": "WAAT/s570499", + "amenity": "charging_station", + "ref": "1182099", + "ref:EU:EVSE": "FRWA2P3142767404117729474", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00082000000, + 43.65250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Tu,We,Th,Mo,Fr 08:00-19:00", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8228975020288307272", + "description": "Freshmile France/LLJWX736V2AAFY", + "operator": "Freshmile | FR*FR1", + "ref": "892443" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27413900000, + 47.83901700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "WARNING Lyon", + "network": "WARNING", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP00386", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "ref": "FRTCBP00386", + "start_date": "2021-08-12", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06979000000, + 45.68893700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "491943", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/WG8RNRAOA1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3240763862937571338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53126600000, + 49.21197600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:30-12:00, Mo 13:30-18:30, Tu 08:30-12:00, Tu 13:30-18:30, We 08:30-12:00, We 13:30-18:30, Th 08:30-12:00, Th 13:30-18:30, Fr 08:30-12:00, Fr 13:30-18:30, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Mougins", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW062501", + "start_date": "2022-08-18", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98556500000, + 43.60827700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Concarneau-Quai d'Aiguillon", + "ref:EU:EVSE": "FRS29E2903900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.91770000000, + 47.87339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P3753736016365806878", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/ZKK7RLCGHF", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "88187" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96959300000, + 48.42212700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "576017", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P1704514220732243781", + "opening_hours": "Mo,Sa,We,Th,Fr,Tu,Su 00:00-23:59", + "description": "Zephyre/LE006CBC", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39394500000, + 45.88679500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-06-03", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE94", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "description": "KrysAutoCourrieres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94408100000, + 50.44001800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PDOULLENSPISCI", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/doullenspisci", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64778", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34536000000, + 50.15700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*174*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST17411;FRIZFPFAST17412;FRIZFPFAST17413", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-06", + "description": "IZIVIA FAST - MCDONALDS - LOUVROIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95205000000, + 50.26158700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VALLOIRE SUR CISSE - Rte. de la Champagne", + "ref:EU:EVSE": "FRS41E4884;FRS41E4885", + "network": "MODULO - VALLOIRE SUR CISSE - Rte. de la Champagne", + "ref": "FRS41E4884;FRS41E4885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25007000000, + 47.52429000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Mouv'Oise/UVTBBTQK8W", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref": "598197", + "ref:EU:EVSE": "FRS60P40140019823981576" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15853400000, + 49.28815300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON8241;FRGLYPLYON8231;FRGLYPLYON8211;FRGLYPLYON8221", + "ref": "FR*SOD*S*LYON*82*4*_*_;FR*SOD*S*LYON*82*3*_*_;FR*SOD*S*LYON*82*2*_*_;FR*SOD*S*LYON*82*1*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-06-14", + "opening_hours": "24/7", + "description": "LY603 - BROTTEAUX", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85826600000, + 45.76770100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E215615;FRS37E215616", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - BRIDORE - Rue du Chemin Vert", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E215615;FRS37E215616", + "network": "MODULO - BRIDORE - Rue du Chemin Vert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08155800000, + 47.02746700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/DWXWZJ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25086", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PDWXWZJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15332000000, + 47.54490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "La Charpinière", + "operator": "E-TOTEM", + "ref": "FRG10P42222A", + "description": "La Charpinière", + "amenity": "charging_station", + "start_date": "2023-01-13", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P42222A", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30966800000, + 45.58858900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "IZIVIA", + "capacity": "2", + "description": "AUCHAN - FACHES-THUMESNIL", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*128*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "ref:EU:EVSE": "FROTHPAUCH12811;FROTHPAUCH12812", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08150600000, + 50.58154300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*218*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE21811;FRSIGPSIGE21812", + "start_date": "2021-11-23", + "network": "SIGEIF", + "description": "SIGEIF - PLACE ARISTIDE BRIAND - ARGENTEUIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25764900000, + 48.94875200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;100 kW;300 kW", + "start_date": "2023-06-19", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRCG0E002140;FRCG0E002137;FRCG0E002138;FRCG0E002139", + "description": "Espace 3000 - Groupe Cassard - Volkswagen Langres - 52200", + "socket:type2_combo:output": "300 kW", + "network": "Espace 3000 - Groupe Cassard - Volkswagen Langres - 52200", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E002140;FRCG0E002137;FRCG0E002138;FRCG0E002139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33053902000, + 47.83534472000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/ZTSPFG0NRB", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P3809008462989104640", + "charging_station:output": "22 kW", + "ref": "446885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77707700000, + 49.35859900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Corme Royal | Résidence des Ormeaux", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "085bacda-8a37-5f40-90ed-8ce1bb4ce5e5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81329900000, + 45.74085600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE88SABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "description": "CITROEN - SAULCY SUR MEURTHE", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95416600000, + 48.24200300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "a609bf84-17a2-4583-80fe-2f09f0659215", + "operator": "Ekoplug", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA68P68021001", + "description": "gite danse des etoiles", + "owner:ref:FR:SIREN": "898168273", + "network": "aucun", + "start_date": "2022-03-15", + "charging_station:output": "7.4 kW", + "operator:email": "contact@ekoplug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61000000000, + 46.34000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BEAUCAIRE - Genestet", + "ref:EU:EVSE": "LFR3822EVCP01", + "ref": "LFR3822EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61298400000, + 43.81375700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRM38E38185004", + "charging_station:output": "22 kW", + "description": "GRENOBLE - Avenue Des Martyrs - CEA Cambridge (CITIZ)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70473500000, + 45.20220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/RTRXS7Y6C9;Bourg-Lès-Valence, Ecole Jean Moulin", + "opening_hours": "24/7", + "ref": "75113;RTRXS7Y6C9", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRTRXS7Y6C9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89815300000, + 44.94882600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "491922", + "ref:EU:EVSE": "FRFR1P6767554291789691326", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/FBTYPI8YWW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96894400000, + 42.64912700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-02-21", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE PERREUX SUR MARNE - Hôtel de ville", + "ref:EU:EVSE": "FRP07E94058001;FRP07E940580011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50726000000, + 48.84038000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSJXUZ7WVZF", + "ref": "237742;SJXUZ7WVZF", + "capacity": "2", + "description": "Réseau eborn/SJXUZ7WVZF;Colmars, Rue Sainte-Anne", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62872000000, + 44.18199000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPLAGKF", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Lagord - KFC", + "operator": "ELECTRA", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15354600000, + 46.17828100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking de l'Opéra de Massy - EFFIA", + "ref:EU:EVSE": "FRP01E91377001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28954000000, + 48.73293000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "capacity": "2", + "description": "LUMELEC SOFITOM1", + "amenity": "charging_station", + "network": "LUMELEC SOFITOM1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6650145", + "ref:EU:EVSE": "FRCPIE6650145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23919100000, + 46.89502200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "description": "GAP , Parking relais du plan Tokoro", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPFJZP5RGIWR", + "ref": "FJZP5RGIWR", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10233384000, + 44.56943231000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue Sofia 16", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1816", + "ref": "FR*V75*PPX18*16", + "start_date": "2021-12-01;2022-06-30", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34759140000, + 48.88500680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20612980000, + 49.97146790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "44 kW;60 kW", + "description": "Freshmile France/T6VGAWB4RJ", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "44 kW;60 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "626270", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2340934968666765878" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08878700000, + 44.10633200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "ref": "FR*V75*PHBSAI*AUG", + "description": "Paris | SAEMES Parking Saint-Augustin", + "ref:EU:EVSE": "FRV75PHBSAIAUG", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2024-03-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32034700000, + 48.87577200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PP3BZRYFVB", + "ref:EU:EVSE": "FRFR1P7553730075049250362", + "ref": "370145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79693000000, + 45.35640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPOCEANEHYUNDAI490701", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "description": "Hyundai - Angers", + "start_date": "2022-09-28;2022-12-01", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62234900000, + 47.47032800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Plounévez-Moëdec - Salle des fêtes", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22228001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44691000000, + 48.55727000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MOUTHOUMET - Route Des Corbieres", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11260001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52944444444, + 42.96000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GL Automotive - Oullins - 22 kW AC ", + "network": "GL AUTOMOTIVE", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-11-05", + "opening_hours": "Mo-Fri: 07:30-19:00", + "ref": "89152", + "ref:EU:EVSE": "FRZPEE22AC89152", + "owner:ref:FR:SIREN": "835032848", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82081580000, + 45.71000010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VARILHES - Avenue Des Pyrenees", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS09E09324001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62920000000, + 43.04210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/58aebbfece386", + "ref": "34658", + "ref:EU:EVSE": "FRS80P58AEBBFECE386", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94704000000, + 50.13270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - SAINT-POL-DE-LEON", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST522;FRIZFPFAST521;FRIZFPFAST523", + "start_date": "2023-11-11", + "ref": "FR*SOD*S*FAST*5*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00382810000, + 48.66895740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44083A;FRS44E44083001", + "start_date": "2021-04-27;2024-04-12", + "description": "LA LIMOUZINIERE - Rue Félix Davy Desnaurois;OuestCharge - Diva Sp - La Limouziniere - Desnaurois", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59619800000, + 46.99512500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77227A;FRS77E77227001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Hermé;HERME - Place De La Mairie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-06-16;2016-08-11", + "ref": "01F5ZAKH61X1D8BSQAJ2E72F29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34933500000, + 48.48339100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW;150 kW", + "description": "GreenYellow Shift Mobility/99", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref:EU:EVSE": "FRGYMP2611767294322204412", + "ref": "1191391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51774300000, + 44.87966000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - RESTIGNE - Rue Basse", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - RESTIGNE - Rue Basse", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221202;FRS37E221209", + "ref:EU:EVSE": "FRS37E221202;FRS37E221209" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22607400000, + 47.28029100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "SDE54 - CCMM - Chaligny", + "ref": "aa40e7bf-2a9b-5970-bee7-ed7f4badd220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09187500000, + 48.61842400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*103*4*_*_;FR*SOD*S*LYON*103*3*_*_;FR*SOD*S*LYON*103*1*_*_;FR*SOD*S*LYON*103*2*_*_", + "description": "LY607 - MONTGOLFIER", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-08-02", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON10341;FRGLYPLYON10321;FRGLYPLYON10311;FRGLYPLYON10331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85300400000, + 45.77221800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "JRA Clisson", + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "ref:EU:EVSE": "FRMBZEIYEUK", + "ref": "293a4ce2-6bba-4d60-a573-06f499cdb35b", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "network": "JRA Clisson", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "11 kW", + "start_date": "2023-07-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29360400000, + 47.09664600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@wattzhub.com", + "network": "Wattzhub", + "start_date": "2023-06-01", + "operator": "Wattzhub ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSMIE", + "ref": "6578361bd66357a549dfd263", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Parking des 3 bornes", + "capacity": "10", + "owner:ref:FR:SIREN": "562034819" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37177680000, + 48.86655750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6542295", + "description": "CGED TOULOUSE 1 _", + "capacity": "2", + "network": "CGED TOULOUSE 1 _", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6542295", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40283800000, + 43.55158200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "482085", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P6615186567054383231", + "description": "Leclerc/RVQEOVVA6G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36077900000, + 43.28039000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Martillac | Parking du Pas de L 'Ane", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "03183b8b-8ef8-5e7d-9cde-778e394533b5", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54255200000, + 44.71403900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8269bd07-4d91-5768-b25c-ef99b78c74e3", + "description": "Villiers-sur-Orge - Rue Jean Jaurès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30009800000, + 48.65688300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAIRPAIRBUS31700P1", + "network": "DRIVECO", + "start_date": "2024-09-30;2022-06-17", + "capacity": "24", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Airbus - Blagnac", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38385800000, + 43.62506900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4205EVCP01", + "description": "CANET EN ROUSSILLON - alizees", + "ref:EU:EVSE": "LFR4205EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02279600000, + 42.70169600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PROVANA LEYNI RP", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2021-08-10;2021-08-19", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE5731;FRM06PNICE5732;FRM06PNICE5741;FRM06PNICE5742", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*57*3*_*_;FR*SOD*S*NICE*57*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27161800000, + 43.70243400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-20;2022-09-22", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*193*1*_*_;FR*SOD*S*WIIZ*193*2*_*_;FR*SOD*S*WIIZ*193*3*_*_;FR*SOD*S*WIIZ*193*4*_*_", + "ref:EU:EVSE": "FRA16PWIIZ19341;FRA16PWIIZ19312;FRA16PWIIZ19311;FRA16PWIIZ19321;FRA16PWIIZ19322;FRA16PWIIZ19331;FRA16PWIIZ19332;FRA16PWIIZ19342", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92352900000, + 43.66082600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/DAWXONRZ2Q", + "opening_hours": "Mo,We,Tu,Th,Fr 08:00-18:30,Sa 09:00-17:30", + "charging_station:output": "22 kW;225 kW", + "socket:type2_combo:output": "225 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "ref": "694202", + "ref:EU:EVSE": "FRFR1P3180218380145314071", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74049300000, + 48.50173400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Brit Hotel - Rouen", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBTHRON", + "socket:type2_combo:output": "100 kW", + "start_date": "2023-07-10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10920940000, + 49.43887340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32884;ELVWIEUKPA", + "ref:EU:EVSE": "FREBNPELVWIEUKPA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Veigy-Foncenex, Parking Champ Faviol;Réseau eborn/ELVWIEUKPA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25827000000, + 46.26919000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP1913711418817266879", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "593318", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "description": "CARF - Bornes Publiques/02D28A55-8180-4EE2-967B-C4DE85CE8DE6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51395000000, + 43.93680400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "11 kW;7 kW", + "ref:EU:EVSE": "FRP07E33063003", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BORDEAUX - Bassin à flot", + "start_date": "2021-04-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56212100000, + 44.86768400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "vichy6;231622", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPVICHY6", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Vichy, Poste;Réseau eborn/vichy6", + "start_date": "2017-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42649000000, + 46.12520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "Easy Charge/LLP8KORJ71SYMW", + "ref:EU:EVSE": "FRECHP2303612909794409745", + "ref": "998772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33242200000, + 43.47306800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP143029", + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - La Vôge-les-Bains - Médiathèque", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26399800000, + 48.00221300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521333", + "description": "Freshmile France/OJUCCZEVLA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Fr,Tu,Mo,Sa,Su,We,Th 07:00-19:00", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6861394931397913224" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83015700000, + 48.89745200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue de Paradis 28", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX10*10", + "start_date": "2021-12-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1010", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35232080000, + 48.87507530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "412067", + "ref:EU:EVSE": "FRFR1P6190994533407646945", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MCGQW3FISF", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79741500000, + 50.13490800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Toyota Nissan - Cavaillon", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "start_date": "2021-11-16", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "charging_station:output": "50 kW;24 kW;22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMAURINTOYOTA843001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02577800000, + 43.85218300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PANDELYSPTANDELYS", + "description": "900118", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40108300000, + 49.23773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BOURGES - Esplanade Pierre MENDES(Val d'Auron)", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BOURGES - Esplanade Pierre MENDES(Val d'Auron)", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS18E98422", + "start_date": "2021-08-28", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E98422", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39860900000, + 47.06363200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78418001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MONTESSON - Place Paul Démange", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-09-10;2021-08-10", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15124010000, + 48.90696430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK621;FRQPKPQPRK6191;FRQPKPQPRK6181;FRQPKPQPRK6161;FRQPKPQPRK6151;FRQPKPQPRK6111", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-11-24;2023-04-04;2022-11-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*QPRK*6*2*_*_;FR*SOD*S*QPRK*6*19*_*_;FR*SOD*S*QPRK*6*15*_*_;FR*SOD*S*QPRK*6*11*_*_;FR*SOD*S*QPRK*6*16*_*_;FR*SOD*S*QPRK*6*18*_*_", + "network": "QPARK", + "description": "QPARK - PARIS - RIVOLI PONT NEUF", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34385000000, + 48.85947500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8106500322;FRS81E8106500321;FRS81E8106500311;FRS81E8106500312", + "capacity": "1", + "description": "CASTRES - Parking Archipel", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-08-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25794947411, + 43.62218230311 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY l'Isle-d'Abeau", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "start_date": "2020-11-03", + "operator": "IONITY", + "ref:EU:EVSE": "FRIONE412500", + "charging_station:output": "350 kW", + "ref": "FRIONE412500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62327100000, + 45.27624900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REVILLE - Eglise", + "ref:EU:EVSE": "FRS50P50760001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-03-22", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25926590000, + 49.61875710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "VILLENEUVE-LE-COMTE - Place De La Fontaine;Villeneuve-le-Comte", + "ref:EU:EVSE": "FRS77P77508A;FRS77E77508001", + "ref": "01F5ZAKH61ED7429VDSMRNSYCR", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2017-02-01;2023-05-17", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83036800000, + 48.81372100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080179", + "owner:ref:FR:SIREN": "531680515", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2020-11-03", + "ref:EU:EVSE": "FRHPCPNF080179", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS DE LA PORTE DE CHATILLON", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31630000000, + 48.82360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - LAMOTTE BEUVRON - La gare - T2", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LAMOTTE BEUVRON - La gare - T2", + "ref:EU:EVSE": "FRS41E254772;FRS41E254771", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E254772;FRS41E254771", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02306200000, + 47.59379600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "21912", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PDREUCR", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/DREUCR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64905000000, + 47.62920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1031496", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3101216765677001974", + "description": "Freshmile France/LLPS9YTUTKGM3V", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20644300000, + 49.12321800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-27", + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Issy-les-Moulineaux - René Jacques", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040F", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26183571000, + 48.82380279000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Opel - HESS - Thionville", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2020-01-29", + "capacity": "3", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPHESSOPEL571001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13526500000, + 49.35434600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76709001", + "description": "LE TRAIT - Amiral Ronarch", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80646000000, + 49.48510100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P8675764281192082910", + "ref": "446828", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/TADFEWONYG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "Tu,We,Th,Mo,Sa 07:45-20:15,Fr 07:45-20:45", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46967600000, + 48.43008900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8c103db1-02e0-5338-88df-bc2dea72a548", + "description": "MOBIVE | Marcheprime | Avenue de la Côte d'Argent", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85552300000, + 44.69216500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "start_date": "2024-04-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VALMONDOIS - Chemin Bescherelle", + "ref:EU:EVSE": "FRS95E95628001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19135611497, + 49.09741661907 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BERTRAND Beauvais", + "capacity": "16", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000197", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2024-04-29;2024-04-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11442620000, + 49.43590550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P5856930181201596577", + "description": "Leclerc/P3UZJUWQJR", + "ref": "446783", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70409600000, + 48.36969300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13POAU5YBNLRK", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Cuges-Les-Pins, Chemin du Cimetière", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70057300000, + 43.27492700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "699116", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/IIWJN6U7HC", + "ref:EU:EVSE": "FRS89P8635590249207239780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07229800000, + 48.34274600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*43*1*_*_", + "start_date": "2018-05-23", + "description": "CANNES CONTRE ALLEE FRANCIS TONNER", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ4311;FRA16PWIIZ4312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96634300000, + 43.54985000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "377477", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/SGEMRSLVN3", + "charging_station:output": "43 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRFR1P5953464645524705799", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93250000000, + 45.09320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Retail Park - Flers", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PRTPFLR", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "50 kW;200 kW;22.17025 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57705092751, + 48.73392563802 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPZHGBKZ4XPO;FREBNP1726770199778316495", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "ZHGBKZ4XPO;347006", + "description": "Réseau eborn/ZHGBKZ4XPO;Albertville, Pkg des sœurs, Rue Claude Genoux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38815600000, + 45.67708200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1034757", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/475C17EC-93A5-4F61-B161-7D16EF459647", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP7853753282555565567", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38999600000, + 43.33159400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR65111", + "ref": "FR*SOD*S*OTHR*651*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "start_date": "2023-02-08", + "network": "ES B2B", + "operator:email": "sav@izivia.com", + "description": "ES/ CREDIT AGRICOLE - COLMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34839800000, + 48.07157500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1154877", + "description": "Réseau eborn/LLTHE8SM92PPSN", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNP7321040133202002037", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05653000000, + 45.37492800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPYIDXSFUUSI", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/YIDXSFUUSI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "96062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33424500000, + 45.44730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "ref": "FR*SOD*S*OTHR*34*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR3411;FROTHPOTHR3412", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ES/ PARKING VIEILLE-ILE", + "start_date": "2019-07-16", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78727800000, + 48.81496800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6204496838005559588", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "454029", + "description": "Freshmile France/FVPQBSTVGS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27420000000, + 46.43220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Jean de la Fontaine 42", + "ref": "FR*V75*PPX16*04", + "start_date": "2021-07-09", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRV75PPX1604", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27190120000, + 48.85099780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892320", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJ2K7V721X2WW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4741546372841141713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.96129300000, + 48.83703800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPDUPONT452001", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "start_date": "2023-03-02", + "description": "BMW - Montargis", + "capacity": "3", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:00-12:00, Sa 13:30-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73513600000, + 47.96227300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900016", + "ref:EU:EVSE": "FRS27PVERNONVELODROME", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48930600000, + 49.09235900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22132001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Lohuec-Route de callac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52142800000, + 48.46074700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Marennes - 22kW AC ;Intermarché - Marennes - 22kW AC", + "amenity": "charging_station", + "ref": "172819;164418;164421;172817", + "capacity": "1", + "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30", + "ref:EU:EVSE": "FRZIME22AC172817;FRZIME22AC164418;FRZIME22AC164421;FRZIME22AC172819", + "operator:email": "advenir@zeborne.com", + "network": "ITM MARENNES", + "operator": "ITM MARENNES;ZEborne", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "341545531", + "start_date": "2022-11-16;2023-01-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09477323238, + 45.82746665626 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE253", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Garage_Barbiniere", + "operator": "RossiniEnergy", + "start_date": "2022-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10524000000, + 47.38466100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78123004", + "description": "CARRIERES-SOUS-POISSY - Rue Louis Armand", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2021-01-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03836100000, + 48.95104200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Rambert Est", + "network": "Saint-Rambert Est", + "ref": "FRIOYE412953;FRIOYE412908;FRIOYE412906;FRIOYE412905;FRIOYE412903;FRIOYE412901;FRIOYE412902;FRIOYE412904;FRIOYE412907;FRIOYE412951;FRIOYE412952", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2022-12-09", + "opening_hours": "24/7", + "capacity": "11", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE412953;FRIOYE412908;FRIOYE412906;FRIOYE412905;FRIOYE412903;FRIOYE412901;FRIOYE412902;FRIOYE412904;FRIOYE412907;FRIOYE412951;FRIOYE412952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82800100000, + 45.27639200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS52P7115921806144928086", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "description": "SDED52/YPPLUMHPKQ", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "378639" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92133000000, + 48.03600600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "TARBES - Rue de la Fonderie", + "ref:EU:EVSE": "FRS65E65440007", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07373000000, + 43.24139000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Couesmes", + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE005702;FRIENE005701", + "amenity": "charging_station", + "start_date": "2023-06-06", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE005702;FRIENE005701", + "network": "Couesmes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32889900000, + 47.55347500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-30", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VALRAS PLAGE - Avenue du Casino - Parking du Ponant", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34324002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28155000000, + 43.24220500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-DAMIGNY-001", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-01-10", + "description": "DAMIGNY - Rue du Stade", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61143A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07374200000, + 48.44803400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8448378618675073775", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/UJZ0SC4ZZC", + "operator": "Freshmile | FR*FR1", + "ref": "505701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73905300000, + 44.40577700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-10-05", + "owner:ref:FR:SIREN": "200075240", + "ref:EU:EVSE": "FRS31PMONTESQUESPLA", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Montesquieu-Volvestre, Esplanade Nord;Roulez Électrique En Haute-Garonne/montesquespla", + "ref": "montesquespla;46555", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23037000000, + 43.20990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92004006", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "ASNIERES-SUR-SEINE - Rue de Colombes", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-11-23;2022-01-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28655400000, + 48.91197900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000158", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000158", + "charging_station:output": "22 kW", + "network": "PROVENDI - 74890 - 3", + "start_date": "2022-04-28", + "operator:email": "info@chargeguru.com", + "description": "PROVENDI - 74890 - 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34582900000, + 46.27516900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE11911;FRM06PNICE11912", + "description": "NICE - PARKING VEROLA", + "ref": "FR*SOD*S*NICE*119*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2021-02-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19295800000, + 43.71064500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Mont de Marsan | Médiathèque", + "operator": "199__SYDEC40", + "ref": "0de9cd46-8924-5dcd-bdea-fb62c52a75a0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49180100000, + 43.89654200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Rue du Moulin - FAMECK", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE57FADA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09319100000, + 49.30624400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - The Originals Résidence - Grenoble Université", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "ref:EU:EVSE": "FRBMPS191279;FRBMPS191321;FRBMPS191329", + "operator": "Bump", + "ref": "191329;191279;191321", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75517920000, + 45.18679140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3720EVCP02;LFR3720EVCP01;LFR3720EVCP03", + "ref": "LFR3720EVCP02;LFR3720EVCP01;LFR3720EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SAINT CYR L ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05532000000, + 48.80925000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PYU3HHLOBIV", + "description": "Marseille-8E, Avenue du Prado", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38785000000, + 43.27915000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Savigny-sur-Orge - Avenue de l'Armée Leclerc", + "ref": "fbc281a8-8e86-5e99-8183-f7dd7326c0fa", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33719400000, + 48.68838900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP84000AVG0LIVADES", + "description": "AVENUE CABRIÈRES OLIVADES - AVIGNON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P84000*AVG*0LIVADES", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2020-11-20", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81300500000, + 43.92862300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "LFR3968EVCP01;LFR3968EVCP03;LFR3968EVCP02;LFR3968EVCP04", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3968EVCP01;LFR3968EVCP03;LFR3968EVCP02;LFR3968EVCP04", + "description": "PIERRELATTE - Nord", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69399600000, + 44.36696300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Super U - Tavaux", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PSYUTVX", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41819680240, + 47.04246437674 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/NYCFYH0OAI;Roanne, Boulevard Thiers", + "ref": "NYCFYH0OAI;591353", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNYCFYH0OAI;FREBNP6783941707401682429", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05830000000, + 46.02470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1691708485146983466", + "network": "Freshmile France", + "ref": "347195", + "opening_hours": "24/7", + "description": "Freshmile France/HGYDHN", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33566000000, + 48.85170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E08105001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Charleville Mézières - EFFIA", + "start_date": "2024-10-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72538100000, + 49.76925600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPFCUKKE;FREBNP4190881014682108121", + "description": "Réseau eborn/FCUKKE;Sevrier, Chemin de la Tournette", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "369010;FCUKKE", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14032000000, + 45.86460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Megève, Parking Molettaz;Réseau eborn/F0XWONZVIN", + "start_date": "2020-06-21", + "ref": "85778;F0XWONZVIN", + "ref:EU:EVSE": "FREBNPF0XWONZVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61474000000, + 45.85996000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR46223;FROTHPOTHR46222;FROTHPOTHR46213;FROTHPOTHR46212;FROTHPOTHR46211;FROTHPOTHR46221", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*OTHR*462*1*_*_;FR*SOD*S*OTHR*462*2*_*_", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "BMW HELI MOTORS VICHY", + "start_date": "2023-03-29;2023-02-03", + "operator:email": "sav@izivia.com", + "network": "BMW HELI-MOTORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39628300000, + 46.14586200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521234", + "description": "Freshmile France/CJB1ZC4BR6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3361819537651138234", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47880600000, + 48.17601900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-01;2023-09-11", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "description": "Rue Jules Siegfried", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10079608;FRUBIE10071020;FRUBIE10021045;FRUBIE10009110;FRUBIE10015994;FRUBIE10076778", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11188100000, + 49.49185700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6164720759089630704", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "598026", + "description": "Freshmile France/TMJD1RDZHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462200000, + 45.43337900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-01", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "PIBRAC - 38 Rue Principale", + "ref:EU:EVSE": "FRTLSE31417061" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28281400000, + 43.61756200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "We,Th,Fr,Tu,Mo 07:00-18:00,Sa 07:00-12:30", + "operator:email": "roaming@freshmile.com", + "ref": "578969", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4256942221916581984", + "charging_station:output": "22 kW", + "description": "Freshmile France/TBTJI4QVE3", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32457800000, + 49.47435100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8969503390693003960", + "ref": "1119231", + "description": "MobiSDEC/LLW66ZW1712V79", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23508100000, + 49.41796000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SALLES-SUR-L'HERS - Place Marengo", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11371001", + "network": "Reveo", + "start_date": "2022-02-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78722194444, + 43.29361110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BEYNES - Marroniers", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-08-29", + "ref:EU:EVSE": "FRY03E78062004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88454150000, + 48.84770600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref": "1b8434d6-568a-58ba-95c4-a6d6b979be3e", + "capacity": "2", + "operator": "47__DIEULOUARD", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "DIEULOUARD - Dieulouard", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06888400000, + 48.84291100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AMPUIS - PARKING MAISON MEDICAL", + "ref": "FR*SOD*S*SYDR*3*1*_*_", + "start_date": "2019-07-19", + "owner:ref:FR:SIREN": "200089720", + "ref:EU:EVSE": "FRS69PSYDR312;FRS69PSYDR311", + "network": "SYDER", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81003800000, + 45.48766300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH13E62480001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "LABOURSE - Rue Lavoisier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68398300000, + 50.48207600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2024-02-20", + "description": "ST AUBIN DU CORMIER - 8 La Chaine", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "ref:EU:EVSE": "FRS35P35253001B2", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41143900000, + 48.25989800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-10-05", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63080B", + "description": "SIEG63 - ePremium - Champeix - Place du Foirail", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12935190000, + 45.58960770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/THY3EJOYI0", + "ref:EU:EVSE": "FRFR1P4360781042850340900", + "opening_hours": "24/7", + "ref": "559790", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71965800000, + 48.63519800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "ref": "21820", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRS32PQWTCYQ", + "description": "SDEG32/QWTCYQ", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76199800000, + 43.52140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALFORTVILLE - Avenue Du Général Malferet", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94002001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42560000000, + 48.80240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001226;FRCG0E001227", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "FRCG0E001226;FRCG0E001227", + "start_date": "2024-04-30", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Groupe Fabre - Audi Albi - 81000 - 1", + "operator:email": "info@chargeguru.com", + "network": "Groupe Fabre - Audi Albi - 81000 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14074900000, + 43.90902300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*235*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE23511;FRM06PNICE23512", + "network": "NICE RP", + "description": "NICE - PARKING LEOPOLD II", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27198300000, + 43.71342900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Agen | Général de Gaulle | Contrepoint", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "e3d796ea-6386-530f-8453-ef93950312ed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61163400000, + 44.20340300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-02-22", + "description": "SIGEIF - 54 BOULEVARD DU MARECHAL FOCH - VERRIERES-LE-BUISSON", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*SIGE*375*4*_*_;FR*SOD*S*SIGE*375*1*_*_;FR*SOD*S*SIGE*375*2*_*_;FR*SOD*S*SIGE*375*3*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FRSIGPSIGE37541;FRSIGPSIGE37531;FRSIGPSIGE37521;FRSIGPSIGE37511", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26458200000, + 48.74322800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-11-30;2022-11-21", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76391001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LA LONDE - Rue des fusilles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96027400000, + 49.30614400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR1136EVCP03;LFR1136EVCP01;LFR1136EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR1136EVCP03;LFR1136EVCP01;LFR1136EVCP02", + "description": "ST NA POULIGUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.43585700000, + 47.27840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Saint Georges d'Oléron | Place des Goélands", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "6c253f70-a82d-52cc-a266-e9b2e6807a70" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24330100000, + 45.96804700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS82PMONCLAR", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/monclar", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "38998" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58615000000, + 43.96540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "POMPIDOU - CLAMART", + "start_date": "2021-05-04", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92140CLMP0MP1D0U", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23637000000, + 48.78474700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "description": "LE MANS Edison", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3548EVCP03;LFR3548EVCP02;LFR3548EVCP01", + "ref": "LFR3548EVCP03;LFR3548EVCP02;LFR3548EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18025700000, + 48.02520300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Langres", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-12-05;2022-11-23", + "ref:EU:EVSE": "FRPD1PITMLNG", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33973600000, + 47.87218500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUHWF1QXLIT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31846;UHWF1QXLIT", + "description": "La Roche-De-Glun, Grande Rue;Réseau eborn/UHWF1QXLIT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84427900000, + 45.01375200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Super U Cuiseaux", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP71157A", + "ref": "FRETIP71157A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38351241054, + 46.49300321728 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCNVVSS", + "start_date": "2023-10-06", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "description": "Cinéville - Vern-sur-Seiche", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62629190000, + 48.06562000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT087001", + "opening_hours": "24/7", + "description": "Carrefour Market - Nouzonville", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74326000000, + 49.82297600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-17", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Saint-Alban-Leysse - Sport 2000", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPSALSP", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95553800000, + 45.57338700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*576*1*_*_", + "description": "ES/ COMMUN DERSTEIN LA LAITERIE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ES B2B", + "ref:EU:EVSE": "FROTHPOTHR57611;FROTHPOTHR57612", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65939300000, + 48.42422300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22917250000, + 49.96626780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "ref": "FRCPIE6769035;FRCPIE6769075", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6769035;FRCPIE6769075", + "operator:email": "info@chargepoint.com", + "description": "ORIGNY ORIGNY 2", + "network": "ORIGNY ORIGNY 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30349100000, + 46.56092700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "100 kW;44 kW", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/H7UOMYFMJX", + "ref": "454041", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRFR1P1602469779755960945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19667300000, + 45.25360400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9008*02", + "ref:EU:EVSE": "FRV75P900802", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue de Rome 72", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32136900000, + 48.88069800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4962123303635591066", + "description": "Freshmile France/LLSWX39I1K00R0", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1191343", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.56485000000, + -17.53765100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Grenoble", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP1740", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87644800000, + 45.26567600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/A5L76J0IDO", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8304093283843157046", + "opening_hours": "24/7", + "ref": "370088", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89080000000, + 47.95770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "start_date": "2023-01-11", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "R3 - Norauto Noyelles Godault", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98835500000, + 50.41355100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLW66ZW46HN18V", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P8239183577552641807", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1153449" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86362300000, + 49.19419400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12218001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT CYPRIEN SUR DOURDOU - D46 Parking Régis", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-09-24", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41095800000, + 44.54572700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLAE66P19I", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA5P1060084266103928052", + "operator": "WAAT SAS | FR*WA5", + "ref": "805272", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66149500000, + 45.05428500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49E49328003", + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "description": "SAUMUR - Rond Point du Carrousel", + "start_date": "2024-04-09", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440861600, + 47.26641082943 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "FLORENTIN - Place de la Mairie", + "ref:EU:EVSE": "FRS81E81093001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03371000000, + 43.88739000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF007670", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF007670", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681832;531681831;531681879;531681878;531681880;531681881;531681834;531681833", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "description": "RELAIS OZOIR LA FERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65230000000, + 48.76660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-06-06;2021-06-07", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS46E46102001", + "network": "Reveo", + "description": "FIGEAC - Parking Jean Jaurès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02983500000, + 44.60642800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PZMMMWQ", + "operator:email": "roaming@freshmile.com", + "ref": "25045", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/ZMMMWQ", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39381000000, + 47.99550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "AUBY - Parc d'activités les Près Loribes", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59028001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06306900000, + 50.40889400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2920800", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plourin-Place An Ti Kéar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.68705000000, + 48.50914000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94067001", + "operator:email": "support@alizecharge.fr", + "description": "SAINT-MANDÉ - Place Charles Digeon", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-08-10;2021-07-15;2022-04-29", + "network": "SIPPEREC", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41888300000, + 48.84316200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-12;2024-06-11", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRLMSP90295291", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - B&B HOTEL RENNES EST CESSON SÉVIGNÉ", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60074500000, + 48.11417500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "description": "MOBIVE | Le lardin | Place Heni Faure", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6d33078a-6186-50a8-bbef-4dc4170e205f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22820100000, + 45.12951700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE48812;FRSIGPSIGE48811", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-09-02", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - AVENUE DE LOUVOIS - CHELLES", + "ref": "FR*SOD*S*SIGE*488*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58397700000, + 48.88112300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSBESAV", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies", + "description": "BESANCON VALENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99585000000, + 47.28256300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "FRLIBP003740000001914;FRLIBP003740000001901", + "capacity": "2", + "amenity": "charging_station", + "network": "ITM CHATILLON SUR MARNE;U EXPRESS MESANGER 1", + "ref:EU:EVSE": "FRLIBP003740000001914;FRLIBP003740000001901", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "ITM CHATILLON SUR MARNE;U EXPRESS MESANGER 1", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72505100000, + 50.80682120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Montardon | Chemin lanots (Parking)", + "ref": "08e3965a-889b-5e25-8f25-27deb512765c", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34886600000, + 43.36924400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DOMPIERRE-SUR-YON - Rue De Margerie - Parking Péri-Scolaire", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85081001", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38599000000, + 46.73901000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "description": "HEROUVILLE", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-01-28", + "capacity": "10", + "ref:EU:EVSE": "FRALLPEVCARSHRVIL", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32958000000, + 49.20753000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3425EVCP01;LFR3425EVCP02", + "amenity": "charging_station", + "ref": "LFR3425EVCP01;LFR3425EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "description": "ANNEMASSE", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24312900000, + 46.19325100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-06", + "description": "La Boucherie - Morlaix", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PLBCMRL", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.81351522419, + 48.59662932415 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/EAMPVLYEPK;Saint-Peray, Parking relais Maladière", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPEAMPVLYEPK", + "ref": "48334;EAMPVLYEPK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662400000, + 44.94513000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP3157096726805294262", + "description": "Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "679184" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34887200000, + 43.81696200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PFONCST", + "description": "Zolpan - Saint-Parres-aux-Tertres", + "opening_hours": "24/7", + "start_date": "2024-02-08", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09797259088, + 48.30467768364 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leroy Merlin - Ostwald - La Vigie", + "network": "DRIVECO", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30", + "amenity": "charging_station", + "capacity": "12", + "start_date": "2018-06-14", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRE11PLMSTRASBOURG672001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69545000000, + 48.53480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "start_date": "2023-10-17", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP01354A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP01354A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - SCI Justin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02659566550, + 46.25372461967 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-16", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR14611;FROTHPOTHR14612", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCVL - VAUGNERAY - PARKING CHEMIN DU STADE", + "ref": "FR*SOD*S*OTHR*146*1*_*_", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68260800000, + 45.73942500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6945855", + "capacity": "2", + "network": "PAUL CEZANNE STATION 1", + "amenity": "charging_station", + "start_date": "2024-08-20", + "description": "PAUL CEZANNE STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6945855", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51509500000, + 43.42139400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/E3P4AETVDQ", + "ref": "521255", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5379273403323288747", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83218100000, + 46.77256800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Thionville Yutz", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121056;FRVIAP121057", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-06-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17730000000, + 49.34840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "740997", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/CAS701RIZP", + "ref:EU:EVSE": "FRFR1P1195604154259252100", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19375600000, + 48.56437500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "BMW - Tarbes", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPEDENAUTOBMW650001", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09003300000, + 43.21948100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P117411818457657263", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1017006", + "description": "Freshmile France/LLMOMAIXE2GR6C", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.01207900000, + 47.85612800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-10;2024-05-02", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Lannion", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "ref:EU:EVSE": "FRSSDPJAOUENHYUNDAI223001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.47642600000, + 48.76414400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "network": "MODULO - ST PIAT - Pl. Vauvillers", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST PIAT - Pl. Vauvillers", + "ref:EU:EVSE": "FRS28E130523", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRS28E130523", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58361400000, + 48.54724100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P738299844791483443", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461916", + "description": "MobiSDEC/RJ5B3FAJRM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36512200000, + 49.19917700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1127928", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P1830403375942424552", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5LDKX3TMMR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33247000000, + 43.82855800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-03", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50370001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BRECEY - La Poste", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17006770000, + 48.72481010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8122700122;FRS81E8122700112;FRS81E8122700111;FRS81E8122700121", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ROQUECOURBE - Impasse Du Pontet", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2017-01-19", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29068163059, + 43.66341392777 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF076523", + "owner:ref:FR:SIREN": "531680568;531680569;531680567;531680566", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-07-06;2021-01-12", + "opening_hours": "24/7", + "ref": "FRHPCPNF076523", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS BOURG JASSERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29630000000, + 46.20290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-27;2024-04-04;2024-08-02", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49007026;FRS49P49007Z", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Angers - Academie;ANGERS - Place de l'Académie", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55926600000, + 47.46864800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60PBURY", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "46615", + "description": "Mouv'Oise/BURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34346000000, + 49.31330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "PECQUENCOURT - Hameau de Anchin", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH07E59456003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2023-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22047500000, + 50.38355600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30055001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BROUZET LES ALES - Parking Du Stade", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24528100000, + 44.13808700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1155852", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/LLXUCTF041S5Y2", + "ref:EU:EVSE": "FRS56P747663690340903237", + "network": "Mobilité électrique 56", + "charging_station:output": "22 kW;54 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.57683600000, + 47.51926600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP90212057", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel Campanile Villennes-sur-Seine", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-06-20", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99276000000, + 48.93293500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "description": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "ref:EU:EVSE": "FRMGPP93070B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156000, + 48.90586201000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSHEE216", + "network": "Shell AIRE DU HAUT-FOREZ NORD", + "operator": "Shell Recharge", + "socket:type2_combo:output": "50 kW", + "operator:email": "customerservice@shellrecharge.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "description": "Shell AIRE DU HAUT-FOREZ NORD", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref": "FRSHEE216" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81377300000, + 45.85625100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E15219001", + "description": "SALERS - Parking Des Sagranières - Rd 35", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49626800000, + 45.13869600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89369688", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-21", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A5b Galande la Mare Laroche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63536500000, + 48.61063300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Aixe Sur Vienne | Place Guillaume lemaistre", + "capacity": "2", + "amenity": "charging_station", + "ref": "4138f7a1-3626-56c0-90fb-9a480b98a8d3", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13751800000, + 45.79755800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "description": "CITROEN - COURTOMER", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE61CADA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35070800000, + 48.62142800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-01-11", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "MONTLUCON", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSMTLUC", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60148800000, + 46.34646200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3629EVCP03;LFR3629EVCP02;LFR3629EVCP01;LFR3629EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3629EVCP03;LFR3629EVCP02;LFR3629EVCP01;LFR3629EVCP04", + "description": "SANTENY Gayen", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57385400000, + 48.71499300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PKXLBBWPBDC", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-15E, 5 Boulevard de la Méditerranée", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36365800000, + 43.33332600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJDZRSUX6PK;FREBNPFREBNP87188", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "48448;JDZRSUX6PK", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Reignier-Esery, Grande Rue;Réseau eborn/JDZRSUX6PK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27012000000, + 46.13779000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "01308fd0-2d3d-11ee-be56-0242ac120002", + "owner:ref:FR:SIREN": "418415642", + "network": "hôtel dolce vita ajaccio", + "charging_station:output": "132 kW", + "capacity": "2", + "description": "Ajaccio", + "amenity": "charging_station", + "operator": "Freshmile", + "opening_hours": "24/7", + "operator:email": "advenir@freshmile.com", + "ref:EU:EVSE": "FRFR1EBVKF1", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73422000000, + 41.93070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Jardiland - Carcassonne", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "200 kW;22.17025 kW", + "ref:EU:EVSE": "FRPD1PINVCAR", + "start_date": "2023-12-02;2024-02-23", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38387429269, + 43.20818512248 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Aiguines, Place De La Mairie;Réseau eborn/HCWWXBM9FJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNHCWWXBM9FJ;FREBNPHCWWXBM9FJ", + "ref": "HCWWXBM9FJ;121589", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24315300000, + 43.77484900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Road", + "description": "Road/65a13a1bb0bd60001c2bffe6;Road/65a1395acc0948001c3599bd", + "amenity": "charging_station", + "opening_hours": "Mo,Su,Tu,We,Fr,Sa,Th 08:00-18:00;Su,Fr,Sa,Th,Tu,Mo,We 08:00-18:00", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "ref:EU:EVSE": "FREFLP301386041956548906;FREFLP7510948414940540581", + "operator": "Road | FR*EFL", + "ref": "1005513;1005510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54886300000, + 44.82084900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "description": "E.LECLERC - AVERMES", + "network": "E.LECLERC", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-10-14;2021-10-15", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "ref:EU:EVSE": "FROTHPOTHR25981;FROTHPOTHR259691;FROTHPOTHR259671;FROTHPOTHR259661;FROTHPOTHR259651;FROTHPOTHR259641;FROTHPOTHR259621;FROTHPOTHR25961;FROTHPOTHR259581;FROTHPOTHR259561;FROTHPOTHR259551;FROTHPOTHR259541;FROTHPOTHR259531;FROTHPOTHR259521;FROTHPOTHR259511;FROTHPOTHR259471;FROTHPOTHR259461;FROTHPOTHR259451;FROTHPOTHR259441;FROTHPOTHR259431;FROTHPOTHR259421;FROTHPOTHR259401;FROTHPOTHR259361;FROTHPOTHR259341;FROTHPOTHR259331;FROTHPOTHR259311;FROTHPOTHR25931;FROTHPOTHR259301;FROTHPOTHR259271;FROTHPOTHR259251;FROTHPOTHR259231;FROTHPOTHR259221;FROTHPOTHR259211;FROTHPOTHR259191;FROTHPOTHR259141;FROTHPOTHR259131;FROTHPOTHR259121;FROTHPOTHR259111;FROTHPOTHR259101;FROTHPOTHR25911;FROTHPOTHR259151;FROTHPOTHR259161;FROTHPOTHR259171;FROTHPOTHR259201;FROTHPOTHR25921;FROTHPOTHR259241;FROTHPOTHR259261;FROTHPOTHR259281;FROTHPOTHR259291;FROTHPOTHR259321;FROTHPOTHR259351;FROTHPOTHR259371;FROTHPOTHR259381;FROTHPOTHR259391;FROTHPOTHR25941;FROTHPOTHR259481;FROTHPOTHR259491;FROTHPOTHR259501;FROTHPOTHR25951;FROTHPOTHR259571;FROTHPOTHR259591;FROTHPOTHR259601;FROTHPOTHR259611;FROTHPOTHR259631;FROTHPOTHR259681;FROTHPOTHR25971;FROTHPOTHR25991", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*259*8*_*_;FR*SOD*S*OTHR*259*7*_*_;FR*SOD*S*OTHR*259*69*_*_;FR*SOD*S*OTHR*259*68*_*_;FR*SOD*S*OTHR*259*64*_*_;FR*SOD*S*OTHR*259*62*_*_;FR*SOD*S*OTHR*259*61*_*_;FR*SOD*S*OTHR*259*58*_*_;FR*SOD*S*OTHR*259*57*_*_;FR*SOD*S*OTHR*259*54*_*_;FR*SOD*S*OTHR*259*52*_*_;FR*SOD*S*OTHR*259*47*_*_;FR*SOD*S*OTHR*259*46*_*_;FR*SOD*S*OTHR*259*45*_*_;FR*SOD*S*OTHR*259*42*_*_;FR*SOD*S*OTHR*259*40*_*_;FR*SOD*S*OTHR*259*39*_*_;FR*SOD*S*OTHR*259*38*_*_;FR*SOD*S*OTHR*259*36*_*_;FR*SOD*S*OTHR*259*34*_*_;FR*SOD*S*OTHR*259*33*_*_;FR*SOD*S*OTHR*259*32*_*_;FR*SOD*S*OTHR*259*3*_*_;FR*SOD*S*OTHR*259*30*_*_;FR*SOD*S*OTHR*259*29*_*_;FR*SOD*S*OTHR*259*27*_*_;FR*SOD*S*OTHR*259*25*_*_;FR*SOD*S*OTHR*259*24*_*_;FR*SOD*S*OTHR*259*22*_*_;FR*SOD*S*OTHR*259*2*_*_;FR*SOD*S*OTHR*259*20*_*_;FR*SOD*S*OTHR*259*19*_*_;FR*SOD*S*OTHR*259*16*_*_;FR*SOD*S*OTHR*259*15*_*_;FR*SOD*S*OTHR*259*11*_*_;FR*SOD*S*OTHR*259*10*_*_;FR*SOD*S*OTHR*259*1*_*_;FR*SOD*S*OTHR*259*12*_*_;FR*SOD*S*OTHR*259*13*_*_;FR*SOD*S*OTHR*259*14*_*_;FR*SOD*S*OTHR*259*17*_*_;FR*SOD*S*OTHR*259*21*_*_;FR*SOD*S*OTHR*259*23*_*_;FR*SOD*S*OTHR*259*26*_*_;FR*SOD*S*OTHR*259*28*_*_;FR*SOD*S*OTHR*259*31*_*_;FR*SOD*S*OTHR*259*35*_*_;FR*SOD*S*OTHR*259*37*_*_;FR*SOD*S*OTHR*259*4*_*_;FR*SOD*S*OTHR*259*43*_*_;FR*SOD*S*OTHR*259*44*_*_;FR*SOD*S*OTHR*259*48*_*_;FR*SOD*S*OTHR*259*49*_*_;FR*SOD*S*OTHR*259*50*_*_;FR*SOD*S*OTHR*259*5*_*_;FR*SOD*S*OTHR*259*51*_*_;FR*SOD*S*OTHR*259*53*_*_;FR*SOD*S*OTHR*259*55*_*_;FR*SOD*S*OTHR*259*56*_*_;FR*SOD*S*OTHR*259*59*_*_;FR*SOD*S*OTHR*259*60*_*_;FR*SOD*S*OTHR*259*6*_*_;FR*SOD*S*OTHR*259*63*_*_;FR*SOD*S*OTHR*259*65*_*_;FR*SOD*S*OTHR*259*66*_*_;FR*SOD*S*OTHR*259*67*_*_;FR*SOD*S*OTHR*259*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32933300000, + 46.58937100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOF BORNE 1", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6604335", + "ref": "FRCPIE6604335", + "start_date": "2022-10-12", + "network": "MOF BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78554800000, + 48.09154000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4624226153001195159", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "398990", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XNCLKLI7GG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15600000000, + 46.98910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/s516745", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P6864742486790998958", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1177296", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50206800000, + 48.88451400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1167318", + "ref:EU:EVSE": "FRFR1P8997296957666231580", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLYZRSB9W252RX", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58155000000, + 44.85082000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "charging_station:output": "50 kW;360 kW;22 kW", + "opening_hours": "24/7", + "description": "ABB 360 JOE A LES CROCS VALENCE A;ABB 360 JOE A LES CROCS VALENCE B;ABB 360 JOE A LES CROCS VALENCE C;ABB 50+22 JOE A LES CROCS VALENCE D", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2024-04-02", + "socket:type2_combo:output": "50 kW;360 kW", + "ref": "1234629129;1234630504;1234630505;1234630506", + "ref:EU:EVSE": "FRSWSE1234630506;FRSWSE1234630505;FRSWSE1234630504;FRSWSE1234629129", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93942400000, + 44.95837500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "674228", + "ref:EU:EVSE": "FRFR1P6691511955890348884", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JO7VVPBFQW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39804000000, + 49.04398300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-17", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEURAUTOKIA592231", + "capacity": "3", + "description": "KIA - Roncq", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13058000000, + 50.73949800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2900200", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Arzano-Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44017400000, + 47.90168400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P2056292795229178082", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/LRX5I5HMT3", + "ref": "88199" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70607500000, + 48.23349800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP20022A;Zephyre/LP200238;Zephyre/LP200223;Zephyre/LP20017B", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P3711150432853357518;FRZP1P368819790537861748;FRZP1P5847112556432916518;FRZP1P8764983064552024295", + "charging_station:output": "22 kW", + "ref": "1119765;1119729;1119687;1119690", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06566400000, + 48.24313500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "description": "Sorofi_Le_Coteau ", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE649", + "operator": "RossiniEnergy", + "owner:ref:FR:SIREN": "839265983;839265982;839265981;839265980" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09953120000, + 46.00611350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "8c8296f6-a088-4b71-af5c-4886b13bf0ee", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "ref:EU:EVSE": "FRS77P77222A", + "description": "Guignes - Charles Denis Cadas", + "start_date": "2024-01-04", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79823100000, + 48.63713700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - VILLERS SAINT PAUL", + "start_date": "2024-06-19", + "ref:EU:EVSE": "FRIZFPFAST14413;FRIZFPFAST14411;FRIZFPFAST14412", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*144*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49758342593, + 49.28757278457 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - NOUAN LE FUZELIER - Av. de Toulouse", + "ref": "FRS41E4571;FRS41E4572", + "description": "MODULO - NOUAN LE FUZELIER - Av. de Toulouse", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4571;FRS41E4572" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03329300000, + 47.53377900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/AVPU2NNUUO", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P1326379093913594920", + "ref": "598146" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04623600000, + 49.40594600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON5812;FRGLYPLYON5811", + "charging_station:output": "3.68 kW", + "capacity": "2", + "description": "VAV03 - EGLISE DU VILLAGE", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*58*1*_*_", + "opening_hours": "24/7", + "start_date": "2021-06-30", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92894900000, + 45.78576000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-30", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30286001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT MAXIMIN - Chemin De La Croix Rouge", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44869400000, + 43.99331400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-29", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTAVUZX", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Guégon - Rue des Rosiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.56330100000, + 47.93859000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/YTA0PZVM7C", + "amenity": "charging_station", + "ref": "454479", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5650227515267090068" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21740000000, + 46.63130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/69421ac9-a339-43be-b9e8-8379c2016ab3", + "ref:EU:EVSE": "FRMW1P5678499283298563422", + "ref": "470244", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18669800000, + 47.98550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 23 RUE DES CORDONNIERS - BOUFFEMONT", + "ref": "FR*SOD*S*SIGE*195*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE19512;FRSIGPSIGE19511", + "start_date": "2021-09-22", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31095800000, + 49.04115200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Jallu Berthier - Audi Beauvais - CONCEPT MOTORS - 60000 - 1", + "start_date": "2023-03-31", + "socket:type2_combo:output": "225 kW", + "description": "Jallu Berthier - Audi Beauvais - CONCEPT MOTORS - 60000 - 1", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "100 kW;225 kW;22 kW", + "ref:EU:EVSE": "FRCG0E001722;FRCG0E001719;FRCG0E001720;FRCG0E001721", + "ref": "FRCG0E001722;FRCG0E001719;FRCG0E001720;FRCG0E001721", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10739254000, + 49.44082976000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "104 kW", + "socket:type2_combo:output": "104 kW", + "amenity": "charging_station", + "start_date": "2023-07-29", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE1000149477", + "ref": "856a2e78-e7a6-48ad-81ed-1e490869360a", + "owner:ref:FR:SIREN": "908460975", + "operator:email": "info@sorelenergies.fr", + "operator": "Sorel_energies", + "network": "Sorel Energies", + "description": "Marka_Groslay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36725400000, + 48.98366100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "ref:EU:EVSE": "FRS40PMB405514;FRS40PMB405513;Non concerné;FRS40PMB405511;FRS40PMB405512", + "ref": "FR*SOD*S*MB40*55*1*_*_;950d1e27-bc16-572e-9cbe-0f372b654c73", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-05-27", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "description": "MOBIVE | Dax | Parking de la Tannerie;DAX - PARKING DE LA TANNERIE", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05325500000, + 43.71493500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Mairie - SALOUEL", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-06-21", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE80SABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24501600000, + 49.87213900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9005232;FRALLEGO9005231;FRALLEGO9005221;FRALLEGO9004132;FRALLEGO9004131;FRALLEGO9004032;FRALLEGO9004031;FRALLEGO9005222", + "capacity": "8", + "description": "Allego Carrefour La Chapelle Saint Luc", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9005232;FRALLEGO9005231;FRALLEGO9005221;FRALLEGO9004132;FRALLEGO9004131;FRALLEGO9004032;FRALLEGO9004031;FRALLEGO9005222", + "operator:email": "info@allego.eu", + "start_date": "2022-04-07", + "network": "Allego Carrefour La Chapelle Saint Luc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02562139000, + 48.30581103000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "HIRSON Elysées", + "ref": "LFR3293EVCP03;LFR3293EVCP01;LFR3293EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3293EVCP03;LFR3293EVCP01;LFR3293EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09139900000, + 49.90823600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PEROLS - Rue De Georges Barnoyer", + "network": "Reveo", + "start_date": "2022-02-25", + "ref:EU:EVSE": "FRM34E34198002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95731833300, + 43.56518667000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/BKGPFE;Saint-Martial, Village Nord", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "BKGPFE;75098", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPBKGPFE", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27483000000, + 44.86730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7945191726256244863", + "amenity": "charging_station", + "ref": "682169", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/KOMG7EKARS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73319400000, + 47.71921200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ISSY LES MOULINEAUX - Ile Saint Germain", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E92040002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25881800000, + 48.82526000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Joyeuse, D203 - parking mairie", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref": "LLTHE8SO3U2UZ8", + "ref:EU:EVSE": "FREBNPLLTHE8SO3U2UZ8", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24067738000, + 44.47989549000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "operator": "ELECTRA", + "description": "Le Mans - Parc Manceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18198600000, + 48.03112600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking Saint-Quentin-En-Yvelines Jean-Bertin P+R - EFFIA", + "network": "EFFIA France", + "capacity": "10", + "ref:EU:EVSE": "FRP01E78423001;FRP01E784230011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04483587900, + 48.78945849000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6637895", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6637895", + "charging_station:output": "22 kW", + "description": "HYPERU BORNE 3", + "operator:email": "info@chargepoint.com", + "start_date": "2024-08-19", + "network": "HYPERU BORNE 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26260300000, + 47.83982900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "VFNOA7VIIP;756948", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "description": "La Baule , Parking Esplanade Lucien Barrière;Easy Charge/VFNOA7VIIP", + "ref:EU:EVSE": "FRECHP2192550628442679825;FRECHPVFNOA7VIIP", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40648500000, + 47.28065500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX17*14", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1714", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "description": "Paris | Rue Georges Berger 2", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30990000000, + 48.88090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "159373", + "ref:EU:EVSE": "FRFR1PHSKUAV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/HSKUAV", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49959000000, + 48.56140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9016*07", + "description": "Paris | Boulevard Emile Augier 12", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901607", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27394400000, + 48.85918400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20857660000, + 49.97184660000 + ], + [ + 1.20884950000, + 49.97190090000 + ], + [ + 1.20887990000, + 49.97183770000 + ], + [ + 1.20860700000, + 49.97178340000 + ], + [ + 1.20857660000, + 49.97184660000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/VW40LGQ14C", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P296578355729067078", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "435174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48710500000, + 47.63495500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPHESSHYUNDAI250001", + "start_date": "2022-11-17", + "network": "DRIVECO", + "description": "Hyundai - HESS - Besançon", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99290300000, + 47.24280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2916100", + "description": "Pleuven-Le Bourg Route de Quimper", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.04558900000, + 47.90671900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GINESTAS - Av De Ginesto - Parking Du Cimetière", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11164001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87666700000, + 43.26916700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "ref": "E175652;E175649;E175648;E175655", + "owner:ref:FR:SIREN": "315667410", + "ref:EU:EVSE": "FRZPEE175655;FRZPEE175652;FRZPEE175648;FRZPEE175649", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lu- Ve 08:30-17:00", + "description": "BORNE 3 - AMSOM LONGUEAU 7.4kW ;BORNE 4 - AMSOM LONGUEAU 7.4kW ;BORNE 1 - AMSOM LONGUEAU 22kW ;BORNE 2 - AMSOM LONGUEAU 22kW ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "7.4 kW;22 kW", + "network": "AMSOM HABITAT - LONGUEAU ;AMSOM HABITAT - LONGUEAU;AMSOM HABITAT - LONGUEAU/", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36238375306, + 49.87080987982 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09181001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE MAS D'AZIL - Mairie", + "charging_station:output": "22 kW", + "start_date": "2022-02-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36160100000, + 43.07929500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/MJEMLB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "86648", + "ref:EU:EVSE": "FRS80PMJEMLB", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20023000000, + 49.92790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*3*1*_*_", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST312;FRIZFPFAST311;FRIZFPFAST313", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - TREGUEUX", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2023-08-01", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75780700000, + 48.48953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2021-04-15;2024-04-22", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "FAY-DE-BRETAGNE - Rue Georges Sicard;OuestCharge - Diva Sp - Fay-De-Bretagne - Sicard", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44056A;FRS44E44056001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79337700000, + 47.41573600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-03;2015-07-01", + "description": "DAMMARTIN-EN-GOELE - Place Du Maréchal Foch;Dammartin-en-Goële", + "ref": "01F5ZAKH61G6MNTJGT6FCZKNGZ", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77153A;FRS77E77153001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68494200000, + 49.05384800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1896717;FRGSPP11742668;FRGSPP11742734;FRGSPP1896413", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Château Pey la Tour", + "network": "Château Pey la Tour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39540064424, + 44.84927139700 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - CLERE LES PINS - Rue des Pins", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E220276;FRS37E220274", + "description": "MODULO - CLERE LES PINS - Rue des Pins", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220276;FRS37E220274" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39297000000, + 47.42556200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "50__CCTT", + "description": "CCTT - Parking Gare routière - Toul", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "496ec67f-871e-583a-8489-d9a2c8f45929" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88729100000, + 48.67538500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:30-00:00,Sa 08:30-20:00,Su 10:00-18:00", + "operator:email": "contact@ezdrive.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Ezdrive", + "ref:EU:EVSE": "Non concerné", + "description": "Le Five Saint-Louis", + "charging_station:output": "11 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.39000000000, + -21.29000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | NEXON | Parking Office du Tourisme", + "capacity": "2", + "amenity": "charging_station", + "ref": "8db5bd80-be30-5766-b546-85f0aceada68", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18647100000, + 45.67757000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94071008", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SUCY EN BRIE - Rue des Brévannes", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-05", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51890966187, + 48.76888285015 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6560545;FRCPIE6529795;FRCPIE6560535", + "ref": "FRCPIE6560545;FRCPIE6529795;FRCPIE6560535", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "MENODIS BORNE 5", + "start_date": "2022-10-12", + "network": "MENODIS BORNE 5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31544200000, + 46.16987500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P422748947675181947", + "charging_station:output": "22 kW", + "description": "Leclerc/LLU2EODVV10O0V", + "ref": "1111962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26173800000, + 49.41673800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Puisseguin | Lieu-Dit Au Barail | Parking Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "00857a01-8057-578e-a2b1-890227235ef8", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07442200000, + 44.92506400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "network": "AlterBase", + "start_date": "2019-03-20", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - St Maixent L'Ecole - Centre commercial E.Leclerc - QC", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB52160A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22329910000, + 46.40825560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "description": "Airbus Marignane - parking M01", + "amenity": "charging_station", + "start_date": "2023-11-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS3130016", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23180600000, + 43.43709700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR4157EVCP02;LFR4157EVCP01;LFR4157EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "ARQUES - De Gaulle", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4157EVCP02;LFR4157EVCP01;LFR4157EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30513000000, + 50.72789600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "414741", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/GWXYTVBPSU", + "ref:EU:EVSE": "FRM45P1891456606962185433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87379600000, + 47.88473600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*167*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ16712;FRA16PWIIZ16711", + "start_date": "2023-01-09", + "network": "WIIIZ", + "description": "PIERLAS - PARKING VILLAGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03505700000, + 44.03207100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YBABHQFGAK", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1517258440644141468", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "757008", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96281800000, + 45.64463600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPD1PBOUGAU", + "socket:type2_combo:output": "120 kW;60 kW", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;120 kW;22 kW;60 kW", + "network": "Power Dot France", + "start_date": "2023-01-23;2022-01-11", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "description": "La Boucherie - Gauchy", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29586600000, + 49.81901500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Seyne Sur Mer, Parking Parc Navale;Réseau eborn/UQL1ORKDTH", + "ref": "UQL1ORKDTH;301252", + "ref:EU:EVSE": "FREBNPUQL1ORKDTH;FREBNUQL1ORKDTH", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88448200000, + 43.10157700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Harfleur - Boulangerie Feuillette", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPHARBF", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19571300000, + 49.51457700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NÎMES - Arènes", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;7 kW;11 kW", + "capacity": "43", + "ref:EU:EVSE": "FRP07E301890013;FRP07E301890012;FRP07E301890011;FRP07E30189001;FRP07E301890014", + "start_date": "2021-04-01;2024-03-07;2022-02-03;2022-06-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36157226234, + 43.83393280354 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNPCENTREROUTIER", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "description": "Toulon-sur-Allier, Centre Routier;Réseau eborn/centreroutier", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "centreroutier;30632", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36124000000, + 46.50620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "description": "L'Isle-sur-la-Sorgue , Av de la libération", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "NGOKGIG3FX", + "ref:EU:EVSE": "FRECHPNGOKGIG3FX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04884250000, + 43.91800500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "62 kW;22 kW;300 kW", + "start_date": "2023-01-10", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A13 Beuzeville Nord", + "ref:EU:EVSE": "FRVIAP102101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32767000000, + 49.32446400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892362", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLJ8A4D5S195ZR", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P644195122124802306", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48675000000, + 43.86905800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0815", + "ref": "FR*V75*PPX08*15", + "opening_hours": "24/7", + "description": "Paris | Rue de Liège 24", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32633070000, + 48.87959630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1017045", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4526847411878345535", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLRKO0D6628QMJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48022700000, + 45.18583200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Renault - Champigny-sur-Marne", + "start_date": "2021-06-18", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPMAURINRENAULT945001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49666700000, + 48.81720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS25P8872776318435834462", + "network": "SYDED", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "SYDED/LLIOK3JAN1K99S", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "ref": "892872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81372500000, + 47.31893900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-06-03", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - MASSAY - Av. Marechal Foch", + "description": "MODULO - MASSAY - Av. Marechal Foch", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E205972;FRS18E205973", + "ref": "FRS18E205972;FRS18E205973" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99522200000, + 47.15515600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY03E78364001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-11-30", + "description": "MARCQ - Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82040000000, + 48.86145000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*13*1*_*_;FR*SOD*S*QPRK*13*2*_*_", + "start_date": "2022-07-01", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQPKPQPRK1321;FRQPKPQPRK1311", + "network": "QPARK", + "description": "QPARK - 83006 TOULON - LA GARE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92951100000, + 43.12783900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "start_date": "2022-09-22", + "capacity": "1", + "socket:type2_combo:output": "56 kW", + "ref:EU:EVSE": "FRS81E8104500111;FRS81E8104500121;FRS81E8104500122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "description": "LES CABANNES - Promenade de l'Autan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94074308449, + 44.06692473044 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIONE407900", + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Baie de Somme", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE407900", + "operator": "IONITY", + "start_date": "2019-03-27", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75560700000, + 50.16733100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Lumine-De-Clisson - Vignoble", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-05-03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44173A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33943400000, + 47.08318300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-SOUPPLETS - Rue Des Pissotes;St-Soupplets", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2023-05-04;2016-08-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61WTEKG4MTFSZFAC2M", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77437A;FRS77E77437001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80638300000, + 49.03930700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCENF080017", + "socket:type2_combo:output": "300 kW;150 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRHPCPNF080017", + "opening_hours": "24/7", + "description": "RELAIS MASSY LECLERC", + "owner:ref:FR:SIREN": "531681694", + "network": "TotalEnergies Charge Rapide", + "start_date": "2024-08-08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30163500000, + 48.73934200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E139064;FRS41E139063", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E139064;FRS41E139063", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BLOIS - 23 Rue de la Vallée Maillard", + "network": "MODULO - BLOIS - 23 Rue de la Vallée Maillard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33605300000, + 47.61035700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-06", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLPZGQN", + "description": "Hennebont - Place du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27614900000, + 47.80472400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "FOS03 - PLACE DE LEGLISE", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*181*1*_*_", + "start_date": "2022-09-08", + "ref:EU:EVSE": "FRGLYPLYON18112;FRGLYPLYON18111", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84912600000, + 45.83242800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P92002*C;Metropolis - Express - Antony - Général de Gaulle", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92002C", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "ref": "484724", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30670000000, + 48.76306000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2019-11-27", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT592801", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Peugeot - Armentières", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86476000000, + 50.69321100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6593545", + "charging_station:output": "22 kW", + "ref": "FRCPIE6593545", + "description": "SONEPAR CONNECT MAURIENNE", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT MAURIENNE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34488600000, + 45.27540300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "Non concerné", + "network": "Leclerc Mios", + "amenity": "charging_station", + "start_date": "2021-03-22", + "capacity": "1", + "operator": "SAS Miodis", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "810800268", + "description": "Leclerc Mios", + "operator:email": "lucas.ribelles@scaso.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91873900000, + 44.61831400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint Jean d'Illac | Giratoire de la Fontaine", + "ref": "8b6c18ea-1db5-502e-9743-a3ab59545232", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78409900000, + 44.80996300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "LOUVRES - Rue André Malraux", + "ref:EU:EVSE": "FRS95E95351001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-06-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50930750000, + 49.05016670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2024-05-20", + "capacity": "14", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego FR ASF Les Brouzils", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO8009892;FRALLEGO8000141;FRALLEGO8000132;FRALLEGO8000103;FRALLEGO8000101;FRALLEGO8000102;FRALLEGO8000111;FRALLEGO8000112;FRALLEGO8000113;FRALLEGO8000121;FRALLEGO8000122;FRALLEGO8000131;FRALLEGO8000142;FRALLEGO8009891", + "description": "Allego FR ASF Les Brouzils", + "ref:EU:EVSE": "FRALLEGO8009892;FRALLEGO8000142;FRALLEGO8000141;FRALLEGO8000132;FRALLEGO8000122;FRALLEGO8000121;FRALLEGO8000113;FRALLEGO8000112;FRALLEGO8000103;FRALLEGO8000101;FRALLEGO8000102;FRALLEGO8000111;FRALLEGO8000131;FRALLEGO8009891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29093800000, + 46.87931400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P3174496194573286758", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "515153", + "description": "Leclerc/FYPYBGCKG4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673300000, + 48.98199800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Aix-En-Provence, Avenue Saint-Mitre des Champs", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PAKOHJSGZDG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41943800000, + 43.53698600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/N2TOJUBYT5", + "ref": "402560", + "ref:EU:EVSE": "FRS89P3932397332915918720" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59902000000, + 47.73803100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-06-05;2024-07-05", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ30012;FRA16PWIIZ30011;FRA16PWIIZ30021;FRA16PWIIZ30022", + "description": "SAINT-RAPHAEL - PARKING EPSILON 3 ", + "ref": "FR*SOD*S*WIIZ*300*2*_*_;FR*SOD*S*WIIZ*300*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79041230000, + 43.43523880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4049158941640232576", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Fr,Mo,Th,Tu,We 08:00-11:00", + "description": "Freshmile France/VBMK6MTPKS", + "operator": "Freshmile | FR*FR1", + "ref": "485157" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92863600000, + 45.69404700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Netto - Lannion", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PNTOLNN", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44627428518, + 48.74014350161 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPW1ACYG8P4K", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/W1ACYG8P4K", + "ref": "37150" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55164600000, + 45.07208400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "description": "EVzen/585EF195-9F66-417C-9DCF-490E9D2F20F0", + "ref:EU:EVSE": "FREVZP5651720752365956152", + "ref": "1175181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66948200000, + 44.83108800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR62111;FROTHPOTHR62121", + "description": "CAMPING MUNICIPALE LES SABLERES - VIEUX BOUCAU", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*621*2*_*_;FR*SOD*S*OTHR*621*1*_*_", + "start_date": "2023-04-19", + "network": "CAMPING MUNICIPALE LES SABLERES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40654600000, + 43.79349000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/NWPV9SOVSE;Voreppe, Av Honoré De Balzac", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPNWPV9SOVSE", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "NWPV9SOVSE;85721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63757000000, + 45.29580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30131;GRPQDU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPGRPQDU", + "description": "Réseau eborn/GRPQDU;Crémieu, Parking Rue du 19 Mars 1962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24647000000, + 45.72520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR31181;FROTHPOTHR31141;FROTHPOTHR31111;FROTHPOTHR31121;FROTHPOTHR31131;FROTHPOTHR31151;FROTHPOTHR31161;FROTHPOTHR31171", + "network": "SYSTEME U", + "start_date": "2022-01-28", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*311*6*_*_;FR*SOD*S*OTHR*311*4*_*_;FR*SOD*S*OTHR*311*3*_*_;FR*SOD*S*OTHR*311*2*_*_;FR*SOD*S*OTHR*311*1*_*_;FR*SOD*S*OTHR*311*5*_*_;FR*SOD*S*OTHR*311*7*_*_;FR*SOD*S*OTHR*311*8*_*_", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SUPER U - REZE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55905200000, + 47.17731600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "694223", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GSANUPSRJN", + "ref:EU:EVSE": "FRFR1P3674259862408420997" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.31933400000, + -17.74261800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1515", + "start_date": "2021-07-09", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FR*V75*PPX15*15", + "opening_hours": "24/7", + "description": "Paris | Rue de Lourmel 79", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28750300000, + 48.84510760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Mo,Tu,Th,We 13:30-17:30,Tu,Fr,We,Mo,Th 08:00-12:00,Fr 13:30-17:00", + "ref:EU:EVSE": "FRFR1P8297483629856396525", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLO2UX1HLOI7MI", + "ref": "980616" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79552100000, + 46.96783600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSRENAULT676001", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:00-12:00, Sa 13:30-18:00", + "start_date": "2022-03-10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Renault - HESS - Sélestat", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46515900000, + 48.27961400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900086", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PSTAUBINGAILLONCOVOI2", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31752250000, + 49.13942020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS22E22067001", + "description": "Graces-Parking de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18458700000, + 48.55663700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TREMBLAY SUR MAULDRE - Rue Du Pave", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY17E78623001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87521100000, + 48.77857200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRROSE202", + "start_date": "2021-12-14", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Renault_Pasquier", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97809000000, + 50.54778100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "PTBG", + "capacity": "2", + "ref": "RCG0C210D9", + "operator:email": "f.dineur@groupeptbg.fr", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "336450051", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWBCERCG0C210D9", + "charging_station:output": "22 kW", + "start_date": "2023-05-19", + "operator": "PTBG et associés", + "description": "PTBG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30433770000, + 49.19154410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE403906;FRIOYE403903;FRIOYE403902;FRIOYE403901;FRIOYE403904;FRIOYE403905;FRIOYE403951;FRIOYE403952;FRIOYE403953", + "description": "Taponas", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref": "FRIOYE403906;FRIOYE403903;FRIOYE403902;FRIOYE403901;FRIOYE403904;FRIOYE403905;FRIOYE403951;FRIOYE403952;FRIOYE403953", + "start_date": "2019-11-13", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Taponas", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137000, + 46.13428529000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "378645", + "description": "SDED52/OZAVWSNPPH", + "ref:EU:EVSE": "FRS52P1403711061414635830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14456200000, + 48.29725900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65295003", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-09-10", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "LUZ SAINT SAUVEUR - Avenue De Maoubesi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00825000000, + 42.87475800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE003101;FRIENE003102", + "description": "Mézidon Vallée d'Auge", + "ref:EU:EVSE": "FRIENE003101;FRIENE003102", + "network": "Mézidon Vallée d'Auge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301000, + 49.06174630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT GELY DU FESC - Avenue Du Pic Saint Loup", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34255002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80704300000, + 43.69375400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-ATHI-001", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ATHIS DE L'ORNE", + "ref:EU:EVSE": "FRS61P61007A", + "start_date": "2017-12-06", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50020200000, + 48.80917000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/MPGVWJFVRH", + "ref:EU:EVSE": "FRFR1P1364912533147087632", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466110", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74978400000, + 48.60648200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "CFCFDE", + "description": "Cierp-Gaud", + "network": "Freshmile", + "start_date": "2017-09-18", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "ref:EU:EVSE": "FRS31PCFCFDE", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64527000000, + 42.91470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "start_date": "2020-11-30", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD591551", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Ford - Groupe Dugardin - Faches" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08697100000, + 50.58503500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000044;FRCG0E000042;FRCG0E000043", + "network": "Les Saisies - Borne de recharge", + "amenity": "charging_station", + "description": "Les Saisies - Borne de recharge", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "ref": "FRCG0E000044;FRCG0E000042;FRCG0E000043" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54407500000, + 45.75317000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-19", + "charging_station:output": "12 kW", + "capacity": "2", + "description": "SCI DU SOLEIL", + "ref": "a193b38a-4d29-4a6d-91dc-b2707112713b", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLUMESCIDUSOLEIL11", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83000000000, + 43.12000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Libourne – Parking Récollets", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "2ea043a1-c6ef-58a4-b6cf-7b386d5ef199", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24146600000, + 44.91426900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE54DABA", + "start_date": "2023-07-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "DIEULOUARD - Maison de Santé", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06708500000, + 48.83876900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/640729936e73c7acf2766af1", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP8741970690210281304", + "ref": "767304" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52781000000, + 48.53581500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4123EVCP01;LFR4123EVCP02;LFR4123EVCP03", + "amenity": "charging_station", + "ref": "LFR4123EVCP01;LFR4123EVCP02;LFR4123EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "EPINAL Alsace" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44612500000, + 48.16661400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PTJMAUEDWMZ", + "start_date": "2021-01-01", + "description": "Marseille-1E, 90 Rue Grignan", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37385800000, + 43.29145000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026837;706079", + "charging_station:output": "100 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRS90P915508189313852558;FRS90P6642606119096115354", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW;22 kW", + "opening_hours": "24/7", + "network": "TE90", + "capacity": "3;6", + "description": "TE90/AGKHOMVXPL;TE90/LLT8RV71TNM38E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91932500000, + 47.64188200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RUE PAUL DAUTIER - VELIZY", + "start_date": "2020-06-16", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*55C*P78140*VLZ*DAUTIER", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP78140VLZDAUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21009100000, + 48.78062100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1288676484839259840", + "description": "Freshmile France/LLY2RWXV0HM6U1", + "operator:email": "roaming@freshmile.com", + "ref": "1173042", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03863000000, + 49.20173800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-06-01", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUNVE", + "capacity": "3", + "description": "Super U - Neuve-Église", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31635850000, + 48.33831020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/FR*EBN*PIZWGVKKKLW", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPIZWGVKKKLW", + "network": "Réseau eborn", + "capacity": "3", + "opening_hours": "24/7", + "ref": "85943", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79857700000, + 43.81695600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRFASE33094", + "operator": "Fastned France", + "amenity": "charging_station", + "capacity": "4", + "network": "Fastned Aire de Groisy", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Fastned Aire de Groisy", + "owner:ref:FR:SIREN": "853300010", + "ref:EU:EVSE": "FRFASE33094", + "charging_station:output": "300 kW", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16651550000, + 45.99978680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR9971;FROTHPOTHR9961;FROTHPOTHR9931;FROTHPOTHR9921;FROTHPOTHR9911;FROTHPOTHR9981", + "charging_station:output": "3.68 kW;22 kW", + "network": "CCI - BAYONNE PAYS BASQUE", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*99*8*_*_;FR*SOD*S*OTHR*99*6*_*_;FR*SOD*S*OTHR*99*2*_*_;FR*SOD*S*OTHR*99*1*_*_;FR*SOD*S*OTHR*99*3*_*_;FR*SOD*S*OTHR*99*7*_*_", + "capacity": "1", + "start_date": "2021-01-21;2020-12-02", + "opening_hours": "24/7", + "description": "CCI - BAYONNE PAYS BASQUE - ADOUR", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49017100000, + 43.49837100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/MCBGYNNUEB;Saint-Genest-Lerpt, Parking médiathèque", + "ref": "MCBGYNNUEB;96059", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPMCBGYNNUEB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33684500000, + 45.44484900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "75212", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPEFUC1KB7A5", + "description": "Réseau eborn/EFUC1KB7A5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30317100000, + 46.30721800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - SEURRE", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR43522;FROTHPOTHR43521;FROTHPOTHR43511;FROTHPOTHR43512", + "start_date": "2022-07-18", + "ref": "FR*SOD*S*OTHR*435*2*_*_;FR*SOD*S*OTHR*435*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14780200000, + 46.99060300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/GL45JADQ7A", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4222895596344132192", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "454032" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05011000000, + 48.71954000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Arès - Cap Ferret, France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP30203", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11357600000, + 44.77081800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4590956276247718361", + "network": "Freshmile France", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJCP3OVP21SAS", + "ref": "892377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31376200000, + 48.92652200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "ref": "7132427b-2d13-5785-8e51-9e2154dee1e4", + "capacity": "7", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "LE COTEAU-52 Boulevard Charles de Gaulle", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09651900000, + 46.01056400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "786984", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/W9KFWPOY3M", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P2139868661674896535", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84204100000, + 44.92552900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P831332609029371735", + "description": "MobiSDEC/HUK16Y2VIO", + "ref": "461760", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09896800000, + 49.28799100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P311728847150948285;FRZP1P1020919873826564279;FRZP1P5772318499518773731;FRZP1P1068898829518521251", + "capacity": "1", + "ref": "576308;576251;576299;576275", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP0095A3;Zephyre/LP00958D;Zephyre/LP009598;Zephyre/LP0095A7", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88959800000, + 43.56768900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-10-06", + "amenity": "charging_station", + "capacity": "1", + "description": "FPB_Lourdes", + "ref:EU:EVSE": "FRROSE422", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03363800000, + 43.11621600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VERNEUIL-SUR-SEINE - Parking De La Mairie", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY01E78642001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97499700000, + 48.97914500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "source": "Arrêté préfectoral N° 20 / 2010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21283330000, + 49.98183330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCMAMO - Corny-Sur-Moselle - Place du souvenir", + "ref": "71e024ed-843e-5c00-9992-c5b65a542d3b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05861100000, + 49.03502800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT GENIS DES FONTAINES - Allée Des Moines", + "ref:EU:EVSE": "FRS66E66175001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92160100000, + 42.54401600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20707120000, + 49.97145220000 + ], + [ + 1.20723030000, + 49.97147480000 + ], + [ + 1.20738690000, + 49.97150620000 + ], + [ + 1.20743120000, + 49.97151510000 + ], + [ + 1.20753810000, + 49.97153650000 + ], + [ + 1.20759730000, + 49.97154840000 + ], + [ + 1.20763890000, + 49.97155680000 + ], + [ + 1.20781560000, + 49.97159210000 + ], + [ + 1.20802700000, + 49.97163440000 + ], + [ + 1.20815600000, + 49.97166030000 + ], + [ + 1.20829540000, + 49.97168820000 + ], + [ + 1.20851250000, + 49.97173180000 + ], + [ + 1.20872660000, + 49.97177470000 + ], + [ + 1.20894200000, + 49.97181790000 + ], + [ + 1.20907640000, + 49.97184480000 + ], + [ + 1.20913320000, + 49.97185090000 + ], + [ + 1.20916030000, + 49.97183260000 + ], + [ + 1.20927400000, + 49.97159930000 + ], + [ + 1.20932950000, + 49.97146790000 + ], + [ + 1.20934300000, + 49.97143480000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIKAPIKEA11981;FRIKAPIKEA11971;FRIKAPIKEA119201;FRIKAPIKEA119191;FRIKAPIKEA119181;FRIKAPIKEA119171;FRIKAPIKEA119161;FRIKAPIKEA119101;FRIKAPIKEA11911;FRIKAPIKEA119111;FRIKAPIKEA119121;FRIKAPIKEA119131;FRIKAPIKEA119141;FRIKAPIKEA119151;FRIKAPIKEA11921;FRIKAPIKEA119211;FRIKAPIKEA11931;FRIKAPIKEA11941;FRIKAPIKEA11951;FRIKAPIKEA11991", + "ref": "FR*SOD*S*IKEA*119*9*_*_;FR*SOD*S*IKEA*119*8*_*_;FR*SOD*S*IKEA*119*3*_*_;FR*SOD*S*IKEA*119*17*_*_;FR*SOD*S*IKEA*119*14*_*_;FR*SOD*S*IKEA*119*10*_*_;FR*SOD*S*IKEA*119*1*_*_;FR*SOD*S*IKEA*119*11*_*_;FR*SOD*S*IKEA*119*12*_*_;FR*SOD*S*IKEA*119*13*_*_;FR*SOD*S*IKEA*119*15*_*_;FR*SOD*S*IKEA*119*16*_*_;FR*SOD*S*IKEA*119*18*_*_;FR*SOD*S*IKEA*119*19*_*_;FR*SOD*S*IKEA*119*20*_*_;FR*SOD*S*IKEA*119*2*_*_;FR*SOD*S*IKEA*119*21*_*_;FR*SOD*S*IKEA*119*4*_*_;FR*SOD*S*IKEA*119*5*_*_;FR*SOD*S*IKEA*119*7*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "start_date": "2023-04-28", + "capacity": "1", + "description": "IKEA ROUEN - PARKING CLIENT", + "opening_hours": "24/7", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09590500000, + 49.33154800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35207001B1", + "opening_hours": "24/7", + "description": "NOYAL SUR VILAINE - 12 rue de la motte ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52294000000, + 48.11491400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG63 - ePremium - Aubière - Romagnat;SIEG 63/FR*S63*P63014*A", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref": "518225", + "ref:EU:EVSE": "FRS63P63014A", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-12-15", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10937800000, + 45.74751700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2319598477690883970", + "description": "Freshmile France/KVP217VGA5", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "541796", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27616000000, + 49.14952000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PTXSCTU", + "ref": "33424", + "description": "Roulez Électrique En Haute-Garonne/TXSCTU", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49064600000, + 43.53105800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE93029003", + "capacity": "0", + "network": "SIPPEREC", + "description": "DRANCY - Rue Roger Salengro", + "start_date": "2022-05-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44113864920, + 48.92164086380 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AR Holding - 14100 - 2", + "amenity": "charging_station", + "description": "AR Holding - 14100 - 2", + "ref:EU:EVSE": "FRCG0E000816;FRCG0E000815;FRCG0E000814;FRCG0E000813", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "FRCG0E000816;FRCG0E000815;FRCG0E000814;FRCG0E000813", + "operator:email": "info@chargeguru.com", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25597700000, + 49.15099400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - CIMIEZ RP", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE2111;FRM06PNICE2112", + "start_date": "2019-01-21", + "ref": "FR*SOD*S*NICE*21*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27213342328, + 43.71735651796 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Astaffort | Parking Plateau", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "145a1e99-1f3f-5e1b-af68-f27c5b8ca079", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65056100000, + 44.06363700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE34912;FRSIGPSIGE34911", + "ref": "FR*SOD*S*SIGE*349*1*_*_", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - AVENUE DE LA PREMIERE ARMEE FRANCAISE AUDIENCE - ERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089000000, + 48.99130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "CANTELEU - Place Du Marché", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76157003", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03505100000, + 49.44836000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FROIDECONCHE Relet", + "ref": "LFR3460EVCP02;LFR3460EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3460EVCP02;LFR3460EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39164000000, + 47.81551000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "82e3468f-70f5-5ee6-8be4-963e6470e757", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Guéret | Espace André lejeune", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87458000000, + 46.18066000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "39001", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS82PYEMVUR", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/YEMVUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36016000000, + 44.02420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP83990STRCAP", + "owner:ref:FR:SIREN": "832489801", + "description": "CAPITAINERIE SAINT TROPEZ", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83990*STR*CAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63658100000, + 43.27252400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3601EVCP02;LFR3601EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "DOUARNENEZ Toubalan", + "ref:EU:EVSE": "LFR3601EVCP02;LFR3601EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34847000000, + 48.08875000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Intermarché - Evreux La Madeleine", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMELM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16363644020, + 49.00757758654 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75107;STY1D71XSX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPSTY1D71XSX", + "description": "Réseau eborn/STY1D71XSX;Vernosc-Lès-Annonay, Rue du Centre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71452000000, + 45.21870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - BIARRITZ Av. du Président J F Kennedy", + "ref:EU:EVSE": "FRETIP64122H", + "amenity": "charging_station", + "start_date": "2023-12-27", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54958900000, + 43.46109370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCAPROM", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Ibis Budget - Romorantin-Lanthenay", + "socket:type2_combo:output": "100 kW;187.5 kW", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76274071043, + 47.32719536415 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Feignies", + "ref:EU:EVSE": "FRDRVPCRFMKT597501", + "operator:email": "support@driveco.com", + "start_date": "2024-01-09;2023-12-15", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91709000000, + 50.29663500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Tours - Boulangerie Ange", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2024-06-20", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPTRSBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70390600000, + 47.43013100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "REPORAMA", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "description": "REPORAMA FLIERS - RANG DU FLIERS", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "ref:EU:EVSE": "FROTHPOTHR54412;FROTHPOTHR54411", + "ref": "FR*SOD*S*OTHR*544*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60978600000, + 50.41854100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6742055", + "description": "BIOPATH HDF SAINT-OMER", + "start_date": "2023-06-23", + "capacity": "2", + "amenity": "charging_station", + "network": "BIOPATH HDF SAINT-OMER", + "opening_hours": "24/7", + "ref": "FRCPIE6742055", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25081200000, + 50.75542600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "ref": "626108", + "opening_hours": "Th,We,Tu,Fr,Mo 08:00-18:00,Mo,Th,Fr,Tu,We 08:00-11:00,Sa 14:00-17:00,We,Tu,Th,Mo,Fr 14:00-18:00,Sa 09:00-11:00", + "socket:type2_combo:output": "60 kW", + "description": "Freshmile France/IYORKBPKU5", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2247862694071947693" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12894600000, + 44.61004400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "description": "PLEAUX - Place D'Empeyssine", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRV15E15153001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22844000000, + 45.13556000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LUC4FMQOJS", + "ref:EU:EVSE": "FRFR1P1007129082802173932", + "opening_hours": "24/7", + "ref": "694265", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131000000, + 44.89961700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP3078", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Saint-Brieuc", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72258400000, + 48.49340900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "761454", + "description": "Freshmile France/IQXOTO9RCO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2694543134537283445", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41478400000, + 46.89444000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20704700000, + 50.68501300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/XJGG1BX1BV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8821628339104240429", + "ref": "462012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76801800000, + 48.92007800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MOYRAZES - Parking Mairie", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12162001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43923500000, + 44.34193200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA4L3ZLEUIU7", + "ref:EU:EVSE": "FRWA4P790994486902568945", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "ref": "880143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11753300000, + 49.48411800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS49E49284001;FRS49P49284A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "description": "OuestCharge - Quick Charger Evtronic - Saint-Germain-des-Pres - Loire;SAINT-GERMAIN-DES-PRES - Rue de la Loire", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-09-02;2024-04-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83308490000, + 47.40965580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "CASTRES - Place Soult - Parking Extèrieur", + "start_date": "2020-03-16", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106501112;FRS81E8106501111;FRS81E8106501121;FRS81E8106501122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24709930987, + 43.60398580700 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BERCK - Place de l'Hôtel de Ville", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-01", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRHDFE62108002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59140753146, + 50.40775591454 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "VIGNEUX-DE-BRETAGNE - Le Pont De Pierre;OuestCharge - Pulse 50 - Vigneux-De-Bretagne - Pont De Pierre", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-22;2021-04-29", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS44E44217001;FRS44P44217A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74412790000, + 47.29341000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "description": "SIEG63 - ePremium - Thiers - Duchasseint", + "opening_hours": "24/7", + "network": "SIEG63", + "start_date": "2022-10-20", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRS63P63430B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54750980000, + 45.85707620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59112002", + "network": "pass pass électrique", + "description": "BRUAY-SUR-L'ESCAUT - Place Fontaine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53557700000, + 50.39772300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ESPONDEILHAN - Rue Trascastel", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34094001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26064166700, + 43.44068330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "L'HAY LES ROSES - Avenue du Général de Gaulle", + "amenity": "charging_station", + "start_date": "2022-03-30", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94038003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33980060000, + 48.77965340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Paris Nord Villepinte", + "start_date": "2024-04-09", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP90229751", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55350100000, + 48.96288800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bassillac et Auberoche | Rue Jacques Prevert", + "ref": "4845e2cd-6eb7-5c98-8409-44197d79d169" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81540600000, + 45.19272200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE45811;FRSIGPSIGE45812", + "start_date": "2024-04-12", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 10 BOULEVARD DU MONT DEST - NOISY-LE-GRAND", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*458*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54385130000, + 48.84261610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSRTHEL", + "operator": "Allego", + "start_date": "2023-02-24", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "RETHEL", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37260800000, + 49.52124300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR0821EVCP02;LFR0821EVCP01", + "ref": "LFR0821EVCP02;LFR0821EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MONTPELLIER Industrie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88531600000, + 43.58979100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Serres Castet | Chemin de Liben", + "ref": "a4dfad41-ae95-554e-85a4-3db5faf6027a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37716400000, + 43.37972300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AIZENAY - Place De La Mutualité", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85003001", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60784000000, + 46.74025000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego FR, Pathe, TV3 Conflans", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego FR, Pathe, TV3 Conflans", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "22", + "ref": "FRALLEGO8007632;FRALLEGO8007042;FRALLEGO8007041;FRALLEGO8001672;FRALLEGO8001661;FRALLEGO8001651;FRALLEGO8001612;FRALLEGO8001611;FRALLEGO8001502;FRALLEGO8001492;FRALLEGO8001491;FRALLEGO8001501;FRALLEGO8001652;FRALLEGO8001662;FRALLEGO8001671;FRALLEGO8007021;FRALLEGO8007022;FRALLEGO8007621;FRALLEGO8007622;FRALLEGO8007631;FRALLEGO8007641;FRALLEGO8007642", + "start_date": "2024-06-27", + "ref:EU:EVSE": "FRALLEGO8007632;FRALLEGO8007621;FRALLEGO8007042;FRALLEGO8007041;FRALLEGO8001662;FRALLEGO8001661;FRALLEGO8001651;FRALLEGO8001612;FRALLEGO8001611;FRALLEGO8001502;FRALLEGO8001492;FRALLEGO8001491;FRALLEGO8001501;FRALLEGO8001652;FRALLEGO8001671;FRALLEGO8001672;FRALLEGO8007021;FRALLEGO8007022;FRALLEGO8007622;FRALLEGO8007631;FRALLEGO8007641;FRALLEGO8007642" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07764300000, + 49.00400750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3582EVCP01", + "ref": "LFR3582EVCP01", + "description": "CLUSES Châtillon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58411600000, + 46.06858100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;22 kW;187.5 kW", + "description": "KFC - Bourges", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "start_date": "2022-12-15", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PKFCBOJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42274361608, + 47.09447255978 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLMYDZA6WOH", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "79138", + "network": "Réseau eborn", + "description": "Réseau eborn/LMYDZA6WOH", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89593400000, + 44.29475500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "EVBOX", + "start_date": "2023-05-17", + "capacity": "2", + "description": "pomport extension", + "owner:ref:FR:SIREN": "798894615", + "amenity": "charging_station", + "operator:email": "contact@evbox.com", + "opening_hours": "24/7", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVBEEVBP22134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40975270000, + 44.77190710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Darty - Auray", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PDRTAUR", + "network": "Power Dot France", + "start_date": "2023-06-23;2023-06-09", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;22 kW;180 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;180 kW", + "capacity": "10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00696710000, + 47.66556900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "ref:EU:EVSE": "FRDRVPCRFMKT847001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Sorgues", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87443200000, + 44.00517100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-18", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "ref": "FRESEPS42218BJ", + "amenity": "charging_station", + "description": "SEMOB Place Fourneyron", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRESEPS42218BJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39647900000, + 45.43945400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "network": "LEVAPARC", + "owner:ref:FR:SIREN": "353347222", + "capacity": "2", + "start_date": "2017-01-25", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LVPR*1*4*_*_;FR*SOD*S*LVPR*1*3*_*_;FR*SOD*S*LVPR*1*2*_*_;FR*SOD*S*LVPR*1*1*_*_", + "description": "LEVAPARC - PARKING JULES GUESDE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPLVPR142;FROTHPLVPR132;FROTHPLVPR131;FROTHPLVPR122;FROTHPLVPR121;FROTHPLVPR112;FROTHPLVPR111;FROTHPLVPR141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28861800000, + 48.89796400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6896585;FRCPIE6896555", + "description": "KB 0200 GLOS STATION 7", + "capacity": "4", + "network": "KB 0200 GLOS STATION 7", + "ref": "FRCPIE6896585;FRCPIE6896555", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28309200000, + 49.14549500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P444599708009390434", + "charging_station:output": "22 kW", + "ref": "971792", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLM61T7IZ2NYFH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14553600000, + 49.34485500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "300 kW;72 kW", + "ref:EU:EVSE": "FRVIAP104105", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-12-20", + "description": "ENGIE Vianeo - A50 Frères Lumières", + "charging_station:output": "50 kW;300 kW;72 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66657900000, + 43.19260100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1080117", + "network": "Freshmile France", + "description": "Freshmile France/LLPSDL0RJIHNPX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4699209999700198609", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20642800000, + 49.24289900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyundai - Amilly", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBPM452001", + "opening_hours": "Mo 00:00-23:59, Tu 00:00-23:59, We 00:00-23:59, Th 00:00-23:59, Fr 00:00-23:59, Sa 00:00-23:59, Su 00:00-23:59", + "operator:email": "support@driveco.com", + "start_date": "2022-10-11", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73336000000, + 47.97947200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "578876", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7958881908154670762", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GJ2TZ198MT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11060300000, + 49.03166000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E112534", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - VIERZON - Pôle d'activités", + "network": "MODULO - VIERZON - Pôle d'activités", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E112534", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06768176000, + 47.24563167000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P4371503791137580676", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1026798", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "description": "MobiSDEC/LLSUE5HAM1GXKA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11996600000, + 49.28626400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1128003", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LTABWNVAX", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P6970487847090895293" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85817700000, + 49.00750700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-20", + "description": "THEREVAL (HEBECREVON) - Parc d'activités les bruyères", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P502391", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17520900000, + 49.13309400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PAMPELONNE - Croix de Mille Aire de Services RN88", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-05-25", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81201001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23451600000, + 44.08009000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680489;531680488;531680482;531680483;531680484;531680485;531680486;531680487", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "start_date": "2023-11-14;2022-06-14", + "ref": "FRHPCPNF059902", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF059902", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "SARTHE SARGE LE MANS SUD", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25200000000, + 48.05530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-03;2024-03-15;2024-04-01", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49P49023A;FRS49E0490045;FRS49E49023001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "BEAUPREAU - La Loge Parking Bus;OuestCharge - Diva Sp - Beaupreau - Parking Bus", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98264200000, + 47.20994700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS59E59118001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BUSIGNY - Rue De La Victoire - Face Au N3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46922900000, + 50.03518420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRAS - Bld Vauban", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH06E62041008", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77058900000, + 50.28694500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30007002", + "description": "ALES - Ecole Des Mines", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08983200000, + 44.13315500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMWDFEN", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Rohan - Rue de Kerentree", + "start_date": "2016-11-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75233200000, + 48.06800100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-15", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346052641;FRLMSE12346052631;FRLMSE12346052632;FRLMSE12346052642", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B134", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "description": "PINDRAY-1-1;PINDRAY-1-2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81044700000, + 46.49073300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "475029", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93049A", + "description": "Métropolis/FR*MGP*P93049*A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413400000, + 48.86155000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - St Maixent l'Ecole - Place Denfert", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB79270P0005A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19848589000, + 46.41558618000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP6336524813756121199", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "1161636", + "network": "Atlante", + "description": "Atlante/FRATLFR00531", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97419000000, + 43.62099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89397439", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Chaumousey - Réservoir de Bouzey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35221500000, + 48.16717500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Uzerche | Place de la Liberation", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ec8c9138-aeb9-5f35-9bec-15990b0342c0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56338700000, + 45.42413200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-10-05", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - DARNEY - Rue Stanislas", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E150305;FRS88E150303", + "description": "MODULO - DARNEY - Rue Stanislas", + "ref": "FRS88E150305;FRS88E150303" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04404774000, + 48.08771725000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSRSCER", + "description": "REIMS CERNAY", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-03-03", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06559400000, + 49.26117200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3467EVCP02;LFR3467EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "FEIGNIES Empereur", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3467EVCP02;LFR3467EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92567700000, + 50.27942900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PPXDTZYBOYM", + "operator:email": "support@evzen.com", + "description": "Marseille-11E, Chemin de Saint-Menet Aux Accates" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49404000000, + 43.30195000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPP1JCQZGYPW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "31651", + "description": "Réseau eborn/P1JCQZGYPW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32177700000, + 45.43314800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLPMSLNVO1XQNT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6777504023672518983", + "operator": "Freshmile | FR*FR1", + "ref": "1002900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16659200000, + 49.10669600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PIBSSLO", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-01-30", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Ibis Budget - Saint-Lô" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08242392506, + 49.09894908572 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Garde, Parking des Bleuets Avenue Jules Ferry;Réseau eborn/VAJMYZYNQ8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "VAJMYZYNQ8;346952", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPVAJMYZYNQ8;FREBNP1571775198945415647" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01690200000, + 43.12484500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "e-Totem - VIAS - Office de Tourisme", + "ref:EU:EVSE": "FRETIP34332G", + "capacity": "5", + "operator": "E-TOTEM", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34332G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41757000000, + 43.31201400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "SOBAG - BLANZY", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR23341;FROTHPOTHR23321;FROTHPOTHR23311;FROTHPOTHR23331", + "start_date": "2021-09-15", + "operator:email": "sav@izivia.com", + "network": "SOBAG", + "ref": "FR*SOD*S*OTHR*233*3*_*_;FR*SOD*S*OTHR*233*1*_*_;FR*SOD*S*OTHR*233*2*_*_;FR*SOD*S*OTHR*233*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40929400000, + 46.70529600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6599095", + "ref": "FRCPIE6599095", + "charging_station:output": "22 kW", + "description": "SONEPAR CCF MAUGUIO", + "network": "SONEPAR CCF MAUGUIO", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93644600000, + 43.58831000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/R5KNPQNHQ2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "559769", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1367015541723721041", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02306800000, + 46.76113300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA1P7649357063335064914", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLZUFGRAWI", + "ref": "735843", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36120200000, + 50.99274200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LIDL;Freshmile France", + "ref:EU:EVSE": "LFR3611EVCP01;FRFR1P8788705711770570708;LFR3611EVCP02", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "ARRAS Churchill;Freshmile France/ST9CPGZFUY", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "socket:type2_combo:output": "120 kW", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "ref": "LFR3611EVCP01;529619;LFR3611EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74107300000, + 50.29963300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-01-04;2023-12-13;2023-12-14", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "description": "ALFEN 22kW CASINO AIX D;ALFEN 2x22 CASINO AIX A;ALFEN 2x22 CASINO AIX B;ALFEN 2x22 CASINO AIX C", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1234608518;FRSWSE1000133494;FRSWSE1234608519;FRSWSE1234608566", + "operator:email": "contact@sowattsolutions.com", + "ref": "1234608566;1234608519;1234608518;1000133494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91320200000, + 45.68881200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/UXPENJ0ONZ", + "operator:email": "roaming@freshmile.com", + "ref": "896658", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5531242785683249431", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76084000000, + 44.29317000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPLOC304501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Loc+ - Milhaud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31575100000, + 43.79974800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - DIGNY - Rue de Marechal Leclerc", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E171587;FRS28E171586", + "description": "MODULO - DIGNY - Rue de Marechal Leclerc", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-14", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS28E171587;FRS28E171586", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15479000000, + 48.53661600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-18:00", + "capacity": "2", + "network": "Sigma Tec", + "owner:ref:FR:SIREN": "487923724", + "amenity": "charging_station", + "ref": "cf782f10-bbbb-4e11-a7ed-083cc0459cd7", + "ref:EU:EVSE": "Non concerné", + "operator:email": "contact@sigma-tec.fr", + "operator": "Société Sigma Tec", + "charging_station:output": "22 kW", + "start_date": "2022-06-24", + "description": "Borne-Garage-Rossi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72000000000, + 45.51000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/ITYFK2QUQW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P6449932218729943741", + "ref": "75476", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48303400000, + 47.99461500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GHO Narbonne;Zephyre", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1PEAC66138;FRZP1P4290514985383141120;FRZP1P77678;FRZP1P4535610845029465212;FRZP1P33674128011359103;FRZP1PEAC39174", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "819283649", + "ref": "575993;576026;25016676-c20d-4f9a-958d-afe3ca430a70;576047", + "description": "Zephyre/LE006DA7;GHO Narbonne;Zephyre/LE006636;Zephyre/LE006E6C", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98694200000, + 43.16785000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-03-22", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "verbaere_stQuentin", + "ref:EU:EVSE": "FRROSE54", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26618000000, + 49.85097000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/FKHQQM", + "ref": "38977", + "ref:EU:EVSE": "FRS82PFKHQQM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37541000000, + 44.07910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*116*2*_*_;FR*SOD*S*FAST*116*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST11623;FRIZFPFAST11622;FRIZFPFAST11612;FRIZFPFAST11611;FRIZFPFAST11613;FRIZFPFAST11621", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - MONTPELLIER LE CRES", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94267440000, + 43.64143030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS41E4037;FRS41E4038", + "ref": "FRS41E4037;FRS41E4038", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - MER - Av. Maréchal Maunoury", + "description": "MODULO - MER - Av. Maréchal Maunoury", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50976500000, + 47.70079600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "896703", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/LLLDKMI521ND7G", + "ref:EU:EVSE": "FRS60P579136969081655262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10686400000, + 49.29735300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*32*2*_*_;FR*SOD*S*LYON*32*1*_*_", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3222;FRGLYPLYON3221;FRGLYPLYON3211;FRGLYPLYON3212", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "description": "CAF01 - MAIRIE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87252700000, + 45.85263500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REMOULINS - Rue du Moulin d'Aure", + "ref:EU:EVSE": "FRS30E30212002", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "charging_station:output": "60 kW;150 kW", + "start_date": "2021-12-24", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57553000000, + 43.93954300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "24751", + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/HWGLVR", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "ref:EU:EVSE": "FRS56PHWGLVR", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25156000000, + 47.69640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAMPING LES TROIS RIVIERES ", + "ref:EU:EVSE": "FRLUM3RIVIERES1", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "06:00-00:00", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2022-03-10", + "operator": "LUMI'IN", + "ref": "22504292-faaf-4219-8d24-8f822f74830c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14972300000, + 44.23714390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref": "461433", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMW1P2127540184267563990", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/1edde8f5-5974-467a-8e3e-f8f6e3bbfd3f", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14628000000, + 43.93390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 44 AVENUE DE LA CELLE ST CLOUD - VAUCRESSON", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*169*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE16911;FRSIGPSIGE16912", + "start_date": "2021-07-20", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16968800000, + 48.84657400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW CHALLANS - 85300 - 1", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRCG0E001381;FRCG0E001382", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCG0E001381;FRCG0E001382", + "network": "BMW CHALLANS - 85300 - 1", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2024-04-11", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84330500000, + 46.85234400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89876985", + "amenity": "charging_station", + "start_date": "2023-11-28", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Angers 1 Beaucouzé", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62826800000, + 47.46732500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "description": "YCHOUX - YCHOUX- PARKING DE COVOITURAGE PLACE FRANCK LAHARY;MOBIVE | Ychoux | Ychoux- Parking de Covoiturage Place Franck lahary", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS40PMB409114;FRS40PMB409113;FRS40PMB409111;Non concerné;FRS40PMB409112", + "ref": "FR*SOD*S*MB40*91*1*_*_;5139834c-8712-5718-8f7b-01a9e604a945", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "start_date": "2020-05-26", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94673200000, + 44.32757600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "description": "MEAUX - Résidence Mal Foch", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MXCA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-06-20", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88692700000, + 48.95254500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Quetigny", + "capacity": "8", + "amenity": "charging_station", + "ref": "FRALLEGO9990281;FRALLEGO9003542;FRALLEGO9003541;FRALLEGO9003941;FRALLEGO9003942;FRALLEGO9990282;FRALLEGO9990291;FRALLEGO9990292", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-10-20", + "ref:EU:EVSE": "FRALLEGO9990281;FRALLEGO9003542;FRALLEGO9003541;FRALLEGO9003941;FRALLEGO9003942;FRALLEGO9990282;FRALLEGO9990291;FRALLEGO9990292", + "description": "Allego Carrefour Quetigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10150290000, + 47.31038280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3419EVCP01", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW", + "description": "SARRE UNION Phalsbourg", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3419EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09061500000, + 48.93375800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34123001", + "description": "JUVIGNAC - Rue Callisto", + "start_date": "2022-01-30", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80989540000, + 43.61704180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNZAXHX", + "ref": "48391;NZAXHX", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Romans-Sur-Isère, Le Pont Neuf;Réseau eborn/NZAXHX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05586000000, + 45.04220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LX3M7GUQLZ", + "ref": "510521", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5762111818471780688", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09747600000, + 48.33466400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-06-01", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "POISSY - Hotel de Ville", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E78498001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04364333372, + 48.92770601177 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "La Salette-Fallavaux, Parking du Sanctuaire", + "ref:EU:EVSE": "FREBNPBJ9TZMED5E", + "ref": "BJ9TZMED5E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97698300000, + 44.85874050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2022-12-19", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "socket:type2_combo:output": "300 kW;225 kW", + "description": "Gonfreville-l'Orcher - Centre commercial Océane", + "opening_hours": "24/7", + "charging_station:output": "300 kW;225 kW", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22374100000, + 49.50678300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-17", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E76351004", + "description": "Parking le Havre Frissard - EFFIA", + "network": "EFFIA France", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13087000000, + 49.49127000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6629385", + "ref": "FRCPIE6629385", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "TROISGROS OUCHES", + "operator:email": "info@chargepoint.com", + "network": "TROISGROS OUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99203100000, + 46.01064100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHPLLP9I2USP1IJQM", + "operator": "Easycharge services", + "description": "Cahors, avenue Maryse Bastié", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "capacity": "12", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-11-22", + "ref": "LLP9I2USP1IJQM", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42356100000, + 44.46108263000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX16*19", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1619", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue Marceau 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29960000000, + 48.86550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7431817041890196695", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454146", + "description": "Freshmile France/SNGFSA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09210000000, + 48.63820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRTCBP01006", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "description": "IBIS - Rouge Honfleur", + "start_date": "2022-12-07", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "ref": "FRTCBP01006", + "owner:ref:FR:SIREN": "452873193", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24636276841, + 49.41412118400 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5099216510705517455", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/JRJ1YQKCPS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466065", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16180100000, + 47.89862900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Moutiers Automobiles - Rodez", + "ref:EU:EVSE": "FRSSDPALDHYUNDAI128501", + "operator:email": "support@driveco.com", + "start_date": "2022-07-05", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58382500000, + 44.36981500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Lanildut-Anse de Saint-gildas", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2911200", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.75049100000, + 48.47499100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E1107100;FRS11E11071001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "description": "CASCASTEL - Parking du Quai de la Berre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76034798124, + 42.98485136286 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hôtel le Tulipier - 22 kW AC", + "owner:ref:FR:SIREN": "451346746", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "Logis Hôtel le Tulipier", + "ref:EU:EVSE": "FRZP1PEAC77903;FRZP1PEAC77902", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr", + "ref": "94cddedc-60f3-43bd-a48c-361a291c77b0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88293700000, + 49.19146114000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - MONTHOIS - Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "ref": "FRS08E57717;FRS08E57716", + "ref:EU:EVSE": "FRS08E57717;FRS08E57716", + "network": "MODULO - MONTHOIS - Pl. de la mairie", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70894300000, + 49.31218900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346328", + "ref:EU:EVSE": "FRS80P8551443477615918548", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/KZMJLP", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54689800000, + 49.72191100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*255*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST25511;FRIZFPFAST25512;FRIZFPFAST25513", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-08-27", + "owner:ref:FR:SIREN": "951478437", + "description": "IZIVIA FAST - MCDONALDS - LAGNY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68188300000, + 48.87000850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44031A;FRS44E44031001", + "description": "OuestCharge - Diva Sp - La Chapelle-Glain - Chateau;LA CHAPELLE-GLAIN - Rue Du Château", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2024-04-18;2021-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19750900000, + 47.62176700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2023-05-22;2016-11-15", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Chatenoy;CHATENOY - Rue De La Mairie", + "ref:EU:EVSE": "FRS77P77102A;FRS77E77102001", + "ref": "01F5ZAKH61FD1B7KBDDZ58ZV6A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62648000000, + 48.23362400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "THALAZUR OUISTREHAM", + "amenity": "charging_station", + "operator": "GREENSPOT", + "ref:EU:EVSE": "FRGSPP1000056013;FRGSPP1000056014", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "THALAZUR OUISTREHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26027291525, + 49.28971826223 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219950;FRS37E219951", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - GIZEUX - Pl. de la mairie", + "opening_hours": "24/7", + "network": "MODULO - GIZEUX - Pl. de la mairie", + "ref:EU:EVSE": "FRS37E219950;FRS37E219951", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19641119000, + 47.39251545000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "ref": "982c600a-7c28-5a1f-9832-496a02545a76", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCTLB - Thiaville-sur-Meurthe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81007400000, + 48.41201300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P69386AA", + "amenity": "charging_station", + "capacity": "4", + "description": "LPA Parking Morand - N1 - Zone 1", + "opening_hours": "24/7", + "network": "LPA Parking Morand - N1 - Zone 1", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P69386AA", + "start_date": "2024-06-26", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84160035000, + 45.76773240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "38063d5b-5adc-5bda-91f1-8b3db65b5de5", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40", + "description": "MOBIVE | SABRES - Parking Maison des Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73968400000, + 44.14828100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 120 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE", + "start_date": "2022-06-01", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE28312;FRSIGPSIGE28311", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*283*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32049700000, + 48.96558600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "network": "GVA ST-ROMAIN DC", + "charging_station:output": "24 kW", + "ref:EU:EVSE": "FRCPIE6505045", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "ref": "FRCPIE6505045", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW", + "description": "GVA ST-ROMAIN DC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86467900000, + 45.52933700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1188430", + "description": "Leclerc/LLX8P3ZWU2MGR3", + "ref:EU:EVSE": "FRLE2P7039021692369821975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12247400000, + 43.67289000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint Capraise de lalinde | D660 | Air de Campings Cars", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ab0a8a75-976f-53fe-9f4c-a10d6add44c0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65225200000, + 44.84211300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "start_date": "2016-01-14", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - St Aubin le Cloud - Place de l'Eglise", + "ref:EU:EVSE": "FRSEOPAB28009A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35329080000, + 46.65044958000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "description": "Pays de Gex - ePremium - Segny - Carrefour", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRAGXP01399A", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07680600000, + 46.29464800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR0440EVCP02;LFR0440EVCP01", + "charging_station:output": "22 kW", + "description": "DUNKERQUE", + "ref:EU:EVSE": "LFR0440EVCP02;LFR0440EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36198800000, + 51.02465300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRM38E38545002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-06", + "description": "VIF - Parking Relais La Valonne", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67168600000, + 45.05027600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-14", + "description": "VALBONNE PARKING DOJO", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ14012;FRA16PWIIZ14011", + "ref": "FR*SOD*S*WIIZ*140*1*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05172900000, + 43.62295100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "735195", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8241209095750450052", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/TWSE1GJQYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64142000000, + 48.95131700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-16;2023-05-17", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Le Bouche à Oreille - Boutervilliers", + "ref:EU:EVSE": "FRPD1PBAOBTV", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05612649066, + 48.45627198845 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMMNYV6SKZ1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Ancelle, Place du Groupe Scolaire;Réseau eborn/MMNYV6SKZ1", + "start_date": "2020-06-21", + "ref": "MMNYV6SKZ1;32647" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20454100000, + 44.62348000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "capacity": "7", + "charging_station:output": "150 kW;50 kW;22 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPREIHM", + "socket:type2_combo:output": "50 kW;150 kW", + "description": "Reims - Hôtel Mercure Parc des Expos", + "start_date": "2024-04-26", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06931700000, + 49.23631400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "27", + "description": "NICE - Saleya", + "ref:EU:EVSE": "FRP07E060880092;FRP07E06088009;FRP07E060880091", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-12-18", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27403000000, + 43.69576000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6690455", + "start_date": "2023-02-17", + "network": "SONEPAR 3CCLIM VILLEBON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SONEPAR 3CCLIM VILLEBON", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6690455" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20642900000, + 48.68877300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "NIWYNHGWZQ", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPNIWYNHGWZQ", + "opening_hours": "24/7", + "network": "Easycharge services", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "socket:type2_combo:output": "24 kW", + "description": "Cucq , Rue Jean Jaurès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62740560000, + 50.50043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-01-23;2022-12-21", + "description": "ENGIE Vianeo - A20 Nauze Vert", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW;62.5 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP103109", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32650000000, + 43.95767700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLSLILDXGTE259", + "ref:EU:EVSE": "FRFR1P1527061002439975944", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1026720", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91399700000, + 44.94146400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "description": "Paris | Rue Duroc 2", + "opening_hours": "24/7", + "start_date": "2021-06-30", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31572500000, + 48.84828250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8928334204306356323", + "ref": "892656", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "description": "Freshmile France/THLHDS2GGN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.64261800000, + -20.93858400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2021-04-02", + "amenity": "charging_station", + "description": "Renault - Vienne", + "capacity": "10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT382001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85405000000, + 45.50310200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22385001", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "La Vicomte sur Rance-Parking de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98265500000, + 48.48693500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS18E182380", + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E182380", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VESDUN - Rte. de St Vitte", + "description": "MODULO - VESDUN - Rte. de St Vitte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43252000000, + 46.53885000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VEGETALIS", + "start_date": "2022-05-20", + "operator": "Vegetalis", + "amenity": "charging_station", + "opening_hours": "Mo-Sa 08:00-12:00, Mo-Sa 14:00-18:00, Su 09:00-13:00", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "charging_station:output": "22 kW", + "operator:email": "d.genre@groupegenre.com", + "description": "PEPINIERES TRETS", + "ref": "11056a14-b43f-4cd2-9122-069014db6366", + "owner:ref:FR:SIREN": "753765957" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70058000000, + 43.48050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "PROVIRIDIS", + "operator:email": "hello@proviridis.fr", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "network": "Z-E-N", + "capacity": "3", + "opening_hours": "24/7", + "description": "Z-E-N Saint Quentin Fallavier", + "ref:EU:EVSE": "FRPVDEZESQF38D013;FRPVDEZESQF38D012;FRPVDEZESQF38D011", + "charging_station:output": "300 kW;150 kW", + "owner:ref:FR:SIREN": "907502652" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11000000000, + 45.66000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81010001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "description": "AMBIALET - Rd 172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37734400000, + 43.94472800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref": "FRIONE401900", + "description": "IONITY Volvestre", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE401900", + "operator": "IONITY", + "start_date": "2019-02-15", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24562800000, + 43.33793300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-13;2024-04-25", + "capacity": "1;2", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Saint-Aubin-Des-Chateaux - Fau;SAINT-AUBIN-DES-CHATEAUX - Chemin Du Fau", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44153A;FRS44E44153001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48614100000, + 47.72066500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77357A;FRS77E77357001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-24;2016-09-02", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "PECY - Rue Du Général De Gaulle;Pécy", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61JWDDTJEE5S4C3RY1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07942800000, + 48.65607500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-OMER - Place Ghiere", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62765006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26140000000, + 50.75759900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E254852;FRS37E254863", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRS37E254852;FRS37E254863", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LARCAY - Rue des Anciens Combattants", + "start_date": "2024-03-28", + "description": "MODULO - LARCAY - Rue des Anciens Combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77707900000, + 47.36393800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-07", + "network": "Morbihan Energies", + "description": "Sarzeau - Rue Père Marie Joseph Coudrin", + "ref:EU:EVSE": "FRS56PWFEDWU", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76991400000, + 47.52500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON15821;FRGLYPLYON15811;FRGLYPLYON15812;FRGLYPLYON15822", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*158*1*_*_;FR*SOD*S*LYON*158*2*_*_", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "VIL13 - GRANDCLEMENT", + "start_date": "2022-05-19", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88893600000, + 45.76021600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "FOREST-SUR-MARQUE - Hammeau des Églantiers", + "opening_hours": "24/7", + "ref": "FR*MEL*P59510*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRMELP5951001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18992200000, + 50.63670700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMCDONALDSDECAZEVILLE123001", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 09:00-23:00, Tu 09:00-23:00, We 09:00-23:00, Th 09:00-23:00, Fr 09:00-23:00, Sa 09:00-23:00, Su 09:00-23:00", + "operator:email": "support@driveco.com", + "start_date": "2019-09-04", + "operator": "DRIVECO", + "description": "McDonald's - Decazeville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25653000000, + 44.55979900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6585765", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6585765", + "description": "SONEPAR CONNECT BUSSY-ST-MARTIN", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "network": "SONEPAR CONNECT BUSSY-ST-MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66406400000, + 48.84547300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/XAXIZNFOSG", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "454347", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P9141606668465095992" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58079700000, + 49.64795500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "23d4f69b-c067-5dcf-a1a0-2af139f46f24", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Gujan-Mestras | Parking Docteur Bezian", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06020000000, + 44.63863000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "ABLEIGES - Rue Gilles de Maupéou ", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95002001", + "start_date": "2024-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98176119290, + 49.08973836222 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20951750000, + 49.97177920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "12;14;8", + "description": "CASINO CHAMPNIERS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "network": "ALLEGO;GreenToWheel;CASINO CHAMPNIERS", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "start_date": "2023-03-21;2021-12-01;2021-11-21;2021-11-22;2022-02-10", + "ref:EU:EVSE": "FRSITE00000008;FRALLPCAS009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157000000, + 45.69275300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3421EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3421EVCP01", + "charging_station:output": "22 kW", + "description": "SCIONZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54977700000, + 46.06372900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Gemenos, Cours Pasteur", + "ref:EU:EVSE": "FRM13PTBBFFXUY50", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62862000000, + 43.29715100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/WYQIBGH61M", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P5428038521834178964", + "ref": "488913", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48571000000, + 47.51872400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ27021;FRA16PWIIZ27011", + "capacity": "1", + "start_date": "2023-11-03", + "description": "ROQUEFORT - PARKING CHEMIN DU PLAN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*270*2*_*_;FR*SOD*S*WIIZ*270*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04774900000, + 43.66730560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Mo,Th,Tu,Fr,We 08:00-17:00", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P9069968092543311865", + "description": "Freshmile France/F9HUXNS8SF", + "operator": "Freshmile | FR*FR1", + "ref": "510479" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71262900000, + 43.59593900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;22.17025 kW;160 kW;22 kW;200 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMRCCNA", + "opening_hours": "24/7", + "start_date": "2023-10-10", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "description": "Mercure - Chanas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81001416143, + 45.31676520512 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Pierre-En-Faucigny, Les Jourdies;Réseau eborn/NWHQAZN2YT", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "NWHQAZN2YT;30539", + "ref:EU:EVSE": "FREBNPNWHQAZN2YT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37743000000, + 46.07310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1137909", + "charging_station:output": "120 kW;22 kW", + "description": "EVzen/63DE15AA-6C01-4E05-B24F-6A2D4C7DB85F", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP7733603070701291874" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28277200000, + 46.95694600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*596*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR59612;FROTHPOTHR59611", + "description": "FROMAGERIE MILLERET - CHARCENNE", + "opening_hours": "24/7", + "start_date": "2022-03-01", + "network": "FROMAGERIE MILLERET", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77741500000, + 47.37361500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "KVCB2FBNZ3;31777", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Aouste-Sur-Sye, D93 - Parking Pharmacie;Réseau eborn/KVCB2FBNZ3", + "start_date": "2020-06-21", + "capacity": "2;4", + "ref:EU:EVSE": "FREBNPKVCB2FBNZ3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05683300000, + 44.71694000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPX0WTHFMYRH", + "description": "Réseau eborn/FR*EBN*PX0WTHFMYRH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "306130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71267000000, + 45.19000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Tarbes Odos", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP121035", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04448700000, + 43.20733400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3874719164522722127", + "description": "Freshmile France/HSKHX7OORW", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Th,We,Sa,Fr,Mo,Tu 08:30-18:00", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "466038", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57758900000, + 48.73401600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX14*02", + "ref:EU:EVSE": "FRV75PPX1402", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Boulevard de Port-Royal 97", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-06-30", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34086640000, + 48.83831240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6369729866787160478", + "ref": "597918", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LIRJJZROMK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.80486700000, + 41.95966700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-11", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPSIBLU173901", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 09:00-12:30, Mo 14:00-17:30, Tu 09:00-12:30, Tu 14:00-17:30, We 09:00-12:30, We 14:00-17:30, Th 09:00-12:30, Th 14:00-17:30, Fr 09:00-12:30, Fr 14:00-17:30, Sa 09:00-12:30, Sa 14:00-17:30, Su 09:00-12:30, Su 14:00-17:30", + "operator:email": "support@driveco.com", + "description": "La Pignade (Camping Siblu) - La Tremblade", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16326600000, + 45.78645200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900032", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "start_date": "2016-06-21", + "ref:EU:EVSE": "FRS27PHAYEMALHERBEEGLISE", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06483000000, + 49.22331500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22025002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Callac-Place Jean Auffret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42861000000, + 48.40414000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY03E78620001", + "operator": "Bouygues E&S", + "description": "TOUSSUS-LE-NOBLE - Rue Robert Esnault Pelterie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2021-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11487700000, + 48.74561400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE154", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "description": "Mairie_Solre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08908130000, + 50.17432830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLBJ4OYF3T", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "1041822", + "ref:EU:EVSE": "FRWATP1073295579404020459", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23719700000, + 48.84988400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRIONE449000", + "network": "IONITY GMBH", + "start_date": "2022-09-15", + "description": "IONITY Sisteron", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE449000", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91286100000, + 44.23604500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - FERE CHAMPENOISE - Rue de l'église", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E44684;FRS51E44685", + "ref": "FRS51E44684;FRS51E44685", + "charging_station:output": "0 kW", + "description": "MODULO - FERE CHAMPENOISE - Rue de l'église", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99186700000, + 48.75359900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "GEDRE - patinoire", + "ref:EU:EVSE": "FRS65E65192001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "18 kW;7 kW", + "start_date": "2022-03-01", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01832000000, + 42.78889000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "ref": "FRIENE000501;FRIENE000502", + "capacity": "4", + "ref:EU:EVSE": "FRIENE000501;FRIENE000502", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Baud", + "operator": "NW IECharge", + "description": "Baud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03887800000, + 47.87866800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NEZIGNAN-L'EVEQUE - Route de Pezenas", + "ref:EU:EVSE": "FRS34E34182001", + "start_date": "2024-01-19", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40816320000, + 43.42468010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Ploeren - Rue des Deux Moulins", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PFDWQJB", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-09-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86932600000, + 47.65571600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1179270", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8571665846089305795", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LM0F83BB522V0P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74561300000, + 48.59054200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30334003", + "operator": "Bouygues E&S", + "description": "UZES - Avenue De La Libération", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41720800000, + 44.01164200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Hyundai - Dechy", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPLEMPEREURHYUNDAI591871", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2020-07-17;2021-11-08", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11935200000, + 50.34334700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SCI CONGLOMERAT", + "network": "SCI CONGLOMERAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "start_date": "2023-07-12", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr", + "ref": "FRC2P007301;FRC2P007302", + "ref:EU:EVSE": "FRC2P007301;FRC2P007302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18760310000, + 47.93451930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "4 kW;12 kW", + "capacity": "2", + "network": "LUMI'IN", + "description": "CAMPING LA MONTAGNE ;CAMPING LA MONTAGNE", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "807940069", + "start_date": "2022-08-09;2021-11-26", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMELAMONTAGNEPO1;FRLUMELAMONTAGNESA", + "operator": "LUMI'IN", + "ref": "a300ab22-3725-4fad-9670-e76fe6594a81;167730c5-b7ef-48d4-b39c-9337bfece636" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89000000000, + 44.02000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Carignan-De-Bordeaux | Parking Centre Culturel", + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "ref": "337c3c9c-7478-5d1b-a661-b3e6885e51e9", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47449100000, + 44.81299400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "U EXPRESS - NEUVY ST SEPULCHRE", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-01-26", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE36CABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48258200000, + 46.16885500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/63ac32f411a81405a7c96369", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRBHMP4916653282210872917", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM", + "ref": "707684" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65370200000, + 47.23434900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "626366", + "description": "Leclerc/CVPTFRAEJ5", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P5981679190393766150", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413900000, + 48.08631400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "Saint-Chamas, Rue Victor Ferrier", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PU3M2CRXOTQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03077200000, + 43.54993500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "402599", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7159932364420459511", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/QCG03FUW7F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19294100000, + 48.15891100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "description": "R3 - Norauto Bethune", + "start_date": "2023-02-24", + "operator": "R3", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FR3R3P89363738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62920700000, + 50.52431700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/LLIN3JV1C1KSC2", + "ref:EU:EVSE": "FRFR1P7225453575645163819", + "operator": "Freshmile | FR*FR1", + "ref": "892158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16276600000, + 49.25247300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Système U - Gevrey Chambertin", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PSYUGCH", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-09-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98443700000, + 47.23447800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "505812;FDSV6LVTDM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPFDSV6LVTDM;FREBNP3506991702296347867", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "description": "Montbonnot, Innovallée;Réseau eborn/FDSV6LVTDM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81274200000, + 45.22161500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARF - Bornes Publiques/B2B81770-2D82-4B37-ADDC-1932D36E3B86", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP3827116658975884953", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "674615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61376300000, + 44.06321500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IBIS - LAVAL", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "start_date": "2024-01-30", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR79541;FROTHPOTHR79531;FROTHPOTHR79511;FROTHPOTHR79521;FROTHPOTHR79551;FROTHPOTHR79561", + "ref": "FR*SOD*S*OTHR*795*6*_*_;FR*SOD*S*OTHR*795*3*_*_;FR*SOD*S*OTHR*795*2*_*_;FR*SOD*S*OTHR*795*1*_*_;FR*SOD*S*OTHR*795*4*_*_;FR*SOD*S*OTHR*795*5*_*_", + "opening_hours": "24/7", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74740040000, + 48.08871020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "370211;GB6G3PUH3V", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-03-10", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Brioude, Place du Postel;Réseau eborn/GB6G3PUH3V", + "ref:EU:EVSE": "FREBNP5757064181673475784;FREBNPGB6G3PUH3V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38761500000, + 45.29163600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Paulien, Rue de l’Anyade;Réseau eborn/GXLFC4JZQM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346739;GXLFC4JZQM", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP628228166608625866;FREBNPGXLFC4JZQM", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81171000000, + 45.13562000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*402*5*_*_;FR*SOD*S*OTHR*402*1*_*_;FR*SOD*S*OTHR*402*2*_*_;FR*SOD*S*OTHR*402*3*_*_;FR*SOD*S*OTHR*402*4*_*_", + "network": "SYSTEME U", + "socket:type2_combo:output": "63 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;63 kW", + "opening_hours": "24/7", + "description": "SUPER U - VILLEBOIS-LAVALETTE", + "operator:email": "sav@izivia.com", + "capacity": "1;3", + "start_date": "2023-03-14;2022-05-16;2022-05-13", + "ref:EU:EVSE": "FROTHPOTHR40252;FROTHPOTHR40251;FROTHPOTHR40241;FROTHPOTHR40231;FROTHPOTHR40211;FROTHPOTHR40221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27543400000, + 45.49017100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/DZLXJEZHBZ", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1006057251695487886", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "510461", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39418800000, + 47.09291400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30985", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Narbonne Sud, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98221435000, + 43.16187040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "585539", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P681085599947095745", + "network": "Freshmile France", + "description": "Freshmile France/TY2KJ0CUTI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29832000000, + 48.79752900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-02-22", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;7 kW", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*TCB*P02577", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRTCBP02577", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Best Western - Domaine de Montjoie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46164826817, + 43.54036980765 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1191328", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLSX02SQ9140FU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4671439697745453958" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51601400000, + -20.89391500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/AVHMBVDDEL", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1326881653788320559", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461649" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948000000, + 49.18362000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC60127", + "owner:ref:FR:SIREN": "511748881", + "description": "Mazda - Montelimar- 22KW AC ", + "amenity": "charging_station", + "capacity": "1", + "network": "DPA -MAZDA MONTELIMAR", + "operator:email": "advenir@zeborne.com", + "start_date": "2021-04-30", + "charging_station:output": "22 kW", + "opening_hours": "Mo-sat 08:00-19:00,Sun 09:00-18:00", + "ref": "60127", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74170180000, + 44.52534544000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-22", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE365", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Kiloutou_Lesquin", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08719500000, + 50.58756200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MORAINVILLIERS - Château", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78431003", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96419190000, + 48.94189790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2023-11-28", + "ref": "FRIOYE460853;FRIOYE460852;FRIOYE460851;FRIOYE460810;FRIOYE460809;FRIOYE460807;FRIOYE460804;FRIOYE460802;FRIOYE460801;FRIOYE460803;FRIOYE460805;FRIOYE460806;FRIOYE460808;FRIOYE460811;FRIOYE460812", + "capacity": "15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE460853;FRIOYE460852;FRIOYE460851;FRIOYE460810;FRIOYE460809;FRIOYE460807;FRIOYE460804;FRIOYE460802;FRIOYE460801;FRIOYE460803;FRIOYE460805;FRIOYE460806;FRIOYE460808;FRIOYE460811;FRIOYE460812", + "description": "Frouard", + "network": "Frouard", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14936900000, + 48.74275400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;43 kW;22 kW;3.7 kW", + "network": "Territoire de Energie TE53;TEM53", + "start_date": "2024-05-28;2021-06-28", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS53P53147A;FRS53E53147001", + "description": "MAYENNE - Avenue Paul Guyard;OuestCharge - Quick Charger Evtronic - Mayenne - Guyard", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61268700000, + 48.30049600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAURY - Place De Boutas", + "operator:email": "support@alizecharge.fr", + "start_date": "2017-09-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66107001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59090200000, + 42.80981400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Dombrot-le-Sec", + "ref": "FRIENE011902;FRIENE011901", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE011902;FRIENE011901", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-11-20", + "description": "Dombrot-le-Sec" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90213700000, + 48.14098000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "FOUGERES - parking du rocher coupe ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35115004B1", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21077400000, + 48.35536600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "SAINT SULPICE SUR RISLE", + "ref:EU:EVSE": "FRS61P61456A", + "ref": "SE61-MLMA-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63996000000, + 48.76132000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7484883034809749367", + "network": "Freshmile France", + "description": "Freshmile France/LLIVPEYXW2LU53", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892245" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.03674400000, + 48.85927700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Roulez Électrique En Haute-Garonne/GSXHEQ", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "ref:EU:EVSE": "FRS31PGSXHEQ", + "ref": "64856" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74353200000, + 43.04893900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92050015", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "NANTERRE - Rue Salvador Allende" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22553995767, + 48.89435770039 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000536;FRCG0E000537;FRCG0E000538", + "start_date": "2024-03-22", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "CARREFOUR MARKET GODERVILLE - 76110 - 1", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000536;FRCG0E000537;FRCG0E000538", + "charging_station:output": "22 kW;2 kW", + "network": "CARREFOUR MARKET GODERVILLE - 76110 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38211700000, + 49.64624500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE18412;FRM06PNICE18411", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2022-06-29", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "NICE - PARKING PASTORELLI RP", + "ref": "FR*SOD*S*NICE*184*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27194916500, + 43.70102033877 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "77fefdbd-29a2-5415-9cf8-c6621952071e", + "description": "MOBIVE | Virazeil | Aire de Covoiturage", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21650800000, + 44.50606200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-01-31", + "description": "SIGEIF - 102-104 AVENUE DU PRESIDENT WILSON - LES PAVILLONS-SOUS-BOIS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*323*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE32312;FRSIGPSIGE32311", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51423253890, + 48.90870801771 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS146076;FRBMPS146074", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "146074;146076", + "description": "Bump - Holiday Inn Bordeaux-Merignac", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69478500000, + 44.85176500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3155EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "VILLEPINTE 2 Bréguet", + "ref": "LFR3155EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56134500000, + 48.95751300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Vianne | Aire de Covoiturage", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "76600627-cb72-5fd1-a801-2746c1700445", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31799200000, + 44.19601700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "538dfdaa-22c4-5893-937b-56fc5720c748", + "description": "Morsang-sur-Orge - Allée de Beauséjour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34796100000, + 48.65011600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "AVENUE DE PICARDIE 38 - VELIZY", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-24", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP78140VLZP1CARD1E38", + "ref": "FR*55C*P78140*VLZ*P1CARD1E38", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17015000000, + 48.78519100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3072EVCP01", + "ref:EU:EVSE": "LFR3072EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SIN LE NOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12296700000, + 50.35428100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-20;2023-10-12", + "ref:EU:EVSE": "FRPD1PITMBEB", + "opening_hours": "24/7", + "description": "Intermarché - Bourg-en-Bresse", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22874852038, + 46.19554643265 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2022-03-21", + "ref:EU:EVSE": "FREBNPOYFFQZBYFP", + "description": "Réseau eborn/OYFFQZBYFP;Pontcharra, Parking Mairie", + "ref": "OYFFQZBYFP;1069329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02029700000, + 45.43227700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP59228A", + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Silver Wash Auto Férin", + "socket:type2_combo:output": "100 kW;150 kW", + "start_date": "2023-09-15", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP59228A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09376660000, + 50.34256420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-07-04;2024-07-01", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E38185008", + "network": "EFFIA France", + "description": "Parking Grenoble Verdun - Préfecture - PARK GRENOBLE ALPES METROPOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73164190000, + 45.18908630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT622321", + "opening_hours": "24/7", + "start_date": "2023-11-22", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Vendin-Lès-Béthune", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60869900000, + 50.54074100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/CVTZIA5YAA;La Freissinouse, Parking de la Mairie", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "32632;CVTZIA5YAA", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPCVTZIA5YAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01030000000, + 44.53590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR51812;FROTHPOTHR51811;FROTHPOTHR51821;FROTHPOTHR51822", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*518*1*_*_;FR*SOD*S*OTHR*518*2*_*_", + "start_date": "2022-10-24", + "description": "BRICOMARCHE - MONTMOROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52109700000, + 46.67568200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6724055", + "network": "CGED SARLAT", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-16", + "description": "CGED SARLAT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6724055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23258700000, + 44.87741300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "529079", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P291374506918484700", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ACHEMHFYWZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04276100000, + 42.57552500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "AEROVILLE - NORDIC CHIC;AEROVILLE - AFRICA LODGE;AEROVILLE - BALI MARKET;AEROVILLE - TERMINAL COOK;AEROVILLE - TOKYO", + "amenity": "charging_station", + "ref": "FR*SOD*S*UNIB*16*3*_*_;FR*SOD*S*UNIB*16*1*_*_;FR*SOD*S*UNIB*13*2*_*_;FR*SOD*S*UNIB*13*1*_*_;FR*SOD*S*UNIB*14*1*_*_;FR*SOD*S*UNIB*14*2*_*_;FR*SOD*S*UNIB*15*1*_*_;FR*SOD*S*UNIB*15*2*_*_;FR*SOD*S*UNIB*16*2*_*_;FR*SOD*S*UNIB*17*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096", + "start_date": "2021-06-11;2021-01-29;2021-02-05", + "ref:EU:EVSE": "FRURWPUNIB1631;FRURWPUNIB1611;FRURWPUNIB1521;FRURWPUNIB1422;FRURWPUNIB1421;FRURWPUNIB1411;FRURWPUNIB1322;FRURWPUNIB1321;FRURWPUNIB1312;FRURWPUNIB1311;FRURWPUNIB1412;FRURWPUNIB1511;FRURWPUNIB1512;FRURWPUNIB1522;FRURWPUNIB1612;FRURWPUNIB1621;FRURWPUNIB1622;FRURWPUNIB1632;FRURWPUNIB1711;FRURWPUNIB1712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52368500000, + 48.99080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1480187858450809046", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/MPFMVAYMZL", + "operator": "Freshmile | FR*FR1", + "ref": "741024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68755600000, + 46.90730900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "ref:EU:EVSE": "FRTLSE31557001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-27", + "description": "TOURNEFEUILLE - Parking Avenue du Général Charles de Gaulle", + "charging_station:output": "22 kW;90 kW;180 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32647000000, + 43.58047000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3858565982244778546", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/V529RUSPJW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "578990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89158000000, + 42.73967900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P2755064901216354597", + "description": "MobiSDEC/TKVDATEIGS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461949" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83071700000, + 48.96593900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12100001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-12-30", + "network": "Reveo", + "description": "FIRMI - Parking Place De La Republique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30704400000, + 44.54262900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLTSIBFXH3", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "6.9 kW", + "ref:EU:EVSE": "FRWA3P4404593490623643437", + "opening_hours": "24/7", + "ref": "789174", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10834400000, + 47.99784800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Noyant-la-Gravoyere - Velodrome;NOYANT-LA-GRAVOYERE - Place du Vélodrome", + "amenity": "charging_station", + "start_date": "2024-03-26;2021-03-23", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49E49229001;FRS49P49229A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95668600000, + 47.70464100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "FRESNAY SUR SARTHE - Place Pasteur", + "ref:EU:EVSE": "FRS72E72138001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02273500000, + 48.28038500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "ref:EU:EVSE": "FRH14E59669001", + "description": "ZUYTPENNE - La Place", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43045760000, + 50.79397360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2021-05-21;2024-04-22", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "SAINTE-REINE-DE-BRETAGNE - Rue René Guy Cadou;OuestCharge - Diva Sp - Sainte-Reine-De-Bretagne - Cadou", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44P44189A;FRS44E44189001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.19218900000, + 47.44100100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-16", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63305A", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Rochefort Montagne - Eglise", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80530200000, + 45.68400010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAIRIEUX - Rue Haute", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59370001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99248100000, + 50.31258000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34024001", + "description": "BALARUC LE VIEUX - Avenue De Montpellier", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68652222222, + 43.46076110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref:EU:EVSE": "FRSIPE94028010", + "charging_station:output": "7 kW", + "description": "CRETEIL - Avenue du Marechal de Lattre de Tassigny", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45540014873, + 48.79831368858 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*35*1*_*_", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE3512;FRM06PNICE3511", + "start_date": "2019-01-23", + "description": "NICE - BORNALA RP", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23635984155, + 43.69553561477 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Velines | Zone des Reaux | Face A la Pharmacie", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "baa82d9e-2505-5ac7-9e9f-12b58f7fa704" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10192400000, + 44.85028500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*432*1*_*_", + "description": "SIGEIF - 58 RUE ARAGO - PUTEAUX", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE43212;FRSIGPSIGE43211", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24881900000, + 48.88669800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "LESCAR", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-01-06", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSLSCAR", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42729400000, + 43.31688300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref:EU:EVSE": "LFR3877EVCP02;LFR3877EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "SAINT CLAUDE", + "ref": "LFR3877EVCP02;LFR3877EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82985600000, + 46.38097300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Jean de Luz | Parking des Pyrénées", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "97165f5f-9b42-5acf-871b-37d87a667e9e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65807600000, + 43.38704700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "ba6d95f7-c733-5a89-a422-18b92323cdef", + "description": "SAINT-SATURNIN-LES-APT - Chemin de la Bruyère", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38224100000, + 43.94146500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GAZERAN - ZAC Bel Air", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78269003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82562440000, + 48.62418450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR2588EVCP01;LFR2588EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "SAINT HILAIRE DE LOULAY", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2588EVCP01;LFR2588EVCP02", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29935000000, + 46.97901000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Intermarché - L'Union", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMUNI", + "start_date": "2024-03-04;2023-10-31", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47093089808, + 43.65518470743 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Pierre-D'Albigny, Gare;Réseau eborn/HAERKHAILF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "346742;HAERKHAILF", + "ref:EU:EVSE": "FREBNP2061476777427814493;FREBNPHAERKHAILF", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15665400000, + 45.55752600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "capacity": "19", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FREVAP06012A", + "amenity": "charging_station", + "description": "E-VADEA/FR*EVA*P06012*A", + "ref": "740724", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "E-VADEA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42000500000, + 43.75358900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cora - Wittenheim", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-01-05", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORWIT", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31346940000, + 47.80946400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Saint-Romain-De-Colbosc", + "ref:EU:EVSE": "FRDRVPCRFMKT764301", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-06-24", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36539100000, + 49.52541500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42218AH", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRESEPS42218AH", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2019-07-17", + "description": "SEMOB Conservatoire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39513300000, + 45.43148300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;11 kW;22 kW;7.36 kW", + "network": "EDF-EV100", + "ref:EU:EVSE": "FROTHPIZIG37551;FROTHPIZIG37531;FROTHPIZIG37511;FROTHPIZIG37491;FROTHPIZIG37411;FROTHPIZIG374101;FROTHPIZIG37421;FROTHPIZIG37451;FROTHPIZIG37461;FROTHPIZIG37521;FROTHPIZIG37541;FROTHPIZIG37561", + "ref": "FR*SOD*S*IZIG*375*3*_*_;FR*SOD*S*IZIG*375*2*_*_;FR*SOD*S*IZIG*375*1*_*_;FR*SOD*S*IZIG*374*6*_*_;FR*SOD*S*IZIG*374*1*_*_;FR*SOD*S*IZIG*374*10*_*_;FR*SOD*S*IZIG*374*2*_*_;FR*SOD*S*IZIG*374*5*_*_;FR*SOD*S*IZIG*374*9*_*_;FR*SOD*S*IZIG*375*4*_*_;FR*SOD*S*IZIG*375*5*_*_;FR*SOD*S*IZIG*375*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "CNPE FLAMANVILLE - CIP;CNPE FLAMANVILLE - MINES", + "start_date": "2023-05-05;2022-06-08;2023-09-22", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88204000000, + 49.53210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6846005", + "capacity": "2", + "amenity": "charging_station", + "description": "ITM ST SEB BORNE 1", + "opening_hours": "24/7", + "network": "ITM ST SEB BORNE 1", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6846005", + "operator:email": "info@chargepoint.com", + "start_date": "2024-01-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51937300000, + 47.19897900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6291231107284055859", + "ref": "368830", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FQHVHJU2LD", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52378200000, + 44.86243200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-02-01", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - B&B HOTEL SAINT-ÉTIENNE LA TERRASSE", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP122011", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36799700000, + 45.46807900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/NOGCX5IK1U", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "44 kW", + "network": "Freshmile France", + "ref": "368890", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5399901665286357881", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69693000000, + 49.31959700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Brest, France - Gouesnou", + "ref:EU:EVSE": "FRTSLP29155", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994802000, + 48.43056680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5861663088548387725", + "ref": "578888", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HR010KHJWD", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03009800000, + 43.76933600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/HS5GOHL3FX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P2017263853045760101", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "461757", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90456300000, + 49.37404300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/RQ8FFLKBGH", + "operator:email": "roaming@freshmile.com", + "ref": "456849", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1513643147647042714", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63322400000, + 49.02164100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P5658861892021949393", + "amenity": "charging_station", + "capacity": "4", + "description": "WAAT/FRWATL7HLUTQQ9", + "operator": "WAAT SAS | FR*WA9", + "ref": "1128111", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71777900000, + 45.55168300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P501299", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CHERBOURG EN COTENTIN - François 1er", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-08-07", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62432300000, + 49.63612000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8116300122;FRS81E8116300112;FRS81E8116300111;FRS81E8116300121", + "owner:ref:FR:SIREN": "258100072", + "description": "MAZAMET - Rue De L'Egalité - Parking Du Champ De La Ville", + "start_date": "2017-06-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37860423960, + 43.49028467586 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS PAUL CLAUDEL", + "amenity": "charging_station", + "ref": "FRHPCPNF059504", + "ref:EU:EVSE": "FRHPCPNF059504", + "owner:ref:FR:SIREN": "531681843;531681842;531681840;531681839;531681836;531681835;531681837;531681838;531681841", + "opening_hours": "24/7", + "start_date": "2024-05-07;2024-04-08", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "capacity": "9", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41675400000, + 43.26848700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48088001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LA MALENE - Parking Du Tarn", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32067300000, + 44.30083600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2023-07-17", + "description": "Lorient - Parvis Gare", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PD1AOYXWWDU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36632778285, + 47.75424470785 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62604001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NEUFCHÂTEL-HARDELOT - Rue Syr Richard Ryche", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58104800000, + 50.63325100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Sizun - D764", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2927700", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07916100000, + 48.40558200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Vannes - Avenue Général Délestraint", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PVZHEMA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73063300000, + 47.65856400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-03", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "NOUAILLE-MAUPERTUIS-1-1;NOUAILLE-MAUPERTUIS-1-2", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346052122;FRLMSE12346052121;FRLMSE12346052112;FRLMSE12346052111", + "ref": "B078", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41466000000, + 46.50859100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - Proximité - Epinay-sur-Seine - Fitzelin", + "charging_station:output": "7 kW", + "start_date": "2021-11-25", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93031A", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30625586000, + 48.96022052000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "BRUNOY - Rue de Verdun", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-02", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE91114011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51016422445, + 48.70901367226 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "1004979", + "description": "Atlante/FRATLZ350_FRCHASSA_000001", + "ref:EU:EVSE": "FRATLP7997067103718694877", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81480500000, + 47.30611300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "NVH", + "start_date": "2022-07-01", + "capacity": "2", + "amenity": "charging_station", + "network": "CSE-Central BDF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CSE - BdF - Concarneau", + "ref": "0", + "operator:email": "supervision@nvh-france.fr", + "owner:ref:FR:SIREN": "775657463", + "ref:EU:EVSE": "FRLMSE1000100981;FRLMSE1000100980" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.93000000000, + 47.87000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Hôtel le Kaya", + "capacity": "2", + "amenity": "charging_station", + "ref": " 99d6d8ef-b3bf-4c14-a84a-866bfd484178", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMAPE000014796731;FRMAPE000015796702", + "operator": "NM SECURELEC", + "charging_station:output": "11 kW", + "owner:ref:FR:SIREN": "490457447", + "start_date": "2022-05-02", + "operator:email": "infos@nmsecurelec.com", + "description": "Hôtel le Kaya" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54870000000, + 45.31885000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85217001", + "start_date": "2024-05-14", + "description": "MONTAIGU-VENDEE (SAINT-GEORGES-DE-MONTAIGU) - Place Raymond Dronneau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29718000000, + 46.94736100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Sevran", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Sevran", + "capacity": "10", + "ref": "FRALLEGO9008011;FRALLEGO9007982;FRALLEGO9007981;FRALLEGO9004981;FRALLEGO9001262;FRALLEGO9000471;FRALLEGO9000472;FRALLEGO9001261;FRALLEGO9004982;FRALLEGO9008012", + "start_date": "2024-05-25", + "ref:EU:EVSE": "FRALLEGO9008011;FRALLEGO9007982;FRALLEGO9007981;FRALLEGO9004981;FRALLEGO9001262;FRALLEGO9000471;FRALLEGO9000472;FRALLEGO9001261;FRALLEGO9004982;FRALLEGO9008012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52787482000, + 48.94992084000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 07 - KENNEDY", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-08-09", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MAMP*53*1*_*_", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRIZMPMAMP5312;FRIZMPMAMP5311", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35006600000, + 43.28358800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PMATNEU", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-09-25", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France", + "description": "Match Neufchateau (88)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69242238175, + 48.35266756490 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPRL88SM8IHY", + "start_date": "2022-09-26", + "ref": "RL88SM8IHY", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Chapareillan, Parking de l'église", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98857880000, + 45.46559070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1109841", + "network": "EVzen", + "description": "EVzen/33A2E85F-92A2-483F-80D0-E08CA71B1194", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FREVZP8353264930431796534", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26796800000, + 46.92263800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "description": "Ibis - Cergy", + "start_date": "2023-06-01", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PIBSCRG", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06928750000, + 49.03121120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "85802", + "charging_station:output": "22 kW", + "description": "Réseau eborn/ODXLXEZKBM", + "ref:EU:EVSE": "FREBNPODXLXEZKBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65622400000, + 46.23193600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP33315A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP33315A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - IVANTOUT CENTRAKOR LES PEINTURES", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09849028559, + 45.06253622596 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "CAMPING LA PLAGE", + "ref:EU:EVSE": "FROTHPOTHR20712;FROTHPOTHR20711", + "capacity": "2", + "description": "AVENUE DU GENERAL DE GAULLE", + "amenity": "charging_station", + "start_date": "2021-07-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*207*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04409700000, + 42.55059900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRCPSPCAPS3712;FRCPSPCAPS3711", + "ref": "FR*SOD*S*CAPS*37*1*_*_", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-03-26", + "description": "MASSY - PLACE ST FIACRE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25903100000, + 48.73015600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZIBNJW6L9E", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "585551", + "ref:EU:EVSE": "FRFR1P796011392015884132", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33669600000, + 43.80998800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref:EU:EVSE": "FRVISP2962245386054654919", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "ref": "593765", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "ENRGETICA/7a5d7804-ce38-46df-8bfc-2a35fd2cec4b", + "socket:type2_combo:output": "100 kW", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45802000000, + 45.71734200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2249515766451260854", + "description": "Freshmile France/MWG2J2DVGU", + "ref": "705953", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "Tu,Mo,Fr,Th,We 18:30-23:45,Fr,Th,Tu,We,Mo 00:00-08:00,Su,Sa 00:00-23:45", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79541600000, + 43.97075900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "ref:EU:EVSE": "FRSWSE1000081568", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "ABB T54 VW Maurienne", + "ref": "1000081568", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36418000000, + 45.27093000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TNM3OXB3T1", + "opening_hours": "Fr,Mo,Sa,Tu,Th,We,Su 08:00-19:00", + "ref:EU:EVSE": "FRFR1P472877483854046104", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "578978", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94592300000, + 50.13571000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Renault - Trucks Villefranche", + "opening_hours": "Mo 07:30-18:30, Tu 07:30-18:30, We 07:30-18:30, Th 07:30-18:30, Fr 07:30-18:30, Sa 07:30-12:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT696571", + "capacity": "4", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-12-20", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73293800000, + 46.00174000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-03", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BELHOMERT-GUEHOUVILLE - De Gaulle", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E137374;FRS28E137373", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BELHOMERT-GUEHOUVILLE - De Gaulle", + "ref": "FRS28E137374;FRS28E137373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05809100000, + 48.50376900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Sa 06:00-20:00", + "operator": "MEA ENERGIES", + "network": "STATION MICHEL AULAS", + "start_date": "2022-06-23", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "contact@meaenergies.com", + "ref:EU:EVSE": "Non concerné", + "description": "STATION MICHEL AULAS", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "434734455", + "ref": "FRECN0160" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71668200000, + 45.97553100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/FT7GQAID6I", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P6448606126077644880", + "ref": "101777" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06958000000, + 48.31204500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLX9W8WE8N", + "capacity": "2", + "amenity": "charging_station", + "ref": "706304", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWATP5339818963781571565", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20307600000, + 47.99282200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE46", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "portdelille-santes", + "start_date": "2021-03-03", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97477360000, + 50.58645920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VENES - Place Du Poids Public", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8131100112;FRS81E8131100111;FRS81E8131100121;FRS81E8131100122", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2017-06-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19245910600, + 43.72785186800 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "capacity": "18", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "start_date": "2021-11-08", + "charging_station:output": "22 kW", + "network": "INTERPARKING ", + "description": "Interparking | Parking Nice Nouvel'R", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRIPKPNVR", + "ref:EU:EVSE": "FRIPKPNVR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256000000, + 43.66890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "CHOLET - Avenue de la Marne;OuestCharge - Diva Sp - Cholet - Marne", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49099I;FRS49E49099009", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-27;2024-04-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88552100000, + 47.05132500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "ref:EU:EVSE": "FRS60PYXFNPB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/YXFNPB", + "ref": "86714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99619000000, + 49.57860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DIVION - Rue Pasteur", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62270001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49877100000, + 50.47083800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NIMES - Rue Claude Nicolas Ledoux", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30189006", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34751700000, + 43.81539400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PZFRNAW", + "start_date": "2017-08-29", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Marzan - Aire de Marzan", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30513200000, + 47.52950800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Fréjus Puget-sur-Argens", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90290872", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71338900000, + 43.43901300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94080I", + "start_date": "2021-01-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Metropolis - ePremium - Vincennes - Mur du Parc", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45605117000, + 48.84609748000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*142*5*_*_;FR*SOD*S*SIGE*142*2*_*_;FR*SOD*S*SIGE*142*1*_*_;FR*SOD*S*SIGE*142*3*_*_;FR*SOD*S*SIGE*142*4*_*_;FR*SOD*S*SIGE*142*6*_*_", + "start_date": "2021-06-21;2021-06-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE14211;FRSIGPSIGE14221;FRSIGPSIGE14231;FRSIGPSIGE14241;FRSIGPSIGE14251;FRSIGPSIGE14261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608000000, + 48.87624000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78545002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT CYR l'ECOLE - 10 Boulevard Georges Guynemer", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06796710000, + 48.80826600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Evreux", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89647198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16950300000, + 49.01627100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "faa7cfad-b3ed-548e-b6ad-3191b6891fa9", + "description": "MOBIVE | Salles de Villefagnan | Place Communale", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16219900000, + 45.95920200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "COMBS LA VILLE - Hottinger", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77CVCA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54801400000, + 48.66559800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "PURPAN", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSTLSPU", + "charging_station:output": "75 kW;0 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39376000000, + 43.60851600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3334EVCP02;LFR3334EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "CREUTZWALD Grenoble", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3334EVCP02;LFR3334EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68388500000, + 49.19202300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31555016", + "charging_station:output": "22 kW", + "description": "TOULOUSE - Rue Serge Gainsbourg", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46219000000, + 43.63627700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ZKXXATFPZL;Commelle-Vernay, Parking allée du Parc", + "ref": "ZKXXATFPZL;85994", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPZKXXATFPZL", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06091700000, + 45.99939700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "892509", + "ref:EU:EVSE": "FRFR1P5906280559564788066", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKGNGU3VMN25N", + "opening_hours": "Mo,Th,We,Tu 08:00-17:30,Fr 08:00-12:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13807100000, + 49.18053100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Cité de la Mode Austerlitz", + "ref:EU:EVSE": "FRP07E75113002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37162900000, + 48.83887900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/VPMUW1NPUD;Les Vans, Le Bourdaric", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPVPMUW1NPUD;FREBNP4299751766863847842", + "ref": "VPMUW1NPUD;346958" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12818000000, + 44.40530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Mondeville - CC Mondevillage", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-06-26", + "ref:EU:EVSE": "FRELCPMDVCC", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30006800000, + 49.16138700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E67482001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Strasbourg Saint Aurélie - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73293200000, + 48.58269400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6612645", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "LES ARCHES BORNE 1", + "network": "LES ARCHES BORNE 1", + "ref": "FRCPIE6612645", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52615100000, + 44.58758600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "FUVLYZNAC1;31930", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/FUVLYZNAC1;Rochegude, avenue du Comtat Venaissin", + "ref:EU:EVSE": "FREBNPFUVLYZNAC1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82830500000, + 44.24526000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "WAAT/s570537", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P5558223505400668323", + "operator:email": "exploitation@waat.fr", + "ref": "1181910", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09969400000, + 43.63513200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "435099", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/AAWFK13ZEK", + "ref:EU:EVSE": "FRFR1P2167818939081141706", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58315700000, + 47.58990700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP01302", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "ref": "FRTCBP01302", + "charging_station:output": "50 kW;43 kW;22 kW", + "description": "RIESTER - COULOMMIERS", + "network": "RIESTER COULOMMIERS", + "owner:ref:FR:SIREN": "746150218", + "operator:email": "supervision-ev.france@totalenergies.com", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Su-Sa 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08949250000, + 48.80301400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "698996", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3093127767125557248", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/S4WKO92WF7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799100000, + 48.61325700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Kia - Saintes", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBARBIERKIASAINTES171001", + "capacity": "2", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:30-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "start_date": "2021-10-22", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65560700000, + 45.74037900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08;2023-08-08", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29074001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "24 kW;184 kW", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT EVARZEC - Route De Rosporden", + "charging_station:output": "22 kW;24 kW;184 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00070950000, + 47.97549870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AXAT - Parking De La Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11021002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22861111200, + 42.80305560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Airria", + "description": "Airria 1 - 11 kW AC;Airria 3 - 11 kW AC;Airria 2 - 11 kW AC", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC49278;FRZP1PEAC57882;FRZP1PEAC59756", + "capacity": "1", + "owner:ref:FR:SIREN": "792010282", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "485921bd-2b4d-4d65-9521-55e7bf59667a", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79637010000, + 45.21316300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - REMILLY AILLICOURT - Rue de Raucourt", + "ref": "FRS08E57519;FRS08E57520", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - REMILLY AILLICOURT - Rue de Raucourt", + "ref:EU:EVSE": "FRS08E57519;FRS08E57520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99298000000, + 49.65137500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/FR*S80*PGPZAXD;FDE 80/GPZAXD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "346322;120539", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80P9209333418123546484;FRS80PGPZAXD", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81664000000, + 49.85570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST21713;FRIZFPFAST21711;FRIZFPFAST21712", + "ref": "FR*SOD*S*FAST*217*1*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - PERPIGNAN SAINT CHARLES", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84645080000, + 42.69385190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Pulse 50 - Ancenis - Leon Seche;ANCENIS - Boulevard Léon Séché", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS44E44003001;FRS44P44003A", + "start_date": "2024-05-17;2021-05-10", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17414900000, + 47.36703300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Bougligny;BOUGLIGNY - Allée Du Parc", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-17;2016-01-22", + "ref": "01F5ZAKH61TPHBTSFND6ME12R8", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77045001;FRS77P77045A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65757600000, + 48.19557200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "884256835", + "operator": "GREENSPOT", + "ref:EU:EVSE": "FRGSPP1234595638", + "operator:email": "compta@greenspot.fr", + "network": "AED", + "charging_station:output": "22 kW", + "description": "AED", + "opening_hours": "Mo-Fr 07:00-21:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39639800000, + 44.83125100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E219816;FRS37E219811", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - SAINT BRANCHS - Av. de la foire", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - SAINT BRANCHS - Av. de la foire", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219816;FRS37E219811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76934100000, + 47.22798000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PHFVGTE", + "start_date": "2018-07-19", + "description": "Le palais - Les Glacis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15921000000, + 47.34914600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "network": "Ville de Lens - Place du Cantin", + "amenity": "charging_station", + "ref": "FRG10P62498B", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "operator:email": "contact@e-totem.fr", + "description": "Ville de Lens - Place du Cantin", + "ref:EU:EVSE": "FRG10P62498B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83282362398, + 50.43252740705 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "914c4aa9-b33e-521b-8146-9576f7e8f180", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "MOBIVE | Beychac-Et-Caillau | Route du Fileur", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36978000000, + 44.88244000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-03-29", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "SIGEIF - 1 RUE DE LA POSTE PROLONGE - ARGENTEUIL", + "ref:EU:EVSE": "FRSIGPSIGE25311;FRSIGPSIGE25312", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*253*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25029400000, + 48.94574100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCN1P58D280159609B", + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Move In Pure/58d280159609b", + "socket:type2_combo:output": "44 kW", + "operator": "Freshmile | FR*CN1", + "ref": "33346" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74008000000, + 44.30400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P6707925190493560596", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "24", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "492060", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/KZERYWQHLC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717300000, + 46.16908700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Meyssac | Aire de Covoiturage", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "72838b2b-ff68-53ac-8600-bfa30014dbd7", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67108600000, + 45.05673800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - Argentonnay - Supêrette", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB10078A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45415867000, + 46.98505968000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "ref:EU:EVSE": "FRADPE91479015;FRADPE914790151", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "description": "ORY - Parking P4b Rouge - Niveau Terrasse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36698800000, + 48.72946500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3056EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LEZIGNAN CORBIERES Marechal Foch", + "ref": "LFR3056EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75381200000, + 43.20060100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38382003", + "description": "SAINT-EGREVE - Barnave", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-25", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67767608877, + 45.23518158227 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*111*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANNES PARKING VAUTRIN", + "ref:EU:EVSE": "FRA16PWIIZ11111;FRA16PWIIZ11112", + "start_date": "2020-12-21", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03201100000, + 43.54850100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P8946785085060188996", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/YEVZGBQW8O", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "674291" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80669800000, + 48.87171500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACTCAR", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Action - Carhaix-Plouguer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55408748214, + 48.27756715407 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/VHJVGW;Moustiers-Sainte-Marie, Pkg interm.", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "VHJVGW;85949", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPVHJVGW", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22201000000, + 43.84380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPPORLE", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Pornic - E.Leclerc", + "start_date": "2024-01-15", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12641500000, + 47.12478200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "Parking Cergy-Pontoise Les Arts - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E95127004", + "network": "EFFIA France", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07747560000, + 49.03663800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6671585", + "network": "QUADRIPACK BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6671585", + "opening_hours": "Su 00:00-24:00,Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-01-18", + "description": "QUADRIPACK BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33288900000, + 46.54068000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "description": "La Baule , Place Réné Coty;Easy Charge/JEJMMGLWCT", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "ref": "JEJMMGLWCT;756870", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPJEJMMGLWCT;FRECHP7982311349128680309" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36897700000, + 47.28366600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX2018", + "ref": "FR*V75*PPX20*18", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Rue Sorbier 40", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39297210000, + 48.86568370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "159340", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PKZQCFW", + "network": "Freshmile France", + "description": "Freshmile France/KZQCFW", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29015800000, + 43.12237700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX0503", + "start_date": "2021-05-28", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX05*03", + "capacity": "3", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Clovis 20", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34841480000, + 48.84632370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FMWS019EB5", + "ref:EU:EVSE": "FRFR1PFMWS019EB5", + "operator:email": "roaming@freshmile.com", + "ref": "294440", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04137000000, + 49.09290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-18", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINFORD138701", + "capacity": "3", + "description": "Ford - Rognonas", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81774500000, + 43.89735000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22296001", + "description": "Saint Glen-Rue de la fontaine (parking mairie)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52339700000, + 48.35930600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BOURGES - Pl. de la Nation", + "description": "MODULO - BOURGES - Pl. de la Nation", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E140282;FRS18E140281", + "ref:EU:EVSE": "FRS18E140282;FRS18E140281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39031800000, + 47.08409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "725620751", + "capacity": "8", + "start_date": "2022-07-01", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMAPP000000006808", + "network": "Aubade - Comptoir des Fers", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "description": "Aubade - Comptoir des Fers", + "opening_hours": "Mo-Sa 07:30-18:00", + "operator:email": "support@electromaps.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27000000000, + 46.20000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/P5KHA01Q5Y", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "741144", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P1401456203013442913" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07617100000, + 48.30273500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8100300111;FRS81E8100300112;FRS81E8100300121;FRS81E8100300122", + "start_date": "2017-10-18", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ALBAN - Place Du Foirail", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46415495900, + 43.88747024500 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-07-31", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - SALON SUD", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*94*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST9413;FRIZFPFAST9412;FRIZFPFAST9411", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11251468756, + 43.62880622494 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44E44128001;FRS44P44128A", + "start_date": "2024-04-18;2021-05-18", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "PLESSE - Place Du Lion D'Or;OuestCharge - Diva Sp - Plesse - Lion d'Or" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88724400000, + 47.54055800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "MONTCEAUX-LES-MEAUX - Place De La Mairie;Montceaux-les-Meaux", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-06-02;2016-08-31", + "ref": "01F5ZAKH61G266A66SE9DG9B7G", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77300A;FRS77E77300001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98562500000, + 48.94179500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH01E62295001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ENQUIN-LES-MINES - Rue des Ecoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29206200000, + 50.58717300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - DIERRE - Pkg. du bourg", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - DIERRE - Pkg. du bourg", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221424;FRS37E221426", + "ref:EU:EVSE": "FRS37E221424;FRS37E221426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95075190000, + 47.34592915000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66342;FRS55E66343", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS55E66342;FRS55E66343", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VAUCOULEURS - Rue de la république", + "network": "MODULO - VAUCOULEURS - Rue de la république" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66877200000, + 48.60220900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-03-09", + "ref": "FR*SOD*S*LYON*134*2*_*_;FR*SOD*S*LYON*134*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "VIL06 - WILSON - TONKIN", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13422;FRGLYPLYON13421;FRGLYPLYON13412;FRGLYPLYON13411", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86727000000, + 45.77407400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "FR*MEL*P59193*01", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "description": "ERQUINGHEM-LYS - Parking de la Mairie", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRMELP5919301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84526100000, + 50.67805900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "IMT Douai - Bourseul", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2018-09-07;2020-10-30", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPIMTDOUAI595081" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06764000000, + 50.37550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U GREZ N STATION 2", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6571345", + "ref": "FRCPIE6571345", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SUPER U GREZ N STATION 2", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70688700000, + 47.61533300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/X4XISCA2J2", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446864", + "ref:EU:EVSE": "FRLE2P8131510890354447218" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07420500000, + 49.91226300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "6f3d6acc-0e52-5f92-9303-7e6321fda86a", + "description": "MOBIVE | Lacanau | Rue du Maréchal leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07496800000, + 44.97723400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "description": "Villabé - Route de Villoison", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9a22f5b9-aff1-56f6-a280-5de1c9bfdd74" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45328200000, + 48.58923700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO0001491", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "network": "Allego NISSAN Lyon Vénissieux", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "ref": "FRALLEGO0001491", + "operator:email": "info@allego.eu", + "description": "Allego NISSAN Lyon Vénissieux", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86820394000, + 45.71755264000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR4075EVCP02;LFR4075EVCP01;LFR4075EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "Carignan", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4075EVCP02;LFR4075EVCP01;LFR4075EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16146300000, + 49.63514100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*96*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE9612;FRM06PNICE9611", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-07-21", + "operator:email": "sav@izivia.com", + "description": "NICE - PARKING PASTEUR 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28212200000, + 43.72302400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - DOMMARTIN LES REMIREMONT - Rue de Pont", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E163280;FRS88E163282", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "start_date": "2023-01-28", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E163280;FRS88E163282", + "description": "MODULO - DOMMARTIN LES REMIREMONT - Rue de Pont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64270402000, + 47.99981261000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ22111;FRA16PWIIZ22112", + "start_date": "2023-06-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-RAPHAEL - PARKING PLACE DES COMMERCES", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*221*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77884400000, + 43.41477300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/valmontgare", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4949975931744893109", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "377480", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72042000000, + 49.08610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Mr. Bricolage - Lanester", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PMBRLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34309910000, + 47.77418310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP2104274245454943141;FREBNPEYECWW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/EYECWW;Genilac, Parking allée des bourdonnes", + "ref": "346685;EYECWW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58589000000, + 45.53410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/C90A02E1-20F4-4FB8-88A7-4F9BF07FC990", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP4886135978844473186", + "operator:email": "support@evzen.com", + "ref": "1189288" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58086700000, + 48.72757000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-09-13;2022-10-06;2023-09-26", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP07E59350007;FRP07E593500071", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LILLE - Les Tanneurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06716720000, + 50.63448180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Roche-La-Moliere, Parking stade Beaulieu", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "IWGHRPVBV0", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPIWGHRPVBV0", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31678503500, + 45.42282428000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPICPTZYI5F3", + "ref": "ICPTZYI5F3;306115", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-05", + "description": "Toulon, Parking Des Lices 1;Réseau eborn/ICPTZYI5F3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93240000000, + 43.13060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Campanile Alençon", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-11-14", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11553100000, + 48.44820100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLY73L6MN15BAQ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1151061", + "ref:EU:EVSE": "FRFR1P6478196604095326492", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07504100000, + 46.82512300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX1215", + "capacity": "7", + "network": "Belib'", + "start_date": "2021-10-12", + "amenity": "charging_station", + "ref": "FR*V75*PPX12*15", + "description": "Paris | Rue Claude Decaen 26", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40029050000, + 48.83518990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "ref": "626135", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3873287063869955162", + "description": "Freshmile France/KIDYA8RB2N", + "socket:type2_combo:output": "120 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04637700000, + 49.64518400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPHESSBMW683901", + "start_date": "2022-03-09;2022-09-22", + "capacity": "10", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 08:30-18:00", + "description": "BMW - HESS - Mulhouse - zone 2", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38821100000, + 47.78785800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-07-13", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "description": "900036", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PDOUAINSMAREAJOUY", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41990500000, + 49.06284300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21554*A", + "ref": "180410", + "network": "SICECO", + "ref:EU:EVSE": "FRS21P21554A", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26239400000, + 47.10453000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-GERMAIN-EN-LAYE - TOURVILLE 1", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-01-29", + "ref:EU:EVSE": "FRY03E78551011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09100000000, + 48.90305000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2021-06-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Krea_Dvpt_2;Krea_Dvpt_1", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE104;FRROSE103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95810700000, + 50.49151500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "880245", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP7567485047415213275", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "description": "WAAT/FRWATLRDXGRNG8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73765700000, + 44.53377900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE433453;FRIOYE433403;FRIOYE433401;FRIOYE408753;FRIOYE408752;FRIOYE408751;FRIONE433400;FRIOYE408701;FRIOYE408702;FRIOYE408703;FRIOYE408704;FRIOYE433402;FRIOYE433404;FRIOYE433451;FRIOYE433452", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIOYE433453;FRIOYE433403;FRIOYE433401;FRIOYE408753;FRIOYE408752;FRIOYE408751;FRIONE433400;FRIOYE408701;FRIOYE408702;FRIOYE408703;FRIOYE408704;FRIOYE433402;FRIOYE433404;FRIOYE433451;FRIOYE433452", + "operator:email": "info@ionity.eu", + "network": "IONITY GMBH;Pech Montat Est;Pech Montat Ouest", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "start_date": "2021-07-14;2021-07-09;2024-05-03", + "opening_hours": "24/7", + "description": "IONITY Pech Montat Ouest;Pech Montat Est;Pech Montat Ouest", + "operator": "IONITY", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52509800000, + 45.03087800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "MODULO - BLANCS COTEAUX - Bd. Jean Brion", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - BLANCS COTEAUX - Bd. Jean Brion", + "ref": "FRS51E40984;FRS51E40985", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "ref:EU:EVSE": "FRS51E40984;FRS51E40985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00517100000, + 48.90600300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Morêt-Loing-et-Orvanne - Lemasson", + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77316B", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref": "df0a436f-97e4-482d-901a-cbea7fd85ad6", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81604500000, + 48.37463100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080353", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "TARDENOIS NORD", + "owner:ref:FR:SIREN": "531681092;531681095;531681094;531681093", + "charging_station:output": "300 kW;54 kW", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080353", + "start_date": "2022-12-23", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53590000000, + 49.12730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34141001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA LIVINIERE - Hautes Routes des Meulières - Parking des Aires", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63473611111, + 43.31717220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-23", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Brech - Rue du Pont Douar", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PRRSVSJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.99905500000, + 47.72034500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "705926", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/I6ROSRNMR1", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8557128740900544325" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44747700000, + 48.63802000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "599073", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-12-29", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Chauveau;Métropolis/FR*MGP*P92051*K", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92051K", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27228800000, + 48.89164900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPLEMPEREURFIAT628001", + "amenity": "charging_station", + "start_date": "2020-06-09", + "description": "Fiat - Liévin - Lens", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78697100000, + 50.42652400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRC2P004301", + "network": "SQUASH CLUB SAINT-ETIENNE", + "owner:ref:FR:SIREN": "327641361", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRC2P004301", + "description": "SQUASH CLUB SAINT-ETIENNE", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "start_date": "2022-11-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40586242641, + 45.41549956011 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAS DES CARASSINS", + "start_date": "2022-08-30", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "c5352ae8-5a8f-4917-99cb-ad795fd45e27", + "ref:EU:EVSE": "FRLUMECARASSINS11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83000000000, + 43.78000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW", + "ref": "fd9554d0-84f5-5df1-a0ba-65413c134e53", + "description": "MOBIVE | La Teste de Buch | Parking des Maraichers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15459000000, + 44.63325200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE19ZABA", + "charging_station:output": "24 kW;22 kW", + "description": "INTERMARCHE - OBJAT", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41094300000, + 45.24850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "freddy.borneco@gmail.com;technique.borneco@gmail.com", + "operator": "Borneco | FR*BHM;BORNECO ", + "ref:EU:EVSE": "FRBHMP1080835628758048325;FRBHMECAMPINGCLERIGOERVELINA1;FRBHMECAMPINGCLERIGOERVELINB1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "BornEco;BORNECO", + "description": "BornEco/646b92c12f5a364fea4ba42c;CLERIGO", + "capacity": "1;3", + "start_date": "2023-06-30", + "ref": "804474;FR*BHM*ECAMPINGCLERIGOERVELINA*1;FR*BHM*ECAMPINGCLERIGOERVELINB*1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64867000000, + 47.64051000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "446825", + "network": "Leclerc", + "description": "Leclerc/SZZB9I4EIY", + "ref:EU:EVSE": "FRLE2P7599482137552110487", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.40836800000, + 48.39950400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PUJFFS1VFDS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Meyrargues, Police Municipale", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52723300000, + 43.63734900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P9182985416882192379", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521480", + "description": "SDEY/JJQXMOPFU6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80319000000, + 48.02125700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ7712;FRA16PWIIZ7711", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "CABRIS PARKING DE LA POSTE", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2018-06-14", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*77*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87586700000, + 43.65569300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "472296", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/XXHDK2JIDV", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5996714595760976183", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11726300000, + 46.95470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-12-29", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSTWLCV", + "opening_hours": "24/7", + "description": "Star Wash - La Chaize-le-Vicomte", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33687643153, + 46.66657966192 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCXQHLM", + "ref": "CXQHLM;32701", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "description": "Réseau eborn/CXQHLM;Le Lac-D'Issarlès, Le Village" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06294000000, + 44.81610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP2496875127869156638", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1075326", + "opening_hours": "24/7", + "description": "ENGIE MAMP - Bornes publiques/AD7EBE09-F35F-46C5-9DC5-6A2F37081BB6", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15988800000, + 43.32933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*693*1*_*_;FR*SOD*S*OTHR*693*2*_*_;FR*SOD*S*OTHR*693*3*_*_", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR69311;FROTHPOTHR69321;FROTHPOTHR69331", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-12", + "description": "INTERMARCHE - ALES LES ALLEMANDES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09202120000, + 44.13972400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16;2022-12-19", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPWUV7HSEG7Z;FREBNP8470272413519628028", + "description": "Grignan, Les Grand Près;Réseau eborn/WUV7HSEG7Z", + "ref": "WUV7HSEG7Z;694406" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91210100000, + 44.41985700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carqueiranne, Parking du Port, Avenue Elie Gautier;Réseau eborn/MJ8NETPBNZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP8064642535094373386;FREBNPMJ8NETPBNZ", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "441132;MJ8NETPBNZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07660000000, + 43.08764400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*377*3*_*_;FR*SOD*S*OTHR*377*2*_*_;FR*SOD*S*OTHR*377*1*_*_;FR*SOD*S*OTHR*377*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR37731;FROTHPOTHR37721;FROTHPOTHR37711;FROTHPOTHR37741", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "description": "APPART-HOTEL CLEMENT ADER", + "operator:email": "sav@izivia.com", + "network": "SNC CLEMENT ADER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44831400000, + 43.60950700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LBZUHX5FDU", + "ref:EU:EVSE": "FRFR1P6709552518707859197", + "operator:email": "roaming@freshmile.com", + "ref": "505617", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05632300000, + 45.85350900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Mandelieu-la-Napoule, France", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP30140", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93301900000, + 43.53365100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/YTZVC6LZLM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1489173587325869730", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "521402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903700000, + 48.46487500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-18:00, Tu 08:00-12:00, Tu 13:30-18:00, We 08:00-12:00, We 13:30-18:00, Th 08:00-12:00, Th 13:30-18:00, Fr 08:00-12:00, Fr 13:30-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSAVYBMW390001", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Lons le Saunier", + "operator:email": "support@driveco.com", + "start_date": "2022-07-28", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57638700000, + 46.67199700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLPI9WMXU20DLX", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1188424", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P210032216453991467" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55105700000, + 47.22138200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "charging_station:output": "22 kW;180 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-10", + "description": "PLENEE JUGON - Aire de covoiturage des vallées", + "ref:EU:EVSE": "FRS22E22185002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35928000000, + 48.37530200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-17:00", + "network": "SIRUFO ESSERT - MAZDA BELFORT ", + "description": " Mazda - Belfort Denney - 22kW AC ", + "ref:EU:EVSE": "FRZMAE22AC49591", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "17 kW", + "start_date": "2020-12-03", + "operator:email": "advenir@zeborne.com", + "ref": "49591", + "owner:ref:FR:SIREN": "401060496", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89325150000, + 47.65157010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE310", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Agymat", + "start_date": "2022-04-12", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23905100000, + 50.66875600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "HARGEVILLE - Rue Du Vieil Orme", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78300001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73982000000, + 48.89085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE439106;FRIOYE439105;FRIOYE439102;FRIOYE439101;FRIOYE439103;FRIOYE439104;FRIOYE439151;FRIOYE439152;FRIOYE439153", + "network": "Périgueux Sud", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE439106;FRIOYE439105;FRIOYE439102;FRIOYE439101;FRIOYE439103;FRIOYE439104;FRIOYE439151;FRIOYE439152;FRIOYE439153", + "start_date": "2021-12-17", + "capacity": "9", + "description": "Périgueux Sud", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70105992000, + 45.13757871000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-03-25;2021-04-09", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53E53097001;FRS53P53097B", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Evron - Gare;EVRON - Place De La Gare", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39731800000, + 48.15559600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66020001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BOLQUERE - Pla De La Creu", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06233200000, + 42.51538600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Plouasne", + "amenity": "charging_station", + "start_date": "2023-05-26", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE008801;FRIENE008802", + "ref:EU:EVSE": "FRIENE008801;FRIENE008802", + "network": "Plouasne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05842859000, + 48.32603142000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35031001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "description": "LA BOUEXIERE - 20 rue Jean Marie Pavy (Parking Mediathèque) ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43983900000, + 48.18524600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61294A", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "MORTREE", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-MORT-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07812600000, + 48.64006600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7596344038191840647", + "description": "Freshmile France/LLJWNO9HY2OUS3", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "892434", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28369000000, + 49.63702600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Montaigut-sur-Save, Impasse de la Save;Roulez Électrique En Haute-Garonne/WTLBXS", + "ref:EU:EVSE": "FRS31PWTLBXS", + "ref": "79777;WTLBXS", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "start_date": "2018-04-16", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22946000000, + 43.69190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "ref:EU:EVSE": "FRSIPE92026014", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "COURBEVOIE - 90 Rue de Normandie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24185611217, + 48.89990725282 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000302;FRCG0E000301;FRCG0E000300", + "start_date": "2022-10-06", + "network": "Hôtel La Villa Marine", + "amenity": "charging_station", + "description": "Hôtel La Villa Marine", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRCG0E000302;FRCG0E000301;FRCG0E000300", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37617100000, + 50.06282700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "SAINT-ANDRE-DE-LA-ROCHE - PARKING PLACE MUSSO", + "ref": "FR*SOD*S*NICE*155*1*_*_", + "ref:EU:EVSE": "FRM06PNICE15512;FRM06PNICE15511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-12-06", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28725316000, + 43.73942964000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Agen | Monseigneur Pouzet | Côté Cathédrale", + "ref": "9537413b-cb92-58a6-a338-961ba6606798" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61978600000, + 44.20692100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - 2 RUE DES CARRIERES - GROSLAY", + "ref:EU:EVSE": "FRSIGPSIGE30012;FRSIGPSIGE30011", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*300*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2022-09-19", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34458900000, + 48.98953700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump x Clinique du Val d’Ancre - Albert", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS301367;FRBMPS301369;FRBMPS301368;FRBMPS301370;FRBMPS301371;FRBMPS301372", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "301367;301372;301369;301368;301370;301371", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65670810000, + 50.00399360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2895EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2895EVCP01", + "charging_station:output": "22 kW", + "description": "WAVRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92875300000, + 50.56580700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Brive | Hôpital", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9f589a13-0d4a-5449-b0d0-e7f78082b320" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53305200000, + 45.16784800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "description": "Viry-Châtillon - Rue Octave Longuet", + "operator": "2_AM0001_SMOYS", + "ref": "153544b1-28c9-52ba-a8e1-1e4c5ac5067e", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38220800000, + 48.66814700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P92380*GAR*PLGARE", + "start_date": "2023-03-07", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PLACE DE LA GARE - GARCHES", + "ref:EU:EVSE": "FR55CP92380GARPLGARE", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18617200000, + 48.83807100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR1431EVCP01;LFR1431EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR1431EVCP01;LFR1431EVCP02", + "description": "AUREILHAN Lacs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20234500000, + 44.21278500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@electromaps.com", + "ref:EU:EVSE": "FRMAPE000022830530", + "amenity": "charging_station", + "network": "A.L.R", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "A.L.R", + "ref": "41b21718-caa0-4a4e-9904-8c02f5ae1684", + "owner:ref:FR:SIREN": "830836599", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98846542181, + 45.71576869086 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31861;IOEFVEOSYD", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPIOEFVEOSYD", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Mollans-Sur-Ouvèze, Place du Monument aux Morts;Réseau eborn/IOEFVEOSYD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19015200000, + 44.23775000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP47001A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP47001A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Mercure Agen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61452837000, + 44.19070549000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "Parking gare de Toulouse Matabiau - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E31555001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45372760000, + 43.61127770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-22", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Comines La Lys", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT596501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00828300000, + 50.76636100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPRVKMQBXTEP;FREBNP7125011481296177062", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "RVKMQBXTEP;477828", + "description": "Réseau eborn/RVKMQBXTEP;Bourgoin Jallieu, Place du champ de Mars", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27874000000, + 45.59071000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*49*1*_*_;FR*SOD*S*OTHR*49*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR4911;FROTHPOTHR4921", + "amenity": "charging_station", + "capacity": "1", + "network": "AUTOGRILL", + "description": "AUTOGRILL - MERCUEIL - AIRE DE BEAUNE MERCUEIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-03-06", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83814000000, + 46.96356700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P9069629350161632044", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398951", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/OKHCYANOVC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72100000000, + 46.81640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "description": "Centre Ville-Saint-Roch - Le Havre", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10043767;FRUBIE10038190", + "charging_station:output": "22 kW", + "start_date": "2022-07-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10613600000, + 49.49359100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "description": "Freshmile France/VGVJRD", + "operator:email": "roaming@freshmile.com", + "ref": "24033", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "capacity": "10", + "ref:EU:EVSE": "FRFR1P1778526225452198920", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036000000, + 44.83240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Rue Anna Politkovskaia", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTLSE31555029", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42012800000, + 43.61311900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1220077910100916138", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/A46LM1G17J", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "491961" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30565100000, + 46.55255200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1069326", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P5059184519821845669", + "description": "MobiSDEC/QNVE1QVN1M", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42655500000, + 49.33491500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-14", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12054001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LA CAPELLE - Parking derrière église", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18186900000, + 44.29495700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-11", + "description": "HOUILLES - Commissariat de Police", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78311006", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18655348086, + 48.92609256255 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49178001", + "start_date": "2024-04-11", + "description": "MORANNES - Place de Beaumont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36419400600, + 47.69991683960 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref:EU:EVSE": "FRS70P452391554505023287", + "operator:email": "roaming@freshmile.com", + "ref": "706064", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "SIED70/EYOQWAPMBZ", + "socket:type2_combo:output": "22 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17466400000, + 47.62926000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH14E59309002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-12-27", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "HONDSCHOOTE - Place du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58696000000, + 50.98144000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - LOCHES - Pl. de Verdun", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E166911;FRS37E166912", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E166911;FRS37E166912", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LOCHES - Pl. de Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99534765000, + 47.12885860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63231*A", + "network": "SIEG 63", + "ref": "518354", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63231A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60590000000, + 45.86919200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "AULNOYE-AYMERIES - Rue Léon Gambetta", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59033001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84299400000, + 50.19734600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/LLIMVWEOVKSB9K", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS32P6051304130381277196", + "charging_station:output": "22 kW", + "ref": "892854", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22995000000, + 43.99335000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94017004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "CHAMPIGNY-SUR-MARNE - Boulevard De Stalingrad", + "start_date": "2021-03-12;2022-06-26", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49515500000, + 48.82608000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*277*1*_*_", + "network": "NICE RP", + "description": "NICE - HENRI MATISSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-05-03", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE27711;FRM06PNICE27712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21495176946, + 43.67483486382 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Sourzac | Parking de la Mairie", + "ref": "a161fa0f-2807-5b55-a647-d75585e908fc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39133100000, + 45.05084600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "ref:EU:EVSE": "FRSIGPSIGE40812;FRSIGPSIGE40811", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 106 RUE DU GENERAL LECLERC PARKING CENTRE VILLE - FRANCONVILLE", + "ref": "FR*SOD*S*SIGE*408*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774250000, + 48.98411610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROUEN - Parking Fond du Val", + "ref:EU:EVSE": "FRC01E76540007", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06860300000, + 49.45197000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4156EVCP01;LFR4156EVCP03;LFR4156EVCP02", + "ref": "LFR4156EVCP01;LFR4156EVCP03;LFR4156EVCP02", + "description": "STENAY - Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19860600000, + 49.48373500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "9348b71b-3cf0-5ab1-b28d-4be8426fb126", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Dun-Le-Palestel | Place du Champ de Foire", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66954000000, + 46.30584800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "LA MOTTE-D'AIGUES - Pied Bernard", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "01d0c656-7248-5e48-b7c8-610d39d9d76f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50664600000, + 43.75836100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-10;2021-09-09", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FR594E59122007", + "network": "pass pass électrique", + "description": "CAMBRAI - Rang Saint Jean" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23869700000, + 50.17450900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR3966EVCP05;LFR3966EVCP04;LFR3966EVCP03;LFR3966EVCP02;LFR3966EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "LEGE - Ronde", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3966EVCP04;LFR3966EVCP02;LFR3966EVCP01;LFR3966EVCP03;LFR3966EVCP05", + "capacity": "10", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58599500000, + 46.89251200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-11-18", + "network": "Power Dot France", + "description": "Intermarché - Rang-du-Fliers", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMRDF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60928342238, + 50.41417851953 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref": "591323;GW5Q7UNATT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPGW5Q7UNATT;FREBNP6742507527964222840", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/GW5Q7UNATT;Ambierle, D52", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89658800000, + 46.10235100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP81297A", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - IBIS BUDGET ALBI", + "ref:EU:EVSE": "FRETIP81297A", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2024-07-26", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08364900000, + 43.91716100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "22 kW;50 kW;100 kW;187.5 kW", + "start_date": "2023-09-22", + "opening_hours": "24/7", + "capacity": "11", + "description": "Cora - Montbéliard", + "ref:EU:EVSE": "FRPD1PCORMBL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80908826693, + 47.52878345299 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Plouhinec", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT297801", + "start_date": "2024-04-23", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50205300000, + 48.01641500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42005AD", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42005AD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2021-09-10", + "description": "SEMOB Chateau Bouthéon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26496700000, + 45.54383900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH20211;FROTHPAUCH20212", + "start_date": "2023-12-29", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - MARTIGUES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*202*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05083670000, + 43.42326360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SUPER U GUEMENE STATION 1*", + "network": "SUPER U GUEMENE STATION 1*", + "ref:EU:EVSE": "FRCPIE6818845;FRCPIE6842145", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-10", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6818845;FRCPIE6842145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83895100000, + 47.63180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZXMREG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PZXMREG", + "ref": "232510", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03733000000, + 46.11580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9015*03", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901503", + "description": "Paris | Rue Antonin Mercié 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30064300000, + 48.82845400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2140029344543142906", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIVTFWC012SUU", + "ref": "892278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43894400000, + 48.25197500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Limoges, France", + "ref:EU:EVSE": "FRTSLP6431", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27121000000, + 45.86772100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5900540457497507203", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1152156", + "network": "Freshmile France", + "description": "Freshmile France/LLUBBAOMHAUKIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36298700000, + 48.92771500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "description": "R3 - Norauto Besançon Ecole Valentin", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-04-28", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "ref:EU:EVSE": "FR3R3P89333942", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99362200000, + 47.28390400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461712", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P5906806421143170216", + "description": "MobiSDEC/EZNQHP1WWZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02852200000, + 49.01641100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "description": "Molleges, Route De St Andiol", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRS13PHYPRPLI5TD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94907500000, + 43.80749100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "WAAT", + "amenity": "charging_station", + "ref": "787242", + "description": "WAAT/FRWATLLMZBF2VO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA6", + "ref:EU:EVSE": "FRWA6P8493314096921416227", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29256000000, + 43.69186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49377A;FRS49E49377001", + "description": "VILLEVEQUE - Parking Rue Saint-Pierre;OuestCharge - Diva Sp - Villeveque - Pierre", + "charging_station:output": "22 kW", + "start_date": "2024-04-02;2024-04-18;2021-04-14", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42385500000, + 47.55953100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81131002", + "description": "LAGRAVE - Chemin de Nacazes", + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-17", + "charging_station:output": "22 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97255800000, + 43.88993500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-03", + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF058543", + "socket:type2_combo:output": "175 kW", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680521;531680522", + "opening_hours": "24/7", + "description": "RELAIS PLOMBIERE MARSEILLE", + "ref:EU:EVSE": "FRHPCPNF058543", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38310000000, + 43.31620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46256002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "charging_station:output": "22 kW", + "description": "SAINT CIRQ LAPOPIE - PARKING P4", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66767400000, + 44.46382500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PZSCHEU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mobilité électrique 56/ZSCHEU", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "21885", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.65063000000, + 47.70310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "LAMBRES-LEZ-DOUAI - ZAc de l'Ermitage", + "ref:EU:EVSE": "FRH04E59329001", + "start_date": "2022-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04010900000, + 50.35060900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2923700", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "La Roche Maurice - rue du morbic" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.20365100000, + 48.47209900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-11-30", + "network": "Morbihan Energies", + "description": "Lorient - Place d'Armes", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PRYVAMD", + "opening_hours": "Mo-Sa 07:00-21:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35626600000, + 47.74645200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B019", + "description": "CHÂTEAU-LARCHER-1-1;CHÂTEAU-LARCHER-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2016-12-02", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346051601;FRLMSE12346051591;FRLMSE12346051592;FRLMSE12346051602", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31243000000, + 46.41752000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "description": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "amenity": "charging_station", + "start_date": "2021-10-14", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP93005A", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158000, + 48.93015608000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE8151;FRSIGPSIGE8141;FRSIGPSIGE8131;FRSIGPSIGE8121;FRSIGPSIGE8111", + "start_date": "2021-01-05", + "amenity": "charging_station", + "capacity": "1", + "description": "SIGEIF - 88 AVENUE DU GENERAL DE GAULLE - ISSY-LES-MOULINEAUX", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*81*4*_*_;FR*SOD*S*SIGE*81*3*_*_;FR*SOD*S*SIGE*81*1*_*_;FR*SOD*S*SIGE*81*2*_*_;FR*SOD*S*SIGE*81*5*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27764400000, + 48.81900400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRATLP4374201440122972777", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "951290", + "network": "Atlante", + "description": "Atlante/FRATLZ340_FRPORTO2_000001", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70860700000, + 47.32028500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE1000081817", + "socket:type2_combo:output": "25 kW", + "description": "Howdens Vitrolles", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51251000000, + 43.43586600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Lons | Avenue du Moulin", + "ref": "f2375ad4-ea0f-54e8-8e19-db6ae9c3dca9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39780300000, + 43.32363500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85178001", + "description": "LE POIRE-SUR-VIE - Rue De La Chapelle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50769000000, + 46.76787200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Mondeville", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22", + "capacity": "11", + "network": "Allego Carrefour Mondeville", + "ref": "FRALLEGO9990381;FRALLEGO9990232;FRALLEGO9990231;FRALLEGO9001461;FRALLEGO9000272;FRALLEGO9000271;FRALLEGO9001462;FRALLEGO9002411;FRALLEGO9002412;FRALLEGO9002413;FRALLEGO9990382", + "ref:EU:EVSE": "FRALLEGO9990381;FRALLEGO9990232;FRALLEGO9990231;FRALLEGO9001461;FRALLEGO9000272;FRALLEGO9000271;FRALLEGO9001462;FRALLEGO9002411;FRALLEGO9002412;FRALLEGO9002413;FRALLEGO9990382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29382380000, + 49.16449740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-03-31", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*MAMP*15*1*_*_", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "IZIVIA | ALLAUCH - AV. SALVADOR ALLENDE", + "ref:EU:EVSE": "FRIZMPMAMP1511;FRIZMPMAMP1512", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47761200000, + 43.35174300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2024-08-22", + "amenity": "charging_station", + "description": "Marie Blachère - Maubeuge Jean Jaurès", + "ref:EU:EVSE": "FRPD1PMARMAU", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95792761074, + 50.28172607321 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/YTBQSB;Beaurepaire, Place du Jeu de Paume", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPYTBQSB", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "63980;YTBQSB", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05698000000, + 45.33910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/76D92C54-C90A-43D5-A01A-7209B98DE22E", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1169358", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP1928260163786329750", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64258000000, + 46.85495000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Basic Fit - Angoulême", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PHLFAGL", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-01-24;2024-01-18", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12957110615, + 45.63813476168 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Bourget-Du-Lac, Boulevard du lac;Réseau eborn/DWG6IHEU7O", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP5499268813938412672;FREBNPDWG6IHEU7O", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346664;DWG6IHEU7O" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85965300000, + 45.65551000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-11-22", + "description": "e-Totem - Première Classe Beaune", + "ref": "FRETIP21054A", + "ref:EU:EVSE": "FRETIP21054A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85317740709, + 46.99722191051 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*179*4*_*_;FR*SOD*S*OTHR*179*3*_*_;FR*SOD*S*OTHR*179*2*_*_;FR*SOD*S*OTHR*179*1*_*_;FR*SOD*S*OTHR*179*5*_*_", + "description": "ARCACHON - GARE", + "start_date": "2021-04-12;2021-05-04", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR17951;FROTHPOTHR17941;FROTHPOTHR17911;FROTHPOTHR17921;FROTHPOTHR17931", + "network": "ARCACHON", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16525900000, + 44.65966400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*CAPS*12*1*_*_", + "start_date": "2019-12-17", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "ref:EU:EVSE": "FRCPSPCAPS1212;FRCPSPCAPS1211", + "capacity": "2", + "amenity": "charging_station", + "description": "MASSY - SOLOGNE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29541400000, + 48.73722500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3213475164167336361", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLYE7MMOESRU35", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1153428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71463500000, + 44.90662600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "CENTER PARCS LES HAUTS DE BRUYERES - Parking Staff", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2024-08-05", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRVIAP123014", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94000400000, + 47.62096300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "232363", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TRYTZF", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PTRYTZF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22996000000, + 46.20730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "operator": "E-TOTEM", + "ref": "FRSUAP42312A", + "amenity": "charging_station", + "description": "SUPER U LA TOURETTE", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSUAP42312A", + "charging_station:output": "22 kW", + "network": "SUPER U LA TOURETTE", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183000000, + 45.43232000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "472206", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6566482535462613257", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IG8XKOL1LY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56279300000, + 44.77185800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Locatrans - Arnas", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "start_date": "2023-01-09", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDLOCATRANS694001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73290400000, + 46.00170300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E134752", + "ref:EU:EVSE": "FRS28E134752", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - HANCHES - Rue de la barre", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - HANCHES - Rue de la barre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64452900000, + 48.59945900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P5109873447963190816", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "492207", + "opening_hours": "24/7", + "description": "SDEA 10/OWCZOVJJDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26666000000, + 48.25299700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLP4QJIJA8", + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P5827446726233870923", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref": "1128141", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW;3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78721800000, + 46.79423900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P505026", + "start_date": "2017-11-30", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "215005026", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ST LO - Champs de Mars", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08696800000, + 49.11652200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-01-13", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "description": "SALVAGNAC - Allée Jean Jaurès", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8127600122;FRS81E8127600121;FRS81E8127600112;FRS81E8127600111", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68798248984, + 43.90648455687 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE476010;FRIOYE476007;FRIOYE476005;FRIOYE476004;FRIOYE476001;FRIOYE476002;FRIOYE476003;FRIOYE476006;FRIOYE476008;FRIOYE476009;FRIOYE476011;FRIOYE476012;FRIOYE476051;FRIOYE476052;FRIOYE476053", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE476012;FRIOYE476010;FRIOYE476009;FRIOYE476007;FRIOYE476006;FRIOYE476005;FRIOYE476004;FRIOYE476001;FRIOYE476002;FRIOYE476003;FRIOYE476008;FRIOYE476011;FRIOYE476051;FRIOYE476052;FRIOYE476053", + "description": "Dommartin", + "network": "Dommartin", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92527996000, + 48.67286216000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49048A", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "start_date": "2021-04-12", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Briollay - Paul Cezanne", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50418100000, + 47.56466200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "48982", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PHULKMS", + "description": "Mouv'Oise/HULKMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11228000000, + 49.40760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LUMBRES - Maison de Santé", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH10E62534004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2023-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11689022850, + 50.70746093705 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-08-02", + "network": "Reveo", + "description": "LE GRAU DU ROI - Rue des Pétunias", + "ref:EU:EVSE": "FRS30E30133007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13172247225, + 43.54378336784 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile;Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PNE1A8MI3RW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "charging_station:output": "22 kW", + "description": "Mobilité électrique 56/NE1A8MI3RW;Larmor-plage - Place Kerpape", + "ref": "298639", + "network": "Morbihan Energies;Mobilité électrique 56", + "start_date": "2020-03-01", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38559500000, + 47.70628400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-12-14", + "ref": "B071", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346396361;FRLMSE12346396351", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "MONTMORILLON STADE-1-2;MONTMORILLON STADE-1-1", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88016200000, + 46.43142700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRMGPP94059C", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "1121538", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P94059*C", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57031100000, + 48.81006500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-05-17", + "ref": "FR*SOD*S*SIGE*112*1*_*_", + "description": "SIGEIF - RUE PASTEUR - SAINT-CLOUD", + "ref:EU:EVSE": "FRSIGPSIGE11212;FRSIGPSIGE11211", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20373900000, + 48.84210500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COIGNIERES - Rue des Marchands", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E78168001", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91861000000, + 48.75056000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89397446", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Epinal - Stade de la Colombière", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46376300000, + 48.17718900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ac4dad28-2f76-53fc-949d-b19b3ec59a33", + "description": "MOBIVE | Brossac | Parking Salles de Fêtes", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04454900000, + 45.33131800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "CHARBONNIERE LES VARENNES - Manoir de Veygoux", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-10-10", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE63CABA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98591100000, + 45.90254300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "description": "Allego Carrefour Avignon", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9007712;FRALLEGO9007642;FRALLEGO9007641;FRALLEGO9004482;FRALLEGO9001641;FRALLEGO9001642;FRALLEGO9002951;FRALLEGO9002952;FRALLEGO9002953;FRALLEGO9004481;FRALLEGO9007711", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "network": "Allego Carrefour Avignon", + "ref": "FRALLEGO9007642;FRALLEGO9007641;FRALLEGO9004482;FRALLEGO9001641;FRALLEGO9001642;FRALLEGO9002951;FRALLEGO9002952;FRALLEGO9002953;FRALLEGO9004481;FRALLEGO9007711;FRALLEGO9007712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79125100000, + 43.92793300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3958EVCP02;LFR3958EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "MEULAN EN YVELINES - Aulnes", + "ref": "LFR3958EVCP02;LFR3958EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90176800000, + 49.01160100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "FLOURENS - Rue Du College", + "ref:EU:EVSE": "FRM31E31184001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56264000000, + 43.59465600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Allegre, Rue de Chateauneuf;Réseau eborn/C68QZRW5IK", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "ref:EU:EVSE": "FREBNP9206117075376593387;FREBNPC68QZRW5IK", + "ref": "C68QZRW5IK;346643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71035000000, + 45.19631000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1009176", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4668947671474341796", + "description": "Freshmile France/LLPMS8RE014C9A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17141600000, + 49.11106100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "description": "Paris - Turbigo Saint Denis", + "start_date": "2023-04-04", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E751020451;FRP07E75102045" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35014830000, + 48.86492190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPPVZ0P4QBGB;FREBNP457092859673181434", + "ref": "346892;PVZ0P4QBGB", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Cognin, Rue de la Poterie;Réseau eborn/PVZ0P4QBGB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89787200000, + 45.56025800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FREFLP4217608304056139092", + "description": "Road/65a57613676533001c5888d1", + "ref": "1013163", + "network": "Road", + "amenity": "charging_station", + "charging_station:output": "22 kW;360 kW;63 kW", + "opening_hours": "We,Sa,Fr,Su,Mo,Tu,Th 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "socket:type2_combo:output": "360 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90929400000, + 42.77591000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-18", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR30491;FROTHPOTHR30481;FROTHPOTHR30441;FROTHPOTHR30431;FROTHPOTHR304171;FROTHPOTHR304161;FROTHPOTHR304151;FROTHPOTHR304141;FROTHPOTHR30411;FROTHPOTHR304101;FROTHPOTHR304111;FROTHPOTHR304121;FROTHPOTHR304131;FROTHPOTHR304181;FROTHPOTHR30421;FROTHPOTHR30451;FROTHPOTHR30461;FROTHPOTHR30471", + "ref": "FR*SOD*S*OTHR*304*8*_*_;FR*SOD*S*OTHR*304*7*_*_;FR*SOD*S*OTHR*304*5*_*_;FR*SOD*S*OTHR*304*4*_*_;FR*SOD*S*OTHR*304*3*_*_;FR*SOD*S*OTHR*304*2*_*_;FR*SOD*S*OTHR*304*18*_*_;FR*SOD*S*OTHR*304*16*_*_;FR*SOD*S*OTHR*304*15*_*_;FR*SOD*S*OTHR*304*14*_*_;FR*SOD*S*OTHR*304*13*_*_;FR*SOD*S*OTHR*304*11*_*_;FR*SOD*S*OTHR*304*1*_*_;FR*SOD*S*OTHR*304*10*_*_;FR*SOD*S*OTHR*304*12*_*_;FR*SOD*S*OTHR*304*17*_*_;FR*SOD*S*OTHR*304*6*_*_;FR*SOD*S*OTHR*304*9*_*_", + "network": "GROUPE PARTOUCHE", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "PASINO GRAND - AIX-EN-PROVENCE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43576500000, + 43.52248500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "HYPER U AGDE BORNE 3", + "network": "HYPER U AGDE BORNE 3", + "ref:EU:EVSE": "FRCPIE6608875;FRCPIE6608865;FRCPIE6608855", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6608875;FRCPIE6608865;FRCPIE6608855", + "start_date": "2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47635700000, + 43.29862000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/OOG3SU0SRF;Comps-Sur-Artuby, Avenue De La Fontenouille", + "ref:EU:EVSE": "FREBNPOOG3SU0SRF;FREBNOOG3SU0SRF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "OOG3SU0SRF;94475", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50678000000, + 43.71094300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1181760", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s570506", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P6878462008145507217" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44109400000, + 48.25468900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLIVPAH01Y6GA3", + "ref:EU:EVSE": "FRFR1P4796183122480590309", + "operator:email": "roaming@freshmile.com", + "ref": "892230", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95494000000, + 48.76029900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WARNING Nice", + "ref:EU:EVSE": "FRTCBP00389", + "start_date": "2021-06-08", + "capacity": "2", + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "ref": "FRTCBP00389", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19580200000, + 43.70325800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1307364251321440161", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "892635", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/pierrefondsrn" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.44600000000, + -21.32130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Nissan -Carcassonne", + "network": "DRIVECO", + "capacity": "2", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2024-05-24", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN110001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30379900000, + 43.20460700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2904200", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Crozon-Rue de la Marne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.49161400000, + 48.24833700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/MN2IP3OV9A", + "ref": "757047", + "ref:EU:EVSE": "FRS10P361949661396577812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16230200000, + 48.28842200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "576092;576086", + "description": "Zephyre/LP003B22;Zephyre/LP003B24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P884166957046342277;FRZP1P3794321585706234387", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14148800000, + 45.46588300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Régie Services Energie/FR*RSE*P01318*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "ref:EU:EVSE": "FRRSEP01318A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481275" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86708300000, + 45.96736100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64787", + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/hornoydufour", + "ref:EU:EVSE": "FRS80PHORNOYDUFOUR", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90118000000, + 49.84680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*179*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - ABBEVILLE", + "start_date": "2024-06-17", + "ref:EU:EVSE": "FRIZFPFAST17913;FRIZFPFAST17911;FRIZFPFAST17912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85725930000, + 50.10154030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E5000;FRS41E4999", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - NOYERS SUR CHER - Pl. des Guerriers", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - NOYERS SUR CHER - Pl. des Guerriers", + "ref:EU:EVSE": "FRS41E5000;FRS41E4999", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40075700000, + 47.27667500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LE MANS - 10 Rue Joseph Marie Jacquard", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-09-06", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS72E72181013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18098000000, + 47.96692760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "TDL03 - ATRIUM - AVENUE DES COSMOS", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2020-02-06", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*9*1*_*_;FR*SOD*S*LYON*9*2*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON922;FRGLYPLYON921;FRGLYPLYON911;FRGLYPLYON912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77054700000, + 45.76014400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - ST FLOVIER - Rue du Général de Gaulle", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST FLOVIER - Rue du Général de Gaulle", + "ref:EU:EVSE": "FRS37E215780;FRS37E215779", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E215780;FRS37E215779" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02625743000, + 46.96858706000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PQKXRZR", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2017-01-04", + "description": "Merlevenez - Rue du Presbytère", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23566400000, + 47.73595600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "capacity": "2", + "amenity": "charging_station", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P45004B", + "start_date": "2022-09-05", + "ref:EU:EVSE": "FRG10P45004B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77446700000, + 47.96808000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH13511;FROTHPAUCH13512", + "ref": "FR*SOD*S*AUCH*135*1*_*_", + "description": "AUCHAN - GIEN", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61900200000, + 47.68857200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE22611;FRSIGPSIGE22612", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*226*1*_*_", + "description": "SIGEIF - AVENUE ARLETTY PARKING TRUFFAUT - BOIS-DARCY", + "start_date": "2022-01-03", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01165800000, + 48.80308500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "879689750", + "start_date": "2022-09-23", + "network": "CHARGEPOLY", + "charging_station:output": "75 kW;22 kW", + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "description": "INDIAN MOTORCYCLE", + "socket:type2_combo:output": "75 kW", + "operator:email": "operator@chargepoly.com", + "ref": "cl667tzrr31386098qo29vpvb0n", + "ref:EU:EVSE": "FRCHAPCL667TZRR31386098QO29VPVB0N", + "opening_hours": " 24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14829000000, + 45.73457000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRLE2P5952543984388463604", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "694379", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/AJUHLGDXWB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893900000, + 44.40991800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Echillais | Place de l'Europe (Rue de l'Eglise)", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "802942dd-79eb-52aa-a686-dd5ce514cc85" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95501700000, + 45.89828800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE91BSBA", + "start_date": "2024-05-03", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "Parking le petit parc -Boussy saint antoine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53022800000, + 48.68281600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA88E15094001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAROQUEBROU - Rue du 11 juin 1944 - D653", + "charging_station:output": "50 kW;43 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19302000000, + 44.96663700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3373EVCP02;LFR3373EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "ST JEAN D ILLAC Dauphine", + "ref:EU:EVSE": "LFR3373EVCP02;LFR3373EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74452700000, + 44.81339600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRM38E38185008", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GRENOBLE - Avenue Doyen Louis Weil - Gare Schuman", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71311000000, + 45.19180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/MRFEJQ1ZVF;Chambery, Cote Rousse, rue du genevois", + "ref:EU:EVSE": "FREBNP2792275906171969599;FREBNPMRFEJQ1ZVF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "MRFEJQ1ZVF;346811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92401200000, + 45.58864300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CPMKO0KCT6", + "ref:EU:EVSE": "FRFR1P2582445214094369826", + "charging_station:output": "50 kW;100 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "398846", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21070000000, + 45.83930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E95500002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PONTOISE - Parking Jean Jaurès", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09745530000, + 49.05182380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DDUFKV;79309", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "description": "Réseau eborn/DDUFKV;Les Mees, Rue de L'Hopital", + "ref:EU:EVSE": "FREBNPDDUFKV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97563000000, + 44.03000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-23", + "network": "ELECTRA", + "capacity": "4", + "description": "Montpellier - Hôtel Campanile", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPMONHC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89112700000, + 43.58679900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-23", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking Gare de Yerres - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "10", + "ref:EU:EVSE": "FRP01E916910011;FRP01E91691001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48242400000, + 48.70697300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "capacity": "8", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE66544154", + "operator:email": "support.eu@chargepoint.com", + "network": "HOPITAUX MASSIF DES VOSGES", + "description": "HMV / SAINT DIE 4", + "owner:ref:FR:SIREN": "200096824", + "operator": "ChargePoint", + "ref": "FRCPIE66544154" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96549688954, + 48.29004613244 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "La Baule, Parking Sporting club", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "network": "Easycharge services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHPLW8UU8ZNKM", + "start_date": "2023-03-08", + "ref": "LW8UU8ZNKM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36483000000, + 47.27973400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX19*09", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "description": "Paris | Rue de Botzaris 16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1909" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38120000000, + 48.87690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PEBBPTU", + "capacity": "4", + "network": "Freshmile France", + "ref": "159358", + "description": "Freshmile France/EBBPTU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26142000000, + 43.70240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX0105", + "amenity": "charging_station", + "capacity": "4", + "description": "Paris | Rue des Croix des Petits Champs 4", + "opening_hours": "24/7", + "ref": "FR*V75*PPX01*05", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33930060000, + 48.86246310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CAVUWXJOAT", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRFR1P2337096046628212279", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "682133", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15768000000, + 49.02596100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:30-12:00, Mo 14:00-19:00, Tu 07:30-12:00, Tu 14:00-19:00, We 07:30-12:00, We 14:00-19:00, Th 07:30-12:00, Th 14:00-19:00, Fr 07:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Volvo - GROUPE VULCAIN - Vénissieux", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPVULCAINVOLVO692001", + "operator:email": "support@driveco.com", + "start_date": "2021-01-29", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87165600000, + 45.71914300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22237001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pluduno-Rue Chateaubriand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26435000000, + 48.52913000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "LE GRAND NARBONNE - Rue Nicolas Leblanc", + "ref:EU:EVSE": "FRS11E11262010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96647000000, + 43.15655000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIVAM BY AUTOSPHERE - MONTLUEL", + "description": "TOYOTA - MONTLUEL 22KW AC ", + "opening_hours": "LUN-VEN 08:30-19:00,SAM 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZTLE178361;FRZTLE178362", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06552338600, + 45.84730651001 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "412244", + "ref:EU:EVSE": "FRS10P2084356905816584879", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/O1EWBAVT2R", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02973400000, + 48.36846100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PFFVRKQ", + "ref": "79423", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/FFVRKQ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86540000000, + 50.00860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-02-12", + "ref": "FR*SOD*S*FAST*61*1*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST6111;FRIZFPFAST6112;FRIZFPFAST6113", + "description": "IZIVIA FAST - MCDONALDS - SOYAUX", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21206960000, + 45.63318320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "MESANGER - Rue De La Bellangeraie;OuestCharge - Diva Sp - Mesanger - Bellangeraie", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-26;2024-04-18;2024-05-04", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44096A;FRS44E44096001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22870600000, + 47.43085300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61XPEKRDF6YA7HMZZA", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "LISSY - Place Roger Chauveau;Lissy", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77253001;FRS77P77253A", + "start_date": "2023-06-10;2016-04-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69424300000, + 48.62620200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "description": "GreenYellow Shift Mobility/80", + "ref": "1030596", + "capacity": "8", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref:EU:EVSE": "FRGYMP8045547254684429137" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56094200000, + 49.00909000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - CINQ MARS LA PILE - Anciens combattants", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221231;FRS37E221227", + "description": "MODULO - CINQ MARS LA PILE - Anciens combattants", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221231;FRS37E221227" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45853597000, + 47.34623877000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - COMMERCY - Rue de la gare", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS55E134163;FRS55E134152;FRS55E134151;FRS55E134164", + "description": "MODULO - COMMERCY - Rue de la gare", + "capacity": "4", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2022-06-18", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E134163;FRS55E134152;FRS55E134151;FRS55E134164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58652900000, + 48.76430900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*11*2*_*_;FR*SOD*S*LYON*11*1*_*_", + "start_date": "2020-02-04", + "description": "SAC01 - PLACE DU MARCHE - BOULEVARD CASTELLANE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON1121;FRGLYPLYON1112;FRGLYPLYON1111;FRGLYPLYON1122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87250800000, + 45.82236600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Mobilize Power Solutions", + "description": "JRA St Herblain", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "start_date": "2024-02-07", + "ref": "7bfc957e-15b9-43f5-9c1c-288b967cc514;2208d85c-702b-4ff7-af3c-757645b61365", + "network": "JRA St Herblain", + "ref:EU:EVSE": "FRMBZESGALO;FRMBZERVAFI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61640714727, + 47.24915184276 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "capacity": "19", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-06-09;2022-07-25", + "ref:EU:EVSE": "FRSSDPVALDELOIREVOLVO490001", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Val de Loire automobiles - Angers", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53876000000, + 47.45276400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "U FAULQUEMONT EMPLOYES", + "description": "U FAULQUEMONT EMPLOYES", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6547545", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6547545", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59365900000, + 49.05021600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P1529097571088229871", + "ref": "505791", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/TQJ9C4BJCW", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04079600000, + 48.73077200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f686b7e6-d612-51c8-9c1f-e62324e15522;FR*SOD*S*MB33*141*1*_*_", + "charging_station:output": "3.7 kW;22 kW", + "start_date": "2020-03-31", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné;FRS33PMB3314111;FRS33PMB3314112", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "description": "SALLEBOEUF - CENTRE BOURG - AV DE LA TOUR;MOBIVE | Salleboeuf | Centre Bourg | Av de la Tour", + "owner:ref:FR:SIREN": "253303473", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39670900000, + 44.84295700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "7cee8830-6c5b-527b-8815-ff0181f5d26e", + "capacity": "2", + "description": "Corbeil-Essonnes - Allée du Square Dalimier", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46973300000, + 48.60412900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Airbus ADS - Toulouse - Parking Astrolabe", + "ref:EU:EVSE": "FRAIRPAIRBUS314009", + "network": "DRIVECO", + "start_date": "2022-07-01", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47829400000, + 43.56061600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3379EVCP03;LFR3379EVCP02;LFR3379EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3379EVCP03;LFR3379EVCP02;LFR3379EVCP01", + "description": "CONDOM Pyrenees" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37066700000, + 43.95074300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*NICE*68*2*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-06-06", + "charging_station:output": "50 kW", + "description": "CAGNES - HIPPODROME", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE6822;FRM06PNICE6821", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15181487758, + 43.65330390049 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VALLAURIS - PARKING PONT DE LAUBE", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*198*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ19812;FRA16PWIIZ19811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06755800000, + 43.56406500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Sa 14:00-17:00,We,Th,Tu,Fr 14:00-18:00,We,Sa,Th,Tu,Fr 08:00-12:00", + "description": "Freshmile France/YAYRFJMR2U", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "674288", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8588002082405547005", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81495900000, + 46.47176600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPD1PBUFSAR", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Buffalo Grill - Saran", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-06-07", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89284333617, + 47.94424087039 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPVXH5EOTKP9", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/VXH5EOTKP9;Saint-Bonnet-Le-Chateau, Avenue du général Gouraud", + "ref": "96050;VXH5EOTKP9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06461500000, + 45.42443600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENGIE MAMP - Bornes publiques/106EF694-3A38-4924-8D8E-83C4F2D25A2F", + "operator:email": "support@evzen.com", + "ref": "927756", + "ref:EU:EVSE": "FREVZP558722347299890328", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39610400000, + 43.26349500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "ORLÉANS - Martroi", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2020-06-18;2022-09-12;2021-05-11", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E452340016;FRP07E45234001;FRP07E452340011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90369500000, + 47.90279800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "ref:EU:EVSE": "FREBNPYDYHNZJJKE", + "operator:email": "contact@reseau-eborn.fr", + "ref": "YDYHNZJJKE", + "description": "Forcalquier, Espace Rompe Cuou", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77908417300, + 43.95956880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "130 kW", + "network": "Road", + "amenity": "charging_station", + "ref": "1110528", + "opening_hours": "24/7", + "charging_station:output": "22 kW;130 kW;1.6 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP6651159760324348337", + "description": "Road/66601e0f347884001c688e64" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25590000000, + 48.76781500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP143035", + "start_date": "2023-08-02", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Thaon Les Vosges - Maison de Santé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42113000000, + 48.25340900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7810889307602617594;FRFR1P7152296503734547432", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/IZTS5WD7DG;Freshmile France/LLQ2C7DDH1JXJS", + "operator": "Freshmile | FR*FR1", + "ref": "1052484;398903", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11960000000, + 46.79160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Boulevard Voltaire 8", + "ref:EU:EVSE": "FRV75PPX1105", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2022-06-30;2021-06-18", + "opening_hours": "24/7", + "ref": "FR*V75*PPX11*05", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36643760000, + 48.86576580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/L0ZK51ZAHC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "435126", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6875753263821351448", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56071000000, + 47.58688400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "description": "Grillot automobiles - Isle sur le Doubs", + "start_date": "2021-07-13", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPGRILLOT252501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58371600000, + 47.43576400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-09-07", + "description": "900062", + "ref:EU:EVSE": "FRS27PBERNAYTRIBUNAL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59743200000, + 49.08932900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS21P21038A", + "ref": "180344", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SICECO/FR*S21*P21038*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38383700000, + 47.19284400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78443001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-10-26", + "capacity": "2", + "description": "NEAUPHLE-LE-VIEUX - D42", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86130000000, + 48.81366000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*78*19*_*_;FR*SOD*S*QPRK*78*18*_*_;FR*SOD*S*QPRK*78*17*_*_;FR*SOD*S*QPRK*78*16*_*_;FR*SOD*S*QPRK*78*15*_*_;FR*SOD*S*QPRK*78*14*_*_;FR*SOD*S*QPRK*78*13*_*_;FR*SOD*S*QPRK*78*10*_*_;FR*SOD*S*QPRK*78*11*_*_;FR*SOD*S*QPRK*78*12*_*_;FR*SOD*S*QPRK*78*20*_*_;FR*SOD*S*QPRK*78*9*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - 83012 TOULON - MAYOL FACULTES", + "ref:EU:EVSE": "FRQPKPQPRK78191;FRQPKPQPRK78181;FRQPKPQPRK78171;FRQPKPQPRK78151;FRQPKPQPRK78141;FRQPKPQPRK78131;FRQPKPQPRK78121;FRQPKPQPRK78111;FRQPKPQPRK78101;FRQPKPQPRK78161;FRQPKPQPRK78201;FRQPKPQPRK7891", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "start_date": "2024-03-14;2024-07-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93886100000, + 43.12127200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "697025", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLANR2KAFA", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWATP504433019938247089" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32944500000, + 43.22706800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2021-01-21", + "description": "IONITY Village Catalan Ouest", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "ref": "FRIONE413200", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE413200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84834100000, + 42.57778400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "ST JEAN D'ELLE - Salle des Fêtes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-08-24", + "ref:EU:EVSE": "FRS50P50810001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97429000000, + 49.09401300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77E77519001;FRS77P77519A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-23", + "ref": "01F5ZAKH61226N04Q3D9F4JANT", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "VILLIERS-SAINT-GEORGES - Route De Provins;Villiers-St-Georges", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40624100000, + 48.64996300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28;2023-10-13", + "ref": "FRHPCPNF080234", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "capacity": "15", + "description": "RELAIS PONTAULT EST ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080234", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681675;531681674;531681670;531681669;531681668;531681667;531681665;531681664;531681666;531681662;531681663;531681671;531681672;531681673;531681676", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "150 kW;300 kW;54 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60750000000, + 48.80120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SAINT GERVAIS LA FORET - Rte. de Chambord", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E2946;FRS41E2945", + "ref:EU:EVSE": "FRS41E2946;FRS41E2945", + "network": "MODULO - SAINT GERVAIS LA FORET - Rte. de Chambord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35593100000, + 47.57303600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21905", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/EVRKJN", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PEVRKJN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42737000000, + 47.73460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1274609823062436425", + "network": "Freshmile France", + "ref": "1184543", + "description": "Freshmile France/LM0Z7L5Z52PDY6", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76195700000, + 48.58408400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Métropolis/FR*MGP*P92040*I", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "383193", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040I", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791600000, + 48.82499200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Hyundai - Europ Auto - Dunkerque - H Motors", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEUROPAUTOHYUNDAI596401", + "capacity": "3", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "start_date": "2020-01-21", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35938200000, + 51.02171700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "STATION LUMIIN", + "ref:EU:EVSE": "FRC2P000101", + "start_date": "2021-05-07", + "network": "STATION LUMIIN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99254465103, + 44.07761383057 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P6909701528761407212", + "network": "Leclerc", + "description": "Leclerc/IQ31SB4676", + "ref": "487260", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29597700000, + 48.24253500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "d7f5a948-b47c-563b-8de1-ff4e20330b8a", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Saint Jean d'Angély | Faubourg d'Aunis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52973300000, + 45.94862700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SAEMES Méditérranée", + "ref:EU:EVSE": "FRSAEPMED", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "34", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "ref": "FRSAEPMED", + "start_date": "2023-08-02", + "description": "SAEMES Parking Méditerranée", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "539245803" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37565630003, + 48.84510526270 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "ref:EU:EVSE": "FRALLEGO8008632;FRALLEGO8008631;FRALLEGO8001272;FRALLEGO8001232;FRALLEGO8001151;FRALLEGO8001152;FRALLEGO8001231;FRALLEGO8001271;FRALLEGO8001291;FRALLEGO8001292", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego FR, Bazalp Exincourt", + "capacity": "10", + "network": "Allego FR, Bazalp Exincourt", + "ref": "FRALLEGO8001272;FRALLEGO8001232;FRALLEGO8001151;FRALLEGO8001152;FRALLEGO8001231;FRALLEGO8001271;FRALLEGO8001291;FRALLEGO8001292;FRALLEGO8008631;FRALLEGO8008632" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84448800000, + 47.50645200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/FVPEOSH3BV", + "ref:EU:EVSE": "FRLE2P536973052001807333", + "capacity": "10", + "ref": "454263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996700000, + 47.46494100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "La Fare-Les-Oliviers, Avenue René Seyssaud", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PGGE0J0EACH", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19417600000, + 43.55158500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P7403185889797423899", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/FMEMGFENFA", + "network": "SDEY", + "opening_hours": "24/7", + "ref": "699107", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41351300000, + 48.08169800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*51*1*_*_;FR*SOD*S*WIIZ*51*2*_*_", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ5112;FRA16PWIIZ5111;FRA16PWIIZ5121;FRA16PWIIZ5122", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-05", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "VILLENEUVE-LOUBET - PARKING MEDIATHEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692000000, + 43.65618900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1350672968771364305", + "description": "Freshmile France/XFZEEO1KRT", + "network": "Freshmile France", + "ref": "446900", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87592600000, + 48.97890700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRPD1PSCICHV", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "SCI - Chabal", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-01-09", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88261720000, + 44.90621210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSEEISRFNFD;FREBNP3283680643665255056", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346937;SEEISRFNFD", + "description": "Salernes, Pkg des Playes Rue Président Kennedy;Réseau eborn/SEEISRFNFD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82759700000, + 43.10901300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "ENGIE MAMP - Bornes publiques/88A69A00-1A10-4F3F-A6F5-4E0D686A2C3C", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref": "1068243", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "FREVZP8826373121746604267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37876900000, + 43.27684200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - GARDANNE", + "amenity": "charging_station", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR65811;FROTHPOTHR65821", + "start_date": "2023-06-22", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*658*1*_*_;FR*SOD*S*OTHR*658*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45176600000, + 43.45341400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30386;ZJOOX1CSEU", + "ref:EU:EVSE": "FREBNPZJOOX1CSEU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Embrun, Stade - Champs de Mars;Réseau eborn/ZJOOX1CSEU", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49954300000, + 44.56416300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Entre Deux Guiers, Avenue du 8 mai 1945;Réseau eborn/PGI7OZI3HX", + "ref": "PGI7OZI3HX;102614", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPPGI7OZI3HX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75215300000, + 45.43372900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR35011;FROTHPOTHR35021", + "network": "CAMPING LE TALOUCH", + "description": "CAMPING LE TALOUCH - ROQUELAURE", + "ref": "FR*SOD*S*OTHR*350*1*_*_;FR*SOD*S*OTHR*350*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56465200000, + 43.71294700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1081731", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLSONJEFWS5WED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4357225059305304779", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18698600000, + 49.10719700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP29758", + "opening_hours": "24/7", + "description": "Tesla Supercharger Bordeaux Lac, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56361200000, + 44.88252000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ONVUHSIC32", + "ref:EU:EVSE": "FRFR1P4942450120150972078", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "477684" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86641200000, + 50.09835700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPDELATTREVW625001", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "start_date": "2023-02-13", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Volkswagen - Delattre Automobiles -Saint Omer", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21562500000, + 50.76758700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PBOISEMONTROUEN", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900093", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47881400000, + 49.29076000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Merdrignac-Zone de la Heronniere", + "ref:EU:EVSE": "FRS22E22147001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.42360000000, + 48.18869000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "70163;70164", + "opening_hours": "Mo-Sa 08:30-19:30", + "amenity": "charging_station", + "capacity": "1", + "description": "Intermarché - Retournac - 22kW AC ; Intermarché - Retournac - 22kW AC ", + "network": "INTERMARCHE - RETOURNAC", + "ref:EU:EVSE": "FRZIME22AC70164;FRZIME22AC70163", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "480819705", + "start_date": "2021-08-30", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02997100000, + 45.21093100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "ref:EU:EVSE": "FRROSE261", + "description": "Garage_Justice", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20283000000, + 50.67533600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78138003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-30", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CHANTELOUP-LES-VIGNES - Place des Arcades", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03742200000, + 48.97288100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mayenne", + "description": "Mayenne", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE416852;FRIOYE416851;FRIOYE416809;FRIOYE416807;FRIOYE416806;FRIOYE416805;FRIOYE416804;FRIOYE416801;FRIOYE416802;FRIOYE416803;FRIOYE416808;FRIOYE416810;FRIOYE416811;FRIOYE416812;FRIOYE416853", + "capacity": "15", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "ref:EU:EVSE": "FRIOYE416852;FRIOYE416851;FRIOYE416809;FRIOYE416807;FRIOYE416806;FRIOYE416805;FRIOYE416804;FRIOYE416801;FRIOYE416802;FRIOYE416803;FRIOYE416808;FRIOYE416810;FRIOYE416811;FRIOYE416812;FRIOYE416853", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69361573000, + 48.09530021000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS52P5683882833754659053", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref": "1034907", + "network": "SDED52", + "description": "SDED52/LLTZK18IYOXE0B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95218700000, + 48.63980500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRS65E65440016", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TARBES - Parking Alsthom", + "start_date": "2024-05-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09781600000, + 43.21809200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE006202;FRIENE006201", + "amenity": "charging_station", + "start_date": "2023-03-16", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE006202;FRIENE006201", + "description": "Piffonds", + "network": "Piffonds" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16307100000, + 48.04752300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VIC LA GARDIOLE - Rue Du Puits Neuf", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34333001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79507700000, + 43.49001700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ESSAY - Rue Roederer", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61156A", + "ref": "SE61-ESSAY-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24506600000, + 48.54155500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3250772447810150222", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "682136", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CGRR6UGO53" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.80520000000, + 48.79499700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "ref:EU:EVSE": "FRS31PEBSQJH", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "description": "Roulez Électrique En Haute-Garonne/EBSQJH", + "ref": "33445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31717000000, + 43.33140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92004018", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ASNIERES-SUR-SEINE - Parking du cimetière des Chiens", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-28", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29706770000, + 48.91037020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCI Haute Savoie - 74000", + "network": "CCI Haute Savoie - 74000", + "amenity": "charging_station", + "start_date": "2023-08-08", + "ref:EU:EVSE": "FRCG0E000167;FRCG0E000213;FRCG0E000214", + "ref": "FRCG0E000167;FRCG0E000213;FRCG0E000214", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12553800000, + 45.90900300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VALDEBORE - LA BOLLINE - PARKING DU CLOT", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-22", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE12411;FRM06PNICE12412", + "ref": "FR*SOD*S*NICE*124*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16732700000, + 44.07030100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Mont de Marsan | Place de la Douze", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "ref": "202a0adc-a2e4-52c0-ae15-a1835d25f88f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49718200000, + 43.89362000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-04-25", + "description": "MANOM / CHEMIN DE LA MOSELLE", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE57MABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19799800000, + 49.39632400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS185292;FRBMPS185295;FRBMPS185294;FRBMPS185293", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Hôtel Kyriad Direct Auxerre - Appoigny", + "ref": "185292;185293;185294;185295", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54071440000, + 47.85298260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MER Orléans", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4039EVCP03;LFR4039EVCP02;LFR4039EVCP04;LFR4039EVCP01", + "ref": "LFR4039EVCP03;LFR4039EVCP02;LFR4039EVCP04;LFR4039EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51395800000, + 47.70297800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-10E, 3 Boulevard Rouvier", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PZOBRSUP7OM", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41676900000, + 43.27913900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Bretigny-sur-Orge - Rue Georges Charpak", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1de4e64c-6834-51ab-be30-1dc6cc077dc5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29902800000, + 48.60544600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84000*AVG*MONCLAR", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP84000AVGMONCLAR", + "start_date": "2020-10-02", + "description": "MONCLAR -AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80508100000, + 43.93609400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LIEURAN LES BEZIERS", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4063EVCP02;LFR4063EVCP01", + "ref": "LFR4063EVCP02;LFR4063EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23050600000, + 43.41918600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Super U - Vernou-sur-Brenne", + "start_date": "2021-12-07", + "ref:EU:EVSE": "FRPD1PSYUVSB", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84891576533, + 47.41362121586 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref": "ZZEIEVWEMC", + "ref:EU:EVSE": "FREBNPZZEIEVWEMC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Taulignan, Place du 11 Novembre", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97884500000, + 44.44367500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892365", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8390884417179863829", + "description": "Freshmile France/LLJ8DBOXH1U4W1", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80098500000, + 43.63345000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "16", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E13117001", + "description": "Parking gare de Vitrolles - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23569260000, + 43.44305840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/DHQUXFGSJ0", + "ref:EU:EVSE": "FREBNP982122714711262590", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "346661", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35334100000, + 46.16324900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Donat-Sur-L'Herbasse, Place Anatole France;Réseau eborn/SJORIJEACH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SJORIJEACH;48400", + "ref:EU:EVSE": "FREBNPSJORIJEACH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98514300000, + 45.12212600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-22", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "INTERMARCHE - ANDERNOS LES BAINS", + "ref:EU:EVSE": "FROTHPOTHR46722;FROTHPOTHR46721;FROTHPOTHR46711;FROTHPOTHR46712", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*467*1*_*_;FR*SOD*S*OTHR*467*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09328200000, + 44.74521100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1360634635340603067", + "ref": "466182", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/SLTGDVGEJ0", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93140100000, + 47.41411200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10017581;FRUBIE10022364;FRUBIE10027440;FRUBIE10033846;FRUBIE10044128;FRUBIE10072923;FRUBIE10084451;FRUBIE10090336", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "description": "107 Rue Commandant Abadie", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "start_date": "2023-09-11", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17088900000, + 49.50116700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FKCYGTVQZZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "674207", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRFR1P54740444783217164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218600000, + 44.92366400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555003", + "charging_station:output": "22 kW", + "start_date": "2022-06-02", + "network": "CPO Alizé Liberté Public", + "description": "TOULOUSE - 100 Allée de Barcelone" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42404000000, + 43.60904000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "465975", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CDWU9FOQUI", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3546419678207107768" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23202400000, + 46.18073200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/LLL6AW8Q327WDJ", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P9030732188740643042", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "896688" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38260100000, + 49.30098400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS11E11408001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-05-30;2024-05-30", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "network": "Reveo", + "description": "VERZEILLE - Ombrieres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32326200000, + 43.12432800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BUC - Avenue Roland Garros", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-01-25", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78117005", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11473000000, + 48.76370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "description": "CCTLB - Hablainville", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "2b47b4a3-61df-5a84-834c-e4347588b6cf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72962400000, + 48.51742300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref:EU:EVSE": "FRS70PCHAMPAGNEYREN", + "operator:email": "roaming@freshmile.com", + "description": "SIED70/Champagneyren", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref": "79831", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68407000000, + 47.70440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH13E62727001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "RUITZ - Rue De Béthune", + "start_date": "2022-12-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59226321305, + 50.46990335300 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35287001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "ST LUNAIRE - 17 rue du Clos du Marais ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10327000000, + 48.63247300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63113G", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref": "518312", + "amenity": "charging_station", + "description": "SIEG63 - ePremium - Clermont Ferrand - Bughes;SIEG 63/FR*S63*P63113*G", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08500300000, + 45.78558000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6341828955108699630", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLIU9V2ZWHVBCV", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892194", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.26029600000, + -21.01574100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PSAXDEN", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/SAXDEN", + "network": "SDEG32", + "ref": "21850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30117400000, + 43.75700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2021-11-15", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94002006", + "capacity": "0", + "network": "SIPPEREC", + "description": "ALFORTVILLE - Avenue Joseph Franceschi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42127710000, + 48.80536990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "opening_hours": "Fr 14:00-18:00,Th 14:00-18:00,We 14:00-18:00,Tu 14:00-18:00,Sa 08:00-12:00,Fr 08:00-12:00,Th 08:00-12:00,We 08:00-12:00,Tu 08:00-12:00,Mo 14:00-18:00,Mo 08:00-12:00", + "capacity": "3", + "network": "BL Niort - 79000 - 1", + "charging_station:output": "50 kW;22 kW", + "description": "BL Niort - 79000 - 1", + "operator:email": "info@chargeguru.com", + "start_date": "2024-01-15", + "ref:EU:EVSE": "FRCG0E001321;FRCG0E001320;FRCG0E001319", + "ref": "FRCG0E001321;FRCG0E001320;FRCG0E001319" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41825600000, + 46.33258600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2024-07-23;2023-08-31", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING STALINGRAD", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*244*1*_*_;FR*SOD*S*NICE*244*2*_*_", + "ref:EU:EVSE": "FRM06PNICE24421;FRM06PNICE24412;FRM06PNICE24411;FRM06PNICE24422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28649810629, + 43.69572153452 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "f49e78c6-1410-5603-82de-357f259d8bc7", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Monsempron-Libos | Rue des Ecoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94391600000, + 44.48204400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*384*1*_*_", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - PARKING DU MARCHE - SANNOIS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE38412;FRSIGPSIGE38411", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2023-07-05;2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25721000000, + 48.97150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76410002", + "charging_station:output": "22 kW", + "description": "MAROMME - Place Saint-Just", + "start_date": "2022-09-30;2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04125500000, + 49.48148820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3383EVCP01", + "description": "NEUVILLE DU POITOU", + "ref:EU:EVSE": "LFR3383EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25189900000, + 46.68440600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "7d296d56-9279-5131-83d9-7c5d995549ea", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Chérac | Route du Cormier", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43937400000, + 45.70349500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "46645", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PSEPTFONDS", + "description": "SDE82/septfonds" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61552000000, + 44.17580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "ref:EU:EVSE": "FR55CP92350LPRPKHALLE", + "start_date": "2023-03-15", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25641300000, + 48.77657400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR4031EVCP01;LFR4031EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "Gemozac - Frenes", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4031EVCP01;LFR4031EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68011800000, + 45.57780100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Merlevenez", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-11-02", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMMLV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22629500000, + 47.73700900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPPS4X9OLB4Z;FREBNP8965871863011107285", + "ref": "PS4X9OLB4Z;346886", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/PS4X9OLB4Z;Montferrat, Pkg. du Stade rte de Draguignan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48246600000, + 43.61059600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP74160A", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP74160A", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Hôtel les Sapins", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40182010909, + 45.87653066697 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-01-19", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Cora - Amphion", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;60 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORAMP", + "charging_station:output": "60 kW;50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52462290000, + 46.39131810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market Cambrai", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPEGTZ", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24999700000, + 50.16321000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Le Havre - Hôtel Première Classe", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPLHVPC", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-05", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15212400000, + 49.49689700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*157*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH15712;FROTHPAUCH15711", + "start_date": "2023-10-24", + "description": "AUCHAN - EPAGNY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07527896876, + 45.93792575096 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRCPIE6771775;FRCPIE6771645;FRCPIE6771725", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2023-09-11", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "description": "SOHP BORNES SEM SOHP 4", + "ref": "FRCPIE6771775;FRCPIE6771645;FRCPIE6771725", + "network": "SOHP BORNES SEM SOHP 4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26830600000, + 48.82431200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "477606", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/BSTWKUXLHX", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8104446262477934988", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16782700000, + 49.25300700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75P901002", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9010*02", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue du Faubourg Saint Martin 150", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010300000, + 48.87546500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/S3RCEDCLUC", + "ref:EU:EVSE": "FRFR1P3138210045662278271", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "682241", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38112700000, + 48.97655200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1753", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Metz", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17079100000, + 49.21641400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1053135", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4583851102232305435", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLUKZEH2B2FFM9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09415000000, + 46.98087800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89283515", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "start_date": "2022-12-02", + "network": "R3", + "description": "R3 - Norauto Leers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22228800000, + 50.68201000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/W0OVAVEOX2", + "operator:email": "roaming@freshmile.com", + "ref": "461994", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P5482400465504912481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212000000, + 49.33861200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12231001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-05-16", + "charging_station:output": "22 kW", + "description": "St JEAN DU BRUEL - Rue de la Cabrune, D341 Parking Station Service", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35956000000, + 44.02535100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "815397", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRWA5P2873148985225484544", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "description": "WAAT/FRWA5LYYWQGKZR", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83750500000, + 46.64629200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS49E49337001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SOUCELLES - Chemin des Vignes", + "charging_station:output": "22 kW", + "start_date": "2024-04-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41920244700, + 47.56992087303 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81104001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GIROUSSENS - Parking Centre Céramique", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77382500000, + 43.76492700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "owner:ref:FR:SIREN": "531681494;531681492;531681496;531681493;531681495;531681497;531681498", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF010263", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRHPCPNF010263", + "description": "RELAIS MONT RIBOUDET", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07620000000, + 49.44410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GOURDON - Boulevard Genouillac", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-12", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS46E46127002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38334900000, + 44.73852200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/PWIHLJMHAB", + "ref:EU:EVSE": "FRS56PPWIHLJMHAB", + "operator:email": "roaming@freshmile.com", + "ref": "298648", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15680500000, + 47.34725000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59178003", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "DOUAI - Zi Douai Dorignies - Hôtel communautaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10234000000, + 50.39738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E29220001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Pont l Abbe-D785", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21789100000, + 47.88036000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068003", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-07-19", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Lafayette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50936707390, + 48.80697381704 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B HOTEL CLERMONT-FERRAND BRÉZET", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP90199578", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14135400000, + 45.78662500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "1c52864d-6bc9-5095-9e8b-4e6de31547f0", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Rouffignac Saint Cernin de Reilhac | Place 31 Mars", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97773600000, + 45.04735900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PARKING DES ACACIAS - MARCOUSSIS", + "ref": "FR*SOD*S*SIGE*53*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2021-03-11", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE5312;FRSIGPSIGE5311", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23297900000, + 48.64297900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "Allego FR, Carrefour, TJ2 Auch", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9009742;FRALLEGO9009741;FRALLEGO9009732;FRALLEGO9009731;FRALLEGO9008332;FRALLEGO9008072;FRALLEGO9008071;FRALLEGO9008331", + "ref": "FRALLEGO9009742;FRALLEGO9009741;FRALLEGO9009732;FRALLEGO9009731;FRALLEGO9008332;FRALLEGO9008072;FRALLEGO9008071;FRALLEGO9008331", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-09-03", + "description": "Allego FR, Carrefour, TJ2 Auch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58134100000, + 43.63069000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "opening_hours": "24/7", + "network": "ZEENCO", + "charging_station:output": "50 kW;22 kW", + "description": "Fast automobile Verdun;Fast automobile Verdu", + "owner:ref:FR:SIREN": "791432263", + "operator:email": "franck.legardeur@zeenco.tech", + "ref:EU:EVSE": "FRLMSE1000034866;FRLMSE10000348662;FRLMSE10000348663", + "start_date": "2022-01-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36887700000, + 49.18286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "3a39a07b-b7d1-5593-b483-6f6481c1f9de", + "description": "MOBIVE | Urrugne | Parking d'Abbadie", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69766900000, + 43.36367400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA GUERINIERE - Parking Des Pinsonnieres", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85106001", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23500000000, + 46.96945000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "PONTAULT COMBAULT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSPLTCO", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60998600000, + 48.77611200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3256EVCP01;LFR3256EVCP02", + "description": "YVETOT Bichot", + "amenity": "charging_station", + "ref": "LFR3256EVCP01;LFR3256EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76764400000, + 49.60850900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Librefruit - Gisors", + "opening_hours": "24/7", + "start_date": "2023-09-12", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PLBFGSR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78520194289, + 49.26841712454 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/CDANYF;Seyssuel, Rue Du Château Picard", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "85715;CDANYF", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPCDANYF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84452000000, + 45.55890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "EVzen/4819032B-2321-425D-AA0D-577B8401C6CE", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "1114032", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FREVZP7360078152323659299", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29923300000, + 46.29094100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-16", + "capacity": "3", + "charging_station:output": "50 kW;22.17025 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PGDMAUB", + "description": "Le Géant du Meuble - Cavagna 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14915828462, + 45.75492990327 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 06:30-20:30, Tu 06:30-20:30, We 06:30-20:30, Th 06:30-20:30, Fr 06:30-20:30, Sa 06:30-20:30, Su 07:30-13:30", + "amenity": "charging_station", + "ref:EU:EVSE": "FRE11PLMPUGETSURARGENS834801", + "capacity": "4", + "start_date": "2018-12-11", + "description": "Leroy Merlin - Puget-sur-Argens Fréjus", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69138100000, + 43.45764800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP02691A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "capacity": "3", + "description": "e-Totem - La Villa D'isle Saint-Quentin", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP02691A", + "operator:email": "contact@e-totem.fr", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29428112362, + 49.84373811192 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-18", + "ref:EU:EVSE": "FROTHPOTHR15112;FROTHPOTHR15111", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCVL - YZERON - LAC DU RONZEY", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS", + "ref": "FR*SOD*S*OTHR*151*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58352100000, + 45.70885900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6957525", + "description": "LE CLAPAS STATION 1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6957525", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "operator:email": "info@chargepoint.com", + "network": "LE CLAPAS STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39509700000, + 44.39348900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLXU6143AV4ZTH", + "ref:EU:EVSE": "FRFR1P2191728699107953505", + "operator:email": "roaming@freshmile.com", + "ref": "1182780", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53137600000, + 45.01150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP122060", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-08-23", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL NANTES PARC EXPOS LA BEAUJOIRE", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51386200000, + 47.25318100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PZGGYCJ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "232372", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ZGGYCJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21959000000, + 46.20470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGCAHYUNDAI539401", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-11-10", + "operator:email": "support@driveco.com", + "description": "Hyundai - GCA - Laval", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79980800000, + 48.05480500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4380681842785060054", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1069230", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/LLTWW71MS1OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44499400000, + 44.93115100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "network": "DRIVECO", + "description": "Brignais - Place du 8 mai", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBRIGNAIS695301", + "opening_hours": "Mo 00:00-23:59, Tu 00:00-23:59, We 00:00-23:59, Th 00:00-23:59, Fr 00:00-23:59, Sa 00:00-05:59, Sa 13:00-23:59, Su 00:00-23:59", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75396500000, + 45.67243200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LURAY - Rue Emile Zola", + "ref:EU:EVSE": "FRS28E130756", + "network": "MODULO - LURAY - Rue Emile Zola", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS28E130756", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39426100000, + 48.71834200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P6549775720734644002", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457602", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/YBCAAXHFBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147000000, + 49.18504300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LJ7MZKRYP", + "ref": "1127955", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P8855319341035596521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02856400000, + 43.10422800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-11-14", + "description": "POILLEY - aire de l'Estuaire", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50407001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33678360000, + 48.62496710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "SAINT AFFRIQUE LES MONTAGNES - Chemin des Muriers", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "ref:EU:EVSE": "FRS81E8123500121;FRS81E8123500112;FRS81E8123500111;FRS81E8123500122", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20420200000, + 43.53272400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681491;531681490;531681488;531681489", + "ref": "FRHPCPNF078078", + "amenity": "charging_station", + "start_date": "2024-01-09;2023-07-31", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS GRASSINIERE", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW", + "ref:EU:EVSE": "FRHPCPNF078078" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51250000000, + 47.16020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49007S;FRS49E49007019", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-27;2024-04-06;2024-04-04", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "ANGERS - Rue Toussaint;OuestCharge - Diva Sp - Angers - Toussaint", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55655000000, + 47.46942300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PWQSGHK", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/WQSGHK", + "ref": "48952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72724000000, + 49.30850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SOMAIN - Rue Anatole France", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH07E59574004", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27944000000, + 50.35909300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CODOGNAN - Parking Des Arènes", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30083001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21844600000, + 43.73225700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PLEVJXJ", + "operator:email": "roaming@freshmile.com", + "ref": "251923", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/LEVJXJ", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44976000000, + 47.68180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP90256852", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B Hôtel Alençon-Nord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09938000000, + 48.45147500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref": "514949", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93072A", + "owner:ref:FR:SIREN": "885354860", + "description": "Métropolis/FR*MGP*P93072*A;Metropolis - Citadine - Stains - Marcel Pointet", + "start_date": "2022-12-15", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38167700000, + 48.95205100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Shell Clemenceau", + "capacity": "19", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRSHEE327;FRSHEE326;FRSHEE325;FRSHEE324;FRSHEE323;FRSHEE322", + "amenity": "charging_station", + "description": "Shell Clemenceau", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSHEE327;FRSHEE326;FRSHEE325;FRSHEE324;FRSHEE323;FRSHEE322", + "start_date": "2023-04-08", + "charging_station:output": "22 kW;150 kW;125 kW;300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09607100000, + 49.49285700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AUCH - ZAC Grand Chêne n°1", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E32013001", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-01-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61105000000, + 43.66553000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89370720", + "capacity": "1", + "description": "ENGIE Vianeo - A1 Ressons Ouest", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71971800000, + 49.51858100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "816d0381-19b0-5714-aef6-6098f05bf709", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Exideuil Sur Vienne | Place de la Salle des Fêtes", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67492300000, + 45.88549000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Gare SNCF - AUCHY LES HESDIN", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62AHGA", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10246300000, + 50.39627200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Carrefour Energies;Allego Carrefour Avranches", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "75 kW;300 kW;0 kW", + "description": "Allego Carrefour Avranches;AVRANCHES", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "capacity": "11;10", + "start_date": "2022-12-16;2022-12-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9007562;FRALLEGO9002543;FRALLEGO9002541;FRALLEGO9001142;FRALLEGO9001141;FRALLEGO9001131;FRALLPEVCARSAVRCHE;FRALLEGO9001132;FRALLEGO9002542;FRALLEGO9007561;FRALLEGO9007821;FRALLEGO9007822", + "ref": "FRALLEGO9007562;FRALLEGO9001142;FRALLEGO9001141;FRALLEGO9001131;FRALLEGO9001132;FRALLEGO9002541;FRALLEGO9002542;FRALLEGO9002543;FRALLEGO9007561;FRALLEGO9007821;FRALLEGO9007822", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34959800000, + 48.65422600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3821EVCP01;LFR3821EVCP02", + "description": "OSNY - Gisors", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3821EVCP01;LFR3821EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07987900000, + 49.07297000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM29E29019003", + "description": "BREST - Rue Jean Marie Le Bris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48532600000, + 48.38349700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUVUSPH", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-06-12", + "ref": "UVUSPH;75086", + "capacity": "2;3", + "description": "Mayres, Place du Chambon;Réseau eborn/UVUSPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11127000000, + 44.66630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3266918975070786529", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1009158", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "description": "Freshmile France/LLPI9DYP72QIOJ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55813800000, + 47.21273900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-11-29", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT JEAN DE LUZ - Grande Plage", + "ref:EU:EVSE": "FRP07E64483002;FRP07E644830021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66034440000, + 43.39168950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPYWRSAWNEVT;FREBNP4469179895624557695", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/YWRSAWNEVT;Villaz, Mairie", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "419367;YWRSAWNEVT", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19070500000, + 45.95092600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Road", + "opening_hours": "Fr,Th,Sa,We,Tu,Su,Mo 08:00-18:00", + "socket:type2_combo:output": "100 kW;80 kW", + "amenity": "charging_station", + "ref": "1040388", + "description": "Road/6602b0c7dc671a001cf5efe6", + "charging_station:output": "100 kW;22 kW;80 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP1627465667766977366" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17366600000, + 48.04877000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "network": "DEP INDUSTRIE", + "ref:EU:EVSE": "FROTHPOTHR26911", + "amenity": "charging_station", + "capacity": "1", + "description": "DEP INDUSTRIE - SAINT-VICTOR-DE-CESSIEU", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*269*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41428200000, + 45.53596300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6605035", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CONNECT ROUEN SUD", + "ref:EU:EVSE": "FRCPIE6605035", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT ROUEN SUD", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11222900000, + 49.39773900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ZK1N3I2E1J", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5781829076472111103", + "charging_station:output": "22 kW", + "ref": "579005", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58648600000, + 44.70702000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "WAAT", + "ref": "1132218", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P1454864528013040115", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "description": "WAAT/s520979" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52578500000, + 49.06159100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "232483", + "socket:type2_combo:output": "44 kW;50 kW;100 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/FATVBU", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PFATVBU", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "44 kW;50 kW;100 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75133900000, + 48.82581400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Checy", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "aguerin@seeyousun.fr", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "ref:EU:EVSE": "FRSYSEFDPCHECY", + "start_date": "2022-07-19", + "charging_station:output": "22 kW", + "network": "Foncière des parcs", + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03345800000, + 47.90535100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7274919422680513707", + "description": "Freshmile France/MYNT8Y8UH1", + "charging_station:output": "7.4 kW", + "ref": "368887" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62829100000, + 44.84167000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPEVOLUTION23KIA230001", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2019-12-26", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "description": "Kia - Guéret", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88052500000, + 46.18361400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Bourg Blanc-Place Charles Et Marie Chapalain", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2901500", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50715700000, + 48.49913000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P1525424697248380880", + "operator:email": "roaming@freshmile.com", + "ref": "74996", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/NZLM3MS4GS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29880000000, + 48.23895300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "owner:ref:FR:SIREN": "480470152", + "amenity": "charging_station", + "ref": "2177b1b5-f404-4ea7-861e-d999c12fec0a;575861;575864", + "charging_station:output": "22 kW", + "opening_hours": "Sa,Fr,Tu,Su,Mo,We,Th 00:00-23:59;Mo,Tu,Th,We,Su,Fr,Sa 00:00-23:59;24/7", + "ref:EU:EVSE": "FRZP1PEAC36799;FRZP1P6689276744085735878;FRZP1P7184001583291556933;FRZP1PEAC36800;FRZP1PEAC39165", + "description": "Zephyre/1834421;Zephyre/1834396;NORAUTO - Aubagne", + "network": "Zephyre;NORAUTO - Aubagne", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59519700000, + 43.29690800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-04-26", + "ref:EU:EVSE": "FRROSE77;FRROSE76;FRROSE74;FRROSE75", + "owner:ref:FR:SIREN": "839265873", + "capacity": "20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "duriez3;duriez2;duriez1;duriez4", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15574450000, + 50.51617450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/Senarpaum", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PSENARPAUM", + "ref": "48985", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71779000000, + 49.89060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST15211;FRIZFPFAST15212;FRIZFPFAST15213", + "ref": "FR*SOD*S*FAST*152*1*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "start_date": "2024-08-26", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - CASTANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49679625947, + 43.52021829417 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ST LAURENT NOUAN - Rue des écoles", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E4616;FRS41E4615", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ST LAURENT NOUAN - Rue des écoles", + "ref": "FRS41E4616;FRS41E4615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60551200000, + 47.71568400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60P2361341107207334772", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "598194", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/UNHYFPZFLD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00688500000, + 49.40785900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "VIL11 - BUERS - SALENGRO", + "start_date": "2023-12-15", + "ref": "FR*SOD*S*LYON*66*1*_*_", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON6612;FRGLYPLYON6611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88844500000, + 45.78212800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAUVE - Route De Quissac,Parking Du Cimetière", + "ref:EU:EVSE": "FRS30E30311001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95182800000, + 43.94180800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "25057", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PYVXMZJ", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/YVXMZJ", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31849000000, + 48.00800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Norauto Amancy", + "network": "Réseau de recharge Fuzed", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "contact@fuzed.fr", + "charging_station:output": "22 kW", + "start_date": "2024-06-03", + "ref:EU:EVSE": "FRFZDP74800002", + "operator": "Fuzed", + "owner:ref:FR:SIREN": "927865220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31519600000, + 46.07397900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRN54E187399;FRN54E187398", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "MODULO - TOMBLAINE - Pkg. Bois La Dame", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - TOMBLAINE - Pkg. Bois La Dame", + "ref": "FRN54E187399;FRN54E187398", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22542000000, + 48.68078900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*200*5*_*_;FR*SOD*S*SIGE*200*3*_*_;FR*SOD*S*SIGE*200*2*_*_;FR*SOD*S*SIGE*200*1*_*_;FR*SOD*S*SIGE*200*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "SIGEIF - 52 RUE DE SEINE - COLOMBES", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-08-24", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE20041;FRSIGPSIGE20031;FRSIGPSIGE20011;FRSIGPSIGE20021;FRSIGPSIGE20051" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22880800000, + 48.92223200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Logis Hôtel la Beauronne - 24650", + "network": "Logis Hôtel la Beauronne - 24650", + "amenity": "charging_station", + "ref": "FRCG0E001791;FRCG0E001790;FRCG0E001789", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "ref:EU:EVSE": "FRCG0E001791;FRCG0E001790;FRCG0E001789", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67438200000, + 45.20045200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "350002697", + "opening_hours": "Mo-FR 14:00-17:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE11734589", + "start_date": "2023-03-27", + "description": "MEDICO SOCIAL", + "ref": "6c92a157-0252-486b-840b-de0df725f1e4", + "charging_station:output": "22 kW", + "operator:email": "e.gautier-le-bail@adapei35.asso.fr", + "network": "MEDICO SOCIAL", + "operator": "MEDICO SOCIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99000000000, + 48.62000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "56941077-f2f5-594c-9149-a7804f5691ea", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint-Victurnien | Croix de lavergne", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03642200000, + 45.89526300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2023-12-07", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE85TABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Musée de l'Automobile de Vendée-TALMONT ST HILAIRE", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66932400000, + 46.47697200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CANNES PARKING ST DIZIER", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ911;FRA16PWIIZ912", + "ref": "FR*SOD*S*WIIZ*9*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-04-04", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00874800000, + 43.55132300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "HENDAYE Joncaux", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3668EVCP02;LFR3668EVCP01;LFR3668EVCP04", + "ref:EU:EVSE": "LFR3668EVCP02;LFR3668EVCP01;LFR3668EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77162700000, + 43.34951800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34270004", + "network": "Reveo", + "description": "SAINT JEAN DE VEDAS - Rue Saint Exupéry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84765800000, + 43.56185300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Renaison, Parking place du 11 novembre;Réseau eborn/GZW7760W41", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPGZW7760W41", + "ref": "GZW7760W41;85985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92594200000, + 46.05170800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892596", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8672493154786904410", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKWPNLPZ1W3VZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.30243600000, + -17.61431800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E92063001;FRP07E920630011", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-06-16;2024-02-23", + "description": "RUEIL-MALMAISON - Mobipole", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17362800000, + 48.88708500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPMFG307V2NS", + "ref": "MFG307V2NS", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Sciez, Parking face à la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37465930000, + 46.33240480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPPLEHI", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Plérin - Ibis Styles", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-02-28", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76069200000, + 48.53423700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-22", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Niort P1 - EFFIA", + "ref:EU:EVSE": "FRP01E79191001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45476700000, + 46.31924600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "SONEPAR VITROLLES 4", + "start_date": "2022-10-18", + "amenity": "charging_station", + "description": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642605;FRCPIE6642565;FRCPIE6642615;FRCPIE6642625", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6642605;FRCPIE6642565;FRCPIE6642615;FRCPIE6642625", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24171600000, + 43.43521000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "ref": "DLA46WPGDU;470991", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "description": "Easy Charge/DLA46WPGDU;Vienne, Quai Riondet", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;22 kW", + "charging_station:output": "50 kW;22 kW", + "start_date": "2021-07-20;2022-04-20", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPDLA46WPGDU;FRECHP4697496753606456771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86831000000, + 45.52124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1723", + "start_date": "2021-12-01", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Avenue de la Porte de Villiers 28", + "ref": "FR*V75*PPX17*23", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28497210000, + 48.88542460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/DP3PB1WVYW", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "398861", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5367925514717491560", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91403000000, + 45.57560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9017*03", + "network": "Belib'", + "description": "Paris | Avenue Gourgaud 4", + "amenity": "charging_station", + "start_date": "2021-05-05", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901703", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29746300000, + 48.88568900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLMYK2MEO20JRS", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1026774", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7869500134622463486", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86911100000, + 46.63826100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-11", + "network": "DRIVECO", + "description": "Seat - Lons", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEDENAUTOSEAT641401", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38102900000, + 43.33827500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2916900", + "charging_station:output": "22 kW", + "description": "Plogonnec-Rue des Peupliers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.19045400000, + 48.07729000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11185001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "LAGRASSE - Parking Avenue Des Condamines", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62055600000, + 43.09277780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MGMI - La Roche sur Yon - 22kW AC ", + "amenity": "charging_station", + "capacity": "1", + "ref": "128521", + "network": "MGMI", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "328582713", + "start_date": "2022-04-12", + "opening_hours": "Mo-Fr 07:45-17:00", + "ref:EU:EVSE": "FRZPEE22AC128521", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41724700000, + 46.64418200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTFERRIER - Place De L'Eglise", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS09E09206001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79520900000, + 42.89538500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PMPGGBH", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/MPGGBH", + "opening_hours": "24/7", + "ref": "79432", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94363000000, + 49.70180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST3413;FRIZFPFAST3412;FRIZFPFAST3411", + "start_date": "2024-01-11", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*34*1*_*_", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - FORGES-LES-EAUX", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53871900000, + 49.61947860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-28;2024-04-17;2024-04-18", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44069001;FRS44E44069003;FRS44P44069A", + "description": "OuestCharge - Pulse 50 - Guerande - Flaubert (8);GUERANDE - Avenue Gustave Flaubert", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW;22 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "capacity": "1;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41650600000, + 47.32431200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61Z0GCXDZK54V3RCTZ", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77179A;FRS77E77179001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-16;2016-08-12", + "description": "FERICY - Rue De Ferland;Féricy", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80000000000, + 48.45750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "capacity": "7", + "description": "GreenYellow Shift Mobility/18", + "ref": "993408", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGYMP5104381039770221309", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84614100000, + 47.89835500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SAINT CHRISTOPHE SUR LE NAIS - Alluye", + "ref": "FRS37E220289;FRS37E220290", + "capacity": "2", + "description": "MODULO - SAINT CHRISTOPHE SUR LE NAIS - Alluye", + "amenity": "charging_station", + "start_date": "2023-11-03", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220289;FRS37E220290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47541000000, + 47.61592200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCTLB - Parking Carmes-Lunéville", + "operator": "43__CCTLB", + "ref": "0c36bf0c-c21d-5584-ac02-75613b68606f", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48904700000, + 48.59850100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Super U", + "capacity": "2", + "charging_station:output": "120 kW", + "description": "Super U Besse-sur-Braye", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "start_date": "2023-10-14", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "owner:ref:FR:SIREN": "378515340", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75663600000, + 47.84149400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "453adddd-7963-5097-8c3a-dd73684ffd5a", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | AUBUSSON | Esplanade Charles de Gaulle", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16638900000, + 45.95537800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE94076001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLEJUIF - Rue Eugène Varlin", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-12-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36322800000, + 48.79398920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6530565", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "network": "HYPER U HANCHES PARKING U1", + "opening_hours": "24/7", + "ref": "FRCPIE6530565", + "charging_station:output": "22 kW", + "description": "HYPER U HANCHES PARKING U1", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67541900000, + 48.59399600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971993", + "ref:EU:EVSE": "FRLE2P6317552267524261506", + "description": "Leclerc/LLN37I81DX1MZB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54495400000, + 50.71648100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Saint Aubin de Blaye | Brasse Misere - Parking Pepiniere D Entreprise", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "a074df9e-f0d0-5b13-8051-b22bf5dc0204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55776300000, + 45.24861900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB57009A", + "start_date": "2017-03-06;2017-03-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Rom - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11574545000, + 46.29266393000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-28", + "description": "Airbus - Blagnac - P22", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS317006", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38573000000, + 43.62440400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4254EVCP01", + "description": "SOLESMES Gaulle", + "ref": "LFR4254EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50535700000, + 50.19622500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*374*1*_*_", + "charging_station:output": "22 kW", + "description": " NICE - PARKING CRONSTADT RP", + "ref:EU:EVSE": "FRM06PNICE37411;FRM06PNICE37412", + "operator:email": "sav@izivia.com", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25749200000, + 43.69606510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "TOUET-SUR-VAR - PARKING VILLAGE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ17212;FRA16PWIIZ17211", + "start_date": "2022-08-16", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*172*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00884700000, + 43.94785800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "491889", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "ref:EU:EVSE": "FRFR1P808732701501999594", + "opening_hours": "24/7", + "description": "Freshmile France/TEEOXBC8Q5", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18645600000, + 49.24856200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2022-08-10", + "capacity": "3", + "description": "Bricorama - Viry-Noureuil", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PBRAVNR", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25379400000, + 49.64071300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Quinson, Grand Parking;Réseau eborn/OBSGYTJHXU", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPOBSGYTJHXU;FREBNP7134833279641999665", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "OBSGYTJHXU;346847", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03899500000, + 43.69824200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNANHC", + "description": "Nanterre - Hôtel Campanile", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-02", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21382200000, + 48.89196800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "TOULOUSE - Ramblas", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2023-07-28;2020-06-19;2024-03-19", + "ref:EU:EVSE": "FRP07E31555004;FRP07E315550041;FRP07E315550042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45374500000, + 43.60929500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPQIJDB1KGQD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "QIJDB1KGQD;75365", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/QIJDB1KGQD;Six-Fours-Les-Plages, 157 Avenue du Mail", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80514500000, + 43.07510500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHPLLTFRVML1XNT20;FRECHP914340397521659419", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "ref": "LLTFRVML1XNT20;1065864", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge", + "start_date": "2024-03-06", + "description": "Easy Charge/LLTFRVML1XNT20;Thionville, Place Marie Louise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16010900000, + 49.35501600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP102111", + "operator": "Greenflux", + "description": "ENGIE Vianeo - A16 Lormaison Est", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-15", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09751000000, + 49.24587900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/PIQJLO1TXU", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "466152", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P480689816825360936" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23894400000, + 43.68314600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Rue Victor Massé 35", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX09*04", + "ref:EU:EVSE": "FRV75PPX0904", + "start_date": "2021-07-21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33666600000, + 48.88109000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1084779", + "description": "Freshmile France/LLVKRGYQH21LMQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6497609366887045053", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41825800000, + 47.69496700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPMAURINRENAULT771301", + "network": "DRIVECO", + "capacity": "2", + "description": "Renault - Varennes-sur-Seine", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "start_date": "2021-05-20", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94174500000, + 48.37250200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "232486", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25PBKYNQA", + "charging_station:output": "22 kW", + "description": "SYDED/BKYNQA", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31933000000, + 47.01620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - FUSSY - La poste", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - FUSSY - La poste", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E207175;FRS18E207176", + "ref": "FRS18E207175;FRS18E207176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42903752000, + 47.14505949000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY03E78372003", + "operator": "Bouygues E&S", + "description": "MARLY-LE-ROI - Piscine", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-10-12", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09311000000, + 48.87171000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK2761;FRQPKPQPRK2741;FRQPKPQPRK2731;FRQPKPQPRK27101;FRQPKPQPRK2711;FRQPKPQPRK2721;FRQPKPQPRK2751;FRQPKPQPRK2771;FRQPKPQPRK2781;FRQPKPQPRK2791", + "ref": "FR*SOD*S*QPRK*27*9*_*_;FR*SOD*S*QPRK*27*7*_*_;FR*SOD*S*QPRK*27*6*_*_;FR*SOD*S*QPRK*27*5*_*_;FR*SOD*S*QPRK*27*4*_*_;FR*SOD*S*QPRK*27*3*_*_;FR*SOD*S*QPRK*27*10*_*_;FR*SOD*S*QPRK*27*1*_*_;FR*SOD*S*QPRK*27*2*_*_;FR*SOD*S*QPRK*27*8*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2022-10-28;2022-07-04", + "description": "QPARK - 73010 CHAMBERY - RAVET", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92472400000, + 45.56809300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "CAMBON D'ALBI - Rue De L'Ecole", + "ref:EU:EVSE": "FRS81E81052001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21466600000, + 43.91374400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Morières", + "ref": "FRIONE408500", + "start_date": "2020-08-05", + "ref:EU:EVSE": "FRIONE408500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78082000000, + 44.51514300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44179001;FRS44P44179A", + "start_date": "2021-04-06;2024-04-18", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Saint-Mars-Du-Desert - Aout 1944;SAINT-MARS-DU-DESERT - Rue Du 3 Août 1944", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40495100000, + 47.36593600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "start_date": "2023-05-24;2016-05-30", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61B7EXKKHQQMPAKWF5", + "ref:EU:EVSE": "FRS77E77447001;FRS77P77447A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "SEINE-PORT - Rue De Melun;Seine-Port - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54918800000, + 48.55775500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080056", + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680691;531680696;531680689;531680690;531680692;531680695;531680694;531680693", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080056", + "start_date": "2022-07-19;2022-07-27", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "REL.ROMORANTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66660000000, + 47.33820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST CLAUDE DE DIRAY - Rue de la république", + "ref:EU:EVSE": "FRS41E232581;FRS41E232582", + "ref": "FRS41E232581;FRS41E232582", + "description": "MODULO - ST CLAUDE DE DIRAY - Rue de la république" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41683900000, + 47.61372500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PXZZHAR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "25051", + "description": "Mobilité électrique 56/XZZHAR", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20436000000, + 47.65770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW", + "description": "LIS01 - CENTRE-BOURG", + "ref:EU:EVSE": "FRGLYPLYON18612;FRGLYPLYON18611", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-02", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*186*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74330300000, + 45.86447900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P92014*B;Metropolis - Citadine - Bourg-la-Reine - Elie le Gallais", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92014B", + "charging_station:output": "2.3 kW;22 kW", + "ref": "419952", + "opening_hours": "24/7", + "start_date": "2021-08-02", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31688600000, + 48.78436000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-15;2019-12-10", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Peugeot - Dunkerque;Peugeot - Dunkerque (PDL 2)", + "capacity": "2;6", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT592102;FRSSDPSOFIDAPEUGEOT592103", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00;24/7", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35975600000, + 51.02019500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540026", + "start_date": "2024-08-05", + "charging_station:output": "22 kW", + "description": "ROUEN - Rue Montreux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12701700000, + 49.44587800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "Fr,Th,Tu,Mo,Sa,We 06:00-19:30,Su 06:00-12:30", + "description": "Leclerc/M31REAHFB0", + "charging_station:output": "22 kW", + "ref": "892713", + "ref:EU:EVSE": "FRLE2P755460730082203843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33110200000, + 50.36434300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "d2f9b67c-5539-5353-a141-35220a7d92df", + "description": "MOBIVE | Martillac | Parking Site Montesquieu | Allée Rostand", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58121600000, + 44.71268100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "OSNY - Parking stade - Rue de chars", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-22", + "ref:EU:EVSE": "FRS95E95476001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07317200000, + 49.07130200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "11;14;10", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRALLPASF020;FRSITE00000020", + "network": "ALLEGO;ROUILLE PAMPROUX ASF", + "description": "ROUILLE PAMPROUX ASF", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator": "Allego;Green To Wheel", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2023-03-03;2022-12-29;2023-02-14;2023-12-19;2023-12-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01830000000, + 46.45317000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LGDRVNGNWU", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "477771", + "ref:EU:EVSE": "FRLE2P5173636602839345170" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51417200000, + 48.46150300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PM2DDVWBKWB", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Alleins, Avenue René Cassin", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15691120000, + 43.70409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/RGSCLDYTHV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7588730200724862324", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402608" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51504400000, + 47.96251200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-01-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PEGOMAS PARKING PARCHOIS", + "ref": "FR*SOD*S*WIIZ*3*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ311;FRA16PWIIZ312", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92641000000, + 43.59413100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "477717", + "network": "Freshmile France", + "description": "Freshmile France/VSSVCNY8HH", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P412808211827020542", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20614500000, + 48.68870700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "description": "Parc Commercial du Luc - Moissac", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRPD1PPCLMSC", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11874800000, + 44.11917500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/TDVAAV;Annecy Cran-Gevrier, Parking Comedie", + "ref": "75203;TDVAAV", + "ref:EU:EVSE": "FREBNPTDVAAV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10658100000, + 45.90733300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "description": "EVzen/A4B5C7D7-521A-41D7-8250-DE67C4AA02FF", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "ref": "1026459", + "ref:EU:EVSE": "FREVZP2995908848591406905", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95231300000, + 46.43714800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-04-21", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - CHAUVONCOURT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*627*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR62711;FROTHPOTHR62712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51425300000, + 48.90085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WV16QKJAOY;Toulon, Place Parmentier", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPWV16QKJAOY;FREBNP7416924885999175234", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "WV16QKJAOY;492072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91478400000, + 43.13026100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/montluconat;Montluçon, Athanor", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref": "montluconat;231511", + "ref:EU:EVSE": "FREBNPMONTLUCONAT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60412000000, + 46.34780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "AGROPOLE", + "charging_station:output": "3.68 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*321*2*_*_;FR*SOD*S*OTHR*321*1*_*_;FR*SOD*S*OTHR*322*1*_*_;FR*SOD*S*OTHR*322*2*_*_", + "opening_hours": "24/7", + "start_date": "2022-02-23;2022-02-21", + "description": "AGROPOLE - AGEN 2;AGROPOLE - AGEN 1", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR32221;FROTHPOTHR32121;FROTHPOTHR32111;FROTHPOTHR32211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59192900000, + 44.16698600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/NKPTV8HRVT", + "ref": "626186", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2345744488423414023", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94866100000, + 43.55014900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue du Docteur Finlay 43", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "start_date": "2021-12-01;2022-02-10", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX15*20", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29130000000, + 48.85120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "514970", + "ref:EU:EVSE": "FRFR1P3686190400766313219", + "description": "Freshmile France/AYWC7E3K5E", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03607000000, + 42.83027400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Complexe Galaxy - Lecci", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPCORSICAGAME201371", + "charging_station:output": "22.08 kW", + "start_date": "2022-09-07", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30201000000, + 41.67259600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-18", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900088", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PSTSEBASTIENMAIRIE", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08778500000, + 49.00697300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22093001", + "description": "Lamballe-Boulevard du Haras" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51775000000, + 48.47099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY26E78571002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-NOM-LA-BRETECHE - Rue Charles De Gaulle", + "network": "Seymaborne", + "start_date": "2022-02-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01940300000, + 48.85588600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-01-17", + "ref:EU:EVSE": "FRROSE214", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Axis", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14626900000, + 50.64107100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ACHERES - Avenue Lénine ", + "ref:EU:EVSE": "FRY01E78005005", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-03", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06298000000, + 48.96063400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2020-09-11", + "opening_hours": "24/7", + "description": "Lyon-Dagneux Sud", + "network": "Lyon-Dagneux Sud", + "ref": "FRIOYE408453;FRIOYE408452;FRIOYE408406;FRIOYE408403;FRIOYE408404;FRIOYE408405;FRIOYE408451", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE408453;FRIOYE408452;FRIOYE408406;FRIOYE408403;FRIOYE408404;FRIOYE408405;FRIOYE408451" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07050827000, + 45.84386863000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "378651", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS52P2251928563753562228", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDED52/QFDR0FZIXG", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28871100000, + 47.65484800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "RABASTENS DE BIGORRE - Place Centrale", + "ref:EU:EVSE": "FRS65E65375001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15000000000, + 43.38776000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE003602;FRIENE003601", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE003602;FRIENE003601", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "start_date": "2023-02-06", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Orbec", + "operator": "NW IECharge", + "description": "Orbec" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38902800000, + 49.01726400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34276001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-MATHIEU-DE-TREVIERS - Avenue Des Coteaux De Montferrand", + "start_date": "2022-02-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86301390000, + 43.76614170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-BERD-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "BERD'HUIS", + "ref:EU:EVSE": "FRS61P61043A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74777500000, + 48.34456600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LM0Z7HOMX1OWR5", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1185181", + "ref:EU:EVSE": "FRFR1P2479425586420151728", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76668900000, + 48.58543800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Lavernose-Lacasse, Mairie;Roulez Électrique En Haute-Garonne/lavernosemair", + "ref:EU:EVSE": "FRS31PLAVERNOSEMAIR", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2017-09-12", + "ref": "46558;lavernosemair" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26232000000, + 43.39670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hôpital Saint Vincent - Lille", + "ref:EU:EVSE": "FRSSDPGHICLSAINTVINCENT59000", + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-11-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07652400000, + 50.61959300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "2 kW;50 kW;22 kW", + "start_date": "2022-02-08", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "BMW - BMW i. Angoulême L'Espace Bienvenue - 3", + "description": "BMW - BMW i. Angoulême L'Espace Bienvenue - 3", + "ref:EU:EVSE": "FRCG0E000066;FRCG0E000065;FRCG0E000064;FRCG0E000063;FRCG0E000067;FRCG0E000068;FRCG0E000069", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000066;FRCG0E000065;FRCG0E000064;FRCG0E000063;FRCG0E000067;FRCG0E000068;FRCG0E000069" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17644600000, + 45.69012100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMEVITISAT11", + "start_date": "2022-11-28", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "LUMI'IN", + "description": "0b02b04d-280a-4f56-9cb4-b2368c8a78d3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80000000000, + 44.12000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Hendaye | Rue lekueder", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c61c7394-b4a9-540a-8e1b-2c415e8f46aa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77258900000, + 43.34694700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE54LSPA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-01-26", + "description": "Speedy - Luneville", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51779000000, + 48.57903200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "12;11;9;10", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "description": "Bump - Paripark - Moulin des Près - Paris", + "operator:email": "exploitation@bump-charge.com", + "ref:EU:EVSE": "FRBMPS12;FRBMPS11;FRBMPS9;FRBMPS10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35343740000, + 48.82648120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3418EVCP02;LFR3418EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "VALOGNES Felix Buhot", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3418EVCP02;LFR3418EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48203600000, + 49.51367500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PYMKN4UZNFP", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-4E, Boulevard Jardin Zoologique", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39679900000, + 43.30323500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TE90/ARYNXY", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "ref": "232492", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90PARYNXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139000000, + 47.62210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "PARKING BOSQUET STE MAXIME", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120STMBOSQUET", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83120*STM*BOSQUET", + "start_date": "2019-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61683700000, + 43.32931800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/N0JPXHXQ78", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "541820", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4770114475951328933", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.65746500000, + 41.90849600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRPD1PSYUPVG", + "start_date": "2023-07-04", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Super U - Pluvigner", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00432674498, + 47.77290480527 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Grésy sur Aix, 6 Rue Boucher de la Rupelle;Réseau eborn/J9OYDDWH7H", + "ref": "J9OYDDWH7H;521444", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPJ9OYDDWH7H;FREBNP3660250302789180283", + "start_date": "2022-06-07", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92185000000, + 45.71688000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "ref:EU:EVSE": "FRFASE33103", + "operator": "Fastned France", + "capacity": "8", + "network": "Fastned Aire de Bosgouet Sud", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "description": "Fastned Aire de Bosgouet Sud", + "opening_hours": "24/7", + "ref": "FRFASE33103", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86114184000, + 49.36098001000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPSENT27153;FROTHPSENT27152;FROTHPSENT27151;FROTHPSENT27143;FROTHPSENT27131;FROTHPSENT27132;FROTHPSENT27133;FROTHPSENT27141;FROTHPSENT27142", + "start_date": "2023-02-03;2023-03-15", + "ref": "FR*SOD*S*SENT*271*4*_*_;FR*SOD*S*SENT*271*3*_*_;FR*SOD*S*SENT*271*5*_*_", + "operator:email": "sav@izivia.com", + "description": "BMW HELI-DRIVE - AUBIERE", + "network": "BMW HELI-MOTORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13763200000, + 45.75143600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "78597;BHNVCQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Barreme, Parking PROXI;Réseau eborn/BHNVCQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPBHNVCQ", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37018000000, + 43.95400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP7950306961082853539;FREBNPNKIJMI48IG", + "ref": "346835;NKIJMI48IG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "description": "Réseau eborn/NKIJMI48IG;Albertville, Parking Place de L'église", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39107000000, + 45.67794000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - PIONSAT", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR44011;FROTHPOTHR44012", + "ref": "FR*SOD*S*OTHR*440*1*_*_", + "network": "LES MOUSQUETAIRES", + "start_date": "2022-07-19", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69729700000, + 46.11173000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLP0XCMLJ2EFNK", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P509733661536941701", + "ref": "978032", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45366200000, + 48.40805000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "description": "UBI-LHSM-103", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-21", + "ref:EU:EVSE": "FRUBIE10080607;FRUBIE10022586;FRUBIE10017771;FRUBIE10000460;FRUBIE10067608;FRUBIE10067756;FRUBIE10073809;FRUBIE10077637", + "ref": "setp0100000065;setp0100000066;setp0100000075;setp0100000074" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13423900000, + 49.48786000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "915096", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8635302302542547013", + "description": "Freshmile France/GDQJEBUTWF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22422100000, + 49.24604500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "capacity": "2", + "amenity": "charging_station", + "description": "Station-service de Dijon", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "bcae94af-e541-5268-9836-06781728bf4d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05279900000, + 47.32217000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7403347695661276640", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "896649", + "network": "Freshmile France", + "description": "Freshmile France/stpierrelegol", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;100 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.40023200000, + -21.28310100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1158839663073117534", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLW66ZW2D1JDJS", + "ref": "1084806" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27131600000, + 49.40779400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576248;fabb0765-6127-49bf-8ba7-85fb359f3d5d;576239;576263;576293", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P124757;FRZP1P7821897248998892233;FRZP1P124751;FRZP1P6971908231720617451;FRZP1P124743;FRZP1P717827433305381466;FRZP1P777930252028355360;FRZP1P124764", + "description": "Zephyre/LP009591;AR Duen - 22kW AC;Zephyre/LP009589;Zephyre/LP00958C;Zephyre/LP0095A1", + "opening_hours": "24/7", + "network": "Zephyre;AR Duen", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "owner:ref:FR:SIREN": "510316524", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.37545100000, + 48.23361300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PUILAURENS - Avenue Du Languedoc", + "ref:EU:EVSE": "FRS11E11302002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30833400000, + 42.81000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78672002", + "description": "VILLENNES SUR SEINE - Rue du Pré aux moutons", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-08-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99265972032, + 48.93588539999 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "PETR - Blâmont", + "ref": "a0b08ea7-6fff-5fcf-976b-5204f84f62a2", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "37__PETR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84370000000, + 48.58950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINTE MARIE LA MER - Avenue De Lattre De Tassigny", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66182002", + "charging_station:output": "22 kW", + "start_date": "2022-02-15", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03579100000, + 42.73278600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IKEA*142*2*_*_;FR*SOD*S*IKEA*142*1*_*_", + "ref:EU:EVSE": "FRIKAPIKEA14211;FRIKAPIKEA14221", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "description": "IKEA BREST - PARKING PMR", + "opening_hours": "24/7", + "start_date": "2024-01-26;2024-01-19", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.44222100000, + 48.41686200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "description": "REDON - 38 rue charles sillard ", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35236002B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09399700000, + 47.65296800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref": "518246", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "SIEG63 - ePremium - Billom - Cohalion;SIEG 63/FR*S63*P63040*A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-10-12", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63040A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34237000000, + 45.72600800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4305929022603087034", + "network": "Freshmile France", + "description": "Freshmile France/L3PBLADVLX", + "opening_hours": "24/7", + "ref": "435129", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27947000000, + 48.81953600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/UKUUQS;Fronton, Marcorelle", + "start_date": "2017-04-13", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "UKUUQS;33448", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PUKUUQS", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38989000000, + 43.83990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "DRANCY - Avenue Marceau", + "start_date": "2023-04-18", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93029008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43116730000, + 48.93033970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000929;FRCG0E000927;FRCG0E000921;FRCG0E000923", + "charging_station:output": "7 kW", + "description": "Super U Saint Jean de Monts - GUYON - 4", + "amenity": "charging_station", + "network": "Super U Saint Jean de Monts - GUYON - 4", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRCG0E000929;FRCG0E000927;FRCG0E000921;FRCG0E000923", + "start_date": "2024-05-03", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03760400000, + 46.80034800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE22011;FRM06PNICE22012", + "ref": "FR*SOD*S*NICE*220*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-08-24", + "operator:email": "sav@izivia.com", + "description": "NICE - PARKING 47 CLEMENCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25978700000, + 43.70195900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Agen | Rue de Sevin", + "capacity": "2", + "amenity": "charging_station", + "ref": "7f362ef8-eda3-5dff-aac5-0698ec1d4870", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61686800000, + 44.19193300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 117 TROISIEME AVENUE PARKING - FRANCONVILLE", + "opening_hours": "24/7", + "start_date": "2023-02-27", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE36011;FRSIGPSIGE36012", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*360*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23610000000, + 48.98430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76212001", + "network": "Métropole Rouen Normandie", + "description": "DARNETAL - Place du General de Gaulle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14449200000, + 49.44061800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3441EVCP01", + "capacity": "2", + "description": "INGWILLER", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3441EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46904200000, + 48.86453700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1dd0e69c-363a-5b98-b849-4d3d61b04c2c", + "operator": "194__SDEC23", + "description": "MOBIVE | Fransèches | Village de Masgot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03725700000, + 46.03670800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PXVDHGA", + "description": "SDE82/XVDHGA", + "ref": "34027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39826000000, + 43.91830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref": "FR*55C*P84160*M0U*M0UL1NS", + "capacity": "1", + "ref:EU:EVSE": "FR55CP84160M0UM0UL1NS", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "CHEMIN DU MOULIN - LOURMARIN", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36379200000, + 43.76231300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3616EVCP01;LFR3616EVCP02;LFR3616EVCP03;LFR3616EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "COMBOURG Madame", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3616EVCP01;LFR3616EVCP02;LFR3616EVCP03;LFR3616EVCP04", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74993100000, + 48.41827400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Gasny", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMGSY", + "start_date": "2023-02-01", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60906396488, + 49.09654245918 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "BYXYO6YXTR;48424", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPBYXYO6YXTR", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Roybon, Place Jean Perraud;Réseau eborn/BYXYO6YXTR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24093000000, + 45.25847900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP64122M", + "capacity": "7", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP64122M", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - BIARRITZ Perspective de la côte des Basques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56513946448, + 43.47893939536 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Centre Commercial la Peniche - Colmar", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCCPCOL", + "socket:type2_combo:output": "100 kW", + "start_date": "2022-12-15", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38343550000, + 48.08046720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market Villeneuve-De-Marsan", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT401901", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31063600000, + 43.88613500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;150 kW", + "socket:type2_combo:output": "50 kW;150 kW", + "start_date": "2024-05-23", + "ref:EU:EVSE": "FRELCPVIRHC", + "operator": "ELECTRA", + "description": "Viriat - Hôtel Campanile Bourg-en-Bresse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20522700000, + 46.22200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*555*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR55512;FROTHPOTHR55511", + "network": "IBIPEX", + "description": "IBIPEX - PERIGUEUX", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72354300000, + 45.18329200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-03", + "capacity": "8", + "network": "SUPER U SEM BORNE 6", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6746825;FRCPIE6746675;FRCPIE6746725;FRCPIE6746745", + "description": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746825;FRCPIE6746675;FRCPIE6746725;FRCPIE6746745", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77285200000, + 47.26921400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6520053519855722963", + "ref": "368863", + "description": "Freshmile France/JJFY41A3IX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61160000000, + 44.88102200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "description": "BLAGNAC - Parking Place Des Arts", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRV21E31709001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39819780000, + 43.63510540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "ref": "370094", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5886605879478121190", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/D1LX7U3SHG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79546000000, + 45.35850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRTSLP1766", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Rungis", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35103600000, + 48.75445600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLWKF3Q8Z2KW8Z", + "ref": "1151874", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2645190208206301439", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23212100000, + 44.94135100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FR0NXPOOLXTDNT", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MOBILIS", + "operator": "NEXTENEO", + "description": "MOBILIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07902600000, + 45.89339800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P7000220689446885923", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLX0HXRYA28XKX", + "opening_hours": "24/7", + "ref": "1118364", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00606900000, + 49.32351500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-18", + "ref:EU:EVSE": "FRS12E12172001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE NAYRAC - Le Bourg, Derrière station Serice", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66349700000, + 44.61246200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P8535538693230383617", + "opening_hours": "24/7", + "ref": "932043", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "description": "WAAT/FRWA5LOUFYLUK2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23081500000, + 48.77741400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "180 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT LEGER DE LINIERES - Rue Roland Moreno", + "start_date": "2024-05-02", + "charging_station:output": "43 kW;180 kW", + "ref:EU:EVSE": "FRS49E49298005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69625002100, + 47.46838760376 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CORDES SUR CIEL - Rue Notre Dame", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8106900212;FRS81E8106900211;FRS81E8106900221;FRS81E8106900222", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2024-03-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94877100000, + 44.06413400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRHDFE62548001", + "start_date": "2023-05-05", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "MARCK - Place de l'Europe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95551280000, + 50.94888690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46015001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BAGNAC SUR CELE - Parking de la Planquette", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15834100000, + 44.66794300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "description": "SIEG 63/FR*S63*P63448*B", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "ref:EU:EVSE": "FRS63P63448B", + "opening_hours": "24/7", + "ref": "518459", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45142400000, + 45.47278200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59459001", + "description": "PETITE-FORÊT - Rue Jean Jaurès", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47567300000, + 50.36905300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2918400", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Plouenan-Balizan", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98994400000, + 48.63106900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94042001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "capacity": "0", + "network": "SIPPEREC", + "description": "JOINVILLE LE PONT - Avenue du Général Gallieni" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47442000000, + 48.82033000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-07", + "amenity": "charging_station", + "capacity": "1", + "network": "Bornevo Connect", + "ref:EU:EVSE": "FRLMSE1234598740", + "operator": "BORNEVO ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "BOR-ALFSING22-0001", + "operator:email": "contact@bornevo.com", + "owner:ref:FR:SIREN": "411882772", + "description": "GARAGE MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87000000000, + 46.17000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "e8e9ba8a-5b09-5f41-b62c-d8be618c5189", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Beynac et Cazenac | Place d'Alsace" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15011900000, + 44.83941700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE46311;FRSIGPSIGE46312", + "start_date": "2024-03-11", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - RUE ORANE DEMAZIS - BOIS DARCY", + "ref": "FR*SOD*S*SIGE*463*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01317080000, + 48.80816100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9009632;FRALLEGO9009631;FRALLEGO9009622;FRALLEGO9009621;FRALLEGO9005741;FRALLEGO9005742;FRALLEGO9008931;FRALLEGO9008932", + "amenity": "charging_station", + "network": "Allego Carrefour Nantes St Herblain", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9009632;FRALLEGO9009631;FRALLEGO9009622;FRALLEGO9009621;FRALLEGO9005741;FRALLEGO9005742;FRALLEGO9008931;FRALLEGO9008932", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Nantes St Herblain", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60382500000, + 47.22214700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4149EVCP03;LFR4149EVCP01;LFR4149EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4149EVCP03;LFR4149EVCP01;LFR4149EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "SAINT DONAT SUR L'HERBASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96882700000, + 45.11784300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Lembeye | Place Marcadieu", + "ref": "4b3f5424-b784-55a9-be93-755fdf20033a", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11235500000, + 43.44906200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BENET - Place Du Champ De Foire - Rue De La Gare", + "ref:EU:EVSE": "FRS85E85020001", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59512000000, + 46.36944000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "capacity": "8", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000199", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "description": "TIKEAU Essey Les Nancy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24719200000, + 48.71101770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3046EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LA MOTTE SERVOLEX Lavoisier", + "ref": "LFR3046EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87388700000, + 45.60177900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-06-01;2023-10-05", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PKFCNIM", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "description": "KFC - Nîmes", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34980940000, + 43.81910340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bourdeaux, Place du Quai;Réseau eborn/XB7KJGMX1B", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPXB7KJGMX1B", + "start_date": "2020-06-21", + "ref": "31783;XB7KJGMX1B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13380100000, + 44.58565800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "390923175", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "ref": "Non concerné", + "operator:email": "franck.pothin@scaso.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "LANGON DISTRIBUTION", + "start_date": "2021-07-16", + "ref:EU:EVSE": "FREVBP2022841", + "charging_station:output": "22 kW", + "network": "Centre Auto Leclerc Langon", + "description": "Centre Auto Leclerc Langon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25409300000, + 44.54156000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-11-08", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRPD1PENCBRB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Magasin Envia Cuisine - Bruay-la-Buissière", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57350800000, + 50.49568500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "ref:EU:EVSE": "FRE000022846774", + "operator": "Electromaps", + "description": "villeveyrac", + "ref": "71f83424-5ead-11ee-8c99-0242ac120002", + "network": "Association des amis de Valmagne", + "owner:ref:FR:SIREN": "410561666" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56269000000, + 43.48569000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB Lamartine Place Girodet", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRESEPS42218BO", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-11-23", + "ref": "FRESEPS42218BO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38127000000, + 45.44757000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-29;2019-11-28", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPLVPR682;FROTHPLVPR681;FROTHPLVPR672;FROTHPLVPR661;FROTHPLVPR651;FROTHPLVPR652;FROTHPLVPR662;FROTHPLVPR671", + "network": "LEVAPARC", + "description": "LEVAPARC - PARKING SO OUEST - CANTON 35", + "owner:ref:FR:SIREN": "353347222", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*LVPR*6*8*_*_;FR*SOD*S*LVPR*6*7*_*_;FR*SOD*S*LVPR*6*6*_*_;FR*SOD*S*LVPR*6*5*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821000000, + 48.89300100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EMERIA STATION 4", + "network": "EMERIA STATION 4", + "capacity": "8", + "start_date": "2024-04-09", + "ref": "FRCPIE6919345;FRCPIE6919315;FRCPIE6919325;FRCPIE6919355", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6919345;FRCPIE6919315;FRCPIE6919325;FRCPIE6919355", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07435500000, + 48.63853500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "102320", + "description": "Freshmile France/RQBMXR", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PRQBMXR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71831000000, + 49.35730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "300 kW;72 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A62 Frontonnais Sud", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "charging_station:output": "300 kW;50 kW;72 kW;22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-02-16", + "ref:EU:EVSE": "FRVIAP104102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36036500000, + 43.81152800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "786963", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/EVDKPZXUGQ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7203020260118749629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19480700000, + 44.08081800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLANCIEN292001", + "start_date": "2022-08-11", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "description": "Hyundai - Brest", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46896700000, + 48.41080900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PDUSXJL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DUSXJL", + "ref": "79681", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54897600000, + 45.44308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E127481;FRS28E127482", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS28E127481;FRS28E127482", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2022-05-07", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHATEAUDUN - Pl. de Schweinfurt", + "network": "MODULO - CHATEAUDUN - Pl. de Schweinfurt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34831700000, + 48.07920600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461793", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/KARW5YQ2G0", + "ref:EU:EVSE": "FRS14P8159306296607432063" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39629900000, + 49.19165800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "1128024", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P4358794214264409542", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA6L7LOGXBL6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61290400000, + 44.85444400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRICQUEBEC EN COTENTIN - Gare Routiere", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50260002", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-10-12", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63916760000, + 49.47137810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "PAYRIN AUGMONTEL - Allée André Caville", + "ref:EU:EVSE": "FRS81E81204001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35399000000, + 43.52005000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "socket:type2_combo:output": "150 kW;54 kW", + "description": "RELAIS PETITE FORET", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681822;531681820;531681821;531681817;531681818;531681815;531681816;531681819", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF059992", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-04-26", + "ref": "FRHPCPNF059992" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48320700000, + 50.36857400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "OuestCharge - Diva Sp - Andard - Poulain;ANDARD - Rue Henri Poulain", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-16;2024-04-03;2024-04-12", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49004001;FRS49P49004A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39571500000, + 47.45727100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-09", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SOLESMES - Place Jean Jaurès", + "ref:EU:EVSE": "FRS59E59571004", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49812630000, + 50.18481280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ARRAS - Place Courbet", + "ref:EU:EVSE": "FRH06E62041013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74788900000, + 50.29196900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "ALES - Chemin de Trespeaux", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS30E30007008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11107400000, + 44.11725700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/HLLWEY", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "ref": "21888", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PHLLWEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.62943000000, + 47.57930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW", + "description": "BEAUMONT HPC-1", + "amenity": "charging_station", + "capacity": "1", + "ref": "B139", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRLMSE12346052772;FRLMSE12346052771", + "start_date": "2020-02-14", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43985900000, + 46.73119400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "484814", + "description": "Metropolis - Express - Neuilly-sur-Marne - Aristide Briand;Métropolis/FR*MGP*P93050*B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93050B", + "start_date": "2022-02-21", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52048700000, + 48.85448800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2016-02-22", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Clussais-La-Pommeraie - Salle des Fêtes", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB84138A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02977400000, + 46.18141519000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Atlante/FRATL*Till0001", + "capacity": "5", + "opening_hours": "Fr,Sa,We,Tu,Mo,Th 08:30-19:00", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "811455", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP9055357799953749448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09765100000, + 49.45789200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-01-23;2022-12-21", + "description": "ENGIE Vianeo - A20 Nauze Vert", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89369713", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32649900000, + 43.95767600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint-Germain-Les-Belles | Place du 8 Mai 1945", + "capacity": "2", + "amenity": "charging_station", + "ref": "d4370510-b0f9-5994-a139-d5a75ca9b83a", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49473100000, + 45.61538400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E159298;FRS88E159296", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - ST MARGUERITE - Rue de la Meurthe", + "description": "MODULO - ST MARGUERITE - Rue de la Meurthe", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E159298;FRS88E159296" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97869700000, + 48.26783000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9008252;FRALLEGO9008241;FRALLEGO9001712;FRALLEGO9001701;FRALLEGO9000841;FRALLEGO9000842;FRALLEGO9001702;FRALLEGO9001711;FRALLEGO9008242;FRALLEGO9008251", + "amenity": "charging_station", + "description": "Allego Carrefour Givors", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9008252;FRALLEGO9008241;FRALLEGO9001712;FRALLEGO9001701;FRALLEGO9000841;FRALLEGO9000842;FRALLEGO9001702;FRALLEGO9001711;FRALLEGO9008242;FRALLEGO9008251", + "network": "Allego Carrefour Givors", + "capacity": "10", + "start_date": "2024-05-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75267800000, + 45.58519500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "PITHIVIERS Pointe", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3595EVCP02;LFR3595EVCP01", + "ref": "LFR3595EVCP02;LFR3595EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24682800000, + 48.19022600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-13E, Avenue des Poilus", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PQRFXWU2P8I" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45512300000, + 43.32522000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP8081620024671675934", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/IF1PCDZCRZ", + "ref": "591329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07645800000, + 46.03790100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6060222903164503145", + "charging_station:output": "22 kW", + "description": "Freshmile France/XHCTBI3W6P", + "operator": "Freshmile | FR*FR1", + "ref": "441063" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14318000000, + 45.78820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "100 kW;50 kW;22 kW;150 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-06-01;2023-07-30", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBSVSL", + "description": "Ibis Styles - Villeneuve-sur-Lot", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74333223980, + 44.40723913000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPEWBWX8MWV7", + "description": "Réseau eborn/EWBWX8MWV7", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30479" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87501000000, + 45.92584800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP42011A", + "description": "e-Totem - Netto Balbigny", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP42011A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19627559576, + 45.81018302312 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PAYS RHENAN - DALHUNDEN SALLE LESCAL", + "ref": "FR*SOD*S*OTHR*242*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR24211;FROTHPOTHR24212", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99020100000, + 48.77804600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6600025", + "start_date": "2022-06-01", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6600025", + "charging_station:output": "22 kW", + "network": "ChargePoint Network", + "owner:ref:FR:SIREN": "775753148", + "operator:email": "support.eu@chargepoint.com", + "description": "Parking Weidner Station 1", + "operator": "ChargePoint" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16000000000, + 46.14000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892065", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2101699714445037826", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/LLHYXQ9TJ10X4F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69113100000, + 45.75896900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s421758", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P7629988004943542059", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "120710" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35581900000, + 48.74648800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLTZK8TVX1WT0U", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "1052499", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5836716200016465170" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47841200000, + 45.87752900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1234572353", + "amenity": "charging_station", + "capacity": "1", + "description": "ALFEN 22kW Chasse Montagne", + "network": "SOWATT SOLUTIONS", + "start_date": "2023-09-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1234572353", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68324700000, + 46.15933200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "start_date": "2022-12-29", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "528932627", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "network": "Touquet Semi Rapide", + "description": "Touquet, Place Edouard VII", + "operator:email": "advenir@freshmile.com", + "ref:EU:EVSE": "FRFR1PIOA9IKAACX", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58657824682, + 50.52023803636 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPLOC110001", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "start_date": "2023-08-30", + "charging_station:output": "22.08 kW", + "description": "Loc+ - Carcassonne", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32470500000, + 43.21103000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - SAINT REMY SUR AVRE - Pl. des dodots", + "operator": "Modulo", + "ref": "FRS28E224207", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINT REMY SUR AVRE - Pl. des dodots", + "ref:EU:EVSE": "FRS28E224207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24050500000, + 48.76084300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 13:30-18:00,Th 07:30-12:00", + "ref": "868b9791-607e-4ba5-be0a-612b37168a56", + "owner:ref:FR:SIREN": "509605184", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "sdavid@thibal-distribution.fr", + "ref:EU:EVSE": "Non concerné", + "network": "Borne de recharge gratuite", + "charging_station:output": "22 kW", + "description": "Saint-Affrique - Thibal Distribution - recharge gratuite", + "operator": "Thibal Distribution" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86000000000, + 43.96000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "39695", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P3674840137130983689", + "description": "SDEA 10/FTPT9EVHHC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91411100000, + 48.02604200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Logis Hôtel les 3 Lieux", + "owner:ref:FR:SIREN": "803639145", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Logis Hôtel les 3 Lieux 2 - 7,4 kW AC;Logis Hôtel les 3 Lieux 1  - 7,4 kW AC", + "opening_hours": "24/7", + "ref": "0afc3dbc-0a71-419f-9f40-b9c98997e0f3", + "ref:EU:EVSE": "FRZP1P79348;FRZP1P97345", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52737000000, + 47.42337100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2023-12-07", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE576", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Sorofi_Fouillouse ", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34698640000, + 45.48334510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "120647", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PVNJXRX", + "description": "SDE82/VNJXRX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11143000000, + 44.04040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*121*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - LE MANS NORD", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST12113;FRIZFPFAST12112;FRIZFPFAST12111", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17534395886, + 48.03668497284 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4231;FRS41E4232", + "capacity": "2", + "network": "MODULO - CHAUMONT SUR THARONNE- Pl. Robert Mottu", + "amenity": "charging_station", + "ref": "FRS41E4231;FRS41E4232", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHAUMONT SUR THARONNE- Pl. Robert Mottu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90451000000, + 47.61043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "896715", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P502568650586667523", + "description": "Mouv'Oise/LLLDPB8YJ24Q23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87760800000, + 49.42119900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON4222;FRGLYPLYON4221;FRGLYPLYON4211;FRGLYPLYON4212", + "start_date": "2020-10-28", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*42*1*_*_;FR*SOD*S*LYON*42*2*_*_", + "network": "GRAND LYON", + "description": "JOG02 - ZI MEYZIEU-JONAGE", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03581700000, + 45.77029900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT CHRISTOL LES ALES - Rue Des Marmousets - Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30243001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07808000000, + 44.08321700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-09-09", + "description": "Malestroit - Place du Docteur Jean Queinnec", + "ref:EU:EVSE": "FRS56PEUTTDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38363000000, + 47.81072300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMEAUCHEVALBLANCNIEDERSTEINBACH1", + "ref": "62570df4-ab8b-11ed-afa1-0242ac120002", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-02-15", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "Au Cheval Blanc Niedersteinbach" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71033090000, + 49.03132290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "ref": "951443", + "opening_hours": "24/7", + "description": "Mobilygreen CPO/5806c13c-db54-4b3b-8f64-e08371c38c36", + "ref:EU:EVSE": "FRMW1P682712056279877631", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02225000000, + 45.78000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*173*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE17311;FRSIGPSIGE17312", + "start_date": "2021-07-22", + "description": "SIGEIF - 66 RUE EMILE ZOLA - FRESNES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32694200000, + 48.76221700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BL La Roche Sur Yon - 85000 - 1", + "ref:EU:EVSE": "FRCG0E001503;FRCG0E001504;FRCG0E001505", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "opening_hours": "Fr 14:00-18:00,Th 14:00-18:00,We 14:00-18:00,Tu 14:00-18:00,Sa 08:00-12:00,Fr 08:00-12:00,Th 08:00-12:00,We 08:00-12:00,Tu 08:00-12:00,Mo 14:00-18:00,Mo 08:00-12:00", + "capacity": "3", + "charging_station:output": "50 kW;22 kW", + "operator:email": "info@chargeguru.com", + "start_date": "2024-01-15", + "description": "BL La Roche Sur Yon - 85000 - 1", + "ref": "FRCG0E001503;FRCG0E001504;FRCG0E001505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40446300000, + 46.63998700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ANYOS", + "capacity": "2", + "ref:EU:EVSE": "FRLMSE1000145750", + "owner:ref:FR:SIREN": "217104488", + "amenity": "charging_station", + "operator:email": "contact@anyos.fr", + "opening_hours": "24/7", + "ref": "ANYOS-SMBROC-CC1", + "charging_station:output": "22 kW", + "start_date": "2023-12-21", + "operator": "ANYOS", + "description": "ANYOS - Saint-Martin-Belle-Roche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85122389872, + 46.38144472837 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB40*52*1*_*_;f37369db-d3ce-58a9-b4e1-39dd7c0b5ca5", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "description": "CAPBRETON - AVENUE DU MARECHAL LECLERC;MOBIVE | Capbreton | Avenue du Marechal leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "operator": "199__SYDEC40;IZIVIA", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "ref:EU:EVSE": "FRS40PMB405213;Non concerné;FRS40PMB405211;FRS40PMB405212;FRS40PMB405214", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43225300000, + 43.64505800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE77MXNA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "description": "Meaux - Faubourg St Nicolas", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88536300000, + 48.95875700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2022-12-20", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSGERET", + "network": "Carrefour Energies", + "description": "GUERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88579600000, + 46.16753900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3253EVCP02;LFR3253EVCP01;LFR3253EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "HETTANGE-GRANDE Kanfen", + "ref:EU:EVSE": "LFR3253EVCP02;LFR3253EVCP01;LFR3253EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13911800000, + 49.41569900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34169001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "MONTFERRIER SUR LEZ - Avenue Du Campus Agropolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87689333300, + 43.68407833000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSWKGDBKOKM", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hauterives, Parking du Palais Idéal", + "operator:email": "contact@reseau-eborn.fr", + "ref": "SWKGDBKOKM", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02911810000, + 45.25586920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLPCNEJXR15FD6", + "capacity": "2", + "amenity": "charging_station", + "ref": "971975", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P7080452794400832861", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07039500000, + 49.10698900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E830690032;FRP07E83069003;FRP07E830690031", + "description": "HYÈRES - Gambetta", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2023-12-11;2021-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12841800000, + 43.11908300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP5618665025279550858;FREBNPLLP9IRV4I2166J", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLP9IRV4I2166J;Aix les bains, Clemenceau", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1017087;LLP9IRV4I2166J", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2023-11-22", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91019000000, + 45.69359000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "start_date": "2024-08-27", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPSNALE", + "description": "Saint-Nazaire - E.Leclerc", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25584400000, + 47.28675500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E76351011", + "operator:email": "support@alizecharge.fr", + "description": "Parking le Havre Danton - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12191030000, + 49.49417770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6631675", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "description": "BORNE CDC STATION 1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6631675", + "network": "BORNE CDC STATION 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06752200000, + 46.18911800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Easy Charge/IGJVLDRJPL", + "network": "Easy Charge", + "amenity": "charging_station", + "ref": "749199", + "operator": "Easy Charge | FR*ECH", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHP5375389270409122559" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06130900000, + 44.54188200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Boulevard Delessert 23", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28512110000, + 48.85857010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "120590", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PMEDKZN", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MEDKZN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50420000000, + 45.37990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "501584296", + "ref:EU:EVSE": "FRTCBP01168", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref": "FRTCBP01168", + "capacity": "4", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "description": "DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-12", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83824642033, + 46.79639278418 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/KGQUEN557E", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2831159497814256853", + "ref": "435120" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55656600000, + 47.59103700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "BMW - Nevers", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPAXXIABMW580001", + "start_date": "2022-05-23", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12349500000, + 46.98545400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2911900", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Lanrivoare-Rue de Bellevue", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-02-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.64021300000, + 48.46769700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11091001", + "start_date": "2022-03-02", + "description": "CHALABRE - Parking Rue Cours Aguesseau", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00694400000, + 42.98333300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC97720;FRZP1PEAC97684;FRZP1PEAC97663;FRZP1PEAC97723", + "operator": "Zephyre SAS", + "description": "La Ferme des Mares - 22 kW AC;La Ferme des Mares - 7,4 kW AC", + "amenity": "charging_station", + "capacity": "1", + "ref": "e0561cbe-43a5-4d55-ab51-b68e8505a739", + "owner:ref:FR:SIREN": "518565056", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "network": " Logis Hôtel la Ferme des Mares", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59868073463, + 49.23320770264 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09023001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ASCOU - D25", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "start_date": "2024-01-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95475300000, + 42.73128700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/NUHCFA", + "ref:EU:EVSE": "FRS80PNUHCFA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79450", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06590000000, + 50.02860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-08-30", + "ref:EU:EVSE": "FRIZFPFAST26812;FRIZFPFAST26811;FRIZFPFAST26813", + "ref": "FR*SOD*S*FAST*268*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - CHAMBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64747280000, + 49.59045150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-06-01;2024-04-12", + "description": "OuestCharge - Diva Sp - La Chevroliere - Stade;LA CHEVROLIERE - Rue Du Stade", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44E44041002;FRS44P44041B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61558700000, + 47.09024500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS77E77118004", + "charging_station:output": "24 kW;22 kW", + "description": "CLAYE-SOUILLY - Parking Mariette", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68316290000, + 48.94485710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000056033;FRGSPP1000056034", + "network": "E. REMY & CIE", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "E. REMY & CIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25760932958, + 45.58014703614 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - SAVONNIERE – La maison tourangelle - T2", + "network": "MODULO - SAVONNIERE – La maison tourangelle - T2", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219965", + "ref": "FRS37E219965" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54184600000, + 47.34727400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "PETR - Cirey-sur-Vezouze", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "681bf4bb-293b-5bbb-8b4f-2bf9a3dfcd66", + "operator": "37__PETR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94600000000, + 48.58130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRG10P74118A", + "operator": "E-TOTEM", + "capacity": "2", + "network": "Eurocommercial Etrembières", + "amenity": "charging_station", + "start_date": "2022-11-29;2023-01-24", + "description": "Eurocommercial Etrembières", + "ref:EU:EVSE": "FRG10P74118A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23243456137, + 46.18080358901 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "126fac13-06a8-5934-8c68-56ca94fe67de", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | MIMIZAN | Parking Rue des Lacs", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29549900000, + 44.20913000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE29312;FRSIGPSIGE29311", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*293*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - 8 RUE PIERRE CURIE - FONTENAY-LE-FLEURY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04919000000, + 48.81400800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-19", + "ref:EU:EVSE": "FRCPIE6509805", + "description": "GVA CARPENTRAS ABB", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW", + "ref": "FRCPIE6509805", + "network": "GVA CARPENTRAS ABB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04909300000, + 44.03985300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P8083140946554275245", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/VRGXDRTTO6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "521435" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611900000, + 49.10756700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Aulaye Puymangou | Place du Champ de Foire", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "3064937b-4ee5-5316-8ad5-e31b6c5e84c1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13519200000, + 45.20187000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "start_date": "2018-10-01", + "network": "AlterBase", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "description": "Réseau AlterBase - Châtillon sur Thouet - La Bressandière - QC", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRSEOPAB31300A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25306700000, + 46.66454200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Airbus ADS - Toulouse - Parking G1SUD", + "ref:EU:EVSE": "FRAIRPAIRBUS314007", + "start_date": "2024-03-11", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49669300000, + 43.55935900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2502EVCP02;LFR2502EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR2502EVCP02;LFR2502EVCP01", + "description": "CAEN ST MAN NORREY", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48978000000, + 49.18135100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "414786", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/S7VYUHK4NE", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM45P5201113923291474887", + "operator": "Orléans Métropole | FR*M45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89790900000, + 47.86552900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ14412;FRA16PWIIZ14411", + "start_date": "2022-07-26", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*144*1*_*_", + "description": "CANNES - PARKING MIGNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02200800000, + 43.56073500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/PEVGN4NR7K", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "801651", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6945924816692159412", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05524900000, + 43.93282900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBBFCOR", + "opening_hours": "24/7", + "start_date": "2024-08-16", + "description": "Chemin de la Plane - Cornebarrieu", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30633650912, + 43.66053763839 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPDGMDE60VKP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/DGMDE60VKP;Unieux, Parking rue Marechal Leclerc", + "ref": "96113;DGMDE60VKP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26323800000, + 45.39674800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2022-12-09", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPEYSPC", + "operator": "ELECTRA", + "description": "Eysines - Hôtel Première Classe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62896900000, + 44.88076600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "29", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E13028002;FRP07E130280021;FRP07E130280022", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LA CIOTAT - Vieux Port", + "start_date": "2023-10-24;2023-07-20;2024-04-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60267108490, + 43.17391810675 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6696955", + "capacity": "2", + "network": "BIOPATH HDF GRAVELINES", + "amenity": "charging_station", + "start_date": "2023-03-02", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6696955", + "operator:email": "info@chargepoint.com", + "description": "BIOPATH HDF GRAVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12285100000, + 50.98416500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLV2CP5UV17YWP;1162770", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPLLV2CP5UV17YWP;FRECHP4140960290706636330", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "capacity": "4;6", + "socket:type2_combo:output": "120 kW", + "description": "Easy Charge/LLV2CP5UV17YWP;Lannion, Place du Marc’Hallac’h", + "network": "Easycharge services;Easy Charge", + "start_date": "2024-04-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.45652300000, + 48.73345000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - A41 Bois Claret", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW;62.5 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-01-11;2022-12-21", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP103104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86878500000, + 45.24758200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PVB2J2HEHR", + "ref:EU:EVSE": "FRFR1P7738575815794468631", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "466158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50889700000, + 48.92885400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue de Martignac 2", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX07*14", + "ref:EU:EVSE": "FRV75PPX0714", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31953930000, + 48.85936590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MOCQKWNTWR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "585521", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2892877928719011764", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22001400000, + 47.72359800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-03;2021-05-18", + "network": "DRIVECO", + "description": "Volvo - Thibault Automobiles - Le Mans - PDL1", + "amenity": "charging_station", + "charging_station:output": "22.08 kW;11.04 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPTHIBAULTVOLVO720001", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17323700000, + 47.97400300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SYDED/AEDHEK", + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "79876", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS25PAEDHEK", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06973000000, + 47.03910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - HENRICHEMONT - Rte. de Sancerre(La Borne)", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E186354", + "start_date": "2023-05-12", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS18E186354", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - HENRICHEMONT - Rte. de Sancerre(La Borne)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57943000000, + 47.28564300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "5 kW", + "description": "EIZMENDI TRAITEUR EVENEMENTS", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "810682740", + "operator": "EIZMENDI TRAITEUR EVENEMENTS", + "network": "EIZMENDI TRAITEUR EVENEMENTS", + "operator:email": "contact@eizmenditraiteur.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72000000000, + 43.36000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRQPKPQPRK10061;FRQPKPQPRK10012;FRQPKPQPRK10011", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "start_date": "2022-01-01", + "description": "QPARK - LA DEFENSE - BOIELDIEU", + "ref": "FR*SOD*S*QPRK*100*1*_*_;FR*SOD*S*QPRK*100*6*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24017700000, + 48.88775400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8102600121;FRS81E8102600111;FRS81E8102600112;FRS81E8102600122", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-03-27", + "description": "BELLEGARDE-MARSSAL - Route de Marsal", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27453229000, + 43.90669309970 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "bench" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20621960000, + 49.97194710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402400", + "start_date": "2019-03-30", + "description": "IONITY Boismandé Est", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE402400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42008800000, + 46.31409200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "SAINT-BREVIN-LES-PINS - Avenue Jules Verne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44154005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16847395900, + 47.24697113000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "01F5ZAKH61BJ58DFFJ4X4N2B6Z", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-25;2016-08-11", + "ref:EU:EVSE": "FRS77P77368A;FRS77E77368001", + "description": "POIGNY - Rue De La Mairie;Poigny", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28167900000, + 48.53955800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH01E62819001", + "operator": "Bouygues E&S", + "description": "TILQUES - Aire de covoiturage de Tilques D943 E1", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19459900000, + 50.77835500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - CHOUZE SUR LOIRE - Pl. de l'église", + "ref:EU:EVSE": "FRS37E5521;FRS37E5520", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E5521;FRS37E5520", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHOUZE SUR LOIRE - Pl. de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12685800000, + 47.23777500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDNSWQT", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lanester - Rue Youri Gagarine", + "start_date": "2017-07-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34107400000, + 47.77431900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*162*2*_*_;FR*SOD*S*LYON*162*1*_*_;FR*SOD*S*LYON*162*3*_*_;FR*SOD*S*LYON*162*4*_*_", + "start_date": "2022-05-20;2022-05-25", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "LY301 - PART-DIEU - DERUELLE", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON16241;FRGLYPLYON16221;FRGLYPLYON16211;FRGLYPLYON16231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85435100000, + 45.76303200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5984001", + "ref": "FR*MEL*P59840*01", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "LOMPRET - Rue de l'église", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98962009000, + 50.67024588000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "OPEL - Serva - Roncq", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEURAUTOOPEL592231", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "start_date": "2019-12-02", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13056000000, + 50.73949800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT OSNY", + "network": "SONEPAR CONNECT OSNY", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6589265", + "ref": "FRCPIE6589265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07235500000, + 49.04936500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref": "477792", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1882419731272808494", + "description": "Leclerc/V4QRFQWA0I" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01307500000, + 48.75260600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "07aaebd0-195d-5d88-9b3b-3c7112a7eaf3", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Langoiran | Place de la Mairie", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40092400000, + 44.70804900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95157001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-02", + "charging_station:output": "22 kW", + "description": "CHERENCE - Rue Coursoupe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67668239337, + 49.08933374987 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "start_date": "2021-12-20", + "description": "CASINO FREJUS", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "12;4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "ref:EU:EVSE": "FRSITE00000104;FRALLPCAS013", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;43 kW", + "network": "ALLEGO;GreenToWheel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321000000, + 43.42367000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3022EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3022EVCP01", + "charging_station:output": "22 kW", + "description": "CHAMB-ST JEOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98997100000, + 45.53921400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PCZXYUE9SOO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "description": "Marseille, Parking De La Gare La Barasse", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48419100000, + 43.28567800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P266002473894165174", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "402644", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "description": "SDEY/VMMH9IWEVE", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08216000000, + 48.32400600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "CANNES - PARKING PETIT JUAS", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*279*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ27922;FRA16PWIIZ27921", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2024-03-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01040480000, + 43.56536480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "505659", + "description": "Freshmile France/QV1XBL32UC", + "ref:EU:EVSE": "FRFR1P8654901856124075125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17280600000, + 49.15062200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "description": "Mathimo - Bourgoin-Jallieu", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PMTIBJL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27545492380, + 45.58946976810 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint-Sauveur-De-Cruzières, Fangaro;Réseau eborn/PR9GFHI1ZR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "30341;PR9GFHI1ZR", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPPR9GFHI1ZR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25471200000, + 44.29897900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "ENGIE MAMP - Bornes publiques/8F05F1C4-129B-4774-8420-500A95358FE3", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "ref": "927801", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FREVZP346373943669533323", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38014800000, + 43.30495400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-08-19", + "description": "EPSA - IZESTE", + "amenity": "charging_station", + "capacity": "1", + "network": "EPSA", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "ref": "FR*SOD*S*OTHR*60*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR6011", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42373900000, + 43.08667400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Gingolph, Quai Chevallay;Réseau eborn/RSYEDPHZVE", + "ref": "RSYEDPHZVE;346922", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRSYEDPHZVE;FREBNP1852009245890550447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80141000000, + 46.39387000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFBYQDSUWIU;FREBNP8180720578327888343", + "ref": "346697;FBYQDSUWIU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Le Bourget-Du-Lac, Sud 2, Rue mer Caspienne;Réseau eborn/FBYQDSUWIU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87381000000, + 45.64099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - A51 Aubignosc Est", + "amenity": "charging_station", + "start_date": "2023-09-05", + "capacity": "1", + "charging_station:output": "50 kW;300 kW;90 kW;22 kW", + "socket:type2_combo:output": "300 kW;90 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP104112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98023300000, + 44.13350500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;60 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/SJGU8UPEDR", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P765869098721854999", + "ref": "626261", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "120 kW;60 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561900000, + 43.48068200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRV75PPX1407", + "opening_hours": "24/7", + "ref": "FR*V75*PPX14*07", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Didot 41" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32029720000, + 48.83185660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7830289169483118842", + "ref": "998799", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;36 kW", + "description": "Freshmile France/LLO4F6WFO8Q9TC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71564500000, + 44.89471100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-04-08;2022-05-09", + "ref:EU:EVSE": "FRSSDPSIBLU349701", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Les Lacs des Rêves (Camping Siblu) - Lattes", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:30-12:30, Mo 14:30-18:00, Tu 09:30-12:30, Tu 14:30-18:00, We 09:30-12:30, We 14:30-18:00, Th 09:30-12:30, Th 14:30-18:00, Fr 09:30-12:30, Fr 14:30-18:00, Sa 09:30-12:30, Sa 14:30-18:00, Su 09:30-12:30, Su 14:30-18:00", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93956600000, + 43.55642300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PLOUVIERSREPUBLIQUE", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900022", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "start_date": "2016-07-08", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16703800000, + 49.21392200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Collinee-Rue André Gilles (parking station service derrière Carrefour market)", + "ref:EU:EVSE": "FRS22E22046001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51702000000, + 48.29814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRY05E78092005", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BOUGIVAL - Rue Saint Michel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13921900000, + 48.86252500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-03-17", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "description": "cupra_vdascq", + "ref:EU:EVSE": "FRROSE163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12329900000, + 50.64049800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "6 kW", + "description": "WAAT/FRWATLI5QT4ONK", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP4568229827683998143", + "operator": "WAAT SAS | FR*WAT", + "ref": "1087542", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88970100000, + 44.92712500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "description": "Vrigny", + "network": "Vrigny", + "ref:EU:EVSE": "FRIOYE401704;FRIOYE401703;FRIOYE401702;FRIOYE401701;FRIOYE401751;FRIOYE401752;FRIOYE401753", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE401704;FRIOYE401703;FRIOYE401702;FRIOYE401701;FRIOYE401751;FRIOYE401752;FRIOYE401753", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2019-04-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91877010000, + 49.24298340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E50489;FRS51E50488", + "network": "MODULO - COURTISOLS - Rue Jean Mermoz", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E50489;FRS51E50488", + "description": "MODULO - COURTISOLS - Rue Jean Mermoz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51487700000, + 48.98747200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LANNEMEZAN - Rue Voltaire", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS65E65258005", + "start_date": "2022-08-04", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38500300000, + 43.12579100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE001002;FRIENE001001", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE001002;FRIENE001001", + "start_date": "2023-01-13", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Vitré II", + "description": "Vitré II" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23951219000, + 48.12698555000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34192002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "PALAVAS LES FLOTS - Avenue de la Gare Albert Dubout" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93381900000, + 43.52907500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/UWNFHN", + "ref": "32836", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PUWNFHN", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29572000000, + 47.67660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/HPYME0H9MH", + "ref:EU:EVSE": "FRFR1P6154859251825953936", + "ref": "346262", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14611000000, + 49.07970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VIC LE FESQ - Parking RD999", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "start_date": "2021-12-24", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30349001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09815900000, + 43.87086900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Village Maurin Suzuki Hyundai", + "ref:EU:EVSE": "FRSSDPMAURINSUZUKI661001", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2020-10-22;2020-09-24", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:45, Tu 08:00-12:00, Tu 14:00-18:45, We 08:00-12:00, We 14:00-18:45, Th 08:00-12:00, Th 14:00-18:45, Fr 08:00-12:00, Fr 14:00-18:45, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90546600000, + 42.66232500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "921931267", + "network": "CHROMA COULEURS", + "amenity": "charging_station", + "capacity": "1", + "description": "CHROMA COULEURS", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "start_date": "2024-04-01", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "ref": "FRC2P008001", + "ref:EU:EVSE": "FRC2P008001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.24866370467, + 61.52035520609 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "description": "LUMI'IN LORIOL", + "ref:EU:EVSE": "FRLUMELORIOL11", + "start_date": "2023-02-25", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "47bbb1da-a79f-42b8-bc43-4d9a05039fb1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99423750000, + 44.07693490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Marval | Salle Polyvalente", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "4573695e-20e6-533a-b2d7-8e823e5f708d", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79465600000, + 45.62580900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Citroën - BORDEAUX - EURL NOGUES DIDIER", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-16", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE40MNCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88732900000, + 44.01525100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "freddy.borneco@gmail.com", + "amenity": "charging_station", + "capacity": "1", + "network": "BORNECO", + "ref:EU:EVSE": "FRBHMELEVPARKA1;FRBHMELEVPARKB1;FRBHMELEVPARKC1;FRBHMELEVPARKD1", + "operator": "BORNECO ", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "description": "LEV PARK", + "ref": "FR*BHM*ELEVPARKD*1;FR*BHM*ELEVPARKA*1;FR*BHM*ELEVPARKB*1;FR*BHM*ELEVPARKC*1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49865580000, + 48.76161170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "477798", + "description": "Leclerc/YSCJHWOOBD", + "ref:EU:EVSE": "FRLE2P5500559588769647491", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60896300000, + 49.31839000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Salon-de-Provence, Avenue de Grans", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PXNMMEMUQWX", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09064900000, + 43.63513100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P453036901384042133", + "ref": "402497", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "SDEY/FKDYATCML9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61674200000, + 47.99331400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-01-11", + "operator": "R3", + "description": "R3 - Norauto Sens", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363744", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28800400000, + 48.17268800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/Z5YMICU46B", + "operator:email": "roaming@freshmile.com", + "capacity": "13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6219879712288808650", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "505752", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200600000, + 48.20786500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYULFU", + "charging_station:output": "60 kW;50 kW;22 kW", + "description": "Système U - Le Faou", + "socket:type2_combo:output": "60 kW", + "start_date": "2022-04-05", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16935900000, + 48.29842000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32803", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSJCGRO59VL", + "network": "Réseau eborn", + "description": "Réseau eborn/SJCGRO59VL", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63375600000, + 44.91552800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "owner:ref:FR:SIREN": "428801658", + "network": "Bananes Vertes St Claude", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREZDE28286", + "ref": "FREZDE28287", + "operator:email": "odile.coumau@ezdrive.fr", + "opening_hours": "24/7", + "description": "Bananes vertes ", + "operator": "Green Technologie", + "charging_station:output": "7.0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.41000000000, + 16.01000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*813*6*_*_;FR*SOD*S*OTHR*813*5*_*_;FR*SOD*S*OTHR*813*4*_*_;FR*SOD*S*OTHR*812*6*_*_;FR*SOD*S*OTHR*812*5*_*_;FR*SOD*S*OTHR*812*4*_*_;FR*SOD*S*OTHR*812*1*_*_;FR*SOD*S*OTHR*812*2*_*_;FR*SOD*S*OTHR*812*3*_*_;FR*SOD*S*OTHR*813*1*_*_;FR*SOD*S*OTHR*813*2*_*_;FR*SOD*S*OTHR*813*3*_*_", + "ref:EU:EVSE": "FROTHPOTHR81331;FROTHPOTHR81311;FROTHPOTHR81211;FROTHPOTHR81221;FROTHPOTHR81231;FROTHPOTHR81241;FROTHPOTHR81251;FROTHPOTHR81261;FROTHPOTHR81321;FROTHPOTHR81341;FROTHPOTHR81351;FROTHPOTHR81361", + "charging_station:output": "7 kW", + "description": "POLYGONE RIVIERA P1;POLYGONE RIVIERA P3", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "FREY", + "start_date": "2024-04-09;2024-04-13", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14677040000, + 43.67273850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Saint-Sauveur-De-Montagut, Saint Sauveur;Réseau eborn/AVVJGL", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPAVVJGL", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref": "AVVJGL;30344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58457000000, + 44.82140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "CLFAVQ;31897", + "ref:EU:EVSE": "FREBNPCLFAVQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "description": "Montoison, Route de Valence;Réseau eborn/CLFAVQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93832000000, + 44.80030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-06-10", + "ref": "FR*SOD*S*OTHR*408*9*_*_;FR*SOD*S*OTHR*408*7*_*_;FR*SOD*S*OTHR*408*6*_*_;FR*SOD*S*OTHR*408*5*_*_;FR*SOD*S*OTHR*408*4*_*_;FR*SOD*S*OTHR*408*3*_*_;FR*SOD*S*OTHR*408*10*_*_;FR*SOD*S*OTHR*408*1*_*_;FR*SOD*S*OTHR*408*2*_*_;FR*SOD*S*OTHR*408*8*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "LE ROY RENE - AIX-EN-PROVENCE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR40891;FROTHPOTHR40881;FROTHPOTHR40871;FROTHPOTHR40831;FROTHPOTHR408101;FROTHPOTHR40811;FROTHPOTHR40821;FROTHPOTHR40841;FROTHPOTHR40851;FROTHPOTHR40861", + "operator:email": "sav@izivia.com", + "network": "CONFISERIE LE ROY RENE", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37811500000, + 43.58133500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "487203", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P378084780114837022", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Freshmile France/FCF3ZP09ZM", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83675500000, + 43.83706100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP30256", + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Gap, France ", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10445800000, + 44.56956500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PSTEZAD", + "network": "Freshmile France", + "description": "Freshmile France/STEZAD", + "opening_hours": "24/7", + "ref": "94247", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12110000000, + 48.89930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP02716", + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "499887479", + "start_date": "2023-04-04", + "description": "Garage Beliard - Étalans", + "network": "GARAGE BELIARD", + "charging_station:output": "22 kW", + "ref": "FRTCBP02716", + "operator:email": "supervision-ev.france@totalenergies.com", + "opening_hours": " Mo-Th 07:30-19:00, Mo-Th 08:00-12:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25067227301, + 47.16247732290 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4622067860408209601", + "description": "Freshmile France/PZKSGTHL8A", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "756987", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45705700000, + 43.59906900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461652", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P4902095807561071950", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/BENXV427ED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33200700000, + 49.15501800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "description": "Mazda - Château-Thierry - 22kW AC ", + "start_date": "2022-01-10", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "21 kW", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 08:30-18:00", + "ref:EU:EVSE": "FRZMAE22AC96902", + "ref": "96902", + "owner:ref:FR:SIREN": "717280473", + "network": "Mazda CHÂTEAU THIERRY", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40889060000, + 49.02569430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-12", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Kiloutou_SOAumone", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14626100000, + 49.05186000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78498002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "POISSY - Rue Du 8 Mai 1945", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04299300000, + 48.92713200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "network": "Brumath Bernolsheim", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Brumath Bernolsheim", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE463152;FRIOYE463105;FRIOYE463104;FRIOYE463103;FRIOYE463102;FRIOYE463101;FRIOYE463106;FRIOYE463151;FRIOYE463153", + "ref": "FRIOYE463152;FRIOYE463105;FRIOYE463104;FRIOYE463103;FRIOYE463102;FRIOYE463101;FRIOYE463106;FRIOYE463151;FRIOYE463153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68639200000, + 48.74800200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS53E53154001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "description": "MONTAUDIN - Place De La Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98903780000, + 48.38557040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-19", + "ref:EU:EVSE": "FRS66E66125002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "OLETTE - PNR - La Bastide", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29166900000, + 42.56042600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE013801;FRIENE013802", + "description": "Mairy-Mainville", + "amenity": "charging_station", + "start_date": "2024-09-10", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE013801;FRIENE013802", + "network": "Mairy-Mainville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85533000000, + 49.30582500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35146001B1", + "charging_station:output": "36 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "operator": "Bouygues (1-OUEST)", + "description": "LANGOUET - Rue des Chênes", + "network": "OUEST CHARGE", + "start_date": "2024-04-15", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82342800000, + 48.25013100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "charging_station:output": "43 kW;160 kW", + "network": "61mobility", + "amenity": "charging_station", + "start_date": "2023-07-19", + "socket:type2_combo:output": "160 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref": "SE61-LTSH-002", + "ref:EU:EVSE": "FRS61P61278A", + "description": "Val-au-Perche - Station communale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69540191300, + 48.25477510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/JNNF0FAFIC", + "network": "Freshmile France", + "ref": "1009134", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1036072457386852800", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47063700000, + -21.32749000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PXNZPHC", + "description": "Roulez Électrique En Haute-Garonne/XNZPHC;Laréole", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-03-13", + "owner:ref:FR:SIREN": "200075240", + "ref": "XNZPHC;79771", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02102000000, + 43.73790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NANTERRE - Rue de la Gare", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92050020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19844821340, + 48.89587653896 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Zen Park Bordeaux - 33100 - 2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-12-24", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000598;FRCG0E000597;FRCG0E000596;FRCG0E000594;FRCG0E000593;FRCG0E000595", + "charging_station:output": "22 kW;7 kW", + "ref:EU:EVSE": "FRCG0E000598;FRCG0E000597;FRCG0E000596;FRCG0E000594;FRCG0E000593;FRCG0E000595", + "description": "Zen Park Bordeaux - 33100 - 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54929700000, + 44.85607200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE19212;FRM06PNICE19211", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "description": "NICE - PARKING PONT MICHEL", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*192*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28964634047, + 43.72223577639 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-03-10", + "description": "SAINTE SYLVESTRE SUR LOT - PARKING PLACE DU LOT;MOBIVE | Sainte Sylvestre Sur Lot | Parking Place du Lot", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - TE 47", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "59591424-781b-5162-816b-79c4e33796ef;FR*SOD*S*MB47*48*1*_*_", + "operator": "200__TE47;IZIVIA", + "owner:ref:FR:SIREN": "254701824", + "ref:EU:EVSE": "FRS47PMB474811;Non concerné;FRS47PMB474812", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80549600000, + 44.39616800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*331*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - 7 RUE DES CARRIERES EN FACE DU 10B PARKING - CORMEILLES-EN-PARISIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-07", + "ref:EU:EVSE": "FRSIGPSIGE33112;FRSIGPSIGE33111", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20297500000, + 48.97369200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "bp France", + "ref:EU:EVSE": "FRBPEP3EA035", + "start_date": "2024-07-10", + "capacity": "14", + "charging_station:output": "100 kW;22 kW;400 kW;300 kW", + "socket:type2_combo:output": "100 kW;400 kW;300 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "542034327", + "network": "bp pulse", + "description": "Aire de Chagnats", + "operator:email": "bppulsefranceops@bp.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51147892397, + 46.79632352971 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3164EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3164EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "RIS ORANGIS Langevin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39876500000, + 48.65018300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Allemans du Dropt | Place de la Mairie", + "ref": "f4f2fc88-0bd8-5369-96e8-8af0d4201474" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28884700000, + 44.62777300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/golfech", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PGOLFECH", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "49018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85406100000, + 44.11330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "PARKING PORT GRIMAUD", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-25", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83310GRIPORT", + "charging_station:output": "22.08 kW", + "ref": "FR*55C*P83310*GRI*PORT", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57743000000, + 43.27476100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST AUBIN SUR SCIE Pointe", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3632EVCP01;LFR3632EVCP02", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3632EVCP01;LFR3632EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07560100000, + 49.89328100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMCDM", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché - Condom", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37861000000, + 43.95930300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPTPZYRFBBHS", + "capacity": "2", + "amenity": "charging_station", + "ref": "TPZYRFBBHS", + "network": "eborn", + "description": "Roanne, Parking Nauticum", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05900000000, + 46.03256250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "e-Totem - Willy’s frites", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP59661A", + "network": "Réseau e-Totem Infrastructures", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP59661A", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10038872416, + 50.12099487450 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E42218001", + "charging_station:output": "7 kW", + "description": "Parking gare de Saint-Étienne Châteaucreux - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-13", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39718700000, + 45.44361700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT694201", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-10-04", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Condrieu", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75741400000, + 45.45751800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPTOUCM", + "operator:email": "help@electra.com", + "description": "Toulouse - Carrefour Market Minimes", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-03-22", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43238100000, + 43.62731900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-11-07", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - SAINT ETIENNE DE MAURS", + "ref": "FR*SOD*S*OTHR*528*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR52811;FROTHPOTHR52812", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20320900000, + 44.71422500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "description": "MOLSHEIM BORNE P4-02", + "amenity": "charging_station", + "capacity": "4", + "network": "MOLSHEIM BORNE P4-02", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6727745;FRCPIE6727755", + "ref": "FRCPIE6727745;FRCPIE6727755" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52706400000, + 48.53920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3502575064278794476", + "operator:email": "roaming@freshmile.com", + "ref": "346415", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/JIPTIDSXGP", + "charging_station:output": "9 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Fr,Tu,Mo,We,Th 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89112200000, + 50.33121200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LES ULIS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-06-17", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRURWPUNIB2121;FRURWPUNIB2112;FRURWPUNIB2111;FRURWPUNIB2122", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*UNIB*21*1*_*_;FR*SOD*S*UNIB*21*2*_*_", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17191300000, + 48.67759400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile/XXBYXW", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref": "182546", + "ref:EU:EVSE": "FRFR1PXXBYXW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19192000000, + 44.90900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Dardilly, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP14836", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76021800000, + 45.82033800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "368896", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1534717692695843547", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/OBPEAJBZPZ", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56212600000, + 44.83062500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;400 kW", + "operator:email": "roaming@zunder.com", + "network": "Zunder", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "capacity": "23", + "opening_hours": "24/7", + "ref:EU:EVSE": "ESZUNP6862112419150892122", + "description": "Zunder/143957", + "operator": "Zunder | ES*ZUN", + "ref": "1130487" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85219500000, + 44.36137400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P582788535875377355", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLIU1TQBS126PC", + "ref": "892773" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23311800000, + 49.41920500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12114001", + "network": "Reveo", + "description": "GRAND VABRE - Place De La Mairie", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35816200000, + 44.62900100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA4P8110724258154922692", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "880191", + "opening_hours": "24/7", + "description": "WAAT/FRWA4LUGYOY01B", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11853400000, + 49.48385800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "network": "Ouest Charge | FR*WCH", + "description": "OMBREE D'ANJOU - Place Champ de Foire", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49248001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17483711200, + 47.73910903931 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2021-03-22", + "capacity": "1", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LE MANS - Rue Christian Pineau", + "ref:EU:EVSE": "FRS72E72181003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20617235452, + 47.98078762126 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRH16E59323001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "JENLAIN - Rue des Dames - Parking de l'école" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62924870000, + 50.31267750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44197A;FRS44E44197001", + "start_date": "2024-05-10;2024-04-20;2021-04-13", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SION-LES-MINES - Rue De Saint-Sulpice;OuestCharge - Diva Sp - Sion-Les-Mines - Sulpice", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59096300000, + 47.73564800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "description": "SIEG 63/FR*S63*P63322*A", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63322A", + "ref": "518414", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18208800000, + 45.85282800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOYELLES-SUR-SAMBRE - Rue Alfred Bisiaux", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59439001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80021100000, + 50.15611600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BEZIERS - Domaine De Bayssan", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-30", + "ref:EU:EVSE": "FRS34E34032007", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20810437202, + 43.30677869697 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-16", + "description": "CRETEIL - Square Jean Esquirol", + "ref:EU:EVSE": "FRSIPE94028021", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44829736901, + 48.79800150360 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-LAURENT-DU-VAR - DONAT", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*355*1*_*_", + "start_date": "2024-05-23", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE35511;FRM06PNICE35512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18608765018, + 43.66153683832 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Saint Julien de lampon | Parking Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "243119e7-d005-560e-a253-4aef007cc3af" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36391100000, + 44.86017600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*437*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE43711;FRSIGPSIGE43712", + "start_date": "2023-10-30", + "description": "SIGEIF - 15 RUE LEBRUN - VITRY-SUR-SEINE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38201600000, + 48.78295800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2024-04-21", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Condé", + "network": "Allego Carrefour Condé", + "ref:EU:EVSE": "FRALLEGO9005202;FRALLEGO9005201;FRALLEGO9004211;FRALLEGO9004212;FRALLEGO9005251;FRALLEGO9005252", + "ref": "FRALLEGO9005202;FRALLEGO9005201;FRALLEGO9004211;FRALLEGO9004212;FRALLEGO9005251;FRALLEGO9005252" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59080536000, + 50.45294021000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2826EVCP04;LFR2826EVCP02;LFR2826EVCP01;LFR2826EVCP03", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "description": "BDX Merignac", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2826EVCP04;LFR2826EVCP02;LFR2826EVCP01;LFR2826EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67043500000, + 44.83881700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Billere | Allée Montesquieu", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1590f2d8-ae60-59a1-89ea-2187633203b5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39810500000, + 43.30211600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "RUSTREL - Vieille Route d'Apt", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "ref": "e4de70c7-b795-5f72-8d1c-1cb9d423b5ce", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48385100000, + 43.92338300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "description": "ORPHIN - Grande Rue", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA05E78470001", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77842820000, + 48.57827620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2898EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2898EVCP01", + "charging_station:output": "22 kW", + "description": "BERGERAC Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49320200000, + 44.85825300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-01-16", + "description": "Intermarché - Verquin", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMVRQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65027952220, + 50.50177621714 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPD9FNLZRTGS;FREBND9FNLZRTGS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "75308;D9FNLZRTGS", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Crau, 02 Place du Maréchal De Lattre Tassigny;Réseau eborn/D9FNLZRTGS", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07260700000, + 43.15098800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "start_date": "2022-12-27;2023-12-06", + "operator": "SPIE CITYNETWORKS", + "capacity": "8", + "network": "e-Vadea", + "description": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP21298A", + "operator:email": "assistance-commerciale@e-vadea.fr", + "opening_hours": "24/7", + "charging_station:output": "300 kW;50 kW;43 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672000, + 47.31487250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-26", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCRFMMZ", + "socket:type2_combo:output": "120 kW", + "description": "Carrefour Market - Mimizan", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22854299259, + 44.19330453638 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT914901", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2024-07-02", + "opening_hours": "24/7", + "description": "Carrefour Market - Milly-La-Forêt", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41895400000, + 48.39729500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRESEPS42218AM", + "operator": "E-TOTEM", + "description": "SEMOB Saint François", + "start_date": "2019-07-11", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRESEPS42218AM", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40343700000, + 45.43908700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "network": "DALKIA-EV100", + "amenity": "charging_station", + "ref": "FR*SOD*S*IZIG*447*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG44711;FROTHPIZIG44712", + "charging_station:output": "22 kW", + "description": "VITRY LE FRANCOIS - MALTEUROP", + "start_date": "2022-01-25", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60651000000, + 48.72845000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "IRVE LABERGEMENT 2", + "ref:EU:EVSE": "FRCPIE6873295;FRCPIE6984555", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2024-02-09", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6873295;FRCPIE6984555", + "network": "IRVE LABERGEMENT 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28002200000, + 46.77447700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile/MARTXJJ3YQ", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2673876907388957577", + "operator": "Freshmile | FR*FR1", + "ref": "541811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.57449300000, + 47.86934700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL BORDEAUX SUD", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRVIAP122042", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58830900000, + 44.78449200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "491997", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GVLLPF2MXK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8088377456647718792" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32728200000, + 49.06732500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP29508", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Annecy, France - Seynod", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08790000000, + 45.87709200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1108923", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLWAPCT88A7HB7", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRFR1P7358139317244470016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18769500000, + 44.97475000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "457458", + "network": "MobiSDEC", + "description": "MobiSDEC/GLD9JG2RUT", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P4860371702143508212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88858400000, + 48.84039000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "456825", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/FN2ROX2AOD", + "ref:EU:EVSE": "FRS14P3242230712737143100", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41858100000, + 49.33477400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P6486299696658450527", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA3LH4CQ5E0H", + "ref": "1127880", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352000000, + 49.13859200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-24", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "PONTORSON - Place Leclerc", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50170001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51228590000, + 48.55370840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAZAMET LA MOLIERE - La Molière Haute", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81163004", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38426600000, + 43.50005000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "owner:ref:FR:SIREN": "531681015;531681010;531681009;531681013;531681012;531681014;531681016;531681011", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "start_date": "2023-07-13;2022-12-28;2023-01-30;2022-12-23", + "opening_hours": "24/7", + "ref": "FRHPCPNF059671", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "REL.ORLEANS SARAN", + "ref:EU:EVSE": "FRHPCPNF059671" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85800000000, + 47.97890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NASBINALS - Place De La Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "ref:EU:EVSE": "FRS48E48104001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04721500000, + 44.66144600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "description": "Sarzeau - Rue Adrien Regent", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PLLI2WDITY2FS8E", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "start_date": "2000-01-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76105177805, + 47.52752507096 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62667001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE PORTEL - Avenue Gournay", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57521100000, + 50.71121600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2929300", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Trégunc - Place Georges Beaujean" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85063500000, + 47.85543100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PCYYADE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/CYYADE", + "opening_hours": "24/7", + "ref": "28487", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96514000000, + 48.07140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-22", + "description": "SAINT-MAURICE LA CLOUERE-1-2;SAINT-MAURICE LA CLOUERE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B090", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346052291;FRLMSE12346052292;FRLMSE12346052301;FRLMSE12346052302", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207000000, + 46.37738000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93046A", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "Métropolis/FR*MGP*P93046*A;Metropolis - Express - Livry-Gargan - Robert Schuman", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "ref": "484784", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54864300000, + 48.92771900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB79174P0013A", + "description": "Réseau AlterBase - Melle - Mairie", + "operator": "Séolis", + "start_date": "2017-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14223895000, + 46.22412259000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRATLP8701018970523722006", + "capacity": "7", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "999996", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32587600000, + 45.56455400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "description": "Howdens La Ville du Bois", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1000101740", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27766200000, + 48.66501600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-08-11", + "operator:email": "olivier@eqos.fr", + "amenity": "charging_station", + "description": "LMS Charge", + "network": "LMS Informatique", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMAPP000000006951", + "operator": "LMS Informatique", + "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", + "owner:ref:FR:SIREN": "482399896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39822600000, + 46.69896700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85226002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "SAINT-HILAIRE-DE-RIEZ - Chemin Yann Duprat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97810000000, + 46.71281100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLLEGIEN", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-11-13", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARS;FRALLPEVCARSCOLLG", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66109500000, + 48.83738300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "ref": "FR*SOD*S*MAMP*79*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "FUVEAU - MP0804 - 4 RUE DU NORD", + "network": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP7912;FRIZMPMAMP7911", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56273240000, + 43.45509070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PMATTHV", + "capacity": "5", + "socket:type2_combo:output": "38 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-02-14;2023-12-17", + "charging_station:output": "22 kW;38 kW", + "opening_hours": "24/7", + "description": "Match - Thaon-les-Vosges", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42370630569, + 48.24664362734 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPGB7J68Q0BE", + "capacity": "3", + "ref": "75101", + "opening_hours": "24/7", + "description": "Réseau eborn/FR*EBN*PGB7J68Q0BE", + "socket:type2_combo:output": "43 kW", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76676300000, + 45.31704700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/KHTEZ3S19A", + "ref": "510506", + "ref:EU:EVSE": "FRFR1P5549983022518178372", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00898500000, + 43.58312200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PIBSGSA", + "amenity": "charging_station", + "charging_station:output": "50 kW;160 kW;22 kW", + "description": "Ibis Budget - Grésy-sur-Aix", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92704700000, + 45.71821010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLLT4CIJ1O2OAYH;FREBNP4250793125186692322", + "ref": "LLT4CIJ1O2OAYH;1052529", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLT4CIJ1O2OAYH;Saint-Gervais, D1532", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47192800000, + 45.20414800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP34116A", + "description": "e-Totem - 3M - Grabels - Rue de la Valsière", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP34116A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83284400000, + 43.64975100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR21531;FROTHPOTHR21511;FROTHPOTHR21521", + "ref": "FR*SOD*S*OTHR*215*3*_*_;FR*SOD*S*OTHR*215*1*_*_;FR*SOD*S*OTHR*215*2*_*_", + "capacity": "1", + "description": "CHATEAU GISCOURS - ROUTE DE GISCOURS", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "network": "CHATEAU GISCOURS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64416200000, + 45.01055100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRCPSPCAPS4112;FRCPSPCAPS4111", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-08-03", + "description": "MASSY - BOUGAINVILLE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*CAPS*41*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27219300000, + 48.72507500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1701050651730603774", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1193632", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLXUAYMA11PX7F", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53249500000, + 44.83679000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "ref": "805224", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA3LACEI3U1T", + "ref:EU:EVSE": "FRW11P4320778542027300162", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*W11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14813700000, + 48.78256600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/EACLKZ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PEACLKZ", + "ref": "242332", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67200000000, + 48.76170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "ref:EU:EVSE": "FRSWSE1000088001;FRSWSE1000098508", + "capacity": "1;2", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00;24/7", + "network": "SOWATT SOLUTIONS", + "operator": "SOWATT SOLUTIONS", + "description": "WB 2x22 VW Bellegarde;WB 40kW VW Bellegarde", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2022-07-26", + "ref": "1000098508;1000088001", + "charging_station:output": "40 kW;22 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81705000000, + 46.10790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2901464531821284642", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "971843", + "network": "Freshmile France", + "description": "Freshmile France/LLMOPXFIR2BVVP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36333300000, + 48.07552900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "start_date": "2023-03-22", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPLECLERC473001", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Leclerc -Villeneuve sur Lot", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73487600000, + 44.41107800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E139037", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - VERNOUILLET - Pl. du 8 mai 1945", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VERNOUILLET - Pl. du 8 mai 1945", + "ref": "FRS28E139037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35607700000, + 48.72070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "pharmacie.de.hundling@gmail.com", + "operator": "PHARMACIE DE HUNDLING", + "start_date": "2022-08-24", + "amenity": "charging_station", + "capacity": "1", + "ref": "8eb9f23b-54a1-43d8-ad0f-7ed4dd2e1c67", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "813675287", + "network": "PHARMACIE DE HUNDLING", + "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-17:00", + "charging_station:output": "22 kW", + "description": "PHARMACIE DE HUNDLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98044700000, + 49.10841300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39722", + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/X98XY5WWHQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P5082710774229443540", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33546100000, + 48.30169300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP865821212593438983", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLGPWLEBT2", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "544733", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53878600000, + 43.52748000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE476;FRROSE477;FRROSE478", + "operator": "RossiniEnergy", + "capacity": "8;10", + "description": "Parc_Activite_2;Parc_Activite_1;Parc_Activite_3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80493890000, + 50.92769840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2022-02-28;2022-12-23", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81325001", + "charging_station:output": "24 kW;22 kW", + "description": "VIVIERS LES MONTAGNES - Place Du 8 Mai 1945", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17614100000, + 43.55358900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "15", + "ref:EU:EVSE": "FRIPKPPTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRIPKPPTE", + "description": "INTERPARKING - Parking Temple", + "start_date": "2022-12-16;2023-02-28", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854000000, + 48.86359000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "network": "Ouest Charge | FR*WCH", + "description": "COMBREE - Place du Commerce", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49103001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98902200000, + 47.71101700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/ZMZMFR", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60PZMZMFR", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "86717" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36048000000, + 49.42010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON20312;FRGLYPLYON20311", + "description": "LY324 - MONTLUC", + "start_date": "2023-12-21", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*203*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86405085093, + 45.75002291611 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189015", + "description": "NIMES - Rue Bridaine", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36126400000, + 43.83333600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Baud - Zone d'activites de Ty Er Douar", + "network": "Morbihan Energies", + "socket:type2_combo:output": "42 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PCNWQDX", + "start_date": "2017-05-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01283000000, + 47.89699900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "PLEUMARTIN-1-1;PLEUMARTIN-1-2;PLEUMARTIN | B079", + "start_date": "2016-03-16;2016-01-05", + "amenity": "charging_station", + "ref": "FR*SOD*S*SORE*15*1*_*_;B079", + "network": "SOREGIES MOBILITES;SOREGIES", + "opening_hours": "24/7", + "operator:email": "irve@soregies.fr;sav@izivia.com", + "owner:ref:FR:SIREN": "450889225", + "charging_station:output": "18 kW;22 kW", + "operator": "SOREGIES MOBILITES;IZIVIA", + "ref:EU:EVSE": "FRS86PSOREB0791;FRLMSE12346402611;FRLMSE12346402621;FRS86PSOREB0792" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76625900000, + 46.73846800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Metropolis - Proximité - Vincennes - Rue de Fontenay (44);Métropolis/FR*MGP*P94080*M", + "start_date": "2021-04-29", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "383196", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP94080M", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44343500000, + 48.84777500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14812;FRSIGPSIGE14811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - PLACE DU GENERAL LECLERC - COURTRY", + "ref": "FR*SOD*S*SIGE*148*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60414100000, + 48.91836700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA VERRIERE - Avenue du Général Leclerc", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E78644001", + "start_date": "2023-01-19", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95696300000, + 48.75597900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel Première Classe Touques", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89647196", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09647200000, + 49.34740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Chateauneuf Sur Charente | Place de la Gare", + "capacity": "2", + "amenity": "charging_station", + "ref": "173363c3-abfd-572d-9265-3d86bca1c15e", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05037300000, + 45.59965200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "charging_station:output": "24 kW;22 kW;47 kW", + "amenity": "charging_station", + "description": "ZAC EcoSénart - COMBS LA VILLE", + "network": "Stations-e", + "start_date": "2020-12-28;2024-06-25", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW;47 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE77CVZA;FRSE1PSE77CVZB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56632300000, + 48.64905900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9007542;FRALLEGO9007541;FRALLEGO9004502;FRALLEGO9004492;FRALLEGO9002763;FRALLEGO9002762;FRALLEGO9002761;FRALLEGO9004491;FRALLEGO9004501;FRALLEGO9007461;FRALLEGO9007462", + "network": "Allego Carrefour Perpignan Claira", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Perpignan Claira", + "ref": "FRALLEGO9007542;FRALLEGO9007541;FRALLEGO9004502;FRALLEGO9004492;FRALLEGO9002763;FRALLEGO9002762;FRALLEGO9002761;FRALLEGO9004491;FRALLEGO9004501;FRALLEGO9007461;FRALLEGO9007462", + "start_date": "2023-06-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91448400000, + 42.77439000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3747EVCP02;LFR3747EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LANDRES Verdun", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3747EVCP02;LFR3747EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79846800000, + 49.31913800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31555021", + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "TOULOUSE - Place Henri Russel", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45328500000, + 43.58490200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Uze, Les Sources;Réseau eborn/T80X29F55X", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPT80X29F55X", + "start_date": "2020-06-21", + "ref": "T80X29F55X;37156" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85935100000, + 45.18439600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P9221476998804109276", + "ref": "515045", + "description": "Freshmile France/JQ6N8HQWWD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49844200000, + 48.53267700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "description": "PARIS - Versailles Paul Reynaud", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E751160481;FRP07E75116048", + "start_date": "2023-03-30", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26263250000, + 48.83978710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPIVVBJ8KBSM", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "IVVBJ8KBSM;48397", + "description": "Saint-Barthelemy-De-Vals, Avenue Du Vercors;Réseau eborn/IVVBJ8KBSM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87341800000, + 45.17017700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Toulouse - Casino La Cepière", + "ref:EU:EVSE": "FRELCPTOUCAC", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41466500000, + 43.58996000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare du Mans - EFFIA", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E72181001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18899550000, + 47.99727530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6618695;FRCPIE6623845;FRCPIE6623855;FRCPIE6623865", + "capacity": "8", + "amenity": "charging_station", + "ref": "FRCPIE6618695;FRCPIE6623845;FRCPIE6623855;FRCPIE6623865", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "description": "SONELOG CHÂTEAUBOURG 4", + "start_date": "2022-10-12", + "network": "SONELOG CHÂTEAUBOURG 4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42750000000, + 48.09358400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/PPSSYUNFPG;Craponne-Sur-Arzon, Place de la Poste", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "ref": "346883;PPSSYUNFPG", + "ref:EU:EVSE": "FREBNPPPSSYUNFPG;FREBNP1800054360736255208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84579000000, + 45.33199000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "706307;1181964", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "description": "WAAT/s570545;WAAT/FRWATLZ9MC0PFX", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P4552366832654403317;FRWATP5627111800506048630", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74517700000, + 44.55806100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597876", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/IJOXVXWV0B", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3289907123321893221", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35319800000, + 49.00554700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00727", + "start_date": "2022-06-12", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "network": "Renault Agents France", + "charging_station:output": "22 kW", + "description": "GOUZON AUTOMOBILES BENOIT ET BUJON - GOUZON", + "ref:EU:EVSE": "FRTCBP00727", + "owner:ref:FR:SIREN": "392231403", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22691502376, + 46.19406639950 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/Melundoumer", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PMELUNERMI", + "ref": "120755", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66033000000, + 48.53960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Peugeot - Weynants - Wasquehal", + "start_date": "2020-06-08", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 13:00-18:00, Tu 08:00-12:00, Tu 13:00-18:00, We 08:00-12:00, We 13:00-18:00, Th 08:00-12:00, Th 13:00-18:00, Fr 08:00-12:00, Fr 13:00-18:00, Sa 09:00-12:00, Sa 14:00-18:30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPWEYNANTSPEUGEOT592901", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13344900000, + 50.68062300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Huelgoat-Rue du Général de Gaulle", + "start_date": "2023-03-27", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2908100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.75071200000, + 48.36298400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRAM - Parking Rue Marceau", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11049003", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11583333333, + 43.24305560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC57701;FRZP1PEAC57707", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "Nexhotel 2 - 7,4 kW AC;Nexhotel 1 - 7,4 kW AC", + "owner:ref:FR:SIREN": "529078545", + "network": "Nex Hotel Tarbes", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr", + "ref": "af60bf98-de12-4de6-8402-6d5154443d91" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07572110000, + 43.24079500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - SIGNY L'ABBAYE - Pl. Aristide Briand", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57593;FRS08E57592", + "start_date": "2021-09-07", + "ref:EU:EVSE": "FRS08E57593;FRS08E57592", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SIGNY L'ABBAYE - Pl. Aristide Briand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41915300000, + 49.69821300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PCWRWXB", + "charging_station:output": "22 kW", + "description": "FDE 80/CWRWXB", + "ref": "79471", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70410000000, + 50.18740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST23222;FRIZFPFAST23221;FRIZFPFAST23211;FRIZFPFAST23212;FRIZFPFAST23213;FRIZFPFAST23223", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*232*2*_*_;FR*SOD*S*FAST*232*1*_*_", + "description": "IZIVIA FAST - MC DONALDS - BOURGOIN JALLIEU", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25673450000, + 45.58965280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44014001;FRS44P44014A", + "start_date": "2021-04-27;2024-04-16", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Le Bignon - Touche;LE BIGNON - Les Jardins De La Touche", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49091200000, + 47.09701900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77057001;FRS77P77057A", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "BUSSIERES - Rue De La Mairie;Bussières", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61MYV6VSDS728MWJJH", + "start_date": "2023-05-14;2016-08-10", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23613500000, + 48.92242400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1234595733", + "amenity": "charging_station", + "operator": "GREENSPOT", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "start_date": "2024-06-03", + "description": "CREDIT AGRICOLE CREON ", + "network": "CREDIT AGRICOLE CREON ", + "owner:ref:FR:SIREN": "434651246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34372425212, + 44.78050419414 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "start_date": "2019-03-18", + "capacity": "1", + "ref": "FRS37E219839", + "ref:EU:EVSE": "FRS37E219839", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - AUZOUER DE TOURAINE Touraine - Pl. Général Leclerc", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - AUZOUER DE TOURAINE Touraine - Pl. Général Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91908306000, + 47.54254534000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "44371dbd-49dc-5af2-b3f3-c21a7ab4828a", + "charging_station:output": "50 kW;43 kW", + "operator": "42__CD54", + "description": "CD54 - Allain" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90814400000, + 48.54539200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2021-06-29", + "socket:type2_combo:output": "25 kW", + "description": "Super U Thuir", + "amenity": "charging_station", + "ref": "FRG10P66210A", + "capacity": "3", + "network": "Super U Thuir", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P66210A", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75830300000, + 42.64142500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "MOBIVE | LOSSE | Parking Station U", + "amenity": "charging_station", + "ref": "86f191c4-7d32-5b89-a260-3d107679848d", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05750500000, + 44.06415200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-20", + "ref": "FR*SOD*S*SIGE*266*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26612;FRSIGPSIGE26611", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 9 AVENUE JEAN JAURES - ROSNY-SOUS-BOIS - 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48632900000, + 48.87029200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "ref:EU:EVSE": "FRCPIE2864145", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "description": "GVA AVIGNON", + "charging_station:output": "22 kW", + "network": "GVA AVIGNON", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE2864145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84259800000, + 43.92655900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/KYYFI6NIAL", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P7089591519164095576", + "ref": "479265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08396300000, + 50.38126500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "ref": "889bb414-77ae-52be-81aa-b2cd68d05e01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Lubersac | Av. du Chateau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40249900000, + 45.44239900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "start_date": "2018-10-01", + "network": "AlterBase", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB12124A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "description": "Réseau AlterBase - Bressuire - Bocapôle - QC", + "charging_station:output": "50 kW;43 kW", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47424070000, + 46.85051320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BORNE ROUXEL MARINE", + "network": "EVBOX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "415183680", + "start_date": "2021-11-12", + "ref:EU:EVSE": "Non concerné", + "operator:email": "contact@evbox.com", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28000000000, + 48.61000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2047EVCP02;LFR2047EVCP01;LFR2047EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR2047EVCP02;LFR2047EVCP01;LFR2047EVCP03", + "description": "BORDEAUX MALBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56227300000, + 44.82574600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-29", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SASSENAGE - Mairie de Sassenage", + "ref:EU:EVSE": "FRM38E38474003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66321500000, + 45.20657200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*116*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ11611;FRA16PWIIZ11612", + "description": "ANTIBES - CASA GENETS - PUBLIC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-12-21", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03074100000, + 43.62477200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3465557693113934923", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1082808", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLSOM9GZQ25XQN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13612100000, + 49.11454700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "description": "Action - Loison-sous-Lens", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "FRPD1PACTLSL", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85986953069, + 50.44567335726 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMONTLUCONGI", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref": "montlucongi;120722", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Montluçon, Gironde;Réseau eborn/montlucongi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60975000000, + 46.33960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "description": "Cormeilles-en-Parisis - ZAC des Bois Rochefort", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "300 kW;400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2024-09-11", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPCEPZA", + "operator": "ELECTRA", + "charging_station:output": "300 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20212200000, + 48.95062900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E95487001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Persan-Beaumont P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27901970000, + 49.14793690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6676155", + "capacity": "2", + "amenity": "charging_station", + "description": "BIOPATH HDF COQUELLES 1", + "ref:EU:EVSE": "FRCPIE6676155", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-01-18", + "network": "BIOPATH HDF COQUELLES 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80558400000, + 50.92761700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "LLX0B6D4L1BX1A;1121661", + "amenity": "charging_station", + "description": "Pouilley-Français, Grand Rue;Easy Charge/LLX0B6D4L1BX1A", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "start_date": "2024-06-04", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP2626403345444644566;FRECHPLLX0B6D4L1BX1A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84301600000, + 47.20734600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP151002", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-23;2022-08-04", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Eurotunnel Flexiplus", + "owner:ref:FR:SIREN": "909073363", + "socket:type2_combo:output": "50 kW;210 kW", + "charging_station:output": "210 kW;62.5 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81191300000, + 50.92840600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2509925036094294139", + "description": "Freshmile France/RMXU7KFQ3T", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "368920" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58029200000, + 44.83673600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Linnée 18", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "amenity": "charging_station", + "ref": "FR*V75*PPX05*12", + "opening_hours": "24/7", + "start_date": "2021-10-06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35483350000, + 48.84525660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "44 kW;60 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "626183", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/N2CH6C5QBH", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3775591962003351747" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33199200000, + 47.61497800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPOCEANEVOLVO850001", + "amenity": "charging_station", + "capacity": "12", + "start_date": "2021-10-13", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Volvo - La Roche sur Yon", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42470200000, + 46.72312100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22333001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Vran-Le bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44117600000, + 48.23833100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-10-29", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS18E146807", + "charging_station:output": "0 kW", + "ref": "FRS18E146807", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - LA GUERCHE - Av. de l'Europe(Pkg. Netto)", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LA GUERCHE - Av. de l'Europe(Pkg. Netto)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93980400000, + 46.94008800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-01", + "capacity": "8", + "ref": "01FHZ1QMY4JSFE6G7VES2794BC", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "ADL", + "operator:email": "christophe.langlet@lyonaeroports.com", + "opening_hours": "24/7", + "description": "Parking P4 électrique ", + "operator": "Aeroports de lyon", + "owner:ref:FR:SIREN": "493425136" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07425700000, + 45.72085900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/ML8ZQJOCDL", + "ref:EU:EVSE": "FRS10P8892024966082934667", + "ref": "101756" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11250400000, + 48.63599600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ALBI - Avenue Francois Verdier", + "ref:EU:EVSE": "FRS81E81004006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13826400000, + 43.91987800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "description": "IKEA NICE - PARKING CLIENTS SS1", + "ref": "FR*SOD*S*IKEA*37*8*_*_;FR*SOD*S*IKEA*37*7*_*_;FR*SOD*S*IKEA*37*6*_*_;FR*SOD*S*IKEA*37*5*_*_;FR*SOD*S*IKEA*37*4*_*_;FR*SOD*S*IKEA*37*30*_*_;FR*SOD*S*IKEA*37*26*_*_;FR*SOD*S*IKEA*37*25*_*_;FR*SOD*S*IKEA*37*21*_*_;FR*SOD*S*IKEA*37*20*_*_;FR*SOD*S*IKEA*37*19*_*_;FR*SOD*S*IKEA*37*18*_*_;FR*SOD*S*IKEA*37*17*_*_;FR*SOD*S*IKEA*37*16*_*_;FR*SOD*S*IKEA*37*15*_*_;FR*SOD*S*IKEA*37*13*_*_;FR*SOD*S*IKEA*37*11*_*_;FR*SOD*S*IKEA*37*10*_*_;FR*SOD*S*IKEA*37*1*_*_;FR*SOD*S*IKEA*37*12*_*_;FR*SOD*S*IKEA*37*14*_*_;FR*SOD*S*IKEA*37*2*_*_;FR*SOD*S*IKEA*37*22*_*_;FR*SOD*S*IKEA*37*23*_*_;FR*SOD*S*IKEA*37*24*_*_;FR*SOD*S*IKEA*37*27*_*_;FR*SOD*S*IKEA*37*28*_*_;FR*SOD*S*IKEA*37*29*_*_;FR*SOD*S*IKEA*37*3*_*_;FR*SOD*S*IKEA*37*9*_*_", + "ref:EU:EVSE": "FRIKAPIKEA3761;FRIKAPIKEA37301;FRIKAPIKEA37291;FRIKAPIKEA37241;FRIKAPIKEA37231;FRIKAPIKEA37221;FRIKAPIKEA37211;FRIKAPIKEA37201;FRIKAPIKEA37191;FRIKAPIKEA37181;FRIKAPIKEA37161;FRIKAPIKEA37131;FRIKAPIKEA37121;FRIKAPIKEA37101;FRIKAPIKEA3711;FRIKAPIKEA37111;FRIKAPIKEA37141;FRIKAPIKEA37151;FRIKAPIKEA37171;FRIKAPIKEA3721;FRIKAPIKEA37251;FRIKAPIKEA37261;FRIKAPIKEA37271;FRIKAPIKEA37281;FRIKAPIKEA3731;FRIKAPIKEA3741;FRIKAPIKEA3751;FRIKAPIKEA3771;FRIKAPIKEA3781;FRIKAPIKEA3791", + "start_date": "2022-04-08", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19450000000, + 43.70768700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2021-04-28;2024-04-29", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "PORNIC - Rue Du Traité De Lisbonne;OuestCharge - Pulse 50 - Pornic - Lisbonne", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44P44131A;FRS44E44131001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12279500000, + 47.12745700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "MONTHYON - Rue De La République;Monthyon", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77309A;FRS77E77309001", + "start_date": "2023-05-05;2016-08-31", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61WGK1CSYFH3ZXEPXT", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82891800000, + 49.00922000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LONGUENESSE - Place de l'hotel de ville", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62525002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24531490000, + 50.73843000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221487;FRS37E221488", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E221487;FRS37E221488", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - NAZELLES NEGRON - Av. du Centre", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-09-26", + "network": "MODULO - NAZELLES NEGRON - Av. du Centre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97655500000, + 47.42418700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66457;FRS55E66456", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "network": "MODULO - SPINCOURT- Chemin court", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS55E66457;FRS55E66456", + "description": "MODULO - SPINCOURT- Chemin court", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66252900000, + 49.33199800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-10-12", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "RIL01 - FLEURY SALIGNAT", + "ref": "FR*SOD*S*LYON*139*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON13912;FRGLYPLYON13911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89595000000, + 45.82175400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "LEZENNES - Rue du camp français", + "opening_hours": "24/7", + "ref": "FR*MEL*P59260*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRMELP5926001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11507745200, + 50.61029183000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-01-12;2018-07-09", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHYUNDAI841301", + "capacity": "4", + "description": "Hyundai - A.A. 84 - Le Pontet", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87383000000, + 43.97700100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6577935", + "network": "SONEPAR CONNECT OYONNAX", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6577935", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "SONEPAR CONNECT OYONNAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65756600000, + 46.27277600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/G07NKV2IV3", + "ref": "477759", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1749799106783952661" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38832600000, + 45.75150500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Langon | Place Kennedy", + "ref": "2225ed26-9499-5965-8a64-c0a280a7f718", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24889100000, + 44.55361900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Bretigny-sur-Orge - Rue Henri Douard", + "ref": "7d390b16-882b-59fe-97cb-63200b2508b8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31056100000, + 48.60990100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "Allego Nissan Fleury les Aubrais", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-04-22", + "network": "Allego Nissan Fleury les Aubrais", + "ref": "FRALLEGO0001681;FRALLEGO0001682", + "ref:EU:EVSE": "FRALLEGO0001681;FRALLEGO0001682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89706700000, + 47.92868200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR2960EVCP03;LFR2960EVCP02;LFR2960EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "ROUSSET SUR ARC", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2960EVCP03;LFR2960EVCP02;LFR2960EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60851400000, + 43.46579900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PYDWQGIEKHG", + "operator:email": "support@evzen.com", + "description": "Istres, Parking Des Arnavaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99059300000, + 43.51397700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS88E177262;FRS88E177260", + "network": "MODULO - GERARDMER - Pl. du Tilleul", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - GERARDMER - Pl. du Tilleul", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E177262;FRS88E177260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87392000000, + 48.06870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ2312;FRA16PWIIZ2311", + "capacity": "2", + "amenity": "charging_station", + "description": "LE TIGNET PARKING MAIRIE", + "ref": "FR*SOD*S*WIIZ*23*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2018-04-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84219600000, + 43.62939800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/folschviller", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P830554936270082938", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "377447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68403000000, + 49.07580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMBRPTR", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-09-11", + "opening_hours": "24/7", + "description": "Mr. Bricolage - Poitiers", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36634560374, + 46.56681254211 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31780;UTSMAL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPUTSMAL", + "start_date": "2020-06-11", + "description": "Beaumont-Lès-Valence, Parking du Centre;Réseau eborn/UTSMAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93998000000, + 44.86130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref": "927765", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP5423023773092521338", + "charging_station:output": "25 kW;22 kW", + "description": "ENGIE MAMP - Bornes publiques/26C1D92F-2C3A-4A58-9500-23FC937F39C9", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37711900000, + 43.30268600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "39", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-09-06;2024-09-26", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E595990013;FRP07E595990012;FRP07E59599001;FRP07E595990011", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOURCOING - Saint Christophe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16096350000, + 50.72008560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/XVKVTT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPXVKVTT", + "charging_station:output": "22 kW", + "ref": "96074" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59508800000, + 45.54475600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPBDBS1JFEDO", + "description": "Banne, Lochere;Réseau eborn/BDBS1JFEDO", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "39098;BDBS1JFEDO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15520300000, + 44.36648800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122005", + "start_date": "2023-07-27;2023-07-26", + "description": "ENGIE Vianeo - B&B HOTEL BEAUNE SUD 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84078500000, + 47.01206000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7657396343070964956", + "description": "Freshmile France/RMDZXYQQKA", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "477696" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39109700000, + 49.20371100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*PPX13*02", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "description": "Paris | Rue de Chevaleret 131", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75PPX1302", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37254800000, + 48.83186000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PDXQVXC", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/DXQVXC", + "opening_hours": "24/7", + "ref": "257215", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04132700000, + 48.78466000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-07", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Hôtel Ostella - Bastia", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPOSTELLABASTIA206001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44061800000, + 42.66781100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PEVREUXGAMBETTA", + "capacity": "2", + "description": "900057", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "start_date": "2016-12-02", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15026200000, + 49.01916100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "ref": "180437", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS21P21632A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SICECO/FR*S21*P21632*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13462400000, + 47.21684500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78551020", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-05", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-GERMAIN-EN-LAYE - Jean Jaurès", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08198960000, + 48.89516720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OktoCampus", + "ref:EU:EVSE": "FRROSE110", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2021-07-15", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19716400000, + 50.64940800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP3104823187538188130", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "WAAT/FRWATLCU1WCGUM", + "operator": "WAAT SAS | FR*WAT", + "ref": "1062495", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33497600000, + 48.89114800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref": "FRIONE438600", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "start_date": "2021-12-09", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE438600", + "description": "IONITY Vérités" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58668030000, + 46.37802700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E42108;FRS51E42107", + "ref": "FRS51E42108;FRS51E42107", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VERZY - Rue Chanzy", + "start_date": "2020-12-11", + "description": "MODULO - VERZY - Rue Chanzy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16296300000, + 49.14610400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAGNERES DE BIGORRE - Thermes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "ref:EU:EVSE": "FRS65E65059001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14635000000, + 43.06282100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRHPCPNF080357", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681271;531681269;531681258;531681259;531681257;531681256;531681260;531681261;531681262;531681264;531681263;531681265;531681267;531681266;531681268;531681270", + "ref:EU:EVSE": "FRHPCPNF080357", + "opening_hours": "24/7", + "description": "RELAIS VIRONVAY SUD", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-02-09", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "150 kW;300 kW;54 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21780000000, + 49.21160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-20", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34146001", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "LUNEL VIEL - Rue André Auguste - Face au boulodrome" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08903600000, + 43.67712200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PBEDFUJ", + "capacity": "3", + "ref": "25042", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/BEDFUJ", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39355000000, + 47.74000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "440982", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/BNOETWSQ8N", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6270361388717496413" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69668000000, + 48.59300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "ref": "599097", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92051S", + "description": "Métropolis/FR*MGP*P92051*S;Metropolis - ePremium - Neuilly-sur-Seine - Dumas", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27462600000, + 48.88096200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:00, Tu 08:30-12:00, Tu 14:00-18:00, We 08:30-12:00, We 14:00-18:00, Th 08:30-12:00, Th 14:00-18:00, Fr 08:30-12:00, Fr 14:00-18:00, Sa 08:30-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2020-06-09", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPSAIPFIAT593001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Fiat - SDAH - Valenciennes", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53162600000, + 50.36890200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC2P004801", + "start_date": "2023-01-30", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "750986200", + "network": "SARL LE BOIS DE CORNAGE", + "opening_hours": "24/7", + "ref": "FRC2P004801", + "description": "SARL LE BOIS DE CORNAGE", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76931760000, + 45.08730990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMEFALGOS11", + "ref": "a9e431e7-189c-44c7-b111-55db8d10d18f", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "start_date": "2022-06-13", + "description": "DOMAINE DE FALGOS " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58000000000, + 42.37000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "CPO CITEOS Mobive", + "ref": "c1f1f824-32d8-5d1d-a74e-e5e6778294d3", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | Bascons | Parking Ecole", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41880600000, + 43.82270800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-01", + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE25RABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "description": "MEUBLES ETIENNE MOUGIN - LE RUSSEY", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72034800000, + 47.15908500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP87816142930890804", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "944313", + "amenity": "charging_station", + "capacity": "1", + "description": "BornEco/6536077ad66357a5491ee013", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Borneco | FR*BHM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38519200000, + 47.79807100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "38", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P8963573399275619151", + "charging_station:output": "22 kW", + "ref": "521438", + "description": "Leclerc/YE4ZWF9SHX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77425500000, + 49.61241800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Peynier, Avenue de la Garenne", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13POZM6K3D0AA", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63910300000, + 43.44787600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "402656", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P6981340114896177391", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/WMRHFI4HID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69055800000, + 47.68157700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-06-13", + "ref:EU:EVSE": "FRA16PWIIZ8111;FRA16PWIIZ8112", + "description": "SAINT-VALLIER-DE-THIEY - PARKING ESPACE DU THIEY", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*81*1*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84736400000, + 43.70035600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6629798118890393394", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref": "756963", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IE033U31DM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70582800000, + 46.00297300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PSYSALG", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Station U - Algrange", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03765021340, + 49.34773146045 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "25270;L2PVKCY1TX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPL2PVKCY1TX", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/L2PVKCY1TX;Aubenas, Place de la Pécourte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38746900000, + 44.61962400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "1049745", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP3521834267588265795", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques", + "description": "ENGIE MAMP - Bornes publiques/BBB2DB6B-D4A4-4CF6-8C32-4871763DFF50" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41315100000, + 43.23228400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*704*2*_*_;FR*SOD*S*OTHR*704*1*_*_;FR*SOD*S*OTHR*704*3*_*_;FR*SOD*S*OTHR*704*4*_*_;FR*SOD*S*OTHR*704*5*_*_;FR*SOD*S*OTHR*704*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "GROUPE VIKINGS - HEROUVILLE-SAINT-CLAIR", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-12-11", + "ref:EU:EVSE": "FROTHPOTHR70431;FROTHPOTHR70411;FROTHPOTHR70421;FROTHPOTHR70441;FROTHPOTHR70451;FROTHPOTHR70461", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32347970000, + 49.20864530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP7679784239957780751;FREBNPXJM25YBBQP", + "charging_station:output": "22 kW", + "start_date": "2021-05-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/XJM25YBBQP;La Valette Du Var, Parking Collège Daudet", + "ref": "XJM25YBBQP;399023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98136600000, + 43.13969800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJCC4MS2WXT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "JCC4MS2WXT;32806", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/JCC4MS2WXT;Treffort, Parking Mairie - RD 59" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67131900000, + 44.90721200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-04-15;2023-06-08", + "operator": "IZIVIA", + "network": "SYSTEME U", + "socket:type2_combo:output": "63 kW", + "description": "SUPER U - NOZAY", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR38152;FROTHPOTHR38151;FROTHPOTHR38141;FROTHPOTHR38131;FROTHPOTHR38121;FROTHPOTHR38111;FROTHPOTHR38153", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*381*4*_*_;FR*SOD*S*OTHR*381*3*_*_;FR*SOD*S*OTHR*381*1*_*_;FR*SOD*S*OTHR*381*2*_*_;FR*SOD*S*OTHR*381*5*_*_", + "charging_station:output": "3.68 kW;7.36 kW;63 kW", + "operator:email": "sav@izivia.com", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62915000000, + 47.57221800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LM1P1TM9R1NZ4N", + "ref:EU:EVSE": "FRFR1P937804751423798959", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1195084" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15212200000, + 49.14402400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Varennes-Vauzelles, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP30948", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14726396000, + 47.02483978000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2091353991082643836", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKHZKMRY2H5M4", + "operator": "Freshmile | FR*FR1", + "ref": "892521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.39821500000, + -21.28362600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPLITTORALBMW561001", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:30-12:00, Sa 13:30-19:00", + "amenity": "charging_station", + "start_date": "2022-08-05;2022-08-03", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "BMW - Lorient" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37579100000, + 47.73509300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "761442", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/C3JINN4OUP", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3981714468236105263", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14589200000, + 43.68590300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22195001", + "description": "Pleubian-Place du château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13888100000, + 48.84207900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC49702", + "network": "Mazda - Colmar", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "402343842", + "operator:email": "advenir@zeborne.com", + "start_date": "2020-12-04", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "description": "Mazda - Colmar 22kW AC ", + "ref": "49702", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36647980000, + 48.09563040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE332", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "Clos_Bertiniere", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-05-02", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83921300000, + 49.35777600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MANTES-LA-JOLIE - Butte Verte", + "ref:EU:EVSE": "FRY01E7836100;FRY01E78361001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66644820000, + 48.99651000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint Laurent", + "ref": "FRIOYE440252;FRIOYE440251;FRIOYE440205;FRIOYE440203;FRIOYE440201;FRIOYE440202;FRIOYE440204;FRIOYE440206;FRIOYE440253", + "network": "Saint Laurent", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "ref:EU:EVSE": "FRIOYE440252;FRIOYE440251;FRIOYE440205;FRIOYE440203;FRIOYE440201;FRIOYE440202;FRIOYE440204;FRIOYE440206;FRIOYE440253", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58580732000, + 50.82660708000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2024-05-16;2021-04-14", + "ref:EU:EVSE": "FRS53P53107A;FRS53E53107001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Gorron - Mairie;GORRON - Place De La Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81320400000, + 48.41173400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CALCE - Les Aires", + "ref:EU:EVSE": "FRS66E66030001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75416200000, + 42.75805600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20871950000, + 49.97131030000 + ], + [ + 1.20852280000, + 49.97170380000 + ], + [ + 1.20851250000, + 49.97173180000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Quièvrecourt", + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE009702;FRIENE009701", + "network": "Quièvrecourt", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE009702;FRIENE009701", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42649400000, + 49.72326300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35066001B1", + "operator": "Bouygues (1-OUEST)", + "description": "CHARTRES DE BRETAGNE - 1 impasse de la Conterie (Parking Centre culturel) ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "start_date": "2022-01-01", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69465300000, + 48.04141300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61339A", + "description": "PUTANGES LE LAC - Place de l'Hotel de Ville", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-PUTAN-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24463890000, + 48.76399160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLIBEU92G1H0V7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2841071343329642346", + "ref": "892107", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.66997700000, + 41.99213600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PMERVILLEALOU", + "ref": "Mervillealou;64868", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Merville;Roulez Électrique En Haute-Garonne/Mervillealou", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "start_date": "2017-11-16", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29722000000, + 43.72300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LEVALLOIS PERRET - Rue Voltaire", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92044005", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-08-04;2021-05-18", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28218900000, + 48.89120900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "ref": "FRCG0E000384;FRCG0E000383;FRCG0E000382;FRCG0E000381;FRCG0E000380", + "ref:EU:EVSE": "FRCG0E000384;FRCG0E000383;FRCG0E000382;FRCG0E000381;FRCG0E000380", + "network": "AUREA - 17100 - 1", + "opening_hours": "24/7", + "description": "AUREA - 17100 - 1", + "operator:email": "info@chargeguru.com", + "start_date": "2022-07-06", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65730100000, + 45.75478600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "description": "CAGNES-SUR-MER - PARKING P+R", + "start_date": "2022-07-22;2022-07-21;2022-07-28", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*167*9*_*_;FR*SOD*S*NICE*167*8*_*_;FR*SOD*S*NICE*167*6*_*_;FR*SOD*S*NICE*167*27*_*_;FR*SOD*S*NICE*167*25*_*_;FR*SOD*S*NICE*167*24*_*_;FR*SOD*S*NICE*167*21*_*_;FR*SOD*S*NICE*167*20*_*_;FR*SOD*S*NICE*167*19*_*_;FR*SOD*S*NICE*167*16*_*_;FR*SOD*S*NICE*167*14*_*_;FR*SOD*S*NICE*167*13*_*_;FR*SOD*S*NICE*167*12*_*_;FR*SOD*S*NICE*167*11*_*_;FR*SOD*S*NICE*167*10*_*_;FR*SOD*S*NICE*167*1*_*_;FR*SOD*S*NICE*167*15*_*_;FR*SOD*S*NICE*167*17*_*_;FR*SOD*S*NICE*167*18*_*_;FR*SOD*S*NICE*167*2*_*_;FR*SOD*S*NICE*167*22*_*_;FR*SOD*S*NICE*167*23*_*_;FR*SOD*S*NICE*167*26*_*_;FR*SOD*S*NICE*167*3*_*_;FR*SOD*S*NICE*167*4*_*_;FR*SOD*S*NICE*167*5*_*_;FR*SOD*S*NICE*167*7*_*_", + "ref:EU:EVSE": "FRM06PNICE16771;FRM06PNICE16751;FRM06PNICE16741;FRM06PNICE16731;FRM06PNICE167261;FRM06PNICE167251;FRM06PNICE167241;FRM06PNICE167221;FRM06PNICE167211;FRM06PNICE16721;FRM06PNICE167201;FRM06PNICE167161;FRM06PNICE167151;FRM06PNICE167141;FRM06PNICE167131;FRM06PNICE167121;FRM06PNICE16711;FRM06PNICE167101;FRM06PNICE167111;FRM06PNICE167171;FRM06PNICE167181;FRM06PNICE167191;FRM06PNICE167231;FRM06PNICE167271;FRM06PNICE16761;FRM06PNICE16781;FRM06PNICE16791", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14739443860, + 43.65814724920 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Marmande | Place de la laicité", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "e4681dee-a99c-52fe-8d7b-f644d3aa2ea5", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16861100000, + 44.49861100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*308*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - 6 RUE DU MARECHAL MAUNOURY - ROSNY-SOUS-BOIS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE30812;FRSIGPSIGE30811", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48406600000, + 48.87172200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS264550;FRBMPS264549;FRBMPS264548;FRBMPS264547;FRBMPS264551", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - SAGS -LES ARCS 1800 - CHARVET", + "ref": "264550;264551;264547;264549;264548", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78242670000, + 45.57722060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3403EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CONFLANS SAINT HONORINE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3403EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09086700000, + 49.01295100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "19d8f561-f241-548b-a833-b8542850b6cc", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Brive | Parking du 15 Août" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53069200000, + 45.16046700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Évry-Courcouronnes - Cours Monseigneur Roméro", + "ref": "7239dc27-83d7-58a6-94bf-f3142d15ce1e", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42988900000, + 48.62333300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P26740*MSJ*JACQU1ER", + "description": "RUE PLACE JACQUIER - MONTBOUCHER SUR JABRON", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-07-26", + "ref:EU:EVSE": "FR55CP26740MSJJACQU1ER", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80931900000, + 44.55462300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2935EVCP02;LFR2935EVCP01", + "description": "MARGUERITTES Ader", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2935EVCP02;LFR2935EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43672900000, + 43.86456000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPVDP7250526073763185310", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "network": "Proviridis", + "opening_hours": "24/7", + "ref": "928074", + "socket:type2_combo:output": "300 kW", + "description": "Proviridis/65081e191e0c25d8e0da4407", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44750000000, + 50.33145900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNNUTXBIS2GQ", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/NUTXBIS2GQ", + "capacity": "2", + "amenity": "charging_station", + "ref": "85874", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30895700000, + 43.23886800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP50165A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - Prévithal Hôtel de la Baie", + "ref:EU:EVSE": "FRETIP50165A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58028869413, + 48.85217072941 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "Parking Montpellier Foch Préfecture - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E34172002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87641050000, + 43.61097010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-17", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Brionne", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT278001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71317800000, + 49.20027600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDAWE5R7RWO", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "85754;DAWE5R7RWO", + "start_date": "2020-06-21", + "description": "Chens-Sur-Leman, Ancienne Mairie;Réseau eborn/DAWE5R7RWO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26788000000, + 46.32539000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR49912;FROTHPOTHR49911", + "start_date": "2022-09-21", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*499*1*_*_", + "description": "BRICOMARCHE - PLEINE FOUGERES", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53649700000, + 48.54769900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "159385", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/VHBVTE", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PVHBVTE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.08552000000, + 48.83790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2024-02-22", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "description": "UBI-LHSM-167", + "ref:EU:EVSE": "FRUBIE10069831;FRUBIE10009313", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17677800000, + 49.50744400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1078905437832366501", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/M0LRMJF1GO", + "ref": "466098", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72191400000, + 46.86875500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRTLSE31555038", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-05-03", + "description": "TOULOUSE - Rue Saint Roch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44606000000, + 43.57947000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/B6GTIJNH56", + "ref": "370091", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6173069383862774451", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71039000000, + 47.42890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P3385247540866540370", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/NBKCJUXTTW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10156200000, + 49.32012200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12062001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "CASTELNAU PEGAYROLS - Rd 515 Route De Mont", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93017300000, + 44.12974900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "805269", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWATL9WB3NTKX", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3", + "ref:EU:EVSE": "FRWA3P5879577288674220530", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44253200000, + 44.46386000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49194A;FRS49E49194001", + "charging_station:output": "22 kW", + "start_date": "2021-04-20;2024-04-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Maze - Richou;MAZE - Rue Paul Richou", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27214000000, + 47.45545000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "65036", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70PSTLOUPMAIRIE", + "description": "SIED70/stloupmairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27306000000, + 47.88500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MORBECQUE - place Amaury de la Grange", + "ref:EU:EVSE": "FRH14E59416001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57223000000, + 50.68330700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E214031;FRS37E214032", + "description": "MODULO - JOUE LES TOURS - Rue des Martyrs", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E214031;FRS37E214032", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - JOUE LES TOURS - Rue des Martyrs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66514559000, + 47.35048561000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63236B", + "description": "SIEG63 - ePremium - Mont Dore - Sancy", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81642640000, + 45.54206790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH02E59142001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CERFONTAINE - Place Anthime", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02669400000, + 50.26009000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21828", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PGKWHDP", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "description": "SDEG32/GKWHDP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40685900000, + 43.51440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94017013", + "description": "CHAMPIGNY SUR MARNE - Rue de Bernau", + "start_date": "2023-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51691724080, + 48.81764636918 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*283*2*_*_;FR*SOD*S*NICE*283*1*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE28322;FRM06PNICE28321;FRM06PNICE28312;FRM06PNICE28311", + "operator:email": "sav@izivia.com", + "description": "GILETTE - PARKING DE LA CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16463408393, + 43.85180394122 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Thiviers | Place Jean Paul Sartre", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a83930b3-7615-59cd-a8e1-f7d4bdb7f2b8", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92090100000, + 45.41351300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*411*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 1B RUE DU GENERAL LECLERC - PLACE DE LA MAIRIE - MANDRES-LES-ROSES", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE41111;FRSIGPSIGE41112", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54207800000, + 48.70119200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-05", + "description": "ROUEN - Mail Andrée Putman", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540015", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06677800000, + 49.44600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3228EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "CHALEZEULE Vallieres", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3228EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06120000000, + 47.26423600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "ref": "16b3f192-0903-56e7-83f9-197002d78396", + "description": "MOBIVE | Boussac | Rue du Limousin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21487800000, + 46.34931100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "description": "Cabrières-d'Avignon - Chemin des Ecoliers", + "ref": "591ef05e-b2c7-50b8-9f69-aea7dd0bbd5d", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15065900000, + 43.88962400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FR594E59269001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-03-20", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GOUZEAUCOURT - Zone d'Activité", + "charging_station:output": "50 kW;22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13857793558, + 50.06201549679 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2833EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "LAGORD", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2833EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15409600000, + 46.17828900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-23;2023-10-26", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Intermarché - Rosières-près-Troyes", + "ref:EU:EVSE": "FRPD1PITMRPT", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03917331845, + 48.26410327744 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477831;X3OK9GZBRM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/X3OK9GZBRM;Tigneu Jameyzieu, Place de Mairie", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-02-03", + "ref:EU:EVSE": "FREBNP5487215972596117027;FREBNPX3OK9GZBRM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18670000000, + 45.73356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP86062A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - DASSIN KYRIAD POITIERS", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP86062A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37299043956, + 46.66383615415 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORSAR", + "description": "Cora - Sarreguemines", + "start_date": "2022-12-13", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09341790000, + 49.11682510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Montrejeau", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT312101", + "start_date": "2024-05-27", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56310400000, + 43.08917800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-02-20", + "operator": "E-TOTEM", + "capacity": "2", + "description": "SEMOB FIRMINY CENTRE", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRESEPS42095AC", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42095AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28609200000, + 45.38425800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG4661;FROTHPIZIG46101;FROTHPIZIG2881;FROTHPIZIG2871;FROTHPIZIG2861;FROTHPIZIG2841;FROTHPIZIG2831;FROTHPIZIG2821;FROTHPIZIG2811;FROTHPIZIG28101;FROTHPIZIG11991;FROTHPIZIG11881;FROTHPIZIG11771;FROTHPIZIG11441;FROTHPIZIG11221;FROTHPIZIG111101;FROTHPIZIG11111;FROTHPIZIG11331;FROTHPIZIG11551;FROTHPIZIG11661;FROTHPIZIG28111;FROTHPIZIG28121;FROTHPIZIG2851;FROTHPIZIG2891;FROTHPIZIG4611;FROTHPIZIG4621;FROTHPIZIG4631;FROTHPIZIG4641;FROTHPIZIG4651;FROTHPIZIG4671;FROTHPIZIG4681;FROTHPIZIG4691", + "description": "CNPE BUGEY - UFPI - BORNES EXISTANTES;CNPE BUGEY - SUD 2 UFPI;CNPE BUGEY - CAMPUS UFPI - REMPLACEMENT", + "ref": "FR*SOD*S*IZIG*46*9*_*_;FR*SOD*S*IZIG*46*4*_*_;FR*SOD*S*IZIG*46*1*_*_;FR*SOD*S*IZIG*28*8*_*_;FR*SOD*S*IZIG*28*7*_*_;FR*SOD*S*IZIG*28*6*_*_;FR*SOD*S*IZIG*28*5*_*_;FR*SOD*S*IZIG*28*2*_*_;FR*SOD*S*IZIG*28*12*_*_;FR*SOD*S*IZIG*28*11*_*_;FR*SOD*S*IZIG*11*88*_*_;FR*SOD*S*IZIG*11*77*_*_;FR*SOD*S*IZIG*11*66*_*_;FR*SOD*S*IZIG*11*55*_*_;FR*SOD*S*IZIG*11*22*_*_;FR*SOD*S*IZIG*11*11*_*_;FR*SOD*S*IZIG*11*110*_*_;FR*SOD*S*IZIG*11*33*_*_;FR*SOD*S*IZIG*11*44*_*_;FR*SOD*S*IZIG*11*99*_*_;FR*SOD*S*IZIG*28*10*_*_;FR*SOD*S*IZIG*28*1*_*_;FR*SOD*S*IZIG*28*3*_*_;FR*SOD*S*IZIG*28*4*_*_;FR*SOD*S*IZIG*28*9*_*_;FR*SOD*S*IZIG*46*10*_*_;FR*SOD*S*IZIG*46*2*_*_;FR*SOD*S*IZIG*46*3*_*_;FR*SOD*S*IZIG*46*5*_*_;FR*SOD*S*IZIG*46*6*_*_;FR*SOD*S*IZIG*46*7*_*_;FR*SOD*S*IZIG*46*8*_*_", + "start_date": "2020-06-19;2020-02-18;2020-10-21;2020-06-18", + "charging_station:output": "3.68 kW;7.36 kW;3 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26600200000, + 45.80226500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6830775", + "capacity": "2", + "description": "ALIZE CARWASH ALIZE 1", + "amenity": "charging_station", + "start_date": "2023-11-28", + "network": "ALIZE CARWASH ALIZE 1", + "ref": "FRCPIE6830775", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31875700000, + 48.18380300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6881481556898049391", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "782466", + "description": "Freshmile France/KZMP18EEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35702700000, + 43.14094900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP122054", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B HOTEL BORDEAUX SUD MIOS 3 ÉTOILES", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82738700000, + 44.66032900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/WYRLXZ", + "ref": "230998", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PWYRLXZ", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12960000000, + 48.80350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Tesla Supercharger Langon", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP3019", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25397200000, + 44.54244000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XOGNQADIP5", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "398993", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P895387572640094569" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52150000000, + 47.45880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/E2RRBXWBWF", + "ref": "461694", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P9052613623097708233", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75012600000, + 49.24076500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "ref:EU:EVSE": "FRS13PLQM3GRBNUA", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Maillane, Rue Pierre Damian, parking Noria", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78383600000, + 43.83230300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "58", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;50 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "851892", + "description": "WAAT/FRWATLTGYYL2GH", + "ref:EU:EVSE": "FRWA9P1029714298789694329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341000000, + 43.34128000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-02-17", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AGON COUTAINVILLE - Avenue du Golf", + "ref:EU:EVSE": "FRS50P50003001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59858580000, + 49.04905260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "socket:type2_combo:output": "50 kW", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "description": "LARROQUE - Rue de l'ancien relais de poste", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8113600111;FRS81E8113600121;FRS81E8113600122", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69148597219, + 44.00286235200 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PHALEMPIN OUEST ", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF059003", + "ref:EU:EVSE": "FRHPCPNF059003", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680633" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04595900000, + 50.53170400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48013001", + "network": "Reveo", + "start_date": "2022-02-25", + "description": "BADAROUX - Rue Du Riou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54845400000, + 44.53612600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Quiberon - Port Haliguen", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56PCWX3CAM47B", + "start_date": "2022-06-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10414118510, + 47.48741788366 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROOST-WARENDIN - Rue Pierre Brossolette", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH04E59509001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10271450783, + 50.41904259656 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2924700", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint evarzec-Rue de la Liberté" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02287000000, + 47.93545900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PHDBBKQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "257170", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/HDBBKQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76628000000, + 47.75820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346051782;FRLMSE12346051781;FRLMSE12346051771;FRLMSE12346051772", + "description": "LEIGNE-LES-BOIS-1-1;LEIGNE-LES-BOIS-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B117", + "opening_hours": "24/7", + "start_date": "2018-03-20", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70529100000, + 46.75958300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Metropolis - Express - Aulnay-sous-Bois - Michel Ange;Métropolis/FR*MGP*P93005*F", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-01-23", + "ref:EU:EVSE": "FRMGPP93005F", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref": "484772", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48480900000, + 48.95358300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 75 AVENUE ROGER SALENGRO - CHAVILLE", + "ref:EU:EVSE": "FRSIGPSIGE911;FRSIGPSIGE912", + "start_date": "2020-08-03", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*9*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19342200000, + 48.81499000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Atlante/FRATLZ367_FRGARDEN_000001", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref": "1016256", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP6216131303020411089" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46897200000, + 44.86768600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000081824", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Arnas", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72560500000, + 46.00978700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Saint Castin | Route de Maucor", + "amenity": "charging_station", + "ref": "ddb1ea11-c294-5ebd-b9cd-79196c302271", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30609000000, + 43.37807100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85191001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-13", + "description": "LA ROCHE-SUR-YON - Boulevard De Sully" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43236000000, + 46.68289900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "ANGOULINS", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-22", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSANGLS", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10341000000, + 46.11218000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 11 - MILLIERE A ST MENET", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIZMPMAMP2811;FRIZMPMAMP2812", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "start_date": "2023-08-02", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*MAMP*28*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49907200000, + 43.28872300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-09-17", + "ref:EU:EVSE": "FRPD1PMATCHA", + "capacity": "10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Match Charmes (88)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28994325226, + 48.37020759600 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Thones, Gare routière", + "ref:EU:EVSE": "FREBNPLLTHE8SEY1I3YK", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07", + "ref": "LLTHE8SEY1I3YK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32371713800, + 45.88262991000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref": "701234", + "charging_station:output": "120 kW;22 kW", + "description": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP4245015737579796842", + "capacity": "21", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69207300000, + 43.46052100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Holiday Inn - Strasbourg Sud", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PHLIGPS", + "opening_hours": "24/7", + "start_date": "2023-09-02;2023-09-12", + "capacity": "10", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69757733555, + 48.51036297327 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLVCNJY", + "capacity": "2", + "start_date": "2020-06-08", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LVCNJY;Annecy Seynod, Le Polyèdre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "LVCNJY;85817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10162000000, + 45.88800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP26198A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2024-08-01", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP26198A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Bébé 9 Montélimar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73874789689, + 44.53238461459 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR18831;FROTHPOTHR18811", + "description": "SUPER U - PONT-SAINT-ESPRIT", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*188*3*_*_;FR*SOD*S*OTHR*188*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63896000000, + 44.23969900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*CAPS*18*1*_*_", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS1812;FRCPSPCAPS1811", + "start_date": "2020-02-19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA VILLE-DU-BOIS - MAIRIE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26874300000, + 48.66151000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8105426976337005621", + "operator:email": "roaming@freshmile.com", + "ref": "1155513", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLYE7DX8XSLLTZ", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63812000000, + 44.81730900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2024-09-06", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "CENTER PARCS LANDES DE GASCOGNE - Parking H", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRVIAP123021;FRVIAP123020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04863400000, + 44.29385500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLXIY23892PW38", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7292376639420123763", + "ref": "1119819", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12847700000, + 46.83087100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSUAP83137A", + "ref": "FRSUAP83137A", + "network": "SAS ANGELINA", + "start_date": "2023-11-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "UTILE - TOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97255400000, + 43.12220400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "801696", + "description": "Freshmile France/UWNJODKKG1", + "ref:EU:EVSE": "FRFR1P5188979532902987475", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31521100000, + 46.61455000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDEUXSORRU20125", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "operator:email": "support@driveco.com", + "description": "Hôtel des deux Sorru - Poggiolo", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88710300000, + 42.17327700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHAPELLE ROYALE - Rue Jean Moulin", + "ref": "FRS28E134851", + "ref:EU:EVSE": "FRS28E134851", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - CHAPELLE ROYALE - Rue Jean Moulin", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05266800000, + 48.14336000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "961a816c0a70acf2", + "network": "Domaine de Fompeyre", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "description": "Domaine de Fompeyre", + "ref:EU:EVSE": "FRMAPP000000006943", + "operator:email": "support@electromaps.com", + "start_date": "2022-10-13", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26000000000, + 44.50000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/LLJOB6CCMSVTOP", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P2576864109187594599", + "ref": "933426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43593700000, + 48.41282700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "706214", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLH7A3RPHN", + "ref:EU:EVSE": "FRWATP2087915750877681011", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95602000000, + 43.55074300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2016-10-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GOUVILLE SUR MER - Plage", + "ref:EU:EVSE": "FRS50P50560001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60791970000, + 49.09932550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "SOREZE - Chemin Du Tour Du Parc", + "ref:EU:EVSE": "FRS81E8128800122;FRS81E8128800121;FRS81E8128800111;FRS81E8128800112", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-12-22", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06718993200, + 43.45048904400 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Loudeac", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Loudeac", + "opening_hours": "24/7", + "start_date": "2023-12-20", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE480852;FRIOYE480806;FRIOYE480801;FRIOYE480802;FRIOYE480803;FRIOYE480804;FRIOYE480805;FRIOYE480851;FRIOYE480853", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE480852;FRIOYE480806;FRIOYE480801;FRIOYE480802;FRIOYE480803;FRIOYE480804;FRIOYE480805;FRIOYE480851;FRIOYE480853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75792019000, + 48.19361385000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-10", + "ref:EU:EVSE": "FRS49E49054", + "description": "CANDE - Parking Super U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03152895000, + 47.56904220581 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79528", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PVRGNNE", + "description": "Mouv'Oise/VRGNNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44242000000, + 49.15280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "AUCHY AU BOIS - RD341 Chaussée Brunehaut", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH13E62049001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37064900000, + 50.55779600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30155001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MANDUEL - Parking Du Fort", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47274700000, + 43.82028100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1162797", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P6538696086577846785", + "network": "Mobilité électrique 56", + "charging_station:output": "22 kW;54 kW", + "description": "Mobilité électrique 56/LLXUCFR511WXUG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07582500000, + 47.58383200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346396451;FRLMSE12346396461", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-01-28", + "operator": "SOREGIES MOBILITES", + "description": "NAINTRE PAUL ELUARD-1-2;NAINTRE PAUL ELUARD-1-1", + "operator:email": "irve@soregies.fr", + "ref": "B076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48820000000, + 46.76121900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP94069B", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2022-01-12", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45965270000, + 48.81421510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-08", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - PLACE FRANCOIS MITTERAND - LIVRY-GARGAN", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*117*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE11711;FRSIGPSIGE11712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53688400000, + 48.91907300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-08-23", + "network": "CPO Alizé Liberté Public", + "description": "MAGNY LES HAMEAUX - Rue Haroun Tazieff", + "ref:EU:EVSE": "FRBE1E78356001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08252100000, + 48.72441000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89397422", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Thaon Les Vosges - Mairie d'Oncourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37832200000, + 48.25072900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-05-23", + "description": "MARTHON - PLACE DU PIGEONNIER;MOBIVE | Marthon | Place du Pigeonnier", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "ref": "FR*SOD*S*MB16*22*1*_*_;c74b2808-39ec-546f-8fe4-66a385aa0384", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "Non concerné;FRS16PMB162211;FRS16PMB162212", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44389600000, + 45.61180100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE68LTBA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-04-19", + "description": "Cité de l'Habitat - LUTTERBACH", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26621900000, + 47.76159400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "CRECHES S/SAONE", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSCRHSA", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79206500000, + 46.25295500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4099EVCP01;LFR4099EVCP02", + "amenity": "charging_station", + "ref": "LFR4099EVCP01;LFR4099EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "VOISINS TILLEULS;VOISINS LE BRETONNEUX", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05848000000, + 48.75627800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONDONVILLE - Rue De La Liberté", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31351001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28667200000, + 43.67109600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/BUXIERE;Buxières-les-Mines, station essence", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPBUXIERE", + "ref": "231517;BUXIERE", + "start_date": "2017-05-19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96364000000, + 46.46800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/WH4MBGWMTY", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8248986360255208580", + "ref": "454173", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42190000000, + 46.80570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "PARIS - Sevres Babylone", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP07E751070025;FRP07E751070024;FRP07E751070023;FRP07E751070022;FRP07E75107002;FRP07E751070021", + "capacity": "46", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;7 kW", + "start_date": "2024-03-25;2021-11-03;2022-12-17;2020-06-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32481600000, + 48.85166900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPNF37UCDDPC", + "ref": "NF37UCDDPC", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Magland, Parking de la Bézière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62105760000, + 46.02002080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "ref:EU:EVSE": "FREFLP5286001304752333416", + "network": "Road", + "amenity": "charging_station", + "description": "Road/66c5b73d3e1d1c001c894543", + "capacity": "3", + "opening_hours": "Fr,We,Su,Tu,Mo,Sa,Th 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref": "1172856", + "charging_station:output": "40 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41396200000, + 49.18844600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E51454001", + "description": "Parking gare de Reims Clairmarais P1 - EFFIA", + "start_date": "2024-10-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02394250000, + 49.26072230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT AGDE", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT AGDE", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6609465", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6609465", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49521600000, + 43.30952300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31981;MDEFSB", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPMDEFSB", + "start_date": "2020-06-12", + "description": "Vassieux-En-Vercors, Place des Martyrs;Réseau eborn/MDEFSB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37037000000, + 44.89550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA2P1562513390924379571", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570514", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "1182090", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36663300000, + 43.83031300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YTLUCMDCFK", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971981", + "ref:EU:EVSE": "FRFR1P4996750624488731751", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89318400000, + 48.99764300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRTCBP00530", + "network": "ACCOR Hotels", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref": "FRTCBP00530", + "opening_hours": "24/7", + "description": "Ibis Styles Compiegne", + "start_date": "2021-12-06", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "500152780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77542400000, + 49.40222400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Tu,Th,Fr,Mo,We 18:00-23:45,Tu,Mo,We,Th,Fr 00:00-07:00,Su,Sa 00:00-23:45", + "operator:email": "roaming@freshmile.com", + "ref": "694304", + "capacity": "2", + "description": "Freshmile France/QVV3WJXNY7", + "amenity": "charging_station", + "network": "Freshmile France", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P822550554597244178", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38828500000, + 47.10720300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-19", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN133001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Nissan -Salon de Provence" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09588500000, + 43.63560700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2904600", + "capacity": "4", + "description": "Douarnenez - Stade Aquatique", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31788200000, + 48.08242400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "370250", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/SOLRFLNSDQ", + "ref:EU:EVSE": "FRS10P7350677259042503077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73005900000, + 48.51397900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "842694", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P6231130680846936182", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/CIR_12043036440001", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68909400000, + 45.86899400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "ref": "481290", + "description": "Régie Services Energie/FR*RSE*P01389*A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRRSEP01389A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89273500000, + 46.07277800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/cayeuxargou", + "ref:EU:EVSE": "FRS80PCAYEUXARGOU", + "ref": "48997", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56401000000, + 50.21500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MC DONALDS - LYON TASSIN LA DEMIE LUNE", + "ref:EU:EVSE": "FRIZFPFAST18811;FRIZFPFAST18812;FRIZFPFAST18813", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*188*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-04", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76832470000, + 45.76500700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Chateaubriant - Duguesclin;CHATEAUBRIANT - Rue Duguesclin", + "amenity": "charging_station", + "start_date": "2021-04-12;2024-04-29;2024-04-22", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44036C;FRS44E0440017;FRS44E44036003", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38076600000, + 47.72065200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "start_date": "2023-05-11;2016-02-23", + "network": "Ecocharge77", + "description": "Annet-sur-Marne;ANNET-SUR-MARNE - Allée De Louche", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77005001;FRS77P77005A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH60Q14BJPZFWR9V3SJP", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71857500000, + 48.92484300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "FSM01 - CENTRE-BOURG", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "ref": "FR*SOD*S*LYON*95*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON9511;FRGLYPLYON9512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85429300000, + 45.84463500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E215818;FRS37E215819", + "ref": "FRS37E215818;FRS37E215819", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - LE PETIT PRESSIGNY - Pl. de l'église", + "description": "MODULO - LE PETIT PRESSIGNY - Pl. de l'église", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-09-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91896000000, + 46.92162100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PJRXYXK", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "242236", + "description": "Mobilité électrique 56/JRXYXK", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00026000000, + 47.84820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2022-06-01", + "description": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "capacity": "2", + "amenity": "charging_station", + "network": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRG10P45102A", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P45102A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78634300000, + 47.95259800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*151*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - CHAMBRAY LES TOURS", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPAUCH15112;FROTHPAUCH15111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69967680000, + 47.33905520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-01-11", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*236*1*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23612;FRSIGPSIGE23611", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "SIGEIF - 2 BOULEVARD DU LEVANT - NOISY-LE-GRAND", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54920100000, + 48.83945200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref": "21800", + "ref:EU:EVSE": "FRCN1PNVGNXQ", + "operator": "Freshmile | FR*CN1", + "description": "Move In Pure/NVGNXQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87755000000, + 44.96070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P2238327665136668586", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446768", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "capacity": "10", + "description": "Leclerc/NCNAZHKRLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586800000, + 48.79479300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Saint Jean d'Angély | Av. Aristide Briand", + "ref": "3ff7fd28-1baf-56c2-8733-ea676885c85c", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51021100000, + 45.94054700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE91CABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "Rue du Vivier - CHAMPCUEIL", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-02", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44553700000, + 48.51666000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "ref:EU:EVSE": "FRABAPW1O0NOVXTC", + "start_date": "2021-01-01", + "description": "Maussane-Les-Alpilles, Avenue Des Alpilles", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80518900000, + 43.72259200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3676EVCP02;LFR3676EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "CHATEAUNEUF LES MARTIGUES Fenêtre", + "ref:EU:EVSE": "LFR3676EVCP02;LFR3676EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14549500000, + 43.39329100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-07;2021-04-08", + "ref:EU:EVSE": "FRM38E38185031;FRM38E38185018", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GRENOBLE - Rue Thiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71967400000, + 45.18509000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "85907;S1UPSAI2WA", + "description": "Réseau eborn/S1UPSAI2WA;Saint-Cyr-Sur-Mer, Parking La Madrague", + "ref:EU:EVSE": "FREBNS1UPSAI2WA;FREBNPS1UPSAI2WA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69453200000, + 43.16697300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8961228097953944499;FRFR1P3204263840506885734", + "operator:email": "roaming@freshmile.com", + "capacity": "6;8", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLL549JMMNDG8V;Freshmile France/S1JONUHSPU", + "ref": "801672;896625", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10585800000, + 49.10512200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "hotelF1 - Chambéry", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PACCCLM", + "start_date": "2023-11-20", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88969352527, + 45.59498382498 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPEOEVKW231A", + "capacity": "2", + "description": "Embrun, Esplanade de la Résistance;Réseau eborn/EOEVKW231A", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30389;EOEVKW231A", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49268300000, + 44.56223200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Sannois - Hôtel Kyriad", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPSANHK", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24215400000, + 48.98278700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E92073004", + "description": "Parking Suresnes Jules Ferry - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22502470000, + 48.86945750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "ref": "FRCPIE66546854", + "capacity": "8", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE66546854", + "charging_station:output": "22 kW", + "operator:email": "support.eu@chargepoint.com", + "description": "HMV / SAINT DIE 3", + "network": "HOPITAUX MASSIF DES VOSGES", + "owner:ref:FR:SIREN": "200096824", + "operator": "ChargePoint" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96451397899, + 48.28996421016 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "ISRXX8UFA3", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "FRECHPISRXX8UFA3", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "description": "Jouy aux arches , Actisud Saint Jean" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10147488000, + 49.07885700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1914", + "opening_hours": "24/7", + "ref": "FR*V75*PPX19*14", + "description": "Paris | Rue Jules Romains 1", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37829850000, + 48.87274070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PMSPQBQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "213059", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MSPQBQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74747000000, + 49.54060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0209", + "opening_hours": "24/7", + "ref": "FR*V75*PPX02*09", + "start_date": "2022-08-19", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Réaumur 116", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34525000000, + 48.86781000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7517714298376000626", + "charging_station:output": "22 kW", + "ref": "346472", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RSX0LEKBQ0", + "opening_hours": "Mo,Fr,Th,Tu,We 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079000000, + 48.79630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Citroën - Garage Nation - Calais", + "start_date": "2020-12-14", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPGARAGENATION621001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87118800000, + 50.93966700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Quessoy-Place de l'église (parking mairie)", + "ref:EU:EVSE": "FRS22E22258001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.65775100000, + 48.42165000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-30", + "ref:EU:EVSE": "FRS11E11267001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ORNAISONS - Avenue De Saint-Marc", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83332100000, + 43.18116300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "342583796", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZTLE22AC143107;FRZTLE22AC143108", + "opening_hours": "Mo-Fr 07:45-18:00,Sat 09:00-18:00", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2022-07-25", + "network": "LES GARAGES CHAIGNEAU - CHAURAY;LES GARAGES CHAIGNEAU - CHAURAY ", + "ref": "143107;143108", + "operator": "ZEBORNE", + "description": "Toyota - Chauray - 22kW AC ;Toyota - Chauray - 22kW AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38129210000, + 46.34063810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32035", + "description": "SDEA 10/NLRCCHATCF", + "ref:EU:EVSE": "FRS10P7502753274796201710" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87269500000, + 48.27859300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64697", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PAIRAINES53E", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/airaines53e", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94277000000, + 49.96560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-14", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*66*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST6612;FRIZFPFAST6611;FRIZFPFAST6613", + "owner:ref:FR:SIREN": "951478437", + "description": "IZIVIA FAST - MCDONALDS - SAINT-QUENTIN CORA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29127306496, + 49.86387403676 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18;2021-04-09", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44099001;FRS44P44099A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "MOISDON-LA-RIVIERE - Rue Du Prieuré;OuestCharge - Diva Sp - Moisdon-La-Riviere - Prieure" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37212200000, + 47.62126300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77266002", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MACHAULT - Cimetière", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83592320000, + 48.45630500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "opening_hours": "Su,We,Fr,Th,Tu,Sa,Mo 06:00-21:00", + "amenity": "charging_station", + "description": "GreenYellow Shift Mobility/85", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "ref:EU:EVSE": "FRGYMP6141201293594534990", + "operator": "GreenYellow | FR*GYM", + "ref": "1091040", + "charging_station:output": "180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78042600000, + 45.18629100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221267;FRS37E221264", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - CIGOGNE - Pl. de la mairie", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221267;FRS37E221264", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CIGOGNE - Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93017391000, + 47.26024720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - COMMERCY - Rue du cardinal de Retz", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - COMMERCY - Rue du cardinal de Retz", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS55E66193;FRS55E66194", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66193;FRS55E66194" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59182400000, + 48.75845700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY402 - RUE BONY", + "ref:EU:EVSE": "FRGLYPLYON11541;FRGLYPLYON11521;FRGLYPLYON11511;FRGLYPLYON11531", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "ref": "FR*SOD*S*LYON*115*4*_*_;FR*SOD*S*LYON*115*3*_*_;FR*SOD*S*LYON*115*2*_*_;FR*SOD*S*LYON*115*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81980100000, + 45.77542600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "network": "PYRENEES AUTOMOBILES - RENAULT LANNEMEZAN", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "ref": "30bd4c1a-76af-4b20-bbd9-4e4a3f0eb275", + "capacity": "1", + "description": "PYRENEES AUTOMOBILES - RENAULT LANNEMEZAN", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMBZEWTXYU", + "start_date": "2024-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38896277811, + 43.12302056835 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPDARTYLIMONEST697601", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2017-11-14", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Darty - Limonest", + "operator": "DRIVECO", + "opening_hours": "Mo 09:30-19:45, Tu 09:30-19:45, We 09:30-19:45, Th 09:30-19:45, Fr 09:30-19:45, Sa 09:30-19:45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77949000000, + 45.80659900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6558885", + "ref:EU:EVSE": "FRCPIE6558885", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U COUST BORNE CLIENT", + "network": "SUPER U COUST BORNE CLIENT", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14678100000, + 43.86718900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "description": "Leclerc/ACCWKSNKDG", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P6822178664850715354", + "ref": "487254" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815200000, + 48.75110600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Sainte Eulalie | Parking Médiathèque", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "91a7c263-8ae0-570f-82e8-fa9d3190fe6b", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47374100000, + 44.90489700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Michel-sur-Orge - Rue Berlioz", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "71652560-fdcc-5fc4-86e4-9ea3ebc9d855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31968700000, + 48.63625900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego NISSAN Saint-Lo", + "ref": "FRALLEGO0000031", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO0000031", + "description": "Allego NISSAN Saint-Lo", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04239300000, + 49.11645000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR2554EVCP01;LFR2554EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2554EVCP01;LFR2554EVCP02", + "description": "ST PIERRE DU MONT Kennedy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49134600000, + 43.87251700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE731;FRM06PNICE732", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - RAIBERTI RP", + "start_date": "2021-05-21", + "ref": "FR*SOD*S*NICE*7*3*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26326700000, + 43.71051700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "PUGET SUR ARGENS - PARKING DE PROVENCE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ20611;FRA16PWIIZ20612", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*206*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68687200000, + 43.45309600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "491964", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P78824543877872821", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/CPW4BJOEDV", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Fr,Tu,Mo,Th,We,Sa 08:00-17:45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05294200000, + 50.55143300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-05-05;2024-02-09", + "operator": "Power Dot France", + "description": "Mon Brico - Sauzé-Vaussais", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PMBCSVS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12050615456, + 46.13350826447 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DBDELKZ02M;64016", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/DBDELKZ02M;Voiron, Avenue Jules Ravat", + "ref:EU:EVSE": "FREBNPDBDELKZ02M", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58807700000, + 45.36822600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/ACCCA567-0DDF-4A1C-9CC5-9ED6FDD54F10", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP1565372986843753802", + "operator:email": "support@evzen.com", + "ref": "1177539", + "charging_station:output": "180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00738300000, + 47.66571300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "CHÂLONS - GHV", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2020-07-01;2020-07-02", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E51108001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36091400000, + 48.95778700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP4936135913040045563;FREBNPCXZL1VHZBY", + "description": "Réseau eborn/CXZL1VHZBY;Hyères, Avenue Maréchal Leclerc", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "529913;CXZL1VHZBY", + "start_date": "2022-06-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11337700000, + 43.12027600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "3.7 kW;22 kW;50 kW;80 kW", + "network": "Road", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP8409675451724857888", + "operator:email": "roaming-dev@road.io", + "opening_hours": "We,Fr,Th,Tu,Sa,Su,Mo 08:00-18:00", + "socket:type2_combo:output": "50 kW;80 kW;22 kW", + "operator": "Road | FR*EFL", + "ref": "1069782", + "description": "Road/662a108e42984d001b54016e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09462700000, + 48.93328600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP121018", + "description": "ENGIE Vianeo - Hôtel Campanile Nevers", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-03-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15035100000, + 47.01554200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892002", + "ref:EU:EVSE": "FRFR1P317518760884620419", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/CYYZBL5FJO", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15871000000, + 45.65003500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Saint-Maur 36", + "start_date": "2021-06-18", + "ref": "FR*V75*PPX11*10", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1110", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38092770000, + 48.86153460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "574517", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1493468115746341262", + "charging_station:output": "60 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile/FI90Y2MKQN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48296900000, + 45.67217500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "ref:EU:EVSE": "FRSSDPPERICAUD870001", + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Limoges", + "start_date": "2021-10-22;2022-09-01", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28781600000, + 45.81839100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PBOURNEVILLETOURISME", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900099", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62274200000, + 49.39088100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRS21P21231A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "description": "SICECO/FR*S21*P21231*A", + "network": "SICECO", + "opening_hours": "24/7", + "ref": "180365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05505700000, + 47.35246000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE PECQ - Parc Corbière", + "ref:EU:EVSE": "FRY03E78481004", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10809200000, + 48.90637800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*9*4*_*_;FR*SOD*S*QPRK*9*2*_*_;FR*SOD*S*QPRK*9*1*_*_;FR*SOD*S*QPRK*9*3*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - 75041 PARIS - CONSERVATOIRE", + "ref:EU:EVSE": "FRQPKPQPRK931;FRQPKPQPRK921;FRQPKPQPRK911;FRQPKPQPRK941", + "opening_hours": "24/7", + "network": "QPARK", + "start_date": "2022-06-14", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38895500000, + 48.88867200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "756807", + "network": "WAAT", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP5383221399394120795", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLTHE0HWKF", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23380000000, + 48.82060600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2020-10-29", + "capacity": "5", + "ref:EU:EVSE": "FRIONE416800", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Mayenne", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE416800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03713200000, + 47.50438400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E127637;FRS51E127638", + "capacity": "2", + "network": "MODULO - BUSSY LETTREE - Aéroport Paris Vatry", + "amenity": "charging_station", + "start_date": "2023-09-05", + "description": "MODULO - BUSSY LETTREE - Aéroport Paris Vatry", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS51E127637;FRS51E127638", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19001400000, + 48.78078300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH611S01G19MY7TRAAAD", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "start_date": "2016-04-05", + "ref:EU:EVSE": "FRS77P77490A", + "operator": "Bouygues Energies et Services", + "description": "Vendrest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09275100000, + 49.04636800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF080266", + "description": "RELAIS MONTPELLIER FABREGUES NORD", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080266", + "owner:ref:FR:SIREN": "531680763;531680764;531680762;531680757;531680756;531680759;531680760;531680761;531680758", + "network": "TotalEnergies Charge Rapide", + "capacity": "9", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2023-03-20;2022-12-28;2023-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79541000000, + 43.54752000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - CELLETTES - Rue de l'Angevinière", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E2959;FRS41E2958", + "description": "MODULO - CELLETTES - Rue de l'Angevinière", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E2959;FRS41E2958", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38802200000, + 47.52473000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-07-13", + "ref:EU:EVSE": "FRS56PTTMTLH", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Saint-philibert - Place de la Mairie", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00035100000, + 47.58673200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QQHZ79XAXR", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "492042", + "ref:EU:EVSE": "FRFR1P1142148147459641420", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13202800000, + 43.71686400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P92049*C", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92049C", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "419970", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739500000, + 48.81253100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Opel - Epernay", + "capacity": "4", + "start_date": "2020-01-28", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 13:45-19:00, Tu 08:00-12:00, Tu 13:45-19:00, We 08:00-12:00, We 13:45-19:00, Th 08:00-12:00, Th 13:45-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPTENEDOROPEL512001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95470200000, + 49.05392500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "start_date": "2021-07-10", + "network": "SUN DEVELOPPEMENT", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68305158615, + 48.59249496460 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/STGP4YXUIC", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "505788", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2605287827005708352" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22248300000, + 43.07297100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Saint Aigulin | Rue Gambetta (Place Jules Ferry)", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "8e85bfff-6a54-53e5-8ed7-13aa23c57425", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01324500000, + 45.15740800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "ref:EU:EVSE": "FRSE1PSE03DABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "Dompierre sur Besbre marché couvert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68041600000, + 46.52067500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2024-06-19", + "description": "GOSB - Bassin Orly - Parking Ouvert", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E94054001", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41741000000, + 48.75128000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "892707", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P6250215523954714403", + "description": "Leclerc/LLJR8Z3PDHQEH0", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99635700000, + 44.36058600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Gignac-la-Nerthe, Parking laure", + "ref:EU:EVSE": "FRM13POPBQD3XA2R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22308400000, + 43.38688800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDEY/PGCTXOYGXE", + "amenity": "charging_station", + "ref": "402584", + "ref:EU:EVSE": "FRS89P6811911076481690277", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51373300000, + 48.01951400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ5612;FRA16PWIIZ5611", + "start_date": "2018-06-06", + "description": "VALLAURIS PARKING ALLINEI", + "ref": "FR*SOD*S*WIIZ*56*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07768300000, + 43.57164400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PZCPHMP", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/ZCPHMP", + "operator": "Freshmile | FR*FR1", + "ref": "257128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17993000000, + 48.46690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "120 kW;60 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSENCDA", + "start_date": "2022-12-22;2022-12-21", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Sogemat Energie - Station Cournon-d'Auvergne", + "operator": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW;60 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17689120000, + 45.74476270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP2441155925762107145;FREBNPAJT1WFBIB4", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "346622;AJT1WFBIB4", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "description": "Réseau eborn/AJT1WFBIB4;Blesle, Place Saint-Pierre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17263000000, + 45.31767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP3756163612921310905", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "description": "CARF - Bornes Publiques/25F18F8B-FED0-497F-9D7D-71FEF99B4A70", + "operator:email": "support@evzen.com", + "ref": "674639" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47375200000, + 43.75802700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "3.68 kW;24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR66722;FROTHPOTHR66711;FROTHPOTHR66712;FROTHPOTHR66721", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "description": "FFF - LIGUE DE MEDITERRANEE", + "start_date": "2023-08-29;2023-07-18", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*667*2*_*_;FR*SOD*S*OTHR*667*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34402700000, + 43.49696100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "JT2OHSXSCS", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPJT2OHSXSCS", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Annemasse, Rue du Sentier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24180010000, + 46.18727040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Etrembières, Parking RD1206;Réseau eborn/OWMMX48HPN", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPOWMMX48HPN", + "ref": "32983;OWMMX48HPN", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22944000000, + 46.18010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING LE LITTORAL - TALMONT-SAINT-HILAIRE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR35512;FROTHPOTHR35511", + "ref": "FR*SOD*S*OTHR*355*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-03-22", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70240300000, + 46.45177200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "472230", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3400972770418370640", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MTQXSIJ3RN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74145800000, + 48.63558100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW;130 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "charging_station:output": "130 kW;250 kW", + "description": "Tesla Supercharger Aix-en-Provence - Val de l'Arc", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP3017", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46643300000, + 43.51193800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "735120", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/BVSTOGZT0R", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5030163630936524541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68245800000, + 48.55583200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS215501", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "start_date": "2023-08-25", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Volkswagen - ByMyCar - Beaune", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86717300000, + 47.06336000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PSTOUENTILLEULMAIRIE", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900066", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95170400000, + 49.29360200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-06-05", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE MOUSTOIR - Au Bourg ", + "ref:EU:EVSE": "FRS22E22157001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.50663900000, + 48.26680200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "378536593", + "network": "ITM RIEZ - DALILAS", + "ref:EU:EVSE": "FRZIME22AC77767;FRZIME22AC77768", + "ref": "77767;77768", + "start_date": "2021-09-09", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Intermarché - Riez - 22kW AC ", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:00-19:00,Sat 08:30-19:00", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09011550000, + 43.82246200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "FPB_Nevers", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "ref:EU:EVSE": "FRROSE280", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12314700000, + 46.99473300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ECQUEVILLY - Place De Fresnes", + "ref:EU:EVSE": "FRY01E78206001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92258200000, + 48.94825300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Loire", + "description": "Loire", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "ref": "FRIOYE421653;FRIOYE421652;FRIOYE421651;FRIOYE421604;FRIOYE421601;FRIOYE421602;FRIOYE421603", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE421653;FRIOYE421652;FRIOYE421651;FRIOYE421604;FRIOYE421601;FRIOYE421602;FRIOYE421603" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22631313000, + 45.85054134000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "start_date": "2021-03-30;2024-05-15", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53P53007A;FRS53E53007001", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Argentre - Marzelles;ARGENTRE - Chemin Des Marzelles", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64333800000, + 48.08501800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS65E65460003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "VIC BIGORRE - Place de Verdun", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05568000000, + 43.38329000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Mirecourt", + "start_date": "2023-09-04", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE007101;FRIENE007102", + "ref": "FRIENE007101;FRIENE007102", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Mirecourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14748259000, + 48.30307080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34344009", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "charging_station:output": "24 kW;22 kW", + "description": "LA GRANDE MOTTE - Avenue du Golf", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09983862651, + 43.56853631568 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61278A", + "charging_station:output": "22 kW", + "description": "PUTANGES-LE-LAC - Lac de Rabodanges", + "start_date": "2023-06-22", + "ref": "SE61-PULL-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28674817574, + 48.78603848133 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "LIDL;Freshmile France", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR2956EVCP02;FRFR1P5397033173766406413;LFR2956EVCP04;LFR2956EVCP03;LFR2956EVCP01", + "amenity": "charging_station", + "ref": "LFR2956EVCP02;LFR2956EVCP03;LFR2956EVCP04;597789;LFR2956EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "socket:type2_combo:output": "120 kW", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "description": "ROQUEBRUNE SUR ARGENS;Freshmile France/EJRFCC8V5U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63282900000, + 43.46273800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PAJUWUG", + "ref": "AJUWUG", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "description": "Bouloc, République", + "operator": "Freshmile SAS", + "start_date": "2018-03-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40547000000, + 43.77950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "description": "ASNIERES-SUR-SEINE - Rue de la promenade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92004024", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28642940000, + 48.91257820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hotel Domaine La Pierre Blanche", + "ref": "FRCG0E000209;FRCG0E000206;FRCG0E000205;FRCG0E000207;FRCG0E000208", + "capacity": "5", + "network": "Hotel Domaine La Pierre Blanche", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000209;FRCG0E000206;FRCG0E000205;FRCG0E000207;FRCG0E000208", + "charging_station:output": "11 kW;22 kW;2 kW", + "operator:email": "info@chargeguru.com", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98592200000, + 43.76937500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - ARENES DE CIMIEZ", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*134*1*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2021-09-21", + "ref:EU:EVSE": "FRM06PNICE13411;FRM06PNICE13412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27781800000, + 43.72082900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Vieux Boucau | Parking Plage | Avenue Bremontier", + "opening_hours": "24/7", + "ref": "d41eb020-7d27-5fde-9c60-fc8b6d51d67c", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41011300000, + 43.78829500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE59DABA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-02-29", + "socket:type2_combo:output": "24 kW", + "description": "Carrosserie KOWALCZUCK", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07046600000, + 50.38249000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS226383;FRBMPS226384;FRBMPS226382", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Lodève", + "operator:email": "exploitation@bump-charge.com", + "ref": "226383;226384;226382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32281360000, + 43.72594430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4146EVCP01", + "description": "MELUN - Patton", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4146EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64943100000, + 48.54733500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Sarran | Parking Musée du Président Jacques Chirac", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2baaa554-f55f-516c-9bf2-30a60496f99f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94115800000, + 45.40587300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "fe5f37dd-70c8-5f22-809e-0e01f4d0b78c", + "description": "Montgeron - Parking Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46344300000, + 48.70947400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FOLIE BOCACE - AVIGNON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P84000*AVG*FOLIE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2020-10-02", + "ref:EU:EVSE": "FR55CP84000AVGFOLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82815500000, + 43.94720600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "CALLIAN - Vigne", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3969EVCP01;LFR3969EVCP02;LFR3969EVCP03;LFR3969EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3969EVCP01;LFR3969EVCP02;LFR3969EVCP03;LFR3969EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75511900000, + 43.60515100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PVLYNCE", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "15", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-11-20;2023-12-04", + "description": "Nice Valley - Nice", + "socket:type2_combo:output": "24 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19480218595, + 43.70436326179 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/U309RLZWQ4;SOLLIES-PONT, Parking BELTRAME", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPU309RLZWQ4;FREBNP8539992452181209886", + "ref": "U309RLZWQ4;741117" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03682600000, + 43.19124200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4593407081161159232", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/OLRZ2QBZLR", + "operator": "Freshmile | FR*FR1", + "ref": "749358" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94351400000, + 45.51721800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRP01E16015001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare d'Angoulême P1 - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16597200000, + 45.65423500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Manosque", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "4993efe9-d017-5180-a72e-d0fc71683a26", + "opening_hours": "24/7", + "operator": "124__Cegelec Alpes Provence Infras", + "charging_station:output": "7.328 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79874200000, + 43.82776700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNDXBHRKZYBD;FREBNPDXBHRKZYBD", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/DXBHRKZYBD;Brignoles, 3 Rue Bruneck Brunico", + "ref": "85862;DXBHRKZYBD", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07394300000, + 43.40811100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR47511;FROTHPOTHR47521", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-31", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*475*1*_*_;FR*SOD*S*OTHR*475*2*_*_", + "network": "GROUPE EDENIS", + "description": "GROUPE EDENIS - BLAGNAC", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39574800000, + 43.63078100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Freshmile France/Y3VTPZSUY6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529823", + "ref:EU:EVSE": "FRFR1P7955273656681687755", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14711700000, + 43.04394700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Place Léon Carlier - 23 Boulevard Amiral Mouchez", + "ref:EU:EVSE": "FRUBIE10083012;FRUBIE10063376;FRUBIE10026273;FRUBIE10021422;FRUBIE10046901;FRUBIE10063985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13112300000, + 49.48419200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LAJGBRQMTY", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "477660", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3332192461710153471" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232100000, + 45.81269700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555012", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TOULOUSE - Place de la Loire", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-08-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41034000000, + 43.58326000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6723107477522027597", + "charging_station:output": "22 kW", + "ref": "972029", + "description": "Freshmile France/LLJWX6MFX20G9C", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Tu,Fr,Th,We,Mo 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27449400000, + 47.83938800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P717130677120257706", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "456810", + "description": "MobiSDEC/DATGNHU3DP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45293200000, + 49.27450900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLENEUVE-MINERVOIS - Parking Salle Des Fetes", + "ref:EU:EVSE": "FRS11E11433001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46408300000, + 43.31540800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-09-15", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78152001", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "CHAVENAY - Vallon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99260000000, + 48.85365000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "44__CCCPH", + "description": "CCCPH - Trieux", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "25a8471a-13d1-5932-9fa0-fa641f1b3bd5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93084300000, + 49.32432200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/PATTYH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70P6062431503365550750", + "ref": "347168", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12880000000, + 47.62940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59043002", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BAILLEUL - Rue du collège" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73264520000, + 50.74009830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35288006B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ST MALO - 6 rue de la montre (Parking des bas sablons) ", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02272200000, + 48.63596000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref": "518321", + "ref:EU:EVSE": "FRS63P63116A", + "opening_hours": "24/7", + "charging_station:output": "43 kW;50 kW;25 kW;22 kW", + "socket:type2_combo:output": "25 kW;50 kW", + "description": "SIEG 63/FR*S63*P63116*A;SIEG63 - ePremium - Combronde - Europe", + "start_date": "2023-01-18", + "capacity": "1;6", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08753400000, + 45.99325800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/IYRXKDVGXP", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1857376678931641336", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "698924", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07420500000, + 48.73572100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "21819", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/ANWJWC", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32PANWJWC", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92967400000, + 43.49060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARCUEIL - Avenue François Vincent Raspail", + "start_date": "2021-09-30;2021-06-30;2021-06-29", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94003003", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33715600000, + 48.80538400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE25112;FRM06PNICE25111;FRM06PNICE25121;FRM06PNICE25122", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-08-24;2023-08-31", + "ref": "FR*SOD*S*NICE*251*2*_*_;FR*SOD*S*NICE*251*1*_*_", + "operator:email": "sav@izivia.com", + "description": "NICE - PARKING VERDI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25813036366, + 43.69957316301 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "ff9c7c69-00fc-5046-872b-5531c1a04929", + "description": "MOBIVE | Le Mas d'Agenais | Place des Fosses de la Ville", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21830200000, + 44.40938900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - PARKING CHATAIGNERAIE - SAINT-LEU-LA-FORET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE38911;FRSIGPSIGE38912", + "ref": "FR*SOD*S*SIGE*389*1*_*_", + "start_date": "2023-03-09", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25210000000, + 49.02360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "NOTRE DAME DE BONDEVILLE - Place Sadi Carnot", + "ref:EU:EVSE": "FRC01E76474001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-04-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04561500000, + 49.48988600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTLUCON Guesde", + "ref:EU:EVSE": "LFR3232EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3232EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57514900000, + 46.33832300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "a328b781-6d80-5e88-ba71-e7def21a3035", + "description": "MOBIVE | Néré | Av. du Poitou", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23590000000, + 45.97506200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64898", + "operator:email": "roaming@freshmile.com", + "description": "SDE82/MMQAZA", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PMMQAZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35363000000, + 44.01970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "owner:ref:FR:SIREN": "832489801", + "description": "AVENUE LEON BLUM - LE PLESSIS-ROBINSON", + "ref": "FR*55C*P92350*LPR*BLUM", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92350LPRBLUM", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25567300000, + 48.77578700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2381EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2381EVCP01", + "charging_station:output": "22 kW", + "description": "LUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13591800000, + 46.45953200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMMTB", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Intermarché - Montauban", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38071900000, + 44.02164500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FREBNPY4UAJNWN4K;FREBNP8235669008967699309", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Afuzy-La Garde, Rue Marcelin Berthelot ;Réseau eborn/Y4UAJNWN4K", + "ref": "346982;Y4UAJNWN4K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04060000000, + 43.14880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP77379A", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP77379A", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-08-08", + "description": "e-Totem - Bricomarché Provins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31048124549, + 48.55931885471 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;200 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;200 kW;100 kW;22 kW", + "start_date": "2023-09-26;2023-09-27;2023-11-15", + "capacity": "20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCORDIJ", + "description": "Cora - Dijon", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00246890940, + 47.27031096919 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Alençon Papin", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT610001", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09742900000, + 48.43503100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2024-03-01", + "description": "Pessac - Hôtel Ibis", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPPESHI", + "charging_station:output": "11 kW;400 kW;22 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64526700000, + 44.78873300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH16212;FROTHPAUCH16211", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*AUCH*162*1*_*_", + "charging_station:output": "22 kW", + "description": "AUCHAN - ENGLOS", + "start_date": "2023-10-31", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96527727329, + 50.62872570228 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "capacity": "2", + "network": "SAT CHARGING", + "description": "SAT CHARGING BORNE CC;SAT CHARGING BORNE 5;SAT CHARGING BORNE 3;SAT CHARGING BORNE 2;SAT CHARGING BORNE 1;SAT CHARGING BORNE 4", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "CHARGEPOINT", + "operator:email": "info@chargepoint.com", + "owner:ref:FR:SIREN": "325061042", + "ref:EU:EVSE": "FRCPIE67796652;FRCPIE67796651;FRCPIE67787952;FRCPIE67787951;FRCPIE67787552;FRCPIE67787551;FRCPIE67787151;FRCPIE67786952;FRCPIE67786951;FRCPIE67784651;FRCPIE67784652;FRCPIE67787152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90000000000, + 50.30000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CPLHFQ", + "ref": "347192", + "ref:EU:EVSE": "FRFR1P7074585939593291509", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986000000, + 50.36400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "description": "Paris | Rue Baron le Roy 53", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9012*05", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38917300000, + 48.83360300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3214298707169295208", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLIKBWHPL24330", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892146" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90243200000, + 43.93994900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Aire de Manissieux", + "ref:EU:EVSE": "FRTSLP1749", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97754100000, + 45.69848000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P606499236053693855", + "operator:email": "roaming@freshmile.com", + "ref": "892275", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLIVSDBRRZEOLA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.85681600000, + 48.67499800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "start_date": "2023-04-05", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363753", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "description": "R3 - Norauto Metz Augny", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10931500000, + 49.08107900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLIU1WN051VNW7", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P869892520781425716", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "892776" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23255500000, + 49.42133600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12253002", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "SALLES CURAN - Place Du Foirail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78813100000, + 44.18165200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA5P8540929495256793153", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "993564", + "operator": "WAAT SAS | FR*WA5", + "description": "WAAT/FRWATLGSQTFMUZ", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00949000000, + 44.73168600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2021-04-12;2024-04-02;2024-05-31", + "ref:EU:EVSE": "FRS49P49347A;FRS49E49347001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "TIERCE - Rue Touraine;OuestCharge - Diva Sp - Tierce - Touraine", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46806900000, + 47.61575800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-01-27", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8110500222;FRS81E8110500221;FRS81E8110500212;FRS81E8110500211", + "owner:ref:FR:SIREN": "258100072", + "description": "GRAULHET - Cinéma Vertigo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99827676911, + 43.76071867510 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681704", + "ref": "FRHPCPNF040000", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "ref:EU:EVSE": "FRHPCPNF040000", + "opening_hours": "24/7", + "start_date": "2023-12-22", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS YASO", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85040000000, + 45.66970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "description": "LEYME - D48, parking HLM", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS46E46170001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90044900000, + 44.78587700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Bubry - Place de Macroom", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-01-09", + "ref:EU:EVSE": "FRS56PZVHKXW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17314700000, + 47.96453500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DOUAI - Place Carnot", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59178008", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08616700000, + 50.37204000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2922400", + "operator": "Bouygues E&S", + "start_date": "2023-06-27", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pouldergat-Venelle de Dinaou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32658300000, + 48.04382300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-17", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-MAUR-DES-FOSSÉS - 57 Avenue Joffre", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50161778555, + 48.80369636789 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-04-06", + "description": "CELLE L EVESCAULT-1-2;CELLE L EVESCAULT-1-1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346051252;FRLMSE12346051251;FRLMSE12346051261;FRLMSE12346051262", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B013", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18734000000, + 46.42672000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (159);Métropolis/FR*MGP*P92063*K", + "start_date": "2021-01-15", + "ref": "330302", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92063K", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19352700000, + 48.85769900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT", + "ref:EU:EVSE": "FRSIGPSIGE6421;FRSIGPSIGE6431;FRSIGPSIGE6441;FRSIGPSIGE6451;FRSIGPSIGE6461", + "ref": "FR*SOD*S*SIGE*64*6*_*_;FR*SOD*S*SIGE*64*2*_*_;FR*SOD*S*SIGE*64*3*_*_;FR*SOD*S*SIGE*64*4*_*_;FR*SOD*S*SIGE*64*5*_*_", + "start_date": "2020-11-10", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25236300000, + 48.83684000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "BAYEUX", + "start_date": "2023-08-01", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSBAYEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70370000000, + 49.28847000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "Howdens Arras", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000058478", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79233100000, + 50.29211000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Morlaas | Parking Communauté de Communes du Nord-Est Béarn", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "7e1c51b5-cb6c-5e5d-b6ff-444b03bc5de3", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25093000000, + 43.33905800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;150 kW", + "ref:EU:EVSE": "FRS85E85109005", + "description": "LES SABLES-D'OLONNE - Route Nationale 160", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75373315800, + 46.51697540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "ALENCON", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-06-12", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSALENC", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06172400000, + 48.43306800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OUISTREHAM", + "ref": "LFR3112EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3112EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25799300000, + 49.26834700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "100 kW;50 kW;22 kW;188 kW", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-08-29", + "ref:EU:EVSE": "FRPD1PLCLLFL", + "opening_hours": "24/7", + "operator": "Power Dot France", + "description": "E.Leclerc - La Flèche", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05451444484, + 47.70200569378 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/U4AQ0K8DKR", + "opening_hours": "24/7", + "ref": "96080", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPU4AQ0K8DKR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18078100000, + 45.40332300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/91B4D565-8E1D-4095-B607-A108D89AE4E7", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "927804", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP7245858613602327194", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62862200000, + 43.29714900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-24", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "description": "Gamm Vert - Gan", + "ref:EU:EVSE": "FRPD1PGMVGAN", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39989431779, + 43.21976953043 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRE11PLMVENISSIEUX695001", + "start_date": "2021-06-15", + "description": "Leroy Merlin - Vénissieux - Grand Parilly", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 09:00-20:00, Tu 09:00-20:00, We 09:00-20:00, Th 09:00-20:00, Fr 09:00-20:00, Sa 09:00-20:00, Su 09:00-20:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87872700000, + 45.71751100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - Intermarché SUPER Rosières", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP07199A", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP07199A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26713600446, + 44.48260866375 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SERCEL", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR16071;FROTHPOTHR16081", + "start_date": "2021-07-02", + "description": "SERCEL - SAINT GAUDENS CEDEX", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*160*7*_*_;FR*SOD*S*OTHR*160*8*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69753500000, + 43.09304400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ROUGNON STATION 1", + "description": "ROUGNON STATION 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-08-16", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6964705", + "ref:EU:EVSE": "FRCPIE6964705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97997500000, + 48.79680900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7732727945156486656", + "network": "Freshmile France", + "ref": "1155255", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLXU8BIH51R4L8", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54619500000, + 44.87898300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL LES SABLES D'OLONNE CENTRE GARE- 3 étoiles", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP122067", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78031000000, + 46.49930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398873", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/EWEC5ADH0N", + "ref:EU:EVSE": "FRFR1P6346033268063491210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07227300000, + 47.53091500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2019-09-09", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPCCSUDCORSE201371", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "CC Sud Corse - Stade Claude Papi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27582800000, + 41.59946800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/Q60YP7CO65", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "472248", + "ref:EU:EVSE": "FRFR1P1768598868515328339", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73854500000, + 48.58450300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-26", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPSOFIDACITROEN627001", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Citroen - Bruay la Buissière", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58099000000, + 50.49674200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E134205;FRS28E134202", + "description": "MODULO - LA LOUPE - Pl. de la gare", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-13", + "network": "MODULO - LA LOUPE - Pl. de la gare", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E134205;FRS28E134202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01153900000, + 48.47408800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P2702135071056229027", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "456819", + "description": "MobiSDEC/DZWIKE3NEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42428600000, + 49.08537700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P6257741335806228712", + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWA5LTRBFRNXC", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1127865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65191800000, + 48.18462600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "start_date": "2016-01-20", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA HAGUE (BEAUMONT HAGUE) - Cyberbase", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50440001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83648450000, + 49.66216830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81257002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT JUERY - Allée De La Trencade", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21084000000, + 43.94775400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "FRHPCPNF078181", + "description": "RELAIS PAYS DU GIERS", + "owner:ref:FR:SIREN": "531681592;531681590;531681591;531681594;531681593;531681597;531681596;531681595", + "ref:EU:EVSE": "FRHPCPNF078181", + "start_date": "2023-07-28", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52680000000, + 45.49490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2024-04-06;2024-04-04", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49007030", + "description": "ANGERS - Rue d'Osnabruck", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52496415400, + 47.48668670654 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PAUNEUIL", + "ref": "46582", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/auneuil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99482000000, + 49.36970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "HAZEBROUCK - Rue du Milieu", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH08E59295009", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54391700000, + 50.71787300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "L'ESPEROU - D986A", + "ref:EU:EVSE": "FRS30E30105001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54593500000, + 44.09186800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PHJHXYP", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/HJHXYP", + "ref": "24741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59084000000, + 47.73370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "360 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CHALAIS AIRE T365 2", + "start_date": "2025-06-06", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346367141;FRLMSE12346367142", + "ref": "B172", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "socket:type2_combo:output": "360 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10510934575, + 46.95955182862 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-12-08", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "484847", + "ref:EU:EVSE": "FRMGPP93078B", + "opening_hours": "24/7", + "description": "Metropolis - Express - Villepinte - Rêve;Métropolis/FR*MGP*P93078*B", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56212000000, + 48.95321400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSHEE436", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "300 kW;125 kW;22 kW", + "network": "Shell Montivilliers Cinema - Le Havre", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "description": "Shell Montivilliers Cinema - Le Havre", + "socket:type2_combo:output": "300 kW", + "ref": "FRSHEE436" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18076173000, + 49.53531804000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E64445001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PAU - Parking Clémenceau ", + "start_date": "2023-12-12", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36781870000, + 43.29505880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-15", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A16 Lormaison Ouest", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89370714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09684900000, + 49.24117800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | La Rochefoucauld-En-Angoumois | Place Gérard Vandeputte | Saint Projet-Saint Constant", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "5a28686a-e074-59c4-8df9-4acd05f3c2c0", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36067900000, + 45.73704300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "FRUGES P3", + "ref:EU:EVSE": "FRSE1PSE62FACA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "start_date": "2024-04-30", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12612800000, + 50.51645700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Brest", + "amenity": "charging_station", + "description": "Allego Carrefour Brest", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9007632;FRALLEGO9007631;FRALLEGO9007522;FRALLEGO9007521;FRALLEGO9002663;FRALLEGO9001222;FRALLEGO9001221;FRALLEGO9001511;FRALLEGO9001512;FRALLEGO9002661;FRALLEGO9002662", + "ref": "FRALLEGO9007632;FRALLEGO9007522;FRALLEGO9007521;FRALLEGO9002663;FRALLEGO9001222;FRALLEGO9001221;FRALLEGO9001511;FRALLEGO9001512;FRALLEGO9002661;FRALLEGO9002662;FRALLEGO9007631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52620080000, + 48.38746260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3845EVCP01;LFR3845EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "GUITRANCOURT - Meulan", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3845EVCP01;LFR3845EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76824700000, + 48.98984400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "GUILERS - Rue Alexandre Monnier", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM29E29069002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.55906500000, + 48.42423000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPW26C6ONSBL", + "ref": "W26C6ONSBL", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Saint Etienne Rochetaillee, Parking Rue des Echeneaux", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44698700000, + 45.40980720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/VMQABZ1RXS", + "amenity": "charging_station", + "capacity": "1", + "ref": "491913", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8890225274671212719", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54815800000, + 43.46713200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2022-08-31;2023-01-25;2022-07-27", + "operator": "Bouygues E&S", + "description": "MULHOUSE - Parking centre", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "31", + "ref:EU:EVSE": "FRP07E68224001;FRP07E682240011;FRP07E682240012;FRP07E682240013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34154940000, + 47.74892950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "description": "Réseau eborn/WQRUVP5GZT;La-Seyne-Sur-Mer, Avenue de Rome", + "ref:EU:EVSE": "FREBNPWQRUVP5GZT;FREBNP118622408795022697", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "682310;WQRUVP5GZT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85204000000, + 43.10523600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Su,We,Th,Sa,Fr,Tu,Mo 08:00-18:00", + "ref:EU:EVSE": "FREFLP1611257799570755685", + "network": "Road", + "amenity": "charging_station", + "ref": "1023258", + "capacity": "4", + "description": "Road/65dde2d860ab16001b99a11a", + "charging_station:output": "11 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44201000000, + 49.37490400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR27411;FROTHPOTHR27412", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-11-16", + "ref": "FR*SOD*S*OTHR*274*1*_*_", + "network": "LABORATOIRE DES PYRENEES ET DES LANDES", + "description": "LABORATOIRE DES PYRENEES ET DES LANDES - LAGOR EXT", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65170100000, + 43.39382300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED PARIS 18", + "ref:EU:EVSE": "FRCPIE6606745", + "network": "CGED PARIS 18", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6606745", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32645900000, + 48.88813200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P190190639374127480", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892653", + "description": "Freshmile France/TCIFDITPA3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61115400000, + 45.72263000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s540965", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1170672", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRWA2P1904859403145528569" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81511500000, + 50.42837500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QAHLNICPOS", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3611401341096616857", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "694298", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58904700000, + 50.52628600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sargé Capucines", + "network": "Le mans sun", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "aguerin@seeyousun.fr", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2021-08-25", + "ref:EU:EVSE": "FRSYSELMSSAR", + "operator": "See You Sun", + "charging_station:output": "7.4 kW", + "owner:ref:FR:SIREN": "824641294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24189000000, + 48.03389500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Touquet Normal", + "start_date": "2022-12-29", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "528932627", + "description": "Touquet, Avenue de l'Hippodrome", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "advenir@freshmile.com", + "ref:EU:EVSE": "FRFR1PP2SBBU9AIE", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59570097653, + 50.52003488744 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2021-03-17", + "description": "Kia - Grimal - Albi", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPGRIMALKIA810001", + "capacity": "3", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14952400000, + 43.94170600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2902300", + "charging_station:output": "22 kW", + "description": "Carantec-Rue Duquesne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.91355000000, + 48.66735800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "749472", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/DZTTFA557P", + "ref:EU:EVSE": "FRS10P876062394965198317" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37420300000, + 48.11391600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "db49839b-37aa-4e91-a840-5e5bdc16f7fc;575870", + "owner:ref:FR:SIREN": "819282542", + "description": "GHO Dijon Sud;Zephyre/1909448", + "amenity": "charging_station", + "network": "GHO Dijon Sud;Zephyre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref:EU:EVSE": "FRZP1P2210510427190152779;FRZP1PEAC43612;FRZP1PEAC43613;FRZP1PEAC43614;FRZP1PEAC43615", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00788000000, + 47.27923700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "E_Emeraude_Clisson ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE796", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28423090000, + 47.09810200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/GXTYVE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PGXTYVE", + "charging_station:output": "22 kW", + "network": "FDE 80", + "ref": "86639" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53337000000, + 50.07210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-07-09", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - LATOUR BAS ELNE", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*161*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST16113;FRIZFPFAST16111;FRIZFPFAST16112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99716800000, + 42.60785300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4709;FRS41E4710", + "capacity": "2", + "description": "MODULO - MUR DE SOLOGNE - Pl. de la poste", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4709;FRS41E4710", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MUR DE SOLOGNE - Pl. de la poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60891900000, + 47.41185900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PMERU", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/MERU", + "ref": "38800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13518000000, + 49.23720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-18", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*7*2*_*_;FR*SOD*S*LYON*7*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON722;FRGLYPLYON721;FRGLYPLYON712;FRGLYPLYON711", + "description": "CZM01 - RUE GABRIEL PERI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83156000000, + 45.84807000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO -CHANCEAUX SUR CHOISILLE - Grosse Ferme", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO -CHANCEAUX SUR CHOISILLE - Grosse Ferme", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E214065;FRS37E214066", + "ref": "FRS37E214065;FRS37E214066" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70095375000, + 47.47147261000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-26", + "network": "Morbihan Energies", + "description": "Moréac - Place de la Résistance", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PATFEQY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81931800000, + 47.91868000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P17300B", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P17300B", + "network": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "description": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14858000000, + 46.15980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRN54E207085;FRN54E187882;FRN54E187881;FRN54E207084", + "description": "MODULO - VANDOEUVRE - Pkg. relais du CHU", + "ref": "FRN54E207085;FRN54E187882;FRN54E187881;FRN54E207084", + "capacity": "4", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08", + "network": "MODULO - VANDOEUVRE - Pkg. relais du CHU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14581000000, + 48.64940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 5 AVENUE SPINOZA - IVRY-SUR-SEINE", + "ref": "FR*SOD*S*SIGE*208*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE20811;FRSIGPSIGE20812", + "start_date": "2021-11-19", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38902100000, + 48.81297200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-04", + "charging_station:output": "22 kW;225 kW", + "socket:type2_combo:output": "225 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "Groupe Donjon - Volkswagen Sainte Geneviève des Bois", + "ref": "FRCG0E001868;FRCG0E001867;FRCG0E001930", + "operator:email": "info@chargeguru.com", + "description": "Groupe Donjon - Volkswagen Sainte Geneviève des Bois", + "ref:EU:EVSE": "FRCG0E001868;FRCG0E001867;FRCG0E001930" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33380700000, + 48.64121800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;63 kW;22 kW", + "description": "ENGIE Vianeo - A51 Aubignosc Ouest", + "amenity": "charging_station", + "start_date": "2023-09-05", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89917612", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97764000000, + 44.13355900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "ec68aa91-bf2b-594f-a03a-d49b3ad9937a", + "description": "MOBIVE | Casteljaloux | lac de Clarens", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "charging_station:output": "3.3 kW;36 kW", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07140200000, + 44.29610400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-27", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "CITROEN - PINAUDEAU", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE86DACA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41348800000, + 46.71453200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-03", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA31E31149004", + "network": "CPO Alizé Liberté Public", + "description": "COLOMIERS - Parking du Perigord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33164570000, + 43.61219720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3635EVCP02;LFR3635EVCP01", + "description": "ONET LE CHATEAU Espalion", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3635EVCP02;LFR3635EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58793900000, + 44.36760600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM38E38150001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DOMENE - Rue du Colonel Fouque", + "start_date": "2023-01-19", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83856922510, + 45.20246462695 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "TNY0MUAT3P;48370", + "description": "Réseau eborn/TNY0MUAT3P;Crest, Place des Marronniers", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPTNY0MUAT3P", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02427500000, + 44.72705700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/K5OWM91ZVL", + "network": "Freshmile France", + "capacity": "20", + "opening_hours": "24/7", + "ref": "515048", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6766502464991531389", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950000000, + 49.39504600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "SAINT-CLOUD - Avelines", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "10", + "start_date": "2024-03-28", + "ref:EU:EVSE": "FRP07E92064002;FRP07E920640021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20782610000, + 48.84298430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85946;RAATACOPRW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/RAATACOPRW;Manosque, Parc du souvenir français Pkg Drouille", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRAATACOPRW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78370000000, + 43.83019000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "capacity": "7", + "charging_station:output": "200 kW;400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAASPAO", + "opening_hours": "24/7", + "description": "A10 - Aire de Saint Palais Ouest (direction Bordeaux)", + "operator": "ELECTRA", + "start_date": "2024-06-17", + "socket:type2_combo:output": "200 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61371100000, + 45.51268700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E87085004", + "description": "Parking Limoges Tribunal - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25463421521, + 45.83020608420 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6643575", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-11-09", + "description": "LUMELEC NEUVILLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6643575", + "network": "LUMELEC NEUVILLE", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26438600000, + 46.68213300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHPXCVVJCEOBY", + "operator": "Easycharge services", + "description": "GAP , Parking relais du plan Tokoro", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "XCVVJCEOBY", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "901772400", + "network": "Easycharge services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10257773000, + 44.56948778000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-07-29", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1804", + "ref": "FR*V75*PPX18*04", + "capacity": "4", + "description": "Paris | Rue Caulaincourt 17", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33300690000, + 48.88725220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1009215", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7813798572821705168", + "description": "Freshmile France/RNAAVM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33398000000, + 47.74860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Boulevard Sérurier 54", + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901902", + "ref": "FR*V75*P9019*02", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39847600000, + 48.88042100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSSYO7BPIEWX8", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7583280374652331830", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1026702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16568100000, + 44.88097400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-07-12", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPEVERLINEVOLVO901601", + "operator:email": "support@driveco.com", + "description": "Volvo - Belfort", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-17:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89353700000, + 47.65212300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22214001", + "description": "Plouezec-route de Saint Brieuc", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98480400000, + 48.74762700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LASTOURS - Parking Visiteurs D101", + "ref:EU:EVSE": "FRS11E11194001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2019-03-16", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38083333300, + 43.33277780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "899892202", + "description": "La Seyne Services Auto - 22kW - 5;La Seyne Services Auto - 22KW - 6 ", + "amenity": "charging_station", + "capacity": "1", + "ref": "166279;166278", + "operator:email": "advenir@zeborne.com", + "network": "SYNETHIS - LA SEYNE SUR MER", + "charging_station:output": "22 kW", + "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", + "operator": "ZEborne", + "start_date": "2022-11-25", + "ref:EU:EVSE": "FRZPEE22AC166278;FRZPEE22AC166279" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85870711000, + 43.11350701000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS09E09246001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "RIMONT - D518-Route De La Gare", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27936900000, + 42.99383300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80P2676607157337491922", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "412037", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/I76W2YJNXA", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92496200000, + 49.75996500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - LA GUERCHE-DE-BRETAGNE", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*40*1*_*_", + "start_date": "2024-01-19", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST4013;FRIZFPFAST4012;FRIZFPFAST4011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23285720000, + 47.93466250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44071002;FRS44P44071B", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Haute-Goulaine - Châtaigneraie;HAUTE-GOULAINE - Rue De La Châtaigneraie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43267500000, + 47.19593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77P77191A;FRS77E77191001", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-25;2016-08-12", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "FONTENAILLES - Rue Des Charmilles;Fontenailles", + "ref": "01F5ZAKH61Q2450FRWGGNY80W5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95196900000, + 48.55573300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "capacity": "2", + "amenity": "charging_station", + "description": "GreenYellow Shift Mobility/63", + "ref": "1167567", + "ref:EU:EVSE": "FRGYMP8876379110027635616", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW", + "operator": "GreenYellow | FR*GYM", + "opening_hours": "Th,Mo,We,Tu 13:30-17:30,We,Fr,Tu,Mo,Th 07:30-12:00,Fr 13:30-16:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78614400000, + 48.46533900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SAINT ANTOINE DU ROCHER - Rue de la Serinière", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E220426;FRS37E220424", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINT ANTOINE DU ROCHER - Rue de la Serinière", + "ref:EU:EVSE": "FRS37E220426;FRS37E220424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63150300000, + 47.49622500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "operator": "49__VILLE DE NANCY", + "opening_hours": "24/7", + "ref": "297eade5-9930-5440-bca4-652caec661b7", + "description": "VILLE DE NANCY - Parking Pichon - Nancy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18817900000, + 48.68459500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Super U", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-07-01", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com", + "owner:ref:FR:SIREN": "434374401", + "description": "Super U Ferrieres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73935600000, + 49.47870800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Alloue | Rue Emile Belly", + "operator": "190__SDEG16", + "ref": "5a5ca9c8-184b-5940-acb2-91b445310b72" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51291700000, + 46.02639800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94076006", + "capacity": "0", + "network": "SIPPEREC", + "description": "VILLEJUIF - Rue Auguste Perret", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35122630000, + 48.78812320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6699815;FRCPIE6696725;FRCPIE6535085;FRCPIE6696715", + "capacity": "8", + "description": "SONEPAR ST-VULBAS 8", + "amenity": "charging_station", + "network": "SONEPAR ST-VULBAS 8", + "ref": "FRCPIE6699815;FRCPIE6696725;FRCPIE6535085;FRCPIE6696715", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28411500000, + 45.85664100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P7869836942203436317", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "454260", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/FT7Q4WNI3A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96230400000, + 49.06489500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Arcachon | Place Peyneau", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "406cdf5c-56e1-5224-9645-03cb04ffdc63", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16312100000, + 44.66352800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Airvault - Pôle Santé & MAM", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79005P0008A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13181000000, + 46.82647000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Airbus Saint Martin Parking M51", + "start_date": "2024-01-17", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUSSTMARTIN313005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35693600000, + 43.61826100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR2961EVCP01;LFR2961EVCP03;LFR2961EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ISSOIRE France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR2961EVCP01;LFR2961EVCP03;LFR2961EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25697600000, + 45.55163000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "description": "BEAULIEU - MARINONI RP", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE4131;FRM06PNICE4121;FRM06PNICE4111;FRM06PNICE4112", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "ref": "FR*SOD*S*NICE*41*3*_*_;FR*SOD*S*NICE*41*2*_*_;FR*SOD*S*NICE*41*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2019-01-04;2019-01-05;2019-01-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33031256755, + 43.70701252197 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ1812;FRA16PWIIZ1811", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*18*1*_*_", + "description": "CANNES PARKING PICAUD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-04-16", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00227400000, + 43.55055200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/J2WYHZVZ7P", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "742944", + "ref:EU:EVSE": "FRFR1P6540244748763574808", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.50140000000, + -21.28043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PBRCLVR", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2023-12-22;2023-12-28", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "description": "Bricomarché - Lavaur", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80231785449, + 43.70692076711 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLDBAM0UVXS", + "ref": "LDBAM0UVXS", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "La Fouillouse, Parking rue centrale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31410250000, + 45.50199210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPSGLHC", + "start_date": "2023-12-29", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Saint-Germain-en-Laye - Hôtel Campanile", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05613100000, + 48.90532400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Saint Aubin", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E31555009;FRP07E315550091", + "start_date": "2024-01-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45424570000, + 43.60398550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLP9JRXLB2IJDC;1026810", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Le Pont-de-Beauvoisin, place carrouge;Réseau eborn/LLP9JRXLB2IJDC", + "start_date": "2023-11-22", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP533651850238765649;FREBNPLLP9JRXLB2IJDC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67412000000, + 45.53689000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "ref": "1044393;LLTFRWL4I5JUTD", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Thionville, Rue des Pyramides;Easy Charge/LLTFRWL4I5JUTD", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPLLTFRWL4I5JUTD;FRECHP1742087048084208896", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge", + "start_date": "2024-03-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16008500000, + 49.36728300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A5 Villeneuve Vauluisant", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP101116", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-27;2022-12-26;2022-12-23", + "charging_station:output": "300 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55576100000, + 48.24769300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DTPOLB2LSC", + "opening_hours": "24/7", + "ref": "479187", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRFR1P4003065072343274210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06167200000, + 46.48301800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX09*09", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-08-01;2022-08-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue la Fayette 56", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX0909" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34208300000, + 48.87546400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLVQOQGZJ1F4X0", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6693102642699763383", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1083360" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57662200000, + 47.72746300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPPAVOLVO106001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:00-18:00, Tu 08:00-18:00, We 08:00-18:00, Th 08:00-18:00, Fr 08:00-18:00, Sa 09:00-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "start_date": "2021-10-22", + "capacity": "15", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "description": "Volvo - Troyes", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02535300000, + 48.32773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25P5304337422899622969", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SYDED/MFKDJCIWHX", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "ref": "735267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66019400000, + 47.52409400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E225332;FRS18E225333", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS18E225332;FRS18E225333", + "charging_station:output": "0 kW", + "description": "MODULO - BOURGES - Moulin de Chappe", + "network": "MODULO - BOURGES - Moulin de Chappe", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38819600000, + 47.08084900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAURECOURT - Quai Boubou Dabo", + "start_date": "2024-03-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78382004", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07073450000, + 48.99592970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "description": "QPARK - ANTIBES - LA POSTE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*QPRK*36*5*_*_;FR*SOD*S*QPRK*36*17*_*_;FR*SOD*S*QPRK*36*16*_*_;FR*SOD*S*QPRK*36*15*_*_;FR*SOD*S*QPRK*36*14*_*_;FR*SOD*S*QPRK*36*12*_*_;FR*SOD*S*QPRK*36*11*_*_;FR*SOD*S*QPRK*36*1*_*_;FR*SOD*S*QPRK*36*10*_*_;FR*SOD*S*QPRK*36*13*_*_;FR*SOD*S*QPRK*36*2*_*_;FR*SOD*S*QPRK*36*3*_*_;FR*SOD*S*QPRK*36*4*_*_;FR*SOD*S*QPRK*36*6*_*_;FR*SOD*S*QPRK*36*7*_*_;FR*SOD*S*QPRK*36*8*_*_;FR*SOD*S*QPRK*36*9*_*_", + "start_date": "2024-05-29;2024-02-27;2022-10-31", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRQPKPQPRK3641;FRQPKPQPRK3631;FRQPKPQPRK3621;FRQPKPQPRK36161;FRQPKPQPRK36121;FRQPKPQPRK3611;FRQPKPQPRK36101;FRQPKPQPRK36111;FRQPKPQPRK36131;FRQPKPQPRK36141;FRQPKPQPRK36151;FRQPKPQPRK36171;FRQPKPQPRK3651;FRQPKPQPRK3661;FRQPKPQPRK3671;FRQPKPQPRK3681;FRQPKPQPRK3691" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12259600000, + 43.58181900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81060003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CARMAUX 3 - Bld Augustin Malroux", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15350400000, + 44.04800200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Vidauban Sud;IONITY GMBH", + "capacity": "5;9", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "start_date": "2019-06-28;2022-05-11", + "description": "Vidauban Sud;IONITY Vidauban Sud", + "ref": "FRIOYE409653;FRIOYE409652;FRIOYE409651;FRIOYE409606;FRIOYE409605;FRIONE409600;FRIOYE409601;FRIOYE409602;FRIOYE409603;FRIOYE409604", + "ref:EU:EVSE": "FRIOYE409653;FRIOYE409652;FRIOYE409651;FRIOYE409606;FRIOYE409605;FRIONE409600;FRIOYE409601;FRIOYE409602;FRIOYE409603;FRIOYE409604", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45101100000, + 43.41383600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOURVILLE SUR SIENNE - Place Léon-Paul Legraverend", + "socket:type2_combo:output": "25 kW", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2023-03-18", + "opening_hours": "24/7", + "network": "e-charge50", + "charging_station:output": "25 kW;22 kW", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P506031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54525470000, + 49.04562400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61J186694WWK9SKV1B", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-27;2021-01-04", + "description": "TRILPORT - Rue Du Général De Gaulle;Trilport - Mairie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77475001;FRS77P77475A", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94719700000, + 48.95848200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF080072", + "start_date": "2022-09-13", + "socket:type2_combo:output": "175 kW", + "owner:ref:FR:SIREN": "531680797;531680796;531680795;531680794", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRHPCPNF080072", + "network": "TotalEnergies Charge Rapide", + "description": "REL.DRUMETTAZ", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92700000000, + 45.67290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E235160;FRS41E235159", + "description": "MODULO - ARVILLE - Rte. des Templiers", + "network": "MODULO - ARVILLE - Rte. des Templiers", + "ref:EU:EVSE": "FRS41E235160;FRS41E235159", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94658719000, + 48.06335936000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-17", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLDQXAG", + "description": "Arradon - Rue de la Carrière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83016002078, + 47.61487027016 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2023-10-26", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*194*1*_*_", + "ref:EU:EVSE": "FRGLYPLYON19411;FRGLYPLYON19412", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "description": "FEZ02 - PLACE RENE LESCOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85850500000, + 45.67423300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2023-11-27", + "amenity": "charging_station", + "ref": "761928", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Metropolis - Citadine - Châtenay-Malabry - Jean Longuet;Métropolis/FR*MGP*P92019*E", + "ref:EU:EVSE": "FRMGPP92019E", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27999400000, + 48.76819700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30;Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2019-12-10", + "capacity": "2;6", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSOFIDADS592101;FRSSDPSOFIDACITROEN592101", + "operator": "DRIVECO", + "description": "DS - Dunkerque;Citroën - Dunkerque" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36132000000, + 51.02034100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76575002", + "description": "SAINT ETIENNE DU ROUVRAY – Champ des Bruyères – Rue Charles Peguy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06850000000, + 49.40497220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626375", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/PGRUBML7KD", + "ref:EU:EVSE": "FRLE2P7123007835573578854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553500000, + 47.37369100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Saint-Andre-De-Cubzac | Allée Louise Michel", + "operator:email": "cpo@citeos.com", + "ref": "1a1d63ae-26e6-56fa-9e25-1b9d111f51e6", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44364400000, + 44.99626200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS95E95572002", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SAINT OUEN L'AUMONE - Parking Parc des sports", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-07-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10289100000, + 49.04118700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRALLEGO8000972;FRALLEGO8000962;FRALLEGO8000961;FRALLEGO8000951;FRALLEGO8000952;FRALLEGO8000971", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO8000972;FRALLEGO8000962;FRALLEGO8000961;FRALLEGO8000951;FRALLEGO8000952;FRALLEGO8000971", + "network": "Allego FR,Pathé, TJ2 Liévin", + "description": "Allego FR,Pathé, TJ2 Liévin", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77600751000, + 50.42334392000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P6582943921666769277", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/M4TBD6CVLX", + "ref": "454299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76344000000, + 45.19078100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Berre-L'Etang, Parking des Lisses", + "ref:EU:EVSE": "FRM13PFYFFW8P7QL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16822400000, + 43.47299900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/IFL3AFTDY3", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P1018725068693503073", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "782613", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53978800000, + 47.82198200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA COLLE SUR LOUP - PARKING PISCINE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-09-11", + "ref:EU:EVSE": "FRA16PWIIZ32311;FRA16PWIIZ32312", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*323*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10142006500, + 43.68577846501 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P388208015624364034", + "amenity": "charging_station", + "ref": "441015", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/NIIRDBT67N", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02122200000, + 46.88107500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Valmont Primeurs Pomchou - La Ville-du-Bois", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "ref:EU:EVSE": "FRPD1PPOMVDB", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27080514107, + 48.65094795000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Tullins, Parking Place Jean Jaures", + "capacity": "2", + "amenity": "charging_station", + "ref": "DCNJKNE4HQ", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDCNJKNE4HQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48280560000, + 45.29550830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/8b973959-fcf0-48e0-b422-6db07418134c", + "ref:EU:EVSE": "FREVZP5521780034376355715", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "240 kW", + "ref": "810081", + "charging_station:output": "240 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09328000000, + 50.58254000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "description": "NETTO - PARAY-LE-MONIAL", + "ref:EU:EVSE": "FROTHPOTHR63621;FROTHPOTHR63611", + "start_date": "2023-05-17", + "amenity": "charging_station", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*636*1*_*_;FR*SOD*S*OTHR*636*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10364700000, + 46.45367900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "301192", + "capacity": "2", + "description": "Réseau eborn/D9SCVVZETK", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPD9SCVVZETK", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86434200000, + 43.45548200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85877;FQSYJSG0TH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPFQSYJSG0TH;FREBNFQSYJSG0TH", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "description": "Réseau eborn/FQSYJSG0TH;Collobrières, Notre Dame" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30270500000, + 43.23731600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2023-01-04;2022-03-10", + "capacity": "1;2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*327*3*_*_;FR*SOD*S*OTHR*327*1*_*_;FR*SOD*S*OTHR*327*2*_*_;FR*SOD*S*OTHR*327*4*_*_;FR*SOD*S*OTHR*327*5*_*_", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "SUPER U - VARADES", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR32752;FROTHPOTHR32751;FROTHPOTHR32741;FROTHPOTHR32731;FROTHPOTHR32721;FROTHPOTHR32711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02062500000, + 47.38940900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "454203", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/ZMNFG2WGSB", + "ref:EU:EVSE": "FRFR1P8179581435557875486", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90503300000, + 50.39211100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1529", + "description": "Paris | Avenue de Suffren 78", + "ref": "FR*V75*PPX15*29", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29979860000, + 48.85183200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1078863", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3844106217556116273", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLUI6TLFLH6NN0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74409600000, + 48.82640300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Terrasses de la Madeleine - Marcq-en-Barœul", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMADELEINE597001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07282200000, + 50.66290700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PVALREUILSAULES", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-06-14", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900045", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18730500000, + 49.24860900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22106001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Langueux-Place Mitterrand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.71629800000, + 48.49377800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BONNIERES-SUR-SEINE - Place De La Libération - Gauche", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY32E78089002", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58195500000, + 49.03747900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SacreCoeur_Ecully", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRROSE227", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77309820000, + 45.77046410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUBERGENVILLE - Boulevard de Mantes", + "ref:EU:EVSE": "FRY01E78029003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84487820000, + 48.97201210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-29", + "ref": "FRIOYE409453;FRIOYE409402;FRIOYE409401;FRIOYE409403;FRIOYE409404;FRIOYE409451;FRIOYE409452", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Poitiers Jaunay-Clan", + "opening_hours": "24/7", + "description": "Poitiers Jaunay-Clan", + "ref:EU:EVSE": "FRIOYE409453;FRIOYE409402;FRIOYE409401;FRIOYE409403;FRIOYE409404;FRIOYE409451;FRIOYE409452", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36676480000, + 46.70130790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS52P1463926876688475360", + "network": "SDED52", + "ref": "248260", + "description": "SDED52/UHYAW6LFGQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43409600000, + 47.80396700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65389001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT LAURENT DE NESTE - Avenue Des Châtaigners", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48102000000, + 43.08026000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Pontchateau", + "operator": "NW IECharge", + "description": "Pontchateau", + "start_date": "2023-03-06", + "ref": "FRIENE004502;FRIENE004501", + "ref:EU:EVSE": "FRIENE004502;FRIENE004501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677000000, + 47.43294000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BEZIERS – Domaine de Bayssan – Parking des Savonniers", + "ref:EU:EVSE": "FRS34E34300001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20885540000, + 43.30729020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SE61-CHSE-001", + "start_date": "2017-12-06;2017-12-05", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "description": "CHAMPSECRET - Salle Charles Leandre", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61091A", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55368570000, + 48.60926870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLQ0YSPPQ1HYLN", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P1058873572952439686", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "978089" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95224000000, + 48.38523100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-26", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "description": "Venerque, Mont Frouzy;Roulez Électrique En Haute-Garonne/BSNARD", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "38839;BSNARD", + "ref:EU:EVSE": "FRS31PBSNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44640000000, + 43.43310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2020-11-17", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPOTERA800001", + "charging_station:output": "22.08 kW", + "description": "O'Tera - Amiens", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 07:00-20:00, Tu 07:00-20:00, We 07:00-20:00, Th 07:00-20:00, Fr 07:00-20:00, Sa 07:00-20:00, Su 07:30-12:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26305800000, + 49.88379300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000101;FRCG0E000099;FRCG0E000100", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "FRCG0E000101;FRCG0E000099;FRCG0E000100", + "network": "BMW - ESCAT Rodez - 12850 - 1", + "start_date": "2022-04-28", + "description": "BMW - ESCAT Rodez - 12850 - 1", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53856795000, + 44.37828770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "LA GAUDE - PARKING MAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-11-26", + "ref:EU:EVSE": "FRM06PNICE10612;FRM06PNICE10611", + "ref": "FR*SOD*S*NICE*106*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15293200000, + 43.72188400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "7540e2bd-22d6-5658-a44f-552bfb5a80b8", + "opening_hours": "24/7", + "description": "MOBIVE | Mont de Marsan | Parking Lycée Jean Rostand", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50220200000, + 43.88692900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE55BYBA", + "start_date": "2022-09-12", + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "network": "Stations-e", + "description": "BYMYCAR - BAR-LE-DUC", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17592300000, + 48.76648400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "205169;205172;205170;205171", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS205171;FRBMPS205170;FRBMPS205172;FRBMPS205169", + "description": "Bump - Intermarché HYPER - Arbent", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66201700000, + 46.28325300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR2917EVCP02;LFR2917EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2917EVCP02;LFR2917EVCP01", + "description": "GUICHEN Joliot Curie", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81297900000, + 47.97348900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-5E, Rue George", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PU796VHPE9G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39792000000, + 43.29594900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "242371", + "description": "TE90/NJZRFY", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS90PNJZRFY", + "network": "TE90" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797000000, + 47.50830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2013-02-01", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP83310GRIRN7", + "operator:email": "contact@e55c.com", + "description": "PARKING RN7 GRIMAUD", + "ref": "FR*55C*P83310*GRI*RN7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52134400000, + 43.27278200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892032", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8606205220374532571", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLHRFZYGS446I7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22572600000, + 47.31945600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Système U - Saumur", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYUSAU", + "start_date": "2022-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06957100000, + 47.25108200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Embrun, Route de Chalvet;Réseau eborn/YRHKYUWSPC", + "ref:EU:EVSE": "FREBNPYRHKYUWSPC", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "79126;YRHKYUWSPC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49661300000, + 44.56737100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "ref:EU:EVSE": "FRFASE33112", + "start_date": "2023-03-03", + "amenity": "charging_station", + "ref": "FRFASE33112", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "description": "Fastned Aire de Ussy sur Marne", + "charging_station:output": "300 kW", + "network": "Fastned Aire de Ussy sur Marne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06313115000, + 48.97043311000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref": "FR*SOD*S*SENT*446*4*_*_;FR*SOD*S*SENT*446*3*_*_;FR*SOD*S*SENT*446*2*_*_;FR*SOD*S*SENT*446*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "BATIMENT START", + "description": "BATIMENT START - SYN - PARKING PRIVE", + "ref:EU:EVSE": "FROTHPSENT44611;FROTHPSENT44621;FROTHPSENT44631;FROTHPSENT44641", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05177100000, + 48.78809100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paulhaguet, Place Lafayette;Réseau eborn/A6GGB1AQMP", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPA6GGB1AQMP;FREBNP4641107657700986575", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "369001;A6GGB1AQMP", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2021-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51529600000, + 45.20654700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Crevoux, Pra Vesqua", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPJZZFBPHZN0", + "operator:email": "contact@reseau-eborn.fr", + "ref": "JZZFBPHZN0", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60619239000, + 44.54616480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*450*1*_*_", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR45012;FROTHPOTHR45011", + "operator:email": "sav@izivia.com", + "description": "INTERMARCHE - LA CHAPELLE DABONDANCE", + "start_date": "2022-08-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82269200000, + 46.27814200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "541790", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/KEZTK8O7PQ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6909012582797963013", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20069000000, + 42.47700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10022618;FRUBIE10002785", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-06-09", + "description": "Rue Noir Pel - Sainte-Adresse " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08538900000, + 49.50594400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZE3EDDITHO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7058125614067659953", + "charging_station:output": "22 kW", + "ref": "694376", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.77550800000, + -17.48009300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "Station-service de l'aire de Montigny-le-Roi", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "81e2dee3-ba07-51f5-badd-a36c93744b78", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49815300000, + 47.97762000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2202302164919249063", + "description": "Freshmile France/XHFOOZJRFN", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "694364", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84123100000, + 48.06762100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P7515459930618609687", + "ref": "461634", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/A3XTEFNVP7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20336300000, + 49.38317100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P6412733526853071516", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "Zephyre/LP0095AE", + "charging_station:output": "7.4 kW", + "ref": "895005", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25664600000, + 48.83447900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11320001", + "description": "ROQUEFEUIL - Grand Rue", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99447631800, + 42.82032394000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AIGREMONT - Rue de Feucherolles", + "start_date": "2021-09-07", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78007001", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02108200000, + 48.90757800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21521360000, + 49.97348460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "b8d01481-35bc-55ea-a4bd-990b04f19127", + "description": "CCPHVA - Parking Hotel de Ville - Ottange", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "7.328 kW", + "operator": "51__CCPHVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01769900000, + 49.44118500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TORREILLES - D11", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS66E66212001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99357900000, + 42.75441400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-11-09;2023-11-10", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "IKEA GRENOBLE - PARKING CLIENTS;IKEA GRENOBLE - PARKING COLLABORATEURS", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*180*6*_*_;FR*SOD*S*IKEA*180*5*_*_;FR*SOD*S*IKEA*180*2*_*_;FR*SOD*S*IKEA*180*1*_*_;FR*SOD*S*IKEA*179*9*_*_;FR*SOD*S*IKEA*179*8*_*_;FR*SOD*S*IKEA*179*3*_*_;FR*SOD*S*IKEA*179*17*_*_;FR*SOD*S*IKEA*179*14*_*_;FR*SOD*S*IKEA*179*12*_*_;FR*SOD*S*IKEA*179*1*_*_;FR*SOD*S*IKEA*179*10*_*_;FR*SOD*S*IKEA*179*11*_*_;FR*SOD*S*IKEA*179*13*_*_;FR*SOD*S*IKEA*179*15*_*_;FR*SOD*S*IKEA*179*16*_*_;FR*SOD*S*IKEA*179*2*_*_;FR*SOD*S*IKEA*179*4*_*_;FR*SOD*S*IKEA*179*5*_*_;FR*SOD*S*IKEA*179*6*_*_;FR*SOD*S*IKEA*179*7*_*_;FR*SOD*S*IKEA*180*3*_*_;FR*SOD*S*IKEA*180*4*_*_", + "ref:EU:EVSE": "FRIKAPIKEA18061;FRIKAPIKEA18051;FRIKAPIKEA18041;FRIKAPIKEA18031;FRIKAPIKEA17991;FRIKAPIKEA17971;FRIKAPIKEA17961;FRIKAPIKEA17951;FRIKAPIKEA17941;FRIKAPIKEA17931;FRIKAPIKEA17921;FRIKAPIKEA179171;FRIKAPIKEA179161;FRIKAPIKEA179151;FRIKAPIKEA179131;FRIKAPIKEA179121;FRIKAPIKEA179101;FRIKAPIKEA17911;FRIKAPIKEA179111;FRIKAPIKEA179141;FRIKAPIKEA17981;FRIKAPIKEA18011;FRIKAPIKEA18021", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77562060000, + 45.18088050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35238007B2", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "RENNES - 1 place honore commereuc ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67973900000, + 48.10848200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "description": "SIEG 63/FR*S63*P63050*B", + "amenity": "charging_station", + "ref": "518258", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63050B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33076200000, + 45.41311200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2702191581640200551", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RD8XXQESXZ", + "ref": "559772", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69280200000, + 48.09245100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-04", + "ref": "XEPA", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS31PLLNBOQ74X1COE6", + "description": "Gouaux-de-larboust", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47735354818, + 42.78801777494 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "description": "NOISY-LE-SEC - Passage des Ecoles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93053005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45774050000, + 48.88066450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-11", + "amenity": "charging_station", + "ref": "FRCG0E000987;FRCG0E000985;FRCG0E000986", + "ref:EU:EVSE": "FRCG0E000987;FRCG0E000985;FRCG0E000986", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Hôtel de Bourgtheroulde - 76000 - 3", + "operator:email": "info@chargeguru.com", + "description": "Hôtel de Bourgtheroulde - 76000 - 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08834400000, + 49.44222900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE22312;FRM06PNICE22311", + "description": "NICE - PARKING ROSSINI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-07-12", + "ref": "FR*SOD*S*NICE*223*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25859850955, + 43.70075731844 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "4f22c9b2-4ffe-5236-b83b-1d38700eaf2f", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Sainte Livrade Sur Lot | Faubourg Gardette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59134100000, + 44.39844100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-16", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*364*1*_*_", + "description": "SIGEIF - 1 RUE FRANCOIS TRUFFAUT PARKING DE LA PISCINE - HERBLAY-SUR-SEINE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE36411;FRSIGPSIGE36412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14247000000, + 49.00040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76273001", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FONTAINE SOUS PREAUX - Route des sources", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16648000000, + 49.48150900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3336EVCP01;LFR3336EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3336EVCP01;LFR3336EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "WISSEMBOURG Peupliers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95484600000, + 49.03086800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Arcachon | Gare Sncf", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW", + "ref": "eb725012-57fd-5267-8876-5b7962dc078f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16575000000, + 44.65972000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "706037", + "charging_station:output": "24 kW;22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS82P8767984704974963231", + "description": "SDE82/FLVM0ATPQR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97006100000, + 44.14385400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2023-03-02", + "capacity": "1", + "ref": "FR*55C*P84270*VDN*P0NT", + "description": "PLACE DU PETIT PONT - VEDENE", + "ref:EU:EVSE": "FR55CP84270VDNP0NT", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90724800000, + 43.97931800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3587EVCP02;LFR3587EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "MALESTROIT Gare", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3587EVCP02;LFR3587EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39385200000, + 47.80855300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PITMIPA", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Intermarché - Llupia", + "socket:type2_combo:output": "108 kW;120 kW", + "start_date": "2024-06-07", + "operator": "Power Dot France", + "charging_station:output": "108 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76751719378, + 42.62560911857 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP758491881053131239", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/LLYMOJE0D1YLE9", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1155519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38310200000, + 45.67261100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRETIP64122W", + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - BIARRITZ Allée Marie Politzer", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122W" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54174206199, + 43.46860859892 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCHAHIR", + "description": "Chaussea - Hirson", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09102308217, + 49.91001832984 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT784501", + "description": "Carrefour Market - Villepreux", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00300800000, + 48.81872900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPTOUHIU", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Toulouse - B&B Hotel Toulouse Université", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2024-09-27", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40632900000, + 43.57522400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NETTO - SENNECEY LE GRAND", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR56323;FROTHPOTHR56322;FROTHPOTHR56321;FROTHPOTHR56312;FROTHPOTHR56311", + "ref": "FR*SOD*S*OTHR*563*2*_*_;FR*SOD*S*OTHR*563*1*_*_", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com", + "start_date": "2023-12-21;2023-01-25", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87456200000, + 46.63401900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-13", + "amenity": "charging_station", + "network": "CAAPIMMOPERTUIS BORNE 9-10", + "capacity": "4", + "description": "CAAPIMMOPERTUIS BORNE 9-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6753085;FRCPIE6753165", + "ref:EU:EVSE": "FRCPIE6753085;FRCPIE6753165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49942100000, + 43.68115900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "1111947", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6190871869349544612", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLX08DTR2ANJHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04974100000, + 46.26028800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9005*02", + "description": "Paris | Rue Monge 55", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P900502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35242000000, + 48.84477000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/KUVQGY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2726549876660573945", + "operator": "Freshmile | FR*FR1", + "ref": "782424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01774000000, + 49.44120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP6462", + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Besançon", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90115300000, + 47.23453900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Mo,Tu,Th,Fr,We 08:00-17:30", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4415921351381072848", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QFNDSB", + "ref": "346454" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61749000000, + 46.23240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Boulangerie Ange", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "description": "Boulangerie Ange - Villeneuve d'Asq", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FR0NXPOOL38T9L", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16427300000, + 50.60612000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLX1KM1P511HFT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "1112337", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P4490805104606181843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00969500000, + 49.32770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS12E12199001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-18", + "charging_station:output": "22 kW", + "description": "RIGNAC - Place Du Portail-Haut", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28804200000, + 44.40968100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA5LTAIKIPWR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "972755", + "operator": "WAAT SAS | FR*WA5", + "ref:EU:EVSE": "FRWA5P4160463258996279025", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21379100000, + 48.86435300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49301C", + "description": "OuestCharge - ePremium - Sevremoine - Petit Lapin", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09597200000, + 47.12211100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DENAT - Rue des Remparts", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-22", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS81E81079001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20499000000, + 43.84713100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681660;531681659;531681658;531681661", + "amenity": "charging_station", + "ref": "FRHPCPNF004133", + "capacity": "4", + "description": "RELAIS HOUCHES NORD", + "ref:EU:EVSE": "FRHPCPNF004133", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2023-07-21", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81170600000, + 45.89842500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CAJARC - Eco-quartier Hermies", + "ref:EU:EVSE": "FRS46E46045001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84443300000, + 44.48673000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65017001", + "charging_station:output": "22 kW", + "description": "ARAGNOUET - PIAU ENGALY", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16123800000, + 42.78520200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SAINT-SAULVE - Place du huit mai", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH03E59544002", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55426600000, + 50.37546900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Plougonven-Rue de la Montagne", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2919100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.71221900000, + 48.52020600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "NOGENT SUR MARNE - Rue Jean Monnet", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94052001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49369300000, + 48.83857600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel B&B Le Havre Harfleur 1", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP90255852", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19666100000, + 49.50394100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "ed9bb690-968a-5856-be6b-340990c7cf72", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Coulounieix Chamiers | Place de la Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68956600000, + 45.19173000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*473*2*_*_;FR*SOD*S*SIGE*473*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE47322;FRSIGPSIGE47312;FRSIGPSIGE47311;FRSIGPSIGE47321", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - RUE PAUL DEMANGE - MEUDON", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22917230000, + 48.78389820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-04-28", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "UZES", + "ref:EU:EVSE": "FRALLPEVCARSUZES", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42988600000, + 43.99061700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR0710EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "RENNES Doneliere", + "ref": "LFR0710EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68509400000, + 48.13012600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "CPO CITEOS Mobive", + "charging_station:output": "43 kW;50 kW;3.7 kW", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "15f9c835-e6a4-5794-be28-367f65d1fd18", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Anglet | Parking Quintaou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51273600000, + 43.48407700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CHAILLE-LES-MARAIS - Parking Rue Du 8 Mai", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85042001", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02199000000, + 46.39301000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO8004012;FRALLEGO8004001;FRALLEGO8004002;FRALLEGO8004011;FRALLEGO8004021;FRALLEGO8004022;FRALLEGO8004031;FRALLEGO8004032;FRALLEGO8007441;FRALLEGO8007442", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO8004012;FRALLEGO8004001;FRALLEGO8004002;FRALLEGO8004011;FRALLEGO8004021;FRALLEGO8004022;FRALLEGO8004031;FRALLEGO8004032;FRALLEGO8007441;FRALLEGO8007442", + "capacity": "10", + "network": "Allego FR, ASF2, AIRE DE LA COUCOURDE", + "description": "Allego FR, ASF2, AIRE DE LA COUCOURDE", + "start_date": "2024-07-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79154300000, + 44.64644700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3879EVCP02;LFR3879EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "VARENNES SUR ALLIER Chazeuil", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3879EVCP02;LFR3879EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39365500000, + 46.31879000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-11", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Ô Délices food - Montech", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PKRMMTC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24336600000, + 43.96224470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLRUNNJCY2D9QM;1017096", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Villard-Reculas, Route des pistes;Réseau eborn/LLRUNNJCY2D9QM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLLRUNNJCY2D9QM;FREBNP6917477963144186919", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03105600000, + 45.09466800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "operator": "EV MAP SAS", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "556420164", + "network": "Renault Faurie Bergerac", + "ref:EU:EVSE": "FREVMP3030;FREVMP7733", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator:email": "contact@evmap.fr", + "description": "Faurie Auto Bergerac", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50481100000, + 44.86870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PETRHGL", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Electroad - Haute-Goulaine", + "start_date": "2022-03-16", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44027107050, + 47.18559021671 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Réseau de recharge Virta Public", + "operator": "Virta", + "start_date": "2022-11-17", + "owner:ref:FR:SIREN": "399780097", + "ref:EU:EVSE": "FRE10E108652", + "operator:email": "support@virta.global", + "amenity": "charging_station", + "capacity": "1", + "description": "CREDIT AGRICOLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61963634246, + 47.11494422473 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "description": "SEMOB DE VINCI", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2020-07-01", + "charging_station:output": "50 kW;43 kW", + "ref": "FRESEPS42223AA", + "ref:EU:EVSE": "FRESEPS42223AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33911800000, + 45.44058000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-01-29;2021-05-06", + "description": "COFRA - AIGUILLON", + "network": "COFRA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*131*4*_*_;FR*SOD*S*OTHR*131*3*_*_;FR*SOD*S*OTHR*131*2*_*_;FR*SOD*S*OTHR*131*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR13141;FROTHPOTHR13131;FROTHPOTHR13111;FROTHPOTHR13121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33466900000, + 44.29525900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "SOLERO DC STATION 2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "FRCPIE6921775;FRCPIE6921785;FRCPIE6921845", + "ref:EU:EVSE": "FRCPIE6921775;FRCPIE6921785;FRCPIE6921845", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-04-12", + "description": "SOLERO DC STATION 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15991400000, + 47.94129900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PECFJGR", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "102281", + "charging_station:output": "22 kW", + "description": "Freshmile France/ECFJGR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80080000000, + 49.29820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP123462", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Le Havre Est Gonfreville", + "operator:email": "support@greenflux.com", + "start_date": "2024-08-08", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22917000000, + 49.51002000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "782583", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2088233857723204184", + "amenity": "charging_station", + "description": "Freshmile France/A4ZETSZ9FZ", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34383700000, + 48.95269900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Autobernard - Renault Trucks Montluel", + "opening_hours": "Mo 07:45-18:00, Tu 07:45-18:00, We 07:45-18:00, Th 07:45-18:00, Fr 07:45-18:00, Sa 07:00-11:00", + "start_date": "2023-12-12", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDMONTLUEL011201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05907900000, + 45.84258500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QKLPPL4XTK", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6397957974556738762", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "22", + "operator": "Freshmile | FR*FR1", + "ref": "521339" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05184300000, + 48.90033400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS28E129205", + "opening_hours": "24/7", + "network": "MODULO - DANGEAU - Pl. du docteur Bilbaut", + "operator": "Modulo", + "ref": "FRS28E129205", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - DANGEAU - Pl. du docteur Bilbaut" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28505600000, + 48.20839000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/KPSZKEMHNF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461799", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P9040948256225475138", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36056500000, + 49.16111400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128090", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRWA9P1810499553368712415", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA6LSYBQMOIN", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10780000000, + 46.46630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50294001", + "description": "MARTINVAST - Le Pont", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-08-25", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66281400000, + 49.60389540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "RABASTENS 1 - Place Auger Gaillard", + "ref:EU:EVSE": "FRS81E81220001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72224695711, + 43.81930368795 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-30;2023-03-14;2023-02-07;2023-01-02;2023-01-13", + "description": "REL.FERRIERES", + "capacity": "16", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRHPCPNF062704", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF062704", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681140;531681139;531681138;531681137;531681136;531681132;531681133;531681134;531681135;531681141;531681142;531681143;531681144;531681145;531681146;531681147", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74097100000, + 48.82845800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-03-28;2021-05-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49007024;FRS49P49007X", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Angers - Notre Dame Du Lac;ANGERS - Avenue Notre Dame du Lac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59190000000, + 47.48010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "46609", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/breuillevert", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PBREUILLEVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41983000000, + 49.36560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH07E59008001", + "charging_station:output": "22 kW", + "description": "ANICHE - Rue Wambrouck", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25148000000, + 50.33082200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30028002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BAGNOLS SUR CEZE - Parking Bourgneuf", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61856500000, + 44.16526700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-06-15", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Pleucadeuc - Rue Pasteur", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLMHCBG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.37607700000, + 47.75809200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;63 kW;22 kW", + "start_date": "2024-01-26;2023-12-19", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "description": "ENGIE Vianeo - A50 Baie de la Ciotat", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89605879" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67108000000, + 43.19389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2023-07-06", + "opening_hours": "24/7", + "ref": "599124", + "ref:EU:EVSE": "FRMGPP93063C", + "description": "Metropolis - Citadine - Romainville - Paul Vaillant Couturier;Métropolis/FR*MGP*P93063*C", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43465900000, + 48.88519800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-30", + "opening_hours": "Mo-Fr 09:00-18:00", + "network": "Réseau de recharge L2B", + "operator:email": "contact@sga-industries.com", + "owner:ref:FR:SIREN": "449431683", + "operator": "SGA Industries", + "amenity": "charging_station", + "charging_station:output": "1.7 kW", + "capacity": "3", + "description": "M2003", + "ref:EU:EVSE": "FRSGAP1M2003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09471400000, + 49.47436500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAU1E0030011", + "operator": "AUTORECHARGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@autorecharge.fr", + "description": "Camping Les Places Dorées - 85160 Saint-Jean-de-Monts", + "ref": "d4d72f69-26a7-4db7-8429-7cdc0f59ae93", + "network": "Réseau de charge Camping Les Places Dorées", + "owner:ref:FR:SIREN": "388179236" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11003453009, + 46.81020598703 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89369704", + "description": "ENGIE Vianeo - A19 Villeroy", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17244400000, + 48.16535900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Yrieix la Perche | Place de la Nation", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c4a5671d-0e83-5aa3-9932-5a6125c54835", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20240500000, + 45.50984200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Aquaspace - BEAUVAIS", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE60BVQA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09345900000, + 49.45384000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "CHALON SUD", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSCHALS", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86130000000, + 46.77441000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "RANG DU FLIERS - Berck", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3659EVCP01;LFR3659EVCP02", + "ref": "LFR3659EVCP01;LFR3659EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60855400000, + 50.41348900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Marseille-13E, 101 Rue Alphonse Daudet", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PYVJUQE7XDA", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40959600000, + 43.32029700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Motte-Servolex, Rue des Allobroges;Réseau eborn/PFDSQONRUW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPPFDSQONRUW;FREBNP8547367948876425829", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346871;PFDSQONRUW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87503100000, + 45.59679800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "472275", + "description": "Freshmile France/URXXMQBEJN", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5578871789543451497", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69566700000, + 48.65224500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-22", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIMCPAR", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "capacity": "9", + "description": "Tissus des Ursules - Maurepas", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92155070000, + 48.75937570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892806;LLJE3WUMOV8L8F", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP9129678617054220869;FREBNPLLJE3WUMOV8L8F", + "start_date": "2023-06-27", + "description": "Réseau eborn/LLJE3WUMOV8L8F;Aix les bains, Victoria", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91178500000, + 45.68984700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo,Th,We,Fr,Sa,Tu,Su 08:00-18:00", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref": "1019283", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "description": "Road/65bd11492017bb001cbe63c4", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP8310549744143397677" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16263800000, + 45.65138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR24721;FROTHPOTHR24711;FROTHPOTHR24731;FROTHPOTHR24741", + "network": "BRIOCHES FONTENEAU", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "BRIOCHES FONTENEAU - BOUFFERE", + "start_date": "2021-09-27", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*247*4*_*_;FR*SOD*S*OTHR*247*3*_*_;FR*SOD*S*OTHR*247*1*_*_;FR*SOD*S*OTHR*247*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35433300000, + 46.95592800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "capacity": "8", + "ref:EU:EVSE": "FRCPIE6601075;FRCPIE6601055;FRCPIE6601065;FRCPIE6605975", + "amenity": "charging_station", + "network": "MANUTAN 19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MANUTAN 19", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6601075;FRCPIE6601055;FRCPIE6601065;FRCPIE6605975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46265400000, + 48.96836700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/L3MM8AGQ9C", + "operator:email": "roaming@freshmile.com", + "ref": "529385", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3006247730045995050", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89648800000, + 43.90668500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7;9", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P8690349833971433656;FRWA2P6253515178327007273", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "598095;597987", + "description": "WAAT/s437352;WAAT/s437347" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36250800000, + 48.90447100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "471060", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "description": "Freshmile France/GBLJBTXKT8", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8220136741478716107" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49561600000, + 48.45562200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "ref": "1234600568", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "socket:type2_combo:output": "240 kW", + "description": "Alpitronic 225kW G2G Margencel", + "charging_station:output": "240 kW;22 kW", + "ref:EU:EVSE": "FRSWSE1234600568", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41408300000, + 46.34316700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "ref": "1191325", + "amenity": "charging_station", + "socket:type2_combo:output": "47 kW", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLQ6M9QAX1BJA1", + "charging_station:output": "22 kW;47 kW", + "ref:EU:EVSE": "FRFR1P3581587245260473705", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.25443000000, + -21.05581700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPRENAULTTRUCKS710001", + "description": "Renault - Trucks Macon", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-07-19", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84466000000, + 46.36420800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - NOGENT-LE-ROTROU - Rue du Commandant Charcot", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - NOGENT-LE-ROTROU - Rue du Commandant Charcot", + "charging_station:output": "0 kW", + "ref": "FRS28E240674", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E240674", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83124300000, + 48.31340700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "801177528", + "ref": " 5aa39699-a74b-42e3-90ce-7167a52af169", + "start_date": "2023-03-23", + "operator:email": "exploitation@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "operator": "FRESHMILE", + "description": "D2 FINANCE", + "network": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97000000000, + 45.73000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P9031200734257251572", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "892848", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/LLKRYRWKV2LQCM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03542300000, + 48.37156300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Gois Automobiles 1 - 22 kW AC;Zephyre/LP001B96", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "423150952", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P89588;FRZP1P4968032215621836861", + "network": "Zephyre;Garage Gois Automobiles", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr", + "ref": "58e8e177-3f5a-44d2-b00c-ba431f310b9e;576062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03183600000, + 46.90975200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE595", + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "description": "Envoye_Special", + "owner:ref:FR:SIREN": "839265957;839265956;839265955;839265954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11492400000, + 50.57644420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDE82/UKXZTU", + "capacity": "2", + "amenity": "charging_station", + "ref": "38929", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS82PUKXZTU", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20252000000, + 44.22670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - RIVE DE GIER", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*131*2*_*_;FR*SOD*S*FAST*131*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST13111;FRIZFPFAST13112;FRIZFPFAST13113;FRIZFPFAST13121;FRIZFPFAST13122;FRIZFPFAST13123" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59513612800, + 45.52001702035 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E4432;FRS41E4433", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E4432;FRS41E4433", + "charging_station:output": "0 kW", + "network": "MODULO - COUR CHEVERNY - Rue Gilette", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - COUR CHEVERNY - Rue Gilette" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45936300000, + 47.50775700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "38785", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/andeville", + "ref:EU:EVSE": "FRS60PANDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16499000000, + 49.26040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*47*2*_*_;FR*SOD*S*LYON*47*1*_*_", + "description": "FRC01 - PLACE DE LEUROPE", + "start_date": "2020-10-22;2020-10-21", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRGLYPLYON4712;FRGLYPLYON4711;FRGLYPLYON4721;FRGLYPLYON4722", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77379700000, + 45.73829300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30257001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT GERVASY - Avenue Saint Didier", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46606400000, + 43.87655600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-05", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Trédion - Place Saint Christophe", + "ref:EU:EVSE": "FRS56PANVVBU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59143400000, + 47.79262700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMECAMPINGMONTANA11", + "operator": "LUMI'IN", + "ref": "ddd39de6-d91a-11ed-afa1-0242ac120002", + "description": "CAMPING MONTANA " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57740030000, + 43.24026020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "capacity": "1", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1061808", + "description": "Mobilygreen CPO/136156cb-d295-4d8a-91ed-ae40af4f4ffb", + "ref:EU:EVSE": "FRMW1P2550183442592568018", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43037000000, + 43.63509800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 21 AVENUE JEAN JAURES - SURESNES", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*183*4*_*_;FR*SOD*S*SIGE*183*3*_*_;FR*SOD*S*SIGE*183*1*_*_;FR*SOD*S*SIGE*183*2*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2021-09-21", + "ref:EU:EVSE": "FRSIGPSIGE18331;FRSIGPSIGE18311;FRSIGPSIGE18321;FRSIGPSIGE18341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20900700000, + 48.86362300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "ref": "FRCG0E001851;FRCG0E001545;FRCG0E001546;FRCG0E001547;FRCG0E001548;FRCG0E001549;FRCG0E001550", + "amenity": "charging_station", + "network": "AUDI - BAUER ROISSY - 95700 - 2", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001851;FRCG0E001545;FRCG0E001546;FRCG0E001547;FRCG0E001548;FRCG0E001549;FRCG0E001550", + "socket:type2_combo:output": "300 kW", + "description": "AUDI - BAUER ROISSY - 95700 - 2", + "start_date": "2024-05-26", + "charging_station:output": "300 kW;22 kW;100 kW", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52205500000, + 48.99653600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2024-01-22", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Dijon Sud Marsannay", + "ref:EU:EVSE": "FRLMSP89899417", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01715800000, + 47.28102400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "b9f74e6a-79c6-5896-b40a-71347789d836", + "capacity": "3", + "description": "MOBIVE | Saint Justin | Parking Allée Gaston Phoebus", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23222300000, + 43.98000300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE77MXWA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-11-22", + "description": "MEAUX - Soldats de la Marne", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89932200000, + 48.96285800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9005272;FRALLEGO9005271;FRALLEGO9003812;FRALLEGO9003811;FRALLEGO9005181;FRALLEGO9005182", + "amenity": "charging_station", + "ref": "FRALLEGO9005272;FRALLEGO9005271;FRALLEGO9003812;FRALLEGO9003811;FRALLEGO9005181;FRALLEGO9005182", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Ségny", + "network": "Allego Carrefour Ségny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07992548000, + 46.29471136000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3268EVCP02;LFR3268EVCP01", + "description": "PROVILLE Paris", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3268EVCP02;LFR3268EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22302100000, + 50.15626200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MONTPELLIER - Rue La Titien", + "ref:EU:EVSE": "FRM34E34172011", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91156000000, + 43.60545600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31645;J8KQANINTN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Le Coteau, Parking rue Bousson;Réseau eborn/J8KQANINTN", + "ref:EU:EVSE": "FREBNPJ8KQANINTN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08614000000, + 46.02533800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "44 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7917311718416564642", + "socket:type2_combo:output": "44 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKL74JF223GBC", + "ref": "892542" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06649600000, + 48.26907800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "AVIGNON - Oratoire", + "start_date": "2024-05-13", + "ref:EU:EVSE": "FRP07E840070042;FRP07E840070041;FRP07E84007004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80152056432, + 43.95018255836 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WZBCXJ;Feurs, Parking rue de l'hotel de ville", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "95987;WZBCXJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPWZBCXJ", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22096000000, + 45.74460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "A7 - Aire Latitude 45 (direction Lyon)", + "start_date": "2023-06-21", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87610900000, + 45.01915800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "description": "Parking gare de Marles-en-Brie P1 P+R - EFFIA", + "ref:EU:EVSE": "FRP01E77229001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86666700000, + 48.73333300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6633755;FRCPIE6633745", + "ref:EU:EVSE": "FRCPIE6633755;FRCPIE6633745", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "network": "BORNES SAVIGNY LE MILLENAIRE 2", + "start_date": "2022-10-12", + "description": "BORNES SAVIGNY LE MILLENAIRE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58250300000, + 48.59604100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Easy Charge/DRGQ6PKL5V", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP8159922144165873856", + "ref": "749172", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19752100000, + 47.37472600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1702", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX17*02", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Place du Général Koënig 12", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28409500000, + 48.88112000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/QQNCEJ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4077324575758826931", + "ref": "510569", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26210800000, + 48.83467800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01334", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "480120203", + "charging_station:output": "22 kW", + "ref": "FRTCBP01334", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96874938484, + 47.13239465084 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "operator:email": "roaming@freshmile.com", + "capacity": "13", + "description": "Freshmile France/BTTYQJ", + "amenity": "charging_station", + "ref": "294368", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929000000, + 43.13600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "BMW - Angers", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDYNAMISM490701", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-06-09", + "opening_hours": "Mo 08:30-12:00, Mo 13:30-18:00, Tu 08:30-12:00, Tu 13:30-18:00, We 08:30-12:00, We 13:30-18:00, Th 08:30-12:00, Th 13:30-18:00, Fr 08:30-12:00, Fr 13:30-18:00, Sa 09:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61678500000, + 47.47145800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2914600", + "charging_station:output": "22 kW", + "description": "Melgven-Aire de Covoiturage de Kerampaou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.80166000000, + 47.88930500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CUXAC-CABARDES - Parking De L'Ecole", + "start_date": "2022-02-27", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11115002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28611111111, + 43.37100830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16", + "ref:EU:EVSE": "FRZPEE170549", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lu- Sa 09:00-19:30", + "network": "RURAL GARDEN", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "E170549", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "449926302", + "description": "RURAL GARDEN - CENTRAKOR EXT GAUCHE " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47436021036, + 47.51236168510 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09105001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "charging_station:output": "22 kW", + "description": "DAUMAZAN SUR ARIZE - Place De La Bascule", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30829200000, + 43.14411000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/ault11nov1918", + "ref": "470997", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80P5282099025781145541", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45525700000, + 50.11000900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "amenity": "charging_station", + "start_date": "2024-09-24", + "description": "IZIVIA FAST - MCDONALDS - ORANGE", + "ref": "FR*SOD*S*FAST*273*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST27313;FRIZFPFAST27311;FRIZFPFAST27312", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79964726932, + 44.13603867721 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44045B", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - eSmart - Cordemais - Espace Culturel", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88000000000, + 47.28813800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77P77131A;FRS77E77131001", + "description": "Coulommiers - Place Pasteur;COULOMMIERS - Place Pasteur", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH61AQCGJ7RC8DDB28NY", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-16;2020-06-25", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08583800000, + 48.81382000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000085920;FRGSPP1000085959", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "description": "THALAZUR BAIE DES ANGES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "THALAZUR BAIE DES ANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11931139804, + 43.60961334611 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - CHÂTEAU RENAULT – Château d’eau", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHÂTEAU RENAULT – Château d’eau", + "ref": "FRS37E220239;FRS37E220238", + "ref:EU:EVSE": "FRS37E220239;FRS37E220238" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91261509000, + 47.59588842000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "90d9fa08-8974-5a04-9b7a-5de21f86b32c", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Merviller" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77470300000, + 48.48056400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "description": "Hôtel Mercure Orange Centre", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Hôtel Mercure Orange Centre", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P84087A", + "start_date": "2021-07-20", + "ref": "FRG10P84087A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78804000000, + 44.13691000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "34f77fd4-dfd7-588e-a526-4770268d950b", + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | BAZAS | Parking des Tilleuls", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21504600000, + 44.43374800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068024", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Gambetta", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-03-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49248720000, + 48.79692230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6521605", + "capacity": "2", + "description": "OCEAN - AIX AIX 1", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6521605", + "network": "OCEAN - AIX AIX 1", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34967600000, + 43.49412400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "477804", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/ZEWFPVSRKI", + "ref:EU:EVSE": "FRLE2P6747333109892376412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774900000, + 48.95311400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | La Roque-Gageac | Place du 8 Mai", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2b4de822-ef15-5e0c-bf7d-8f530a8bcc2c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18357000000, + 44.82527200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB40018A", + "description": "Réseau AlterBase - Coulon - Aire de l'Autremont", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58968400000, + 46.32132400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Airbus - Marignane - parking Nm12", + "capacity": "8", + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS3130010", + "amenity": "charging_station", + "start_date": "2023-06-26;2023-01-05", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23069600000, + 43.43867300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT PIERRE LES NEMOURS", + "ref:EU:EVSE": "LFR1866EVCP02;LFR1866EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR1866EVCP02;LFR1866EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67582400000, + 48.26978500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "414723", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/BXRRLVQJLH", + "ref:EU:EVSE": "FRM45P5590375466859798927" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91052600000, + 47.90514400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ENTRAUNES - PARKING VILLAGE", + "ref": "FR*SOD*S*WIIZ*154*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ15412;FRA16PWIIZ15411", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2022-08-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85383700000, + 44.08881000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5560529346533019687", + "operator:email": "roaming@freshmile.com", + "ref": "485142", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/RJWGDOQTTA", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24703600000, + 44.45071200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22 kW;150 kW;100 kW", + "capacity": "20", + "description": "La Cartonnerie - Dammarie-les-Lys", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBDMCAR", + "start_date": "2024-09-30;2024-07-19;2024-09-23", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62424851953, + 48.52022458555 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/SFUJIVKVOR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPSFUJIVKVOR", + "ref": "75182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25013800000, + 46.19575000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPNIMJL", + "start_date": "2024-05-22", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "description": "Nîmes - Jardiland" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38286000000, + 43.83050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-12-01;2023-08-31", + "ref:EU:EVSE": "FRP07E132020021;FRP07E13202002", + "description": "MARSEILLE - Quai d’Arenc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36720500000, + 43.31244100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6706075;FRCPIE6706085;FRCPIE6706125", + "amenity": "charging_station", + "start_date": "2023-03-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "S.U VAL DURANCE BORNE 1-2", + "network": "S.U VAL DURANCE BORNE 1-2", + "ref": "FRCPIE6706075;FRCPIE6706085;FRCPIE6706125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91270600000, + 44.23628200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/D4JETRQTHU", + "ref": "749169", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP7307072274314024562", + "operator": "Easy Charge | FR*ECH", + "socket:type2_combo:output": "90 kW", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38353400000, + 47.70610800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A8 La Via Julia Augusta", + "operator": "Greenflux", + "socket:type2_combo:output": "300 kW;72 kW", + "start_date": "2023-04-27", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "50 kW;300 kW;22 kW;72 kW", + "ref:EU:EVSE": "FRVIAP103114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39814300000, + 43.75476300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20746240000, + 49.97256210000 + ], + [ + 1.20744730000, + 49.97258110000 + ], + [ + 1.20740160000, + 49.97258360000 + ], + [ + 1.20734010000, + 49.97258710000 + ], + [ + 1.20656890000, + 49.97209550000 + ], + [ + 1.20653540000, + 49.97206180000 + ], + [ + 1.20656640000, + 49.97202670000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4401994645752760054", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "578999", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XEIHBKLJME", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37212400000, + 47.56237000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-06-03", + "ref:EU:EVSE": "FRV75PPX0802", + "opening_hours": "24/7", + "ref": "FR*V75*PPX08*02", + "description": "Paris | Rue du Chateaubriand 19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30088860000, + 48.87347650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PQGPKVC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "120773", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QGPKVC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53230000000, + 48.54420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "DRIVECO", + "description": "Volvo - Montévrain", + "socket:type2_combo:output": "24 kW;200 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPELYSEEVOLVO771441", + "charging_station:output": "200 kW;22.08 kW;24 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2021-06-30;2021-07-26;2023-01-31", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75677200000, + 48.85207000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "description": "SYDED/VVCNFQ", + "opening_hours": "24/7", + "ref": "182576", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS25PVVCNFQ", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14584000000, + 47.10680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - VEAUGUES - Eglise", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VEAUGUES - Eglise", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E200482;FRS18E200483", + "ref": "FRS18E200482;FRS18E200483" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75716000000, + 47.25760800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-01", + "amenity": "charging_station", + "network": "Borne de charge 2X22 KW WITTY PARK", + "opening_hours": "Mo-Fr 14:00-18:00", + "capacity": "4", + "description": "Le magic, VITRE", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "819285149", + "operator:email": "gene.elec35@gmail.com", + "charging_station:output": "11 kW", + "operator": "GENE ELEC 35", + "ref": "58e96c29-ba02-4754-b0c4-98a4a1056975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21000000000, + 48.12000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPQPRK10491;FRQPKPQPRK10471;FRQPKPQPRK10451;FRQPKPQPRK104361;FRQPKPQPRK104351;FRQPKPQPRK104291;FRQPKPQPRK104281;FRQPKPQPRK104261;FRQPKPQPRK104241;FRQPKPQPRK104201;FRQPKPQPRK104191;FRQPKPQPRK104181;FRQPKPQPRK104161;FRQPKPQPRK104151;FRQPKPQPRK104141;FRQPKPQPRK104111;FRQPKPQPRK104101;FRQPKPQPRK104121;FRQPKPQPRK104131;FRQPKPQPRK104171;FRQPKPQPRK104211;FRQPKPQPRK104221;FRQPKPQPRK104231;FRQPKPQPRK104251;FRQPKPQPRK104271;FRQPKPQPRK104301;FRQPKPQPRK104311;FRQPKPQPRK104321;FRQPKPQPRK104331;FRQPKPQPRK104341;FRQPKPQPRK10441;FRQPKPQPRK10461;FRQPKPQPRK10481", + "charging_station:output": "7.36 kW", + "description": "QPARK - LA DEFENSE - SAISONS", + "opening_hours": "24/7", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "start_date": "2022-01-11;2022-01-01;2022-01-03;2022-01-02", + "ref": "FR*SOD*S*QPRK*104*8*_*_;FR*SOD*S*QPRK*104*7*_*_;FR*SOD*S*QPRK*104*6*_*_;FR*SOD*S*QPRK*104*4*_*_;FR*SOD*S*QPRK*104*36*_*_;FR*SOD*S*QPRK*104*35*_*_;FR*SOD*S*QPRK*104*34*_*_;FR*SOD*S*QPRK*104*32*_*_;FR*SOD*S*QPRK*104*29*_*_;FR*SOD*S*QPRK*104*28*_*_;FR*SOD*S*QPRK*104*27*_*_;FR*SOD*S*QPRK*104*25*_*_;FR*SOD*S*QPRK*104*24*_*_;FR*SOD*S*QPRK*104*22*_*_;FR*SOD*S*QPRK*104*21*_*_;FR*SOD*S*QPRK*104*14*_*_;FR*SOD*S*QPRK*104*12*_*_;FR*SOD*S*QPRK*104*11*_*_;FR*SOD*S*QPRK*104*10*_*_;FR*SOD*S*QPRK*104*13*_*_;FR*SOD*S*QPRK*104*15*_*_;FR*SOD*S*QPRK*104*16*_*_;FR*SOD*S*QPRK*104*17*_*_;FR*SOD*S*QPRK*104*18*_*_;FR*SOD*S*QPRK*104*19*_*_;FR*SOD*S*QPRK*104*20*_*_;FR*SOD*S*QPRK*104*23*_*_;FR*SOD*S*QPRK*104*26*_*_;FR*SOD*S*QPRK*104*30*_*_;FR*SOD*S*QPRK*104*31*_*_;FR*SOD*S*QPRK*104*33*_*_;FR*SOD*S*QPRK*104*5*_*_;FR*SOD*S*QPRK*104*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25274000000, + 48.89059500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81033001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BLAYE LES MINES - Place Salvador Allende", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15614100000, + 44.02688000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "bench" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20639990000, + 49.97205020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freney;IONITY GMBH", + "description": "Freney;IONITY Freney", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE403704;FRIOYE403703;FRIOYE403702;FRIOYE403701;FRIONE403700;FRIOYE403751;FRIOYE403752;FRIOYE403753", + "capacity": "5;7", + "owner:ref:FR:SIREN": "838436145", + "ref:EU:EVSE": "FRIOYE403704;FRIOYE403703;FRIOYE403702;FRIOYE403701;FRIONE403700;FRIOYE403751;FRIOYE403752;FRIOYE403753", + "opening_hours": "24/7", + "operator": "IONITY", + "start_date": "2019-04-17;2019-04-19", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62305900000, + 45.19676600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2021-04-20", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44161A;FRS44E44161001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SAINT-GILDAS-DES-BOIS - Le Clos Du Four;OuestCharge - Diva Sp - Saint-Gildas-Des-Bois - Four", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03847400000, + 47.51787700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77403A;FRS77E77403001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-25;2016-08-10", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61FG0J89KJ37MYHJGE", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "SAINT-BRICE - Avenue Patton;St-Brice" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32474400000, + 48.56685600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "AIBES - Rue du Quievelon", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH02E59003001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09269000000, + 50.23674800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - ST CYR SUR LOIRE - Rue Thérèse et René Planiol", + "ref": "FRS37E68139;FRS37E68138", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E68139;FRS37E68138", + "start_date": "2024-03-07", + "description": "MODULO - ST CYR SUR LOIRE - Rue Thérèse et René Planiol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67082500000, + 47.43124100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/GWMRND", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PGWMRND", + "network": "Mobilité électrique 56", + "ref": "25091" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75518000000, + 47.65070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW", + "capacity": "2", + "description": "MEY02 - RUE JEAN-LOUIS BARRAULT", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*17*1*_*_;FR*SOD*S*LYON*17*2*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON1712;FRGLYPLYON1711;FRGLYPLYON1721;FRGLYPLYON1722", + "start_date": "2020-02-14", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00972800000, + 45.76757100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "320 kW", + "amenity": "charging_station", + "charging_station:output": "320 kW;22 kW", + "ref": "1075050;1075011", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "description": "Mobilize Fast Charge/0305714b-0b22-4e9e-8132-9822be81de7d;Mobilize Fast Charge/ca680d95-1713-4508-b3a7-a9a82d483ce9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMFCP101444414342762639;FRMFCP4624419183122547981", + "capacity": "1;6", + "network": "Mobilize Fast Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38448600000, + 45.45958800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRSSDPBYMYCAR741001", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Peugeot - ByMyCar - Annemasse", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "start_date": "2019-11-25", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25664000000, + 46.19409900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6589755", + "ref": "FRCPIE6589755", + "description": "SONEPAR CONNECT BRIANCON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT BRIANCON", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62750200000, + 44.88341000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/VWWWTFPIOK", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P7669532663164266910", + "charging_station:output": "22 kW", + "ref": "706022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378800000, + 47.23678400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Castelnau de Medoc | Parking Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "de6b2378-cf17-52a0-b9da-ebb1870c0d48", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79720300000, + 45.02573800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95211001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ENNERY - Chemin d'une ruelle à l'autre ", + "start_date": "2024-02-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11038911518, + 49.07841726633 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO7002052;FRALLEGO7002032;FRALLEGO7002031;FRALLEGO7001022;FRALLEGO7001011;FRALLEGO7001012;FRALLEGO7001021;FRALLEGO7002051", + "capacity": "8", + "amenity": "charging_station", + "network": "Allego Klepierre Toulouse Saint-Orens", + "charging_station:output": "0 kW", + "start_date": "2023-11-01", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO7002052;FRALLEGO7002032;FRALLEGO7002031;FRALLEGO7001022;FRALLEGO7001011;FRALLEGO7001012;FRALLEGO7001021;FRALLEGO7002051", + "operator:email": "info@allego.eu", + "description": "Allego Klepierre Toulouse Saint-Orens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51869075000, + 43.56543507000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SERVIAN - Entrepreneurs", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3976EVCP03", + "ref:EU:EVSE": "LFR3976EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31875000000, + 43.39172000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PPK9OWIO0TU", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Aix-En-Provence, Cours Saint-Louis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45306500000, + 43.52981900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "description": "SDEY/TJJKSFHD5Q", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P3922904025835559289", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402626" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16571800000, + 48.33948300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ28411;FRA16PWIIZ28412;FRA16PWIIZ28421;FRA16PWIIZ28422", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FREJUS - PARKING SPARIAT", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*284*1*_*_;FR*SOD*S*WIIZ*284*2*_*_", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74400400000, + 43.42319490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/SuperUgren", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5805186223203542269", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009221", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29854000000, + 43.76400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PNETLRD", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2022-01-10", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "description": "Netto - Lourdes", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03926190000, + 43.10887410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-11-20", + "ref": "L4TPSNGBZU", + "description": "Craponne-Sur-Arzon, Avenue de la Gare", + "ref:EU:EVSE": "FREBNPL4TPSNGBZU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85066020000, + 45.33388671000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/0BBAC64D-50F6-4203-84A1-BEC843137EAF", + "ref:EU:EVSE": "FREVZP1736914097023799580", + "capacity": "2", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref": "1181322", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41868400000, + 47.04340600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - LA ROCHE-CHALAIS", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*609*1*_*_;FR*SOD*S*OTHR*609*2*_*_", + "start_date": "2023-05-09", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR60922;FROTHPOTHR60921;FROTHPOTHR60911;FROTHPOTHR60912", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00581400000, + 45.14613400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPIOJV93PGDX;FREBNP3611579629779424327", + "ref": "IOJV93PGDX;346763", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Baldoph, Terraillet 1;Réseau eborn/IOJV93PGDX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96006200000, + 45.53076700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/QRKRSXDLOB;Crachier, Rue des Écoliers", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPQRKRSXDLOB", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "QRKRSXDLOB;30128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22312000000, + 45.54915000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-11-27", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL ROUEN PARC DES EXPOS ZÉNITH", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06301500000, + 49.39971900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/EG8ALQQG74", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1951624584394578298", + "operator": "Freshmile | FR*FR1", + "ref": "892005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38006200000, + 43.67342500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1503", + "charging_station:output": "7 kW;3 kW", + "ref": "FR*V75*PPX15*03", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Miollis 21", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30380760000, + 48.84580680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MGREFT", + "ref:EU:EVSE": "FRFR1PMGREFT", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "294359", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09795000000, + 46.07450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPOLETTA202321", + "description": "Oletta - Mairie", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-05-24", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35803000000, + 42.63211600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900034", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PPTARCHEABRIAND", + "start_date": "2016-07-08", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15578000000, + 49.30327000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Dinan-Parking rue Desroyer", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22050001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05620000000, + 48.45610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HOUILLES - Rue De L'Abbe Gregoire", + "start_date": "2022-02-18", + "ref:EU:EVSE": "FRY10E78311002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18986940000, + 48.92549720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE177", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-11-15", + "capacity": "3", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "description": "LF_Group" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15652500000, + 50.60542200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATL6MVZ6OD8", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP1280943190160775158", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "1169196", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24501600000, + 48.92616300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE402251;FRIOYE402201;FRIOYE402202;FRIOYE402203;FRIOYE402204;FRIOYE402252;FRIOYE402253", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Longué la Couaille", + "opening_hours": "24/7", + "description": "Longué la Couaille", + "start_date": "2019-06-26", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE402251;FRIOYE402201;FRIOYE402202;FRIOYE402203;FRIOYE402204;FRIOYE402252;FRIOYE402253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517000, + 47.41925327000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E93668;FRS51E93669", + "ref": "FRS51E93668;FRS51E93669", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ST BRICE COURCELLES - 4 août 1789", + "network": "MODULO - ST BRICE COURCELLES - 4 août 1789" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98191400000, + 49.26254000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-03-02;2023-06-08", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS65E65286002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LOURDES - Gare", + "charging_station:output": "18 kW;150 kW;22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04229000000, + 43.09965000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE001902;FRIENE001901", + "description": "Dormans", + "start_date": "2023-01-11", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE001902;FRIENE001901", + "capacity": "4", + "network": "Dormans", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61308800000, + 49.06155800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34209001", + "start_date": "2022-01-16", + "description": "PORTIRAGNES - Avenue De L'Egalité", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33817490000, + 43.30416650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-02-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61001B", + "ref": "SE61-ALEN-002", + "description": "ALENCON - Place du Général J.Bonet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09363590000, + 48.43197340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "682154", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/HDIHBPSJPW", + "ref:EU:EVSE": "FRFR1P7106752375848937698" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49386600000, + 45.17546500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "120638", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PKYHUKN", + "capacity": "4", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "description": "Roulez Électrique En Haute-Garonne/KYHUKN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65857600000, + 42.97082100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "description": "Ford - Annemasse", + "start_date": "2020-11-25", + "ref:EU:EVSE": "FRSSDPMAURINFORD741001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26459600000, + 46.20130800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRCARP74303A", + "start_date": "2023-07-25", + "socket:type2_combo:output": "25 kW", + "description": "Carrefour express Villaz", + "network": "Carrefour express Villaz", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRCARP74303A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19213020000, + 45.95102060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "807940069;807940070", + "ref:EU:EVSE": "FRPINARELLO11;FRLUMEVILLAPOGGIOLI11;FRLUMEPINARELLO11;FRPINARELLO12;FRPINARELLO13;FRPINARELLO14", + "ref": "64117dc4-cf8e-11ed-afa1-0242ac120002;e09c9636-039a-11ee-be56-0242ac120002", + "network": "LUMI'IN", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "SARL C&M;VillaPoggioli1 ", + "capacity": "1;4", + "start_date": "2023-03-31;2023-06-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34513560000, + 41.69983680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint Clément des Baleines | Rue du Centre", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "62b8609e-3d27-5e1f-83e0-e20dc56f8137", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54219900000, + 46.22903000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE45SADA", + "start_date": "2024-07-11", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Ecole du Bourgneuf - SAINT DENIS EN VAL", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95682300000, + 47.87709400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP7863567270822652568", + "capacity": "3", + "description": "BornEco/6560a91ed66357a5498bd8b3", + "ref": "1018971", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62858700000, + 46.24887900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONETEAU - Rome", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3979EVCP04;LFR3979EVCP02;LFR3979EVCP01;LFR3979EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3979EVCP04;LFR3979EVCP02;LFR3979EVCP01;LFR3979EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55182100000, + 47.84945700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PJIJE5L9RS2", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Simiane-Collongue, 4 Rue lambert", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43671100000, + 43.42973100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "402689", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P2893169921976599106", + "charging_station:output": "22 kW", + "description": "SDEY/YIAMVIOUWW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35926800000, + 47.91258800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P06270*VNL*COOLWORK", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP06270VNLCOOLWORK", + "operator:email": "contact@e55c.com", + "start_date": "2021-02-19", + "description": "VILLENEUVE-LOUBET - COOLWORK", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13006700000, + 43.64129700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "412049", + "network": "Freshmile France", + "description": "Freshmile France/AUVTU2DO3E", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3068562991743565092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47975000000, + 47.50900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUMBR", + "description": "Mairie De Montbronn - Montbronn", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32918260000, + 48.99837100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FREBNPLLTHE8SPC18DEJ;FREBNP6073306566161309877", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "LLTHE8SPC18DEJ;1069236", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07", + "description": "Callas, Place du 18 Juin 1944;Réseau eborn/LLTHE8SPC18DEJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53975200000, + 43.59322500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "network": "Fastned Aire-jardin des Causses du Lot", + "operator": "Fastned France", + "capacity": "8", + "description": "Fastned Aire-jardin des Causses du Lot", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "ref": "FRFASE33008", + "ref:EU:EVSE": "FRFASE33008", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56813533000, + 44.65792034000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR82142;FROTHPOTHR82141;FROTHPOTHR82132;FROTHPOTHR82131;FROTHPOTHR82121;FROTHPOTHR82112;FROTHPOTHR82111;FROTHPOTHR82122;FROTHPOTHR82151;FROTHPOTHR82152;FROTHPOTHR82161;FROTHPOTHR82162", + "description": "ES/ LOHR INDUSTRIE", + "opening_hours": "24/7", + "network": "ES B2B", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*821*2*_*_;FR*SOD*S*OTHR*821*1*_*_;FR*SOD*S*OTHR*821*3*_*_;FR*SOD*S*OTHR*821*4*_*_;FR*SOD*S*OTHR*821*5*_*_;FR*SOD*S*OTHR*821*6*_*_", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58981490000, + 48.52768880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPRMGF2XIQG6", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/RMGF2XIQG6", + "ref": "96020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36409100000, + 45.40502000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPIXWH7RUKR0;FREBNIXWH7RUKR0", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "75314;IXWH7RUKR0", + "description": "La Garde-Freinet, Rue De La Mairie;Réseau eborn/IXWH7RUKR0", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46939000000, + 43.31777900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*420*4*_*_;FR*SOD*S*OTHR*420*2*_*_;FR*SOD*S*OTHR*420*1*_*_;FR*SOD*S*OTHR*420*3*_*_", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR42031;FROTHPOTHR42011;FROTHPOTHR42021;FROTHPOTHR42041", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-27", + "description": "SUPER U - PLEYBER-CHRIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.86743800000, + 48.51715400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "757053", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4343870135417497410", + "description": "Freshmile France/BPFMD6OOQ0", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459800000, + 45.44025600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Verniolle, France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP33181", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64062600000, + 43.07479200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLYYCMJUVQ11NZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P7821691086070903675", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1172622", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59146800000, + 45.88790500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "280c349a-2107-5635-960c-dd8b3cd0c1a9", + "opening_hours": "24/7", + "description": "Station-service de l'aire de Havrincourt", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08948200000, + 50.12245100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6003679778756244603", + "charging_station:output": "100 kW;50 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "29", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Freshmile France/LNX7DVKRZO", + "ref": "412064", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992000000, + 48.91590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P803593983553236193", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/JVJN0XRMBD", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461790" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13030600000, + 49.38189300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Logis Maison Glenn Anna ", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P00017", + "network": "Logis Maison Glenn Anna ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "539060947", + "charging_station:output": "22 kW", + "ref": "8dd928a8-96f4-4389-b11c-fd0d94f07d95", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95461600000, + 47.70388100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "GGP_Cambrai_ext", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-08-19", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26371400000, + 50.17949200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PORCHEVILLE - Boulevard De La Republique", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78501001", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77661670000, + 48.97230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-14;2024-05-28", + "network": "Territoire de Energie TE53;TEM53", + "ref:EU:EVSE": "FRS53E53211001;FRS53P53211A", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Saint-Denis-De-Gastines - Tilleuls;SAINT-DENIS-DE-GASTINES - Place Des Tilleuls" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86100710000, + 48.34244771000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PRADES - Rue De L'Agriculture", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66149002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42543900000, + 42.61918800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "ref": "FRIENE043802;FRIENE043801", + "capacity": "4", + "ref:EU:EVSE": "FRIENE043802;FRIENE043801", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Plufur", + "start_date": "2024-10-07", + "network": "Plufur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58767100000, + 48.60689900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35167001B1", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "MARTIGNE FERCHAUD - 12 rue lucien vignel ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32006800000, + 47.83200500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "start_date": "2021-06-07", + "ref": "SE61-VIMO-001", + "network": "61mobility", + "ref:EU:EVSE": "FRS61P61508A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "VIMOUTIERS - Rue Comb. d'Afrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19997000000, + 48.92758600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "801618", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/JL2912T1FX", + "ref:EU:EVSE": "FRFR1P2618610084384526555", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66828000000, + 50.23791700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "start_date": "2017-03-06", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "description": "Miramont-de-Comminges, Verdun", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PNXQUHM", + "ref": "NXQUHM", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74389000000, + 43.09350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-11-23", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92071005", + "capacity": "0", + "network": "SIPPEREC", + "description": "SCEAUX - Avenue Paul Langevin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29225800000, + 48.78395400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "JMJ Automobiles - Volvo Perrigny - 39570", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "FRCG0E000683;FRCG0E000682;FRCG0E000681", + "capacity": "3", + "network": "JMJ Automobiles - Volvo Perrigny - 39570", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "ref:EU:EVSE": "FRCG0E000683;FRCG0E000682;FRCG0E000681", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57557400000, + 46.66857800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*198*1*_*_", + "ref:EU:EVSE": "FRM06PNICE19812;FRM06PNICE19811", + "description": "ILONSE - PARKING VILLAGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09861080035, + 44.03234718067 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Nérac | le Pin", + "ref": "6204e38e-bac6-5264-a8b2-702a55cca2d3", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33349800000, + 44.13789000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*336*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33611;FRSIGPSIGE33612", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 4 ROUTE STRATEGIQUE - CORMEILLES-EN-PARISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20010000000, + 48.98350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76039001", + "start_date": "2024-06-14", + "description": "LES AUTHIEUX SUR LE PORT SAINT OUEN - Rue Du Docteur Gallouen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13206700000, + 49.34103700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3246EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SANNOIS", + "ref:EU:EVSE": "LFR3246EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26169700000, + 48.96540700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Fursac | Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "ref": "48670811-49ac-5a97-939b-da12c58974ed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51289100000, + 46.14672400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "34021", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PCQADCS", + "description": "SDE82/CQADCS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99106000000, + 43.88040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P83350*RAM*T0RPEZ", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2021-07-06", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83350RAMT0RPEZ", + "description": "CAVE TORPEZ - SAINT TROPEZ", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63561300000, + 43.25612100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "ST SULPICE SUR RISLE - La Pichotiere", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3889EVCP02;LFR3889EVCP01", + "ref": "LFR3889EVCP02;LFR3889EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66124100000, + 48.76256400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PITMCMC", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-10-06", + "description": "Intermarché - Commercy", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58509680000, + 48.75545040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/HQJOCGGRNM;Beauzac, Place du Pré Clos", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPHQJOCGGRNM;FREBNP2297124458733813724", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref": "541961;HQJOCGGRNM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09876000000, + 45.25787200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref": "FRETIP62624A", + "ref:EU:EVSE": "FRETIP62624A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - DASSIN Cerise Noyelles Godault", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98603755897, + 50.41210565627 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking Nantes Cité des Congrès - EFFIA", + "ref:EU:EVSE": "FRP01E44109007", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "9", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54340260000, + 47.21156050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT183001", + "description": "Carrefour Market - Sancerre", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83707000000, + 47.33822500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPFLBBV", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Fouquières-les-Bethune - Bureau Vallée", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62092000000, + 50.51161300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-11-17", + "charging_station:output": "3.68 kW", + "ref:EU:EVSE": "FROTHPOTHR53222;FROTHPOTHR53221;FROTHPOTHR53211;FROTHPOTHR53212", + "ref": "FR*SOD*S*OTHR*532*2*_*_;FR*SOD*S*OTHR*532*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "description": "INTERMARCHE - FONTAINE FRANCAISE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36984100000, + 47.52682800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAUDRY MAIRIE", + "description": "CAUDRY MAIRIE", + "ref": "FRCPIE6735385", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6735385", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-06-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40985600000, + 50.12472000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/CAGYQWVCSD", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3022743184543443474", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "521228" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05664400000, + 48.60948900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-01-27", + "description": "PARLY STATION 2", + "ref:EU:EVSE": "FRURWPUNIB6142;FRURWPUNIB6141;FRURWPUNIB6131;FRURWPUNIB6121;FRURWPUNIB6112;FRURWPUNIB6111;FRURWPUNIB6102;FRURWPUNIB6101;FRURWPUNIB6122;FRURWPUNIB6132", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096", + "ref": "FR*SOD*S*UNIB*6*14*_*_;FR*SOD*S*UNIB*6*12*_*_;FR*SOD*S*UNIB*6*11*_*_;FR*SOD*S*UNIB*6*10*_*_;FR*SOD*S*UNIB*6*13*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11409600000, + 48.82890500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "682214", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8862033606429989914", + "opening_hours": "24/7", + "description": "Freshmile France/Q0DFHFOZKC", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72556400000, + 46.42874200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1725", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Caen, France", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42480200000, + 49.16398000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "597732", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3197277697892133650", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/B3S9SCNTCJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13428600000, + 49.34387600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Intermarché Yssingeaux", + "capacity": "1;2", + "operator": "E-TOTEM", + "description": "Intermarché Yssingeaux", + "amenity": "charging_station", + "start_date": "2020-12-09;2020-12-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P43268A", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P43268A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11610330000, + 45.14378230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P2977692112532032513", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461886", + "description": "MobiSDEC/Q8JNTUN4KO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39930900000, + 49.16081600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LA PRIMAUBE - Rue de l'Esplanade", + "ref:EU:EVSE": "FRS12E12133002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55941600000, + 44.28886100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4LT25W7ORB", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "880182", + "operator": "WAAT SAS | FR*WA4", + "ref:EU:EVSE": "FRWA4P3122013049273333742", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11814500000, + 49.48386100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-10", + "description": "SEVREMOINE - Aire de covoiturage du Petit Lapin", + "ref:EU:EVSE": "FRS49E49259001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09597194200, + 47.12211227417 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-06", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8106500522;FRS81E8106500521;FRS81E8106500511;FRS81E8106500512", + "owner:ref:FR:SIREN": "258100072", + "description": "CASTRES - Place du 8 Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24204415281, + 43.60466137294 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH16E59639001", + "start_date": "2022-09-05", + "description": "WARGNIES LE GRAND - Zac de la vallée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64409400000, + 50.30467000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-04-15;2024-04-19;2024-04-30", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44209B;FRS44E44209003", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "TREILLIERES - 68 Rue De La Mairie;OuestCharge - Diva Sp - Treillieres - Mairie (68)", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62130500000, + 47.32927300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "description": "SIEG 63/FR*S63*P63352*C", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63352C", + "ref": "518429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23733300000, + 45.45690700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROUSIES - Rue de la Mairie", + "start_date": "2019-12-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59514001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00544400000, + 50.27259800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34052001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "description": "CAPESTANG - Avenue De L'Occitanie Parking Centre Médical", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04500000000, + 43.33000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-16", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CRETEIL - Rue Jean Gabin", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44703921445, + 48.78242763956 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2024-05-13", + "description": "ENGIE Vianeo - B&B Hôtel Paris Noisy le Sec", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90197713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44188400000, + 48.89234300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Montpon Menesterol | Place Gambetta", + "ref": "8b3fd2c4-bdde-5906-9663-3d8632a49eaf", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16307600000, + 45.00933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*445*2*_*_;FR*SOD*S*SIGE*445*1*_*_", + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 22-28 RUE HENRI BARBUSSE - CLICHY", + "charging_station:output": "50 kW;22 kW", + "start_date": "2024-01-24;2024-01-23", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE44522;FRSIGPSIGE44521;FRSIGPSIGE44512;FRSIGPSIGE44511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30359370000, + 48.89889070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSVILEB", + "start_date": "2023-04-04", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "VILLIERS EN BIERE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58174000000, + 48.49776200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR4095EVCP04;LFR4095EVCP03;LFR4095EVCP02;LFR4095EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SALON DE PROVENCE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4095EVCP04;LFR4095EVCP03;LFR4095EVCP02;LFR4095EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07643400000, + 43.63772400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Ustaritz | Place du Château", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "2b3e5507-4b07-5102-9914-781b0a1346f3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45562400000, + 43.39710200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "SAINT-SATURNIN-LES-AVIGNON - Place de la Piboule", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "1d8760d9-011b-564f-9829-a2e07696e373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92995500000, + 43.95616400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78516001", + "description": "RAIZEUX - Route des Ponts" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68299160000, + 48.62396550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3689EVCP05;LFR3689EVCP04;LFR3689EVCP01;LFR3689EVCP02;LFR3689EVCP03", + "capacity": "10", + "description": "ST PRIEST Grenoble", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3689EVCP04;LFR3689EVCP03;LFR3689EVCP01;LFR3689EVCP02;LFR3689EVCP05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95913400000, + 45.71651600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PJARDAD", + "start_date": "2024-10-01", + "description": "Jardiland Dadonville (45)", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25501742894, + 48.16199087327 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLTHE8SJHUIZK6;1150107", + "ref:EU:EVSE": "FREBNP4558876185098234565;FREBNPLLTHE8SJHUIZK6", + "description": "Lanslevillard, Val Cenis, parking office tourisme;Réseau eborn/LLTHE8SJHUIZK6", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91208900000, + 45.29046200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;300 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "network": "e-Vadea;E-VADEA", + "charging_station:output": "43 kW;300 kW;22 kW;50 kW;150 kW", + "amenity": "charging_station", + "capacity": "13;30", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA", + "start_date": "2023-12-20", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "972491", + "description": "E-VADEA/FR*EVA*P31161*A;e-Vadea - Deyme - A61 Toulouse Sud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54972800000, + 43.48261000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Carrefour Contact - Tournay", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PCRFTRN", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24015300000, + 43.17629900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "start_date": "2024-09-30;2024-09-12", + "description": "Carrefour Market - Sainte-Sigolène", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT436001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24025900000, + 45.24888400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42218AX", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRESEPS42218AX", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2020-09-04", + "description": "SEMOB Puits de la Loire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37328900000, + 45.44467800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPRTEF5561;FROTHPRTEF5541;FROTHPIZIG58031;FROTHPIZIG580281;FROTHPIZIG580191;FROTHPIZIG580181;FROTHPIZIG580171;FROTHPIZIG580161;FROTHPIZIG58011;FROTHPIZIG580151;FROTHPIZIG580201;FROTHPIZIG58021;FROTHPIZIG58041;FROTHPIZIG58051;FROTHPIZIG58061;FROTHPRTEF3721;FROTHPRTEF3731;FROTHPRTEF5511;FROTHPRTEF5531;FROTHPRTEF5551", + "ref": "FR*SOD*S*IZIG*580*21*_*_;FR*SOD*S*IZIG*580*23*_*_;FR*SOD*S*IZIG*580*25*_*_;FR*SOD*S*IZIG*580*24*_*_;FR*SOD*S*IZIG*580*27*_*_;FR*SOD*S*IZIG*580*26*_*_;FR*SOD*S*IZIG*580*5*_*_;FR*SOD*S*IZIG*580*3*_*_;FR*SOD*S*IZIG*580*28*_*_;FR*SOD*S*IZIG*580*20*_*_;FR*SOD*S*IZIG*580*19*_*_;FR*SOD*S*IZIG*580*17*_*_;FR*SOD*S*IZIG*580*16*_*_;FR*SOD*S*IZIG*580*1*_*_;FR*SOD*S*IZIG*580*15*_*_;FR*SOD*S*IZIG*580*18*_*_;FR*SOD*S*IZIG*580*2*_*_;FR*SOD*S*IZIG*580*4*_*_;FR*SOD*S*IZIG*580*6*_*_;FR*SOD*S*IZIG*580*22*_*_", + "start_date": "2023-02-23;2022-08-31;2023-02-03", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "operator:email": "sav@izivia.com", + "description": "SAINT-DENIS - CAP AMPERE - VISITEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34337000000, + 48.92057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6879985", + "start_date": "2024-03-01", + "capacity": "2", + "network": "HOTEL CICE CICE-BLOSSAC", + "amenity": "charging_station", + "description": "HOTEL CICE CICE-BLOSSAC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6879985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77202200000, + 48.03484600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7060113767166879984", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLLQPNAK82EHRK", + "operator": "Freshmile | FR*FR1", + "ref": "971780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70828200000, + 48.52913200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122029", + "description": "ENGIE Vianeo - B&B HOTEL SAINT-NAZAIRE TRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20967300000, + 47.29162400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P240734028733776429", + "description": "Freshmile France/M0X4I4ZK8M", + "ref": "466101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73600200000, + 48.88381700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Noyelles-Godault, France", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP29984", + "capacity": "24", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97453400000, + 50.40980900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/FHPCMFYE1W", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRFR1P8245888600492463175", + "opening_hours": "24/7", + "ref": "454023", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28522500000, + 44.88326100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT DENIS DOLERON - RUE MARC GUYONNET", + "ref": "FR*SOD*S*MB17*60*1*_*_", + "network": "MOBIVE - SDEER 17", + "owner:ref:FR:SIREN": "251702197", + "start_date": "2023-02-13", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS17PMB176012;FRS17PMB176011", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37853900000, + 46.02752100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/D9MFWXE3BX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "456807", + "ref:EU:EVSE": "FRS14P6814908505373473139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29816200000, + 49.22829100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LNDPTJDTZ", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P6991829612420273071", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1127976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50864500000, + 48.81516600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-24", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "COUTANCES - Gare", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50200001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44009620000, + 49.04386330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTANS - Place de la Bouygue", + "start_date": "2023-01-31", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81171002", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88430900000, + 43.86494500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "RELAIS TOULOUSE Espagne", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRHPCPNF059709", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-12-21", + "owner:ref:FR:SIREN": "531681718;531681714;531681713;531681715;531681716;531681717", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF059709" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42400000000, + 43.57380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-ALBAN SUR LIMAGNOLE - Parking Spar", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS48E48132001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38222000000, + 44.77916600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2023-06-01", + "charging_station:output": "24 kW", + "description": "Sarzeau - Rue Adrien Régent (rapide)", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "capacity": "4", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLLI2Z8CZS2PEU6", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76127088823, + 47.52742036383 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH05E62893002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "WIMEREUX - Av du Maréchal Foch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60755200000, + 50.76549900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E29500004", + "start_date": "2024-08-02", + "description": "ERGUE GABERIC - Jean Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02833200000, + 47.99593200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/GBVXDN", + "ref": "441117", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56P6873450947295559134", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.71709000000, + 48.12660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B119", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "SAINT-SECONDIN-1-2;SAINT-SECONDIN-1-1", + "ref:EU:EVSE": "FRLMSE12346052402;FRLMSE12346052401;FRLMSE12346052391;FRLMSE12346052392", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2017-07-04", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49537000000, + 46.32872000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP93048D", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-12-08", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Metropolis - Proximité - Montreuil - Signac;Métropolis/FR*MGP*P93048*D", + "owner:ref:FR:SIREN": "885354860", + "ref": "484796", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45219600000, + 48.86840900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79174P0032A", + "operator:email": "bo_dgic@seolis.net", + "description": "Réseau AlterBase - Melle - Centre St Joseph", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "start_date": "2017-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14632978000, + 46.22466960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "1035657", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP3131282808677169034", + "description": "Atlante/FRATLFR00271", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31757000000, + 46.95517400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89397426", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2022-12-13", + "description": "ENGIE Vianeo - Chantraine - Impasse Payonne", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44083000000, + 48.16984400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMAPP000000008010", + "description": "COFIRAD", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Electromaps", + "charging_station:output": "22 kW", + "network": "Electromaps", + "operator:email": "customer@supportelectromaps.com", + "owner:ref:FR:SIREN": "351438239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95723480000, + 45.57391040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "L 'AIGUILLON-LA-PRESQU'ILE (LA FAUTE-SUR-MER) - Parking De La Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85307001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32175600000, + 46.33096600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9008902;FRALLEGO9005062;FRALLEGO9005061;FRALLEGO9000581;FRALLEGO9000582;FRALLEGO9005031;FRALLEGO9005032;FRALLEGO9008901;FRALLEGO9008911;FRALLEGO9008912", + "network": "Allego Carrefour SAINTE GENEVIEVE DES BOIS", + "description": "Allego Carrefour SAINTE GENEVIEVE DES BOIS", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9008902;FRALLEGO9005062;FRALLEGO9005061;FRALLEGO9000581;FRALLEGO9000582;FRALLEGO9005031;FRALLEGO9005032;FRALLEGO9008901;FRALLEGO9008911;FRALLEGO9008912", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "10", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33341950000, + 48.63869100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRJRCPCOMEARTH00001", + "amenity": "charging_station", + "ref": "708bfa0c-3df9-4d3f-abb9-054cdfa6fcfe", + "operator": "Jerecharge.com", + "opening_hours": "Mo-Su 08:00-18:00", + "owner:ref:FR:SIREN": "905083895", + "charging_station:output": "22 kW", + "network": "Jerecharge.com", + "start_date": "2023-07-01", + "description": "ORSAY - Parking Dubreuil", + "operator:email": "contact@jerecharge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17917400000, + 48.69671700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marie Blachère Bellac (87)", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;114 kW;22 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "114 kW", + "ref:EU:EVSE": "FRPD1PMBCBLC", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-10-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05329348413, + 46.12889900130 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/KGWFWAHGAN;Vals-Les-Bains, Place Galimard", + "ref:EU:EVSE": "FREBNPKGWFWAHGAN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "KGWFWAHGAN;30359", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36573100000, + 44.66579800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "412124", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XLQAADPOMW", + "ref:EU:EVSE": "FRFR1P32474560256913100", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26690000000, + 45.55270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "description": "Ibis Styles - Mâcon", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-09-27", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PIBSMCN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82709000000, + 46.30356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "HHI7NXS2BU;31987", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Vinsobres, Passage de l'Amélie;Réseau eborn/HHI7NXS2BU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPHHI7NXS2BU", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06302200000, + 44.33282800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "description": "e-Totem - 3M - P+Tram Circé", + "ref": "FRETIP34172C", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP34172C", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91918400000, + 43.60468900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "owner:ref:FR:SIREN": "383806783", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-28", + "network": "HOTEL CARCARILLE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*220*1*_*_", + "operator:email": "sav@izivia.com", + "description": "HOTEL CARCARILLE - GORDES", + "ref:EU:EVSE": "FROTHPOTHR22012;FROTHPOTHR22011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22125000000, + 43.90948000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*CAPS*5*1*_*_", + "ref:EU:EVSE": "FRCPSPCAPS512;FRCPSPCAPS511", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-11-26", + "network": "CPS", + "description": "IGNY- PLACE FRANCOIS COLLET", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22644700000, + 48.74158500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2356971907240012008", + "ref": "559754", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Fr,Tu,We,Mo 05:00-06:00,Th 06:00-07:00,Th,Mo,Fr,Tu,We 21:00-22:00", + "description": "Freshmile France/MQMBBYPLTF", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35606000000, + 48.60678700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "29", + "description": "WAAT/FRWATLLGFUACQZ", + "amenity": "charging_station", + "ref": "1010805", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA1P1332658794989229362", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW;6.9 kW;22 kW", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05813500000, + 48.78354300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/BSKY08VNWK", + "ref:EU:EVSE": "FRFR1P2022695935831173559", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "694193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50304300000, + 47.48143300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-07;2023-10-06", + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1000114224;FRSWSE1000145152", + "opening_hours": "24/7", + "ref": "1000114224;1000145152", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "ALFEN 2x22 MG Ville La Grand;ALPITRONIC 225kW MG Ville la grand", + "capacity": "2;3", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26428000000, + 46.19984200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/PTOMNLSUF6", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4017726071675125762", + "ref": "435153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78906900000, + 48.08593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Apex Location - Marseille", + "network": "DRIVECO", + "opening_hours": "Mo 07:30-12:00, Mo 13:30-18:00, Tu 07:30-12:00, Tu 13:30-18:00, We 07:30-12:00, We 13:30-18:00, Th 07:30-12:00, Th 13:30-18:00, Fr 07:30-12:00, Fr 13:30-18:00", + "ref:EU:EVSE": "FRSSDPAPEX130161", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2024-01-18", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34415900000, + 43.34884100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref": "FRS28E139383", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E139383", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - NOGENT-LE-ROI - Pkg. du Marché aux Chevaux", + "network": "MODULO - NOGENT-LE-ROI - Pkg. du Marché aux Chevaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53349400000, + 48.64744400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@moulindelaboirie.fr", + "opening_hours": "Mo-Su 8:00-20:00", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "owner:ref:FR:SIREN": "749823597", + "charging_station:output": "22 kW", + "description": "Parking MOULIN DE LABOIRIE", + "operator": "LE MOULIN DE LABOIRIE", + "ref": "EVB-P21211892", + "network": "MOULIN DE LABOIRIE", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17653676641, + 44.42495892041 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "39782", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P3206036254257790237", + "description": "SDEA 10/UIDOGADTJG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13733700000, + 48.20703400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P2800429247293418993", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "854190", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP009E6C", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71279900000, + 50.82573200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Redeim_St_Leonard2;Redeim_St_Leonard1", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265945;839265943;839265941;839265938;839265937;839265936;839265935;839265933;839265932;839265934;839265939;839265940;839265942;839265944", + "capacity": "14", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "ref:EU:EVSE": "FRROSE506;FRROSE505", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06898800000, + 49.21857700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/Gramontcim", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "86876", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PGRAMONTCIM", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76829600000, + 43.93650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - ARGENTEUIL LES INDES", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*103*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-16", + "ref:EU:EVSE": "FRIZFPFAST10313;FRIZFPFAST10312;FRIZFPFAST10311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20626524656, + 48.94857177054 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-05;2021-04-22", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "DOUE-LA-FONTAINE - Place Champ de Foire;OuestCharge - Diva Sp - Doue-la-Fontaine - Foire", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49125B;FRS49E49125002", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27582000000, + 47.19189900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PJYVUUB", + "description": "Mouv'Oise/JYVUUB", + "ref": "294407" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25257000000, + 49.16920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*21*2*_*_;FR*SOD*S*LYON*21*1*_*_", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2020-02-18", + "description": "QUI01 - PARKING ROUTE DE CHASSELAY", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON2122;FRGLYPLYON2121;FRGLYPLYON2112;FRGLYPLYON2111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77706500000, + 45.91379100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NIMES - Hôpital Pôle Psychiatrie", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-27", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30189020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31973200000, + 43.82707800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "15 kW", + "network": "Morbihan Energies", + "operator:email": "support@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "Freshmile", + "opening_hours": "24/7", + "description": "Crach - Parking Saint Thuriau", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PCGJZHNOXXN", + "start_date": "2020-01-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00082862377, + 47.61738300495 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B108", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346449881;FRLMSE12346449891", + "opening_hours": "24/7", + "description": "VOUILLE-1-1;VOUILLE-1-2", + "start_date": "2016-01-11", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16552700000, + 46.63914100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P8267895399972921684", + "ref": "999954", + "description": "Mobilygreen CPO/f4725469-7295-480f-a0cc-bca6955753b1", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33153700000, + 43.98789700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-29", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*157*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 1 RUE DES GRIMETTES - MEUDON", + "ref:EU:EVSE": "FRSIGPSIGE15712;FRSIGPSIGE15711", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24174800000, + 48.80811600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VOISINS LE BRETONNEUX - Avenue de la Grande Ile", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78688001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05580200000, + 48.76286300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;50 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89489201", + "start_date": "2024-02-16;2023-03-22", + "description": "ENGIE Vianeo - A62 Frontonnais Sud", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "50 kW;90 kW;300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35920000000, + 43.81097700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c6d45774-e244-5264-8f5d-07db9ac3f964", + "operator": "190__SDEG16", + "description": "MOBIVE | Sigogne | Parking Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15897300000, + 45.73695200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-05-17", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE77MACA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "LE MEE SUR SEINE - CLUB DE TENNIS", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63594000000, + 48.54205700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-04-08", + "operator": "Allego", + "description": "HAZEBROUCK", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSHZBRK", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54620500000, + 50.73907900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3581EVCP01;LFR3581EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3581EVCP01;LFR3581EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "TOUL Keller" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89131100000, + 48.67138100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM34E34022001", + "operator": "Bouygues E&S", + "description": "BAILLARGUES - Rue Alfred Sauvy", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00012300000, + 43.65343500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP7644111354147711915", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/WV78OP2VPC", + "socket:type2_combo:output": "24 kW", + "ref": "741126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55241300000, + 45.07279700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/UUJVT7GFB3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2352185747731287068", + "ref": "505704", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14673400000, + 42.97724400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-10", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Cité des Sciences", + "ref:EU:EVSE": "FRP07E75119001;FRP07E751190011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38724000000, + 48.89600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPHON0JAOCCV", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "63992;HON0JAOCCV", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Châteauneuf-Du-Rhône, Parking De La Piscine;Réseau eborn/HON0JAOCCV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71889000000, + 44.48635200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPMORAC", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Morangis - Action", + "start_date": "2024-07-16", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34981600000, + 48.70638000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E75110002;FRP01E751100021;FRP01E751100023;FRP01E751100024;FRP01E751100025", + "capacity": "1;5;16;6;7", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;7 kW", + "network": "EFFIA France", + "start_date": "2023-07-04;2024-09-16", + "description": "Parking Paris Gare du Nord N-2 (Horaire) - EFFIA;Parking Paris Gare du Nord N-6 (Loueur) - EFFIA;Parking Paris Gare du Nord N-5 (Loueur) - EFFIA;Parking Paris Gare du Nord N-3 (Horaire) - EFFIA;Parking Paris Gare du Nord N-7 (Loueur) - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35368210000, + 48.87988260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR VULAINES", + "network": "SONEPAR VULAINES", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6620685", + "ref": "FRCPIE6620685" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77328400000, + 48.42522500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "description": "Hyères, Parking espace 3000;Réseau eborn/NX8FKWS8GN", + "ref:EU:EVSE": "FREBNPNX8FKWS8GN;FREBNP8343828924432900429", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346838;NX8FKWS8GN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12980000000, + 43.10620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA3P5706957803844135916", + "ref": "805341", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLWNY7CEGC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74142200000, + 43.86604100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4890872555465184590", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454476", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XMSBUV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96478000000, + 48.69270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "SCI GADMP - Combs la ville", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref": "FRTCBP00915;FRTCBP00916", + "network": "SCI GADMP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTCBP00915", + "owner:ref:FR:SIREN": "801484627", + "start_date": "2022-10-07;2022-10-08", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54761574233, + 48.66533198979 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6799898303739724620", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1009278", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/DZVENY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45422000000, + 48.26150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jeep - Grimal - Castres", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2021-07-13", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPGRIMALJEEP811001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22017700000, + 43.59389200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Landeda-Route de l'Armorique", + "ref:EU:EVSE": "FRS29E2910100", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.57471500000, + 48.58763100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11068002", + "description": "CAPENDU - Parking Le Jerroir Vignerons Des Coteaux De L'Alaric", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54930000000, + 43.18790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "3d1b2655-0e08-4d51-b7ec-7d76688dc0be", + "description": "Garage du Centre - 22 kW AC", + "network": "UNICAP - GARAGE DU CENTRE", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "422450916", + "ref:EU:EVSE": "FRZP1PEAC62655", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48049470000, + 49.83976500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LUCQUY - Gare", + "capacity": "2", + "description": "MODULO - LUCQUY - Gare", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS08E57626;FRS08E57625", + "ref": "FRS08E57626;FRS08E57625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47380000000, + 49.52365600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PAWXSQD", + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/AWXSQD", + "amenity": "charging_station", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "79384", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30787000000, + 49.89180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*239*1*_*_", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BORDEAUX STADE", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-29", + "ref:EU:EVSE": "FRIZFPFAST23912;FRIZFPFAST23911;FRIZFPFAST23913" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59627450000, + 44.82956970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2021-04-28;2024-04-29", + "network": "SYDELA;Ouest Charge | FR*WCH", + "charging_station:output": "50 kW", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SAVENAY - La Justice;OuestCharge - Pulse 50 - Savenay - Justice", + "ref:EU:EVSE": "FRS44E44021;FRS44P44195A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93803700000, + 47.37369500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CHAILLY-EN-BRIE - Rue Saint Médard;Chailly-en-Brie", + "ref:EU:EVSE": "FRS77P77070A;FRS77E77070001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61GF4TYVNHGJZN4V37", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-07-26;2016-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12481500000, + 48.79105000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MASQHOTEL", + "description": "MASQHOTEL", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGSPP1000054876", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14490720267, + 46.15501459479 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E219894;FRS37E219888", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219894;FRS37E219888", + "description": "MODULO - RAZINES - Av. de l'église", + "network": "MODULO - RAZINES - Av. de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37710200000, + 46.97550900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ae8fa716-d76f-58c3-bf93-9ce9ae525dc8", + "charging_station:output": "50 kW;43 kW", + "operator": "42__CD54", + "description": "CD54 - Ville de LESMENILS-Lesménils" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11395400000, + 48.93758500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LPA Parking Célestins - N1 - Zone 2;LPA Parking Célestins - N1 - Zone 1;LPA Parking Célestins - N1 - Zone 3", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P69382AC;FRG10P69382AB;FRG10P69382AA", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRG10P69382AC;FRG10P69382AB;FRG10P69382AA", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "operator:email": "contact@e-totem.fr", + "description": "LPA Parking Célestins - N1 - Zone 2;LPA Parking Célestins - N1 - Zone 1;LPA Parking Célestins - N1 - Zone 3", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83150820000, + 45.75991780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "9e6af5e5-b15f-543a-8645-68958f8638c9", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | MUGRON | Parking Salle Emmanuelli", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75023800000, + 43.74891900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-05-20", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*271*1*_*_", + "description": "SIGEIF - 16 RUE DE LISBONNE - ROSNY-SOUS-BOIS", + "ref:EU:EVSE": "FRSIGPSIGE27112;FRSIGPSIGE27111", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46898500000, + 48.88255900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "FRCPIE6513525;FRCPIE6495425", + "capacity": "4", + "ref:EU:EVSE": "FRCPIE6513525;FRCPIE6495425", + "description": "ATLANTIQUE HYGI BORNE 2", + "opening_hours": "24/7", + "start_date": "2023-09-12", + "network": "ATLANTIQUE HYGI BORNE 2", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48420800000, + 47.26322100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/HL98XANBWT", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "706019", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "ref:EU:EVSE": "FRLE2P8811592805937889498" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38164500000, + 44.59720500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c4154230-b361-58cf-a529-bdcc43526262", + "description": "MOBIVE | Varetz | Route de Roland Garros" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45667400000, + 45.18198900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "network": "AlterBase", + "description": "Réseau AlterBase - Mauléon - Centre commercial Super U - QC", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB16169A", + "charging_station:output": "50 kW;43 kW", + "start_date": "2019-03-21", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73845260000, + 46.92192110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAGXP01143B", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Pays de Gex - ePremium - Divonne-Les-Bains - Office tourisme", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2019-09-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13846900000, + 46.35631700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4234EVCP01;LFR4234EVCP02", + "capacity": "4", + "ref:EU:EVSE": "LFR4234EVCP01;LFR4234EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BALLAINVILLIERS - Chasse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28251200000, + 48.67081900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-03;2021-11-03", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "description": "LA TRONCHE - Avenue De L'Obiou", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38516001", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75043400000, + 45.19941000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*129*2*_*_;FR*SOD*S*WIIZ*129*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-09-03", + "network": "WIIIZ", + "description": "GRASSE - PARKING P+R GARE DE GRASSE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ12922;FRA16PWIIZ12921;FRA16PWIIZ12911;FRA16PWIIZ12912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92758400000, + 43.65398100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "896781", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLL4TUAPA1RZBE", + "ref:EU:EVSE": "FRFR1P4399499290617284368", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06588100000, + 48.61028400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-03;2024-01-05", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACTSVG", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Action - Savigny-le-Temple", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59273992464, + 48.58484566976 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPZ0LIYARX3I", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "La Fare-En-Champsaur, Esplanade Napoléon;Réseau eborn/Z0LIYARX3I", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "32974;Z0LIYARX3I", + "start_date": "2020-07-22", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07298100000, + 44.67456200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPABRIB", + "start_date": "2024-10-08", + "description": "Aubière - Ibis Budget", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14187000000, + 45.75680800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-24;2020-06-25", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LAON - Centre Hospitalier", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E02408001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61019100000, + 49.56363700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "ULIET ULIET 1", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08", + "network": "ULIET ULIET 1", + "ref": "FRCPIE6683635;FRCPIE6683625", + "ref:EU:EVSE": "FRCPIE6683635;FRCPIE6683625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34657300000, + 43.65883700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "MBBTCSNJTK;419064", + "description": "Vienne, Espace Saint-Germain Sud;Easy Charge/MBBTCSNJTK", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPMBBTCSNJTK;FRECHP2121736082302155033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86466000000, + 45.51317000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Thaon Les Vosges - Parking Piscine", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP143013", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42941300000, + 48.25306200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5449526590482596298", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref": "529652", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile/TJDUQOWLBU", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32455700000, + 47.72610100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "7 kW;3 kW", + "start_date": "2021-07-09", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0604", + "ref": "FR*V75*PPX06*04", + "opening_hours": "24/7", + "description": "Paris | Rue de Bérite 3", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32397830000, + 48.84787500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PHYPXLV", + "ref": "294452", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/W3Q7KKPBUP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03067000000, + 49.00230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "start_date": "2021-03-29", + "network": "DRIVECO", + "description": "Volvo - Marseille", + "ref:EU:EVSE": "FRSSDPMAURINVOLVO130101", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 13:00-19:00, Tu 08:00-12:00, Tu 13:00-19:00, We 08:00-12:00, We 13:00-19:00, Th 08:00-12:00, Th 13:00-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40025300000, + 43.27627400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22348001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TREDIAS - Parking de la Mairie", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23726200000, + 48.35837400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E150315", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - VALLY SUR SAULDRE - Pl. de la mairie", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E150315", + "network": "MODULO - VALLY SUR SAULDRE - Pl. de la mairie", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65083000000, + 47.45830163000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "AD BAUDUCEL, SaintPierre la Cour", + "charging_station:output": "22 kW", + "ref": "1339d91c-529f-4fdc-abf5-bbf33cb4185d", + "ref:EU:EVSE": "FRFR1EBHZV1", + "network": "AD BAUDUCEL", + "operator:email": "bauducel-christophe@orange.fr", + "owner:ref:FR:SIREN": "803410844", + "operator": "BAUDUCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03000000000, + 48.12000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P8812689151442878855", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "32074", + "opening_hours": "24/7", + "description": "SDEA 10/HC39F8XCC0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99760000000, + 48.11994100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "ALBI - Parking du Bondidou 2", + "ref:EU:EVSE": "FRS81E8100400822;FRS81E8100400821;FRS81E8100400812;FRS81E8100400811", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2017-11-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13960790600, + 43.92757034300 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IKEA LYON - STATION 1;IKEA LYON - STATION 3", + "ref:EU:EVSE": "FRIKAPIKEA9691;FRIKAPIKEA9681;FRIKAPIKEA9641;FRIKAPIKEA9631;FRIKAPIKEA9621;FRIKAPIKEA8921;FRIKAPIKEA8911;FRIKAPIKEA8931;FRIKAPIKEA8941;FRIKAPIKEA9611;FRIKAPIKEA9651;FRIKAPIKEA9661;FRIKAPIKEA9671;FRIKAPIKEA9692", + "capacity": "1;2", + "ref": "FR*SOD*S*IKEA*96*7*_*_;FR*SOD*S*IKEA*96*5*_*_;FR*SOD*S*IKEA*96*4*_*_;FR*SOD*S*IKEA*96*3*_*_;FR*SOD*S*IKEA*96*2*_*_;FR*SOD*S*IKEA*89*3*_*_;FR*SOD*S*IKEA*89*1*_*_;FR*SOD*S*IKEA*89*2*_*_;FR*SOD*S*IKEA*89*4*_*_;FR*SOD*S*IKEA*96*1*_*_;FR*SOD*S*IKEA*96*6*_*_;FR*SOD*S*IKEA*96*8*_*_;FR*SOD*S*IKEA*96*9*_*_", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "start_date": "2023-01-11;2023-06-20", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87838100000, + 45.71605300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-23;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44133B;FRS44E44133002", + "description": "OuestCharge - Diva Sp - Port-Saint-Pere - Pornic;PORT-SAINT-PERE - Rue De Pornic", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75035800000, + 47.13286800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS77E77317001", + "start_date": "2023-09-18", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MORMANT - Place De La Mairie", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89050000000, + 48.60650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "QUIESTÉDE - Rue du stade", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2019-12-11", + "ref:EU:EVSE": "FRH01E62681001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32888900000, + 50.67910200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - COTEAUX-SUR-LOIRE - Rte. des Essarts", + "ref": "FRS37E221509;FRS37E221513", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221509;FRS37E221513", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - COTEAUX-SUR-LOIRE - Rte. des Essarts" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34818900000, + 47.30827900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS55E66578;FRS55E66579", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - VERDUN - Rue de Jeanne d'Arc", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E66578;FRS55E66579", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VERDUN - Rue de Jeanne d'Arc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38324300000, + 49.16345300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON14712;FRGLYPLYON14711", + "network": "GRAND LYON", + "description": "FLS01 - CENTRE-BOURG", + "ref": "FR*SOD*S*LYON*147*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-01-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84524000000, + 45.86237700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59320*03", + "network": "MEL", + "description": "ENNETIÈRES-EN-WEPPES - Rue du Patronnage", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRMELP5932003", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94213100000, + 50.63584500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "PETIT MENIN 3 KIABI - Neuville-en-Ferrain", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "opening_hours": "Mo 09:00-20:00, Tu 09:00-20:00, We 09:00-20:00, Th 09:00-20:00, Fr 09:00-20:00, Sa 09:00-20:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCEETRUS596563", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13963000000, + 50.74272000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6580395;FRCPIE6580385", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "network": "SUPER U ARNAGE ARNAGE 2", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6580395;FRCPIE6580385", + "description": "SUPER U ARNAGE ARNAGE 2", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18276100000, + 47.93958200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521420", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P5639839879650928021", + "charging_station:output": "100 kW;22 kW", + "description": "Leclerc/DEOTABIQBH", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61797700000, + 43.19772200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | La Teste de Buch | Rue Gilbert Sore | Parking", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "41e4d229-7778-58e9-8b40-cdc87363a852", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15091200000, + 44.63129000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "dec1e4f4-be22-5a8f-ab43-fcfec8303f51", + "description": "Grigny - Promenade du Canal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38277800000, + 48.65414000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "description": "TISSEO RAMONVILLE", + "amenity": "charging_station", + "capacity": "14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "start_date": "2021-11-22;2022-01-05;2022-11-10", + "operator:email": "info.allego.france@allego.eu", + "socket:type2_combo:output": "50 kW;350 kW;300 kW", + "charging_station:output": "350 kW;50 kW;43 kW;22 kW;300 kW", + "network": "ALLEGO;GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015;FRSITE00000101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735000000, + 43.55739000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA CRAU 8 Mai 1945", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3854EVCP01", + "ref:EU:EVSE": "LFR3854EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07307100000, + 43.15232700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "amenity": "charging_station", + "description": "Istres, Cec Piscine", + "capacity": "4", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13POIIHE59O2J", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99584700000, + 43.49905700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS88E181162;FRS88E181164", + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-12-08", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - RAON L'ETAPE - Pkg. de la gare", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - RAON L'ETAPE - Pkg. de la gare", + "ref:EU:EVSE": "FRS88E181162;FRS88E181164", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83715000000, + 48.40410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*235*1*_*_", + "start_date": "2023-11-15", + "ref:EU:EVSE": "FRA16PWIIZ23511;FRA16PWIIZ23512", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "description": "LES MUJOULS - PARKING VILLAGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86090500000, + 43.88438600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LDEBFXD6F6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3410933870511613167", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466077", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22049600000, + 47.96471900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMBRTHO", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-02-07;2024-03-01", + "operator": "Power Dot France", + "description": "Mon Brico - Thouars", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19789226163, + 46.97704900743 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Les Adrets, Parking salle polyvalente", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPYLM0HHUMDL", + "ref": "YLM0HHUMDL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96331167000, + 45.27200606000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/F6DBCB55-5D4B-4BB1-9D6C-8BFEB5E6F1DA", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP5465211380225706880", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref": "1177062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21187500000, + 47.30058500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-02-10", + "capacity": "2", + "amenity": "charging_station", + "description": "BRICOMARCHE - SAINT-MAIXENT-LECOLE", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR58212;FROTHPOTHR58211", + "ref": "FR*SOD*S*OTHR*582*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19639200000, + 46.41900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPB46FPVWMDM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/B46FPVWMDM;Clelles, Parking Place Du Moulin", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "B46FPVWMDM;102611", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62219300000, + 44.82643600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUIM5AFHJMR", + "capacity": "2", + "description": "Viviers, Parking les Lauriers;Réseau eborn/UIM5AFHJMR", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "39113;UIM5AFHJMR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68870000000, + 44.48441600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - A83 La Parthenaise", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP104109", + "opening_hours": "24/7", + "start_date": "2023-07-07;2023-06-16", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50249400000, + 46.43108800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "435243", + "ref:EU:EVSE": "FRFR1P2950153118027821006", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/GMHWFA6XWU", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.46482000000, + -20.89282200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX13*11", + "amenity": "charging_station", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue des Frigos 24", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37924600000, + 48.83171000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "699059", + "network": "Freshmile France", + "description": "Freshmile France/WWFF9DHV9P", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4248421859978402696", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23304300000, + 49.11482700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "capacity": "8", + "network": "DRIVECO", + "description": "Avis Location - Ajaccio", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPOLLANDINIAVIS200901", + "opening_hours": "Mo 07:00-23:30, Tu 07:00-23:30, We 07:00-23:30, Th 07:00-23:30, Fr 07:00-23:30, Sa 07:00-23:30, Su 07:00-23:30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79319900000, + 41.92029600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PFLEURYFORETCENTRE", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900017", + "opening_hours": "24/7", + "network": "SIEGE27", + "start_date": "2016-07-06", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55674400000, + 49.41946600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-10", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E02222", + "description": "TREDREZ-LOCQUEMEAU - Route du port" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58251600000, + 48.72444000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-GERMAIN-EN-LAYE - Le Quai des Possibles", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551026", + "start_date": "2024-03-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07362916824, + 48.90317772863 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE13", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "pompidou", + "start_date": "2020-09-30", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35263800000, + 48.86199600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "1013025", + "ref:EU:EVSE": "FRWATP8850369662339566970", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATL6Z8TGVJH", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82812600000, + 45.77377700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "network": "IONITY GMBH", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Coquelles", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE439700", + "ref:EU:EVSE": "FRIONE439700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79882370000, + 50.92664400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E42588;FRS51E42589", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - CHAMPILLON - Rue Jean Jaurés", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E42588;FRS51E42589", + "network": "MODULO - CHAMPILLON - Rue Jean Jaurés", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97712800000, + 49.08224200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GERM - Station de Peyragudes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65099001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44165200000, + 42.79491200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS VIDAUBAN NORD", + "socket:type2_combo:output": "300 kW;150 kW", + "capacity": "13", + "amenity": "charging_station", + "start_date": "2024-02-14;2023-05-11", + "owner:ref:FR:SIREN": "531681413;531681412;531681411;531681408;531681406;531681405;531681404;531681403;531681402;531681401;531681407;531681409;531681410", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "ref": "FRHPCPNF080371", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45229700000, + 43.41580300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34159001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "MIREVAL - Chemin des Amouriés - Parking Halle des Sports", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79911944444, + 43.50904440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-10-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Guer - Place de la Gare", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PTHSFCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12339900000, + 47.90593700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/P5V9XI99Z7", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "454104", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8485758082366101070", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70927300000, + 48.59063700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92051W", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "charging_station:output": "25 kW;22 kW", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (50)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26667120000, + 48.89126200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "description": "Renault - ByMyCar - Fontaine", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPBYMYCARRENAULT386001", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-07-02", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67531500000, + 45.19387200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "capacity": "2", + "amenity": "charging_station", + "network": "HOTEL DU MOULIN DAURE", + "opening_hours": "24/7", + "description": "HOTEL DU MOULIN DAURE", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "340379932", + "ref:EU:EVSE": "FRC2P006001", + "operator:email": "contact@car2plug.fr", + "ref": "FRC2P006001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78046300000, + 43.84705600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "3b08bff7-e3d0-4c9a-b1d8-6c6b8a55e874", + "start_date": "2022-10-04", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "Hôtel Kyriad Montpellier Sète Balaruc", + "ref:EU:EVSE": "FRLUMEHOTELKYRIADBALARUC11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69000000000, + 43.46000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "147001c6-96b6-5f6f-bbb8-a7ab9a50d77f", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Eymoutiers | Gare", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74055700000, + 45.73932600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "start_date": "2024-04-30", + "ref:EU:EVSE": "FRSE1PSE31VADA", + "operator:email": "support@stations-e.com", + "description": "La Minoterie - VILLEMUR SUR TARN", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50160700000, + 43.86289700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP7282888922707210840", + "description": "BornEco/6514379ceaae3a62186f9670", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "ref": "923304", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03714700000, + 49.30828200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "477747", + "description": "Leclerc/BGJEL6OX17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8331362816795690415", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18620000000, + 46.03502900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Port-de-Bouc, Rue de la République", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PQGM9NJEA1F", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98183700000, + 43.40473100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "488889", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P6501812863888609755", + "network": "SDEY", + "description": "SDEY/QOFFE7IHNI", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29575700000, + 48.08829200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PEYMEINADE PARKING COMPLEXE SPORTIF", + "start_date": "2018-07-09", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9011;FRA16PWIIZ9012", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*90*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87365100000, + 43.63821400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1921994580325487403", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/XMQKNDFEHR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521390", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93945500000, + 47.72642100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "13", + "amenity": "charging_station", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUAMG", + "charging_station:output": "120 kW;50 kW;22 kW;80 kW", + "description": "Super U - Aimargues", + "operator": "Power Dot France", + "socket:type2_combo:output": "50 kW;120 kW;80 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20293750000, + 43.69318750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-07-23", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPX1WVLS09JB;FREBNP6796173812351974012", + "ref": "419364;X1WVLS09JB", + "description": "Réseau eborn/X1WVLS09JB;La-Valette-du-Var, Rue Marcel Pagnol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98754300000, + 43.12816800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP8663334981698399757", + "opening_hours": "24/7", + "ref": "683234", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "description": "CARF - Bornes Publiques/44287F2F-18FC-4312-BE87-87739EAF3357", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39998600000, + 43.74471100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "network": "SCI MEUNIER", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2023-09-12", + "description": "SCI MEUNIER - COUERON", + "ref:EU:EVSE": "FROTHPOTHR75611;FROTHPOTHR75621;FROTHPOTHR75631;FROTHPOTHR75641;FROTHPOTHR75651;FROTHPOTHR75661", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*756*6*_*_;FR*SOD*S*OTHR*756*1*_*_;FR*SOD*S*OTHR*756*2*_*_;FR*SOD*S*OTHR*756*3*_*_;FR*SOD*S*OTHR*756*4*_*_;FR*SOD*S*OTHR*756*5*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66678800000, + 47.23701300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "S7OZUOKYDE;346931", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/S7OZUOKYDE;La Garde, Pkg de la Poste, Avenue Jean Jaurès", + "start_date": "2020-12-21", + "ref:EU:EVSE": "FREBNPS7OZUOKYDE;FREBNP5200831465885927166" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01081500000, + 43.12151000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/W5UAOHAP6F", + "ref:EU:EVSE": "FREBNPW5UAOHAP6F", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30443" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58636700000, + 44.93416700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*390*2*_*_;FR*SOD*S*OTHR*390*1*_*_", + "opening_hours": "24/7", + "network": "CAMPING RESASOL", + "description": "CAMPING LE VIEUX PORT - MESSANGES", + "start_date": "2022-04-28", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR39021;FROTHPOTHR39011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40135700000, + 43.80017200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLK7USND81JWBA", + "ref:EU:EVSE": "FRFR1P4215581077231065900", + "ref": "892479", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66404100000, + 43.76699300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP29905", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Chasse-sur-Rhône, France - Chasse Sud", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81143410000, + 45.57366580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/W8NSPQCMF8", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "559817", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P303190688546801157" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60542700000, + 44.19026700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01862", + "description": "AMP |105 Chemin de Saint-Henri", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*TCB*P01862", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33291500000, + 43.35866800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLWOVLC9X1AAPF", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6064889664854173277", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1153527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37196000000, + 48.71862300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22206003", + "start_date": "2023-03-30", + "description": "CHATELAUDREN - Rue Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97285700000, + 48.54169600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mazda HAGUENAU -GARAGE DU MOULIN", + "start_date": "2021-01-05", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-17:00", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "ref": "50721;50722", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "309623783", + "ref:EU:EVSE": "FRZMAE22AC50722;FRZMAE22AC50721", + "description": "Mazda - Haguenau - 22kW AC ; Mazda - Haguenau - 22kW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.80428300000, + 48.79615300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE343", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-05-24", + "operator": "RossiniEnergy", + "description": "Najeti_Hotel_Golf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08620070000, + 50.71260200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-11", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78361012", + "capacity": "9", + "network": "CPO Alizé Liberté Public", + "description": "MANTES-LA-JOLIE - Marché - Hotel de Ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71408788445, + 48.99028601800 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Chaberte La Garde", + "capacity": "26", + "description": "Chaberte La Garde", + "opening_hours": "24/7", + "charging_station:output": "11 kW;50 kW;350 kW;43 kW;22 kW", + "ref:EU:EVSE": "FRIOYE451851;FRIOYE451816;FRIOYE451815;FRIOYE451814;FRIOYE451813;FRIOYE451808;FRIOYE451807;FRIOYE451805;FRIOYE451804;FRIOYE451803;FRIOYE451802;FRIOYE451801;FRIOYE451806;FRIOYE451809;FRIOYE451810;FRIOYE451811;FRIOYE451812;FRIOYE451852;FRIOYE451853;FRIOYE451854;FRIOYE451855;FRIOYE451856;FRIOYE451871;FRIOYE451872;FRIOYE451873;FRIOYE451874", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE451851;FRIOYE451816;FRIOYE451815;FRIOYE451814;FRIOYE451813;FRIOYE451808;FRIOYE451807;FRIOYE451805;FRIOYE451804;FRIOYE451803;FRIOYE451802;FRIOYE451801;FRIOYE451806;FRIOYE451809;FRIOYE451810;FRIOYE451811;FRIOYE451812;FRIOYE451852;FRIOYE451853;FRIOYE451854;FRIOYE451855;FRIOYE451856;FRIOYE451871;FRIOYE451872;FRIOYE451873;FRIOYE451874" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03343700000, + 43.14877000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRS53E53130004", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LAVAL - Parking Ccas", + "charging_station:output": "22 kW", + "start_date": "2024-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78577560186, + 48.07746505737 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "description": "COLLIOURE - Chemin du Lavoir (Gare SNCF)", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66053002", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-07-12", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07869100000, + 42.52722200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20781560000, + 49.97159210000 + ], + [ + 1.20799090000, + 49.97120850000 + ], + [ + 1.20802080000, + 49.97117200000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE010502;FRIENE010501", + "owner:ref:FR:SIREN": "898270251", + "network": "Montverdun", + "amenity": "charging_station", + "description": "Montverdun", + "capacity": "4", + "operator:email": "support@iecharge.io", + "start_date": "2023-08-29", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE010502;FRIENE010501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05562953000, + 45.71554110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35085001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "description": "COMBOURG - 1 allee de lohon ", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75419400000, + 48.41830400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST DENIS SUR SARTHON", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61382A", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-SDSA-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05059400000, + 48.45680300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLJYEQ3G7O5R6V", + "ref:EU:EVSE": "FRFR1P3077012509855608694", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892458", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07331500000, + 47.31076200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/Auribcime;Auribail, Cimetière", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "ref:EU:EVSE": "FRS31PAURIBCIME", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "46543;Auribcime", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "start_date": "2017-10-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38218000000, + 43.35210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE92050002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-12-14", + "description": "NANTERRE - Boulevard François Vincent Raspail", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20668630000, + 48.89728430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001756;FRCG0E000411;FRCG0E001755", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "Commune de Moutiers - 73600 - 2", + "start_date": "2023-03-26", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Commune de Moutiers - 73600 - 2", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001756;FRCG0E000411;FRCG0E001755" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53033600000, + 45.48354200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*173*1*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UTELLE - PARKING ST JEAN LA RIVIERE", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-15", + "ref:EU:EVSE": "FRM06PNICE17312;FRM06PNICE17311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26387500000, + 43.91925500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Sainte Livrade Sur Lot | Parking Gendarmerie", + "ref": "d94b0266-622c-5a56-ae9c-24d31488209e", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58694400000, + 44.40008500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*311*1*_*_", + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2022-11-09", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31111;FRSIGPSIGE31112", + "opening_hours": "24/7", + "description": "SIGEIF - PLACE DE LA REPUBLIQUE - VAIRES-SUR-MARNE", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64096100000, + 48.86979400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS247469", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "description": "Bump x Groupe Parot Ford Limoges - Limoges", + "ref": "247469", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28736050000, + 45.80642850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRESPIN", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3302EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3302EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66550000000, + 50.40536800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "157121a2-647c-57e3-8172-214d1327e942", + "description": "MOBIVE | Uzerche | Allee de la Papetrie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56308700000, + 45.42672600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "21cc0da2-df21-5f40-8328-e4d877308fbc", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Yerres - Rue de Concy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48658800000, + 48.71129600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CPRNO35300F0UGERES", + "network": "ELECTRIC 55 CHARGING", + "start_date": "2021-04-13", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*PRNO*35300*F0UGERES", + "charging_station:output": "22.08 kW", + "description": "RENAULT DEALER FOUGERES", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18102300000, + 48.34853600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA CIOTAT", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3553EVCP02;LFR3553EVCP03;LFR3553EVCP01", + "ref": "LFR3553EVCP02;LFR3553EVCP03;LFR3553EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60244600000, + 43.19000400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2024-03-14;2023-10-17", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "120 kW;22 kW;50 kW;150 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PINVTAV", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Gamm Vert - Tavers", + "socket:type2_combo:output": "120 kW;150 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61539448826, + 47.76832355586 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "QMCDRLTNYE;346901", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Alban-Leysse, Rte de Barby, Square de Leysse;Réseau eborn/QMCDRLTNYE", + "ref:EU:EVSE": "FREBNP3278598033152941441;FREBNPQMCDRLTNYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97452200000, + 45.57650900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRETIP57672E", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP57672E", + "description": "e-Totem - Thionville Place Général Patton", + "charging_station:output": "25 kW;22 kW", + "start_date": "2023-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17411720000, + 49.36289300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Saint-Malo Quai Est P13 - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E35288007", + "network": "EFFIA France", + "start_date": "2023-10-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01609000000, + 48.65174000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Villiers St Frédéric", + "ref:EU:EVSE": "FRDRVPCRFMKT784601", + "operator:email": "support@driveco.com", + "start_date": "2023-08-22", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88334600000, + 48.80990500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85814;OPXMALLCMW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPXLPJUD;FREBNPOPXMALLCMW", + "description": "Réseau eborn/OPXMALLCMW;Annecy (Seynod), Centre Nautique - Rue Jean Clerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09711000000, + 45.88625000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-08-17", + "description": "TESTO - FORBACH", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*504*1*_*_;FR*SOD*S*OTHR*504*2*_*_", + "network": "TESTO INDUSTRIAL SERVICES", + "ref:EU:EVSE": "FROTHPOTHR50411;FROTHPOTHR50421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89183500000, + 49.18782800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6715665", + "network": "WAAT 4 CHENES 16", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6715665", + "operator:email": "info@chargepoint.com", + "description": "WAAT 4 CHENES 16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58691000000, + 48.77746500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/NKA62CFRIP", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P741683965526641492", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11527200000, + 49.21443600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2024-12-01", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "description": "UBI-LHSM-162", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "setp0100000113", + "ref:EU:EVSE": "FRUBIE10062252;FRUBIE10081802" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11619400000, + 49.52225000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "50 kW;3 kW", + "ref": "74972", + "description": "Freshmile France/KNXWXM", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1976783382392480738", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604000000, + 44.84020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555042", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "TOULOUSE - Rue du Camélia", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-08-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45827000000, + 43.58000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SMUJWYXIBS", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P9023583400838847222", + "operator": "Freshmile | FR*FR1", + "ref": "598002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05095600000, + 48.90482100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P587862694844524133", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "ref": "591278", + "description": "MobiSDEC/UX6T6V86EB", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496400000, + 49.32043800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS12E12080001", + "operator": "Bouygues E&S", + "description": "COUPIAC - Avenue Raymond BelPlace de la Poste", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58173800000, + 43.95475700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRWA3P2586840279757488248", + "network": "WAAT", + "amenity": "charging_station", + "ref": "998934", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "description": "WAAT/FRWATLADNEHYNH", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30984800000, + 43.42096500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49212A;FRS49E49212001", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "MONTJEAN-SUR-LOIRE - Parking Cap Loire;OuestCharge - Diva Sp - Montjean-sur-Loire - Cap Loire", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-04;2021-04-19;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86294400000, + 47.39008300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "description": "SIED70/gray", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PGRAY", + "ref": "64979" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59214000000, + 47.43390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20642630000, + 49.97132250000 + ], + [ + 1.20655880000, + 49.97104590000 + ], + [ + 1.20670920000, + 49.97073490000 + ], + [ + 1.20675110000, + 49.97071230000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E59546001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SAINT SYLVESTRE CAPPEL - Place De L'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55409200000, + 50.77676900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - METTRAY - Espace Coselia", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E214050;FRS37E214049", + "network": "MODULO - METTRAY - Espace Coselia", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E214050;FRS37E214049", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65069050000, + 47.44858502000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG63 - ePremium - Orcines - Liberté", + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-08-25", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63263A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01327070000, + 45.78400080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59190001", + "description": "ÉLESMES - Rue du Pont de Pierre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01015900000, + 50.30617100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-03-31", + "capacity": "2", + "network": "MOBIVE - SDEEG 33", + "amenity": "charging_station", + "description": "BOURG SUR GIRONDE - PLACE DE LA MAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "253303473", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*MB33*19*1*_*_", + "ref:EU:EVSE": "FRS33PMB331911;FRS33PMB331912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56036400000, + 45.03911600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-17", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94021002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "CHEVILLY-LARUE - Place du Maréchal de Lattre de Tassigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36714200000, + 48.77224200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE29322;FRM06PNICE29312;FRM06PNICE29311;FRM06PNICE29321", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-11-24;2023-11-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - TZAREWITCH", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*293*1*_*_;FR*SOD*S*NICE*293*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25303937091, + 43.70277796143 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Jumilhac | Place du Chateau", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "80d3cc27-af50-587d-af7b-ae1181115d1a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06093100000, + 45.49306100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SIGE*420*1*_*_", + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-05-15", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE42011;FRSIGPSIGE42012", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 7 PLACE GEORGES CLEMENCEAU PARKING DEVANT LE BUREAU DE POSTE - PARMAIN", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20935200000, + 49.11376000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76540020", + "start_date": "2022-10-20", + "description": "ROUEN - Place Cauchoise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08600500000, + 49.44548660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;50 kW;180 kW", + "socket:type2_combo:output": "50 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "BEAUNE Vérottes", + "ref": "LFR3655EVCP02;LFR3655EVCP03;LFR3655EVCP01", + "ref:EU:EVSE": "LFR3655EVCP02;LFR3655EVCP03;LFR3655EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83059800000, + 47.02262000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "5d47417d-1ff9-52d9-a896-b3c36a103b42", + "description": "MOBIVE | Billere | Avenue du Tonkin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38432100000, + 43.31488000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTEUX - Rue Aimé Dupré", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "c3ea62dd-127c-5e2d-8e5b-bf92b168e5e5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99443000000, + 44.03715300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA BOISSIERE ECOLE - École", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA05E78077001", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64791700000, + 48.68139870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3269EVCP02;LFR3269EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LE BUGUE Planete", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3269EVCP02;LFR3269EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93483800000, + 44.90747100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-04-07", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMSNZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché - Saint-Nazaire", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23838130000, + 47.26333590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPCWQDYD6WZ2", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "CWQDYD6WZ2;32929", + "start_date": "2020-06-21", + "description": "Réseau eborn/CWQDYD6WZ2;Vallorcine, Le Buet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91994000000, + 46.01908000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP89239A", + "ref": "FRETIP89239A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - KYRIAD SENS HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31691161732, + 48.18850901262 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-11", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PCORSMX", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Cora - Creil", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46887795239, + 49.23629696362 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT305001", + "start_date": "2024-07-31", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market Saint-Ambroix", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19840900000, + 44.25060100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42207AF", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-02-28", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "ref": "FRESEPS42207AF", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Melchior Mitte", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50550800000, + 45.47717300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG72691;FROTHPIZIG726501;FROTHPIZIG726491;FROTHPIZIG726471;FROTHPIZIG726461;FROTHPIZIG726451;FROTHPIZIG726441;FROTHPIZIG726431;FROTHPIZIG72641;FROTHPIZIG726391;FROTHPIZIG726371;FROTHPIZIG726361;FROTHPIZIG726351;FROTHPIZIG726341;FROTHPIZIG726331;FROTHPIZIG726321;FROTHPIZIG72631;FROTHPIZIG726271;FROTHPIZIG726261;FROTHPIZIG726251;FROTHPIZIG726241;FROTHPIZIG726231;FROTHPIZIG726221;FROTHPIZIG726211;FROTHPIZIG72621;FROTHPIZIG726151;FROTHPIZIG726141;FROTHPIZIG726131;FROTHPIZIG726121;FROTHPIZIG726111;FROTHPIZIG72611;FROTHPIZIG726101;FROTHPIZIG30931;FROTHPIZIG30691;FROTHPIZIG30671;FROTHPIZIG306581;FROTHPIZIG306571;FROTHPIZIG306561;FROTHPIZIG306541;FROTHPIZIG306501;FROTHPIZIG306481;FROTHPIZIG306471;FROTHPIZIG306461;FROTHPIZIG306441;FROTHPIZIG306431;FROTHPIZIG30641;FROTHPIZIG306401;FROTHPIZIG306371;FROTHPIZIG306361;FROTHPIZIG306351;FROTHPIZIG30631;FROTHPIZIG306291;FROTHPIZIG306251;FROTHPIZIG306241;FROTHPIZIG30621;FROTHPIZIG306191;FROTHPIZIG306181;FROTHPIZIG306171;FROTHPIZIG306151;FROTHPIZIG306141;FROTHPIZIG306131;FROTHPIZIG306121;FROTHPIZIG25291;FROTHPIZIG25281;FROTHPIZIG252621;FROTHPIZIG252611;FROTHPIZIG25261;FROTHPIZIG252581;FROTHPIZIG252571;FROTHPIZIG252561;FROTHPIZIG252531;FROTHPIZIG252511;FROTHPIZIG252501;FROTHPIZIG252451;FROTHPIZIG252441;FROTHPIZIG252421;FROTHPIZIG252411;FROTHPIZIG25241;FROTHPIZIG252401;FROTHPIZIG252371;FROTHPIZIG252351;FROTHPIZIG252341;FROTHPIZIG252321;FROTHPIZIG252311;FROTHPIZIG252301;FROTHPIZIG252241;FROTHPIZIG252231;FROTHPIZIG252221;FROTHPIZIG252211;FROTHPIZIG25221;FROTHPIZIG252201;FROTHPIZIG252171;FROTHPIZIG252161;FROTHPIZIG252131;FROTHPIZIG252121;FROTHPIZIG252101;FROTHPIZIG25211;FROTHPIZIG252111;FROTHPIZIG252141;FROTHPIZIG252151;FROTHPIZIG252181;FROTHPIZIG252191;FROTHPIZIG252251;FROTHPIZIG252261;FROTHPIZIG252271;FROTHPIZIG252281;FROTHPIZIG252291;FROTHPIZIG25231;FROTHPIZIG252331;FROTHPIZIG252361;FROTHPIZIG252381;FROTHPIZIG252391;FROTHPIZIG252431;FROTHPIZIG252461;FROTHPIZIG252471;FROTHPIZIG252481;FROTHPIZIG252491;FROTHPIZIG25251;FROTHPIZIG252521;FROTHPIZIG252541;FROTHPIZIG252551;FROTHPIZIG252591;FROTHPIZIG252601;FROTHPIZIG25271;FROTHPIZIG306101;FROTHPIZIG30611;FROTHPIZIG306111;FROTHPIZIG306161;FROTHPIZIG306201;FROTHPIZIG306211;FROTHPIZIG306221;FROTHPIZIG306231;FROTHPIZIG306261;FROTHPIZIG306271;FROTHPIZIG306281;FROTHPIZIG306301;FROTHPIZIG306311;FROTHPIZIG306321;FROTHPIZIG306331;FROTHPIZIG306341;FROTHPIZIG306381;FROTHPIZIG306391;FROTHPIZIG306411;FROTHPIZIG306421;FROTHPIZIG306451;FROTHPIZIG306491;FROTHPIZIG30651;FROTHPIZIG306511;FROTHPIZIG306521;FROTHPIZIG306531;FROTHPIZIG306551;FROTHPIZIG30661;FROTHPIZIG30681;FROTHPIZIG30941;FROTHPIZIG726161;FROTHPIZIG726171;FROTHPIZIG726181;FROTHPIZIG726191;FROTHPIZIG726201;FROTHPIZIG726281;FROTHPIZIG726291;FROTHPIZIG726301;FROTHPIZIG726311;FROTHPIZIG726381;FROTHPIZIG726401;FROTHPIZIG726411;FROTHPIZIG726421;FROTHPIZIG726481;FROTHPIZIG72651;FROTHPIZIG72661;FROTHPIZIG72671;FROTHPIZIG72681", + "socket:type2_combo:output": "50 kW", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW;3.68 kW;7.36 kW;7 kW", + "start_date": "2023-10-12;2021-12-03;2021-12-09;2021-12-08;2021-12-04;2021-12-06;2021-12-07", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IZIG*726*9*_*_;FR*SOD*S*IZIG*726*7*_*_;FR*SOD*S*IZIG*726*6*_*_;FR*SOD*S*IZIG*726*5*_*_;FR*SOD*S*IZIG*726*42*_*_;FR*SOD*S*IZIG*726*41*_*_;FR*SOD*S*IZIG*726*40*_*_;FR*SOD*S*IZIG*726*37*_*_;FR*SOD*S*IZIG*726*35*_*_;FR*SOD*S*IZIG*726*34*_*_;FR*SOD*S*IZIG*726*3*_*_;FR*SOD*S*IZIG*726*28*_*_;FR*SOD*S*IZIG*726*26*_*_;FR*SOD*S*IZIG*726*25*_*_;FR*SOD*S*IZIG*726*23*_*_;FR*SOD*S*IZIG*726*22*_*_;FR*SOD*S*IZIG*726*18*_*_;FR*SOD*S*IZIG*726*17*_*_;FR*SOD*S*IZIG*726*16*_*_;FR*SOD*S*IZIG*726*15*_*_;FR*SOD*S*IZIG*726*14*_*_;FR*SOD*S*IZIG*726*13*_*_;FR*SOD*S*IZIG*726*10*_*_;FR*SOD*S*IZIG*309*4*_*_;FR*SOD*S*IZIG*309*3*_*_;FR*SOD*S*IZIG*306*8*_*_;FR*SOD*S*IZIG*306*7*_*_;FR*SOD*S*IZIG*306*6*_*_;FR*SOD*S*IZIG*306*58*_*_;FR*SOD*S*IZIG*306*56*_*_;FR*SOD*S*IZIG*306*54*_*_;FR*SOD*S*IZIG*306*53*_*_;FR*SOD*S*IZIG*306*52*_*_;FR*SOD*S*IZIG*306*5*_*_;FR*SOD*S*IZIG*306*48*_*_;FR*SOD*S*IZIG*306*46*_*_;FR*SOD*S*IZIG*306*44*_*_;FR*SOD*S*IZIG*306*4*_*_;FR*SOD*S*IZIG*306*39*_*_;FR*SOD*S*IZIG*306*37*_*_;FR*SOD*S*IZIG*306*34*_*_;FR*SOD*S*IZIG*306*32*_*_;FR*SOD*S*IZIG*306*3*_*_;FR*SOD*S*IZIG*306*29*_*_;FR*SOD*S*IZIG*306*28*_*_;FR*SOD*S*IZIG*306*27*_*_;FR*SOD*S*IZIG*306*21*_*_;FR*SOD*S*IZIG*306*2*_*_;FR*SOD*S*IZIG*306*15*_*_;FR*SOD*S*IZIG*306*14*_*_;FR*SOD*S*IZIG*306*12*_*_;FR*SOD*S*IZIG*306*11*_*_;FR*SOD*S*IZIG*306*10*_*_;FR*SOD*S*IZIG*252*8*_*_;FR*SOD*S*IZIG*252*6*_*_;FR*SOD*S*IZIG*252*59*_*_;FR*SOD*S*IZIG*252*57*_*_;FR*SOD*S*IZIG*252*53*_*_;FR*SOD*S*IZIG*252*52*_*_;FR*SOD*S*IZIG*252*5*_*_;FR*SOD*S*IZIG*252*48*_*_;FR*SOD*S*IZIG*252*47*_*_;FR*SOD*S*IZIG*252*46*_*_;FR*SOD*S*IZIG*252*45*_*_;FR*SOD*S*IZIG*252*43*_*_;FR*SOD*S*IZIG*252*41*_*_;FR*SOD*S*IZIG*252*4*_*_;FR*SOD*S*IZIG*252*40*_*_;FR*SOD*S*IZIG*252*39*_*_;FR*SOD*S*IZIG*252*36*_*_;FR*SOD*S*IZIG*252*34*_*_;FR*SOD*S*IZIG*252*33*_*_;FR*SOD*S*IZIG*252*32*_*_;FR*SOD*S*IZIG*252*30*_*_;FR*SOD*S*IZIG*252*29*_*_;FR*SOD*S*IZIG*252*28*_*_;FR*SOD*S*IZIG*252*27*_*_;FR*SOD*S*IZIG*252*22*_*_;FR*SOD*S*IZIG*252*21*_*_;FR*SOD*S*IZIG*252*2*_*_;FR*SOD*S*IZIG*252*17*_*_;FR*SOD*S*IZIG*252*16*_*_;FR*SOD*S*IZIG*252*15*_*_;FR*SOD*S*IZIG*252*14*_*_;FR*SOD*S*IZIG*252*1*_*_;FR*SOD*S*IZIG*252*10*_*_;FR*SOD*S*IZIG*252*11*_*_;FR*SOD*S*IZIG*252*12*_*_;FR*SOD*S*IZIG*252*13*_*_;FR*SOD*S*IZIG*252*18*_*_;FR*SOD*S*IZIG*252*19*_*_;FR*SOD*S*IZIG*252*20*_*_;FR*SOD*S*IZIG*252*23*_*_;FR*SOD*S*IZIG*252*24*_*_;FR*SOD*S*IZIG*252*25*_*_;FR*SOD*S*IZIG*252*26*_*_;FR*SOD*S*IZIG*252*3*_*_;FR*SOD*S*IZIG*252*31*_*_;FR*SOD*S*IZIG*252*35*_*_;FR*SOD*S*IZIG*252*37*_*_;FR*SOD*S*IZIG*252*38*_*_;FR*SOD*S*IZIG*252*42*_*_;FR*SOD*S*IZIG*252*44*_*_;FR*SOD*S*IZIG*252*49*_*_;FR*SOD*S*IZIG*252*50*_*_;FR*SOD*S*IZIG*252*51*_*_;FR*SOD*S*IZIG*252*54*_*_;FR*SOD*S*IZIG*252*55*_*_;FR*SOD*S*IZIG*252*56*_*_;FR*SOD*S*IZIG*252*58*_*_;FR*SOD*S*IZIG*252*60*_*_;FR*SOD*S*IZIG*252*61*_*_;FR*SOD*S*IZIG*252*62*_*_;FR*SOD*S*IZIG*252*7*_*_;FR*SOD*S*IZIG*252*9*_*_;FR*SOD*S*IZIG*306*1*_*_;FR*SOD*S*IZIG*306*13*_*_;FR*SOD*S*IZIG*306*16*_*_;FR*SOD*S*IZIG*306*17*_*_;FR*SOD*S*IZIG*306*18*_*_;FR*SOD*S*IZIG*306*19*_*_;FR*SOD*S*IZIG*306*20*_*_;FR*SOD*S*IZIG*306*22*_*_;FR*SOD*S*IZIG*306*23*_*_;FR*SOD*S*IZIG*306*24*_*_;FR*SOD*S*IZIG*306*25*_*_;FR*SOD*S*IZIG*306*26*_*_;FR*SOD*S*IZIG*306*30*_*_;FR*SOD*S*IZIG*306*31*_*_;FR*SOD*S*IZIG*306*33*_*_;FR*SOD*S*IZIG*306*35*_*_;FR*SOD*S*IZIG*306*36*_*_;FR*SOD*S*IZIG*306*38*_*_;FR*SOD*S*IZIG*306*40*_*_;FR*SOD*S*IZIG*306*41*_*_;FR*SOD*S*IZIG*306*42*_*_;FR*SOD*S*IZIG*306*43*_*_;FR*SOD*S*IZIG*306*45*_*_;FR*SOD*S*IZIG*306*47*_*_;FR*SOD*S*IZIG*306*49*_*_;FR*SOD*S*IZIG*306*50*_*_;FR*SOD*S*IZIG*306*51*_*_;FR*SOD*S*IZIG*306*55*_*_;FR*SOD*S*IZIG*306*57*_*_;FR*SOD*S*IZIG*306*9*_*_;FR*SOD*S*IZIG*726*1*_*_;FR*SOD*S*IZIG*726*11*_*_;FR*SOD*S*IZIG*726*12*_*_;FR*SOD*S*IZIG*726*19*_*_;FR*SOD*S*IZIG*726*20*_*_;FR*SOD*S*IZIG*726*2*_*_;FR*SOD*S*IZIG*726*21*_*_;FR*SOD*S*IZIG*726*24*_*_;FR*SOD*S*IZIG*726*27*_*_;FR*SOD*S*IZIG*726*29*_*_;FR*SOD*S*IZIG*726*30*_*_;FR*SOD*S*IZIG*726*31*_*_;FR*SOD*S*IZIG*726*32*_*_;FR*SOD*S*IZIG*726*33*_*_;FR*SOD*S*IZIG*726*36*_*_;FR*SOD*S*IZIG*726*38*_*_;FR*SOD*S*IZIG*726*39*_*_;FR*SOD*S*IZIG*726*4*_*_;FR*SOD*S*IZIG*726*43*_*_;FR*SOD*S*IZIG*726*44*_*_;FR*SOD*S*IZIG*726*45*_*_;FR*SOD*S*IZIG*726*46*_*_;FR*SOD*S*IZIG*726*47*_*_;FR*SOD*S*IZIG*726*48*_*_;FR*SOD*S*IZIG*726*49*_*_;FR*SOD*S*IZIG*726*50*_*_;FR*SOD*S*IZIG*726*8*_*_", + "operator:email": "sav@izivia.com", + "description": "CNPE CIVAUX NORD - RANGEE B;CNPE CIVAUX - NORD - RANGEE A;CNPE CIVAUX - NORD - RANGEE C;CNPE CIVAUX - SUD - OMB 10 - PUBLIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64889000000, + 46.46231000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6833675", + "capacity": "2", + "amenity": "charging_station", + "network": "PANORAMIC BORNE 1", + "start_date": "2024-03-20", + "ref:EU:EVSE": "FRCPIE6833675", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator:email": "info@chargepoint.com", + "description": "PANORAMIC BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13949900000, + 45.85938600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "594401", + "description": "Freshmile France/J0GFGGCJEV", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3685885525805474788", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57866700000, + 48.89269100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL CALAIS COQUELLES TUNNEL SS LA MANCHE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP122036", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-04-23", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80432100000, + 50.94228400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "783669831", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-08-30", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRFR1EPJXS", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "contact@electricite-loos.fr", + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "network": "RME Loos (FR-FR1);RME Loos (FR-FR1) ", + "description": "Loos, Parking CIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00961300000, + 50.61750900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP16979", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Blagnac, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36975400000, + 43.64759800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QMLUBIPCHF", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "ref:EU:EVSE": "FRFR1P5806783600169401506", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "346457", + "charging_station:output": "50 kW;36 kW;3 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206900000, + 47.87713100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/V4TIQY3EGA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461976", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P6228732151341456945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90295600000, + 49.30880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS13PSQ6LSDTSXW", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Chateaurenard, Parking Avenue Marx Dormoy", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85717400000, + 43.88388500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1128114", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWATL7LUYO9YL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P3046815001570007250", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57571100000, + 45.89784400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARENTAN LES MARAIS - bd des Fortifications", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P50099001", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2017-11-29", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24218290000, + 49.30348330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW;36 kW", + "capacity": "1;2", + "operator:email": "fr.duhamel@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS81E81140003;FRS81E8114000311;FRS81E8114000312;FRS81E8114000321;FRS81E8114000322", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S;BOUYGUES ENERGIES SERVICES", + "start_date": "2017-03-15;2022-03-02", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "LAVAUR - Avenue De La Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81329300000, + 43.70339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "RELAIS DE LANCON DE PROVENCE OUEST", + "start_date": "2023-06-05;2021-09-10;2021-12-15;2024-02-27", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680721;531680717;531680716;531680714;531680713;531680712;531680711;531680710;531680707;531680706;531680708;531680709;531680715;531680718;531680720;531680719", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRHPCPNF059189", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF059189", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18640000000, + 43.58970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS48E48034001", + "description": "LA CANOURGUE - Chemin De La Bastide- parking derrière Mairie", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21442700000, + 44.43120600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PYFURSC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/YFURSC", + "network": "Mobilité électrique 56", + "ref": "32830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39755000000, + 47.48080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "WAZIERS - MAIRIE", + "ref:EU:EVSE": "FRH04E59654002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10925168000, + 50.38539079000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E29259003", + "charging_station:output": "50 kW;43 kW", + "start_date": "2023-09-20", + "description": "SAINT POL DE LÉON - Aire De Covoiturage Kerglaz Saint Pol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00153900000, + 48.68239900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-18", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PEKLYRW", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Carentoir - Rue Abbé de La Vallière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.13333200000, + 47.81780400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LOUDUN PORTE DE MIREBAU QC50-1;LOUDUN PORTE DE MIREBEAU-1-2;LOUDUN PORTE DE MIREBEAU-1-1", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-09-24;2017-02-14", + "amenity": "charging_station", + "capacity": "1", + "ref": "B147;B057", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346052702;FRLMSE12346051882;FRLMSE12346051881;FRLMSE12346051871;FRLMSE12346051872;FRLMSE12346052701", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "charging_station:output": "50 kW;18 kW", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08608000000, + 47.00618000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-26", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "description": "Metropolis - Express - Le Blanc-Mesnil - Albert Einstein;Métropolis/FR*MGP*P93007*B", + "owner:ref:FR:SIREN": "885354860", + "ref": "599121", + "ref:EU:EVSE": "FRMGPP93007B", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46654600000, + 48.94881600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*95*1*_*_", + "description": "SIGEIF - PARKING - RUE DU GENERAL DE GAULLE - CHENNEVIERES-SUR-MARNE", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-01-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE9512;FRSIGPSIGE9511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53193600000, + 48.79885600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1068456", + "charging_station:output": "300 kW;22 kW;150 kW", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "capacity": "15", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00354", + "ref:EU:EVSE": "FRATLP1383866024534001386" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74822000000, + 50.72418000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE10000837041", + "operator": "ZEENCO", + "opening_hours": "24/7", + "description": "Vittel-Orange", + "charging_station:output": "22 kW", + "network": "ZEENCO", + "start_date": "2022-08-18", + "operator:email": "franck.legardeur@zeenco.tech", + "owner:ref:FR:SIREN": "852425289" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94637000000, + 48.20226900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM59E59017002", + "network": "pass pass électrique", + "description": "ARMENTIERES - Ruches d'Entreprises", + "start_date": "2024-10-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86438210000, + 50.68992250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85191013", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-14", + "description": "LA ROCHE-SUR-YON - Parking Michelin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42884302100, + 46.70299911000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9990312;FRALLEGO9990311;FRALLEGO9990302;FRALLEGO9990301;FRALLEGO9002903;FRALLEGO9002902;FRALLEGO9002901;FRALLEGO9001362;FRALLEGO9001361;FRALLEGO9000371;FRALLEGO9000372", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "start_date": "2023-06-09", + "network": "Allego Carrefour Reims Tinqueux", + "ref:EU:EVSE": "FRALLEGO9990312;FRALLEGO9990311;FRALLEGO9990302;FRALLEGO9990301;FRALLEGO9002903;FRALLEGO9002902;FRALLEGO9002901;FRALLEGO9001362;FRALLEGO9001361;FRALLEGO9000371;FRALLEGO9000372", + "description": "Allego Carrefour Reims Tinqueux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97790910000, + 49.25415800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | PLAN-DE-CUQUES - LA MONTADE", + "ref:EU:EVSE": "FRIZMPMAMP3412;FRIZMPMAMP3411", + "start_date": "2023-03-01", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*MAMP*34*1*_*_", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46693900000, + 43.36015100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-01-09", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Match - Cysoing", + "ref:EU:EVSE": "FRPD1PMATCYS", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22319848977, + 50.56650634859 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2017-05-02", + "ref:EU:EVSE": "FREBNPYZEURE1", + "ref": "yzeure1;120746", + "description": "Yzeure, Place Bendorf;Réseau eborn/yzeure1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35443000000, + 46.56530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/E594C529-34E2-41D8-8A3F-6427200C9068", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP5479215337075951862", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "927816", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37587000000, + 43.28419800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2024-01-20", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "ref:EU:EVSE": "FRPD1PIBIBIR", + "opening_hours": "24/7", + "description": "Greet Hotel Orthez Biron", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75182400000, + 43.46611700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPO21GQVZ2FZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/O21GQVZ2FZ;Argonay, Quartier Rigoles", + "ref": "O21GQVZ2FZ;63974" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13965500000, + 45.94015900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - Kyriad Valence", + "start_date": "2024-01-21", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP26362A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP26362A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88596158838, + 44.94463126201 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;22 kW", + "description": "SUPER U - TONNAY-CHARENTE", + "ref:EU:EVSE": "FROTHPOTHR19441;FROTHPOTHR19411;FROTHPOTHR19421;FROTHPOTHR19431", + "ref": "FR*SOD*S*OTHR*194*1*_*_;FR*SOD*S*OTHR*194*2*_*_;FR*SOD*S*OTHR*194*3*_*_;FR*SOD*S*OTHR*194*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-06-14", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89837600000, + 45.95108500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-12-17", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*CAPS*26*1*_*_", + "charging_station:output": "22 kW", + "description": "VAUHALLAN - MAIRIE", + "ref:EU:EVSE": "FRCPSPCAPS2612;FRCPSPCAPS2611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20761000000, + 48.73402000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P907683836079673532", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLYE7Z4ZB28GM6", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1150080" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51170900000, + 44.90298900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENRGETICA/f5a52cd1-4096-4a53-9d4a-e066c2a27157", + "ref": "800043", + "network": "ENRGETICA", + "ref:EU:EVSE": "FRVISP1919340538818271100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77697300000, + 43.92932900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "232471", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PSAYTBZ", + "charging_station:output": "22 kW", + "description": "Freshmile France/SAYTBZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88313000000, + 49.47990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "socket:type2_combo:output": "50 kW", + "ref": "1000081551", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ABB T54 Audi Cessy", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRSWSE1000081551", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06729300000, + 46.31057800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6316067161886725242", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/G009CV3ZJE", + "operator": "Freshmile | FR*FR1", + "ref": "756960" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52573700000, + 43.47749800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-11-08", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Seat - ABVV Automobiles - Epinay sur Seine", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPSEATEPINAY938001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30844400000, + 48.95818400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E137295;FRS28E137294", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - COMMUNE NOUVELLE D'ARROU - Place Rillé", + "network": "MODULO - COMMUNE NOUVELLE D'ARROU - Place Rillé", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E137295;FRS28E137294", + "start_date": "2022-07-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13533800000, + 48.07953200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "amenity": "charging_station", + "start_date": "2021-08-18", + "network": "SANYA MARKET", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "description": "SANYA MARKET", + "operator:email": "frsupport@ev-box.com", + "owner:ref:FR:SIREN": "502997935", + "ref": "NL*EVB*EDZYHHJBOU2V5KSR5P4S3LGEN24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08144450000, + 44.13867050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39797", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P5869380348358191502", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/B6PXRPIOV4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07046100000, + 48.29211500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP2684576381229348906", + "network": "WAAT", + "description": "WAAT/FRWATLUHJ9HRDL", + "ref": "706283", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46801200000, + 48.41456300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "REMILLY LES MARAIS (LE MESNIL VIGOT) - La Rivière de Haut", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2016-08-18", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50570001", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28196800000, + 49.16112900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TANUS - Place De l'Eglise", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81292001", + "start_date": "2024-06-25", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31787600000, + 44.10200600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "INTERPARKING - Bordeaux Cité du Vin", + "owner:ref:FR:SIREN": "692051113", + "ref": "FRIPKECTV", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-06", + "capacity": "21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRIPKECTV", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032000000, + 44.86411000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "LA CHAPELLE-DU-GENET - Rue Nationale;OuestCharge - Diva Sp - La Chapelle-du-Genet - Nationale", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-04-17;2021-04-22", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49E49072001;FRS49P49072A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01861400000, + 47.18267900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60P7449376362008701153", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/SRK69JLULG", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "346610" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04625500000, + 49.55403600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62119005", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BETHUNE - Place du Général de Gaulle", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64330600000, + 50.53513600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEYNES - Parking Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30166001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56303400000, + 43.88326600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PTZEHVV", + "description": "Malestroit - Place du Docteur Jean Queinnec" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38441900000, + 47.80991200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-04-20", + "description": "ARCHIGNY-1-2;ARCHIGNY-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "B004", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346396631;FRLMSE12346396641", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243000000, + 46.67327100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Métropolis/FR*MGP*P94080*C", + "ref": "348965", + "ref:EU:EVSE": "FRMGPP94080C", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43688500000, + 48.85148000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*128*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 24 AVENUE DE LA RESISTANCE - RAINCY", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE12811;FRSIGPSIGE12812", + "operator:email": "sav@izivia.com", + "start_date": "2021-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51281400000, + 48.89233200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E78423001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-23", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MONTIGNY LE BRETONNEUX - Boulevard René Descartes", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03983800000, + 48.76992300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-20", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89488047", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Première Classe Blois" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33186900000, + 47.61242100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-27", + "charging_station:output": "3.7 kW;22 kW", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS16PMB161911;Non concerné;FRS16PMB161912", + "description": "LUXE - PLACE DE LA GARE;MOBIVE | Luxe | Place de la Gare", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref": "035e43cc-8a38-5193-a839-2cbe7e702431;FR*SOD*S*MB16*19*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10990400000, + 45.88785600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "France Pare-Brise - CHALON SUR SAÔNE", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE71CADA", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86322600000, + 46.76858800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "description": "ROMORANTIN", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-07-09", + "capacity": "10", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSROMRT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74848800000, + 47.33774500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3713EVCP01;LFR3713EVCP02", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3713EVCP01;LFR3713EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "MUNSTER Artisans;MUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15895900000, + 48.04248600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "30 kW;3 kW;36 kW", + "start_date": "2022-02-28;2022-03-03", + "ref:EU:EVSE": "FRM31E31555001", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Marengo", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45644400000, + 43.61011100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Biol, parking chemin de l usine", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPLMO4CYWQ7Z", + "ref": "LMO4CYWQ7Z" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38914720000, + 45.49077220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3935168168911331885", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLPMS30Y77SZDW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1002894", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17794800000, + 49.10688600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "PARIS - Pierre Charron", + "start_date": "2021-11-30;2024-05-30;2020-06-26;2020-06-16;2020-09-15", + "ref:EU:EVSE": "FRP07E75108005;FRP07E751080051;FRP07E751080052" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30402000000, + 48.86978000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Huez, Parking Rif Nel", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPBJ9ZXKARJE", + "ref": "BJ9ZXKARJE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07095920000, + 45.09490380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP664980082517708555", + "network": "Road", + "amenity": "charging_station", + "capacity": "3", + "ref": "978185", + "charging_station:output": "22 kW", + "description": "Road/65671afe6b50ff001c5e0163", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "opening_hours": "Th,Mo,Sa,Su,We,Tu,Fr 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61676800000, + 47.32972000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "description": "Parking gare de Lille Flandres (Entrée rue de Tournai) - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E59350001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07231280000, + 50.63480400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "WELDOM CASTRES BORNE 2", + "ref": "FRCPIE6609805", + "ref:EU:EVSE": "FRCPIE6609805", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "WELDOM CASTRES BORNE 2", + "start_date": "2022-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26932000000, + 43.61871400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFANRVL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FANRVL;Greoux-Les-Bains, Parking Ecociné Verdon", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "78618;FANRVL", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88646000000, + 43.75690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/s570520", + "capacity": "2", + "amenity": "charging_station", + "ref": "1181907", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P985611037255228282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60469900000, + 48.79538400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "598023", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5975929395472658404", + "description": "Freshmile France/TJNUX7EA3X", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19557000000, + 43.57345100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GARAGE TACHARD - LA COURTINE", + "start_date": "2022-06-23", + "ref:EU:EVSE": "FRTCBP00695", + "opening_hours": "Mo-Fr 08:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "ref": "FRTCBP00695", + "network": "PSA Agents France", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "322591892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25896723510, + 45.70275595426 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1122184006128949919", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/UUWW8D2QTS", + "charging_station:output": "7.4 kW", + "ref": "368953" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65302200000, + 44.84523300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-10-23", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN111001", + "operator:email": "support@driveco.com", + "description": "Nissan - Narbonne", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97966000000, + 43.15507800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Le Folgoet-Rue du Verger", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2905500", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33542600000, + 48.56198900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P3506997538133461512", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/TAI6K956YE", + "ref": "454440" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10355300000, + 48.01681400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "478420961", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1PEAC118280;FRZP1PEAC118286", + "ref": "0294742a-11aa-4c89-8e27-fc89277c9bf2", + "network": "Ibis Budget Evreux", + "description": "Ibis Budget Evreux - 7.4 kW AC", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15353246000, + 49.02828992000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E144223;FRS08E144222", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS08E144223;FRS08E144222", + "start_date": "2023-03-15", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - GRANDPRE - Rue de Montlix", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - GRANDPRE - Rue de Montlix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86987700000, + 49.34021800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/Picquignygare", + "ref": "64709", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PPICQUIGNYGARE", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14350000000, + 49.94600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*197*1*_*_", + "operator": "IZIVIA", + "description": "IZIVIA FAST - MC DONALDS - PONT DE BEAUVOISIN", + "ref:EU:EVSE": "FRIZFPFAST19712;FRIZFPFAST19711;FRIZFPFAST19713", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-26", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68801640000, + 45.52939030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Les Touches - Melaine;LES TOUCHES - Rue Saint-Mélaine", + "ref:EU:EVSE": "FRS44P44205A;FRS44E0440084;FRS44E44205001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-02;2024-04-29;2024-04-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43181700000, + 47.44194800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-26;2016-08-12", + "description": "Barbizon - Office de tourisme - AC;BARBIZON - Rue Théodore Rousseau", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77022001;FRS77P77022A", + "ref": "01F5ZAKH60YBBWPJTRVZESZ26B", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60338200000, + 48.44495000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "opening_hours": "Mo-Sa 06:00-20:00", + "amenity": "charging_station", + "description": " SIEGE SOCIAL DU CREDIT AGRICOLE MUTUEL DE GUADELOUPE;SIEGE SOCIAL DU CREDIT AGRICOLE MUTUEL DE GUADELOUPE", + "network": "GMOB", + "ref": "dd6ac404-a0fa-4d4c-91ca-fb5b85ccc661", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGOBPCAMGPETITPEROU", + "owner:ref:FR:SIREN": "314560772", + "operator:email": "contact@gmob.fr", + "operator": "G-MOB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.51535100000, + 16.25467200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219717;FRS37E219725", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - LA CHAPELLE BLANCHE SAINT MARTIN - Rue de l'Abbé Favoreau", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - LA CHAPELLE BLANCHE SAINT MARTIN - Rue de l'Abbé Favoreau", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219717;FRS37E219725", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79149800000, + 47.08722500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-09", + "network": "Morbihan Energies", + "description": "Plumelec - Rue des Martyrs de la Résistance", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PGJHPTX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64181500000, + 47.83804400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "AGGLOMERATION MONTARGOISE - COMMISSARIAT", + "start_date": "2023-10-04", + "capacity": "2", + "description": "AGGLOMERATION MONTARGOISE - COMMISSARIAT", + "amenity": "charging_station", + "ref": "FRG10P45208A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P45208A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72977549495, + 48.00024364848 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "d9e026ff-fe31-5c40-a4b5-c24511859d80", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Les Peintures | Rue Lucien lacour | Parking Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09756800000, + 45.06965600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*24*1*_*_", + "capacity": "2", + "description": "SIGEIF - 1 PLACE OLIVIER MESSIAEN - FONTENAY-LE-FLEURY", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2020-10-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE2412;FRSIGPSIGE2411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05212000000, + 48.80807000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "21812", + "socket:type2_combo:output": "50 kW;44 kW", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "Move In Pure/TUZTTN", + "ref:EU:EVSE": "FRCN1PTUZTTN", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83447000000, + 45.95690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "492063", + "description": "Leclerc/NRA1F3Q2QE", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P8847801335975869725", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64296800000, + 49.07614300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Savinien | Place de la Gare", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7b4b863b-7183-5c89-8c03-80752b1a5097", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67835400000, + 45.87619700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-08-29", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Saint Hilaire Rue principale", + "ref:EU:EVSE": "FRSE1PSE91SABA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07327400000, + 48.43331500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "St-Remy-de-Provence, Office De Tourisme", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "ref:EU:EVSE": "FRABAPFCDYTO0R4D", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83120200000, + 43.78624400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3663EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "AYGUESVIVES Prioul", + "ref:EU:EVSE": "LFR3663EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59090400000, + 43.45098900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-13", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GRENOBLE - Rue Albert Reynier (Lesdiguières)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70562180000, + 45.16693290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEXIMIEUX - Rue Des Stades", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA15E01244001", + "start_date": "2022-02-01", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19207500000, + 45.90044500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "735186", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7028323922463274976", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RJXC0KVN9L" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96942400000, + 45.73287100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "hotelF1 - Saint-Étienne", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2024-01-19", + "ref:EU:EVSE": "FRPD1PACCSTE", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39646780000, + 45.45947250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyeres, Quartier La Blocarde;Réseau eborn/UDLITAUEPN", + "ref:EU:EVSE": "FREBNP8861506526795788993;FREBNPUDLITAUEPN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "UDLITAUEPN;529937", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2022-06-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14091200000, + 43.11834400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Angers - Hôtel Mercure Lac de Maine", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPANGHM", + "start_date": "2022-12-21", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59341900000, + 47.46851100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare du Raincy Villemomble Montfermeil RER P+R - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E93062001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51343000000, + 48.88942000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRCPIE6664345;FRCPIE6664335", + "opening_hours": "24/7", + "ref": "FRCPIE6664345;FRCPIE6664335", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "UTILE LAPALUD BORNE 2", + "description": "UTILE LAPALUD BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68578400000, + 44.31130200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRECHP2130515059576518406", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "socket:type2_combo:output": "90 kW", + "opening_hours": "24/7", + "description": "Easy Charge/JJWKFPHI8F", + "ref": "749205", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19816100000, + 47.37428000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue Julien Lacroix 39", + "ref": "FR*V75*PPX20*06", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-07-07", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX2006", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38494000000, + 48.86986000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6255894897589261297", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "368860", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/JHHZIKO6YD", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59212000000, + 44.85543800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-10-12", + "amenity": "charging_station", + "ref": "FR*V75*PPX03*06", + "ref:EU:EVSE": "FRV75PPX0306", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue de Turenne 98" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36485130000, + 48.86235050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PPHRNCR", + "ref": "120695", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PHRNCR", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25396000000, + 48.93510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ford - Orange", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2021-02-02", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMAURINFORD841001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84518600000, + 44.11357900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22264001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "description": "La Roche Derrien-Place du pilori / Place du martray (parking du boulodrome)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26137000000, + 48.74520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "24 kW;3 kW", + "ref:EU:EVSE": "FRS11E11301001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PUICHERIC - Parking du parc Carmen Peany", + "start_date": "2023-11-22", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62681316048, + 43.22319161875 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-28", + "ref": "59954;59953", + "owner:ref:FR:SIREN": "342583796", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZTLE22AC59953;FRZTLE22AC59954", + "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", + "network": "Toyota Bressuire - LES GARAGES CHAIGNEAU", + "operator": "ZEBORNE", + "description": "Toyota - Bressuire - 22kW AC G ; Toyota - Bressuire - 22kW AC D " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49434840000, + 46.83696720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P5156742063292513889", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "896739", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/C16QZJT72Y" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10853700000, + 48.31855300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/eaucourtpont", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "64772", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PEAUCOURTPONT", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88311000000, + 50.06380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*76*1*_*_", + "start_date": "2024-03-22", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - DUNKERQUE VILLETTE", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST7613;FRIZFPFAST7611;FRIZFPFAST7612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39302637434, + 51.03290580238 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44E44111001;FRS44P44111A", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "NOTRE-DAME-DES-LANDES - Place De L'Église;OuestCharge - Diva Sp - Notre-Dame-Des-Landes - Eglise", + "start_date": "2024-04-19;2021-05-18", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71067200000, + 47.38148900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77284A;FRS77E77284001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "MEAUX - Colisée 1;Meaux - Colisée 1", + "start_date": "2023-09-13", + "ref": "201544cd-07dd-4649-a0de-295f9f377629", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90213900000, + 48.94369900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "description": "GreenYellow Shift Mobility/92", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref:EU:EVSE": "FRGYMP850739780229523653", + "ref": "1150815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38451800000, + 43.62819100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BLERE - Rue du Commandant Lemaître", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BLERE - Rue du Commandant Lemaître", + "ref": "FRS37E221301;FRS37E221304", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E221301;FRS37E221304" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99556900000, + 47.32801900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - CLERMONT EN ARGONNE - Pl. de la Malsenez", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CLERMONT EN ARGONNE - Pl. de la Malsenez", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66240;FRS55E66241", + "ref": "FRS55E66240;FRS55E66241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07175700000, + 49.10521200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*123*2*_*_;FR*SOD*S*LYON*123*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "LY903 - INDUSTRIE", + "amenity": "charging_station", + "start_date": "2021-11-26", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON12322;FRGLYPLYON12311;FRGLYPLYON12312;FRGLYPLYON12321" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81417700000, + 45.78879300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5913401", + "ref": "FR*MEL*P59134*01", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "description": "BEAUCAMPS-LIGNY - Rue des fournes", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91624100000, + 50.60431300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jaguar Land Rover - Béziers", + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "start_date": "2018-09-25", + "ref:EU:EVSE": "FRSSDPJLRGRIMBEZIERS345001", + "charging_station:output": "7.36 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25140000000, + 43.34719800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "POUSSY BORNE SUPERU BEAUMONT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6565565", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6565565", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "network": "POUSSY BORNE SUPERU BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93994900000, + 44.86543000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/XL2OE745FF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "479283", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P8836817514736195949", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470100000, + 46.04503600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "d63e49e2-e397-5908-9689-e1344ba019c7", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Saint Christoly de Blaye | Vc N°6 le Bourg", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50744900000, + 45.13012700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "ref": "75947c2c-5ac0-5659-bc2f-5bc4f1ef437f", + "opening_hours": "24/7", + "description": "Ollainville - Rue de la Source" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21822300000, + 48.59206700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "start_date": "2022-02-10", + "description": "Allego NISSAN Anglet", + "ref": "FRALLEGO0001011", + "network": "Allego NISSAN Anglet", + "ref:EU:EVSE": "FRALLEGO0001011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49852000000, + 43.49743600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4136EVCP03;LFR4136EVCP01;LFR4136EVCP02;LFR4136EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CARPENTRAS Monteux", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4136EVCP03;LFR4136EVCP01;LFR4136EVCP02;LFR4136EVCP04", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02532500000, + 44.04480900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - DELOYE RP", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE841;FRM06PNICE832;FRM06PNICE831;FRM06PNICE842", + "start_date": "2021-08-13;2021-06-15", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*8*4*_*_;FR*SOD*S*NICE*8*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26969700000, + 43.69941200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GRASSE PARKING PLACE DU COURS HONORE CRESP", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-05-22", + "ref:EU:EVSE": "FRA16PWIIZ2112;FRA16PWIIZ2111", + "ref": "FR*SOD*S*WIIZ*21*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92039900000, + 43.65642900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "491955", + "capacity": "5", + "description": "Freshmile France/YPNGGQLI7H", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P756911789917503332", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772700000, + 44.84847900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBRART", + "description": "Mr. Bricolage - Armentières", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87126592345, + 50.68199364976 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP1476931065422188328;FREBNPYEEBQJBWE2", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "757026;YEEBQJBWE2", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/YEEBQJBWE2;Vulbens, Chemin de la fruitière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93103600000, + 46.10175900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/44A52075-F6F3-4A7C-9BEC-0AA266CC4F4B", + "capacity": "5", + "ref": "1095654", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP5489070996627586209", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28937800000, + 47.73777700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "description": "METZ - Muse", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "37", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-07-07;2022-12-07;2023-10-23", + "ref:EU:EVSE": "FRP07E574630023;FRP07E574630022;FRP07E57463002;FRP07E574630021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18287800000, + 49.10589200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Duingt, Place de l'église;Réseau eborn/MX2GSCSOQH", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "MX2GSCSOQH;346820", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPMX2GSCSOQH;FREBNP1782293243813675904", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20202500000, + 45.82745400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FREFLP8565293020083424390", + "charging_station:output": "2.8 kW;28 kW", + "description": "Road/64bfbf3e94b4ac001c6abf4f", + "network": "Road", + "opening_hours": "Sa,Mo,Tu,Th,Su,Fr,We 08:00-18:00", + "amenity": "charging_station", + "ref": "1019244", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73164500000, + 48.49236000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-04", + "description": "ENGIE Vianeo - Hôtel Campanile Lens", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81784400000, + 50.45335200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SMBKVE", + "operator:email": "roaming@freshmile.com", + "ref": "86819", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PSMBKVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50962000000, + 49.54740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX12*01", + "opening_hours": "24/7", + "description": "Paris | Avenue du Docteur Arnold Netter 10", + "start_date": "2021-06-10", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40501370000, + 48.84159510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "597852", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GXQCI6D93G", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3010883895958385452", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16969300000, + 49.23708400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "description": "Volvo - Corsin - Bourg-en-Bresse", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-05-18", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCORSINVOLVO010001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23175300000, + 46.22564800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PCHESNEMARES", + "description": "900085", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93197200000, + 48.89066900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "ref:EU:EVSE": "FRS21P21295A", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21295*A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97612600000, + 47.22772100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78530001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "ROSAY - D983", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67995000000, + 48.91428000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@qwello.fr", + "operator": "Qwello", + "ref:EU:EVSE": "FRQWCE8F89W", + "amenity": "charging_station", + "ref": "FRQWCE8F89W", + "opening_hours": "24/7", + "capacity": "30", + "owner:ref:FR:SIREN": "913705380", + "network": "Qwello", + "start_date": "2024-07-11;2024-07-25", + "description": "Route de mazayes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94316102412, + 45.81464621543 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "12", + "description": "WAAT/FRWATL9PJJCC9Y", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "754332", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP1078470041325558519", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82648800000, + 50.54838000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Loire", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE421600", + "ref": "FRIONE421600", + "start_date": "2022-03-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22591700000, + 45.85072200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E221043;FRS51E221044", + "description": "MODULO - BETHENY - Rue Paul Emile Victor", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - BETHENY - Rue Paul Emile Victor", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS51E221043;FRS51E221044", + "start_date": "2023-10-11", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05024100000, + 49.28762300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77P77118B", + "owner:ref:FR:SIREN": "200041309", + "ref": "6b0cc163-4a9e-4939-9666-bbf4425961bf", + "network": "Ecocharge77", + "capacity": "2", + "description": "Claye-Souilly - parking la Poste - DC", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-18", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68738700000, + 48.94598900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REL. LA CHAPONNE", + "capacity": "8", + "start_date": "2022-12-29", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FRHPCPNF080340", + "owner:ref:FR:SIREN": "531681072;531681068;531681066;531681065;531681069;531681067;531681071;531681070", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03630000000, + 47.50360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS34E34114001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GIGNAC - Parc D'Activité De Calmacé", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54678611111, + 43.64967500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PVVLALM", + "operator": "Freshmile", + "description": "Port-louis - Rue de la Brèche", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-09-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35777400000, + 47.70794100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/FEZQDELCUW", + "ref": "892887", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3478482190129827663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14238700000, + 49.26096700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "start_date": "2021-11-30", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92049E", + "opening_hours": "24/7", + "description": "Metropolis - Express - Montrouge - Barbes", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32785348000, + 48.81722451000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-29", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "capacity": "13", + "amenity": "charging_station", + "description": "Volvo - Roncq", + "ref:EU:EVSE": "FRSSDPDUGARDINVOLVO592231", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13682800000, + 50.74581000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC2P002601", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRC2P002601", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "description": "HOTEL FORMULE 1", + "owner:ref:FR:SIREN": "898839386", + "start_date": "2022-03-21", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "network": "HOTEL FORMULE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63232994080, + 43.46393203735 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/R82R4YH1ZS", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626555", + "ref:EU:EVSE": "FRLE2P1746577722237254283" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91664300000, + 45.89638500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Saint-Andre-De-Cubzac | Giratoire de la Garosse", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "50 kW;43 kW", + "ref": "c7a74578-7735-55ba-959a-f323d3b73173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43695500000, + 45.00500500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "CITROEN - ST-LEGER-SOUS-BRIENNE", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE10SABA", + "start_date": "2023-11-20", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51222600000, + 48.40492700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Be Cablé", + "charging_station:output": "50 kW;100 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "operator": "BeTrom | FR*BEC", + "amenity": "charging_station", + "ref": "375716", + "capacity": "3", + "ref:EU:EVSE": "FRBECP69027A", + "opening_hours": "24/7", + "description": "Be Cablé/FR*BEC*P69027*A", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77616500000, + 45.67892700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/FADPDFV1VI", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P7369981458327819786", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446699" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578300000, + 48.10448400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PULLQFHU4NZ", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Lamanon, Cd 71 D Rte de la Provence", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08596000000, + 43.69904200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P8194523531591894418", + "capacity": "2", + "description": "SDEY/ONM5JTR0HR", + "amenity": "charging_station", + "ref": "402575", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06671900000, + 48.34022500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MOUANS SARTOUX PARKING DE LA GARE", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-06-11", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ6622;FRA16PWIIZ6621;FRA16PWIIZ6612;FRA16PWIIZ6611", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*66*2*_*_;FR*SOD*S*WIIZ*66*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97319200000, + 43.62022400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/C2SCCZDTFI", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505545", + "ref:EU:EVSE": "FRFR1P8827517293526395320", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35926600000, + 43.13645100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "160 kW;60 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2024-06-30", + "description": "Sport 2000 - Grenade", + "amenity": "charging_station", + "charging_station:output": "22 kW;60 kW;160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSPOGND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30034686959, + 43.76065653920 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ZIMRJWFPJL;31822", + "description": "Réseau eborn/ZIMRJWFPJL;Espeluche, Rue Raymond Grosset", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPZIMRJWFPJL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82037000000, + 44.51525000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP8768362858129743014", + "description": "EVzen/0EFA9DB3-731A-4D7D-B02B-8ECFADCEF65E", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "EVzen", + "ref": "1063812", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35173000000, + 43.83999100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2023-07-25", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*673*2*_*_;FR*SOD*S*OTHR*673*1*_*_", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR67311;FROTHPOTHR67321", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "U LOCATION - SAINT-PERE-SUR-LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37877900000, + 47.79017400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64013;GUDSGH", + "capacity": "2", + "description": "Réseau eborn/GUDSGH;Veyrier-Du-Lac, Avenue Général Doyen", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPGUDSGH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17526000000, + 45.88080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "IRNE7AOJCY;50719", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/IRNE7AOJCY;Cotignac, 621 rue Ferraillon", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPIRNE7AOJCY;FREBNIRNE7AOJCY", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15007500000, + 43.52475800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*364*1*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR36412;FROTHPOTHR36411", + "description": "CAMPING LE KEROU - CLOHARS-CARNOET", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55838200000, + 47.77001900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5782073230716539712", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOYJML0T2NG0D", + "operator": "Freshmile | FR*FR1", + "ref": "980619" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07155000000, + 43.91508200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "capacity": "24", + "amenity": "charging_station", + "description": "Tesla Supercharger Béziers, France", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30259", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28402000000, + 43.33589000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3875939313203812909", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/A0MTYFQTIA", + "operator": "Freshmile | FR*FR1", + "ref": "398825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02130000000, + 47.04440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2023-06-13", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS690091", + "capacity": "3", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Volkswagen - ByMyCar - Vaise", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79545100000, + 45.77547800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E127147", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - CLOYES-SUR-LE-LOIR - Pl. Gambetta", + "ref": "FRS28E127147", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CLOYES-SUR-LE-LOIR - Pl. Gambetta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23391200000, + 47.99708900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22170001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plaine Haute-Place de la mairie (parking salle polyvalente)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85469800000, + 48.44502300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZKAE22AC88250;FRZKAE24DC88249", + "ref": "88250;88249", + "network": "KIA - REIMS", + "start_date": "2021-10-27", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-19:00", + "description": "KIA - Reims - 24kW DC ;KIA - Reims - 22kW AC", + "owner:ref:FR:SIREN": "479337107", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08556460000, + 49.23717110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Maison_Roches_2;Maison_Roches", + "ref:EU:EVSE": "FRROSE398;FRROSE291", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4;6", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93406700000, + 50.94106800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78238001", + "charging_station:output": "22 kW", + "description": "FLINS-SUR-SEINE - Place Charles De Gaulle", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87030600000, + 48.96446200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE435552;FRIOYE435551;FRIOYE435505;FRIOYE435501;FRIOYE435502;FRIOYE435503;FRIOYE435504;FRIOYE435506;FRIOYE435553", + "start_date": "2021-10-14", + "opening_hours": "24/7", + "description": "Orléans Nord", + "ref:EU:EVSE": "FRIOYE435552;FRIOYE435551;FRIOYE435505;FRIOYE435501;FRIOYE435502;FRIOYE435503;FRIOYE435504;FRIOYE435506;FRIOYE435553", + "network": "Orléans Nord", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85933240000, + 47.94888470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2024-05-16;2021-04-08", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS53E53034001;FRS53P53034A", + "description": "BONCHAMP-LES-LAVAL - Rue Du Maine - Parking Les Angenoises;OuestCharge - Diva Sp - Bonchamp-Les-Laval - Angenoises", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69995000000, + 48.07466300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66008001", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "ARGELES - Allée Ferdinand Buisson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02177800000, + 42.54911270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Diges", + "ref": "FRIENE007601;FRIENE007602", + "ref:EU:EVSE": "FRIENE007601;FRIENE007602", + "start_date": "2023-07-20", + "description": "Diges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34776500000, + 47.72021100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34926002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-12-17", + "network": "Reveo", + "description": "MAUGUIO - Boulevard De La Republique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01144300000, + 43.61669900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61278A", + "charging_station:output": "22 kW", + "ref": "SE61-LAIG-006", + "description": "L'Aigle - Place Verdun", + "start_date": "2023-05-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62157075100, + 48.76330741000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLI1HDD2GWRT7N", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "892071", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3617224860614083799" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440800000, + 46.64140400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/DBWUFY;Urau, Mairie", + "ref": "86924;DBWUFY", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PDBWUFY", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "start_date": "2018-06-05", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95573000000, + 43.01640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-29", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE920260013;FRSIPE920260012;FRSIPE920260011;FRSIPE92026001", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "network": "SIPPEREC", + "description": "COURBEVOIE - Rue de l'Alma - Parking Charras" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25412000000, + 48.89558000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000235;FRCG0E000236", + "start_date": "2022-08-03", + "capacity": "2", + "amenity": "charging_station", + "network": "Loire Hôtel Mercure - 49400 - 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Loire Hôtel Mercure - 49400 - 1", + "ref": "FRCG0E000235;FRCG0E000236", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07224800000, + 47.26186400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*139*1*_*_", + "start_date": "2021-07-07", + "capacity": "2", + "description": "COLOMARS - PARKING VERDUN", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE13911;FRM06PNICE13912", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21902800000, + 43.75923400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e46ac3f4-6936-59c9-b4a6-750e2de7b387", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Pomarez | Place de la Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82855000000, + 43.62865100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOTOBLOUZ - Seclin", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE59SABA", + "start_date": "2024-05-03", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05046500000, + 50.55132100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "222256;222258;222259", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Bump - Super U - St Sulpice Et Cameyrac", + "ref:EU:EVSE": "FRBMPS222256;FRBMPS222259;FRBMPS222258", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39117340000, + 44.91291210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3279EVCP02;LFR3279EVCP01", + "description": "CALAIS Saint Exupery", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3279EVCP02;LFR3279EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92003400000, + 50.94702200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Masseret- Place Marcel Champeix", + "ref": "7cd0f208-dccf-534e-975f-f940978f9400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52049100000, + 45.54105100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Saintry-sur-Seine - Parking Mairie", + "ref": "4960ab46-316e-5202-837b-479918d18e7e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49299300000, + 48.59654200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84160*LOU*D943", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2013-02-01", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP84160LOUD943", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "PARKING D943 LOURMARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36349000000, + 43.76575600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3064EVCP01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3064EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "description": "FREJUS Albert Einaudi", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74514200000, + 43.43091700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-10-16", + "opening_hours": "24/7", + "description": "Weldom La Tour du Pin - Saint-Clair-de-la-Tour", + "charging_station:output": "22 kW;50 kW;150 kW", + "ref:EU:EVSE": "FRPD1PWLDSTC", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45714600000, + 45.56857100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-28", + "socket:type2_combo:output": "50 kW", + "ref": "O85SVV2ACJ;134749", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPO85SVV2ACJ", + "opening_hours": "24/7", + "description": "Réseau eborn/O85SVV2ACJ;Reventin Vaugris, Parking du Gymnase", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83469000000, + 45.47300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref": "740994", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1087122533099189918", + "description": "Freshmile France/BPU0QLAYHU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62082900000, + 49.47632900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "socket:type2_combo:output": "25 kW", + "capacity": "7", + "ref:EU:EVSE": "FRP01E21231007", + "operator:email": "support@alizecharge.fr", + "description": "Parking de Dijon Monge - DIVIAPARK", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03132650000, + 47.31650780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Dropnplug", + "amenity": "charging_station", + "capacity": "12", + "ref": "1041840", + "description": "Dropnplug/52", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRDNPP43151380021502190", + "operator:email": "contact@dropnplug.fr", + "operator": "Dropnplug | FR*DNP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62656300000, + 48.08712000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/YOTTUNSLP2;Joyeuse, Le Pré du Château", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "YOTTUNSLP2;23633", + "ref:EU:EVSE": "FREBNPYOTTUNSLP2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24175000000, + 44.47997200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*480*2*_*_;FR*SOD*S*OTHR*480*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR48011;FROTHPOTHR48012;FROTHPOTHR48021;FROTHPOTHR48022", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "INTERMARCHE - SARAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88836700000, + 47.93630400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6942117897658071448", + "charging_station:output": "22 kW", + "description": "Freshmile France/AZIFAF8IUX", + "operator": "Freshmile | FR*FR1", + "ref": "398834" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02170000000, + 47.17860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "ref:EU:EVSE": "FRUBIE10058267;FRUBIE10028783", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "description": "Nice Havrais", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08080700000, + 49.50405600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Freshmile France/PUSQCHVOAB", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P2323025209947253044", + "operator": "Freshmile | FR*FR1", + "ref": "682208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86952500000, + 50.10547000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-12", + "description": "TOULOUSE - 96 avenue de Muret", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTLSE31555017", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42703000000, + 43.58340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLY5HXCTMW5R10", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3469954735184838257", + "ref": "1149558", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89238700000, + 47.13641000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/CLLQAPXJGQ", + "capacity": "2", + "amenity": "charging_station", + "ref": "461679", + "ref:EU:EVSE": "FRS14P8265376412090050268", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30359600000, + 49.03493900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUBIN - Place Jean Jaurès", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-02-09", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12013001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24597500000, + 44.52701300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-08-09", + "operator": "Bouygues E&S", + "description": "L'ÉTANG-LA-VILLE - Marché", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78224002", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06913000000, + 48.86742000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49145001;FRS49P49145A", + "start_date": "2024-03-28;2021-04-20", + "amenity": "charging_station", + "description": "LE FUILET - Parking Huit A Huit;OuestCharge - Diva Sp - Le Fuilet - Huit a Huit", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11600100000, + 47.28051300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "ref": "79834", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PNWMJTK", + "description": "SIED70/NWMJTK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51354000000, + 47.61690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-08", + "ref:EU:EVSE": "FRH14E59087002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOESEGHEM - Rue De La Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43533800000, + 50.66260500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "ref:EU:EVSE": "FRS35P35310001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "description": "ST SAUVEUR DES LANDES - za de plaisance ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30144000000, + 48.33842800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref": "518333", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63164*A;SIEG63 - ePremium - Gerzat - Vigeries", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63164A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14405500000, + 45.82537800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2400030052278773497", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "698933", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JYUU2PWTSK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342300000, + 48.75577100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEG32/NKUESQ", + "ref:EU:EVSE": "FRS32PNKUESQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "21824", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59049100000, + 43.64880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-27", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ARCUEIL - Avenue Jeanne d'Arc", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94003008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33436695767, + 48.81060270798 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE26222;FRM06PNICE26211;FRM06PNICE26212;FRM06PNICE26221", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-09-11", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - GEORGES VILLE", + "ref": "FR*SOD*S*NICE*262*2*_*_;FR*SOD*S*NICE*262*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28368642625, + 43.70326619230 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Villefranche du Perigord | Place du  19 Mars", + "ref": "585cdbf7-b26b-50a5-b71b-8b1099932c46", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08020100000, + 44.62917300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PARKING PISCINE - PIERRELAYE", + "ref": "FR*SOD*S*SIGE*397*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE39712;FRSIGPSIGE39711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16317000000, + 49.02030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-20", + "network": "Métropole Rouen Normandie", + "charging_station:output": "90 kW", + "ref:EU:EVSE": "FRC01E76486001", + "description": "ORIVAL - Rue Gustave Coudert", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "90 kW", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99425900000, + 49.31834100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3428EVCP01;LFR3428EVCP02", + "ref": "LFR3428EVCP01;LFR3428EVCP02", + "description": "AUTUN St Pantaléon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31111100000, + 46.96170800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Chambon-Sur-Voueize | Médiathèque Av. Georges Clemenceau", + "opening_hours": "24/7", + "ref": "0bf37eac-3866-5931-9816-9ae9c45dcdc3", + "operator": "194__SDEC23", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42735600000, + 46.18810400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "AUBIGNAN - Boulevard Louis Guichard", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "9c77b365-2c8b-5d42-86b2-920ebccedca6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02588900000, + 44.09805600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2023-02-10", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "RUE PASTEUR - GARCHES", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92380*GAR*PASTEUR", + "ref:EU:EVSE": "FR55CP92380GARPASTEUR", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18151600000, + 48.84092400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4183EVCP01;LFR4183EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR4183EVCP01;LFR4183EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "PLOUFRAGAN - Plaines villes " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80512300000, + 48.51354000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMPLG", + "capacity": "8", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Le Pouliguen", + "start_date": "2023-10-13", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;22.17025 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44221017857, + 47.27308357954 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Saint-Maximin-La-Sainte-Baume, pkg Pré de Foire", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPNB5VTHIUEN", + "ref": "NB5VTHIUEN", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85831969000, + 43.45391489000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP77390D", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP77390D", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Roissy-en-Brie - Gymnase Anceau de Garlande" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63650508774, + 48.79933071232 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;125 kW", + "amenity": "charging_station", + "description": "Cora - Dreux", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "capacity": "11", + "charging_station:output": "50 kW;100 kW;125 kW;22 kW", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCORDRX", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34631000000, + 48.74925000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-09-04", + "description": "Carrefour Market - Ambert", + "ref:EU:EVSE": "FRDRVPCRFMKT636001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72926300000, + 45.54270300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ECOPI;RossiniEnergy", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-10-25", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Circuit_Saint_Pol", + "ref:EU:EVSE": "FREPIE1896148;FREPIE1895693;FREPIE1895641;FRROSE125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29752000000, + 50.37734900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*AUCH*176*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-15", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AUCHAN - HIRSON", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPAUCH17612;FROTHPAUCH17611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09103441216, + 49.91255309481 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6790125;FRCPIE6790085;FRCPIE6790075;FRCPIE6790025;FRCPIE6790105", + "start_date": "2023-11-17", + "ref": "FRCPIE6790125;FRCPIE6790085;FRCPIE6790075;FRCPIE6790025;FRCPIE6790105", + "network": "GHCB 01 PERSO 05", + "opening_hours": "24/7", + "description": "GHCB 01 PERSO 05", + "operator:email": "info@chargepoint.com", + "capacity": "10", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91031000000, + 48.08732900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/WFAJKQ", + "ref": "346493", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4660903916044059728" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94854000000, + 48.28800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref:EU:EVSE": "FRV75P901302", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9013*02", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Boulevard Vincent-Auriol 137", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36302500000, + 48.83289300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1017057", + "charging_station:output": "50 kW;22 kW;150 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5946739899664191149", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "description": "Freshmile France/LLRT5HB9IZTV1N", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18001800000, + 45.68553400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Toulon", + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP3020", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85086000000, + 43.12119900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2170489036149004614", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/YFNNSM", + "operator": "Freshmile | FR*FR1", + "ref": "346235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55363000000, + 47.80430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-08-07", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89660163", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "description": "R3- Eleclerc Saint Martin sur le pré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35570200000, + 48.98016700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "description": "MobiSDEC/CBX7KUYBYW", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "565079", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRS14P1138086332560391775" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949800000, + 49.14117600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12270001", + "description": "SEVERAC LE CHÂTEAU - Place Salvador Allende", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05731600000, + 44.32387900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LMM67DGIJ", + "amenity": "charging_station", + "capacity": "1", + "ref": "972641", + "ref:EU:EVSE": "FRWA5P3089581919475670104", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28291600000, + 47.73769400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - La Varenne - Bretagne;LA VARENNE - Rue de Bretagne", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-21;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49360A;FRS49E49360001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32258500000, + 47.31300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LABRUGUIERE - Rue De La Tuilerie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81120001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26209000000, + 43.53763000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF042589", + "description": "RELAIS GUIDEL SUD", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-04-01", + "ref": "FRHPCPNF042589", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680590;531680591", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "50 kW;175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46870000000, + 47.82160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46185001", + "description": "MARTEL - La Fontanelle", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60675540000, + 44.93579700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346229", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/YCX0MN1QXX", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15400000000, + 47.34463800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH04E59178017", + "description": "DOUAI - Rue Geoges Guymener", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05963300000, + 50.37196400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Quimper-MPT d’Ergué Armel", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07201200000, + 47.98320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-11-06", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue de Condé", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47490929203, + 48.81193365956 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346051362;FRLMSE12346051351;FRLMSE12346051352;FRLMSE12346051361", + "start_date": "2017-07-17", + "description": "CHASSENEUIL DU POITOU - SDIS-1-2;CHASSENEUIL DU POITOU - SDIS-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "B125", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36394000000, + 46.65510200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "330311", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "description": "Metropolis - Proximité - Rueil-Malmaison - 18 juin 1940 (63);Métropolis/FR*MGP*P92063*Q", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRMGPP92063Q", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19240000000, + 48.86815400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*69*1*_*_", + "description": "SIGEIF - 20 AVENUE DU GENERAL DE GAULLE - CROISSY-SUR-SEINE", + "start_date": "2021-04-15", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE6911;FRSIGPSIGE6912", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14026800000, + 48.88079800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "809721", + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "description": "Atlante/FRATL*SOME5101", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP7345661811171226154", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27767100000, + 50.73131100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000081804", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens St Priest", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57159980000, + 4.96540800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "64ba2dbc-fb12-517c-8c02-f0fc254b1d05", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | La Bastide de Clairence | Parking Rd10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25621100000, + 43.42948200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTREVERD (MORMAISON) - Place Du Pont De L'Issoire", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85150001", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-06-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45214000000, + 46.90633000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9008202;FRALLEGO9002561;FRALLEGO9000262;FRALLEGO9000191;FRALLEGO9000192;FRALLEGO9000261;FRALLEGO9002562;FRALLEGO9002563;FRALLEGO9008201;FRALLEGO9009901;FRALLEGO9009902", + "amenity": "charging_station", + "network": "Allego Carrefour Amiens", + "start_date": "2024-05-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Amiens", + "ref": "FRALLEGO9008201;FRALLEGO9002561;FRALLEGO9000262;FRALLEGO9000191;FRALLEGO9000192;FRALLEGO9000261;FRALLEGO9002562;FRALLEGO9002563;FRALLEGO9008202;FRALLEGO9009901;FRALLEGO9009902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30376266000, + 49.92024096000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "DIEULOUARD ", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4106EVCP02;LFR4106EVCP03;LFR4106EVCP01", + "ref:EU:EVSE": "LFR4106EVCP02;LFR4106EVCP03;LFR4106EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06760500000, + 48.83056200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "E.Leclerc - Cholet", + "socket:type2_combo:output": "188 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PLECCHO", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-30;2023-12-03", + "charging_station:output": "188 kW;50 kW;22.17025 kW", + "opening_hours": "24/7", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85142061465, + 47.05143519704 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DHCKIJOAXG;32722", + "description": "Crest, Place de la Liberté;Réseau eborn/DHCKIJOAXG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDHCKIJOAXG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02093700000, + 44.72668000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "ENGIE MAMP - Bornes publiques/F707D84C-34FE-494F-A1B3-2C9B2256D9CA", + "amenity": "charging_station", + "ref": "1072434", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP2289189281848451977", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37323600000, + 43.26544000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PGSTHBL", + "start_date": "2023-12-20", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Mobalpa - Herblay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17162614051, + 49.00610917426 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leroy Merlin - Beauvais", + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRE11PLM600001", + "charging_station:output": "11.04 kW", + "start_date": "2023-10-31", + "opening_hours": "Mo 06:00-20:00, Tu 06:00-20:00, We 06:00-20:00, Th 06:00-20:00, Fr 06:00-20:00, Sa 06:00-20:00, Su 06:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11815700000, + 49.43877500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP12145A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP12145A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-07-17", + "description": "e-Totem - LE KARCHER - MILLAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06640100000, + 44.09108900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-04-27", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR16541;FROTHPOTHR16521;FROTHPOTHR16511;FROTHPOTHR16531", + "network": "TITI FLORIS", + "description": "TITI FLORIS - NANTES", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*165*3*_*_;FR*SOD*S*OTHR*165*1*_*_;FR*SOD*S*OTHR*165*2*_*_;FR*SOD*S*OTHR*165*4*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57118800000, + 47.20165300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6973265", + "network": "CHAMP DE FOIRE BORNE 1", + "description": "CHAMP DE FOIRE BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6973265", + "start_date": "2024-07-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36738300000, + 46.27052200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QQYRC2FCMZ", + "ref:EU:EVSE": "FRFR1P4809692280555562028", + "ref": "454125", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59062000000, + 48.56154500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "CENTER PARCS LE BOIS AUX DAIMS - Route des Trois Moutiers", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP123002", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-06-18", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00347100000, + 47.09286200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "street_lamp", + "survey:date": "2022-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20835590000, + 49.97208630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6329139290762066855", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "435138", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/N9PUFD9IQX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75189500000, + 48.56849300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPEMILFREYCRVO511001", + "description": "Audi Reims", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-06", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08260700000, + 49.23620700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LMRYSD3DHR", + "ref:EU:EVSE": "FRFR1P2971155280432494848", + "ref": "485127", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07490100000, + 43.93467300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Gevrey Chambertin - Parking Gaston Roupnel", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAIRIEGEVREY212202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96898200000, + 47.22714700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SENONCHES - Rue de Verdun", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E134278", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E134278", + "description": "MODULO - SENONCHES - Rue de Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03217000000, + 48.56076800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/JMNDZF5K60", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8116659061609179128", + "ref": "32128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73315300000, + 48.37538700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA6LWBE6WZGK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P574041165363331765", + "ref": "1128096", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71592100000, + 49.11441100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "STE MERE EGLISE - Le Bourg", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50480001", + "network": "e-charge50", + "start_date": "2017-11-10", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31306070000, + 49.40954770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8126700122;FRS81E8126700111;FRS81E8126700112;FRS81E8126700121", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-06-09", + "operator": "BOUYGUES ENERGIES SERVICES", + "description": "SAINT PIERRE DE TRIVISY - Place Du 19 Mars 1962", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43551492700, + 43.76128768900 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10;2022-12-23", + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680895;531680901;531680900;531680894;531680896;531680897;531680898;531680899", + "ref": "FRHPCPNF078243", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "REL.BOIS DE DOURRE", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF078243" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52840000000, + 44.23260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49020001;FRS49P49020A", + "start_date": "2021-04-28;2024-04-07;2024-04-16", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Beaucouze - Domino;BEAUCOUZE - Parking Salle le Domino" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64025700000, + 47.47610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PPRECY", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mouv'Oise/precy", + "amenity": "charging_station", + "ref": "38770", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37548000000, + 49.20370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-02", + "description": "LA GORGUE - Rue de la Lys", + "ref:EU:EVSE": "FRH09E59268002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74162700000, + 50.64090300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30125001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GARONS - Place De La Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42501000000, + 43.77078300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "network": "Morbihan Energies", + "description": "Allaire - Rue Le Mauff", + "ref:EU:EVSE": "FRS56PFCQHSR", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16351400000, + 47.63797500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FLEURE-1-2;FLEURE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B039", + "start_date": "2015-10-08", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346390381;FRLMSE12346390371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52324100000, + 46.47847900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRMGPP94015C", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P94015*C", + "ref": "1029438", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52640700000, + 48.84463200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE1012;FRSIGPSIGE1011", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*10*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-08-27", + "description": "SIGEIF - 28 RUE ANATOLE FRANCE - CHAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18838600000, + 48.80377400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2024-01-11", + "ref:EU:EVSE": "FRBE1E64445006", + "operator:email": "support@alizecharge.fr", + "description": "PAU - Parking Verdun SUD", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37628180000, + 43.29756670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89369760", + "operator": "Last Mile Solutions", + "start_date": "2023-02-02", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A4 Brumath Est", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69651000000, + 48.72127000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "2c2bc273-d2ce-5fe5-88d7-b16e0b997f18", + "opening_hours": "24/7", + "description": "MOBIVE | Dignac | Parking Communal", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27713200000, + 45.55768200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE62HGXA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "Gare SNCF - HESDIN", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03500700000, + 50.37810300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "start_date": "2023-03-31", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSCHTRE", + "description": "CHARTRES", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51548000000, + 48.44991000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3905EVCP02;LFR3905EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3905EVCP02;LFR3905EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "SOISSONS - Laon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33891900000, + 49.38998100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31044002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BALMA-GRAMONT - Av. Georges Pompidou", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49708400000, + 43.62379300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLNX907FD236LV;FREBNP8905805247195389617", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/LLNX907FD236LV;Toulon, Place Mermoz", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "LLNX907FD236LV;972011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94754900000, + 43.12315100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626198", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ODFHLRKA2C", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2563358087217191845", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042300000, + 48.46516800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2024-02-16;2023-02-16", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "43", + "ref:EU:EVSE": "FRP07E693890024;FRP07E693890023;FRP07E693890022;FRP07E693890021;FRP07E69389002", + "description": "LYON - Vaise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81189180000, + 45.78861330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Toulon, Complexe Sportif Léo Lagrange", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-11-05", + "ref:EU:EVSE": "FREBNPR4CFXQWYOD", + "ref": "R4CFXQWYOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97480134000, + 43.12893153000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Tu,Su,Fr,Mo,Th,Sa,We 08:00-18:00", + "ref:EU:EVSE": "FREFLP4904329334525366680", + "network": "Road", + "amenity": "charging_station", + "capacity": "3", + "ref": "1130340", + "charging_station:output": "7.4 kW;22 kW", + "description": "Road/66718e7be2161a001cb23a2d", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22481200000, + 48.76741300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "COMMUNE VAL DISERE", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR28312;FROTHPOTHR28311", + "start_date": "2021-11-25", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*283*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "description": "COMMUNE VAL DISERE - LE FORMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01081700000, + 45.45049000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT CHERBOURG", + "ref:EU:EVSE": "FRCPIE6607385", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6607385", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "network": "SONEPAR CONNECT CHERBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58906900000, + 49.63295300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Saint-Julien-En-Genevois, Parking de la Mairie", + "ref:EU:EVSE": "FREBNPCWBZ2DL8DD", + "operator:email": "contact@reseau-eborn.fr", + "ref": "CWBZ2DL8DD", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08132880000, + 46.14467750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1168854", + "ref:EU:EVSE": "FRWA2P8938394888362067034", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s540970", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64217600000, + 50.52205400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "capacity": "4", + "description": "Freshmile/LLJR575T6F1J1L", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892422", + "ref:EU:EVSE": "FRFR1P8276406530091191708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98310900000, + 43.57070900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WARNING - Bordeaux", + "ref": "FRTCBP00382", + "capacity": "2", + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "ref:EU:EVSE": "FRTCBP00382", + "start_date": "2021-08-12", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69177800000, + 44.88082000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "368884", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/MQQHXGJV4R", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5295700469477745709", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61609200000, + 44.83838000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPEASYMOTORSHYUNDAI596501", + "description": "Hyundai - Villeneuve d'Ascq", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12257400000, + 50.63875900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2903200", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Clohars Fouesnant-Place de la Mairie", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.06472900000, + 47.89743000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/MPLFZRRCH2", + "ref:EU:EVSE": "FRS10P8777588051814792818", + "ref": "370244" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61120800000, + 48.45117100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/CIR_12047040310001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P2649569953224404233", + "ref": "575918", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06381200000, + 45.62416000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage_AD_Ugine ", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE896", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2024-03-18", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42236170000, + 45.74253160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64622", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PABBEVIROY", + "description": "FDE 80/Abbeviroy", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83149000000, + 50.10580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - SAINT ANDRE DE LA MARCHE", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-03", + "ref": "FR*SOD*S*FAST*166*1*_*_;FR*SOD*S*FAST*166*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST16623;FRIZFPFAST16621;FRIZFPFAST16612;FRIZFPFAST16611;FRIZFPFAST16613;FRIZFPFAST16622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00416540000, + 47.09390040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - PIERREFITTE SUR SAULDRE - Rue des Fossés", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS41E4719;FRS41E4720", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4719;FRS41E4720", + "description": "MODULO - PIERREFITTE SUR SAULDRE - Rue des Fossés" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15098300000, + 47.51468800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60P7825087137990302533", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Mouv'Oise/R7TRBJHQJR", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref": "626378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09613500000, + 49.33899300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*80*4*_*_;FR*SOD*S*LYON*80*2*_*_;FR*SOD*S*LYON*80*1*_*_;FR*SOD*S*LYON*80*3*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8031;FRGLYPLYON8021;FRGLYPLYON8011;FRGLYPLYON8041", + "start_date": "2021-06-04", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY302 - LIBERTE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84196200000, + 45.76292100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - LA VILLE AUX DAMES - Jacqueline Auriol", + "opening_hours": "24/7", + "ref": "FRS37E215552;FRS37E215553", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LA VILLE AUX DAMES - Jacqueline Auriol", + "ref:EU:EVSE": "FRS37E215552;FRS37E215553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76171000000, + 47.38339200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-01", + "description": "Peillac - Rue de la Citée des Fleurs", + "ref:EU:EVSE": "FRS56PMYDKMD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21965100000, + 47.71337400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRG10P38013A", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "ref": "FRG10P38013A", + "opening_hours": "24/7", + "start_date": "2024-08-05", + "operator:email": "contact@e-totem.fr", + "network": "GEG - Site d'Apprieu", + "description": "GEG - Site d'Apprieu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47783500000, + 45.38354200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRN54E203729;FRN54E203728", + "description": "MODULO - SAINT MAX - Pkg. Champlain", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-16", + "charging_station:output": "0 kW", + "ref": "FRN54E203729;FRN54E203728", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SAINT MAX - Pkg. Champlain" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19429000000, + 48.70356000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE21112;FRSIGPSIGE21111", + "start_date": "2021-11-23", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - PLACE ANDRE GIDE - SARCELLES", + "ref": "FR*SOD*S*SIGE*211*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37077900000, + 48.97669700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-08", + "capacity": "6", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRCG0E002118;FRCG0E002117;FRCG0E002116;FRCG0E002113;FRCG0E002114;FRCG0E002115", + "description": "Energie de Reure Vitry en Perthois - 51300 - 2", + "ref": "FRCG0E002118;FRCG0E002117;FRCG0E002116;FRCG0E002113;FRCG0E002114;FRCG0E002115", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "Energie de Reure Vitry en Perthois - 51300 - 2", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62838500000, + 48.74720800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "start_date": "2023-11-28", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Saint Malo Centre", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89944368" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99047800000, + 48.63696100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Surgères | Place du Château", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "8cfb289e-8c20-503a-977b-b2681c38b8aa", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75242700000, + 46.10474400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "CASINO - ST MATTHIEU", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE87SADA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-02-27", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76093500000, + 45.70697300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "description": "TOULOUSE - Rue Luce Boyals - Parking P2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRA31E31555004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40573800000, + 43.60385700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "VENDARGUES Bigos", + "ref": "LFR3574EVCP02;LFR3574EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3574EVCP02;LFR3574EVCP01", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96087800000, + 43.65259100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-12", + "description": "FONTAINE - La Source : Avenue Aristide Briand", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRM38E38169001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68888000000, + 45.19109600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ZHXKZIMNZM;Saint-Etienne-De-Fontbellon, Rue de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "48331;ZHXKZIMNZM", + "ref:EU:EVSE": "FREBNPZHXKZIMNZM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38268800000, + 44.59964600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Freshmile France/LLPWKKCSG2NS92", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "978053", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2087771177616858287" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.49603200000, + -20.89829500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "description": "L'HAY LES ROSES - Halles des Saveurs", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP07E94038001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34112291342, + 48.77966078578 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "492108", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP1700125172792683980", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/LWXQSAKCCJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89629200000, + 44.92995400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-06-14", + "ref:EU:EVSE": "FRELCPFJAAC", + "operator": "ELECTRA", + "description": "Fitz-James - Action" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41938800000, + 49.39553500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Belfort TGV - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRP01E90068001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89866712364, + 47.58422371607 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-11-09", + "description": "LE GAULIAT BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "LE GAULIAT BORNE 1", + "ref:EU:EVSE": "FRCPIE6648515", + "ref": "FRCPIE6648515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58667800000, + 45.40028800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref": "YSDEHHGQGH;446498", + "charging_station:output": "24 kW;22 kW", + "description": "Vienne, Parking François Mitterrand;Easy Charge/YSDEHHGQGH", + "ref:EU:EVSE": "FRECHP1825116281318397623;FRECHPYSDEHHGQGH", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87537000000, + 45.52576000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-12-01", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1813", + "opening_hours": "24/7", + "ref": "FR*V75*PPX18*13", + "description": "Paris | Rue Ramey 62", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34497810000, + 48.89164260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "description": "Freshmile/JKC4QHAXRL", + "amenity": "charging_station", + "ref": "529343", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6505466377796658246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35040800000, + 48.38431200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9020*01", + "description": "Paris | Avenue du Père Lachaise 13", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P902001", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39772400000, + 48.86424000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LM0L0M5FWK7MFG", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1184974", + "ref:EU:EVSE": "FRFR1P8018395970229392261", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75962900000, + 48.58474300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Vichy", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPEUROMABHYUNDAI032001", + "operator:email": "support@driveco.com", + "start_date": "2023-05-10", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42751400000, + 46.13117700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-04-13", + "description": "PLOUGUENAST LANGAST - Rue du Stade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22219001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.70601400000, + 48.28199000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LUC-SUR-AUDE - Rue Des Gourmets", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11209001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25988400000, + 42.95906200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VOLKSWAGEN Magenta - Emil Frey - 22KW AC;VOLKSWAGEN Magenta - Emil Frey - 24kW DC ", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", + "capacity": "1", + "ref:EU:EVSE": "FRZPEE22AC55852;FRZPEE24DC55851", + "network": "AUTO AVENIR RELAIS - MAGENTA - VW", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "owner:ref:FR:SIREN": "529221210", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-03-08", + "ref": "55852;55851", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96441500000, + 49.05898900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAVERDUN - Allée Du Girbet", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS09E09282001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57434500000, + 43.23987500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "597720", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/W39IDRPDKI", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80P6710271999470552508" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10149000000, + 49.97754700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRIZFPFAST4912;FRIZFPFAST4911;FRIZFPFAST4913", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*49*1*_*_", + "network": "IZIVIA FAST", + "start_date": "2024-01-18", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - MOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17694000000, + 49.11801400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44P44081A;FRS44E44081001", + "description": "LEGE - Sainte-Marie;OuestCharge - Pulse 50 - Lege - Sainte-Marie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-30;2024-04-25", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60160800000, + 46.89183200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25;2015-07-01", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61FPF2MSHNDHDC50N6", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77219A;FRS77E77219001", + "description": "GUERARD - Grande Rue;Guerard", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95798700000, + 48.82229200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "capacity": "7", + "amenity": "charging_station", + "socket:type2_combo:output": "52 kW;47 kW;200 kW", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "ref": "1064667", + "ref:EU:EVSE": "FRGYMP2824642710707932994", + "operator": "GreenYellow | FR*GYM", + "charging_station:output": "200 kW;22 kW;52 kW;47 kW", + "description": "GreenYellow Shift Mobility/68" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24273300000, + 46.21257000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BEAUMONT VILLAGE - Rue Bourg Neuf - T2", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BEAUMONT VILLAGE - Rue Bourg Neuf - T2", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E220444;FRS37E220442", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220444;FRS37E220442" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20818500000, + 47.17791900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCTLB - Parking Rempart-Lunéville", + "ref": "253bbd20-2a3d-5274-83c1-bfcfdb026731" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48954900000, + 48.59150800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*10*2*_*_;FR*SOD*S*LYON*10*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-06-10", + "description": "ECY03 - RUE AUGUSTE TRAMIER", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON1022;FRGLYPLYON1012;FRGLYPLYON1011;FRGLYPLYON1021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78164900000, + 45.77454500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Mobilize Power Solutions", + "start_date": "2023-07-02", + "ref:EU:EVSE": "FRMBZEFZGEF", + "ref": "52bc228a-f761-43a9-b45d-387dfe8e48bb", + "description": "Lalliard Bonneville Public", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "network": "Lalliard Bonneville", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 13:30-17:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40903300000, + 46.06744300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "ref": "1156308", + "amenity": "charging_station", + "operator:email": "e-mobility@sap.com", + "description": "SAP Labs/d1236bdf-9919-4142-8e48-75e066ce93e7", + "operator": "SAP Labs France SAS | FR*SLF", + "opening_hours": "24/7", + "network": "SAP Labs", + "socket:type2_combo:output": "24 kW;50 kW;150 kW", + "charging_station:output": "24 kW;22 kW;50 kW;150 kW", + "ref:EU:EVSE": "FRSLFP462506169990154595" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01695800000, + 43.61210500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6538885", + "ref": "FRCPIE6538885", + "network": "HYPER U MENDE BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-10-18", + "operator:email": "info@chargepoint.com", + "description": "HYPER U MENDE BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48218700000, + 44.51626400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P2928286920415545196", + "network": "Leclerc", + "ref": "505782", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/PGJJYJCBOV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08138700000, + 49.60159100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Bourg Sur Gironde | Place de la Mairie", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "f432d164-d96e-5d9e-a63b-263bef6bc9cf", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56035000000, + 45.03914000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79049P0021A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2013-07-22", + "operator": "Séolis", + "description": "Réseau AlterBase - Bressuire - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49428300000, + 46.83756100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Airbus - Montoir de Bretagne - G23 Est Intérieur du site", + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPBCJL", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16991200000, + 47.31259200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3310EVCP01", + "ref": "LFR3310EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MONTAYRAL Fumel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96705300000, + 44.49028700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE5331;FRM06PNICE5332", + "start_date": "2021-08-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*53*3*_*_", + "description": "NICE - DELILLE RP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27625500000, + 43.70152500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*187*1*_*_", + "start_date": "2022-07-26", + "description": "CANNES - PARKING RD POINT ROMANO", + "ref:EU:EVSE": "FRA16PWIIZ18712;FRA16PWIIZ18711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96166200000, + 43.54200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "694229", + "description": "Freshmile France/I09GDOR3YZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8353325477007890078", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362000000, + 49.18942700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Brit Hotel - Les Achards", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBRTACH", + "start_date": "2022-11-23", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65272568469, + 46.60268200560 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Vallon-Pont-D'Arc, Parking Néruda;Réseau eborn/QPPN534ID0", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNP7907742897601818900;FREBNPQPPN534ID0", + "ref": "346907;QPPN534ID0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38994000000, + 44.40630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "927798", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP5010868853532940654", + "operator:email": "support@evzen.com", + "description": "ENGIE MAMP - Bornes publiques/89575AB6-3C71-4663-857E-FDC489A9C72E", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19557200000, + 43.40938400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ARCACHON - Gare P1 ", + "ref:EU:EVSE": "FRP07E33009002", + "start_date": "2020-06-16;2024-01-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16565400000, + 44.65935500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "78645;MQTUEZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "description": "Réseau eborn/MQTUEZ;Riez, Boulevard de Narwick", + "ref:EU:EVSE": "FREBNPMQTUEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09219000000, + 43.81670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "1052469;LLTFRX5K42CTR6", + "network": "Easycharge services;Easy Charge", + "start_date": "2024-03-06", + "description": "Thionville, Place Malraux;Easy Charge/LLTFRX5K42CTR6", + "ref:EU:EVSE": "FRECHPLLTFRX5K42CTR6;FRECHP6674328364286757772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15994500000, + 49.35972800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-22;2023-02-23;2023-01-02", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A36 Dole Romange", + "socket:type2_combo:output": "50 kW;300 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP101106", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "300 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58530100000, + 47.14906600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "346241", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "50 kW;44 kW;3 kW", + "description": "Freshmile France/VYVHYG", + "ref:EU:EVSE": "FRFR1P6205560171288829858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65349400000, + 44.78210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue du Château Landon 24", + "ref:EU:EVSE": "FRV75PPX1007", + "amenity": "charging_station", + "start_date": "2021-08-17", + "opening_hours": "24/7", + "ref": "FR*V75*PPX10*07", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36295710000, + 48.88149210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626165", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2640010332538038147", + "description": "Freshmile France/LJV43VM9LI", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23895700000, + 48.70900700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPACTENAVOLVO783101", + "charging_station:output": "100 kW;22.08 kW", + "description": "Volvo - Actena Automobiles - Maurepas", + "capacity": "10", + "opening_hours": "Mo 08:30-12:00, Mo 13:30-18:30, Tu 08:30-12:00, Tu 13:30-18:30, We 08:30-12:00, We 13:30-18:30, Th 08:30-12:00, Th 13:30-18:30, Fr 08:30-12:00, Fr 13:30-18:30, Sa 09:00-12:00, Sa 13:30-18:30", + "operator:email": "support@driveco.com", + "socket:type2_combo:output": "100 kW", + "start_date": "2022-12-08;2023-01-06", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91762700000, + 48.75922400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "ref:EU:EVSE": "FRS27PACYSUREUREGARE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEGE27", + "description": "Z2061", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38699600000, + 49.01461000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BOURGES - Parc Comitec", + "ref": "FRS18E93955", + "network": "MODULO - BOURGES - Parc Comitec", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E93955", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39293000000, + 47.09662000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78397001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE MESNIL SAINT DENIS - Parking Henri IV", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94898430000, + 48.74405530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK5491;FRQPKPQPRK5461;FRQPKPQPRK54121;FRQPKPQPRK54111;FRQPKPQPRK54101;FRQPKPQPRK5411;FRQPKPQPRK5421;FRQPKPQPRK5431;FRQPKPQPRK5441;FRQPKPQPRK5451;FRQPKPQPRK5471;FRQPKPQPRK5481", + "start_date": "2022-11-17", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "ref": "FR*SOD*S*QPRK*54*9*_*_;FR*SOD*S*QPRK*54*8*_*_;FR*SOD*S*QPRK*54*6*_*_;FR*SOD*S*QPRK*54*5*_*_;FR*SOD*S*QPRK*54*4*_*_;FR*SOD*S*QPRK*54*3*_*_;FR*SOD*S*QPRK*54*2*_*_;FR*SOD*S*QPRK*54*11*_*_;FR*SOD*S*QPRK*54*10*_*_;FR*SOD*S*QPRK*54*1*_*_;FR*SOD*S*QPRK*54*12*_*_;FR*SOD*S*QPRK*54*7*_*_", + "operator:email": "sav@izivia.com", + "description": "QPARK - PLD - BOIELDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24118200000, + 48.88922900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASTRES - Place Du 1er Mai", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81065002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24872400000, + 43.60177100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2019-11-28", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE410000", + "ref:EU:EVSE": "FRIONE410000", + "description": "IONITY Val Gelon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09778240000, + 48.22559400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-24", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P50660001", + "owner:ref:FR:SIREN": "255002883", + "description": "QUETTREVILLE SUR SIENNE - Salle des Fetes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46894220000, + 48.96813700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77482001;FRS77P77482A", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Varennes-sur-Seine ;VARENNES-SUR-SEINE - Rue De La Mairie", + "ref": "01F5ZAKH61AN7SE9N3CG32EQS1", + "start_date": "2023-07-07;2015-07-01", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92905000000, + 48.37594600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "RELAIS VARADES PAYS DE LOIRE", + "start_date": "2023-03-29;2023-08-29;2023-04-27", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF080173", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531681307;531681306;531681309;531681308", + "ref:EU:EVSE": "FRHPCPNF080173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01454100000, + 47.41962100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - FOUGERES SUR BIEVRE - Rue Aimable Quenioux", + "capacity": "2", + "description": "MODULO - FOUGERES SUR BIEVRE - Rue Aimable Quenioux", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS41E244626;FRS41E244625", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS41E244626;FRS41E244625", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34165100000, + 47.44891500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Vannes - Avenue Maréchal Juin Maréchal de France", + "start_date": "2016-10-14", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PCVJQYU", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78023000000, + 47.63256600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY319 - VINATIER", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*199*1*_*_", + "network": "GRAND LYON", + "start_date": "2023-12-15", + "ref:EU:EVSE": "FRGLYPLYON19911;FRGLYPLYON19912", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89183240000, + 45.74440730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "capacity": "4", + "socket:type2_combo:output": "7 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92040*C", + "ref:EU:EVSE": "FRMGPP92040C", + "ref": "484730", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26103500000, + 48.82914700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Peugeot - HESS - Charleville", + "start_date": "2020-10-22", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 08:30-19:00", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPHESSPEUGEOT080001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69808000000, + 49.75276900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76681002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SOTTEVILLE LES ROUEN - place des Bruyères", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07265830000, + 49.41179340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/MKOVST34HX", + "amenity": "charging_station", + "network": "Leclerc", + "charging_station:output": "22 kW", + "ref": "598374", + "opening_hours": "Fr 06:30-20:00,Sa,Th,Tu,Fr,Mo,We 08:30-19:30,Sa,Fr,Th,We,Mo,Tu 08:30-20:00,Th,Mo,Sa,Tu,We 06:30-19:30", + "ref:EU:EVSE": "FRLE2P9117452854824918218" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636100000, + 46.17864100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Castillon-La-Bataille | Eglise", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "ea359214-9cfc-5484-a7b8-de0936f9c356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04326600000, + 44.85247800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-WITZ - Parking Rue Vigne au Maire", + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95580002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56681171377, + 49.09066267103 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO8005062;FRALLEGO8005061;FRALLEGO8001052;FRALLEGO8001051", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego MERCEDES CARENTAN AC22", + "ref": "FRALLEGO8005062;FRALLEGO8001052;FRALLEGO8001051;FRALLEGO8005061", + "start_date": "2024-05-27", + "description": "Allego MERCEDES CARENTAN AC22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25841300000, + 49.31382300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "120 kW;180 kW", + "amenity": "charging_station", + "ref": "454269", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P6910126506094884721", + "description": "Leclerc/GABMQWRAIZ", + "capacity": "40", + "charging_station:output": "180 kW;120 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145900000, + 49.63226000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Carry-Le-Rouet, Avenue Aristide Briand", + "ref:EU:EVSE": "FRM13PBWI7YUBTIJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15167600000, + 43.33248000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/BAUQWL2XZK", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P3605956405902512724", + "ref": "402449" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30749600000, + 48.28968500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "ANTIBES PARKING MAUPASSANT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ412;FRA16PWIIZ411", + "start_date": "2018-04-04", + "ref": "FR*SOD*S*WIIZ*4*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10996000000, + 43.56887400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLKUT3EM92D53F", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5103574896132781951", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "11", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Mo,Fr,Tu,Th,We 14:00-19:00,Fr,Mo,Tu,We,Sa,Th 08:00-12:00,Sa 14:00-18:00", + "ref": "892587" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73753100000, + 44.57062500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Restaurant La Pataterie - Trégueux", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PRSTTRG", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-19", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76187045767, + 48.48934077191 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "description": "Réseau eborn/H9VTPFNPQB;Tencin, Plaine des Jeux - Rue du Pré sec", + "ref": "598257;H9VTPFNPQB", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPH9VTPFNPQB;FREBNP6980755122632915904", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08178800000, + 45.55533400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "capacity": "5", + "charging_station:output": "12 kW;240 kW", + "description": "Norauto - Bornes publiques/9B2458B2-D256-49AA-A764-477770755688", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "240 kW", + "ref:EU:EVSE": "FREVZP79347591384957485", + "ref": "1008714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39324900000, + 43.60792700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "FFF - LIGUE DE FOOTBALL OCCITANIE - MONTPELLIER", + "ref": "FR*SOD*S*OTHR*641*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR64111;FROTHPOTHR64112", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "operator:email": "sav@izivia.com", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89871400000, + 43.59168900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "75119;HLDZRB6LRZ", + "description": "Réseau eborn/HLDZRB6LRZ;Die, Avenue Sadi Carnot", + "ref:EU:EVSE": "FREBNPHLDZRB6LRZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36791900000, + 44.75614000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "801741;FLSCCG5X4T", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPFLSCCG5X4T;FREBNP6495686886782803136", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/FLSCCG5X4T;Messery, Rue du Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29277800000, + 46.35076200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "description": "CAMPING LES RESPOUNCHOUS - CASTELNAU-DE-MONTMIRAL", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*338*1*_*_;FR*SOD*S*OTHR*338*2*_*_", + "network": "CAMPING LES RESPOUNCHOUS", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR33821;FROTHPOTHR33811", + "start_date": "2022-03-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78923700000, + 43.97697200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626003", + "amenity": "charging_station", + "description": "Freshmile France/BKOKCWBYAN", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P1805435600880285823", + "socket:type2_combo:output": "60 kW", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-11:00,Fr,We,Th,Tu,Mo 14:00-18:00,Sa 14:00-17:00,Sa 09:00-11:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56151200000, + 44.76579100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Mademoiselle 67", + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1534", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX15*34", + "start_date": "2021-11-25", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29948110000, + 48.84347860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "454191", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/YDEFOWAYME", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6958350511246995562" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51410000000, + 46.99090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPOUESTBMW223001", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Lannion", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "start_date": "2022-04-07", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43510000000, + 48.73378100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PVERNEUILAVREFOCH1", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "description": "900113", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92898800000, + 48.74048500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22121002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LANVOLLON - Rue Saint Yves", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98629200000, + 48.63204600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": " Bricomarché - La Flotte en Ré - 22 KW AC ;Bricomarché - La Flotte en Ré - 22 KW AC ", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-11-18", + "ref": "129086;129087", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "network": "BRICOMARCHE RHEALYS - LA FLOTTE EN RE", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "390599611", + "ref:EU:EVSE": "FRZIME22AC129087;FRZIME22AC129086", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32596200000, + 46.17986420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-02-17", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE239", + "description": "Yesss_Dunkerque", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33451000000, + 51.00487100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78113001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-08-29", + "description": "BRUEIL EN VEXIN - Rue du Pont Madame" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81526785929, + 49.02945678667 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-10-21", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Vallée de la vire Gouvets", + "description": "Vallée de la vire Gouvets", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE410453;FRIOYE410403;FRIOYE410402;FRIOYE410401;FRIOYE410404;FRIOYE410405;FRIOYE410406;FRIOYE410451;FRIOYE410452", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE410453;FRIOYE410403;FRIOYE410402;FRIOYE410401;FRIOYE410404;FRIOYE410405;FRIOYE410406;FRIOYE410451;FRIOYE410452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10304560000, + 48.90896020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/CJNS7ETPCQ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "332228", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P5657586010175404412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11194500000, + 48.52495400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65440004", + "description": "TARBES - Parking MCEF", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07973000000, + 43.24363000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-14", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Boinville-en-Mantois", + "operator": "NW IECharge", + "description": "Boinville-en-Mantois", + "ref": "FRIENE005002;FRIENE005001", + "ref:EU:EVSE": "FRIENE005002;FRIENE005001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74469000000, + 48.93661000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34301005", + "description": "SETE - RUE DUBLIN", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70807900000, + 43.42040900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "CONDE SUR HUISNE", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61115A", + "start_date": "2018-06-06", + "ref": "SE61-COSH-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85054400000, + 48.38040900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "natural": "cliff" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20733200000, + 49.97381620000 + ], + [ + 1.20729450000, + 49.97360230000 + ], + [ + 1.20719520000, + 49.97337110000 + ], + [ + 1.20712440000, + 49.97320350000 + ], + [ + 1.20711210000, + 49.97317450000 + ], + [ + 1.20703160000, + 49.97304170000 + ], + [ + 1.20663200000, + 49.97282770000 + ], + [ + 1.20637450000, + 49.97273800000 + ], + [ + 1.20602310000, + 49.97265870000 + ], + [ + 1.20599900000, + 49.97255860000 + ], + [ + 1.20582190000, + 49.97243270000 + ], + [ + 1.20541420000, + 49.97230330000 + ], + [ + 1.20506290000, + 49.97224640000 + ], + [ + 1.20487780000, + 49.97230330000 + ], + [ + 1.20472490000, + 49.97227050000 + ], + [ + 1.20467930000, + 49.97205840000 + ], + [ + 1.20447010000, + 49.97198760000 + ], + [ + 1.20427700000, + 49.97187030000 + ], + [ + 1.20418850000, + 49.97169090000 + ], + [ + 1.20402480000, + 49.97158050000 + ], + [ + 1.20369760000, + 49.97153910000 + ], + [ + 1.20350990000, + 49.97139420000 + ], + [ + 1.20325770000, + 49.97123200000 + ], + [ + 1.20296000000, + 49.97113890000 + ], + [ + 1.20285270000, + 49.97100260000 + ], + [ + 1.20267840000, + 49.97083530000 + ], + [ + 1.20226800000, + 49.97070590000 + ], + [ + 1.20219560000, + 49.97075590000 + ], + [ + 1.20201050000, + 49.97071620000 + ], + [ + 1.20191400000, + 49.97066270000 + ], + [ + 1.20166720000, + 49.97045050000 + ], + [ + 1.20126490000, + 49.97039020000 + ], + [ + 1.20089470000, + 49.97028840000 + ], + [ + 1.20054330000, + 49.97014000000 + ], + [ + 1.20030190000, + 49.97010030000 + ], + [ + 1.20013560000, + 49.97010900000 + ], + [ + 1.19993980000, + 49.96999340000 + ], + [ + 1.19970380000, + 49.96990540000 + ], + [ + 1.19956430000, + 49.96990880000 + ], + [ + 1.19941140000, + 49.96986740000 + ], + [ + 1.19927200000, + 49.96980710000 + ], + [ + 1.19913790000, + 49.96972080000 + ], + [ + 1.19899840000, + 49.96972250000 + ], + [ + 1.19868990000, + 49.96957240000 + ], + [ + 1.19839490000, + 49.96940160000 + ], + [ + 1.19814010000, + 49.96932230000 + ], + [ + 1.19769750000, + 49.96912390000 + ], + [ + 1.19774310000, + 49.96905490000 + ], + [ + 1.19779680000, + 49.96907040000 + ], + [ + 1.19784500000, + 49.96892550000 + ], + [ + 1.19789330000, + 49.96892890000 + ], + [ + 1.19795640000, + 49.96885990000 + ], + [ + 1.19803010000, + 49.96882880000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3709754351597563270", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1184531", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LM0Z796IGAS0O6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76510100000, + 48.58325000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-29", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PSFQDKY", + "ref": "SFQDKY", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "description": "Lafitte-Vigordane, Chapelle", + "opening_hours": "24/7", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16776000000, + 43.30200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92004003", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - Rue Sadi Carnot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28963200000, + 48.91003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000116;FRCG0E000115;FRCG0E000117;FRCG0E000118;FRCG0E000119", + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "BMW - ESPACE BIENVENUE - ROCHEFORT - 17300 - 2", + "opening_hours": "24/7", + "charging_station:output": "50 kW;11 kW;2 kW", + "description": "BMW - ESPACE BIENVENUE - ROCHEFORT - 17300 - 2", + "ref:EU:EVSE": "FRCG0E000116;FRCG0E000115;FRCG0E000117;FRCG0E000118;FRCG0E000119", + "start_date": "2022-04-06", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98251600000, + 45.96663600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE11231;FRM06PNICE11221;FRM06PNICE11211;FRM06PNICE11241", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-11-26", + "ref": "FR*SOD*S*NICE*112*1*_*_;FR*SOD*S*NICE*112*2*_*_;FR*SOD*S*NICE*112*3*_*_;FR*SOD*S*NICE*112*4*_*_", + "operator:email": "sav@izivia.com", + "description": "NICE - P+R COT SAPPIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25485500000, + 43.73106500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Pierre du Mont | Parking Mairie", + "ref": "884426cb-80e5-58c7-949d-e74329eb1fd0", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51934400000, + 43.88181300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE57ABCA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "AUDUN-LE-TICHE RUE DE L'ALZETTE", + "start_date": "2023-08-11", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95467700000, + 49.46777000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "199857;199856", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Monoprix - Neudorf - Strasbourg", + "ref:EU:EVSE": "FRBMPS199857;FRBMPS199856", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75894000000, + 48.56829000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3366EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3366EVCP01", + "charging_station:output": "22 kW", + "description": "COQUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81036100000, + 50.93720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-7E, Square du Lieutenant Danjaume", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PET3BX6UHCK", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35110200000, + 43.28627600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "706082", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS90P6633605710937772202", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "network": "TE90", + "description": "TE90/D4UKVN20XV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86031600000, + 47.63695800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2013-02-01", + "capacity": "1", + "ref:EU:EVSE": "FR55CP83640SZAPARKING", + "ref": "FR*55C*P83640*SZA*PARKING", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PARKING ST ZACHARIE", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70614800000, + 43.38412400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SETE Martelli", + "ref": "LFR3380EVCP03;LFR3380EVCP02;LFR3380EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3380EVCP03;LFR3380EVCP02;LFR3380EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70988700000, + 43.41123100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUSMM", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-11-03", + "opening_hours": "24/7", + "description": "Super U - Saint-Médard-de-Mussidan", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35113170304, + 45.04139850485 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Pradet, Parking LAVIGERIE;Réseau eborn/GJ3XL6XZTL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "GJ3XL6XZTL;529916", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2022-06-14", + "ref:EU:EVSE": "FREBNP3416637117133962365;FREBNPGJ3XL6XZTL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01814000000, + 43.10813900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "socket:type2_combo:output": "400 kW", + "ref": "FRFASE33231", + "charging_station:output": "400 kW", + "amenity": "charging_station", + "description": "Fastned Aire de Covoiturage de Guer", + "ref:EU:EVSE": "FRFASE33231", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "network": "Fastned Aire de Covoiturage de Guer", + "owner:ref:FR:SIREN": "853300010", + "start_date": "2024-07-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12902400000, + 47.93001500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E06029004", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Cannes Isola Bella - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02372400000, + 43.55665900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPO38JYKRTRO;FREBNO38JYKRTRO", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Le Beausset, Rue Antoine Simoni;Réseau eborn/O38JYKRTRO", + "opening_hours": "24/7", + "ref": "75281;O38JYKRTRO", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80633500000, + 43.19516900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ICUCTV9PK5;Charavines, Place Du Marche", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPICUCTV9PK5", + "ref": "ICUCTV9PK5;63989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51373100000, + 45.42840500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*455*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "description": "BRICOMARCHE - LANGOIRAN", + "ref:EU:EVSE": "FROTHPOTHR45512;FROTHPOTHR45511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39370600000, + 44.71393700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3767736462433251373", + "network": "Freshmile France", + "ref": "529136", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/CAWYATQLP8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07334300000, + 48.73923500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-05;2023-06-09", + "operator:email": "contact@ubitricity.com", + "description": "Rue du Chemin de Fer - Épouville;Rue de Chemin de Fer - Epouville", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10062826;FRUBIE10062738;FRUBIE10008605;FRUBIE10062883" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22394400000, + 49.56416700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6892551118202933978", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/WHQDPMTUSJ", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "674270", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39715400000, + 43.34838400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLOMIERS - Place du Souvenir", + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;90 kW;180 kW", + "start_date": "2022-08-05", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRTLSE31149050" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33173800000, + 43.61656700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2229527859309697661", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLXBUNQE12BG7B", + "ref": "1122552", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49783400000, + 48.45994800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1082811", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P6114567775191758417", + "description": "MobiSDEC/LLW66ZW0X1JD2O" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54278500000, + 49.27896100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "391042405", + "amenity": "charging_station", + "capacity": "1", + "ref": "576242;eede37e5-f92a-4735-a7ef-ec9d7e21e6ce;576254", + "description": "Zephyre/LP00958A;Zephyre/LP00958E;Logis Hôtel Fontarabie - 22kW AC", + "opening_hours": "24/7", + "charging_station:output": "14 kW;22 kW", + "ref:EU:EVSE": "FRZP1P1857702178430371338;FRZP1P1986861973203785773;FRZP1P129792;FRZP1P129801", + "network": "Logis Hôtel Fontarabie;Zephyre", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80093200000, + 46.46491800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAISSAC - Avenue Maurice Sarraut", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11367002", + "network": "Reveo", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16888888889, + 43.36166670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78062001;FRY04E78062001", + "operator:email": "support@alizecharge.fr", + "description": "BEYNES - Place Du 8 Mai 1945", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87627500000, + 48.85602220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1944ee55-be94-5982-90b9-7b1aaec55aee", + "description": "SDE54 CCPSV Dombasle Sur Meurthe - Rue Elisa", + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34339300000, + 48.62372500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLE FRANCHE DE CONFLENT - 69 Garrigue D'En Potis", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2017-07-30", + "network": "Reveo", + "ref:EU:EVSE": "FRS66E66223001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37028900000, + 42.58803000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref": "FR*SOD*S*IKEA*36*2*_*_;FR*SOD*S*IKEA*36*1*_*_;FR*SOD*S*IKEA*36*3*_*_;FR*SOD*S*IKEA*36*4*_*_;FR*SOD*S*IKEA*36*5*_*_;FR*SOD*S*IKEA*36*6*_*_", + "start_date": "2022-04-08", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA3661;FRIKAPIKEA3641;FRIKAPIKEA3621;FRIKAPIKEA3611;FRIKAPIKEA3631;FRIKAPIKEA3651", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "description": "IKEA NICE - PARKING PMR SS1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19540100000, + 43.70725200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35243001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "description": "ROMAGNE - 2 Rue Nationale ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27467400000, + 48.34372300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref": "518279", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63070*B;SIEG63 - ePremium - Ceyrat - Brunmurol", + "start_date": "2022-09-20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63070B", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06460000000, + 45.73286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7.4 kW;3 kW", + "description": "Freshmile France/FWUWZA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "398885", + "ref:EU:EVSE": "FRFR1P3148774107144318456", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77654000000, + 43.25330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "description": "SDEG32/YAQVWC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32PYAQVWC", + "ref": "21832", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20113400000, + 43.95100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE93055003", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PANTIN - Rue Cartier Bresson", + "start_date": "2022-05-18", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40115820000, + 48.90187630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "FRCG0E001175;FRCG0E001174;FRCG0E001173;FRCG0E001176;FRCG0E001177", + "socket:type2_combo:output": "300 kW;150 kW", + "start_date": "2024-08-22", + "amenity": "charging_station", + "description": "PLD Auto - Audi Aix Les Milles DC - 2", + "ref:EU:EVSE": "FRCG0E001175;FRCG0E001174;FRCG0E001173;FRCG0E001176;FRCG0E001177", + "opening_hours": "24/7", + "network": "PLD Auto - Audi Aix Les Milles DC - 2", + "operator:email": "info@chargeguru.com", + "charging_station:output": "300 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40893500000, + 43.50778400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*232*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-07-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING ROQUEBILLIERE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE23211;FRM06PNICE23212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28532501385, + 43.70670291619 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "fdd48443-edf3-5146-8150-4e09ac610ace", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Boe | Chemin des Écoliers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66388900000, + 44.18138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - 12 AVENUE DES LILAS - PARKING DE LA BASE DE LOISIRS - LA FRETTE-SUR-SEINE", + "network": "SIGEIF", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE37212;FRSIGPSIGE37211", + "ref": "FR*SOD*S*SIGE*372*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18130000000, + 48.96210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GRAND QUEVILLY - Mairie Annexe", + "ref:EU:EVSE": "FRC01E76322003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03381990000, + 49.41364660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR3378EVCP02;LFR3378EVCP01;LFR3378EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "description": "CORNEBARRIEU Toulouse", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3378EVCP02;LFR3378EVCP01;LFR3378EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32839900000, + 43.65224500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "193__Syndicat de la Diège", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "6435edff-c3cd-5d6e-a45a-5dee8938832a", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Neuvic Plage | Route de la Plage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29045800000, + 45.38756500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "38974", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS82PLAFRANCAISE", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/Lafrancaise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24118000000, + 44.12740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "AVENUE DE LA GARE - ROBION", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2024-08-12", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP84440RBNS0RGUE", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84440*RBN*S0RGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10235300000, + 43.85371200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3711EVCP02;LFR3711EVCP01", + "charging_station:output": "120 kW;22 kW", + "description": "REZE Mace", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3711EVCP02;LFR3711EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55441300000, + 47.19280100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2021-12-20", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PITMLHV", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché - Le Havre", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15802400000, + 49.50954700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "31618", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/EZSU5AL3I5", + "ref:EU:EVSE": "FREBNPEZSU5AL3I5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07290200000, + 46.03897000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-07-03", + "ref:EU:EVSE": "FRETIP69116A", + "ref": "FRETIP69116A", + "description": "e-Totem - LAPEYRE Limonest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76845188128, + 45.82038287836 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;200 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCHAVDB", + "start_date": "2024-02-26;2023-11-08;2023-11-07", + "description": "Chaussea - Val de Briey", + "opening_hours": "24/7", + "capacity": "22", + "charging_station:output": "50 kW;100 kW;22 kW;200 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94836409194, + 49.25420171132 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market Bort Les Orgues Hugo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPAMTV", + "operator:email": "support@driveco.com", + "start_date": "2024-05-03;2024-03-21", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49911800000, + 45.40291100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Nantes - Intermarché Eraudière", + "opening_hours": "24/7", + "start_date": "2024-10-08", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPNANIME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53466600000, + 47.24548200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR57321;FROTHPOTHR57311", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*573*1*_*_;FR*SOD*S*OTHR*573*2*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "INTERMARCHE - SAINT MARCEL 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45430000000, + 49.10190600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6757325", + "network": "BASTIDE DU PLAN BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "description": "BASTIDE DU PLAN BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-08-01", + "ref": "FRCPIE6757325" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54485100000, + 43.58019000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSVNVD2M16WE5", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2527928418348480395", + "ref": "1084791" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94066600000, + 49.42629200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9006*04", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900604", + "description": "Paris | Rue de Sevres 20", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32636700000, + 48.85102500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "477615", + "description": "Freshmile France/C7QSS7UZXI", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3065192698148554525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44685900000, + 48.73861400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1768", + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Orléans", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86831000000, + 47.94886900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ouest Location, Saint Herblain", + "network": "Freshmile", + "operator:email": "exploitation@freshmile.com", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;25 kW;22 kW", + "start_date": "2023-03-15", + "capacity": "3", + "ref:EU:EVSE": "FRFR1EGYTZ", + "opening_hours": "24/7", + "charging_station:output": "50 kW;25 kW;22 kW", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "323873174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63337945964, + 47.23006206793 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR0NXPOOL6YBPA", + "operator:email": "contact@nexteneo.com", + "capacity": "2", + "amenity": "charging_station", + "description": "ANNECY BASE CAMP", + "network": "GRAND ANNECY BASE CAMP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "NEXTENEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16528300000, + 45.93009900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P4632441815823370100", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/ES3CPUZTN9", + "opening_hours": "24/7", + "ref": "461703", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75307600000, + 49.34211000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12208001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "description": "SAINT AFFRIQUE - Bd Aristide Briand", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88154100000, + 43.95670100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128468", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref:EU:EVSE": "FRWA5P841975149301344358", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5LPT2UWHY3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33746600000, + 48.66792700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "SAUMUR - Parking Place Europe;OuestCharge - Diva Sp - Saumur - Europe", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-27;2024-04-05", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49P49328A;FRS49E49328001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08137400000, + 47.25796200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "description": "FIAC - Allée du Golf", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8109200122;FRS81E8109200111;FRS81E8109200112;FRS81E8109200121", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93802794694, + 43.67441784414 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "5", + "ref:EU:EVSE": "FRHPCPNF007052", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680705;531680703;531680701;531680704;531680702", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "AIRE DE LANCON DE PROVENCE EST", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-07;2021-10-15;2023-05-23", + "ref": "FRHPCPNF007052" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19350000000, + 43.58990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CAZALS - D673, Place de la Victoire proche Chemin du Touron", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46066001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22464800000, + 44.64515600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/SAMTCM", + "operator:email": "roaming@freshmile.com", + "ref": "245377", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PSAMTCM", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41064000000, + 48.06060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-03;2021-11-03", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VALENCIENNES - Place du Canada", + "ref:EU:EVSE": "FRH03E59606007", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52264200000, + 50.35276000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Plouneventer-Place de la Liberté", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2920400", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21141500000, + 48.51366800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "ref:EU:EVSE": "FRSIPE94058007", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "LE PERREUX SUR MARNE - Rue Charles Ollier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49826330185, + 48.84230768985 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "Hôtel B&B Blois", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-05-13", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90271980" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37018900000, + 47.57391400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Carsac de Gurson | Base de Loisirs", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "e34f96f0-c42b-59c6-8486-4528ad90a565", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07568500000, + 44.93921300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*479*1*_*_", + "description": "SIGEIF - PLACE DE LA GARE - SAINT-BRICE-SOUS-FORET", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE47911;FRSIGPSIGE47912", + "charging_station:output": "22 kW", + "start_date": "2024-04-23", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36865230000, + 48.99506650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "ref": "FRALLEGO9009542;FRALLEGO9009532;FRALLEGO9009531;FRALLEGO9006152;FRALLEGO9006151;FRALLEGO9006611;FRALLEGO9006612;FRALLEGO9009541", + "ref:EU:EVSE": "FRALLEGO9009542;FRALLEGO9009532;FRALLEGO9009531;FRALLEGO9006152;FRALLEGO9006151;FRALLEGO9006611;FRALLEGO9006612;FRALLEGO9009541", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-24", + "network": "Allego Carrefour Moulins", + "description": "Allego Carrefour Moulins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34404600000, + 46.54061000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "FRLIBP003740000001898;FRLIBP003740000001894", + "capacity": "2", + "description": "CARREFOUR CONTACT RINXENT;SUPER U BRUAY SUR L'ESCAUT", + "amenity": "charging_station", + "network": "CARREFOUR CONTACT RINXENT;SUPER U BRUAY SUR L'ESCAUT", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRLIBP003740000001898;FRLIBP003740000001894", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19594600000, + 47.08892600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Villefranque | Chemin Bahunenia", + "ref": "c8670ec0-8e4e-5ec9-8cd4-5c7bcf5fb895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45460300000, + 43.43634400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85060001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LES SABLES D'OLONNE (CHATEAU-D'OLONNE) - Parking Millet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73754000000, + 46.50476800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-10-16", + "ref:EU:EVSE": "FRSITE00000163", + "capacity": "4", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "description": "RENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72918340000, + 48.19116270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AMBERIEU EN BUGEY Libération", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3675EVCP01;LFR3675EVCP02;LFR3675EVCP03;LFR3675EVCP04;LFR3675EVCP05", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3675EVCP01;LFR3675EVCP02;LFR3675EVCP03;LFR3675EVCP04;LFR3675EVCP05", + "capacity": "10", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33813700000, + 45.96607000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Lavage Label Bulle - Golbey", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PLABGOL", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43880373950, + 48.19224957931 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Rochetoirin, Square du 19 Mars 1962;Réseau eborn/GBOCPUKOTD", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30194;GBOCPUKOTD", + "ref:EU:EVSE": "FREBNPGBOCPUKOTD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41652000000, + 45.58169200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "amenity": "charging_station", + "capacity": "12", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "network": "SOMIMAR - Bornes publiques", + "charging_station:output": "22 kW", + "opening_hours": "Tu,Mo,Fr,We,Th 09:00-18:00,Fr,Tu,Mo,Th,We 08:00-17:00", + "ref:EU:EVSE": "FREVZP9109942606782662279", + "operator:email": "support@evzen.com", + "ref": "590825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38177500000, + 43.33829100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Restaurant Fujin - Portet-sur-Garonne", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "ref:EU:EVSE": "FRPD1PFJNPSG", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-02-05", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39600030000, + 43.53463590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "410546961;410546958;410546956;410546957;410546959;410546960", + "operator": "Virta", + "description": "G2S-MORDELLES", + "network": "Groupama supports et services ", + "amenity": "charging_station", + "capacity": "11;9;6;7;8;10", + "charging_station:output": "26 kW;25 kW;24 kW;23 kW;22 kW;27 kW", + "start_date": "2022-02-16;2022-02-12;2022-02-11;2022-02-13;2022-02-14;2022-02-15", + "ref:EU:EVSE": "FRE10P35310GROUPAMAMORDELLES", + "operator:email": "philippe.voisin@virta.global", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:04;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:00;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:01;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:02;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:03;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444000000, + 48.06895800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRESEPS42275AB", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "description": "SEMOB Mendes France", + "ref": "FRESEPS42275AB", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW", + "start_date": "2020-03-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35446600000, + 45.47985300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-04", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "HOTEL IBARBOURE", + "ref": "FR*SOD*S*OTHR*138*1*_*_;FR*SOD*S*OTHR*138*2*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR13811;FROTHPOTHR13821", + "operator:email": "sav@izivia.com", + "description": "HOTEL IBARBOURE - BIDART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59570500000, + 43.42199300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Su 08:00-17:00,Mo 08:00-17:00,Tu 08:00-17:00,We 08:00-17:00,Th 08:00-17:00,Fr 08:00-17:00,Sa 08:00-17:00", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6941655", + "network": "BMV PAU SAUVAGNON", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6941655", + "start_date": "2024-05-28", + "description": "BMV PAU SAUVAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39250700000, + 43.36906300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "213105695", + "amenity": "charging_station", + "capacity": "1", + "ref": "cea77994-2d22-11ee-be56-0242ac120002", + "operator": "Freshmile", + "opening_hours": "24/7", + "description": "Vaudreuille", + "network": "Mairie Vaudreuille ", + "charging_station:output": "22 kW", + "operator:email": "advenir@freshmile.com", + "start_date": "2022-11-10", + "ref:EU:EVSE": "FRFR1ESMNJ1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98123000000, + 43.42488000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP123464", + "start_date": "2024-06-13", + "description": "ENGIE Vianeo - B&B HOTEL SAINT-WITZ", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55384000000, + 49.08853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLIEE5ICH2C4QK", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P9079079868973623064", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "892116", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08885400000, + 45.03331400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "MTP reguillon - Pont-Evêque", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-06-04;2024-05-02", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPREGUILLONMTP387801", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91990300000, + 45.52038800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ESPSCBXVJ3", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "491931", + "opening_hours": "Fr,We,Mo,Tu 08:00-12:30,Sa 14:00-19:00,Fr,Mo,We,Th,Tu 13:30-19:00,Sa 09:00-12:00,Th 08:00-12:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6847015564472013584", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593900000, + 43.91875600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MONTBOISSIER - Les Rues Neuves", + "ref": "FRS28E129294", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MONTBOISSIER - Les Rues Neuves", + "ref:EU:EVSE": "FRS28E129294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39267300000, + 48.22097100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/LLXJ12WN7P88Y9", + "ref:EU:EVSE": "FRS14P6327726233029986819", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "1122666", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84947900000, + 48.79940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref": "1128042", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P7378092254606031022", + "description": "WAAT/FRWA6LD0UVVQY5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58876300000, + 43.18835400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2016-12-14", + "ref:EU:EVSE": "FRS50P50340003", + "network": "e-charge50", + "description": "FLAMANVILLE - Dielette", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85794880000, + 49.55127580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "REALMONT  - Place Du Foirail", + "ref:EU:EVSE": "FRS81E81222001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19162200000, + 43.77569400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-01", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF070668", + "ref": "FRHPCPNF070668", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "REL.ROND POINT JEANNE ROSE ", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680736;531680735;531680737;531680738", + "charging_station:output": "175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49400000000, + 46.74830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-26;2024-03-30;2024-03-31", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49007007;FRS49P49007G", + "charging_station:output": "22 kW", + "description": "ANGERS - Place Aquavita;OuestCharge - Diva Sp - Angers - Aquavita", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56561700000, + 47.49352600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/verneuilenha", + "network": "Mouv'Oise", + "ref:EU:EVSE": "FRS60PVERNEUILENHA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "48934", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51702000000, + 49.27410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH07E59314001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "HORNAING - Rue Salvador Allende", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33724700000, + 50.36478800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30034002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BELLEGARDE - Rue Des Mesanges-Ferrières", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49793300000, + 43.75264800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32848", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PTZEPFV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/TZEPFV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.46269000000, + 48.13950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Kyriad Penne-sur-Hubeaune", + "start_date": "2024-02-21", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP90189175", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52006800000, + 43.28547700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "description": "Métropolis/FR*MGP*P93070*A", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93070A", + "ref": "672851", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34675300000, + 48.90321800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRSHEE184", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "150 kW;125 kW;22 kW", + "ref:EU:EVSE": "FRSHEE184", + "network": "Shell Saint-Romain - Le Havre", + "opening_hours": "24/7", + "description": "Shell Saint-Romain - Le Havre", + "start_date": "2023-08-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35790800000, + 49.52819100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-15", + "ref:EU:EVSE": "FRAU10051011", + "owner:ref:FR:SIREN": "399351311", + "capacity": "2", + "amenity": "charging_station", + "description": "CAMPING LE TROPICANA", + "operator": "AUTORECHARGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CAMPING LE TROPICANA", + "ref": "0f8bb58e-5669-4bc3-9b63-7d23db007e43", + "operator:email": "contact@autorecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00715660217, + 46.75561022309 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A8 La Via Julia Augusta", + "operator": "Last Mile Solutions", + "start_date": "2023-04-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89369720", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;90 kW;60 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39814200000, + 43.75476200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "5049ed20-ad76-5369-ad35-c4b0963bc406", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | SAINT YRIEIX LA PERCHE - GARE", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20575300000, + 45.51862400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE60CADA", + "start_date": "2023-08-04", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "CUISE LA MOTTE - N31", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00539400000, + 49.40480100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCATSTHIER", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "THIERS", + "start_date": "2022-12-23", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50851200000, + 45.83902200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3754EVCP01;LFR3754EVCP02", + "ref": "LFR3754EVCP01;LFR3754EVCP02", + "description": "MARLY Paul Vaillant Couturier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52362300000, + 50.33894000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-15E, Rue André Allar", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PBODBAXFWO9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36327100000, + 43.32434900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Montclar, Parking Les Côtes De St Jean", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPTFDWRB", + "ref": "TFDWRB", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35087674000, + 44.41307066000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZMADJK", + "ref:EU:EVSE": "FRFR1PZMADJK", + "operator:email": "roaming@freshmile.com", + "ref": "231001", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75636000000, + 48.58120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PINTAGE", + "description": "Jardiland - Agen", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61845967351, + 44.18030073266 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Vichy, Place Jean Epinat;Réseau eborn/vichy5", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPVICHY5", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "231637;vichy5", + "start_date": "2017-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42651200000, + 46.13060100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/66277e1910f985001c1b48bb", + "ref": "1090311", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Sa,Tu,Su,We,Fr,Mo,Th 08:00-18:00", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP8874507873216570574", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28676500000, + 44.79161500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-04-27", + "ref": "FR*SOD*S*OTHR*255*1*_*_;FR*SOD*S*OTHR*255*2*_*_;FR*SOD*S*OTHR*255*3*_*_;FR*SOD*S*OTHR*255*4*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR25531;FROTHPOTHR25521;FROTHPOTHR25511;FROTHPOTHR25541", + "opening_hours": "24/7", + "network": "HOPITAL DE SEMUR", + "operator:email": "sav@izivia.com", + "description": "HOPITAL DE SEMUR - SEMUR EN AUXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34753300000, + 47.49612800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CGED VANNES", + "ref:EU:EVSE": "FRCPIE6602145", + "ref": "FRCPIE6602145", + "description": "CGED VANNES", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72848500000, + 47.66503500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "453966", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/B34AM9DYGR", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2495901821617214074", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02440000000, + 46.89680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WAAT", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P8077956962547136748", + "charging_station:output": "22 kW;47 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "description": "WAAT/s447784", + "ref": "1167282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34726500000, + 49.00724800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLYFM9ZPO9LGDL", + "ref": "1184600", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8858311280627146902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66404200000, + 44.90647000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVBOX 22 CITROEN SEYNOD", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "4", + "ref:EU:EVSE": "FRSWSE1234625654", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234625654", + "start_date": "2024-03-05", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09477500000, + 45.88044500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "471117", + "ref:EU:EVSE": "FRFR1P6483621448133142245", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/N41JBEJUX0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38346400000, + 47.70708600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 09:00-12:00, Mo 14:00-17:00, Tu 09:00-12:00, Tu 14:00-17:00, We 09:00-12:00, We 14:00-17:00, Th 09:00-12:00, Th 14:00-17:00, Fr 09:00-12:00, Fr 14:00-17:00, Sa 09:00-12:00, Sa 14:00-17:00", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "description": "Kia Volvo - Nice La Plaine (SAV)", + "ref:EU:EVSE": "FRSSDPCAVALLARIKIAVOLVO062002", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "start_date": "2020-05-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19980100000, + 43.68885800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Mairie", + "ref:EU:EVSE": "FRS28ESDE28VER4B1P1", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-10-11", + "operator:email": "lionel.chauvet@energie28.fr", + "owner:ref:FR:SIREN": "200080869", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FR*S28", + "operator": "ENERGIE EURE-ET-LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35526100000, + 48.72071100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/AIFFRKY5XV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P6780518606651990984", + "opening_hours": "24/7", + "ref": "88193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77689900000, + 48.19871800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576173;576164;576365;576353", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P8444063108818371579;FRZP1P8939857634751253210;FRZP1P8430517810508398883;FRZP1P8612570934625984184", + "capacity": "1", + "description": "Zephyre/LP008979;Zephyre/LP008976;Zephyre/LP008985;Zephyre/LP009E8B", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59686200000, + 49.23392900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-03", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Garage_Mignet", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE628", + "owner:ref:FR:SIREN": "839265927", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84347150000, + 46.89074480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Trilport - Parking cimetière", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77475C", + "ref": "458b6d84-083c-4862-a624-6869b5f2f1e4", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "22 kW", + "start_date": "2024-06-18", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94959300000, + 48.96237800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST13613;FRIZFPFAST13611;FRIZFPFAST13612", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*136*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BESANCON ECOLE VALENTIN", + "start_date": "2024-08-08", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99283149693, + 47.27646395781 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4493;FRS41E4494", + "description": "MODULO - LAMOTTE BEUVRON - Pl. du 11 Novembre", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS41E4493;FRS41E4494", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LAMOTTE BEUVRON - Pl. du 11 Novembre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02298900000, + 47.60144500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Breteuil", + "ref:EU:EVSE": "FRS60PBRETEUIL", + "ref": "38788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29770000000, + 49.63240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-12-07", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5521;FRGLYPLYON5511;FRGLYPLYON5512;FRGLYPLYON5522", + "opening_hours": "24/7", + "description": "ECY02 - CENTRE SPORTIF", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*55*2*_*_;FR*SOD*S*LYON*55*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78582000000, + 45.78257000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30281001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT MAMERT DU GARD - Route De Nîmes", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-05", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18877200000, + 43.88574000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/MNEHHV", + "opening_hours": "24/7", + "ref": "85835", + "ref:EU:EVSE": "FRS56PMNEHHV", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.42256200000, + 47.86533500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8570640310452874966", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLNVX2CTYVKP8T", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "ref": "1084572" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16737700000, + 49.14348200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "ref:EU:EVSE": "FRMW1P6167022520569656125", + "description": "Mobilygreen CPO/aa640d7b-e52e-4d1f-a3c0-6f0b17ff089e", + "opening_hours": "24/7", + "ref": "461439", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72407300000, + 47.38690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE18861;FRSIGPSIGE18851;FRSIGPSIGE18821;FRSIGPSIGE18811;FRSIGPSIGE18831;FRSIGPSIGE18841", + "description": "SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX", + "ref": "FR*SOD*S*SIGE*188*6*_*_;FR*SOD*S*SIGE*188*5*_*_;FR*SOD*S*SIGE*188*4*_*_;FR*SOD*S*SIGE*188*3*_*_;FR*SOD*S*SIGE*188*2*_*_;FR*SOD*S*SIGE*188*1*_*_", + "start_date": "2021-10-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427000000, + 48.80590200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001698;FRCG0E001697;FRCG0E001696;FRCG0E001692;FRCG0E001691;FRCG0E001690;FRCG0E001685;FRCG0E001681;FRCG0E001680;FRCG0E001677;FRCG0E001678;FRCG0E001679;FRCG0E001682;FRCG0E001683;FRCG0E001684;FRCG0E001686;FRCG0E001687;FRCG0E001688;FRCG0E001689;FRCG0E001693;FRCG0E001694;FRCG0E001695;FRCG0E001699;FRCG0E001723;FRCG0E001724", + "amenity": "charging_station", + "capacity": "25", + "start_date": "2023-03-29", + "description": "Sterling Automobiles - 31750 - 1", + "opening_hours": "24/7", + "network": "Sterling Automobiles - 31750 - 1", + "ref:EU:EVSE": "FRCG0E001698;FRCG0E001697;FRCG0E001696;FRCG0E001692;FRCG0E001691;FRCG0E001690;FRCG0E001685;FRCG0E001681;FRCG0E001680;FRCG0E001677;FRCG0E001678;FRCG0E001679;FRCG0E001682;FRCG0E001683;FRCG0E001684;FRCG0E001686;FRCG0E001687;FRCG0E001688;FRCG0E001689;FRCG0E001693;FRCG0E001694;FRCG0E001695;FRCG0E001699;FRCG0E001723;FRCG0E001724", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53179700000, + 43.51925300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "820736585", + "operator": "ZEENCO", + "opening_hours": "24/7", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE10001487552;FRLMSE10001487551", + "operator:email": "j.pascal@i2s-ingenierie.fr", + "description": "Carrosserie CRX", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43264600000, + 48.29056600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "7958e726-b5e3-5d69-9578-9cc58bb2a0fe", + "opening_hours": "24/7", + "description": "MOBIVE | Tosse | Salle des Sports", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33011500000, + 43.69235600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Villenoy - La Marne", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE77VABA", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86462600000, + 48.94349000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "MABLY", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSMABLY", + "start_date": "2022-12-02", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06011500000, + 46.06610600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "description": "MAROLLES EN HUREPOIX Levassor", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3028EVCP01;LFR3028EVCP02", + "ref": "LFR3028EVCP01;LFR3028EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29757000000, + 48.57883100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MONTPELLIER - Avenue Agropolis", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34172018", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86920500000, + 43.64676500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-17", + "ref": "WQFNAU;231586", + "capacity": "2", + "description": "Huriel, Pressoir;Réseau eborn/WQFNAU", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPWQFNAU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47873400000, + 46.37378000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P4237358950271256126", + "ref": "1034724", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "9 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLRKRXOU52EAJK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44069800000, + 44.91913000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E920260031;FRP07E92026003", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "10", + "description": "LA DÉFENSE - Tour Egée", + "start_date": "2021-11-03;2020-06-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23804500000, + 48.89501200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPGANNAT", + "description": "Réseau eborn/gannat", + "ref": "231631" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19782400000, + 46.10165400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Cognac - CC Village des Commerçants", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPCOGCC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34712600000, + 45.69438600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E77397001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Nanteuil Saâcy P2 P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22083100000, + 48.97366300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6637385", + "ref:EU:EVSE": "FRCPIE6637385", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR BELLEY", + "network": "SONEPAR BELLEY", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70855600000, + 45.75050100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1168731;LLX0BYZDX273CG", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "description": "Easy Charge/LLX0BYZDX273CG;Besançon, rue du Polygone", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "start_date": "2024-06-04", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPLLX0BYZDX273CG;FRECHP6722197274357204072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00708000000, + 47.23360700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1711", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "description": "Paris | Rue de Courcelles 210", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX17*11", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29550000000, + 48.88670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5520045339703110833", + "ref": "368875", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LUNOV6UIWG", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58683800000, + 44.82405300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01831", + "ref": "FR*TCB*P01831", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AMP | 60 rue du Coq (Ex Bd NAtional)", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38699700000, + 43.30228500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5871396668002901834", + "description": "Freshmile France/QRYOZUKF31", + "operator:email": "roaming@freshmile.com", + "ref": "682226", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86642200000, + 50.10232800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "BMW - Quimper", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-07-10", + "ref:EU:EVSE": "FRSSDPLITTORALBMW290001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.03880600000, + 47.98129400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2915100", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Morlaix-Place du Pouliet", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.81757600000, + 48.57511100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "FLEURY - Rue Des Ecoles", + "start_date": "2022-02-15", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11145001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13467000000, + 43.22747500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13", + "network": "AMSOM HABITAT DORTMUND - AMIENS", + "owner:ref:FR:SIREN": "315667410", + "ref": "E175625;E175624;E175621;E175623", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lu- Ve 08:30-17:00", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "7.4 kW;22 kW", + "description": "BORNE 3 - AMSOM DORTMUND - 7.4kw ;BORNE 1 - AMSOM DORTMUND - 22kw ;Borne 2 - AMSOM Dortmund - 22kW ;BORNE 4 - AMSOM DORTMUND 7.4kW", + "ref:EU:EVSE": "FRZPEE175625;FRZPEE175624;FRZPEE175621;FRZPEE175623", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30981020000, + 49.87647740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE FOSSAT - Versailles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09124001", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40690700000, + 43.17513800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/58aec90fe0c22", + "ref:EU:EVSE": "FRS80P58AEC90FE0C22", + "ref": "34643", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62812000000, + 50.21550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST29311;FRIZFPFAST29312;FRIZFPFAST29313", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*293*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-25", + "owner:ref:FR:SIREN": "951478437", + "description": "IZIVIA FAST - MC DONALDS - VILLEURBANNE LEON BLUM", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91333632143, + 45.76257505637 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44E44055003;FRS44E44055002;FRS44E44055001;FRS44P44055A", + "description": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46);LA BAULE-ESCOUBLAC - Avenue Du Maréchal Joffre", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-18;2021-04-22", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "capacity": "1;6", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38855100000, + 47.28556300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CREVECOEUR-EN-BRIE - Rue De La Gaillardière;Crèvecoeur-en-Brie", + "ref": "01F5ZAKH6138RM8VZ0HARNPBDR", + "start_date": "2023-05-16;2016-08-11", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77144001;FRS77P77144A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90766000000, + 48.75396000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOVOTEL THALASSA SAINT TROJAN", + "network": "NOVOTEL THALASSA SAINT TROJAN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP10000859282;FRGSPP10000859281", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21740900000, + 45.81428200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E220250;FRS37E221525", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - ST LAURENT EN GATINES - Allée des Fossettes", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ST LAURENT EN GATINES - Allée des Fossettes", + "ref": "FRS37E220250;FRS37E221525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77785700000, + 47.58591600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "CD54 - Parking Covoiturage - Nomeny", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "5be5e15c-c439-507e-8c6c-35cb0b8c4f4d", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22746400000, + 48.88946800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Decathlon - Orange", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-17", + "ref:EU:EVSE": "FRG51PDECATHLON841001", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84737400000, + 44.11296000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "ref": "ce6b1075-fedf-542d-a26c-8074b7dd892f", + "opening_hours": "24/7", + "description": "MOBIVE | ARGENTAT-SUR-DORDOGNE | Avenue Lamartine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93737100000, + 45.08466800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "SUCY EN BRIE - Rue de la Procession", + "ref:EU:EVSE": "FRSIPE94071004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52797204710, + 48.76665203344 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6546025;FRCPIE6528605;FRCPIE6527915", + "description": "LFO BORNE 2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6546025;FRCPIE6528605;FRCPIE6527915", + "start_date": "2022-10-12", + "network": "LFO BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18290400000, + 43.54994100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P6920030843248597699", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/JV09DROT9O", + "ref": "742983" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08153100000, + 47.23122200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "cafe8b89-6402-5e21-9c46-020b8889e4ed", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Razac Sur L'Isle | Place Roger Gauthier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60075800000, + 45.16420700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "AlterBase", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - Beauvoir sur Niort - Centre commercial Intermarché - QC", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-12-22", + "ref:EU:EVSE": "FRSEOPAB45122A", + "charging_station:output": "50 kW;43 kW", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47197400000, + 46.18458300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Airbus - Marignane - Parking F03", + "operator:email": "support@driveco.com", + "start_date": "2023-04-12;2023-04-20", + "ref:EU:EVSE": "FRAIRPAIRBUS3130013", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22897200000, + 43.43670700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "LA FLECHE", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR0708EVCP01;LFR0708EVCP02", + "charging_station:output": "22 kW", + "ref": "LFR0708EVCP01;LFR0708EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06047700000, + 47.70189500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/PZE0R0CX2I", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM45P6004943097006427443", + "operator": "Orléans Métropole | FR*M45", + "ref": "414780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96998000000, + 47.91192000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-06", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "PEONE - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ16011;FRA16PWIIZ16012", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*160*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90660900000, + 44.11635200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "operator:email": "roaming@freshmile.com", + "ref": "38740", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/FQPWPW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805000000, + 45.68990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-02-23;2023-11-29", + "opening_hours": "24/7", + "description": "Retail Park - Saint-Pierre-lès-Nemours", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PBDMSPN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68270800000, + 48.28011320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "La Garde, Rue des Frères Lumières;Réseau eborn/WUNGLWZ1YC", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "346970;WUNGLWZ1YC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-12-21", + "ref:EU:EVSE": "FREBNPWUNGLWZ1YC;FREBNP2378910300265931505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03174300000, + 43.14112400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "start_date": "2024-02-13", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "description": "Saclay - Novotel", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPSACNO", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17006700000, + 48.73277200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "amenity": "charging_station", + "capacity": "12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E132020131;FRP07E13202013", + "description": "MARSEILLE - Phocéens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37025000000, + 43.30391000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U CARNAC BORNE 3", + "amenity": "charging_station", + "start_date": "2023-04-06", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6708785;FRCPIE6708765", + "description": "SUPER U CARNAC BORNE 3", + "ref:EU:EVSE": "FRCPIE6708785;FRCPIE6708765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.05960700000, + 47.57502500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPLLYSG004A2O2R0", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "socket:type2_combo:output": "120 kW", + "description": "Saint-Witz, Parking La Boucherie", + "ref": "LLYSG004A2O2R0", + "start_date": "2024-07-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55572200000, + 49.09002500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP101107", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-21", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A5b Galande la Mare Laroche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63536600000, + 48.61063400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20676290000, + 49.97108680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LC4ZL3O1T1", + "amenity": "charging_station", + "ref": "565070", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3792751420257684791" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24755800000, + 43.36585200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0812", + "opening_hours": "24/7", + "ref": "FR*V75*PPX08*12", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue de Berri 10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30416620000, + 48.87244750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref": "LFR3652EVCP02;529229;LFR3652EVCP01", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "description": "FIRMINY Alcazar;Freshmile/FU2H3DXVPO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "ref:EU:EVSE": "LFR3652EVCP02;LFR3652EVCP01;FRFR1P6439368789779462420", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "capacity": "2;4", + "network": "LIDL;Freshmile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29214400000, + 45.39555400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPINGEOPARKINGPORT200001", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "Ajaccio - Le Port", + "operator:email": "support@driveco.com", + "start_date": "2022-02-14", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.74682300000, + 41.94144200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79921", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "description": "SYDED/oyepalletsdf", + "ref:EU:EVSE": "FRS25POYEPALLETSDF", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33487000000, + 46.85510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS18E203096;FRS18E203095", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - LA GUERCHE - Pl. Auguste Fournier", + "amenity": "charging_station", + "start_date": "2019-11-08", + "network": "MODULO - LA GUERCHE - Pl. Auguste Fournier", + "charging_station:output": "0 kW", + "ref": "FRS18E203096;FRS18E203095", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94882500000, + 46.95186800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "JOUARS-PONTCHARTRAIN - Route De Paris", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78321003", + "network": "Seymaborne", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90726520000, + 48.80006900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*12*1*_*_;FR*SOD*S*QPRK*12*2*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "QPARK - 94003 SAINT MANDE - CHARLES DIGEON", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "QPARK", + "ref:EU:EVSE": "FRQPKPQPRK1221;FRQPKPQPRK1211", + "start_date": "2022-06-03", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41811400000, + 48.84397100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BUSQUE - Le Village - Mairie", + "start_date": "2022-09-02", + "ref:EU:EVSE": "FRS81E81043001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95882900000, + 43.78274000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE404253;FRIOYE404203;FRIOYE404202;FRIONE404200;FRIOYE404201;FRIOYE404204;FRIOYE404205;FRIOYE404251;FRIOYE404252", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "La Ferté-Bernard;IONITY La Ferté-Bernard", + "capacity": "5;8", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "start_date": "2020-08-19;2020-08-21", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE404203;FRIOYE404202;FRIONE404200;FRIOYE404201;FRIOYE404204;FRIOYE404205;FRIOYE404251;FRIOYE404252;FRIOYE404253", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "IONITY GMBH;La Ferté-Bernard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62329900000, + 48.12667700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-22;2024-04-22", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44168001;FRS44P44168A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Joachim - Potriais;SAINT-JOACHIM - La Potriais", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20132500000, + 47.38412900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77426A;FRS77E77426001", + "ref": "01F5ZAKH61GSQNYV98299GXJRZ", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-26;2016-12-16", + "description": "St-Méry;SAINT-MERY - Route De Mormant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82895300000, + 48.57826200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681692;531681693", + "description": "DODO - THIERS AUTOMOBILE", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRHPCPNF078762", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078762" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53060000000, + 45.84750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-03-09", + "capacity": "2", + "network": "MODULO - MEUSNES - Rue Paul Couton", + "amenity": "charging_station", + "ref": "FRS41E121604;FRS41E121603", + "description": "MODULO - MEUSNES - Rue Paul Couton", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS41E121604;FRS41E121603", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49637200000, + 47.24952600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lorient - Boulevard Leclerc - Parking Hôtel De Ville", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-10-19", + "ref:EU:EVSE": "FRS56PYVPZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36581000000, + 47.74892200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-14", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "description": "LY322 - SAINT-EUSEBE", + "ref": "FR*SOD*S*LYON*175*2*_*_;FR*SOD*S*LYON*175*1*_*_", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRGLYPLYON17522;FRGLYPLYON17512;FRGLYPLYON17511;FRGLYPLYON17521", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87268400000, + 45.75543600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP91027D", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P91027*D", + "ref": "1121514", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38228500000, + 48.70840900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Opel - ByMyCar - Albertville", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "3", + "start_date": "2020-02-07", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPBYMYCAR732001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39323000000, + 45.66330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "network": "U EXPRESS BEAUS STATION 1", + "capacity": "4", + "description": "U EXPRESS BEAUS STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6591675;FRCPIE6591685", + "start_date": "2022-10-12", + "ref": "FRCPIE6591675;FRCPIE6591685" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59860700000, + 47.47570400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P2351981140588711598", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/AQQEZYTWL4", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446660" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02886000000, + 47.90114600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Fargues-Saint-Hilaire | Avenue de la laurence", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ae374c3c-e187-5551-a651-1b8f08a4c424", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44530600000, + 44.82478700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "operator": "Bouygues E&S", + "description": "GARGE LES GONESSE - Parking Gare", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95268003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39001300000, + 48.97589400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "THIAIS BELLE EPINE", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "capacity": "36", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRALLPEVCARSKLPTH", + "network": "Carrefour Energies", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37187000000, + 48.75649000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROANNE Charlieu", + "operator:email": "bornes@lidl.fr", + "ref": "LFR2968EVCP02;LFR2968EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2968EVCP02;LFR2968EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08554000000, + 46.05195500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PBBUN2MXDGQ", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Aix-En-Provence, Cours Marcel Bremond" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38785100000, + 43.50363000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P687618394284646613", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402680", + "description": "SDEY/XPRVLAFTZW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93981000000, + 47.51528800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ29422;FRA16PWIIZ29412;FRA16PWIIZ29411;FRA16PWIIZ29421", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-06-05;2024-08-23", + "description": "SAINT-RAPHAEL - CHEMIN DES ISCLES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*294*1*_*_;FR*SOD*S*WIIZ*294*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76697220000, + 43.42699570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/D7MMXLNJZN", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "756957", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4696661445213733085", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62584900000, + 47.56255100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PNOVLSQ", + "charging_station:output": "22 kW", + "description": "Novotel - Lille Aéroport", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08879450000, + 50.58399310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "KYGXBCOEUN;79171", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Aups, Place Martin Bidaure;Réseau eborn/KYGXBCOEUN", + "ref:EU:EVSE": "FREBNKYGXBCOEUN;FREBNPKYGXBCOEUN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22524700000, + 43.62646700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref": "1087917", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP4437465710340674900", + "network": "EVzen", + "description": "EVzen/A2C9D980-D811-47F5-B0F9-C755F68C0925", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06627200000, + 46.59058900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - LE SEQUESTRE", + "start_date": "2023-04-05", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*613*1*_*_;FR*SOD*S*OTHR*613*2*_*_;FR*SOD*S*OTHR*613*3*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR61332;FROTHPOTHR61322;FROTHPOTHR61321;FROTHPOTHR61312;FROTHPOTHR61311;FROTHPOTHR61331", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12738000000, + 43.91168900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Evian-Les-Bains, Avenue De La Gare;Réseau eborn/H2TVD8QWSA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "H2TVD8QWSA;85763", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPH2TVD8QWSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57812000000, + 46.39822000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/dompierre;Dompierre-sur-Besbre, Percières", + "ref": "dompierre;30614", + "ref:EU:EVSE": "FREBNPDOMPIERRE", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68414000000, + 46.51760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL SAINT-MICHEL-SUR-ORGE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-05-13", + "ref:EU:EVSE": "FRVIAP122033", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29903900000, + 48.62641200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/UK3CJTWPKE", + "ref": "419151", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2103686931662945677", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.01918200000, + 47.98276800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1508", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "ref": "FR*V75*PPX15*08", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Avenue Félix Faure 109", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28248490000, + 48.83892080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4258635744691673876", + "description": "Freshmile France/LM0QFU3M8129TM", + "operator:email": "roaming@freshmile.com", + "ref": "1183671", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76060200000, + 48.59269000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Adeo services - Ronchin", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPADEO597901", + "capacity": "44", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-02-07;2022-02-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10183400000, + 50.60663200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900090", + "ref:EU:EVSE": "FRS27PQUILLEBEUFCOMCOM", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52503600000, + 49.46752100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22059001", + "description": "Le Foeil-Place de la mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91454300000, + 48.42911100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY15E78502002", + "description": "LE PORT-MARLY - Cimetieres", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10410560000, + 48.87325560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-06", + "description": "Garage_Peugeot_Bondues", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE189", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08895400000, + 50.71111400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLKXOVVRD7", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "1189228", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP3679075737272502295", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95952300000, + 48.13066400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Montélimar Est", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE403506;FRIOYE403505;FRIOYE403504;FRIOYE403503;FRIOYE403502;FRIOYE403501;FRIOYE403551;FRIOYE403552;FRIOYE403553", + "description": "Montélimar Est", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE403553;FRIOYE403552;FRIOYE403506;FRIOYE403505;FRIOYE403504;FRIOYE403503;FRIOYE403502;FRIOYE403501;FRIOYE403551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646000, + 44.51378472000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "474495", + "description": "SDED52/E2LLOSSIAV", + "ref:EU:EVSE": "FRS52P7542764005827402441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14028700000, + 48.20193800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "LOURES BAROUSSE - Parking Carrefour Contact", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65287001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60843000000, + 43.02043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sablé-sur-Sarthe", + "owner:ref:FR:SIREN": "898270251", + "network": "Sablé-sur-Sarthe", + "ref": "FRIENE002402;FRIENE002401", + "amenity": "charging_station", + "start_date": "2023-01-12", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE002402;FRIENE002401", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35769900000, + 47.83454900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34224001", + "description": "PUISSALICON - Avenue de Béziers - Parking Médiathèque" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23399305344, + 43.45797341147 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref:EU:EVSE": "FRS61P61001G", + "capacity": "2", + "amenity": "charging_station", + "ref": "SE61-ALEN-007", + "opening_hours": "24/7", + "start_date": "2019-03-25", + "charging_station:output": "22 kW", + "description": "ALENCON à Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09852300000, + 48.43357400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/JWBYBTAJPL", + "operator:email": "roaming@freshmile.com", + "ref": "529352", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9202985799994844240" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07060000000, + 48.89697900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1009239", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31P7052981288113992231", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/LLNBP6I821HHE1", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92863900000, + 43.14187100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD622191", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "description": "Ford - Groupe Dugardin - Saint Omer", + "start_date": "2020-10-21", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27113600000, + 50.73934600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref": "FRCG0E000001", + "network": "Office Notarial BDN", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "description": "Office Notarial BDN", + "ref:EU:EVSE": "FRCG0E000001", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40397300000, + 51.04361800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "0643f7d8-a22c-11ed-a8fc-0242ac120002", + "charging_station:output": "12 kW", + "description": "rhoneaRHONEA BEAUMES DE VENISE", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2023-02-05", + "ref:EU:EVSE": "FRLUMERHONEABEAUMESVENISE11", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01402700000, + 44.12000450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Ars en Ré | Rue de la Grange", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "4c6d52a6-d945-54b3-993a-0b7116373f85", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51860700000, + 46.20563700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-08-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE50JABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "Jullouville, parking rue du Mont Dol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57004900000, + 48.76014800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "ref": "903792", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRBHMP218722187121083879", + "capacity": "10", + "description": "BornEco/64ccbd3b5e05ac8c68790cfd" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30218300000, + 48.75652300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "TOUL Verdun", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3039EVCP02;LFR3039EVCP01", + "ref:EU:EVSE": "LFR3039EVCP02;LFR3039EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90109400000, + 48.69019400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PQNERYS0WMI", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Carnoux-En-Provence, Place du Maréchal Lyautey", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56685900000, + 43.25595100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "402458", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P6860771566448429890", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/BYVHZM8W55" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50611600000, + 48.34271600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PLACE DU MARCHE SAUVETERRE", + "ref:EU:EVSE": "FR55CP30150SAUPLACE", + "ref": "FR*55C*P30150*SAU*PLACE", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2019-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79361700000, + 44.02433800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PWLHEXK", + "network": "Freshmile France", + "description": "Freshmile France/WLHEXK", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "79672", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56552400000, + 45.39675200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRPD1PSYUMRV", + "capacity": "5", + "description": "Super U - Merville", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22.17025 kW", + "start_date": "2024-02-01;2024-02-23", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65324410797, + 50.64073014950 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "Hyeres, Parking SUD TOUR FONDUE;Réseau eborn/LLTHE8SPK2OG85", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP1465540979833598123;FREBNPLLTHE8SPK2OG85", + "opening_hours": "24/7", + "ref": "LLTHE8SPK2OG85;1111926", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15437100000, + 43.03071400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "start_date": "2021-11-30", + "description": "Fastned Aire de Pont Chêne d'Argent", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@fastned.nl", + "network": "Fastned Aire de Pont Chêne d'Argent", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRFASE33028", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRFASE33028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33288620000, + 47.17945100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*94*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR9412;FROTHPOTHR9411", + "description": "CAMPING SANDAYA - SOULAC-SUR-MER", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-12-17", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14888300000, + 45.46720300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Aurec-Sur-Loire, Place des déportés;Réseau eborn/YEA0UXRKNY", + "ref:EU:EVSE": "FREBNPYEA0UXRKNY;FREBNP2042719090127957987", + "ref": "370217;YEA0UXRKNY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20076000000, + 45.37026000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "description": "Réseau eborn/WQUYNQ;Villefranche d'Allier, Fossés", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPWQUYNQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "WQUYNQ;231580" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85832000000, + 46.39640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*428*4*_*_;FR*SOD*S*OTHR*428*3*_*_;FR*SOD*S*OTHR*428*1*_*_;FR*SOD*S*OTHR*428*2*_*_;FR*SOD*S*OTHR*428*5*_*_;FR*SOD*S*OTHR*428*6*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "HOTEL EN BOURGOGNE", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR42811;FROTHPOTHR42821;FROTHPOTHR42831;FROTHPOTHR42841;FROTHPOTHR42851;FROTHPOTHR42861", + "network": "KYRIAD", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48914100000, + 46.75382100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6388604594364671637", + "description": "Freshmile France/JARZHUSIDC", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "698927" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85087500000, + 43.95911000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Villabé, France", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP407740", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44920900000, + 48.58608600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "674285", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "24 kW;7.4 kW", + "description": "Freshmile France/XXDLS2JO5O", + "network": "Freshmile France", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1002010216167633110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86193800000, + 43.57953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "ref": "f07baa43-f584-5590-ade5-69a23f2f2598", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "LONGVIC-5 Bd des industries", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04591700000, + 47.28512700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P868478055580559710", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "370172", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/UPPTNFPCFG", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55857200000, + 44.82404800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1112088", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P671029225802759270", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLW66ZW4H2AKL0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75595300000, + 49.34708300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "description": "Zephyre/LE006CB8;Zephyre/LP008980;Zephyre/LP00956F;Zephyre/LP008982;Zephyre/LP009E5F;Zephyre/LP009E58", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P6941966683265716390;FRZP1P3712429087051557258;FRZP1P7535300907029024087;FRZP1P8149699098537001810;FRZP1P4689930688218351506;FRZP1P5706329263494579488", + "opening_hours": "24/7", + "ref": "576191;894999;576335;576197;576344;576014", + "charging_station:output": "14 kW;22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36493900000, + 48.23203400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-01", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE414", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "GODEFROID_ANZIN", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51239800000, + 50.37147100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78638001", + "description": "VAUX-SUR-SEINE - Place De La Gare", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-26", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96367300000, + 49.00689300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-09;2024-05-24", + "ref:EU:EVSE": "FRS53P53267A;FRS53E53267001", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Vaiges - Charmes;VAIGES - Rue Des Charmes", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47575100000, + 48.03942600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66167001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAILLAGOUSE - Rue Des Sports", + "start_date": "2022-02-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03793700000, + 42.45766300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IKEA BORDEAUX - PARKING CLIENTS", + "start_date": "2023-04-24", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRIKAPIKEA11691;FRIKAPIKEA11681;FRIKAPIKEA11671;FRIKAPIKEA11661;FRIKAPIKEA11651;FRIKAPIKEA116201;FRIKAPIKEA116191;FRIKAPIKEA116181;FRIKAPIKEA116101;FRIKAPIKEA11611;FRIKAPIKEA116111;FRIKAPIKEA116121;FRIKAPIKEA116131;FRIKAPIKEA116141;FRIKAPIKEA116151;FRIKAPIKEA116161;FRIKAPIKEA116171;FRIKAPIKEA11621;FRIKAPIKEA11631;FRIKAPIKEA11641", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*116*8*_*_;FR*SOD*S*IKEA*116*5*_*_;FR*SOD*S*IKEA*116*4*_*_;FR*SOD*S*IKEA*116*3*_*_;FR*SOD*S*IKEA*116*20*_*_;FR*SOD*S*IKEA*116*19*_*_;FR*SOD*S*IKEA*116*17*_*_;FR*SOD*S*IKEA*116*13*_*_;FR*SOD*S*IKEA*116*1*_*_;FR*SOD*S*IKEA*116*10*_*_;FR*SOD*S*IKEA*116*11*_*_;FR*SOD*S*IKEA*116*12*_*_;FR*SOD*S*IKEA*116*14*_*_;FR*SOD*S*IKEA*116*15*_*_;FR*SOD*S*IKEA*116*16*_*_;FR*SOD*S*IKEA*116*18*_*_;FR*SOD*S*IKEA*116*2*_*_;FR*SOD*S*IKEA*116*6*_*_;FR*SOD*S*IKEA*116*7*_*_;FR*SOD*S*IKEA*116*9*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56501200000, + 44.88494300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35191001B1", + "description": "LES PORTES DU COGLAIS - 2 rue de quincampoix ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30862100000, + 48.44134500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63009B", + "description": "SIEG 63/FR*S63*P63009*B", + "charging_station:output": "25 kW;22 kW", + "ref": "518219" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12345900000, + 45.40161900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "742959", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3504140566846068747", + "description": "Freshmile France/M3QO1Y3NBX", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01883200000, + 49.48641200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PZFDBZE", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-02-28", + "description": "Rieux-Volvestre;Roulez Électrique En Haute-Garonne/ZFDBZE", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "33388;ZFDBZE", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19610000000, + 43.25700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOBIGNY - Rue Mathurin Renaud", + "ref:EU:EVSE": "FRSIPE93008001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45480990000, + 48.90793940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001781;FRCG0E000796;FRCG0E000795;FRCG0E000794;FRCG0E000793;FRCG0E000792;FRCG0E000791;FRCG0E000789;FRCG0E001782", + "start_date": "2023-03-14", + "amenity": "charging_station", + "ref": "FRCG0E001781;FRCG0E000796;FRCG0E000795;FRCG0E000794;FRCG0E000793;FRCG0E000792;FRCG0E000791;FRCG0E000789;FRCG0E001782", + "description": "COLOMBUS - 31000 - 3", + "opening_hours": "24/7", + "network": "COLOMBUS - 31000 - 3", + "capacity": "9", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49302400000, + 43.57937000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*208*2*_*_;FR*SOD*S*NICE*208*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2024-01-15;2022-11-17", + "charging_station:output": "22 kW", + "description": "GATTIERES - PARKING LEON MOURRAILLE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE20821;FRM06PNICE20812;FRM06PNICE20811;FRM06PNICE20822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17726937336, + 43.75929632800 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "0c9d2f65-72a6-5a41-bb86-dd99d824c146", + "description": "MOBIVE | Moirax | Place du Bruilhois", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60922900000, + 44.14137600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*346*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 2 RUE DES PENDANTS - PARKING CTM - EAUBONNE", + "start_date": "2023-02-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE34612;FRSIGPSIGE34611", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26679000000, + 48.99500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76108002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BOIS GUILLAUME - Rue de la Haie", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11719200000, + 49.46912800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3423EVCP01;LFR3423EVCP02;LFR3423EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3423EVCP01;LFR3423EVCP02;LFR3423EVCP03", + "description": "ECOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43981100000, + 49.30826900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "8e09df25-94c1-5101-881a-184f48015f19", + "description": "MOBIVE | Aubusson | Parking Champ de Foire Rue des Fusillés", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17523900000, + 45.95685400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "79795", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PMONTAUBANROGER", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/montaubanroger" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35255000000, + 44.02610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2022-11-18", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83820RCMCANADEL1A", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "PARKING CANADELIA - RAYOL", + "ref": "FR*55C*P83820*RCM*CANADEL1A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46498700000, + 43.16032900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3642EVCP02;LFR3642EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "THIVIERS Corgnac", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3642EVCP02;LFR3642EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92370800000, + 45.40953500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMDLP", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Intermarché - Dun-le-Palestel", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67443200000, + 46.30162200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-12-09", + "network": "eborn", + "description": "Montgenèvre, Parking de l'obélisque", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "LEI5CBWBVF", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLEI5CBWBVF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72972968000, + 44.93409421000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "amenity": "charging_station", + "start_date": "2023-11-28", + "ref": "FRETIP64122A", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - BIARRITZ Avenue de Verdun", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRETIP64122A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54332004920, + 43.48060680824 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E44109013;FRP01E441090131", + "description": "Parking Nantes les Nefs - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "network": "EFFIA France", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56323130000, + 47.20436450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT325001", + "description": "Carrefour Market - Fleurance", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65910600000, + 43.86065600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "22 kW;150 kW;11 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPCLFJL", + "network": "ELECTRA", + "opening_hours": "24/7", + "start_date": "2024-04-15", + "operator": "ELECTRA", + "description": "Clermont-Ferrand - Jardiland" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11965000000, + 45.79208000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "REPORAMA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*541*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "REPORAMA LES GARENNES - RANG DU FLIERS", + "start_date": "2022-12-01", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR54111;FROTHPOTHR54112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61404100000, + 50.41771800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT POITIERS", + "start_date": "2023-06-14", + "charging_station:output": "38 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6738725", + "description": "SONEPAR CONNECT POITIERS", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6738725", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31272900000, + 46.61269500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZJWTUKQRTE", + "ref:EU:EVSE": "FRFR1P5530083576314626568", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "441078", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72640000000, + 48.47030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROSHEIM - Avenue Clemenceau", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "ref:EU:EVSE": "FRV05E67411003", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46784800000, + 48.49796000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "978026", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2005555008787720801", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLOMTVJ2Y1KY00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07790100000, + 45.15748800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1735", + "capacity": "8", + "description": "Tesla Supercharger Châteauroux", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71602800000, + 46.86304700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/W10TRRJXGH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "505731", + "ref:EU:EVSE": "FRFR1P2923501616989906426", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89513000000, + 42.67200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20712400000, + 50.68498400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLSU887E11MLE9", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1026795", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8130724456705840721", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33611400000, + 49.24413900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-06-08", + "network": "Reveo", + "description": "MILLAU - Mandarous", + "ref:EU:EVSE": "FRS12E12145003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07830700000, + 44.09966500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA4LXVFGCC1Y", + "operator": "WAAT SAS | FR*WA4", + "ref": "880197", + "ref:EU:EVSE": "FRWA4P6447101965456153239", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11797700000, + 49.48386800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49271001;FRS49P49271A", + "charging_station:output": "22 kW", + "description": "SAINT-CLEMENT-DE-LA-PLACE - Rue du Tabuteau;OuestCharge - Diva Sp - Saint-Clement-de-la-Place - Tabuteau", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-06-03;2024-04-03", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74399200000, + 47.52518900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "charging_station:output": "22 kW", + "description": "CASTRES - GARE - 108 Avenue Albert 1Er Parking Gare", + "ref:EU:EVSE": "FRS81E81065010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23193000000, + 43.59931700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH18E62045001", + "description": "AUBIGNY EN ARTOIS - route national", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58027000000, + 50.34545300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VALLET - Rue Émile Gabory;OuestCharge - Pulse 50 - Vallet - Gabory", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2024-05-17;2021-04-29", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44E44212001;FRS44P44212A", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26857100000, + 47.16290700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS63P63381A", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "description": "SIEG 63/FR*S63*P63381*A", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref": "518438", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89351300000, + 45.84884700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AULNOY-LEZ-VALENCIENNES - Rue Jules Mousseron", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH03E59032002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51314400000, + 50.33082200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-25", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "description": "CLERMONT L’HERAULT - Parking du centre", + "ref:EU:EVSE": "FRS34E34079001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43658450000, + 43.62767220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "GENTILLY - Rue Raspail", + "ref:EU:EVSE": "FRSIPE94037005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34445560000, + 48.81055300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Epernay", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP90229744", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2024-05-14", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95528200000, + 49.05288900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "7a8cf70d-0916-5e09-9a38-b3eb035411a0", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Saint leon Sur Vezere | le Bourg | Parking Camping Cars", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09088600000, + 45.01168700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 2 AVENUE PAUL VAILLANT COUTURIER - BOIS DARCY", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE45011;FRSIGPSIGE45012", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*450*1*_*_", + "start_date": "2024-05-03", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03115310000, + 48.80118730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO9990261;FRALLEGO9009802;FRALLEGO9004351;FRALLEGO9004352;FRALLEGO9009801;FRALLEGO9990262;FRALLEGO9990271;FRALLEGO9990272", + "amenity": "charging_station", + "start_date": "2023-10-16", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Ormesson", + "description": "Allego Carrefour Ormesson", + "ref": "FRALLEGO9990261;FRALLEGO9009802;FRALLEGO9004351;FRALLEGO9004352;FRALLEGO9009801;FRALLEGO9990262;FRALLEGO9990271;FRALLEGO9990272" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55562100000, + 48.79352800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "BLAGNAC Grenade", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3238EVCP02;LFR3238EVCP01;LFR3238EVCP03", + "ref:EU:EVSE": "LFR3238EVCP02;LFR3238EVCP01;LFR3238EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38300100000, + 43.64833600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "c0795fc7-21b1-5722-93f9-a7c3e9e5c1c4", + "description": "MOBIVE | Casteide Doat | Rue Simin Palay", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01390400000, + 43.37509500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "CARPENTRAS - Bd Pasteur", + "operator": "52__COVE", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "9dd853c9-f115-5158-bc17-240a35c8dfec" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04559800000, + 44.04675600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "description": "SAINT-ARNOULT-EN-YVELINES - Place Jean Moulin", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78537001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93766000000, + 48.57291230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TIGNIEU JAMEZIEU Cremieu", + "ref:EU:EVSE": "LFR3639EVCP01;LFR3639EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3639EVCP01;LFR3639EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19818800000, + 45.75181100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Relai Des Portes - Le Pian-Médoc", + "start_date": "2023-01-02;2022-12-12", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PJJHPMD", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62965500000, + 44.95418100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31774;AVUGAR5K1V", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Anneyron, Place du Gymnase;Réseau eborn/AVUGAR5K1V", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPAVUGAR5K1V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88676800000, + 45.27212900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "psasupport@evbox.com", + "owner:ref:FR:SIREN": "830583381", + "description": "2A Automobiles", + "network": "EVBOX", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-FR 8:00-12:00,Mo-FR 14:00-18:00", + "ref:EU:EVSE": "FREVBEEDQS6FVAC2LYL6FAFW6IPNALMU", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "start_date": "2021-09-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20018388289, + 46.01405490200 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PDATAVR", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Del Arte - Avranches", + "start_date": "2023-09-07;2023-08-30", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36863201653, + 48.68985363597 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2024-08-23", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT384301", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Carrefour Market Moirans" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56695400000, + 45.32457900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42218BC", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "description": "SEMOB Place Jean Moulin", + "start_date": "2021-09-03", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218BC", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39193700000, + 45.43801300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPIZIG72211;FROTHPIZIG72221;FROTHPIZIG73111;FROTHPIZIG73131", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IZIG*731*3*_*_;FR*SOD*S*IZIG*731*1*_*_;FR*SOD*S*IZIG*722*1*_*_;FR*SOD*S*IZIG*722*2*_*_", + "start_date": "2023-07-16;2024-01-15", + "description": "CNPE CHINON - PARKING SUD 5;CNPE CHINON - PARKING NORD 1", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16392000000, + 47.22969000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6894175", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-02-29", + "description": "SONEPAR REDON", + "ref:EU:EVSE": "FRCPIE6894175", + "network": "SONEPAR REDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06183800000, + 47.67619700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/OEGY4OXRSX", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3913501433125283855", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "591209", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93697100000, + 45.69546300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo- B&B HOTEL CLERMONT FERRAND LE BREZET AEROPORT", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP123463", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14163000000, + 45.78655000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7216648996508401494", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "370151", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QXX0ZUA3NL", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58614600000, + 44.83869100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00, Su 09:00-12:00, Su 14:00-18:00", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-10-30", + "operator": "DRIVECO", + "description": "Suzuki - Voglans", + "ref:EU:EVSE": "FRSSDPMAURINSUZUKI734201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88603600000, + 45.61867600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "160296", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/stpierrebois", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1234464243297242203", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.64230000000, + -20.93230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - MARMAGNE - Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MARMAGNE - Pl. de la mairie", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS18E109050", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E109050", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28396022000, + 47.10178143000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/GI08L1LAZG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2772351172328543113", + "ref": "461739" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51247700000, + 49.20370500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "1127919", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LBAXKHR1K", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P6794514816093027516" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34892600000, + 46.57507100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50210001", + "start_date": "2017-03-03", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CERISY LA SALLE - Rue des Ecoles", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28328190000, + 49.02581460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-28", + "description": "MONTREDON LABESSONNIE - Place St Jean", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8118200121;FRS81E8118200112;FRS81E8118200111;FRS81E8118200122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32644295700, + 43.72130966200 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DU CROISILLON", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "start_date": "2021-05-25", + "opening_hours": "24/7", + "ref": "FRHPCPNF059792", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680544", + "ref:EU:EVSE": "FRHPCPNF059792" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18150000000, + 48.98680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS48E48198001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VILLEFORT - Parking Communauté De Communes - Rd901", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93345000000, + 44.43556500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "541916", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56P9061700916207792508", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/IQBKMPJAIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36690000000, + 47.75400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "ARRAS - Rue Emile Didier", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH06E62041001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79676800000, + 50.28243600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "description": "PLOZEVET - Place De La Mairie", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS29E29710001", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.42486800000, + 47.98774300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRNFCWQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Groix - Parking Port Tudy", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44880300000, + 47.64150700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052581;FRLMSE12346052572;FRLMSE12346052571;FRLMSE12346052582", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "VOUZAILLES-1-1;VOUZAILLES-1-2", + "start_date": "2018-03-21", + "opening_hours": "24/7", + "ref": "B111", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09632600000, + 46.71077000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - Express - Montreuil - Franklin (30)", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "100 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93048K", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44370652000, + 48.86197169000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "network": "AlterBase", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 09:00-13:00, Mo-Fr 16:00-18:00", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2022-05-05", + "description": "Réseau AlterBase - Niort - Centre aquatique Pré-Leroy", + "ref:EU:EVSE": "FRSEOPAB79191P0265A;FRSEOPAB79191P0265B", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46351600000, + 46.33192100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRATLP4775553993693855352", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00387", + "ref": "1175616" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42918500000, + 43.42583500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "owner:ref:FR:SIREN": "668502966", + "description": "Würth Montélimar Proxi", + "amenity": "charging_station", + "start_date": "2022-11-09", + "capacity": "1", + "operator": "ZEENCO", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE10001142032;FRLMSE10001142031", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74154500000, + 44.52689700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "312910557", + "operator:email": "irve@botanic.com", + "capacity": "8", + "description": "Botanic", + "amenity": "charging_station", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Botanic", + "network": "Botanic", + "ref:EU:EVSE": "FRMAPP000000007922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11695437000, + 46.13846966000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS88E145497;FRS88E145495", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E145497;FRS88E145495", + "start_date": "2022-08-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - ST MAURICE - Rue de Lorraine", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST MAURICE - Rue de Lorraine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81861600000, + 47.85498900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9007891;FRALLEGO9007872;FRALLEGO9007871;FRALLEGO9000702;FRALLEGO9000701;FRALLEGO9000641;FRALLEGO9000642;FRALLEGO9002861;FRALLEGO9002862;FRALLEGO9002863;FRALLEGO9007892", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Bègles", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref": "FRALLEGO9007891;FRALLEGO9007872;FRALLEGO9007871;FRALLEGO9000702;FRALLEGO9000701;FRALLEGO9000641;FRALLEGO9000642;FRALLEGO9002861;FRALLEGO9002862;FRALLEGO9002863;FRALLEGO9007892", + "network": "Allego Carrefour Bègles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53247100000, + 44.79428500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3434EVCP01;LFR3434EVCP02", + "description": "AUBY Octobre", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3434EVCP01;LFR3434EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06040200000, + 50.42518300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PTUKBLMUEU8", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-11E, 270 Route des 3Lucs la Valentine", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48185800000, + 43.29839300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "96002", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/QLRDN5VITJ", + "ref:EU:EVSE": "FREBNPQLRDN5VITJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54026200000, + 45.48570400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/OZNIDWLXDO", + "ref:EU:EVSE": "FRFR1P1971809549023703216", + "operator": "Freshmile | FR*FR1", + "ref": "412085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99700000000, + 42.60650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-18;2023-07-20", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PIBSPRP", + "description": "Ibis - Perpignan", + "operator": "Power Dot France", + "charging_station:output": "100 kW;50 kW;187.5 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85270963317, + 42.68087369658 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "78627;TUDR0E6GUP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPTUDR0E6GUP", + "start_date": "2020-06-21", + "description": "Manosque, Bas Saint Sépulcre;Réseau eborn/TUDR0E6GUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79663700000, + 43.83000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34332D", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - VIAS - Groupe Scolaire - Gymnase", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34332D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41443800000, + 43.31154900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2021-09-02;2022-01-26", + "ref:EU:EVSE": "FROTHPOTHR23092;FROTHPOTHR23081;FROTHPOTHR23071;FROTHPOTHR23061;FROTHPOTHR23051;FROTHPOTHR23031;FROTHPOTHR23021;FROTHPOTHR23011;FROTHPOTHR230101;FROTHPOTHR230102;FROTHPOTHR23041;FROTHPOTHR23091", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "SUPER U - NIEPPE", + "ref": "FR*SOD*S*OTHR*230*9*_*_;FR*SOD*S*OTHR*230*8*_*_;FR*SOD*S*OTHR*230*7*_*_;FR*SOD*S*OTHR*230*6*_*_;FR*SOD*S*OTHR*230*5*_*_;FR*SOD*S*OTHR*230*2*_*_;FR*SOD*S*OTHR*230*1*_*_;FR*SOD*S*OTHR*230*10*_*_;FR*SOD*S*OTHR*230*3*_*_;FR*SOD*S*OTHR*230*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84188300000, + 50.68591800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6595975", + "ref": "FRCPIE6595975", + "network": "SONEPAR CONNECT HYERES", + "charging_station:output": "22 kW", + "description": "SONEPAR CONNECT HYERES", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10871700000, + 43.10953700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/FB5Q3EX4F8", + "ref": "368824", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6746361183446833519", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57309100000, + 44.88033000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "6.9 kW", + "ref": "789189", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA1P5544560371083912853", + "description": "WAAT/FRWATLH1F9FFEY", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82894100000, + 43.64124700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "We,Fr,Tu,Mo,Sa,Th 09:15-18:45", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2237523999034223871", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/LLUS4V93QYLB1G", + "ref": "1069260", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.30739000000, + -20.95399600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2023-01-23", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "description": "ABB 22kW CFAI 5;ABB 22kW CFAI 2;ABB 22kW CFAI 4;ABB 22kW CFAI 1;ABB 22kW CFAI 6;ABB 22kW CFAI 3", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1000117536;FRSWSE1000117528;FRSWSE1000117515;FRSWSE1000117511;FRSWSE1000117518;FRSWSE1000117522", + "ref": "1000117536;1000117528;1000117518;1000117515;1000117511;1000117522", + "charging_station:output": "22 kW;7 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88634100000, + 45.59846700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6424745712668555881", + "operator:email": "roaming@freshmile.com", + "ref": "471195", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VN9MGBRYJV", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93959000000, + 48.30733000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLOC341101", + "network": "DRIVECO", + "start_date": "2023-06-23", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Loc+ - Frontignan", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71032900000, + 43.42406900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS28E139691", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-10", + "charging_station:output": "0 kW", + "network": "MODULO - NOGENT LE ROI - Rte. d'Ormoy - T2", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E139691", + "description": "MODULO - NOGENT LE ROI - Rte. d'Ormoy - T2", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52235200000, + 48.64192600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "operator:email": "contact@petitdidier.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "PETIT DIDIER", + "start_date": "2023-10-6", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "owner:ref:FR:SIREN": "775743966", + "charging_station:output": "22 kW", + "description": "PETIT DIDIER", + "operator": "PETIT DIDIER", + "ref": "EVB-P2037230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15611310000, + 49.02286200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/MEPTJ9OWEG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "39737", + "ref:EU:EVSE": "FRS10P2514987374247977589" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76030000000, + 48.50330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "d01d1758-feab-4099-a930-35800bdc8445", + "network": "UNICAP - Garage des 2 Caps", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "514016021", + "description": "UNICAP - Garage des 2 Caps - 22kw", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P42069", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71122600000, + 50.82733900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "IM_Joue", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE532", + "start_date": "2023-02-06", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64809680000, + 47.34792820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PJDZMJF", + "ref": "34000", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "description": "SDE82/JDZMJF", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17001000000, + 43.94230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - BEAUVAIS NELSON MANDELA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST10912;FRIZFPFAST10911;FRIZFPFAST10913", + "ref": "FR*SOD*S*FAST*109*1*_*_", + "start_date": "2024-05-03", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07414256684, + 49.42940514841 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49127002", + "description": "DURTAL - Parking Trivoli" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24461099500, + 47.67200088501 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "48970", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/Beauvlois", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PBEAUVLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07871000000, + 49.43280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-18", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*30*1*_*_;FR*SOD*S*LYON*30*2*_*_", + "opening_hours": "24/7", + "description": "LY307 - RUE DARMENIE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON3022;FRGLYPLYON3021;FRGLYPLYON3011;FRGLYPLYON3012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85043700000, + 45.75451200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "POULX - Route d'Uzes", + "start_date": "2022-09-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30206001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42032000000, + 43.90972000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZRNMMN", + "start_date": "2017-09-29", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Cours Louis de Chazelles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36219500000, + 47.75366500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Campanile Thionville Yutz", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-06-26", + "ref:EU:EVSE": "FRLMSP90301840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17733700000, + 49.34849500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "description": "Mobilygreen CPO/cfcab9a6-6df5-4beb-a034-ace58e383d8c", + "ref:EU:EVSE": "FRMW1P4511475070462072672", + "ref": "951470", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25425000000, + 43.55520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 166 AVENUE JEAN JAURES - MAISONS-ALFORT", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2021-10-13", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE16211;FRSIGPSIGE16212", + "ref": "FR*SOD*S*SIGE*162*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43290800000, + 48.79786100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GOSB - QDI Athis-Mons - Parking exterieur", + "start_date": "2024-06-19", + "ref:EU:EVSE": "FRBE1E91027001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39352000000, + 48.69690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Beaune Nord", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89876989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84819300000, + 47.04263800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Martin d'Oney | Parking Place", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "ref": "95e556a0-e802-5cee-83cb-72953e53316c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64104100000, + 43.92813900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "FIRALP - MONTEREAU SUR LE JARD", + "capacity": "2", + "opening_hours": "Mo-Fr 08:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE77MSRA", + "start_date": "2021-09-08", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66235700000, + 48.61431900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9007212;FRALLEGO9007211;FRALLEGO9007142;FRALLEGO9003401;FRALLEGO9003402;FRALLEGO9007141", + "start_date": "2024-02-22", + "network": "Allego Carrefour Armentières", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9007212;FRALLEGO9007211;FRALLEGO9007142;FRALLEGO9003401;FRALLEGO9003402;FRALLEGO9007141", + "description": "Allego Carrefour Armentières" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88488123000, + 50.68957243000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4042EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LAMBERSART Bonte", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4042EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01583800000, + 50.64587500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34058001", + "network": "Reveo", + "description": "CASTRIES - Avenue De La Royale", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97473600000, + 43.67136100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPR8XY0SZE9U", + "description": "Réseau eborn/R8XY0SZE9U;La Coucourde, Parking Freydier N7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "31840;R8XY0SZE9U", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78179100000, + 44.64957600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7548288528199935065", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1173840", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSOJ1F932LKPY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02849400000, + 49.11317000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MEAUX - Centre-Ville - Grand Cerf", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E77284004;FRP07E772840041", + "start_date": "2023-12-13;2022-05-01", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88103580000, + 48.95815090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Saint-Laurent-Les-Bains, Le Village;Réseau eborn/GWLPHY", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "GWLPHY;75095", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPGWLPHY", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96914000000, + 44.60710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPLORIM", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-02-29", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "description": "Lorient - Intermarché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38450400000, + 47.76690100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E75114001", + "network": "EFFIA France", + "description": "Parking Paris gare Montparnasse Catalogne - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31900680000, + 48.83816310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CHALLANS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6627985", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CHALLANS", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6627985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85920400000, + 46.84921300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "LRLCQP4NJM;453945", + "description": "Vienne, Square Vassy;Easy Charge/LRLCQP4NJM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP2957241933593308224;FRECHPLRLCQP4NJM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87564000000, + 45.52464000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Avenue Georges Mandel 1", + "amenity": "charging_station", + "start_date": "2021-09-07", + "ref:EU:EVSE": "FRV75PPX1616", + "ref": "FR*V75*PPX16*16", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28580000000, + 48.86300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/XLNZYE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4136706412390410114", + "ref": "454473" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10259000000, + 48.71090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-12-07", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "operator": "TotalEnergies Marketing France", + "description": "IBIS Budget - Mondeville", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTCBP00999", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "414111310", + "ref": "FRTCBP00999" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30109558466, + 49.16246233245 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "368797", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8345160214645852711", + "description": "Freshmile France/CNBUAC7CIC", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56711000000, + 44.83082200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Hyundai - Kremlin-Bicêtre", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBPM942701", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 10:00-12:00, Mo 15:30-18:00, Tu 10:00-12:00, Tu 15:30-18:00, We 10:00-12:00, We 15:30-18:00, Th 10:00-12:00, Th 15:30-18:00, Fr 17:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "start_date": "2022-03-03", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36339100000, + 48.80737200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "charging_station:output": "43 kW;50 kW;22 kW", + "description": "Landivisiau-Moulins Aux Prêtres", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2023-03-13;2023-03-23", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2910500;FRS29E29105001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05287200000, + 48.51548800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11069009", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "CARCASSONNE - Parking Souterain Gambetta", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35580000000, + 43.21268700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC77657;FRZP1PEAC77654", + "ref": "a3cd2f3c-029a-4299-bb12-20ca929229fd", + "capacity": "1", + "network": "Logis Hôtel Castel Damandre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hôtel Castel Damandre - 22 kW AC", + "owner:ref:FR:SIREN": "434642468", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80566854000, + 46.87583729000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57639;FRS08E57640", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - CHOOZ - Rue Paul Emile Janson", + "operator": "Modulo", + "ref:EU:EVSE": "FRS08E57639;FRS08E57640", + "description": "MODULO - CHOOZ - Rue Paul Emile Janson", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80778163000, + 50.10209893000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PVFTYGS", + "charging_station:output": "22 kW", + "ref": "79486", + "description": "FDE 80/VFTYGS", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14021000000, + 50.05260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - GUYANCOURT", + "ref:EU:EVSE": "FRIZFPFAST2522;FRIZFPFAST2521;FRIZFPFAST2511;FRIZFPFAST2512;FRIZFPFAST2513;FRIZFPFAST2523", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2023-10-23", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*25*1*_*_;FR*SOD*S*FAST*25*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06118470000, + 48.76978350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2024-04-16;2021-04-26", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44E44029001;FRS44P44029A", + "description": " DIVATTE-SUR-LOIRE - Rue Des Petites Noues;OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Noues", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29030800000, + 47.27651700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Le Châtelet-en-Brie;LE CHATELET-EN-BRIE - Ruelle Montagne", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-08-12;2023-05-31", + "ref:EU:EVSE": "FRS77P77100A;FRS77E77100001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61P9VBJ8QTZVKEFRX1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79478000000, + 48.50516100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "fence" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20654210000, + 49.97202290000 + ], + [ + 1.20655090000, + 49.97179140000 + ], + [ + 1.20650050000, + 49.97171090000 + ], + [ + 1.20654250000, + 49.97168190000 + ], + [ + 1.20652190000, + 49.97165990000 + ], + [ + 1.20639060000, + 49.97154250000 + ], + [ + 1.20633940000, + 49.97148010000 + ], + [ + 1.20613100000, + 49.97147770000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000055706;FRGSPP1000055705", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "network": "CARREFOUR MARKET FERRIERES", + "description": "CARREFOUR MARKET FERRIERES", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87300630267, + 46.22818377673 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E219909;FRS37E219916", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - CHINON - Pkg. de la Brèche", + "network": "MODULO - CHINON - Pkg. de la Brèche", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219909;FRS37E219916" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24037957000, + 47.16745011000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "53ee440e-0249-5a1c-a0af-3265a7ced6ab", + "charging_station:output": "50 kW;43 kW", + "description": "CD54 - Parking covoiturage - Ceintrey", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18373800000, + 48.53658800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "1", + "network": "LPA Parking FAO - N1 - Zone 1", + "opening_hours": "24/7", + "description": "LPA Parking FAO - N1 - Zone 1", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P69383CA", + "ref": "FRG10P69383CA", + "start_date": "2024-06-28", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84044070000, + 45.75705480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "67f00750-0bd2-5dea-b89c-a1dfa292efb0", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | COURCON | Rue de l'église", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81343000000, + 46.24397000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 88 AVENUE ARISTIDE BRIAND - MORANGIS", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*280*1*_*_", + "start_date": "2022-06-14", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE28012;FRSIGPSIGE28011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32477400000, + 48.70053500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6497835;FRCPIE6501945", + "description": "GVA LYON 9 ABB", + "ref": "FRCPIE6497835;FRCPIE6501945", + "start_date": "2021-09-07", + "capacity": "3", + "charging_station:output": "24 kW;22 kW", + "operator:email": "info@chargepoint.com", + "network": "GVA LYON 9 ABB", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79671800000, + 45.77534400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/SOUICAHQGU", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P4633376478317937830", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "574562", + "charging_station:output": "22 kW", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22351000000, + 44.87555000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Tourtoirac | Place du Chateau", + "opening_hours": "24/7", + "ref": "59213250-1bbe-5edd-96fb-4d7b2290614e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05696200000, + 45.27056500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18212A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2021-06-22", + "operator": "Séolis", + "description": "Réseau AlterBase - Thouars / Ste Radegonde - Centre commercial" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23475980000, + 46.99145100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "Pays de Gex - ePremium - Prevessin-Moens - Centre Ville", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRAGXP01313A", + "start_date": "2020-03-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08013800000, + 46.25400600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "VALENCIENNES", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4235EVCP03;LFR4235EVCP02;LFR4235EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4235EVCP03;LFR4235EVCP02;LFR4235EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48811800000, + 50.36418200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "description": "VARCES-ALLIERES-ET-RISSET - Rue des Saules", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM38E38524005", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67637339139, + 45.09560193294 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*133*1*_*_", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "BIOT PARKING ROUMANILLE", + "ref:EU:EVSE": "FRA16PWIIZ13312;FRA16PWIIZ13311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07489700000, + 43.61833600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLL1ZOFKN8HGPF", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892611", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5740413000092582284" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30680300000, + 46.29997300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-27", + "charging_station:output": "50 kW;160 kW;22 kW", + "description": "Aldi - Épinay-sous-Sénart", + "socket:type2_combo:output": "160 kW", + "ref:EU:EVSE": "FRPD1PALDESN", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51290154477, + 48.69431812624 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "KUMQMM;30524", + "capacity": "2", + "description": "Rumilly, Corniche de la Néphaz;Réseau eborn/KUMQMM", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPKUMQMM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94101000000, + 45.86640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2022-06-22", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPBORBL", + "description": "Bordeaux - Novotel Bordeaux Lac", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56711100000, + 44.89088900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NICE - Massena", + "ref:EU:EVSE": "FRP07E060880061;FRP07E06088006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27069000000, + 43.69773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Chargepoint", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "451070197", + "description": "Borne 2;Borne 1", + "ref:EU:EVSE": "FRCPIE6685355;FRCPIE6685345", + "network": "Bornes CIVP", + "ref": "36d4830d-fc1f-4979-a8b2-c842fdfe8590;16805fed-ffdf-4120-973a-02f9f6ad4c2a", + "operator:email": "support.eu@chargepoint.com", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47000000000, + 43.45000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Cucq , Avenue de la libération;Easy Charge/HRHSOKTQFF", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "ref": "817095;HRHSOKTQFF", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRECHP2794167702434470130;FRECHPHRHSOKTQFF", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62321800000, + 50.48689000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP143018", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Epinal - ZA Le Saut le Cerf 2", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46750500000, + 48.19942100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5968749923760681782", + "network": "Freshmile France", + "description": "Freshmile France/LLSLIY7NL2L31T", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1017063" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96224800000, + 44.83984000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Avenue Bosquet 41", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-06-03", + "ref:EU:EVSE": "FRV75PPX0702", + "opening_hours": "24/7", + "ref": "FR*V75*PPX07*02", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30418578654, + 48.85829535733 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PNUWUA", + "operator:email": "roaming@freshmile.com", + "ref": "159364", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PPNUWUA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48624000000, + 48.52480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "description": "Volvo - Avignon", + "ref:EU:EVSE": "FRSSDPMAURINVOLVO841401", + "capacity": "11", + "operator:email": "support@driveco.com", + "start_date": "2023-05-03;2021-02-26", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87090300000, + 43.91773300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Tréveneuc - Rue de Tournebride", + "ref:EU:EVSE": "FRS22E22377001", + "charging_station:output": "22 kW", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87318300000, + 48.66332800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E170418;FRS18E170419", + "capacity": "2", + "network": "MODULO - THENIOUX - Rte. de Tours", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - THENIOUX - Rte. de Tours", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E170418;FRS18E170419", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93496600000, + 47.25470900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "cindyt@groupelge.com", + "network": "EVBOX", + "owner:ref:FR:SIREN": "432511897", + "operator": "AUTOPLUG", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "charging_station:output": "22 kW", + "ref": "79b25378-2dc2-4aae-93c1-1acfbadaa9a0", + "description": "CEMAFROID", + "start_date": "2022-07-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31754142943, + 48.76455446402 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/SWGZXGSK7K", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32101", + "ref:EU:EVSE": "FRS10P5817976358051289282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72117800000, + 48.50544600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8100401322;FRS81E8100401311;FRS81E8100401321", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-12-24", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "description": "ALBI - Stadium - Rue Colonnel Teyssier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18042673023, + 43.92083731149 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Fontaine Colette", + "ref": "FRIONE101300", + "ref:EU:EVSE": "FRIONE101300", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2018-12-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63136800000, + 47.16611900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44142A;FRS44E44142001", + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2021-04-28;2024-04-18", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Remouille - Bosselle;REMOUILLE - Rue De La Bosselle", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37631700000, + 47.05727100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH6198YFVGWBKKTW620N", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77336A;FRS77E77336001", + "description": "Neufmoutiers-en-Brie;NEUFMOUTIERS-EN-BRIE - Rue Du Général De Gaulle", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2016-03-08;2023-05-19", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83053800000, + 48.76883300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62765003", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SAINT-OMER - Rue de Dunkerque" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25957200000, + 50.75386400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS37E233162;FRS37E233163", + "network": "MODULO - Super Chargeur - CHÂTEAU RENAULT - A10", + "operator": "Modulo", + "description": "MODULO - Super Chargeur - CHÂTEAU RENAULT - A10", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E233162;FRS37E233163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98407030000, + 47.54256978000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "21868", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PYLFQUA", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/YLFQUA", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91855000000, + 47.61830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*151*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2022-04-14", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON15112;FRGLYPLYON15111", + "description": "SFL01 - FOCH - PROVINCES", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79861100000, + 45.74709800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEQUEDIN - Rue de Carpentras", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5932008", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59320*08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98508800000, + 50.62400100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-07-18;2022-09-19", + "description": "Speloncato", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSPELONCATO202261", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97973200000, + 42.56047000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6584335", + "description": "SONEPAR CONNECT AUCH 1", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CONNECT AUCH 1", + "ref:EU:EVSE": "FRCPIE6584335", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59817500000, + 43.66879300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "14", + "description": "Leclerc/UNE1XEQJFU", + "opening_hours": "24/7", + "ref": "892725", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1386456648710356437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975600000, + 49.36198700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Podensac | Place Gambetta", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "f3a5d0b2-a3fb-5e61-a2eb-c06eab724117", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35477200000, + 44.65034900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "ref": "630656ac-d7a1-580f-ae30-a837cf869e26", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "Paray-Vieille-Poste - Avenue Victor Hugo", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36313400000, + 48.71238700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-29", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Audi Bauer Paris Roissy", + "network": "Allego Audi Bauer Paris Roissy", + "ref:EU:EVSE": "FRALLEGO0020322;FRALLEGO0020321;FRALLEGO0020311", + "ref": "FRALLEGO0020322;FRALLEGO0020321;FRALLEGO0020311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52204800000, + 48.99624900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "Floirac", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "LFR4286EVCP03;LFR4286EVCP02;LFR4286EVCP04;LFR4286EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4286EVCP04;LFR4286EVCP03;LFR4286EVCP02;LFR4286EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51086300000, + 44.84488200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PWLAHPZSCZF", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Istres, Complexe Sportif Davini", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99258400000, + 43.47617900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2024-01-12", + "ref": "FRS88E184212;FRS88E184210", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - PLOMBIERES LES BAINS- Av. de Remiremont", + "network": "MODULO - PLOMBIERES LES BAINS- Av. de Remiremont", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E184212;FRS88E184210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46468408000, + 47.96691260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*25*1*_*_", + "description": "SPERACEDES - PARKING MAIRIE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-05-21", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ2512;FRA16PWIIZ2511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85685700000, + 43.64799100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LRH9XRGS4L", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "698945", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1734807947479328940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17455500000, + 49.25595400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMRBCSC", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "description": "Mr. Bricolage - Châtillon-sur-Chalaronne", + "start_date": "2024-01-26", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96415517791, + 46.11598419587 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPDJZ3SGBTQ4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/DJZ3SGBTQ4;Chabottes, Parking Haute Plaine", + "ref": "DJZ3SGBTQ4;30371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16910100000, + 44.64284000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "capacity": "5", + "charging_station:output": "12 kW;180 kW", + "amenity": "charging_station", + "ref": "986379", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3831082207901233289", + "operator:email": "support@evzen.com", + "description": "Norauto - Bornes publiques/62BE5F43-AA32-4378-8AAF-A297CF3F577C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36034400000, + 43.41381600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "operator": "IZIVIA", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR58841;FROTHPOTHR58831;FROTHPOTHR58821;FROTHPOTHR58811", + "capacity": "1", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*588*1*_*_;FR*SOD*S*OTHR*588*2*_*_;FR*SOD*S*OTHR*588*3*_*_;FR*SOD*S*OTHR*588*4*_*_", + "operator:email": "sav@izivia.com", + "description": "INTERMARCHE - MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43336600000, + 43.33241900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "description": "Habère-Poche, Route Vielle verde;Réseau eborn/BKO8NQUJ3G", + "ref:EU:EVSE": "FREBNPBKO8NQUJ3G;FREBNP6987095817999200621", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "BKO8NQUJ3G;598218", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47314700000, + 46.24829000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/JMKUVVPZI3", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "85976", + "ref:EU:EVSE": "FREBNPJMKUVVPZI3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06897500000, + 46.07763500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Campanile Besançon Châteauf.", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121033", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94324500000, + 47.21654100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/DFUDNBMUJ3", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "346397", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4576336945464323425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77454000000, + 49.12370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1316", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue de Tolbiac 147", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref": "FR*V75*PPX13*16", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35804880000, + 48.82608240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "682205", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/PDEDWPUBBC", + "ref:EU:EVSE": "FRFR1P6536538768343092371", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27436000000, + 49.84563700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW;24 kW", + "description": "Le Bois Masson (Camping Siblu) - Saint Jean de Monts", + "amenity": "charging_station", + "start_date": "2022-04-04;2022-05-24", + "ref:EU:EVSE": "FRSSDPSIBLU851601", + "capacity": "10", + "opening_hours": "Mo 09:30-12:30, Mo 14:00-17:30, Tu 09:30-12:30, Tu 14:00-17:30, We 09:30-12:30, We 14:00-17:30, Th 09:30-12:30, Th 14:00-17:30, Fr 09:30-12:30, Fr 14:00-17:30, Sa 09:30-12:30, Sa 14:00-17:30, Su 09:30-12:30, Su 14:00-17:30", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03117000000, + 46.78979600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "description": "900052", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PGASNYSALLEDESFETES", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60598800000, + 49.09337900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Broons-Rue du Belloir", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22020001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26198700000, + 48.31852300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-16", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78586008", + "description": "SARTROUVILLE - Police Municipale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15731633477, + 48.94055186504 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-09-30", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SCI_Callicanes", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE142" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63540400000, + 50.81250900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP4664475251396439542", + "network": "WAAT", + "charging_station:output": "11 kW;7.4 kW", + "amenity": "charging_station", + "ref": "805335", + "capacity": "12", + "description": "WAAT/FRWATLW8HW9BG1", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288000000, + 47.18605300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "network": "IONITY GMBH", + "capacity": "7", + "ref:EU:EVSE": "FRIONE448300", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Soissons Ouest", + "ref": "FRIONE448300", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30779900000, + 49.36619100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MONTMORT LUCY - Pl. Général de Gaulle", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E43905;FRS51E43904", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E43905;FRS51E43904", + "start_date": "2020-12-11", + "network": "MODULO - MONTMORT LUCY - Pl. Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80814100000, + 48.92467000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LUZ SAINT SAUVEUR - Parking Larraset", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65168001", + "start_date": "2022-02-21", + "charging_station:output": "11 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00492000000, + 42.87247000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-28;2023-01-25", + "owner:ref:FR:SIREN": "531681203;531681202;531681195;531681196;531681194;531681197;531681198;531681199;531681200;531681201", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF080374", + "network": "TotalEnergies Charge Rapide", + "capacity": "10", + "description": "RELAIS REIMS CHAMPAGNE SUD", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF080374", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24320400000, + 49.12005800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34165001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-09-27", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "MONTBAZIN - Ancien Chemin de Poussan - Cami de la Trape" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69626388889, + 43.51347220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21869", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/UUDAHB", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PUUDAHB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01824000000, + 47.87480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/GCQHR8X8AM", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "674210", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2950017368742361141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40102200000, + 49.14844100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30326001", + "network": "Reveo", + "description": "TAVEL - Parking Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69796500000, + 44.01375500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHERMESFITILIEU384901", + "start_date": "2021-03-12", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Hermès - Les Abrets-en-Dauphiné - Ateliers de Fitilieu", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56266400000, + 45.56483500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-23", + "network": "SCI CHEVY", + "ref": "FRC2P006502;FRC2P006501", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P006502;FRC2P006501", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "description": "SCI CHEVY", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77114570000, + 43.31936830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "charging_station:output": "12 kW", + "capacity": "2", + "ref:EU:EVSE": "FRLUMEHOTELPARCAVIGNON11", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "description": "HOTEL DU PARC AVIGNON EST ", + "ref": "d6f56ed3-1f68-4edd-880f-2410bc766baa", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94000000000, + 44.01000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "a5984112-de46-57dc-9c15-2975e166b700", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "MOBIVE | Singleryac | Peyrichoux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46317000000, + 44.73729000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE33SABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-11-02", + "charging_station:output": "24 kW;22 kW", + "description": "SAINT AUBIN DE MEDOC - Complexe sportif", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.73691000000, + 44.91392300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMEPOSTENANGIS4;FRBHMEHOTELDEVILLENANGIS1;FRBHMEHOTELDEVILLENANGIS2;FRBHMEHOTELDEVILLENANGIS3;FRBHMEHOTELDEVILLENANGIS4;FRBHMEPOSTENANGIS1;FRBHMEPOSTENANGIS2;FRBHMEPOSTENANGIS3", + "operator:email": "technique.borneco@gmail.com", + "start_date": "2023-06-01", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "description": "borneco hoteldevillenangis4;borneco hoteldevillenangis1;borneco hoteldevillenangis2;borneco hoteldevillenangis3;borneco postenangis1;borneco postenangis2;borneco postenangis3;borneco postenangis4", + "ref": "756454" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07341690000, + 48.56657450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "598128", + "description": "Leclerc/GHA5BJRBDD", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5607466131903982704" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38717100000, + 47.08218500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "Rousset, Avenue Louis Alard", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PXBHHTHGIG5", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62431000000, + 43.48090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7610417207198399549", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/OQWUDU187C", + "ref": "488883" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41496700000, + 47.75529500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89363723", + "start_date": "2023-04-05", + "operator": "R3", + "amenity": "charging_station", + "description": "R3 - Norauto Forbach", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87876700000, + 49.17323700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79669", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PWMNJBT", + "network": "Freshmile France", + "description": "Freshmile France/WMNJBT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56777300000, + 45.39286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUBTD", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Super U - Brunstatt-Didenheim", + "opening_hours": "24/7", + "capacity": "11", + "start_date": "2023-11-13;2023-10-24", + "charging_station:output": "50 kW;100 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32083415684, + 47.72682621340 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ZDR9Q4PKYJ", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "441138", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP5247165651239128331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88370200000, + 44.76987800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "ref": "914097", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP505213484206056952", + "charging_station:output": "240 kW;120 kW;22 kW", + "opening_hours": "24/7", + "network": "EVzen", + "description": "EVzen/2753ab24-ed7c-457f-b95b-24353872b8ae", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "120 kW;240 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87017000000, + 44.01887000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SEMVR", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*79*30*_*_;FR*SOD*S*OTHR*79*27*_*_;FR*SOD*S*OTHR*79*26*_*_;FR*SOD*S*OTHR*79*25*_*_;FR*SOD*S*OTHR*79*23*_*_;FR*SOD*S*OTHR*79*24*_*_;FR*SOD*S*OTHR*79*28*_*_;FR*SOD*S*OTHR*79*29*_*_", + "description": "SEMVR - ROUBAIX - PLAINE IMAGES", + "operator:email": "sav@izivia.com", + "start_date": "2020-10-02", + "ref:EU:EVSE": "FROTHPOTHR79301;FROTHPOTHR79291;FROTHPOTHR79281;FROTHPOTHR79271;FROTHPOTHR79241;FROTHPOTHR79231;FROTHPOTHR79251;FROTHPOTHR79261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15671300000, + 50.70008700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Bas -En-Basset, Rue du Marais;Réseau eborn/WRN07GJM7H", + "ref:EU:EVSE": "FREBNP427765370431845428;FREBNPWRN07GJM7H", + "start_date": "2020-11-20", + "ref": "346967;WRN07GJM7H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11404000000, + 45.30546000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30617;lapalisseve", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPLAPALISSEVE", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Lapalisse, Vérités;Réseau eborn/lapalisseve", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61178000000, + 46.24630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR39511;FROTHPOTHR39512", + "start_date": "2022-05-10", + "network": "MAIRIE DE COURRIERES", + "description": "MAIRIE DE COURRIERES - BASLY", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*395*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94664000000, + 50.45641100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Sa 09:00-12:00,Th,Mo,Sa,Fr,We,Tu 14:00-18:00,Mo,We,Fr,Tu,Th 08:30-12:00", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P81885986380015706", + "description": "Freshmile France/D63HYFBJKD", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref": "482004", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26565400000, + 43.59051000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Saint-Dié-des-Vosges, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP30251", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93653259000, + 48.29337153000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P592204634107382135", + "network": "Freshmile France", + "ref": "1179732", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLYEHP63Q157QA", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14461800000, + 49.09139300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01865", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AMP |Rue André Bailet - parking", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRTCBP01865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46559600000, + 43.35632200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626231", + "description": "Freshmile France/QKJMLF9CKH", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5866713255814789724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715500000, + 46.15516900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-04-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22209001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Beaussais-sur-Mer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14478800000, + 48.58027100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "50785", + "owner:ref:FR:SIREN": "317191617", + "network": " MAZDA MAUBEUGE- SARL FRANCO ", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30,Sat 08:00-17:30", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Mazda - Maubeuge - 22kW AC", + "ref:EU:EVSE": "FRZMAE22AC50785", + "start_date": "2021-01-06", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96526480000, + 50.26697870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "Groupe_Element_bureau", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-07-04", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE361" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16708200000, + 50.60688600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MEZIERES-SUR-SEINE - Rue Maurice Fricotte", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78402001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79676390000, + 48.96170560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE454156;FRIOYE454153;FRIOYE454152;FRIOYE454151;FRIOYE454116;FRIOYE454112;FRIOYE454111;FRIOYE454110;FRIOYE454107;FRIOYE454105;FRIOYE454104;FRIOYE454101;FRIOYE454102;FRIOYE454103;FRIOYE454106;FRIOYE454108;FRIOYE454109;FRIOYE454113;FRIOYE454114;FRIOYE454115;FRIOYE454154;FRIOYE454155", + "opening_hours": "24/7", + "capacity": "22", + "description": "Herbiers", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE454156;FRIOYE454155;FRIOYE454154;FRIOYE454153;FRIOYE454152;FRIOYE454151;FRIOYE454116;FRIOYE454115;FRIOYE454114;FRIOYE454113;FRIOYE454112;FRIOYE454110;FRIOYE454105;FRIOYE454103;FRIOYE454101;FRIOYE454102;FRIOYE454104;FRIOYE454106;FRIOYE454107;FRIOYE454108;FRIOYE454109;FRIOYE454111", + "network": "Herbiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04838300000, + 46.90419200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Laval - Bres", + "ref:EU:EVSE": "FRS53P53130F", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-07-26", + "network": "TEM53", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78308250000, + 48.08008850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-05", + "description": "ESPIRA SUR AGLY - Chemin De L'Estagel", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS66E66069001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83602900000, + 42.77545800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20872660000, + 49.97177470000 + ], + [ + 1.20890310000, + 49.97140260000 + ], + [ + 1.20893840000, + 49.97135410000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Reims", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2024-01-09", + "ref": "FRIENE011602;FRIENE011601", + "ref:EU:EVSE": "FRIENE011602;FRIENE011601", + "description": "Reims" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06784069000, + 49.23758823000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35115001B1", + "description": "FOUGERES - 1 place de la grande douve (Parking des douves) ", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20111800000, + 48.35320700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61442A", + "ref": "SE61-ASPRES-001", + "description": "LES ASPRES - Rue du 1er Octobre 1959" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60149880000, + 48.68928540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GQZHCENVFB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7432787593297057102", + "charging_station:output": "22 kW", + "ref": "694220", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89991200000, + 48.38729600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "start_date": "2018-08-24", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "GLTPXT;94295", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PGLTPXT", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "description": "Belberaud, Chemin de la Briquetterie;Roulez Électrique En Haute-Garonne/GLTPXT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56636000000, + 43.50630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92050007", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-05-18", + "capacity": "0", + "network": "SIPPEREC", + "description": "NANTERRE - Rue Gambetta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19946900000, + 48.88805600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000509", + "network": "Mon petit entrepôt - 69002", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRCG0E000509", + "start_date": "2023-02-03", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Mon petit entrepôt - 69002", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93738200000, + 45.75944600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE1821;FRM06PNICE1822", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "charging_station:output": "22 kW", + "description": "NICE - GARE RIQUIER RP", + "ref": "FR*SOD*S*NICE*18*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29039000000, + 43.70507000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1abaa509-98d8-5692-8e71-05594c7192d7", + "operator": "200__TE47", + "description": "MOBIVE | Le Passage | Rue Anatole France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59740000000, + 44.19045300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*32*6*_*_;FR*SOD*S*SIGE*32*4*_*_;FR*SOD*S*SIGE*32*1*_*_;FR*SOD*S*SIGE*32*2*_*_;FR*SOD*S*SIGE*32*3*_*_;FR*SOD*S*SIGE*32*5*_*_", + "start_date": "2020-09-29", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3251;FRSIGPSIGE3211;FRSIGPSIGE3221;FRSIGPSIGE3231;FRSIGPSIGE3241;FRSIGPSIGE3261", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "description": "SIGEIF - RUE WOLFENBUTTEL SEVRES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21385293265, + 48.81414298095 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Village Le Rouret Pierre & Vacances - Grospierres", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS231121;FRBMPS231122", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "ref": "231121;231122", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27687400000, + 44.38067700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3408EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3408EVCP01", + "description": "MONTREUIL Rosny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46789500000, + 48.87059100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Capbreton | Place des Basques", + "capacity": "2", + "amenity": "charging_station", + "ref": "1505be8d-72e0-55cc-aaa1-62e2668848a7", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44173100000, + 43.65135500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0606ab81-6e63-5b04-894e-e483e1c7851d", + "description": "Les Ulis - Avenue de l'Aubrac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16758500000, + 48.67850900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "2.3 kW;22.08 kW", + "description": "RUE DU GENERAL EXELMANS - VELIZY", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP78140VLZEXELMANS", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P78140*VLZ*EXELMANS", + "start_date": "2022-11-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20151700000, + 48.78124600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "capacity": "12", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4000EVCP05;LFR4000EVCP04;LFR4000EVCP03;LFR4000EVCP02;LFR4000EVCP06;LFR4000EVCP01", + "ref": "LFR4000EVCP05;LFR4000EVCP04;LFR4000EVCP03;LFR4000EVCP02;LFR4000EVCP06;LFR4000EVCP01", + "description": "PEZENAS - Branly" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41195900000, + 43.45388500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW;120 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMBAP", + "capacity": "9", + "start_date": "2024-01-19;2023-06-09;2023-05-05", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "description": "Intermarché - Bapaume", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85322893618, + 50.09936087533 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "298567;XFOSNUYPUI", + "start_date": "2020-07-22", + "description": "Réseau eborn/XFOSNUYPUI;Serres, Rue Marius Meyere", + "ref:EU:EVSE": "FREBNPXFOSNUYPUI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71816000000, + 44.42870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRETIP57672J", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "start_date": "2023-12-15", + "description": "e-Totem - Thionville Parc de Volkrange", + "opening_hours": "24/7", + "ref": "FRETIP57672J", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08814120000, + 49.36065700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04;2024-10-01", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Grenoble Estacade - PARK GRENOBLE ALPES METROPOLE", + "ref:EU:EVSE": "FRP01E381850011;FRP01E38185001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71679440000, + 45.18917670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-10-03", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT385001", + "description": "Carrefour Market - Voiron Colombier", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58332900000, + 45.36585600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/QFSWJ7JX52;Roanne, Parking gymnase boulevard de belgique", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPQFSWJ7JX52", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "QFSWJ7JX52;31621", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07638400000, + 46.04546500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ES/ EGELHOF-HOLDING - BREITENBACH", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*514*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ES B2B", + "start_date": "2022-11-10", + "ref:EU:EVSE": "FROTHPOTHR51412;FROTHPOTHR51411", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29103700000, + 48.36047800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BORNE CAMPING LE RIVAGE", + "start_date": "2023-05-03", + "description": "BORNE CAMPING LE RIVAGE", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6718385", + "ref:EU:EVSE": "FRCPIE6718385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30317300000, + 49.57907400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSENS2YS1E664", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "1042140", + "ref:EU:EVSE": "FRFR1P8097670902713618167", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36884900000, + 43.54224100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "start_date": "2023-04-17", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "description": "Pierre Rousseau - Montivilliers", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10079395;FRUBIE10076984;FRUBIE10076688;FRUBIE10077325;FRUBIE10079601;FRUBIE10080710", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18938900000, + 49.54341700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1009290", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8927151500151444135", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/moutiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53287000000, + 45.48340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "240 kW;180 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-05-17", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "180 kW;240 kW", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRTLSE31555052", + "description": "TOULOUSE - Rue Léon Joulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41888400000, + 43.54978400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "441033", + "charging_station:output": "22 kW", + "description": "Freshmile France/T8NDNATOEV", + "ref:EU:EVSE": "FRFR1P1169790338770728872", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73905000000, + 48.52304800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "456804", + "ref:EU:EVSE": "FRS14P111855807912692145", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/CTHD3M2P9Z", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86972800000, + 49.24200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS12E12092001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-06-29", + "charging_station:output": "22 kW", + "description": "DURENQUE - Avenue du Lagast - Square Emilien Coste", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61497600000, + 44.10950200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLQXZAAQRS", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1073145", + "ref:EU:EVSE": "FRWA3P3199337114699207050", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89163700000, + 50.42106100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "NOYANT - RD 766 Mairie;OuestCharge - Diva Sp - Noyant - Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49228001;FRS49P49228A", + "charging_station:output": "22 kW", + "start_date": "2021-04-15;2024-04-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11514500000, + 47.51269800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS72E72061001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-11-22", + "charging_station:output": "50 kW;43 kW", + "description": "LA CHAPELLE D'ALIGNE - Avenue du Poirier Rouge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23810100000, + 47.73165390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20618570000, + 49.97098800000 + ], + [ + 1.20608290000, + 49.97119780000 + ], + [ + 1.20607140000, + 49.97124570000 + ], + [ + 1.20606660000, + 49.97146720000 + ], + [ + 1.20606190000, + 49.97148940000 + ], + [ + 1.20579250000, + 49.97166440000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59581001", + "charging_station:output": "22 kW", + "description": "STEENWERCK - Rue De Nieppe", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78045500000, + 50.70099800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-16", + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord - 2", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44184B", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21035100000, + 47.28735100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63272A", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref": "518384", + "amenity": "charging_station", + "start_date": "2022-10-19", + "description": "SIEG63 - ePremium - Pérignat les Sarliève - République;SIEG 63/FR*S63*P63272*A", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13956200000, + 45.74094400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LIMONT-FONTAINE - Place Publique", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2024-05-03", + "ref:EU:EVSE": "FRH02E59351001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92277700000, + 50.21917200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34013001", + "charging_station:output": "22 kW", + "start_date": "2024-06-24", + "network": "Reveo", + "description": "Aspiran - Parking Pôle Médical" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44744100000, + 43.56688500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "CRETEIL - Rue de Mesly", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94028007", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2022-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45983537934, + 48.79195862387 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GATTIERES - ROUTE DE LA MANDA", + "ref": "FR*SOD*S*NICE*298*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE29812;FRM06PNICE29811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17541432818, + 43.76199339113 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "01faf0d3-5dc6-581d-92a9-8b6b8a784596", + "opening_hours": "24/7", + "description": "MOBIVE | Villamblard | Avenue Edouard depuy", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53987500000, + 45.02186600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-25", + "ref:EU:EVSE": "FRSIGPSIGE42511;FRSIGPSIGE42512", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*425*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 3 RUE DE LEGLISE PARKING DE LA PLACE JENTEL - MERIEL", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20792200000, + 49.07854800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9005542;FRALLEGO9004112;FRALLEGO9004111;FRALLEGO9004101;FRALLEGO9004102;FRALLEGO9005541;FRALLEGO9005631;FRALLEGO9005632", + "start_date": "2022-12-08", + "capacity": "8", + "description": "Allego Carrefour Perpignan Roussillon", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9005542;FRALLEGO9004112;FRALLEGO9004111;FRALLEGO9004101;FRALLEGO9004102;FRALLEGO9005541;FRALLEGO9005631;FRALLEGO9005632", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Perpignan Roussillon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94479800000, + 42.70144900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MARZY Aviation", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3230EVCP01", + "ref": "LFR3230EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10799000000, + 46.99927600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "cce8eb40-54ce-5ea1-b903-ac2302089c8c", + "capacity": "2", + "description": "MOBIVE | Oloron Sainte Marie | Parking de la Gare", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61211700000, + 43.19435100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VENASQUE - D28", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "92ba8d7e-1a08-5001-b545-7fdbe534863f", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14737500000, + 43.99620700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CERNAY-LA-VILLE - Rue des Moulins", + "ref:EU:EVSE": "FRA05E78128001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97418190000, + 48.67493610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "LA ROCHE SUR YON Petit", + "ref": "LFR3545EVCP01;LFR3545EVCP02", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3545EVCP01;LFR3545EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43502100000, + 46.64701400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Servas", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-11;2023-10-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMSVS", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16248737432, + 46.12845969979 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "31870;F36WUWT4H7", + "description": "Réseau eborn/F36WUWT4H7;Montbrun-Les-Bains, La Condamine", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPF36WUWT4H7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44179200000, + 44.17443700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "operator": "SPIE CITYNETWORKS", + "network": "e-Vadea", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVAP01195A", + "operator:email": "assistance-commerciale@e-vadea.fr", + "opening_hours": "24/7", + "start_date": "2022-12-23;2022-12-21", + "description": "e-Vadea - Jasseron - A40 Teyssonge", + "charging_station:output": "22 kW;300 kW;50 kW;43 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923000, + 46.20556621000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;100 kW;188 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCORVSL", + "start_date": "2023-03-21;2023-03-22", + "amenity": "charging_station", + "description": "Cora - Vesoul", + "opening_hours": "24/7", + "capacity": "11", + "operator": "Power Dot France", + "charging_station:output": "50 kW;100 kW;188 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17167240000, + 47.62620120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT535001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-06-04", + "description": "Carrefour Market - Ernee", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92563000000, + 48.29214700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42218AA", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218AA", + "description": "SEMOB BHT", + "start_date": "2019-03-02", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38776700000, + 45.45321900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG29621;FROTHPIZIG29571;FROTHPIZIG29561;FROTHPIZIG29551;FROTHPIZIG29541;FROTHPIZIG29521;FROTHPIZIG29511;FROTHPIZIG29461;FROTHPIZIG29451;FROTHPIZIG29431;FROTHPIZIG29411;FROTHPIZIG29351;FROTHPIZIG29341;FROTHPIZIG29331;FROTHPIZIG29321;FROTHPIZIG29311;FROTHPIZIG29361;FROTHPIZIG29371;FROTHPIZIG29381;FROTHPIZIG29421;FROTHPIZIG29441;FROTHPIZIG29471;FROTHPIZIG29481;FROTHPIZIG29491;FROTHPIZIG29531;FROTHPIZIG29581;FROTHPIZIG29611;FROTHPIZIG29631", + "start_date": "2021-08-10;2021-08-05", + "operator:email": "sav@izivia.com", + "description": "CNPE CIVAUX - BEAT;CNPE CIVAUX - BIS OUEST;CNPE CIVAUX - RIE;CNPE CIVAUX - BEX", + "ref": "FR*SOD*S*IZIG*296*1*_*_;FR*SOD*S*IZIG*295*5*_*_;FR*SOD*S*IZIG*295*3*_*_;FR*SOD*S*IZIG*295*2*_*_;FR*SOD*S*IZIG*294*7*_*_;FR*SOD*S*IZIG*294*6*_*_;FR*SOD*S*IZIG*294*2*_*_;FR*SOD*S*IZIG*294*1*_*_;FR*SOD*S*IZIG*293*6*_*_;FR*SOD*S*IZIG*293*5*_*_;FR*SOD*S*IZIG*293*4*_*_;FR*SOD*S*IZIG*293*2*_*_;FR*SOD*S*IZIG*293*1*_*_;FR*SOD*S*IZIG*293*3*_*_;FR*SOD*S*IZIG*293*7*_*_;FR*SOD*S*IZIG*293*8*_*_;FR*SOD*S*IZIG*294*3*_*_;FR*SOD*S*IZIG*294*4*_*_;FR*SOD*S*IZIG*294*5*_*_;FR*SOD*S*IZIG*294*8*_*_;FR*SOD*S*IZIG*294*9*_*_;FR*SOD*S*IZIG*295*1*_*_;FR*SOD*S*IZIG*295*4*_*_;FR*SOD*S*IZIG*295*6*_*_;FR*SOD*S*IZIG*295*7*_*_;FR*SOD*S*IZIG*295*8*_*_;FR*SOD*S*IZIG*296*2*_*_;FR*SOD*S*IZIG*296*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64898000000, + 46.46227000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6845475", + "start_date": "2024-01-12", + "capacity": "2", + "amenity": "charging_station", + "description": "LA NORMA BORNE MEYER", + "opening_hours": "24/7", + "network": "LA NORMA BORNE MEYER", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6845475" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70255900000, + 45.20143000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "94253", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PXZMEWP", + "description": "Freshmile France/XZMEWP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56509000000, + 47.79270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Première Classe Troyes-Sud", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10239000000, + 48.24689000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529067", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1681445398548869802", + "description": "Freshmile/A1YA9QASHE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52677500000, + 47.39598200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Saint-Gaudens, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP20265", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76697500000, + 43.11658100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8637048799341536503", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/NLZDH1ZLAJ", + "ref": "515078", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03189300000, + 42.57131000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6693714951339388602", + "capacity": "3", + "description": "MobiSDEC/TRYMDJ3CBV", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW", + "ref": "510644" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49477100000, + 49.07640300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "457482", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/J69U6QU8AD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8677145436029994324" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16571600000, + 49.12766600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P7122987487397827436", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLEMXMAEOR", + "operator:email": "exploitation@waat.fr", + "ref": "1128129" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10712700000, + 47.12134300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHERBOURG EN COTENTIN - Rue de l'Ile de France", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-04-27", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P501292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63400300000, + 49.62757500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "description": "LISLE SUR TARN - Allée Des Promenades", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81145001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80885400000, + 43.85410600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF059472", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRHPCPNF059472", + "network": "TotalEnergies Charge Rapide", + "start_date": "2022-09-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "NARBONNE VINASSAN SUD", + "owner:ref:FR:SIREN": "531680446;531680448;531680445;531680447;531680449;531680450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09250000000, + 43.21620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HURES LA PARADE - D986", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS48E48074001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35398600000, + 44.24510700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PAVMWS0NNYA", + "network": "Morbihan Energies", + "capacity": "2", + "description": "Josselin - Place Georges Lamour", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "start_date": "2000-01-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54946112322, + 47.95373010356 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOULOGNE-SUR-MER - Rue Ferdinand Buisson", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62160005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60939100000, + 50.71523900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Saint Thois-Rue du Stade", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2926700", + "start_date": "2023-03-17", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.88542700000, + 48.16481800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PZSBMZW", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/ZSBMZW", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "21870" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94894000000, + 47.63890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "MONTS SUR GUESNES-1-2;MONTS SUR GUESNES-1-1", + "ref:EU:EVSE": "FRLMSE12346052061;FRLMSE12346052051;FRLMSE12346052052;FRLMSE12346052062", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2019-02-26", + "ref": "B073", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21306000000, + 46.91925000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93030A", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2022-02-23", + "opening_hours": "24/7", + "ref": "484778", + "description": "Métropolis/FR*MGP*P93030*A;Metropolis - Citadine - Dugny - Gabriel Péri", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41653800000, + 48.95449200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BRUNOY - Place Gambetta", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE91114008", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48729612706, + 48.70126542047 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "1021026", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP1590096397811354853", + "description": "Atlante/FRATLFR00606", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12992800000, + 44.61027700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "owner:ref:FR:SIREN": "668502966", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "description": "Würth Brignais", + "ref:EU:EVSE": "FRLMSE10000882661;FRLMSE10000882651", + "start_date": "2022-08-18", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77321000000, + 45.67240200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-16;2021-11-19", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRM59E595600011;FRM59E59560001", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "capacity": "10", + "network": "pass pass électrique", + "description": "SECLIN - Rue Pierre Sémard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03377500000, + 50.54721400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES SABLES-D'OLONNE - Quai Albert Prouteauport Olonna", + "ref:EU:EVSE": "FRS85E85194004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79613000000, + 46.50195000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-11-27", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSSTEGV", + "description": "SAINT EGREVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66424000000, + 45.23843000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*47*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "IZIVIA | MARSEILLE 08 - PROM. GEORGES POMPIDOU", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZMPMAMP4711;FRIZMPMAMP4712", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "start_date": "2023-10-31", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37385100000, + 43.26403800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-09-10", + "opening_hours": "24/7", + "description": "Match - Lure", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PMATLUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50178752830, + 47.67888466328 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32764;SNSM4WFCED", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSNSM4WFCED", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Montbonnot-Saint-Martin, Rue du Général de Gaulle;Réseau eborn/SNSM4WFCED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "capacity": "2;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80300500000, + 45.22697700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/f4078414-a6e8-4417-8508-eeb89cda43f5", + "amenity": "charging_station", + "capacity": "12", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3649313403494028401", + "ref": "1022121", + "charging_station:output": "22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88565000000, + 43.60792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRPD1PIBISLO", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Ibis Budget - Lons-le-Saunier", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55730706631, + 46.69433601502 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPCANHER", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-06-11", + "ref": "CANHER;48352", + "description": "Alixan, Aire de Bayanne;Réseau eborn/CANHER", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99937000000, + 44.99950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "start_date": "2023-12-07", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP31396A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - CARREFOUR CONTACT NAILLOUX", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP31396A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62251300000, + 43.36575700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - MIRAMBEAU", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*204*8*_*_;FR*SOD*S*OTHR*204*7*_*_;FR*SOD*S*OTHR*204*6*_*_;FR*SOD*S*OTHR*204*5*_*_;FR*SOD*S*OTHR*204*3*_*_;FR*SOD*S*OTHR*204*13*_*_;FR*SOD*S*OTHR*204*12*_*_;FR*SOD*S*OTHR*204*11*_*_;FR*SOD*S*OTHR*204*1*_*_;FR*SOD*S*OTHR*204*10*_*_;FR*SOD*S*OTHR*204*14*_*_;FR*SOD*S*OTHR*204*15*_*_;FR*SOD*S*OTHR*204*2*_*_;FR*SOD*S*OTHR*204*4*_*_;FR*SOD*S*OTHR*204*9*_*_", + "ref:EU:EVSE": "FROTHPOTHR20491;FROTHPOTHR20481;FROTHPOTHR20471;FROTHPOTHR20451;FROTHPOTHR20431;FROTHPOTHR20421;FROTHPOTHR204141;FROTHPOTHR204121;FROTHPOTHR20411;FROTHPOTHR204101;FROTHPOTHR204111;FROTHPOTHR204131;FROTHPOTHR204151;FROTHPOTHR20441;FROTHPOTHR20461", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-07-01", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57051100000, + 45.37727100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-11-28", + "ref:EU:EVSE": "FRCPSPCAPS312;FRCPSPCAPS311", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "description": "GOMETZ - SALLE BARBARA", + "ref": "FR*SOD*S*CAPS*3*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13264600000, + 48.67747900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5890091570830562636", + "network": "Freshmile France", + "ref": "892407", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJOBYNIMYFIQW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97824500000, + 46.79676900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref": "951341", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVISP952171295510686348", + "description": "ENRGETICA/43e440ca-54ae-47a1-b8a3-b28c18e880f9", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07900900000, + 43.63448800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3600441863567292904", + "capacity": "2", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "ref": "521285", + "network": "Freshmile France", + "description": "Freshmile France/GK6DXMJKPU", + "opening_hours": "Sa 08:00-12:00,Mo,Tu,We,Th,Fr 08:00-19:00,Sa 14:00-18:00", + "socket:type2_combo:output": "120 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54635000000, + 48.45455200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;225 kW", + "description": "ABB T54 VW Fontaine;ALPITRONIC 225kW VW Fontaine", + "start_date": "2022-07-22;2022-12-19", + "charging_station:output": "225 kW;50 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00;24/7", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "ref:EU:EVSE": "FRSWSE1000081565;FRSWSE1000098811", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000081565;1000098811", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67881800000, + 45.19183100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QEVDN4ZT1R", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P118544830839394253", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "412091", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21648600000, + 49.11128200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Alpine résidences Courchevel - Manali Lodge", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMANALILODGE731201", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65487100000, + 45.41695700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LUISANT - Rue Jean Perrin", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "description": "MODULO - LUISANT - Rue Jean Perrin", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E137353", + "ref": "FRS28E137353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45819000000, + 48.41724900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking MANUBOB", + "capacity": "2", + "ref": "EVB-P21211626", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "contact@manubob-industrie.fr", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "401833322", + "network": "MANUBOB", + "start_date": "2022-01-31", + "opening_hours": "Mo-Fr 8:30-17:00", + "operator": "MANUBOB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10256220000, + 50.77898610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P8413715373369469792", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/UYDC6UXCXN", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "39809", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06831100000, + 48.29443000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP2258199011616815296", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "538361", + "description": "WAAT/FRWATLADKDGTVM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39848700000, + 48.91010500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-03", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "portdelille-bethune", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE44" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66971280000, + 50.53738090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VALENCE D'ALBIGEOIS - Chemin De Ginestous Salle Communale", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81308001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40204700000, + 44.02026600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "start_date": "2021-12-15", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "INTERPARKING | PARKING MENTON BASTION", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMBA", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRIPKPMBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50622410000, + 43.77467020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49092B;FRS49E49092002", + "start_date": "2024-04-17;2024-03-27;2021-04-21", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "CHEMILLE - Place des Perrocheres;OuestCharge - Diva Sp - Chemille - Perrocheres", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72816100000, + 47.20975400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PDJZAYQ", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "102362", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/DJZAYQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75644000000, + 49.09510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH13E62217001", + "network": "pass pass électrique", + "description": "CAUCHY A LA TOUR - rue de Floringhem" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44717800000, + 50.50222300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30189003", + "start_date": "2022-01-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NIMES - Gauche - Ancienne Route De Générac", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35999512672, + 43.81876000888 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "description": "Mobilité électrique 56/CYTRZG", + "ref": "25052", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRS56PCYTRZG", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60098000000, + 48.14100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346396731;FRLMSE12346396741", + "charging_station:output": "18 kW", + "description": "CHOUPPES-1-1;CHOUPPES-1-2", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-03-10", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17276000000, + 46.81292000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRMGPP94080F", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Métropolis/FR*MGP*P94080*F", + "ref": "348974", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44084600000, + 48.85071100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*134*4*_*_;FR*SOD*S*SIGE*134*3*_*_;FR*SOD*S*SIGE*134*2*_*_;FR*SOD*S*SIGE*134*1*_*_;FR*SOD*S*SIGE*134*5*_*_", + "capacity": "1", + "network": "SIGEIF", + "start_date": "2021-06-15", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE13451;FRSIGPSIGE13441;FRSIGPSIGE13421;FRSIGPSIGE13411;FRSIGPSIGE13431", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 4 CHEMIN DES PETITS MARAIS - GENNEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30351100000, + 48.94626600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78490006", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "description": "PLAISIR - Rue Pablo Picasso", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96388602297, + 48.80436171998 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89594915", + "description": "ENGIE Vianeo - Hôtel Campanile Douai - Quincy", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05792600000, + 50.38360900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "description": "MOBIVE | Courcome | Place de L'Ancienne Mairie", + "ref": "40d3e258-5be9-5f6c-8edb-1c29a949753c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13425200000, + 45.98771700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-16", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE76YVCA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "Citroën IDF NORD - YERVILLE - TILQUIN AUTOMOBILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88192900000, + 49.66432100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9990152;FRALLEGO9990102;FRALLEGO9003121;FRALLEGO9002582;FRALLEGO9002581;FRALLEGO9002092;FRALLEGO9002091;FRALLEGO9002583;FRALLEGO9003122;FRALLEGO9990101;FRALLEGO9990151", + "amenity": "charging_station", + "ref": "FRALLEGO9990152;FRALLEGO9990102;FRALLEGO9003121;FRALLEGO9002582;FRALLEGO9002581;FRALLEGO9002092;FRALLEGO9002091;FRALLEGO9002583;FRALLEGO9003122;FRALLEGO9990101;FRALLEGO9990151", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Tours", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "network": "Allego Carrefour Tours", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71442800000, + 47.37893400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3798EVCP02;LFR3798EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3798EVCP02;LFR3798EVCP01", + "description": "VALENTIGNEY Libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84176000000, + 47.46233100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Toulouse - Maraichers", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31555009", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46442200000, + 43.56740100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPI87DFGGXNC", + "network": "Réseau eborn", + "description": "Réseau eborn/I87DFGGXNC", + "opening_hours": "24/7", + "ref": "31630", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05725700000, + 46.03848900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "466089", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P356515648105932404", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LT9KFZGHYY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35406100000, + 49.08576700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-09-15", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "PARIS - Magenta - Niveau -6", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "74", + "ref:EU:EVSE": "FRP07E751100065;FRP07E751100063;FRP07E751100062;FRP07E75110006;FRP07E751100061;FRP07E751100064;FRP07E751100066;FRP07E751100067" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35482800000, + 48.87544100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "78600", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/ZACDZS", + "ref:EU:EVSE": "FREBNP2451952711736741940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29439200000, + 44.45714200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/6584154ce63c1b001b0572b9", + "ref:EU:EVSE": "FREFLP4428088762083434263", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "1.4 kW", + "ref": "1073475", + "operator:email": "roaming-dev@road.io", + "opening_hours": "Th,Sa,Tu,We,Mo,Fr,Su 08:00-18:00", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31169000000, + 48.88581600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking CH Roubaix P1 visiteurs - EFFIA", + "ref:EU:EVSE": "FRP01E59512001;FRP01E595120011", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-07-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16830900000, + 50.67867000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT DREUX", + "description": "SONEPAR CONNECT DREUX", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6612085", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6612085", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35600100000, + 48.75267800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/B5WUOR3QQJ;La Celle, Rue De La Republique", + "ref:EU:EVSE": "FREBNB5WUOR3QQJ;FREBNPB5WUOR3QQJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "B5WUOR3QQJ;79198", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03921500000, + 43.39442000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/s570525", + "ref:EU:EVSE": "FRWA2P2955065080575031329", + "charging_station:output": "22 kW", + "ref": "1181745", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08056700000, + 45.04994500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "22 kW;60 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4297012518099086745", + "capacity": "3", + "opening_hours": "24/7", + "ref": "578843", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DP1GJBV0RC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73946400000, + 48.50178300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "3", + "description": "RIESTER HYUNDAI - SAINT MAXIMIN", + "charging_station:output": "50 kW;43 kW", + "ref": "FRTCBP00700", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "RIESTER SAINT MAXIMIN", + "owner:ref:FR:SIREN": "805089158", + "ref:EU:EVSE": "FRTCBP00700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46805349597, + 49.23135431941 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "756990", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/QGKCHS3PHE", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8584709902448750141", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50744400000, + 47.60829200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPMAURINMERCEDES037001", + "network": "DRIVECO", + "start_date": "2020-06-18", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:30, Mo 13:30-19:00, Tu 08:00-12:30, Tu 13:30-19:00, We 08:00-12:30, We 13:30-19:00, Th 08:00-12:30, Th 13:30-19:00, Fr 08:00-12:30, Fr 13:30-19:00, Sa 09:00-12:30, Sa 13:30-18:00", + "capacity": "3", + "description": "Mercedes - Bellerive", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40135500000, + 46.12573400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2906000", + "description": "Gouesnach-Route de Bénodet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.11575400000, + 47.91077800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2018-07-18", + "ref:EU:EVSE": "FRS11E11012001", + "network": "Reveo", + "description": "ARGELIERS - Square Marcelin Albert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91021944444, + 43.31129420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC129718;FRZP1PEAC129707;FRZP1PEAC129706;FRZP1PEAC129711", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "f7bc4d77-4dda-4c30-87ea-b4a1c00c58fd", + "description": "Novotel Maffliers - 22 kW AC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "GHO Maffliers", + "owner:ref:FR:SIREN": "819283508", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30417279000, + 49.07442717000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - DOUZY - Pl. Verte", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E35886;FRS08E35885", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - DOUZY - Pl. Verte", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-07-22", + "ref:EU:EVSE": "FRS08E35886;FRS08E35885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04400000000, + 49.66950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PWBRCYE", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "86669", + "network": "FDE 80", + "description": "FDE 80/WBRCYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54923000000, + 50.09050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*207*1*_*_", + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRIZFPFAST20713;FRIZFPFAST20712;FRIZFPFAST20711", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-08-08", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - PRADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43395350000, + 42.62275710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44P44001A", + "operator": "SPIE CITYNETWORKS", + "start_date": "2021-04-29", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Abbaretz - Mairie", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53196800000, + 47.55397300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH612745HQQ6N39DZXC6", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "BOISSISE-LE-ROI - Rue De La Planche Coutant;Boissise-le-Roi - Orgenoy", + "ref:EU:EVSE": "FRS77E77040002;FRS77P77040B", + "start_date": "2023-06-02;2015-05-29", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56181600000, + 48.50313900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000085945", + "amenity": "charging_station", + "operator": "GREENSPOT", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "description": "CREDIT AGRICOLE ANDERNOS", + "start_date": "2024-06-03", + "network": "CREDIT AGRICOLE ANDERNOS", + "owner:ref:FR:SIREN": "434651246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07305807670, + 44.75842191006 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - VALLERES - Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E219774;FRS37E219771", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219774;FRS37E219771", + "description": "MODULO - VALLERES - Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47377385000, + 47.31067554000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/NCDSEP", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PNCDSEP", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "294404", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09225000000, + 48.02810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "Institut de Cancérologie de Lorraine", + "ref:EU:EVSE": "FRG10P54547A", + "network": "Institut de Cancérologie de Lorraine", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-08-14", + "ref": "FRG10P54547A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14408784661, + 48.64638121346 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref": "22f50b31-c319-5f43-90b7-1f86e89c51db", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Saint-Privat | Rue des Tilleuls", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09836600000, + 45.13715100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-08-17", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*25*1*_*_", + "description": "SIGEIF - 12 AVENUE DU DOCTEUR ANTOINE LACROIX - LE KREMLIN-BICETRE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE2511;FRSIGPSIGE2512", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35707000000, + 48.81287000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "description": "Move In Pure/FXETRZ", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRCN1PFXETRZ", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref": "23997", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75584000000, + 45.38060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/O3TJBYM5LC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446774", + "ref:EU:EVSE": "FRLE2P5503083731139036222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79861600000, + 50.54055500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS33PMB3315111;Non concerné;FRS33PMB3315112;FRS33PMB3315113;FRS33PMB3315114", + "amenity": "charging_station", + "description": "EYRANS - LIEU-DIT PONTET;MOBIVE | Eyrans | Lieu-Dit Pontet", + "opening_hours": "24/7", + "operator": "197__SDEEG33;IZIVIA", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-05-29", + "charging_station:output": "50 kW;43 kW", + "capacity": "3;4", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "ref": "57a5f514-bf35-5b2b-8b59-115a8092e014;FR*SOD*S*MB33*151*1*_*_", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60141800000, + 45.19014500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB01060A", + "description": "Réseau AlterBase - Ardin - rue Alphonse Lavoix", + "start_date": "2016-02-08", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55511357000, + 46.47397865000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRADPE7729400;FRADPE77294002;FRADPE772940021;FRADPE772940022", + "start_date": "2022-12-07", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CDG - Parking PG - Allée 07", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "network": "ADP Groupe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60580400000, + 49.00550500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3572EVCP02;LFR3572EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3572EVCP02;LFR3572EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "ALES Mons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10685400000, + 44.12645400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-08", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM38E38382001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-EGREVE - Espace Robert Fiat", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68412200000, + 45.23194200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-10-16;2020-10-12", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "MANDELIEU-LA NAPOULE - PARKING MERMOZ 2;MANDELIEU-LA NAPOULE - PARKING MERMOZ 1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ10322;FRA16PWIIZ10321;FRA16PWIIZ10311;FRA16PWIIZ10312", + "ref": "FR*SOD*S*WIIZ*103*1*_*_;FR*SOD*S*WIIZ*103*2*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94806600000, + 43.56724300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5709617401547360791", + "network": "Freshmile France", + "ref": "1034652", + "description": "Freshmile France/LLT4HATQNSX7YA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14068800000, + 48.10863300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Auchan - Haguenau", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACNHGN", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78445000000, + 48.81892700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346769", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/IQXD4XD3T3", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNP4179755731191787878", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14502600000, + 45.61654600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "description": "Villebon-sur-Yvette - CC Auchan", + "socket:type2_combo:output": "300 kW;400 kW", + "amenity": "charging_station", + "start_date": "2023-09-27", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVSYAU", + "opening_hours": "24/7", + "operator": "ELECTRA", + "charging_station:output": "300 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25288100000, + 48.70422100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRP01E95127001", + "start_date": "2023-07-04", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Cergy-Pontoise Bastide - EFFIA", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03159820000, + 49.04933520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "KRYS BORNE 1", + "amenity": "charging_station", + "network": "KRYS BORNE 1", + "charging_station:output": "22 kW", + "ref": "FRCPIE6665415", + "operator:email": "info@chargepoint.com", + "opening_hours": "Su 00:00-09:00,Su 19:00-24:00,Mo 00:00-09:00,Mo 19:00-24:00,Tu 00:00-09:00,Tu 19:00-24:00,We 00:00-09:00,We 19:00-24:00,Th 00:00-09:00,Th 19:00-24:00,Fr 00:00-09:00,Fr 19:00-24:00,Sa 00:00-09:00,Sa 19:00-24:00", + "start_date": "2022-12-14", + "ref:EU:EVSE": "FRCPIE6665415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40469900000, + 46.37313400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "socket:type2_combo:output": "60 kW", + "description": "Cussey-sur-l'Ognon, Grande rue;Easy Charge/LLUVBQ3R2GJI2J", + "charging_station:output": "22 kW;60 kW", + "ref": "LLUVBQ3R2GJI2J;1069239", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPLLUVBQ3R2GJI2J;FRECHP7376296411786925614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93887800000, + 47.33665800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue de Lagny 117", + "amenity": "charging_station", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "ref": "FR*V75*PPX20*11", + "ref:EU:EVSE": "FRV75PPX2011", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41330000000, + 48.84920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "435105", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/AMXCWSBMV3", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6247496064554910717" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46050200000, + 47.64897400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-10-12", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0409", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX04*09", + "description": "Paris | Rue Neuve Saint-Pierre 2", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36395800000, + 48.85357400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ARXHLG1MXA", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "749292", + "ref:EU:EVSE": "FRFR1P3158218927101923859", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85836500000, + 43.95543300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-25", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "description": "Ford - Alès", + "ref:EU:EVSE": "FRSSDPMAURINFORD301001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11208200000, + 44.11025900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Saint Cast le Guildo-Le Port - place du pilote Fromont", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22282001", + "charging_station:output": "22 kW", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24842300000, + 48.64055800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E117187;FRS18E117188", + "ref": "FRS18E117187;FRS18E117188", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BOULLERET - Eglise", + "network": "MODULO - BOULLERET - Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87324000000, + 47.42393000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Toyota - Forbach;Toyota - Forbach - 22kW AC ", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZTLE22AC61826;FRZTLE22AC61825;FRZTLE22AC61827;FRZTLE22AC61828", + "operator:email": "advenir@zeborne.com", + "start_date": "2021-06-02", + "charging_station:output": "22 kW", + "description": "Toyota - Forbach - 22kW AC ;Toyota - Forbach - 22kW AC", + "ref": "61828;61825;61826;61827", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00;Mo-Fri 08:30-19:00,Sat 09:00-18:00;Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "owner:ref:FR:SIREN": "403547102", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88112680000, + 49.17638090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/CI80EV2QJJ", + "operator:email": "roaming@freshmile.com", + "ref": "741138", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P6193079155839650477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06887300000, + 48.29808300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "1009113", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80P6967772869265162120", + "charging_station:output": "22 kW", + "description": "FDE 80/LLO2OMKKJ1E8NQ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39017100000, + 49.84580600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST8223;FRIZFPFAST8222;FRIZFPFAST8221", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - CHATEAU-THIERRY", + "ref": "FR*SOD*S*FAST*82*2*_*_", + "start_date": "2024-05-03", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38322240000, + 49.03710310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "LE PALLET - Ruie Étienne Sautejeau;OuestCharge - Diva Sp - Le Pallet - Sautejeau", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44117A;FRS44E44117001", + "start_date": "2024-04-18;2021-04-20", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33774600000, + 47.13953800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "LE MEE-SUR-SEINE - Avenue De La Libération;Le Mée-sur-Seine", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77285001;FRS77P77285A", + "ref": "01F5ZAKH61MHDXZ175HME2B2NY", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-30;2016-12-16", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64036000000, + 48.54257600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62254001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "COYECQUES - Rue Principale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18359000000, + 50.60398100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221419;FRS37E221416", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "start_date": "2023-10-22", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CIVRAY DE TOURAINE - Z.A. Bois Pataud", + "ref": "FRS37E221419;FRS37E221416", + "network": "MODULO - CIVRAY DE TOURAINE - Z.A. Bois Pataud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02737100000, + 47.32226000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66323;FRS55E66324", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - CONSENVOYE - Rue du port", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66323;FRS55E66324", + "description": "MODULO - CONSENVOYE - Rue du port" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28435700000, + 49.28586900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*128*4*_*_;FR*SOD*S*LYON*128*2*_*_;FR*SOD*S*LYON*128*1*_*_;FR*SOD*S*LYON*128*3*_*_", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON12841;FRGLYPLYON12821;FRGLYPLYON12811;FRGLYPLYON12831", + "capacity": "1", + "start_date": "2021-09-08", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY317 - BONNEL", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84927700000, + 45.76184300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHÉRENG - Rue Jean Ochin", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MEL", + "ref:EU:EVSE": "FRMELP5915202", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59152*02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20811300000, + 50.60852400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "capacity": "7", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "start_date": "2018-09-25;2023-11-07", + "charging_station:output": "200 kW;7.36 kW", + "description": "Jaguar Land Rover - JFC - Le Havre", + "ref:EU:EVSE": "FRSSDPJLRJFC766001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15299300000, + 49.49430100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6571155", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "CGED EPINAL (VOSGES)", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6571155", + "description": "CGED EPINAL (VOSGES)", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43638100000, + 48.21701100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "699077", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P9035973967578711865", + "description": "Leclerc/KZWEVDDHH9", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980600000, + 43.22059800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Beautiran | Rue de la Papeterie - Angle Place de Verdun", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "23f2509c-a545-5b8a-9af7-9754d21748d9", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44912200000, + 44.70366300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Corbeil-Essonnes - Rue du Bas Coudray", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "ref": "55a0b831-1c9a-556a-b12a-454c1c1c4529", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48578600000, + 48.60126900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref": "FRALLEGO0001191", + "ref:EU:EVSE": "FRALLEGO0001191", + "start_date": "2024-05-20", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "description": "Allego NISSAN Caudan", + "network": "Allego NISSAN Caudan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33166200000, + 47.78499300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2922EVCP02;LFR2922EVCP01", + "charging_station:output": "22 kW", + "description": "SAINT BRES Nimes", + "ref": "LFR2922EVCP02;LFR2922EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03755800000, + 43.66529900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE8811;FRM06PNICE8821;FRM06PNICE8831;FRM06PNICE8841;FRM06PNICE8851", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "start_date": "2020-09-29;2020-10-09;2020-10-06", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*88*4*_*_;FR*SOD*S*NICE*88*3*_*_;FR*SOD*S*NICE*88*1*_*_;FR*SOD*S*NICE*88*2*_*_;FR*SOD*S*NICE*88*5*_*_", + "charging_station:output": "22 kW", + "description": "NICE P+R VAUBAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28696300000, + 43.70925600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "SAINT-RAPHAEL - PARKING DU DEBARQUEMENT", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*219*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ21912;FRA16PWIIZ21911", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84497000000, + 43.41762500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1444318819055272745", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "479226", + "description": "Freshmile France/TMZQBK19CJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04284800000, + 48.45254700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Mr. Bricolage - Davézieux", + "opening_hours": "24/7", + "start_date": "2023-05-06;2023-04-19", + "ref:EU:EVSE": "FRPD1PMBRDVZ", + "charging_station:output": "100 kW;188 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69129560000, + 45.25625580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30332;FRGYSKJMI9", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/FRGYSKJMI9;Saint-Jean-De-Muzols, Rue Centrale", + "ref:EU:EVSE": "FREBNPFRGYSKJMI9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81534600000, + 45.08348600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP2546722350158486019", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref": "674567", + "operator:email": "support@evzen.com", + "description": "Norauto - Bornes publiques/380BDE59-5E6C-434B-893B-A38970D49D49", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86851500000, + 46.77264300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-12-05", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E58194002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NEVERS - Saint-Arigle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16336654265, + 46.98935366055 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Les Houches, Parking du Fresnay", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref": "KDBQHXLRTS", + "ref:EU:EVSE": "FREBNPKDBQHXLRTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79799270000, + 45.88890780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPRZUDP5ZC6L", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "RZUDP5ZC6L;32641", + "start_date": "2020-06-21", + "description": "Réseau eborn/RZUDP5ZC6L;Savines-Le-Lac, Rue du Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40382700000, + 44.52769900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Première Classe Arras", + "start_date": "2023-09-04", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP121040", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81531700000, + 50.28094100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21865930000, + 49.97076070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "909738", + "description": "Freshmile France/UH9JK8ETV1", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5841184590693053248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42053800000, + 48.78323400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX1207", + "network": "Belib'", + "description": "Paris | Boulevard de la Bastille 20", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX12*07", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36791500000, + 48.84837000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7779792741514323194", + "capacity": "2", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "ref": "741051", + "network": "Freshmile France", + "description": "Freshmile France/UFKNQYMEB6", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00611900000, + 46.13714400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPENDENAUTOBMW872801", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-06-28", + "description": "BMW - Limoges", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27362500000, + 45.88978200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PCONCHESPDOUMER", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900105", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94234800000, + 48.95993400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "ref:EU:EVSE": "FRS21P21496A", + "operator:email": "roaming@freshmile.com", + "ref": "180404", + "capacity": "2", + "description": "SICECO/FR*S21*P21496*A", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41613900000, + 47.30445600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78551008", + "description": "SAINT-GERMAIN-EN-LAYE - Rue Saint Léger", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07757000000, + 48.89680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-22", + "ref": "FR*QWT*S86194*A*1", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "904074713", + "capacity": "4", + "operator:email": "contact@qowatt.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-City 22kW - Parc commercial de Poitiers - Demi Lune", + "network": "QoWatt", + "operator": "QoWatt", + "ref:EU:EVSE": "FRQWTE86194A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33000000000, + 46.60000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLZJEK0SWY", + "opening_hours": "24/7", + "ref": "789177", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRWATP3891081184588892812", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18768000000, + 45.01722400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2020-10-06", + "description": "IONITY Larzac", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE432500", + "ref:EU:EVSE": "FRIONE432500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22273700000, + 47.81517300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - PARGNY SUR SAULX - Pl. Jean Monet", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E40914;FRS51E40915", + "description": "MODULO - PARGNY SUR SAULX - Pl. Jean Monet", + "start_date": "2020-12-11", + "ref:EU:EVSE": "FRS51E40914;FRS51E40915" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84895600000, + 48.76947700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Germigny-l'Evêque - Allée des Noyers", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "ref": "eb758575-b483-43f5-8729-3fd9d8cc49fa", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "22 kW", + "operator": "Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77203A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94946800000, + 48.99623800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DE ANGRES", + "ref": "FRHPCPNF080345", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681113;531681115;531681112;531681114", + "capacity": "4", + "ref:EU:EVSE": "FRHPCPNF080345", + "opening_hours": "24/7", + "charging_station:output": "300 kW;54 kW", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "start_date": "2023-03-21;2023-02-22;2023-02-28", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74420000000, + 50.40490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34117001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRAISSESSAC - Plateau De Sainte Barbe", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "start_date": "2024-07-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09537100000, + 43.67825000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "21877", + "description": "Mobilité électrique 56/JXKJUW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PJXKJUW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.40196000000, + 47.76670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1017033", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1288340956651075924", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLR6HX58I25WO8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40814900000, + 46.67864600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-12-29", + "ref": "599064", + "capacity": "2", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P92051*H;Metropolis - ePremium - Neuilly-sur-Seine - Perronet", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92051H", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26673500000, + 48.88892700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fiat - HESS - St Etienne", + "network": "DRIVECO", + "capacity": "7", + "start_date": "2020-06-16;2023-07-21", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSFIAT420001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41106100000, + 45.45553500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-31", + "capacity": "2", + "amenity": "charging_station", + "description": "CARREFOUR AJACCIO", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "network": "CARREFOUR AJACCIO", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "ref:EU:EVSE": "FRC2P003402;FRC2P003401;FRC2P003403", + "ref": "FRC2P003402;FRC2P003401;FRC2P003403", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.74636166931, + 41.94325812909 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE", + "amenity": "charging_station", + "capacity": "1", + "network": "GARENNE", + "opening_hours": "24/7", + "start_date": "2020-12-09;2020-09-16", + "owner:ref:FR:SIREN": "219200359", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*GACO*1*1*_*_;FR*SOD*S*GACO*1*2*_*_;FR*SOD*S*GACO*1*3*_*_;FR*SOD*S*GACO*1*4*_*_;FR*SOD*S*GACO*1*5*_*_;FR*SOD*S*GACO*1*6*_*_", + "ref:EU:EVSE": "FRLGCPGACO151;FRLGCPGACO131;FRLGCPGACO111;FRLGCPGACO121;FRLGCPGACO141;FRLGCPGACO161" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24956700000, + 48.90632600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS47PMB4711111;Non concerné;FRS47PMB4711112", + "start_date": "2023-12-18", + "network": "CPO CITEOS Mobive;MOBIVE - TE 47", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "200__TE47;IZIVIA", + "description": "PUJOLS - 36 RUE LOUIS DAJAN;MOBIVE | Pujols | 36 Rue Louis Dajan", + "owner:ref:FR:SIREN": "254701824", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*MB47*111*1*_*_;010770d9-e339-5934-a0d7-179798441eed", + "capacity": "2;3", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69825600000, + 44.38196800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "ref:EU:EVSE": "FRSE1PSE16GABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "WOK 86 ANGOULEME", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17217300000, + 45.66792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "description": "BornEco/63fc668c6e73c7acf2178cb6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "744225", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP2816903559221054122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71636500000, + 49.20135000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/SSPQRIGGGG", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "472329", + "opening_hours": "24/7", + "capacity": "30", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRLE2P4199849812240836295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200000000, + 47.19327000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Martigues, Avenue de la Gare de la Couronne", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PJVEBD8EYAJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05318400000, + 43.33906800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "402512", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P7639284380199120174", + "charging_station:output": "22 kW", + "description": "SDEY/GWPDQ07EIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57231200000, + 47.95238200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "OPIO PARKING CENTRE COMMERCIAL FONT NEUVE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*7*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-04-04", + "ref:EU:EVSE": "FRA16PWIIZ711;FRA16PWIIZ712", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98546700000, + 43.66721300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GXEHLA3ZLD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6510265655072111044", + "network": "Freshmile France", + "ref": "472191", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70999000000, + 48.54336100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Super U - Rezé", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSPUREZ", + "charging_station:output": "50 kW;100 kW;22 kW;120 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "start_date": "2023-08-14;2023-08-01", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55899707847, + 47.17743259673 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/GA7MONBEKP", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPGA7MONBEKP", + "ref": "85757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13777200000, + 46.14212400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref": "1116846", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP684750734337170487", + "description": "ENGIE MAMP - Bornes publiques/5D3E3984-DD30-43B8-B3E4-96932E20B272", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61698800000, + 43.28523200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2024-02-22", + "ref": "FR*SOD*S*OTHR*685*6*_*_;FR*SOD*S*OTHR*685*5*_*_;FR*SOD*S*OTHR*685*4*_*_;FR*SOD*S*OTHR*685*3*_*_;FR*SOD*S*OTHR*685*2*_*_;FR*SOD*S*OTHR*685*1*_*_;FR*SOD*S*OTHR*685*7*_*_", + "amenity": "charging_station", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "description": "SUPER U - BELLE ILE EN MER - PUBLIC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR68541;FROTHPOTHR68521;FROTHPOTHR68511;FROTHPOTHR68531;FROTHPOTHR68551;FROTHPOTHR68561;FROTHPOTHR68571;FROTHPOTHR68572;FROTHPOTHR68573", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17318700000, + 47.34078100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNAPOVOMVVA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "L'Albenc, Place Jean Vinay;Réseau eborn/NAPOVOMVVA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "NAPOVOMVVA;30164", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43958500000, + 45.22315700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP8535617639952496564;FREBNPLLTHE8SD723PAY", + "ref": "LLTHE8SD723PAY;1084728", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2024-03-07", + "description": "Réseau eborn/LLTHE8SD723PAY;Sallanches, Parking \"Cœur de Ville\"" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63286400000, + 45.93618800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-29;2023-02-27", + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR36951;FROTHPOTHR36931;FROTHPOTHR36911;FROTHPOTHR36921;FROTHPOTHR36941;FROTHPOTHR36952;FROTHPOTHR36953", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*369*2*_*_;FR*SOD*S*OTHR*369*1*_*_;FR*SOD*S*OTHR*369*3*_*_;FR*SOD*S*OTHR*369*4*_*_;FR*SOD*S*OTHR*369*5*_*_", + "description": "CARREFOUR CONTACT - CAUDAN", + "operator:email": "sav@izivia.com", + "network": "JERNAT", + "capacity": "1;3", + "charging_station:output": "50 kW;3.68 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34338100000, + 47.81444400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "735222", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ZTXNJV4UMI", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P857887304041396309", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936000000, + 49.18389400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Carcassonne, France", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP29903", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31079200000, + 43.20622400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/QXPD2AT8JS", + "ref:EU:EVSE": "FRFR1P7123463814237011941", + "ref": "521348", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41519300000, + 43.45035500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPHESSVOLVO511001", + "start_date": "2024-01-22", + "network": "DRIVECO", + "description": "Volvo - HESS - Reims", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08449900000, + 49.23621800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/JIIXCKNC8Q", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "370121", + "ref:EU:EVSE": "FRFR1P1053991117785369279", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56335900000, + 44.83415200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pledran-Place J. TANGUY", + "ref:EU:EVSE": "FRS22E22176001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74490300000, + 48.44614400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRZMAE22AC49597;FRZMAE22AC135128", + "capacity": "1", + "ref": "135128;49597", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "394083984", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "description": "Mazda - Limoges - 22kW AC ", + "start_date": "2022-05-30;2020-12-03", + "network": "ZEN & MOTION - MAZDA LIMOGES", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26901600000, + 45.86805200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-21", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "FPB_Saint_Nazaire", + "ref:EU:EVSE": "FRROSE307", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24684890000, + 47.25951460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GUERVILLE - Rue De La Libération", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78291001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73334400000, + 48.94434300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-11", + "capacity": "7", + "description": "Rosny Nord", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Rosny Nord", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE437952;FRIOYE437902;FRIOYE437901;FRIOYE437903;FRIOYE437904;FRIOYE437951;FRIOYE437953", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE437952;FRIOYE437902;FRIOYE437901;FRIOYE437903;FRIOYE437904;FRIOYE437951;FRIOYE437953" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63345919000, + 48.99297587000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2021-04-06;2024-05-16", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS53E53062002;FRS53P53062B", + "description": "CHATEAU-GONTIER - Rue René Perreault;OuestCharge - Diva Sp - Chateau-Gontier - Perreault", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71796100000, + 47.83438900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAIXAS - Park Joan Cayrol Joffre", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66014001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81182100000, + 42.75148100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE008501;FRIENE008502", + "ref": "FRIENE008501;FRIENE008502", + "description": "Vernouillet", + "amenity": "charging_station", + "start_date": "2023-05-26", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Vernouillet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38233560000, + 48.71035175000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35019001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "description": "BAZOUGES LA PEROUSE - 2 rue de la Poterie (Place de la Mairie) ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57486700000, + 48.42713200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref:EU:EVSE": "FRS61P61293A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "MORTAGNE - République", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-MORTA-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54455600000, + 48.52078900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P439263567956180482", + "network": "Freshmile France", + "description": "Freshmile France/S2ED4IIWU3", + "ref": "521363", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34591800000, + 48.08612400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "start_date": "2018-06-01", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "SPHLUS;79780", + "description": "Roulez Électrique En Haute-Garonne/SPHLUS;Rouffiac-Tolosan, Mairie", + "ref:EU:EVSE": "FRS31PSPHLUS", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52423000000, + 43.66490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92026006", + "network": "SIPPEREC", + "start_date": "2022-04-06", + "description": "COURBEVOIE - 11 Rue Edith Cavell" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26984300000, + 48.90104100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LES VILLAS VERROUST", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCG0E000292;FRCG0E000291", + "ref:EU:EVSE": "FRCG0E000292;FRCG0E000291", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-05-02", + "operator:email": "info@chargeguru.com", + "description": "LES VILLAS VERROUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35859600000, + 42.69182800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*151*1*_*_", + "description": "LA BOLLENE VESUBIE - PARKING COL DU TURINI", + "start_date": "2021-10-27", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE15112;FRM06PNICE15111", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39164600000, + 43.97716700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "a55d4dc5-cdc5-5f1d-99b4-81904d088ec8", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Paul les Dax | Gymnase de Lingres", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04437600000, + 43.72621500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE60BVMA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Restaurant Memphis - BEAUVAIS", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11538600000, + 49.43328700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "230804;230803", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Monoprix - Auray", + "ref:EU:EVSE": "FRBMPS230804;FRBMPS230803", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98820280000, + 47.66815110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR4114EVCP01;LFR4114EVCP02;LFR4114EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "AVION - Septembre", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4114EVCP01;LFR4114EVCP02;LFR4114EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82920100000, + 50.41189300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Seilhac | Place de L'Horloge", + "opening_hours": "24/7", + "ref": "414657a8-127f-5a41-8903-d8667a0d6cff" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71341200000, + 45.36637800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "description": "Saint-Pierre-du-Perray - Rue Antonio Vivaldi", + "ref": "b087fbf6-06ff-5014-8a3b-5b1e27142ab3", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51085500000, + 48.61314300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "RUE BUZENVAL - GARCHES", + "amenity": "charging_station", + "ref:EU:EVSE": "FR55CP92280GARBUZENVAL", + "capacity": "1", + "start_date": "2020-10-12;2020-09-25", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92280*GAR*BUZENVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20454900000, + 48.85204000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3119EVCP01", + "description": "LEGUEVIN Toulouse", + "ref:EU:EVSE": "LFR3119EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24826700000, + 43.60074300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEPLEIN Saint-Jean-de-Védas - Leroy Merlin", + "network": "DRIVECO", + "ref:EU:EVSE": "FRPL1PLM344301", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "Mo 09:00-20:00, Tu 09:00-20:00, We 09:00-20:00, Th 09:00-20:00, Fr 09:00-20:00, Sa 09:00-20:00, Su 09:00-18:00", + "charging_station:output": "300 kW;22.08 kW", + "socket:type2_combo:output": "300 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-02-27", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84473500000, + 43.57004700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "ZBR6SHL3PC;492150", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPZBR6SHL3PC;FREBNP3746188013735805312", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Combloux, Route de la mairie;Réseau eborn/ZBR6SHL3PC", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64124300000, + 45.89643400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP42218A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "capacity": "5;7", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP42218A", + "start_date": "2023-09-21;2024-05-15", + "charging_station:output": "100 kW;150 kW;22 kW;7.4 kW", + "description": "e-Totem - GREENPARK Public", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38994057400, + 45.46458512000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E25056001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Besançon Viotte Sud - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02173219759, + 47.24699072032 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Grandvilliers", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT602101", + "operator:email": "support@driveco.com", + "start_date": "2023-06-30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94047800000, + 49.66085400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Montgenèvre, Office de Tourisme", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRXIEJHAHQH", + "ref": "RXIEJHAHQH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72572952700, + 44.93142339000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - TOCANE SAINT APRE", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR48811;FROTHPOTHR48812", + "ref": "FR*SOD*S*OTHR*488*1*_*_", + "start_date": "2022-09-07", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50502900000, + 45.25814100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HMQK6YW1HW", + "ref": "801606", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4579044697965334584", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663400000, + 48.25024700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10094178;FRUBIE10089837;FRUBIE10088108;FRUBIE10083917;FRUBIE10038186;FRUBIE10031953", + "start_date": "2023-09-11", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Rue Maurice Baquet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23630600000, + 49.50547200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6134603619786419657", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "559724", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/HRKGJ6QXDH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46104600000, + 43.53626100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTLSE31555026", + "operator": "Bouygues E&S", + "description": "TOULOUSE - 4 place E. Male", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41854000000, + 43.59157000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4295554458404017830", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/LLY5HS79T27NUZ", + "ref": "1130283", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01687300000, + 47.36173400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/G1IUADBW5Q", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "461727", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P4068158872184614588" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33262600000, + 49.20208700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12028001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOISSE-PENCHOT - Château Bas, La Vérerie D42", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-31", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20659500000, + 44.59136300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY03E78263002", + "operator": "Bouygues E&S", + "start_date": "2024-07-11", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "GAMBAIS - Foyer Rural" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67684620000, + 48.77503150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - Landemont - Saint Sauveur;LANDEMONT - Route de Saint-Sauveur", + "amenity": "charging_station", + "start_date": "2024-03-26;2022-02-11", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49172001;FRS49P49172A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24442000000, + 47.26560200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "description": "SIED70/vaivretmonto", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PVAIVRETMONTO", + "ref": "79837" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13869500000, + 47.60042600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20736020000, + 49.97120640000 + ], + [ + 1.20720420000, + 49.97117520000 + ], + [ + 1.20697870000, + 49.97113000000 + ], + [ + 1.20676290000, + 49.97108680000 + ], + [ + 1.20655880000, + 49.97104590000 + ], + [ + 1.20638840000, + 49.97101170000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-07;2023-09-15", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CASSEL - Place Du General Vandamme", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59135002;FRH14E59135001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48258600000, + 50.80237500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35347001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "VAL D IZE - 1 rue du chateau " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30160400000, + 48.17852800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "SIEG63 - ePremium - Issoire - Place Freres Lumieres", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "start_date": "2022-06-29", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63178D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24299650000, + 45.54368860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1090689", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4750215356987896582", + "description": "Freshmile France/LLNVX170BIO7RE", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15265600000, + 49.09094400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "21826", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/XTSRMR", + "ref:EU:EVSE": "FRS32PXTSRMR", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23718400000, + 43.88430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94017001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "capacity": "0", + "network": "SIPPEREC", + "description": "CHAMPIGNY SUR MARNE - Rue Pierre Renaudel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50961300000, + 48.81378000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-13", + "ref:EU:EVSE": "FRM06PNICE26811;FRM06PNICE26812", + "capacity": "2", + "description": "NICE - ESCOFFIER", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*268*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29197404020, + 43.72067998647 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Pomport | Parking Salle des Fetes", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "d771d312-cfb1-55d3-a1e7-3c9218107538" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41783100000, + 44.77998400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE40112;FRSIGPSIGE40111", + "ref": "FR*SOD*S*SIGE*401*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 3 RUE VINCENT VAN GOGH PARKING PICASSO - MONTIGNY-LES-CORMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19910040000, + 48.99686470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROUEN - Place de la Madeleine", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-10-05;2021-11-03", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76540001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08006500000, + 49.44507700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2854EVCP01", + "ref": "LFR2854EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LONGUYON Arrancy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61507000000, + 49.43193100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Naves | Rue Gustave Vidalin", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "faf55899-c62e-543a-9f96-273aae3b6c69" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76725900000, + 45.31384600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "c7eab24a-dfb2-5c83-8a95-c08c8abead27", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Loriol-du-Comtat - Av. François Jouve", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00237400000, + 44.07644800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "RUE DE SURESNES - GARCHES", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2022-12-09", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P92380*GAR*SURESNES", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP92380GARSURESNES", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19754500000, + 48.84734900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2945EVCP03;LFR2945EVCP02;LFR2945EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "THOUARS", + "ref": "LFR2945EVCP02;LFR2945EVCP01;LFR2945EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20720700000, + 46.99628900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Plomodiern", + "charging_station:output": "100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "start_date": "2023-10-11;2023-10-27", + "ref:EU:EVSE": "FRPD1PITMPMD", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22988407053, + 48.18187436854 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Veauche, Veauche;Réseau eborn/GBTTMB", + "ref": "GBTTMB;236038", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPGBTTMB", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27747000000, + 45.56130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "start_date": "2024-04-09", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP80021A", + "ref": "FRETIP80021A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Tabl'Hotel Amiens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37093839772, + 49.87117867080 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "19", + "ref:EU:EVSE": "FRPD1PCORHOU", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;120 kW;50 kW;22 kW", + "opening_hours": "24/7", + "description": "Cora - Nancy", + "socket:type2_combo:output": "200 kW;120 kW", + "start_date": "2024-03-29", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18448576969, + 48.63913351246 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Saint-Calais Pressoir", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT721201", + "operator:email": "support@driveco.com", + "start_date": "2024-03-29", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76649500000, + 47.91706800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ECOPI", + "description": "INNOVENT", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-12-29", + "ref:EU:EVSE": "FREPIE1896937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15750600000, + 50.60729100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH19211;FROTHPAUCH19212", + "ref": "FR*SOD*S*AUCH*192*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - CHASSENEUIL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-22", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37025660000, + 46.66455110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6806995", + "start_date": "2023-10-13", + "ref": "FRCPIE6806995", + "opening_hours": "24/7", + "network": "SUPER U PRINGY STATION 1", + "charging_station:output": "11 kW", + "operator:email": "info@chargepoint.com", + "description": "SUPER U PRINGY STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12142200000, + 45.93886200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YUEYTG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "242251", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PYUEYTG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21839000000, + 46.21360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Rue Didot 47", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9014*04", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901404" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32005200000, + 48.83144800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4029226244162245205", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/CZU4DDYCHE", + "socket:type2_combo:output": "300 kW", + "ref": "896595", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14280000000, + 45.75456100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Brive-la-Gaillarde", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP1726", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48311900000, + 45.16724000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1001397056164244721", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLRUG1VPT25G5N", + "ref": "1070907", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08143100000, + 45.93566900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89882099", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "start_date": "2023-12-21", + "network": "R3", + "description": "R3 - Pilaterie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11874600000, + 50.65238000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/EZYDLQMDET", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P2043520712344816025", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97729500000, + 48.82545100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12300002", + "network": "Reveo", + "description": "VILLEFRANCHE DE ROUERGUE - Aristide Briand", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03963300000, + 44.35239300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA5P4413440623487324342", + "ref": "781572", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA4LKTNYA50W", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08239300000, + 43.59531600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS49E49364001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ANGERS - Avenue Jean Joxé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54386401200, + 47.48233413696 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "LACAUNE - Avenue Georges Clémenceau Place De La Poste", + "network": "Le Plein Tarnais", + "charging_station:output": "48 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8112400212;FRS81E8112400211;FRS81E8112400221;FRS81E8112400222", + "start_date": "2022-07-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69300069519, + 43.70719539133 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF058016", + "owner:ref:FR:SIREN": "531680733", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "start_date": "2021-11-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF058016", + "description": "RELAIS DE SILLY", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23110000000, + 48.83970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS46E46240001", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ROCAMADOUR - D673 Lieu dit L'hospitalet", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62628700000, + 44.80532300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-26", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Plaudren - Rue Georges Cadoudal", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PPCHBYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68977800000, + 47.77816600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH04E59234001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FLERS-EN-ESCREBIEUX - Rue du Marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08612300000, + 50.39838800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Quimper-Route de Ty Nay", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09542800000, + 48.01057100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-23", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE94068022", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-MAUR-DES-FOSSÉS - 55 Boulevard De La Marne", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50370510000, + 48.79166860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B027", + "ref:EU:EVSE": "FRLMSE12346051541;FRLMSE12346051531;FRLMSE12346051532;FRLMSE12346051542", + "opening_hours": "24/7", + "start_date": "2017-11-16", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "CHAUVIGNY GYMNASE LATHUS-1-2;CHAUVIGNY GYMNASE LATHUS-1-1", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64261300000, + 46.56538800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Métropolis/FR*MGP*P93001*C;Metropolis - Citadine - Aubervilliers - Commune de Paris", + "start_date": "2022-09-23", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93001C", + "opening_hours": "24/7", + "ref": "484757", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37869300000, + 48.90914100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE7712;FRSIGPSIGE7711", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*77*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SIGEIF - PLACE DE LA MARNE - JOUY-EN-JOSAS", + "start_date": "2023-05-02;2024-10-01", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16750200000, + 48.76548100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "charging_station:output": "300 kW;22 kW;150 kW", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "1030698", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP5299328072374979458", + "description": "Atlante/FRATLFR00372", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96744300000, + 49.26431100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "Howdens Pierrelaye", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000081809", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17574900000, + 49.01738000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Sauvagnon | Place du Champ de Foire", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "30d55a96-859b-54bf-85d2-fae3dad6b555", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38674700000, + 43.40350300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85156001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "MOUTIERS-LES-MAUXFAITS - Avenue Georges Clémenceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42510000000, + 46.49290800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSSALAI", + "amenity": "charging_station", + "description": "SALAISE", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "start_date": "2023-08-23", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80692000000, + 45.34219000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "description": "IZIVIA | MARSEILLE 12 - CHEMIN DE SAINT JEAN DU DESERT", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "ref": "FR*SOD*S*MAMP*12*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZMPMAMP1212;FRIZMPMAMP1211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41897500000, + 43.29520900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRPD1PMARGCL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mairie de Gauchy - Place des Clos", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28057230000, + 49.82986930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "39152", + "charging_station:output": "22 kW", + "description": "Réseau eborn/BAVXN00NQZ", + "ref:EU:EVSE": "FREBNPBAVXN00NQZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71282500000, + 45.88786700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/F691EB51-611B-49C7-8C52-32BE53CBC748", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP3032440573824318895", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "support@evzen.com", + "ref": "927822", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38706800000, + 43.26080400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-01-03", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Biocoop - Saint-Thibault", + "ref:EU:EVSE": "FRPD1PGSTSTV", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67961900000, + 48.86958440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "63986;VPY490SRSN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Buis-Les-Baronnies, Allée des Platanes;Réseau eborn/VPY490SRSN", + "ref:EU:EVSE": "FREBNPVPY490SRSN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27750300000, + 44.27784300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP17415A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - DASSIN Première Classe Saintes", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP17415A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65642379387, + 45.75341565099 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR17612;FROTHPOTHR17611", + "network": "ES B2G", + "ref": "FR*SOD*S*OTHR*176*1*_*_", + "start_date": "2021-06-16", + "capacity": "2", + "description": "VILLE DE BISCHWILLER - PLACE DE LA LIBERTE", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.86015300000, + 48.76847300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6984995", + "start_date": "2024-08-26", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "POSTE BESSANS", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6984995", + "network": "POSTE BESSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99412400000, + 45.32046200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TXQ15C6CEX", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2884506105380417421", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "368944", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60639300000, + 44.83944600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "description": "CENTER PARCS LES TROIS FORETS - Parking X", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP123007", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00519800000, + 48.62127600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "368881", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6605410061803093400", + "description": "Freshmile France/MME1DDQAPL", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55703200000, + 44.84365000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-04-21", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW;22 kW", + "ref:EU:EVSE": "FRSUAP38315A", + "network": "HYPER U PONT DE BEAUVOISIN", + "description": "HYPER U PONT DE BEAUVOISIN", + "capacity": "2;3", + "ref": "FRSUAP38315A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69089755522, + 45.52876535004 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1111902", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLTE7DTDS2I3LV", + "ref:EU:EVSE": "FRFR1P3883177709390225544" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95704100000, + 47.28382200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "description": "Peugeot - HESS - Rethel", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHESSPEUGEOT083001", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38216400000, + 49.50665800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VOVES - Bd. Maurice Violette", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E134417", + "network": "MODULO - VOVES - Bd. Maurice Violette", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E134417", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62672506000, + 48.27051423000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "782595", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P6734433896834603553", + "charging_station:output": "22 kW", + "description": "SDEA 10/NTDPAOATLQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10075300000, + 48.53366600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA5LUKRLHF6A", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "708677", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P6938961935490359489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20164900000, + 43.68816500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P505023", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "description": "ST LO - Maison du Département", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "215005026", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "start_date": "2018-02-07", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11668200000, + 49.10075500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-21", + "ref:EU:EVSE": "FRS81E81273003", + "description": "SAIX - Place du RIVET", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17929100000, + 43.58562100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "start_date": "2022-10-26;2022-08-29", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680864;531680868;531680866;531680865;531680867;531680870;531680869;531680871", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078387", + "ref:EU:EVSE": "FRHPCPNF078387", + "description": "REL.CEIGNES CERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49090000000, + 46.11460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - ePremium - Beaulieu Sur Layon - Promenade", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS49P49022A", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60269400000, + 47.31636100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS60PGVYQTG", + "ref": "79525", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/GVYQTG", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88836000000, + 49.23780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH10E62534001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "LUMBRES - Rue des Écoles", + "start_date": "2019-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12487300000, + 50.70684800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2022-03-02;2024-06-24", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE GRAU DU ROI - Seaquarium", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30133004;FRS30E301330043" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14112300000, + 43.52670700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "298657", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Mobilité électrique 56/UT10PKNXV9", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "socket:type2_combo:output": "7.4 kW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PUT10PKNXV9", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07781000000, + 47.57030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-08-25", + "description": "VILLEMORT-1-2;VILLEMORT-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B105", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346390481;FRLMSE12346390471", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92126200000, + 46.55102900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-12", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRMGPP94022C", + "opening_hours": "24/7", + "description": "Metropolis - Express - Choisy-le-Roi - Stalingrad;Métropolis/FR*MGP*P94022*C", + "owner:ref:FR:SIREN": "885354860", + "ref": "599145", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40201800000, + 48.76997500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-03-11", + "network": "SIGEIF", + "description": "SIGEIF - RUE DE LA MAIRIE - DOMONT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE10612;FRSIGPSIGE10611", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*106*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32692900000, + 49.02739100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBE1E78062001", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "BEYNES - Cc De La Petite Mauldre", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87985300000, + 48.85144700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89369694", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A42 Lyon Montluel", + "start_date": "2022-12-25;2022-12-23", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06931200000, + 45.84464200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-05-11", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT AMANT DE BOIXE - ZONE DEMPLOI;MOBIVE | Saint Amant de Boixe | Zone d'Emploi", + "ref": "FR*SOD*S*MB16*35*1*_*_;5c38409f-f0a3-502d-89e4-8a42851b7af6", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref:EU:EVSE": "FRS16PMB163512;FRS16PMB163511;Non concerné" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14012500000, + 45.80421400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Espace Giraudeau - NOYELLES-GODAULT", + "ref:EU:EVSE": "FRSE1PSE62NADA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99940000000, + 50.41857500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Carrefour Energies;Allego Carrefour Sartrouville", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "75 kW;300 kW;0 kW", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "capacity": "11;10", + "description": "SARTROUVILLE;Allego Carrefour Sartrouville", + "opening_hours": "24/7", + "start_date": "2022-12-06;2022-01-12", + "ref": "FRALLEGO9990062;FRALLEGO9990061;FRALLEGO9990051;FRALLEGO9002521;FRALLEGO9001451;FRALLEGO9001452;FRALLEGO9001551;FRALLEGO9001552;FRALLEGO9002522;FRALLEGO9002523;FRALLEGO9990052", + "ref:EU:EVSE": "FRALLEGO9990062;FRALLEGO9990061;FRALLEGO9990051;FRALLEGO9001552;FRALLEGO9001551;FRALLPEVCARSSRTVL;FRALLEGO9001451;FRALLEGO9001452;FRALLEGO9002521;FRALLEGO9002522;FRALLEGO9002523;FRALLEGO9990052", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19619900000, + 48.94682000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "RAMBOUILLET Lenôtre", + "ref:EU:EVSE": "LFR3703EVCP02;LFR3703EVCP01;LFR3703EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3703EVCP02;LFR3703EVCP01;LFR3703EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83036400000, + 48.62933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASTELGINEST - Rue De L'Eglise", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM31E31116001", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42790100000, + 43.69337000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPPXZORUFFWG;FREBNP5605464763624250048", + "start_date": "2021-02-05", + "socket:type2_combo:output": "50 kW", + "ref": "369019;PXZORUFFWG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Brioude, Parking du centre historique;Réseau eborn/PXZORUFFWG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38683900000, + 45.29401200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6377935854183921665", + "description": "Freshmile France/U0IEIGTQV5", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "487230", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33930000000, + 46.20690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "56", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E751010026;FRP07E751010024;FRP07E751010023;FRP07E751010021;FRP07E751010022;FRP07E751010025", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Vendôme", + "charging_station:output": "22 kW;7 kW", + "start_date": "2023-02-21;2022-01-12;2023-04-04;2022-12-01;2023-02-08;2023-01-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33004600000, + 48.86790500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPLLIKF7WABBA7MA", + "ref": "LLIKF7WABBA7MA", + "start_date": "2023-06-06", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "description": "Voiron, Gymnase Chautard - Bd Denfert Rochereau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59409210000, + 45.36016100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/6618c571ede56f001cd8248a", + "ref": "1061082", + "network": "Road", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP233502675681720847", + "capacity": "4", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "opening_hours": "Mo,Su,Sa,Tu,Th,Fr,We 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92635300000, + 48.85876600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*296*6*_*_;FR*SOD*S*OTHR*296*5*_*_;FR*SOD*S*OTHR*296*3*_*_;FR*SOD*S*OTHR*296*2*_*_;FR*SOD*S*OTHR*296*10*_*_;FR*SOD*S*OTHR*296*1*_*_;FR*SOD*S*OTHR*296*4*_*_;FR*SOD*S*OTHR*296*7*_*_;FR*SOD*S*OTHR*296*8*_*_;FR*SOD*S*OTHR*296*9*_*_", + "opening_hours": "24/7", + "network": "SAS LE RUISSEAU", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref:EU:EVSE": "FROTHPOTHR29661;FROTHPOTHR29631;FROTHPOTHR29621;FROTHPOTHR296101;FROTHPOTHR29611;FROTHPOTHR29641;FROTHPOTHR29651;FROTHPOTHR29671;FROTHPOTHR29681;FROTHPOTHR29691", + "description": "LE RUISSEAU - BIDART", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56818300000, + 43.43650700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16", + "network": "SONEPAR SARREGUEMINES", + "description": "SONEPAR SARREGUEMINES", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6608715", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6608715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09712700000, + 49.11022100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/B0LKPLIYGT;Ruoms, Place Général de Gaulle", + "ref": "30323;B0LKPLIYGT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPB0LKPLIYGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34245600000, + 44.45395600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA2P2892037127521130132", + "description": "WAAT/s570502", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1181922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74420800000, + 47.65628900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLJ8JQKFADSVBM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRFR1P4914692706073253627", + "operator": "Freshmile | FR*FR1", + "ref": "892368" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83012900000, + 46.79495000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00392", + "description": "WARNING Toulouse", + "capacity": "2", + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "ref:EU:EVSE": "FRTCBP00392", + "start_date": "2021-08-12", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41351600000, + 43.71023300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P284403833190396934", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "22 kW;60 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/IRFUTY0EAR", + "opening_hours": "24/7", + "charging_station:output": "22 kW;60 kW", + "ref": "578894", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72035300000, + 47.65462200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-01-11", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPVALAUTOHYUNDAI592231", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Roncq", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13447800000, + 50.74361200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-20", + "ref:EU:EVSE": "FRS29E29039003", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "description": "Concarneau-Rue de la Forge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90173700000, + 47.92169200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDEA 10/HAKGNH2QU1", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7037980386590727419", + "ref": "1155591" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67317500000, + 48.48407400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1P4759253766361867302;FRZP1P8901951610580939374", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "576125;1028061", + "description": "Zephyre/LP003B37;Zephyre/LP003B38", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46688900000, + 47.20680700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "description": "RelaisDeLaPoste", + "start_date": "2021-06-26", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE96", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68408300000, + 48.51997100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79429", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/doullensgoret", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PDOULLENSGORET", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34281000000, + 50.15420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - CORMONTREUIL", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*176*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST17612;FRIZFPFAST17611;FRIZFPFAST17613", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05053635935, + 49.21567641957 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4929;FRS41E4930", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS41E4929;FRS41E4930", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - COUTURE SUR LOIR - Rue 08 du Mai 1945", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - COUTURE SUR LOIR - Rue 08 du Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68782000000, + 47.75244000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LE MANS - 5 Rue Joseph Marie Jacquard", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS72E72181008", + "charging_station:output": "11 kW", + "start_date": "2021-12-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18104370000, + 47.96601260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY314 - PAUL BERT - GARIBALDI", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-06-14", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*84*3*_*_;FR*SOD*S*LYON*84*1*_*_;FR*SOD*S*LYON*84*2*_*_;FR*SOD*S*LYON*84*4*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON8441;FRGLYPLYON8431;FRGLYPLYON8421;FRGLYPLYON8411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85169100000, + 45.75700600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E215619;FRS37E215620", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref": "FRS37E215619;FRS37E215620", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINT SENOCH - Rue Charles de Gaulle", + "network": "MODULO - SAINT SENOCH - Rue Charles de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96960000000, + 47.04540200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/HFJGYG", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PHFJGYG", + "network": "Mobilité électrique 56", + "ref": "75170" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.27921000000, + 47.72600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P43137A", + "network": "GAMM VERT - MONISTROL SUR LOIRE", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "GAMM VERT - MONISTROL SUR LOIRE", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-03-17", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRG10P43137A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16123300000, + 45.28763400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH13212;FROTHPAUCH13211", + "ref": "FR*SOD*S*AUCH*132*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "description": "AUCHAN - MARSAC-SUR-LISLE", + "start_date": "2023-08-24", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65993800000, + 45.19297800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE2212;FRSIGPSIGE2211", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2020-07-31", + "charging_station:output": "22 kW", + "description": "SIGEIF - BOULEVARD CARNOT PARKING - CARRIERES-SUR-SEINE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*22*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17895000000, + 48.90953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E002157;FRCG0E002155;FRCG0E002156", + "start_date": "2023-12-07", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "FCA Vannes - 56000", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "FCA Vannes - 56000", + "ref:EU:EVSE": "FRCG0E002157;FRCG0E002155;FRCG0E002156", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78420700000, + 47.66606600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "446678", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2268840601717393329", + "description": "Leclerc/CQPVKJX8F5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632200000, + 48.74190900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive;MOBIVE - SDEER 17", + "owner:ref:FR:SIREN": "251702197", + "socket:type2_combo:output": "36 kW", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "ref": "a5d5d6ea-c71f-50fc-8d00-a4c8b1be6d23;FR*SOD*S*MB17*55*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "operator": "191__SDEER17;IZIVIA", + "start_date": "2022-06-29", + "description": "MOBIVE | La Flotte en Ré | Rue Jean Moulin;LA FLOTTE EN RE - RUE JEAN MOULIN", + "ref:EU:EVSE": "FRS17PMB175512;FRS17PMB175511;Non concerné;FRS17PMB175513", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33143000000, + 46.19102000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-10-17", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "BYMYCAR - SAINT-DIE", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE88SYBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94251000000, + 48.28447200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "EDF", + "start_date": "2021-12-15", + "owner:ref:FR:SIREN": "200034460", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRA68P68021001", + "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", + "charging_station:output": "11 kW", + "description": "Dourdan", + "ref": "ccf6edd2-80ae-4131-9af8-cc81544f8a98 ", + "operator:email": "rcgc@edf.fr", + "operator": "EDF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02000000000, + 48.53000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3576EVCP02;LFR3576EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR3576EVCP02;LFR3576EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "COURSAN Toulouse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05068100000, + 43.22866200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-10", + "description": "GRENOBLE - Rue Victor Lastella - Chambre des Métiers (CITIZ)", + "ref:EU:EVSE": "FRM38E38185005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70500000000, + 45.18440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WXHZWTA5ER;Montmelian, avenue de Savoie", + "ref": "454482;WXHZWTA5ER", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPWXHZWTA5ER;FREBNP7466941079618503101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05138200000, + 45.50117500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLQXJLCFD5A833", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P3499154340811635681", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009185", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89877000000, + 45.78446400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E94068001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue André de Cayeux - Parking La Louvière 1", + "start_date": "2022-03-11", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48603760000, + 48.80461290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPVALLOYM;FREBNPVALLONULLYM", + "description": "Vallon-en-Sully, Mairie;Réseau eborn/vallonullym", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "vallonullym;231589" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60819000000, + 46.53430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPLTOHI", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "start_date": "2023-07-11", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864000000, + 50.51596100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E91377003", + "description": "Parking Massy Palais des Congrès - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26243000000, + 48.72447000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LES COLONNADES BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6651395", + "start_date": "2023-01-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6651395", + "operator:email": "info@chargepoint.com", + "description": "LES COLONNADES BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17582500000, + 46.84976600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "OBK3LW1EFF", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHPOBK3LW1EFF", + "description": "Saint-Brieuc , Lapeyre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73359760000, + 48.50618680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1902", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "ref": "FR*V75*PPX19*02", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Avenue de Flandre 61", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37307990000, + 48.88819500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7817033488739165312", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GM3IKXS9DT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529250" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15382400000, + 49.14641900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Paris | Rue Jean-Jacques Rousseau 62", + "ref": "FR*V75*PPX01*02", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "ref:EU:EVSE": "FRV75PPX0102", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34373420000, + 48.86408880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLNEC8A1W1CDU0", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P543683086531564812", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "971906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51407200000, + 49.91402600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-04-27", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDMD446001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "MG Motor - Saint-Nazaire", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26914800000, + 47.25807800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plourhan-Rue du Parc", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22232001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86942800000, + 48.62947800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "NARBONNE - Avenue Général Leclerc", + "ref:EU:EVSE": "FRS11E11262002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99275200000, + 43.17431300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "89772;89771", + "capacity": "1", + "charging_station:output": "7.4 kW;5.9 kW", + "start_date": "2021-11-12", + "description": " Villa Primerose - Arcis-sur-Aube - 7.4kW AC ;Villa Primerose - Arcis-sur-Aube - 7.4kW AC D ", + "operator:email": "advenir@zeborne.com", + "opening_hours": "Mo-sat 08:00-22:00,Sun 08:00-21:00", + "owner:ref:FR:SIREN": "424095370", + "ref:EU:EVSE": "FRZPEE74AC89772;FRZPEE74AC89771", + "network": "Villa Primerose", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13918550000, + 48.53407200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VAL DE SOS - Rue Grand Rd N°8 (Office Tourisme)", + "network": "Reveo", + "ref:EU:EVSE": "FRS09E09334001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49990000000, + 42.76830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref": "79498", + "charging_station:output": "22 kW", + "description": "FDE 80/GUCKJF", + "ref:EU:EVSE": "FRS80PGUCKJF", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68852000000, + 50.05260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-08", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST5313;FRIZFPFAST5311;FRIZFPFAST5312", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - NANTERRE PREFECTURE", + "ref": "FR*SOD*S*FAST*53*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22584590000, + 48.90132080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44E44087001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-24", + "charging_station:output": "50 kW;43 kW", + "description": "MACHECOUL - Boulevard Gabriel Reliquet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81621897200, + 46.99730700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "start_date": "2016-11-07;2023-05-15", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "01F5ZAKH61V1RD9ZS470MESW77", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Isles-les-Villenoy;ISLES-LES-VILLENOY - Rue De La Garenne", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77232A;FRS77E77232001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82595200000, + 48.91248300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "description": "GreenYellow Shift Mobility/91", + "ref:EU:EVSE": "FRGYMP6649593023174478391", + "opening_hours": "Sa,We,Th,Mo,Su,Tu,Fr 06:00-21:00", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "7.4 kW;150 kW", + "operator:email": "emobility.exploit@greenyellow.fr", + "operator": "GreenYellow | FR*GYM", + "ref": "1090989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47160000000, + 48.72482600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221220;FRS37E221218", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS37E221220;FRS37E221218", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MAZIERES DE TOURAINE - Rue du stade", + "description": "MODULO - MAZIERES DE TOURAINE - Rue du stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42164300000, + 47.38282800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "40__T2L", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1a568f2d-61ed-5384-928a-9b20e42c3fa6", + "description": "T2L - Longuyon - Avenue Charles de Gaulle", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61353600000, + 49.43615000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON10531;FRGLYPLYON10511;FRGLYPLYON10521;FRGLYPLYON10541", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY901 - TISSOT - BOURGOGNE", + "opening_hours": "24/7", + "start_date": "2021-08-02", + "ref": "FR*SOD*S*LYON*105*3*_*_;FR*SOD*S*LYON*105*2*_*_;FR*SOD*S*LYON*105*1*_*_;FR*SOD*S*LYON*105*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80430700000, + 45.77716700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-28;2023-12-14", + "operator": "Mobilize Power Solutions", + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00;24/7", + "ref": "f2af1277-f17e-4d3a-a992-30d618da31bf;10a93f9e-5bb5-4cf9-b7f6-618aab99035b;e7415a7e-364f-4271-a70d-ce8d6377cadc;0a6c2cf8-7eff-43b6-b5cc-58a843b2a6f6;dd2ecff3-0f9f-4916-8275-949f797cb47e;381dd887-2612-43d4-b205-2bce7a5ae8b9", + "network": "PIGEON KSH-SAS-MGB33 LANGON;DNA NISSAN LANGON", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "description": "Edenauto Langon", + "ref:EU:EVSE": "FRMBZEYEKWR;FRMBZEXWYRF;FRMBZEQTSRB;FRMBZEJUZGP;FRMBZELBDVH;FRMBZEWRGJF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15230000000, + 44.56150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "WattzHub", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "ref:EU:EVSE": "FRSMIP1050285821821695211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "756459", + "description": "WattzHub/63ca9147de530c3ec23826c5", + "operator": "WattzHub | FR*SMI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31663300000, + 48.76396200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING EXTERIE BORNE 2", + "ref:EU:EVSE": "FRCPIE6543455", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6543455", + "network": "PARKING EXTERIE BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16581000000, + 48.83814100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "674297", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/VYJZUKWZHX", + "ref:EU:EVSE": "FRLE2P1020039565330085970" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113800000, + 44.18181700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "start_date": "2020-03-31", + "description": "MOBIVE | Cavignac | Rte de Paris | Place des Roses-Proche la Poste;CAVIGNAC - RTE DE PARIS - PLACE DES ROSES-PROCHE LA POSTE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS33PMB333112;FRS33PMB333111;Non concerné", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "ref": "2c6fd519-9755-5bb5-9429-2bbd6dd69498;FR*SOD*S*MB33*31*1*_*_", + "owner:ref:FR:SIREN": "253303473", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38953900000, + 45.10160800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Villemoisson-sur-Orge - Avenue du Grand Orme", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "ref": "839bd3b5-aff2-554d-84d8-36556ec57348", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33062700000, + 48.66219700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPEMNS", + "charging_station:output": "22.08 kW", + "description": "Airbus - Montoir de Bretagne - G39 Parking P1 Ext du site", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16449300000, + 47.31589900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3763EVCP04;LFR3763EVCP03;LFR3763EVCP01;LFR3763EVCP02;LFR3763EVCP05", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "capacity": "10", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3763EVCP04;LFR3763EVCP03;LFR3763EVCP01;LFR3763EVCP02;LFR3763EVCP05", + "description": "ST JEAN DE LUZ Larrea" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64019100000, + 43.39818500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*60*2*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE6021;FRM06PNICE6022", + "start_date": "2022-04-06", + "description": "NICE - SEGURANE RP", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27957133984, + 43.69937022274 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "SAINT-CEZAIRE-SUR-SIAGNE - PARKING CO-VOITURAGE", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*195*1*_*_", + "start_date": "2023-06-16", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ19512;FRA16PWIIZ19511", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81582300000, + 43.65038200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477636", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Tu,Th,Mo,Fr,We,Sa 09:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/GOTDLPYRIO", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5462022060708857598" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08066200000, + 49.09912900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Buffalo Grill - Amnéville", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PBUFFAM", + "amenity": "charging_station", + "start_date": "2024-02-28;2024-01-31", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13530164020, + 49.24666526567 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPWRWQNR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Jaujac, Fabrias;Réseau eborn/WRWQNR", + "opening_hours": "24/7", + "ref": "75080;WRWQNR", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25690000000, + 44.63520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/7FF5E30D-ECE4-4144-BCAD-6BAFB70F9BD2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP2420519159132849199", + "operator:email": "support@evzen.com", + "ref": "927789", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39880300000, + 43.29975700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E33063005", + "operator": "Bouygues E&S", + "description": "BORDEAUX - ARS Belcier", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54692920000, + 44.82211710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FYDLG22UGH;346721", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Bourgoin Jallieu, Parking St Michel Sud, 43 Bd St Michel;Réseau eborn/FYDLG22UGH", + "ref:EU:EVSE": "FREBNP2842068721930607134;FREBNPFYDLG22UGH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27552000000, + 45.58898700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "852602259", + "socket:type2_combo:output": "25 kW", + "description": "F3CAlbon", + "capacity": "2", + "start_date": "2021-07-07", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEF3CALBON", + "operator": "EcoPhi mobility", + "charging_station:output": "25 kW;22 kW;3 kW", + "operator:email": "contact@properphi.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82067900000, + 45.24305000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP143008", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Charmes - ZA Hermitage", + "operator:email": "support@greenflux.com", + "start_date": "2023-02-07", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30318200000, + 48.36069600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "160 kW;60 kW", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "description": "Freshmile/Q4JVAXJQH0", + "ref": "510560", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2397476330255334857", + "charging_station:output": "160 kW;50 kW;22 kW;60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13100200000, + 50.59615600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue du Faubourg Saint-Denis 91", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FR*V75*PPX10*12", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1012", + "start_date": "2021-11-16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35514240000, + 48.87406980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8180165607524337561", + "ref": "477657", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/L5VJA9PLOF", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98865000000, + 45.66025500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo -Poitiers", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPCACHETGIRAUDVOLVO865801", + "capacity": "7", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-05-18", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31426300000, + 46.58134400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PAUTHEVERNESDERLY", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900072", + "start_date": "2016-10-17", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61224900000, + 49.23479000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E98613", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS18E98613", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST DOULCHARD - Clos Chaperon", + "description": "MODULO - ST DOULCHARD - Clos Chaperon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37298052000, + 47.10104724000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-09-15", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78442002", + "description": "NEAUPHLE-LE-CHATEAU - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89914000000, + 48.81371000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-07;2024-05-21;2024-07-22", + "operator": "IZIVIA", + "description": "QPARK - LYON - BROTTEAUX", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*64*9*_*_;FR*SOD*S*QPRK*64*8*_*_;FR*SOD*S*QPRK*64*5*_*_;FR*SOD*S*QPRK*64*4*_*_;FR*SOD*S*QPRK*64*3*_*_;FR*SOD*S*QPRK*64*2*_*_;FR*SOD*S*QPRK*64*18*_*_;FR*SOD*S*QPRK*64*17*_*_;FR*SOD*S*QPRK*64*16*_*_;FR*SOD*S*QPRK*64*14*_*_;FR*SOD*S*QPRK*64*13*_*_;FR*SOD*S*QPRK*64*12*_*_;FR*SOD*S*QPRK*64*11*_*_;FR*SOD*S*QPRK*64*10*_*_;FR*SOD*S*QPRK*64*1*_*_;FR*SOD*S*QPRK*64*15*_*_;FR*SOD*S*QPRK*64*19*_*_;FR*SOD*S*QPRK*64*20*_*_;FR*SOD*S*QPRK*64*21*_*_;FR*SOD*S*QPRK*64*6*_*_;FR*SOD*S*QPRK*64*7*_*_", + "charging_station:output": "0 kW;22 kW", + "opening_hours": "24/7", + "network": "QPARK", + "ref:EU:EVSE": "FRQPKPQPRK6491;FRQPKPQPRK64181;FRQPKPQPRK64171;FRQPKPQPRK64161;FRQPKPQPRK64151;FRQPKPQPRK64111;FRQPKPQPRK64101;FRQPKPQPRK6411;FRQPKPQPRK64121;FRQPKPQPRK64131;FRQPKPQPRK64141;FRQPKPQPRK64191;FRQPKPQPRK64201;FRQPKPQPRK6421;FRQPKPQPRK64211;FRQPKPQPRK6431;FRQPKPQPRK6441;FRQPKPQPRK6451;FRQPKPQPRK6461;FRQPKPQPRK6471;FRQPKPQPRK6481", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85904800000, + 45.76677700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "706250", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "description": "WAAT/FRWATLOR5TOUYM", + "ref:EU:EVSE": "FRWATP7112824995210765538", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25640000000, + 43.34151800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE412700", + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE412700", + "operator": "IONITY", + "start_date": "2019-05-28", + "charging_station:output": "350 kW", + "description": "IONITY Bonneville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41136400000, + 46.06429700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-08-22", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "LA COLOMBE - Hotel Massu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P50800001", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20721200000, + 48.86044500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "VILLE-SAINT-JACQUES - Place De L'Église;Ville-St-Jacques", + "ref:EU:EVSE": "FRS77E77516001;FRS77P77516A", + "start_date": "2016-09-07;2023-05-17", + "ref": "01F5ZAKH61543XR9FNK0WBWB8W", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89575600000, + 48.34273100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080188", + "owner:ref:FR:SIREN": "531680787;531680788;531680789", + "start_date": "2022-07-13", + "socket:type2_combo:output": "175 kW", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "RELAIS DE CASTETS", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080188", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13400000000, + 43.86970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E258953;FRS41E258952", + "description": "MODULO - VEUZAIN - Rue de l'Ecrevissière - T2", + "network": "MODULO - VEUZAIN - Rue de l'Ecrevissière - T2", + "ref:EU:EVSE": "FRS41E258953;FRS41E258952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17184600000, + 47.50139900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56P2909611690464811579", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/CGJZHNOXXN", + "ref": "782598", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00080000000, + 47.61730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3231EVCP01;559700", + "capacity": "2", + "amenity": "charging_station", + "description": "HOUTAUD Champagne;Freshmile/EK78LCBFCD", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "ref:EU:EVSE": "LFR3231EVCP01;FRFR1P8338671463837085152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32237400000, + 46.91292700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040G", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2022-06-03", + "description": "Metropolis - Express - Issy-les-Moulineaux - Bara", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26817216000, + 48.83272786000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "description": "Peugeot - GENTIL - Avallon", + "capacity": "4", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPGENTILPEUGEOT89200", + "start_date": "2019-12-12", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89438000000, + 47.49900100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76750001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-20", + "description": "YAINVILLE - Rue Théophile pourhomme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82964200000, + 49.45398600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P3835395538111129801", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454266", + "description": "Leclerc/G2MLRX4ZEK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025000000, + 47.28020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "e2c0d732-b252-5d1f-8b60-4e91ccfcc4d8", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Braud et Saint Louis | Av de la Republique | Parking Cdc Estuaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62400000000, + 45.25166700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-23", + "description": "VIARMES - Rue Lagrange - Parking avant Mairie", + "ref:EU:EVSE": "FRS95E95652001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36898135582, + 49.12605034665 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "description": "SALAISE", + "ref:EU:EVSE": "FRSITE00000187", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "start_date": "2023-12-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80428000000, + 45.34777000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/X6FFTH2H2I", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1099941939541680918", + "ref": "743025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80605100000, + 43.43204900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PE88OYFM8DH", + "description": "Eguilles, Avenue des Anciens Combattants", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35344200000, + 43.57154200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P8675606076682595723", + "operator:email": "roaming@freshmile.com", + "description": "SDEY/I5T2TSUYPP", + "ref": "699113", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26156500000, + 48.09517500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*45*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ4511;FRA16PWIIZ4512", + "description": "MOUGINS CENTRE SPORTIF DE MOUGINS LE HAUT", + "start_date": "2018-05-28", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03798600000, + 43.58760500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7555043295877540506", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1076820", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLVQD4F7A2QXVV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27478000000, + 43.33366000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PRTPMTB", + "start_date": "2023-11-28;2023-12-28", + "description": "Retail Park - Montauban", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38448504247, + 44.03947889763 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "ref:EU:EVSE": "FREBNPMHHDUPFFMV", + "capacity": "2", + "amenity": "charging_station", + "ref": "MHHDUPFFMV", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Tencin, Plaine des Jeux - Rue du Pré sec", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95297980000, + 45.30410440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "683237", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "description": "CARF - Bornes Publiques/86AFAEBF-A07F-4F93-981B-80D9BC7F856F", + "ref:EU:EVSE": "FREVZP3194829870093886641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45775000000, + 43.76511000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR65311", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*653*1*_*_", + "start_date": "2023-01-26", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "network": "ES B2B", + "description": "ES/ CREDIT AGRICOLE - BRUMATH", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70897000000, + 48.73164900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "HIMXOVAKJ0;75368", + "charging_station:output": "22 kW", + "description": "Réseau eborn/HIMXOVAKJ0;Sollies-Pont, Avenue de la Liberte", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNHIMXOVAKJ0;FREBNPHIMXOVAKJ0", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03984000000, + 43.19131100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/PVTHLSH5KU;Voiron, Rue Claude Guillermoz", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "477822;PVTHLSH5KU", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNP5061040828424641422;FREBNPPVTHLSH5KU", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-02-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58704200000, + 45.36627900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "start_date": "2022-03-18", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR34221;FROTHPOTHR34211", + "description": "CAMPING DE LOCEAN - CHATELAILLON-PLAGE", + "opening_hours": "24/7", + "network": "CAMPING DE LOCEAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*342*2*_*_;FR*SOD*S*OTHR*342*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09400300000, + 46.08669700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "412046", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2873195537598562265", + "opening_hours": "Tu,Th,Mo,Fr,We 08:00-12:00,Th,Tu,We,Fr,Mo 13:30-17:00", + "description": "Freshmile France/AR9PTVOSJU", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85826600000, + 50.10722000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "description": "Paris | Avenue d'Iéna 63", + "start_date": "2021-07-07", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1606", + "ref": "FR*V75*PPX16*06", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29519600000, + 48.87132880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20804550000, + 49.97256380000 + ], + [ + 1.20825740000, + 49.97242930000 + ], + [ + 1.20841830000, + 49.97252410000 + ], + [ + 1.20839420000, + 49.97255350000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CBHECV", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1PCBHECV", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "232438", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01701000000, + 44.93540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "ref:EU:EVSE": "FRSSDPDUPONT451001;FRSSDPDUPONT451002", + "amenity": "charging_station", + "start_date": "2022-05-23;2023-01-17", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "description": "BMW - Orléans - zone 2;BMW - Orléans - zone 1", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:00-12:00, Sa 13:30-19:00", + "operator:email": "support@driveco.com", + "capacity": "2;5", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91301800000, + 47.87671100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900076", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PAJOUBARRE", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78150600000, + 48.97842000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Louargat-Passage de la mairie", + "ref:EU:EVSE": "FRS22E22135001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34014300000, + 48.56667300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-sat 09:00-19:00,Sun 09:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "ref": "19827;19826", + "network": "Bricomarché - Challans", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Bricomarché - Challans - 22kW AC ; Bricomarché - Challans - 22kW AC ", + "owner:ref:FR:SIREN": "349542977", + "ref:EU:EVSE": "FRZIME22AC19827;FRZIME22AC19826", + "start_date": "2019-06-25", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86527700000, + 46.85848800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "description": "Mageha", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE259", + "opening_hours": "24/7", + "start_date": "2022-03-16", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14103800000, + 50.51533800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78123006", + "start_date": "2023-11-13", + "charging_station:output": "22 kW", + "description": "CARRIERES-SOUS-POISSY - Rue de la Senette", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03481098257, + 48.93633748187 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE413252;FRIOYE413202;FRIOYE413203;FRIOYE413204;FRIOYE413205;FRIOYE413251;FRIOYE413253", + "capacity": "7", + "description": "Village Catalan Ouest", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2021-01-21", + "network": "Village Catalan Ouest", + "opening_hours": "24/7", + "ref": "FRIOYE413252;FRIOYE413202;FRIOYE413203;FRIOYE413204;FRIOYE413205;FRIOYE413251;FRIOYE413253", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84838123000, + 42.57778696000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDED52/PGS8EFRLLN", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "ref:EU:EVSE": "FRS52P1624061052240325181", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "332234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48305700000, + 48.00948800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TARBES - Piscine Paul Boyrie", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS65E65440009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07776000000, + 43.22087000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Loché-sur-Indrois", + "amenity": "charging_station", + "start_date": "2023-05-26", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Loché-sur-Indrois", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE005902;FRIENE005901", + "ref:EU:EVSE": "FRIENE005902;FRIENE005901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332000000, + 47.05409000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VALRAS PLAGE - Parking Charles Thomas", + "start_date": "2024-03-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34324004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29287500000, + 43.24917300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SE61-DOMF-001", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "DOMFRONT EN POIRAIE", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61145A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65060200000, + 48.59405300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6289904378850115159", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/Z6FDZYEANJ", + "network": "Freshmile France", + "ref": "574556", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12431500000, + 45.01111700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Roulez Électrique En Haute-Garonne/ZJVBJM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PZJVBJM", + "network": "Roulez Électrique En Haute-Garonne", + "ref": "213038", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21608100000, + 43.46666700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE92004008", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ASNIERES-SUR-SEINE - Rue Robert Lavergne", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27278100000, + 48.92851200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000161;FRCG0E000162", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "BMW - BAVARIA MOTORS (LA GARDE) - 83130 - 1", + "ref:EU:EVSE": "FRCG0E000161;FRCG0E000162", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "BMW - BAVARIA MOTORS (LA GARDE) - 83130 - 1", + "operator:email": "info@chargeguru.com", + "start_date": "2022-11-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02628862000, + 43.13651980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING BARAQUES", + "start_date": "2021-06-18", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*121*2*_*_", + "network": "NICE RP", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE12121;FRM06PNICE12122", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19159500000, + 43.69658754195 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "24992b86-2afd-5fe0-b9ff-449a2c8b8b7f", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Seignosse | Place Victor Gentille", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43049500000, + 43.70820200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE57FGRA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-08-07", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "GRAND RUE - Florange", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12522700000, + 49.32803800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS193156;FRBMPS193155;FRBMPS193157", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Hotel Kyriad Libourne Saint-Emilion - Arveyres", + "operator:email": "exploitation@bump-charge.com", + "ref": "193157;193155;193156" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25705330000, + 44.90785850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3077EVCP03;LFR3077EVCP01;LFR3077EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "REIMS Lemoine", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3077EVCP03;LFR3077EVCP01;LFR3077EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03786300000, + 49.26783300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-9E, 83-81 Boulevard du Redon", + "ref:EU:EVSE": "FRM13PORSVRLD7DV", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42187100000, + 43.25328300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "ref": "e600b2f8-1aa5-5dc8-ab64-d7ba64016166", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Savigny-sur-Orge - Rue Henri Barbusse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34158300000, + 48.67886000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84000*AVG*E1SENH0WER", + "network": "ELECTRIC 55 CHARGING", + "start_date": "2020-11-17", + "amenity": "charging_station", + "capacity": "1", + "description": "AVENUE EISENHOWER - AVIGNON", + "ref:EU:EVSE": "FR55CP84000AVGE1SENH0WER", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79919300000, + 43.92959200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3194EVCP03;LFR3194EVCP01;LFR3194EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3194EVCP03;LFR3194EVCP01;LFR3194EVCP02", + "description": "ROGNAC", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22109900000, + 43.48686000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PSYUVDB", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-07-07;2023-06-29", + "description": "Super U - Briey", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94479800000, + 49.25588400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPHV3YYVD9CQ;FREBNP3817712075999836258", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "HV3YYVD9CQ;346751", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Entrelacs, Entrelacs, Pce JM Montillet;Réseau eborn/HV3YYVD9CQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94679900000, + 45.78623800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "477612", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/C6TP29MAZB", + "ref:EU:EVSE": "FRFR1P1176179406396735998", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35363400000, + 43.49678000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Carcassonne - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E11069001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34908000000, + 43.21763900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "96023", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGFBM3TN5RY", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/GFBM3TN5RY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36668900000, + 45.40213200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FQSBKCRGOP;Megève, Jardin Public RD1212", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPFQSBKCRGOP", + "ref": "FQSBKCRGOP;85781", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62106000000, + 45.85997000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "charging_station:output": "3.68 kW", + "start_date": "2022-08-30", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*464*1*_*_", + "description": "ES/ MAIRIE FROESCHWILLER", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR46412;FROTHPOTHR46411", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72301000000, + 48.94216000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GTRDTE5TIF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P5058719375419828404", + "network": "Freshmile France", + "ref": "419106", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62523000000, + 49.08000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Octeville-sur-Mer ", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10009607;FRUBIE10053447", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-08-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10501700000, + 49.53012200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SSIKRFQLWS", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8215569119894104882", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "741048" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00039000000, + 43.13422900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "ref:EU:EVSE": "FRTLSE31506056", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINT-ORENS DE GAMEVILLE - Rue du Moulin", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;90 kW;180 kW", + "start_date": "2023-03-02;2022-07-28", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53208845856, + 43.55432275296 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LSSZYXJHIQ", + "ref": "368872", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4433958695007430832", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57760400000, + 44.82553900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P3014822439403303950", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1162230", + "description": "MobiSDEC/LLWRTCRNHGDPHJ", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04120400000, + 48.84044800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SIGEAN - Place De L'Octroi", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-27", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11379002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98166666700, + 43.02750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78084001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-10-11", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BOISSY SANS AVOIR - École" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79780000000, + 48.81923000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "40__T2L", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "T2L - Longuyon - Place Salvador Allende", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ef6f8fb8-d110-5243-8745-168bd715888c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59963100000, + 49.44796600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/dampiermairie", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRS70PDAMPIERMAIRIE", + "opening_hours": "24/7", + "ref": "65000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67749000000, + 47.55690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "description": "LILLERS - D69/La Ferme de Philiomel", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-11-09;2021-07-06", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62516001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46432780000, + 50.55766290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "ST COULOMB - 1 place du marche ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35263001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91379100000, + 48.67526200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "start_date": "2022-11-17", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63103*A;SIEG63 - ePremium - Chatel Guyon - Europe", + "ref:EU:EVSE": "FRS63P63103A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref": "518291", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07257400000, + 45.91970900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VJBXXF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8710918729154311484", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "347204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12046000000, + 48.81094300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS32P2794735525310749541", + "description": "SDEG32/PJHOAYDA3O", + "network": "SDEG32", + "ref": "471264" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87569000000, + 43.77025300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-03-12;2021-03-11", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94002003", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "ALFORTVILLE - Place De L'Europe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42882200000, + 48.78900200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "ref": "FRCG0E001241;FRCG0E001239", + "network": "TREILLET IMMOBILIER - 12100 - 1", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRCG0E001241;FRCG0E001239", + "operator:email": "info@chargeguru.com", + "description": "TREILLET IMMOBILIER - 12100 - 1", + "opening_hours": "Su 08:30-19:30,Sa 08:30-19:30,Fr 08:30-19:30,Th 08:30-19:30,We 08:30-19:30,Tu 08:30-19:30,Mo 08:30-19:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05553400000, + 44.10746600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*237*2*_*_;FR*SOD*S*NICE*237*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-09-12", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE23722;FRM06PNICE23711;FRM06PNICE23712;FRM06PNICE23721", + "description": "NICE - PARKING MARNE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27111748382, + 43.72466336141 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Colayrac | Place Maurice Tisserand", + "ref": "ab555abb-5f3e-59ba-8ea1-4e5df0a240de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55293800000, + 44.22007800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE37711;FRSIGPSIGE37712", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*377*1*_*_", + "description": "SIGEIF - PLACE DES 7 FONTAINES - TAVERNY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21260000000, + 49.02710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76402002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MALAUNAY - Route de Montville", + "start_date": "2022-10-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04477500000, + 49.52774400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "description": "MEHUN SUR YEVRE", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3466EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "3", + "charging_station:output": "50 kW", + "ref": "LFR3466EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23718400000, + 47.14235800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Muron | Rue des Tilleuls", + "ref": "88353c70-39f7-5030-86be-e1d71b18d386" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82816400000, + 46.03612100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDE82/valencejean", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "39031", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PVALENCEJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89554100000, + 44.10916200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "RUE PAUL VAILLANT COUTURIER - CLAMART", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-04-30", + "ref:EU:EVSE": "FR55CP92140CLMVA1LLANT", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*55C*P92140*CLM*VA1LLANT", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26023700000, + 48.80461200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3619EVCP01;LFR3619EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "GOND PONTOUVRE Paris", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3619EVCP01;LFR3619EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17704300000, + 45.68192500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Le Pont-de-Beauvoisin", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMLPB", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-07-22;2024-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68444093520, + 45.52980007769 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "AT2IKRY1YG;32695", + "ref:EU:EVSE": "FREBNPAT2IKRY1YG", + "description": "Saint-Félicien, Place du Martouret;Réseau eborn/AT2IKRY1YG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62537600000, + 45.08545600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "start_date": "2024-08-26", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP72058A", + "description": "e-Totem - Domaine de la blanchardière ", + "ref:EU:EVSE": "FRETIP72058A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26774154287, + 47.99013663047 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-12;2023-09-12", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "description": "Contact Hotel - Colmar", + "ref:EU:EVSE": "FRPD1PCOHCLM", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36045972817, + 48.08758739279 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT915901", + "capacity": "4", + "start_date": "2024-05-20", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market La Ferté-Alais", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34577700000, + 48.48577500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "description": "Pessac - Hôtel Première Classe", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPPESPC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64491500000, + 44.78838600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "PARKING SUD DU ZOO DE BEAUVAL", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*578*9*_*_;FR*SOD*S*OTHR*578*6*_*_;FR*SOD*S*OTHR*578*49*_*_;FR*SOD*S*OTHR*578*48*_*_;FR*SOD*S*OTHR*578*47*_*_;FR*SOD*S*OTHR*578*46*_*_;FR*SOD*S*OTHR*578*45*_*_;FR*SOD*S*OTHR*578*44*_*_;FR*SOD*S*OTHR*578*39*_*_;FR*SOD*S*OTHR*578*37*_*_;FR*SOD*S*OTHR*578*35*_*_;FR*SOD*S*OTHR*578*34*_*_;FR*SOD*S*OTHR*578*33*_*_;FR*SOD*S*OTHR*578*32*_*_;FR*SOD*S*OTHR*578*31*_*_;FR*SOD*S*OTHR*578*3*_*_;FR*SOD*S*OTHR*578*30*_*_;FR*SOD*S*OTHR*578*28*_*_;FR*SOD*S*OTHR*578*24*_*_;FR*SOD*S*OTHR*578*23*_*_;FR*SOD*S*OTHR*578*21*_*_;FR*SOD*S*OTHR*578*2*_*_;FR*SOD*S*OTHR*578*20*_*_;FR*SOD*S*OTHR*578*14*_*_;FR*SOD*S*OTHR*578*13*_*_;FR*SOD*S*OTHR*578*12*_*_;FR*SOD*S*OTHR*578*11*_*_;FR*SOD*S*OTHR*578*1*_*_;FR*SOD*S*OTHR*578*10*_*_;FR*SOD*S*OTHR*578*15*_*_;FR*SOD*S*OTHR*578*16*_*_;FR*SOD*S*OTHR*578*17*_*_;FR*SOD*S*OTHR*578*18*_*_;FR*SOD*S*OTHR*578*19*_*_;FR*SOD*S*OTHR*578*22*_*_;FR*SOD*S*OTHR*578*25*_*_;FR*SOD*S*OTHR*578*26*_*_;FR*SOD*S*OTHR*578*27*_*_;FR*SOD*S*OTHR*578*29*_*_;FR*SOD*S*OTHR*578*36*_*_;FR*SOD*S*OTHR*578*38*_*_;FR*SOD*S*OTHR*578*40*_*_;FR*SOD*S*OTHR*578*4*_*_;FR*SOD*S*OTHR*578*41*_*_;FR*SOD*S*OTHR*578*42*_*_;FR*SOD*S*OTHR*578*43*_*_;FR*SOD*S*OTHR*578*50*_*_;FR*SOD*S*OTHR*578*5*_*_;FR*SOD*S*OTHR*578*7*_*_;FR*SOD*S*OTHR*578*8*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR57891;FROTHPOTHR57872;FROTHPOTHR57871;FROTHPOTHR57861;FROTHPOTHR57852;FROTHPOTHR578502;FROTHPOTHR578492;FROTHPOTHR578491;FROTHPOTHR578442;FROTHPOTHR578432;FROTHPOTHR578422;FROTHPOTHR57842;FROTHPOTHR578402;FROTHPOTHR578392;FROTHPOTHR578391;FROTHPOTHR578381;FROTHPOTHR578321;FROTHPOTHR57832;FROTHPOTHR57831;FROTHPOTHR578292;FROTHPOTHR578291;FROTHPOTHR578282;FROTHPOTHR578281;FROTHPOTHR578272;FROTHPOTHR578271;FROTHPOTHR578261;FROTHPOTHR57822;FROTHPOTHR578211;FROTHPOTHR57821;FROTHPOTHR578192;FROTHPOTHR578181;FROTHPOTHR578172;FROTHPOTHR578171;FROTHPOTHR578162;FROTHPOTHR578151;FROTHPOTHR578142;FROTHPOTHR578131;FROTHPOTHR578112;FROTHPOTHR57811;FROTHPOTHR578101;FROTHPOTHR578102;FROTHPOTHR578111;FROTHPOTHR57812;FROTHPOTHR578121;FROTHPOTHR578122;FROTHPOTHR578132;FROTHPOTHR578141;FROTHPOTHR578152;FROTHPOTHR578161;FROTHPOTHR578182;FROTHPOTHR578191;FROTHPOTHR578201;FROTHPOTHR578202;FROTHPOTHR578212;FROTHPOTHR578221;FROTHPOTHR578222;FROTHPOTHR578231;FROTHPOTHR578232;FROTHPOTHR578241;FROTHPOTHR578242;FROTHPOTHR578251;FROTHPOTHR578252;FROTHPOTHR578262;FROTHPOTHR578301;FROTHPOTHR578302;FROTHPOTHR578311;FROTHPOTHR578312;FROTHPOTHR578322;FROTHPOTHR578331;FROTHPOTHR578332;FROTHPOTHR578341;FROTHPOTHR578342;FROTHPOTHR578351;FROTHPOTHR578352;FROTHPOTHR578361;FROTHPOTHR578362;FROTHPOTHR578371;FROTHPOTHR578372;FROTHPOTHR578382;FROTHPOTHR578401;FROTHPOTHR57841;FROTHPOTHR578411;FROTHPOTHR578412;FROTHPOTHR578421;FROTHPOTHR578431;FROTHPOTHR578441;FROTHPOTHR578451;FROTHPOTHR578452;FROTHPOTHR578461;FROTHPOTHR578462;FROTHPOTHR578471;FROTHPOTHR578472;FROTHPOTHR578481;FROTHPOTHR578482;FROTHPOTHR578501;FROTHPOTHR57851;FROTHPOTHR57862;FROTHPOTHR57881;FROTHPOTHR57882;FROTHPOTHR57892", + "network": "ZOOPARC DE BEAUVAL", + "operator:email": "sav@izivia.com", + "start_date": "2023-02-13;2024-02-12;2024-02-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35377700000, + 47.24752500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "PILLAUD PONT-AUDEMER", + "amenity": "charging_station", + "network": "PILLAUD PONT-AUDEMER", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6769835", + "ref": "FRCPIE6769835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52818900000, + 49.34677000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "578906", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/JVRK3JQHGA", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P2626157393759596690", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02683200000, + 43.13631400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Rue Pierre Charron 55", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9008*04", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900804", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30326900000, + 48.86937000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510542", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4972244344635312046", + "charging_station:output": "22 kW", + "description": "Freshmile France/NAR10DSPNM", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18733000000, + 44.83721200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Tesla Supercharger Rennes", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP1763", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68439500000, + 48.08208000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "761487", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8606623913200099477", + "charging_station:output": "22 kW", + "description": "Freshmile France/I6QFCRFVXE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26165400000, + 43.70244400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "start_date": "2023-03-03", + "operator": "R3", + "description": "R3 - Norauto Roncq", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89258302", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13311500000, + 50.74002700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461664", + "description": "MobiSDEC/BKNQO1ST1J", + "ref:EU:EVSE": "FRS14P2222803894114727029", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47172900000, + 49.19940600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12223001", + "network": "Reveo", + "description": "SAINT GENEVIEVE SUR ARGENCE - Parking D900", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76028200000, + 44.80085400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "WAAT/FRWA5LWQHDMCWS", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref": "932061", + "ref:EU:EVSE": "FRWA5P6433989060946192096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24521300000, + 48.59713200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E4932800", + "operator": "Bouygues E&S", + "description": "SAUMUR - Angers", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07202170000, + 47.26952970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81096001", + "description": "LE FRAYSSE - Rue Firmin Coutal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41892800000, + 43.89716700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS VELIZY", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681589;531681588;531681586;531681587", + "socket:type2_combo:output": "300 kW", + "ref": "FRHPCPNF009208", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF009208", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-02-05", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17223400000, + 48.78143100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46102003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-10-01", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "FIGEAC - Parking Av. des Carmes n°7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03033100000, + 44.61334200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-05", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMCYRPV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Saint-marcel - Rue de la Bouie", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41843700000, + 47.80318800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CUINCY - Rue du Cardinal Allen", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59165001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05682900000, + 50.38318300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plouvorn-Rue Charles de Gaulle", + "ref:EU:EVSE": "FRS29E2921000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.03806900000, + 48.57864400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94067003", + "description": "SAINT-MANDÉ - Avenue Pasteur", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2021-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42341010000, + 48.84473450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRLMSP90273447", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel B&B Angers 2", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63341000000, + 47.46707400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "940f7dfd-aa71-5aae-a756-4d2cb910af14", + "description": "MOBIVE | Brantome | Chemin du Vert Galant (Parking des Reclus)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64810500000, + 45.36091700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 8 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE511;FRSIGPSIGE512", + "ref": "FR*SOD*S*SIGE*5*1*_*_", + "start_date": "2020-10-14", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20738500000, + 48.84315700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSCHLET", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2023-11-08", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "CHOLET", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84367000000, + 47.07649000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLIBP003740000001936;FRLIBP003740000001935", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "ref": "FRLIBP003740000001936;FRLIBP003740000001935", + "network": "ITM CLERMONT DE L'OISE 2;ITM CLERMONT DE L'OISE 1", + "description": "ITM CLERMONT DE L'OISE 2;ITM CLERMONT DE L'OISE 1", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24785210000, + 46.88354460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "71358d33-886e-5f16-8ce4-98969b34f886", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Anglet | Parking Service Technique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51534800000, + 43.48212800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ESSARTS-EN-BOCAGE(LES ESSARTS) - Place De L'Église", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-15", + "ref:EU:EVSE": "FRS85E85084002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22665000000, + 46.77294000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VALENCIENNES", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2023-02-10", + "operator": "Allego", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSVALENC", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51727800000, + 50.33474500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3949EVCP01;LFR3949EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "SEYSSINET-PARISET Grenoble", + "ref": "LFR3949EVCP01;LFR3949EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69166200000, + 45.16851700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PLBCSJV", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-10-25", + "description": "La Boucherie - Saint-Jean-de-Védas", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83877369944, + 43.56828827668 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPKYMNEXEV9U", + "description": "Réseau eborn/KYMNEXEV9U;Chorges, Place du Grand Logis", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "30374;KYMNEXEV9U", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27753400000, + 44.54731600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP2401493814526487661", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "description": "Norauto - Bornes publiques/60645100-d364-426f-aea1-b541e9a22721", + "ref": "590822", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10778200000, + 45.62177000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Shopping Promenade - Arles", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "20", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2024-01-15;2024-01-10;2024-01-25;2024-01-11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PFREARL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64312920000, + 43.70448390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRE11PLMAVIGNON841301", + "charging_station:output": "22.08 kW", + "start_date": "2018-10-04", + "description": "Leroy Merlin - Le Pontet - Avignon", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87727000000, + 43.98160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Speedwash Révolution Château Thierry", + "ref": "FRETIP02168A", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP02168A", + "start_date": "2024-06-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38920685935, + 49.03395464690 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CCVL - BRINDAS - PARKING DE LA SALLE DES FETES", + "start_date": "2021-03-18", + "ref": "FR*SOD*S*OTHR*148*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR14812;FROTHPOTHR14811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69627000000, + 45.72250500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "CELINE STATION 1", + "amenity": "charging_station", + "ref": "FRCPIE6951365", + "ref:EU:EVSE": "FRCPIE6951365", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "operator:email": "info@chargepoint.com", + "description": "CELINE STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57185100000, + 46.17167200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4756746514113406375", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/RXUGFUVPNA", + "opening_hours": "24/7", + "ref": "368923", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61964600000, + 44.86380300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "100 kW;400 kW", + "description": "ENGIE Vianeo Camions - Trucks Only - A6 Achères-Est", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "100 kW;400 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-07-08", + "ref:EU:EVSE": "FRVIAP111102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57340300000, + 48.36242600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "454005", + "ref:EU:EVSE": "FRFR1P8825487834808324851", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/EM4UWZE7FL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63370000000, + 46.84570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPAMPLITUDEBMW371703", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "BMW - Tours - véhicules d'occasion", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70282100000, + 47.33129300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/BNRBDCEV7P", + "ref:EU:EVSE": "FRFR1P2643629944319638448", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Freshmile | FR*FR1", + "ref": "626006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880400000, + 49.26570600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Hôtel GOLDEN TULIP - SAINT WITZ", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPGOLDENTULIP954701", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-06-15", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55411000000, + 49.08986100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "description": "MODULO - STE GEMME MORONVAL - Rte. de Moronval", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E130561", + "network": "MODULO - STE GEMME MORONVAL - Rte. de Moronval", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E130561", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41495800000, + 48.73762900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/TTGYEWCD4D", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P3453760077127130061", + "network": "MobiSDEC", + "ref": "461958", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36035700000, + 49.18705400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA6LEGBDXM3G", + "ref": "1128048", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P7204593880335156146", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23591400000, + 43.41428700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRANVILLE - Place Bedeau", + "start_date": "2017-02-03", + "ref:EU:EVSE": "FRS50P50400001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59552790000, + 48.83592080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ROUMEGOUX - Louis Vignals", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-20", + "ref:EU:EVSE": "FRS81E81233001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26336800000, + 43.80017800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "REL.POITOU CHARENTES SUD", + "owner:ref:FR:SIREN": "531680678;531680677;531680676;531680675;531680674;531680672;531680679;531680673", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref:EU:EVSE": "FRHPCPNF078016", + "amenity": "charging_station", + "start_date": "2023-03-21;2022-12-21;2023-04-17;2023-04-27", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37060000000, + 46.29780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "ANGERS - Place Jean XXIII;OuestCharge - Diva Sp - Angers - Jean XXIII", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-03-28;2021-05-26", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49007025;FRS49P49007Y", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56552000000, + 47.44919300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "46576", + "ref:EU:EVSE": "FRS60PFITZJAMES", + "description": "Mouv'Oise/fitzjames" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42130000000, + 49.39840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH07E59574001", + "description": "SOMAIN - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27954600000, + 50.35577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-01-09", + "description": "CASTILLON DU GARD - Chemin Du Chateau D'Eau", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30073001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55344800000, + 43.96966600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Ploërmel - Parc d'activités de Ronsouze", + "socket:type2_combo:output": "42 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PURNMJP", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2015-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38847000000, + 47.92039900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90212054", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2024-06-24", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Bourget-Gonesse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46047200000, + 48.97884400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-11-19", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888000, + 48.90712198000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-11", + "operator": "Shell Recharge", + "socket:type2_combo:output": "50 kW", + "operator:email": "customerservice@shellrecharge.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSHEE219", + "opening_hours": "24/7", + "description": "Shell AIRE DE L'OCEAN EST", + "charging_station:output": "50 kW;44 kW", + "ref": "FRSHEE219", + "network": "Shell AIRE DE L'OCEAN EST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08995808000, + 43.93721473000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-08-01", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E28134001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public", + "description": "DREUX - Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36066900000, + 48.73205600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89365082", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A6 Beaune Merceuil", + "start_date": "2022-12-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83847500000, + 46.96162600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Yrieix la Perche | Place du Président Magnaud", + "operator": "203__SEHV", + "ref": "128e47fd-9c23-5d53-85c5-1c126ab17c67" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20292500000, + 45.51633400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Parking Desplanques - Auxi Le Château", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE62ABDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11917200000, + 50.23063000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-12-29", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSMAUBG", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "MAUBEUGE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97657000000, + 50.29017500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LOOS EN GOHELLE Bethune", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3476EVCP02;LFR3476EVCP01", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3476EVCP02;LFR3476EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79455500000, + 50.44774700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PFMWWHATL3A", + "operator:email": "support@evzen.com", + "description": "Marseille-16E, Boulevard D'Annam" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32984600000, + 43.36127400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/TE9XLMEDEJ", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPTE9XLMEDEJ", + "ref": "25273", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59508500000, + 44.73409100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "résidence Dolce Vita", + "owner:ref:FR:SIREN": "418415642", + "start_date": "2022-08-24", + "operator:email": "exploitation@freshmile.com", + "capacity": "2", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "operator": "freshmile", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "description": "Hotel dolce vita", + "ref:EU:EVSE": "FRFR1EBVFK1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.63902418447, + 41.90917768393 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PINVCHA", + "description": "Jardiland - Châlons-en-Champagne", + "opening_hours": "24/7", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39640905893, + 48.94233989201 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/Q5DM2CCSDZ;Thorens Glieres/Filliere, Parking de la CCP de la Fillière", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75260;Q5DM2CCSDZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPQ5DM2CCSDZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25063000000, + 45.99859000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Road", + "amenity": "charging_station", + "ref": "1036029", + "ref:EU:EVSE": "FREFLP3701418302575598981", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Road/65e0581edc4544001c413d3b", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19060500000, + 49.06581000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "COMMUNE DE SAINT-FLOUR - VILLE HAUTE", + "ref:EU:EVSE": "FROTHPOTHR26111;FROTHPOTHR26112", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*261*1*_*_", + "opening_hours": "24/7", + "start_date": "2021-10-15", + "network": "COMMUNE DE SAINT-FLOUR", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08778600000, + 45.03282300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED PHOCEA", + "capacity": "2", + "amenity": "charging_station", + "description": "CGED PHOCEA", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6604555", + "ref": "FRCPIE6604555", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40529800000, + 43.27547700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "24", + "amenity": "charging_station", + "ref": "998805", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLOIGJTR3HUD77", + "ref:EU:EVSE": "FRFR1P7142110768464001945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22078400000, + 46.15984800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P7346628625920060659", + "ref": "1132353", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "description": "WAAT/s520617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34240700000, + 48.94171500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6645043500765826059", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "466122", + "charging_station:output": "22 kW", + "description": "Freshmile France/NKTSSSRIOZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98820000000, + 46.48500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "360 kW", + "amenity": "charging_station", + "ref": "1234630915;1234630914", + "network": "SOWATT SOLUTIONS", + "description": "ABB 360 TOYOTA ECHIROLLES B;ABB 360 TOYOTA ECHIROLLES A", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1234630915;FRSWSE1234630914", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2024-05-28", + "socket:type2_combo:output": "360 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71114900000, + 45.15075600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLKAWLWTW2O3OY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1208250199987204947", + "ref": "906705", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06812100000, + 45.04776300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPKIAVIERZON181001", + "opening_hours": "24/7", + "start_date": "2020-10-21", + "description": "Kia - Vierzon", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07300500000, + 47.20480200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2900400", + "start_date": "2023-03-09", + "description": "Bannalec-La Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70610900000, + 47.92664300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P2810875805560128578", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "88202", + "description": "SDEA 10/NCLUISOFLF", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24640300000, + 48.16685400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P4140745686092564439;FRZP1P4302981788888638440;FRZP1P6532287830163552403;FRZP1P6392453190577892690", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1121151;1120893;1121133;1120854", + "description": "Zephyre/LP20022E;Zephyre/LP200230;Zephyre/LP20022D;Zephyre/LP200232", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06423300000, + 44.54614300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "839265949;839265950", + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE667", + "opening_hours": "24/7", + "description": "ESAT_Cap_Energie_Pende", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58136070000, + 50.16032590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77288H", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "start_date": "2024-05-23", + "ref": "94699ed0-ce3f-41a7-a60f-58b67fbafb5e", + "description": "Melun - Almont", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67873300000, + 48.54349000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST14811;FRIZFPFAST14812;FRIZFPFAST14813", + "socket:type2_combo:output": "180 kW", + "ref": "FR*SOD*S*FAST*148*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "description": "IZIVIA FAST - MCDONALDS - PERPIGNAN", + "operator:email": "sav@izivia.com", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90641574961, + 42.68707516171 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4586;FRS41E4587", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS41E4586;FRS41E4587", + "charging_station:output": "0 kW", + "description": "MODULO - ROMORANTIN - Pl. du Mchl Leclerc", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - ROMORANTIN - Pl. du Mchl Leclerc", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74456500000, + 47.35615800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "387719", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/Creilrenc", + "capacity": "4", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60P1644902020087847789" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48285000000, + 49.25210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "SFS03 - CLOCHETTE", + "ref:EU:EVSE": "FRGLYPLYON6012;FRGLYPLYON6011", + "start_date": "2021-03-02", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*60*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85518400000, + 45.69455600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT PAULET DE CAISSON - Avenue De L'Ecole", + "ref:EU:EVSE": "FRS30E30290001", + "network": "Reveo", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59621800000, + 44.25933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFFTJZD", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-12", + "description": "Lanvaudan - Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26151800000, + 47.88934300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "216200451", + "start_date": "2023-02-10", + "operator:email": "exploitation@freshmile.com", + "capacity": "2", + "description": "AUBIGNY EN ARTOIS", + "operator": "freshmile", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1KPPH1", + "opening_hours": "24/7", + "ref": "FR*FR1*KPPH*1", + "charging_station:output": "22 kW", + "network": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59214200000, + 50.35295500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRN54E186925;FRN54E186924", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRN54E186925;FRN54E186924", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - PULNOY - Pkg. Atelier Artisanal", + "start_date": "2020-10-15", + "network": "MODULO - PULNOY - Pkg. Atelier Artisanal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25234700000, + 48.70712000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-12-01", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*197*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 1 RUE RENE - VIROFLAY", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE19712;FRSIGPSIGE19711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18420000000, + 48.80011800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "description": "AUDI Volkswagen Skoda Mouilleron le Captif - 85000", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "AUDI Volkswagen Skoda Mouilleron le Captif - 85000", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001736;FRCG0E001734;FRCG0E001735", + "ref:EU:EVSE": "FRCG0E001736;FRCG0E001734;FRCG0E001735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42348400000, + 46.72206900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Brie Comte Robert", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89903873", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60106500000, + 48.70265200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS40PMB406113;FRS40PMB406111;Non concerné;FRS40PMB406112;FRS40PMB406114", + "ref": "FR*SOD*S*MB40*61*1*_*_;7b269f91-a4b5-5122-b08d-b5d6af3c0633", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "start_date": "2020-05-29", + "operator": "199__SYDEC40;IZIVIA", + "description": "MOBIVE | Habas | Lotissement la Barraque;HABAS - LOTISSEMENT LA BARRAQUE", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92807300000, + 43.57119800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE85CABA", + "start_date": "2024-02-29", + "description": "UTILE - LA VERRIE", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99900000000, + 46.95919300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Bourg en Bresse", + "description": "Allego Carrefour Bourg en Bresse", + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-04-12", + "ref": "FRALLEGO9005212;FRALLEGO9005211;FRALLEGO9004221;FRALLEGO9004051;FRALLEGO9004052;FRALLEGO9004222;FRALLEGO9005261;FRALLEGO9005262", + "ref:EU:EVSE": "FRALLEGO9005212;FRALLEGO9005211;FRALLEGO9004221;FRALLEGO9004051;FRALLEGO9004052;FRALLEGO9004222;FRALLEGO9005261;FRALLEGO9005262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24167060000, + 46.20026400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "description": "CAPENS", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4140EVCP03;LFR4140EVCP01;LFR4140EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4140EVCP03;LFR4140EVCP01;LFR4140EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25632500000, + 43.34064000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM34E34259001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "description": "SAINT GEORGES D'ORQUES - Rue Du Four Chaux", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76798000000, + 43.62873600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "48445;R4SOF6UFOS", + "ref:EU:EVSE": "FREBNPR4SOF6UFOS", + "description": "Reignier-Esery, Rue du Môle;Réseau eborn/R4SOF6UFOS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26880000000, + 46.13461000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/KJTSGIT01W", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7287204071865637491", + "operator": "Freshmile | FR*FR1", + "ref": "735159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72460800000, + 49.11111200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "MEUDON - Place Centrale", + "capacity": "7", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-19;2024-03-18", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E92048001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22839800000, + 48.78725800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Aix les bains, Hippodrome;Réseau eborn/LLJED8Y6Z1Z0BZ", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "892815;LLJED8Y6Z1Z0BZ", + "start_date": "2023-06-27", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP2328859092125617014;FREBNPLLJED8Y6Z1Z0BZ", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90406600000, + 45.67201100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-10-04", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Freyming-Merlebach - E.Leclerc", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPFRMLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80868700000, + 49.13697300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E78513001", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking gare de Garancières La Queue P2 P+R - EFFIA", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76506600000, + 48.81003600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-28", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "HMV BORNE 1", + "charging_station:output": "22 kW", + "description": "HMV BORNE 1", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6638625", + "ref": "FRCPIE6638625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87724600000, + 48.07214100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRECHP6496413972842221923", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "description": "Easy Charge/Y3VAL8QRMQ", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref": "749274", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498000000, + 47.27943400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX17*16", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1716", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "description": "Paris | Rue Navier 47", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32420090000, + 48.89575740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "446519", + "ref:EU:EVSE": "FRFR1P282409154438814218", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/EVBSNL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51442000000, + 48.56610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "ref:EU:EVSE": "FRV75P901609", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue Chardon Lagache 2", + "ref": "FR*V75*P9016*09", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26833900000, + 48.84676100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20910160000, + 49.97191860000 + ], + [ + 1.20913410000, + 49.97192650000 + ], + [ + 1.20915550000, + 49.97188980000 + ], + [ + 1.20912310000, + 49.97188200000 + ], + [ + 1.20910160000, + 49.97191860000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QLKTCA", + "ref:EU:EVSE": "FRFR1PQLKTCA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "120776" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45618000000, + 48.53960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Hyundai - Aubenas", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPGOUNONHYUNDAI072081", + "operator:email": "support@driveco.com", + "start_date": "2022-06-16", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40515900000, + 44.61799800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Pleyber Christ-Rue Joliot Curie", + "start_date": "2023-03-23", + "ref:EU:EVSE": "FRS29E2916300", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.87445700000, + 48.50840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRUISSAN - Palais Des Congres", + "start_date": "2021-12-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11170002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09021060000, + 43.10840500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IES20210916529511", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lun-Ven 08:00-19:00, Sam 09:30-18:00", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": " ALLIANCE AUTOMOBILE;ALLIANCE AUTOMOBILE", + "ref:EU:EVSE": "FRZPEE176032;FRZPEE176034" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72843540000, + 48.63186150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "MAZERES - Boulevard Des Comtes", + "ref:EU:EVSE": "FRS09E09185001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67803200000, + 43.24959000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "102410", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/YHMTEU", + "ref:EU:EVSE": "FRS80PYHMTEU", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17600000000, + 49.77610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST31923;FRIZFPFAST31922;FRIZFPFAST31921;FRIZFPFAST31913;FRIZFPFAST31912;FRIZFPFAST31911", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-09-13", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*319*2*_*_;FR*SOD*S*FAST*319*1*_*_", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MC DONALDS - RONCHIN", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10690580000, + 50.60793610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Frossay - Robert Martin;FROSSAY - Rue Du Capitaine Robert Martin", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44061001;FRS44P44061A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-17;2021-04-19", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93351900000, + 47.24462400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-07;2023-05-12", + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77159001;FRS77P77159A", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "DONNEMARIE-DONTILLY - Rue De Monpensier;Donnemarie-Dontilly - Monpensier", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61YZWMDZXX2P107VVX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13953600000, + 48.47654700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "amenity": "charging_station", + "ref": "993402", + "capacity": "15", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/16", + "ref:EU:EVSE": "FRGYMP705138213519164549" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38356100000, + 48.80102900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - SAINT LAURENT DE LIN - Rue Grande Rue", + "operator": "Modulo", + "description": "MODULO - SAINT LAURENT DE LIN - Rue Grande Rue", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220279;FRS37E220280", + "ref": "FRS37E220279;FRS37E220280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25742600000, + 47.50743800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCTLB - Parking Semard-Lunéville", + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "ref": "72421518-e9a0-5357-87a7-c3fdec3174ff", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49780500000, + 48.58844600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Le Petit Epicier ", + "description": "Le Petit Epicier ", + "operator:email": "contact@ezdrive.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Th 08:00-12:00, Mo-Th 14:00-18:30, Su 08:00-12:00", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "895150423", + "operator": "Ezdrive" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.55142371262, + -21.21268401664 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "ref": "3b047577-4c67-5f71-a264-2e870f4c47e7", + "description": "MOBIVE | GRAYAN-ET-L'HOPITAL | Le Gurp" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14959800000, + 45.43414200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "THIAIS - Rue Auguste Renoir", + "ref:EU:EVSE": "FRSIPE94073002", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38723752652, + 48.76865939210 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SUPER U SEM BORNE 8", + "network": "SUPER U SEM BORNE 8", + "start_date": "2023-07-03", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6747105;FRCPIE6530285;FRCPIE6747085", + "ref": "FRCPIE6747105;FRCPIE6530285;FRCPIE6747085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77306700000, + 47.26887200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/AUUTZ5ZPWK", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3109898594580953319", + "ref": "446663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33768200000, + 48.19015600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Canejan | Chemin la House", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "5b6f0a70-fa64-5754-8441-b55d5213665c", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64122000000, + 44.75034300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "start_date": "2016-10-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - Pamproux - Mairie", + "ref:EU:EVSE": "FRSEOPAB53156A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05534470000, + 46.39596290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-03", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUST041", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Airbus - Marignane - Parking T04", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23273600000, + 43.43090100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARPIQUET ", + "ref": "LFR3974EVCP04;LFR3974EVCP03;LFR3974EVCP01;LFR3974EVCP02", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3974EVCP03;LFR3974EVCP01;LFR3974EVCP04;LFR3974EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42203900000, + 49.18719800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "414756", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM45P3773022091321481734", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/LUGYSMFOZQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94856000000, + 47.93718000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-20", + "ref": "FR*SOD*S*WIIZ*170*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "VILLARS SUR VAR - PARKING BAS VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ17012;FRA16PWIIZ17011", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09553463859, + 43.93609044371 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "749340", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/KOB2XOCXWB", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7530814883679939142" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83972800000, + 48.68005200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "description": "Boulangerie Jeanne - Charmes", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBOULJE", + "opening_hours": "24/7", + "start_date": "2023-12-30;2024-03-18", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30407363069, + 48.35960945391 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPDBGJDBSHVN", + "ref": "DBGJDBSHVN", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Aups, Parking de la colle ", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22004267000, + 43.62668370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2023-07-25", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPSPIAM", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "Saint-Pierre-d'Irube - CC Ametzondo Shopping", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44596000000, + 43.48195000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2023-12-13", + "ref:EU:EVSE": "FRP07E301890031;FRP07E30189003;FRP07E301890032", + "description": "NÎMES - Maison Carrée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35495000000, + 43.83919900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSA4FXRNXKE", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31642;SA4FXRNXKE", + "description": "Le Coteau, Parking capitaine Aucey;Réseau eborn/SA4FXRNXKE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08564600000, + 46.02981300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP945708400243803114;FRECHPWO5HAKLPQY", + "description": "GAP , Parking Boulevard Bellevue;Easy Charge/WO5HAKLPQY", + "amenity": "charging_station", + "capacity": "6;9", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref": "WO5HAKLPQY;749268", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08605500000, + 44.55935900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16", + "operator": "Greenflux", + "charging_station:output": "62 kW;22 kW;300 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A26 Mont de Nizy", + "ref:EU:EVSE": "FRVIAP102113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515100000, + 49.44985800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20655880000, + 49.97104590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/U4M4GQBZCD", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5209864278271171355", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref": "466200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10790900000, + 43.51299100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX08*18", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0818", + "start_date": "2021-10-26", + "description": "Paris | boulevard Malesherbes 7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32264880000, + 48.87060100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5486559103139675411", + "ref": "1084785", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLVQORRW0R3SFD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46664600000, + 47.86548600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Renault - Quincy sous Sénart", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2022-02-25;2021-06-17", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINRENAULT914801", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52760900000, + 48.67845700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SYDED/UBXXUV", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS25PUBXXUV", + "ref": "79918", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33960000000, + 47.09480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E206360;FRS18E206359", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - AVORD - Bibliothèque", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E206360;FRS18E206359", + "description": "MODULO - AVORD - Bibliothèque" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65359000000, + 47.03591000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-09-15", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78367002", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "MAREIL-MARLY - Vergers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08187000000, + 48.88285000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "QPARK - 83009 TOULON - COLIBRI LA RODE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPQPRK1521;FRQPKPQPRK1511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "ref": "FR*SOD*S*QPRK*15*1*_*_;FR*SOD*S*QPRK*15*2*_*_", + "start_date": "2022-08-05", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94299600000, + 43.11953900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2024-08-22", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CADIX - Place Des Marronniers", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81047001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47707200000, + 43.97604200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-07-24", + "network": "IONITY GMBH", + "capacity": "5", + "ref": "FRIONE408100", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Darvault", + "operator": "IONITY", + "ref:EU:EVSE": "FRIONE408100", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72167600000, + 48.26440700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-21;2024-05-08;2024-04-18", + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44175A;FRS44E44175001", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "SAINT-LYPHARD - Salle Sainte-Anne;OuestCharge - Diva Sp - Saint-Lyphard - Sainte-Anne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30658500000, + 47.39953900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "charging_station:output": "18 kW;24 kW;22 kW", + "ref": "cefb0f1d-9ba6-4c06-a31d-783a8535bbca", + "description": "Samois-sur-Seine - Cèpe;SAMOIS-SUR-SEINE - Cèpe", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "capacity": "4", + "start_date": "2024-05-13", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "socket:type2_combo:output": "24 kW", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77E77441001;FRS77P77441A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74670100000, + 48.45125900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DIJON-BROGNON", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "owner:ref:FR:SIREN": "531680646;531680645", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "start_date": "2021-06-09;2023-04-26", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF080042", + "ref:EU:EVSE": "FRHPCPNF080042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16930000000, + 47.42290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SAVIGNY SUR BRAYE - Av. de Braye", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - SAVIGNY SUR BRAYE - Av. de Braye", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E153650;FRS41E153651", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E153650;FRS41E153651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80906800000, + 47.88044500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-10-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Auray - Parking Kériolet", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PZJSCSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98203000000, + 47.66861500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LIM02 - VALANTIN", + "ref": "FR*SOD*S*LYON*183*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON18312;FRGLYPLYON18311", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-01-06", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77209000000, + 45.83759700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - Citadine - Antony - Velpeau", + "ref:EU:EVSE": "FRMGPP92002D", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2021-11-09", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922000, + 48.75483829000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT627001", + "capacity": "4", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "start_date": "2019-11-14", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Peugeot - Bruay" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58142000000, + 50.49694800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "unclassified", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011;Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20948960000, + 49.97118120000 + ], + [ + 1.20770820000, + 49.97082760000 + ], + [ + 1.20696510000, + 49.97069030000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref": "FRCPIE6593945;FRCPIE6593935", + "network": "SUPER U CHANGE BORNE 1", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6593945;FRCPIE6593935", + "description": "SUPER U CHANGE BORNE 1", + "operator:email": "info@chargepoint.com", + "opening_hours": "Su 00:00-24:00,Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27487200000, + 47.98161300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/Y7RR8FAT3Y", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1010955710503516245", + "ref": "492066" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75765300000, + 50.48235700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Pessac-Sur-Dordogne | Place du Pont", + "ref": "b58e7405-0bb2-5de5-b669-0619e186547f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07874700000, + 44.82074400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95352001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LUZARCHES - Parking - Place de l'Ange ", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42115260736, + 49.11309365474 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "start_date": "2024-05-19", + "network": "CHAVAGNES ASF", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "capacity": "14", + "description": "CHAVAGNES ASF", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRALLPASF022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28304000000, + 46.87332800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRLE2P1602395446991564639", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/WCCOPA7FR3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505797" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986400000, + 48.28278400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Allauch, Chemin Marius Milon", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PL8S0A4J2GJ", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46847200000, + 43.33472200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402473", + "ref:EU:EVSE": "FRS89P9018165625143178591", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/DKORVPTIL0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72346900000, + 47.81809700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ30112;FRA16PWIIZ30111", + "start_date": "2024-06-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*301*1*_*_", + "network": "WIIIZ", + "description": "PUGET-SUR-ARGENS - PARKING BOUCHONNIERE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68479580000, + 43.45481210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "510536", + "description": "Freshmile France/MYXF37NMTW", + "ref:EU:EVSE": "FRFR1P2220342273832488121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36675100000, + 43.12493100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1POPZETZ", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "O'Pizzicato - Entzheim", + "start_date": "2022-12-21", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65240340000, + 48.54146070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPZPHI6U0NI2;FREBNP670583270372568826", + "ref": "743022;ZPHI6U0NI2", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/ZPHI6U0NI2;Vougy, Rue de Verdun", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11638000000, + 46.10200600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref": "1059876", + "description": "EVzen/93526F64-C75E-41FB-9CA3-A57EE1752130", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP8869312487434769344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74211200000, + 47.85383500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR62311;FROTHPOTHR62312", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*623*1*_*_", + "start_date": "2023-05-04", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "BRICOMARCHE - PITHIVIERS LE VIEIL", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23180300000, + 48.15878400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/XZXALUKTTA;Saint-Bonnet-De-Valclerieux, Place du Lavoir", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPXZXALUKTTA", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "XZXALUKTTA;37159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14265200000, + 45.19498500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPH5N3BW8X1L", + "ref": "H5N3BW8X1L;31975", + "description": "Valence, Place Herriot;Réseau eborn/H5N3BW8X1L", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89454400000, + 44.93474400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR31311;FROTHPOTHR31321;FROTHPOTHR31331;FROTHPOTHR31341", + "description": "SUPER U - DUN-SUR-AURON", + "operator:email": "sav@izivia.com", + "start_date": "2022-02-02", + "ref": "FR*SOD*S*OTHR*313*4*_*_;FR*SOD*S*OTHR*313*1*_*_;FR*SOD*S*OTHR*313*2*_*_;FR*SOD*S*OTHR*313*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56942900000, + 46.88970800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FQ5XVNKIGI", + "ref:EU:EVSE": "FRFR1P4277302171961290664", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "opening_hours": "Sa 14:00-18:00,Sa 08:00-12:00,Mo,Th,Fr,Tu,We 07:45-12:00,Tu,Fr,Mo,Th,We 13:30-19:00", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "515012", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07803300000, + 48.89969100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-07-09", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX15*17", + "ref:EU:EVSE": "FRV75PPX1517", + "opening_hours": "24/7", + "description": "Paris | Avenue de Suffren 112", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30454760000, + 48.84892300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2064015309883584075", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/WSUNAEBUPJ", + "ref": "529757", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09008000000, + 45.97814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "description": "Hyundai - Montceau les Mines", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-04-01", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPGUILLETHYUNDAI713001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36167500000, + 46.68094600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-05-13", + "ref:EU:EVSE": "FRS27PSTGEORGESVIEVREMAIRIE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900039", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58499200000, + 49.24390200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22072001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Gurunhuel-Parking de la mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29928000000, + 48.51579300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRY18E78350002", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LOUVECIENNES - Rue Du Professeur Guyon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11280400000, + 48.86229200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE208", + "description": "Citeliv", + "operator": "RossiniEnergy", + "start_date": "2022-01-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03857270000, + 50.63539370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78005002", + "description": "ACHERES - Place De La Jamais Contente", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-06-22", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06951500000, + 48.96030400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-09-27", + "capacity": "7", + "ref": "FRIOYE404353;FRIOYE404302;FRIOYE404301;FRIOYE404303;FRIOYE404304;FRIOYE404351;FRIOYE404352", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE404353;FRIOYE404302;FRIOYE404301;FRIOYE404303;FRIOYE404304;FRIOYE404351;FRIOYE404352", + "network": "Poitiers Chincé", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Poitiers Chincé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37108917000, + 46.70183171000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS52P2649055422743731662", + "ref": "474510", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "description": "SDED52/UDQVGJDSB8", + "opening_hours": "24/7", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60106100000, + 47.78257700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTGAILLARD - Place des Truca Taoulès", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65320001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-03-22", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10786900000, + 43.12572100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Caumont-sur-Aure", + "operator": "NW IECharge", + "description": "Caumont-sur-Aure", + "ref:EU:EVSE": "FRIENE003301;FRIENE003302", + "ref": "FRIENE003301;FRIENE003302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82304700000, + 49.08860200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-11-23", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34265001", + "charging_station:output": "22 kW", + "description": "SAINT JEAN DE CORNIES - Chemin des écoliers", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99916944444, + 43.74499720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "BAZOCHE SUR HOENE", + "ref:EU:EVSE": "FRS61P61029A", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-BAZO-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47067300000, + 48.55320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLHQ4J0MN27IO3", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4607225639830814203", + "ref": "892017", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01687500000, + 43.55462500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUBBRPV", + "ref": "UBBRPV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-01-16", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "description": "Cintegabelle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53181000000, + 43.31390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Ford - Groupe Dugardin - Bois Grenier - Armentières", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "start_date": "2020-10-21", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD592801", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89500000000, + 50.65647300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "network": "Mairie de Hauteluce - Chef-lieu", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000048;FRCG0E000046;FRCG0E000047", + "charging_station:output": "11 kW;2 kW", + "operator:email": "info@chargeguru.com", + "description": "Mairie de Hauteluce - Chef-lieu", + "ref": "FRCG0E000048;FRCG0E000046;FRCG0E000047" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58294600000, + 45.74916200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMEVALMOUREZE11", + "start_date": "2022-07-12", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "ref": "325f41d9-7c4a-48ee-9a78-90eb82731102", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "AUBERGE DE VAL MOUREZE " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35000000000, + 43.62000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "ref": "b05fd225-d25f-560e-8bb0-e236872feb02", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Aren | Rue Carrère" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68924300000, + 43.26080700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-03", + "description": "Colruyt - Luneville", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE54LCYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48166200000, + 48.58335900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP7304141475002767384", + "opening_hours": "24/7", + "ref": "1034880", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "description": "BornEco/65f97866a57e1ebffc136bd4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16687200000, + 46.99560600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3177EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "COMMERCY 155eme RI", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3177EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59751100000, + 48.75406700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-2E, 29 Boulevard de dunkerque", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PYLFBSWOZES", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36785100000, + 43.30818400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "description": "TE90/XDHKLG", + "ref": "135592", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRS90PXDHKLG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85355000000, + 47.64150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "RUE DEWOITINE - VELIZY", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-07-21", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P78140*VLZ*DEWOITINE", + "ref:EU:EVSE": "FR55CP78140VLZDEWOITINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21545600000, + 48.78283300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7968438347817107291", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/QVUXSYMJAL", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "896640", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88061600000, + 49.12056400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUPDV", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Super U - Pierrefeu-du-Var" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14539660000, + 43.21938290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "Saint-Firmin, ZA sous la Roche;Réseau eborn/TKYLXPMQQR", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPTKYLXPMQQR", + "ref": "30449;TKYLXPMQQR", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01944000000, + 44.77490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "ref": "FRFASE33096", + "start_date": "2024-02-10", + "amenity": "charging_station", + "description": "Fastned Aire de Romagnieu", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFASE33096", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "network": "Fastned Aire de Romagnieu", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63069630000, + 45.57766571000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "PLESSIS-TREVISE", + "operator": "IZIVIA", + "ref": "FR*SOD*S*PLTR*2*1*_*_", + "description": "PLESSIS-TREVISE - PARKING DE LA MAIRIE", + "owner:ref:FR:SIREN": "219400595", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPPLTR211;FROTHPPLTR212", + "charging_station:output": "22 kW", + "start_date": "2018-01-09", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57315700000, + 48.80879200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGXDZ8OG6HC", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "75194", + "description": "Réseau eborn/GXDZ8OG6HC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42500000000, + 45.90611100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP7713804568167679006", + "description": "Réseau eborn/LLSU6NO681DFU8", + "ref": "1026822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76971800000, + 45.48975000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-21", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR43771;FROTHPOTHR43751;FROTHPOTHR43741;FROTHPOTHR43721;FROTHPOTHR43711;FROTHPOTHR43731;FROTHPOTHR43761;FROTHPOTHR43781", + "capacity": "1", + "opening_hours": "24/7", + "network": "MAISONS FRANCE CONFORT", + "ref": "FR*SOD*S*OTHR*437*8*_*_;FR*SOD*S*OTHR*437*6*_*_;FR*SOD*S*OTHR*437*4*_*_;FR*SOD*S*OTHR*437*3*_*_;FR*SOD*S*OTHR*437*2*_*_;FR*SOD*S*OTHR*437*1*_*_;FR*SOD*S*OTHR*437*5*_*_;FR*SOD*S*OTHR*437*7*_*_", + "operator:email": "sav@izivia.com", + "description": "MAISONS FRANCE CONFORT - TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39011200000, + 43.60163600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "start_date": "2024-05-13", + "description": "ITM LAMORLAYE ", + "ref": "FRFR1EVNLW1", + "owner:ref:FR:SIREN": "918444660", + "operator": "Eoliberty", + "ref:EU:EVSE": "FRFR1EVNLW1", + "network": "ITM LAMORLAYE ", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42505318221, + 49.15014719905 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP30036", + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Gassin, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58039600000, + 43.26301000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7884964723420129536", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "674222", + "description": "Freshmile France/GVSCIPZ5TS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86564400000, + 48.05122500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "description": "NIEDERHERGHEIM-ZA Rue des Vosges", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "7373ca95-a2d0-535a-926d-f7a3bd472bc1", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37977600000, + 47.99433700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "94250", + "description": "Freshmile France/XPBHMS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PXPBHMS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53424000000, + 47.91720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P748849764110903137", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1080540", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLW67E3WG17XPQ", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08631500000, + 49.36124900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/CIR_12135033730003", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P6306008805549828602", + "ref": "601068", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63117400000, + 48.18639700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-30", + "ref:EU:EVSE": "FRROSE424", + "description": "FPB_Colomiers", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29694800000, + 43.59883100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VERNEUIL-SUR-SEINE - Rue de Bazincourt", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78642003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-07-04", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96790900000, + 48.98052900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "description": "CCTLB - AZERAILLES - Parking Richez", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "53da42a4-965f-56b3-8515-1dfb5c574adc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69451500000, + 48.48785200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66178001", + "start_date": "2018-02-12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "SAINT JEAN PLA DE CORTS - Square Guy Male" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79080000000, + 42.51167800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20703870000, + 49.97233050000 + ], + [ + 1.20676530000, + 49.97215640000 + ], + [ + 1.20656640000, + 49.97202670000 + ], + [ + 1.20655690000, + 49.97199710000 + ], + [ + 1.20657450000, + 49.97172820000 + ], + [ + 1.20656500000, + 49.97168550000 + ], + [ + 1.20649190000, + 49.97161590000 + ], + [ + 1.20641070000, + 49.97153930000 + ], + [ + 1.20634740000, + 49.97146730000 + ], + [ + 1.20612110000, + 49.97121020000 + ], + [ + 1.20629030000, + 49.97086200000 + ], + [ + 1.20635790000, + 49.97080110000 + ], + [ + 1.20638770000, + 49.97079150000 + ], + [ + 1.20641510000, + 49.97079820000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "100 kW;7.36 kW", + "description": "IKEA CAEN - PARKING DIVERS SUD/PMR;IKEA CAEN - PARKING CLIENTS", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA12453;FRIKAPIKEA12452;FRIKAPIKEA12451;FRIKAPIKEA12441;FRIKAPIKEA12421;FRIKAPIKEA12381;FRIKAPIKEA12371;FRIKAPIKEA12351;FRIKAPIKEA12341;FRIKAPIKEA12331;FRIKAPIKEA123211;FRIKAPIKEA12321;FRIKAPIKEA123201;FRIKAPIKEA123181;FRIKAPIKEA123131;FRIKAPIKEA123121;FRIKAPIKEA12311;FRIKAPIKEA123101;FRIKAPIKEA123111;FRIKAPIKEA123141;FRIKAPIKEA123151;FRIKAPIKEA123161;FRIKAPIKEA123171;FRIKAPIKEA123191;FRIKAPIKEA12361;FRIKAPIKEA12391;FRIKAPIKEA12411;FRIKAPIKEA12431", + "ref": "FR*SOD*S*IKEA*124*1*_*_;FR*SOD*S*IKEA*123*5*_*_;FR*SOD*S*IKEA*123*4*_*_;FR*SOD*S*IKEA*123*3*_*_;FR*SOD*S*IKEA*123*2*_*_;FR*SOD*S*IKEA*123*19*_*_;FR*SOD*S*IKEA*123*17*_*_;FR*SOD*S*IKEA*123*14*_*_;FR*SOD*S*IKEA*123*12*_*_;FR*SOD*S*IKEA*123*1*_*_;FR*SOD*S*IKEA*123*10*_*_;FR*SOD*S*IKEA*123*11*_*_;FR*SOD*S*IKEA*123*13*_*_;FR*SOD*S*IKEA*123*15*_*_;FR*SOD*S*IKEA*123*16*_*_;FR*SOD*S*IKEA*123*18*_*_;FR*SOD*S*IKEA*123*20*_*_;FR*SOD*S*IKEA*123*21*_*_;FR*SOD*S*IKEA*123*6*_*_;FR*SOD*S*IKEA*123*7*_*_;FR*SOD*S*IKEA*123*8*_*_;FR*SOD*S*IKEA*123*9*_*_;FR*SOD*S*IKEA*124*2*_*_;FR*SOD*S*IKEA*124*3*_*_;FR*SOD*S*IKEA*124*4*_*_;FR*SOD*S*IKEA*124*5*_*_", + "network": "IKEA", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com", + "capacity": "1;3", + "start_date": "2023-06-22;2023-10-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36502841391, + 49.14600964997 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35210001B1", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr", + "description": "PACE - 2 esplanade charles de gaulle " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77232700000, + 48.14873400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "518231", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "ref:EU:EVSE": "FRS63P63026A", + "capacity": "3", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63026*A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98108500000, + 45.66665700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "515033", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7134256206724232099", + "charging_station:output": "22 kW", + "description": "Freshmile France/HLGRFIGUUE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07412700000, + 43.56412500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-03-27", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PATMKAN", + "ref": "ATMKAN;33418", + "description": "Roulez Électrique En Haute-Garonne/ATMKAN;Auterive, Proudhon", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47748000000, + 43.35080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "capacity": "0", + "network": "SIPPEREC", + "description": "DRANCY - Rue Auguste Blanqui", + "ref:EU:EVSE": "FRSIPE93029005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45606660000, + 48.92081910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "start_date": "2023-07-07", + "description": "Groupe Hecquet Occasions", + "opening_hours": "24/7", + "network": "Groupe Hecquet Occasions", + "socket:type2_combo:output": "300 kW", + "ref": "FRCG0E000820;FRCG0E000821;FRCG0E000822;FRCG0E000823;FRCG0E000824", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000820;FRCG0E000821;FRCG0E000822;FRCG0E000823;FRCG0E000824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10081500000, + 49.33070700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-SAUVEUR-SUR-TINEE - PARKING DU CHAMP DE FOIRE", + "ref": "FR*SOD*S*NICE*213*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE21312;FRM06PNICE21311", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-05-31", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10464214062, + 44.08423682435 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "89645f6e-0024-507e-89b5-39f6c5a1dba1", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Casteljaloux | Place José Bes", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08817700000, + 44.31319000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-02-21", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIGPSIGE35112;FRSIGPSIGE35111", + "capacity": "2", + "description": "SIGEIF - 2 RUE JEAN JAURES PARKING DE CERNAY - ERMONT", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*351*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25678000000, + 48.98500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76165002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-12", + "description": "CAUDEBEC LES ELBEUF - Parking Rue Strasbourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02549970000, + 49.28144380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "description": "BESANCON Blum", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3195EVCP01", + "ref": "LFR3195EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01860300000, + 47.25516000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Sainte-Feyre | Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0768b107-397e-55c5-976e-a614a9f074ed", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91495200000, + 46.13927800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/EDJWMR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "38920", + "ref:EU:EVSE": "FRS82PEDJWMR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08815000000, + 44.33080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-07-18", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "PARKING SAINT-CHAMAND - AVIGNON", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84000*AVG*CHAMAND", + "ref:EU:EVSE": "FR55CP84000AVGCHAMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84218000000, + 43.93032000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3596EVCP01;LFR3596EVCP02", + "ref": "LFR3596EVCP01;LFR3596EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "CHATEAULIN Roz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05675800000, + 48.21120300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Evreux Netreville", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMEVR", + "start_date": "2022-11-23", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18181170000, + 49.02754800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39107;ZNYOVG5Q1H", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ZNYOVG5Q1H;Saint-Martin-D'Ardèche, Chemin du Grand Clos", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPZNYOVG5Q1H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56856300000, + 44.30135300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - BIARRITZ Rue de Madrid (parking)", + "ref:EU:EVSE": "FRETIP64122J", + "network": "Réseau e-Totem Infrastructures", + "capacity": "5;7", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "100 kW;7.4 kW;22 kW;150 kW", + "ref": "FRETIP64122J" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57238371908, + 43.46623316194 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "110 kW", + "ref:EU:EVSE": "FRPD1PCARLPO", + "charging_station:output": "110 kW;22 kW", + "description": "Carl's Jr. - Le Pontet", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87642526683, + 43.97888863407 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2024-09-10", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT596502", + "operator": "DRIVECO", + "description": "Carrefour Market - Villeneuve-D'ascq" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15032900000, + 50.62566700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "description": "Saint-Thibault-des-Vignes - Ibis Budget", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPSTVIB", + "start_date": "2024-05-24", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67324500000, + 48.86227400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "ref:EU:EVSE": "FROTHPOTHR54611;FROTHPOTHR54612", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*546*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ES/ BEINHEIM", + "start_date": "2022-12-13", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.08455800000, + 48.86309300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "capacity": "6", + "network": "E LECLERC BORNE 6", + "ref": "FRCPIE6744695;FRCPIE6744705;FRCPIE6744715", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "E LECLERC BORNE 6", + "ref:EU:EVSE": "FRCPIE6744695;FRCPIE6744705;FRCPIE6744715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25603400000, + 47.28738400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5297364416730279274", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1017027", + "network": "Freshmile France", + "description": "Freshmile France/LLPSA1P0C26TLH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11945700000, + 49.14138800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV17E15138001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MURAT - Avenue Hector Peschaud", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86694400000, + 45.11058200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "782550", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/SPRJJM", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7943964641477813578" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94213000000, + 49.41790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP2583", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Marne-la-Vallée", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67801900000, + 48.83087700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1297231197949450735", + "ref": "626111", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/JBWAJLPSDU", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67772000000, + 48.99086200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20696200000, + 50.68504900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/QE0UDZRZSN", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457539", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P7259862111154003565" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16783600000, + 49.11659200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MUR DE BARREZ - Rue des Ecoles", + "start_date": "2022-12-01", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12164003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66256300000, + 44.84263200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLQL3JB7DU", + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA4P2491429108554000556", + "capacity": "3", + "charging_station:output": "24 kW;11 kW", + "ref": "696500", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA4", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39074500000, + 50.62996500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-03-15;2021-04-23;2024-04-03", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49P49289A;FRS49E49289001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Jean-de-Linieres - Nationale;SAINT-JEAN-DE-LINIERES - Route Nationale", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66113700000, + 47.45704200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CASTRES - Place Soult - Parking Intèrieur", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81065012", + "start_date": "2022-01-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24700600000, + 43.60364300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHDFE62289001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ECUIRES - Chemin Blanc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75698525628, + 50.45387070230 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2021-06-02", + "description": "OuestCharge - Diva Sp - Vigneux-De-Bretagne - Complexe Sportif;VIGNEUX-DE-BRETAGNE - Complexe Sportif", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44217C;FRS44E44217003", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69554500000, + 47.33124100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Thiers - Forest", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2022-12-15", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS63P63430C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54640230000, + 45.85527960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "description": "CONDÉ-SUR-L'ESCAUT - Quai Petit Rempart Rive Droite", + "ref:EU:EVSE": "FRH03E59153003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59445300000, + 50.44741800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "description": "Plouarzel-Rue Stréat Lannoc", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2917700", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.73300300000, + 48.43293400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "L'HAY LES ROSES - Rue des Marguerites", + "ref:EU:EVSE": "FRSIPE94038005", + "network": "SIPPEREC", + "start_date": "2022-08-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35071570000, + 48.77738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90001623", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Soissons", + "amenity": "charging_station", + "start_date": "2023-11-06", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31210500000, + 49.36547100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Creysse | Place de la Creyssette", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "6b196dff-2c3d-543d-91df-2bceeab38b24", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56811700000, + 44.85540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 12 AVENUE DE LA REPUBLIQUE - MORANGIS", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*460*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-26", + "ref:EU:EVSE": "FRSIGPSIGE46012;FRSIGPSIGE46011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33188570000, + 48.70516470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "VERNON", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSVRNON", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-26", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47187000000, + 49.08991000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE CANNET Jourdan", + "ref:EU:EVSE": "LFR3396EVCP02;LFR3396EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3396EVCP02;LFR3396EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96685600000, + 43.56090400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Cambo les Bains | Place Sorhainde Borne 2", + "opening_hours": "24/7", + "ref": "5ace22ab-8136-577b-9064-f9746e432d8e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40054400000, + 43.36082800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85004001", + "description": "ANGLES - Route De Moricq", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39074700000, + 46.40573000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO8005422;FRALLEGO8005421;FRALLEGO8001722;FRALLEGO8001711;FRALLEGO8001712;FRALLEGO8001721", + "network": "Allego FR, Groupe Bertrand, Servon", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO8005422;FRALLEGO8005421;FRALLEGO8001722;FRALLEGO8001711;FRALLEGO8001712;FRALLEGO8001721", + "start_date": "2024-05-26", + "description": "Allego FR, Groupe Bertrand, Servon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58248600000, + 48.71182700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ANTHY-SUR-LEMAN - Robert Sud", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3806EVCP02;LFR3806EVCP01", + "ref:EU:EVSE": "LFR3806EVCP02;LFR3806EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43316300000, + 46.35004200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PKFCESS", + "opening_hours": "24/7", + "capacity": "9", + "start_date": "2024-04-15;2024-04-05;2024-04-19", + "operator": "Power Dot France", + "description": "KFC - Essey-lès-Nancy", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24683736375, + 48.71029098739 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Cuers, Avenue Mal De Lattre De Tassigny;Réseau eborn/YIOODBQSFH", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "YIOODBQSFH;85880", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPYIOODBQSFH;FREBNYIOODBQSFH", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07371900000, + 43.23660900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Marcotte", + "operator:email": "psasupport@evbox.com", + "network": "EVBOX", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator": "EVBOX", + "ref:EU:EVSE": "FREVBENFCRERPIRG7IBRQHTCR2APUVCM", + "start_date": "2022-04-11", + "owner:ref:FR:SIREN": "415192202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84558341665, + 50.66625618064 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "ref:EU:EVSE": "FRPD1PDTYBGC", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;22 kW;180 kW;160 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Darty - Bergerac", + "socket:type2_combo:output": "180 kW;160 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47851300000, + 44.83493100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-23", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 00:00-12:00,Mo-Fr 12:00-23:59,Th 00:00-23:59", + "ref:EU:EVSE": "FRE000009336824", + "owner:ref:FR:SIREN": "809172166", + "operator:email": "support@electromaps.com", + "description": "FGS1", + "network": "FGS", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80494200000, + 43.83764200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42218BL", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB Boulevard Fraissinette", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-04-05", + "ref:EU:EVSE": "FRESEPS42218BL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41909800000, + 45.41884500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LEVAPARC - PARKING SO OUEST - CANTON 33", + "network": "LEVAPARC", + "owner:ref:FR:SIREN": "353347222", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-01-15;2019-11-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LVPR*3*7*_*_;FR*SOD*S*LVPR*3*1*_*_;FR*SOD*S*LVPR*3*2*_*_;FR*SOD*S*LVPR*3*3*_*_;FR*SOD*S*LVPR*3*8*_*_", + "ref:EU:EVSE": "FROTHPLVPR382;FROTHPLVPR371;FROTHPLVPR332;FROTHPLVPR331;FROTHPLVPR322;FROTHPLVPR321;FROTHPLVPR311;FROTHPLVPR312;FROTHPLVPR372;FROTHPLVPR381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29755400000, + 48.89275400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6899585", + "description": "STATION 3C FUEL FOR PLANET", + "start_date": "2024-03-13", + "network": "STATION 3C FUEL FOR PLANET", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6899585", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28551600000, + 45.58477200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "598107", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/YNDBGQMNFP", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5073623011356020765", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669500000, + 47.49898400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Première Classe Soissons", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP121045", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-02-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31274400000, + 49.36556100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/UE0TCNCRDB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P886466095296361587", + "capacity": "3", + "opening_hours": "24/7", + "ref": "368947", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56778600000, + 44.85278700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:30, Tu 08:00-12:00, Tu 14:00-18:30, We 08:00-12:00, We 14:00-18:30, Th 08:00-12:00, Th 14:00-18:30, Fr 08:00-12:00, Fr 14:00-18:30, Sa 09:00-12:00, Sa 14:00-17:30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPJEANLAINHYUNDAI741001", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-08-04", + "description": "Hyundai - Jean Lain Automobiles - Annemasse", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26640600000, + 46.20057300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GL2UG1CLGJ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P7845967155670765591", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "515018", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82595100000, + 46.66677200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS18E112719", + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "network": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "description": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "opening_hours": "24/7", + "ref": "FRS18E112719", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43186000000, + 47.36434000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLV6PGU5U2NCZ8", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "1084809", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1239945092506119604" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10114600000, + 49.29157400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LKQ2XKCZH", + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P2193073334445944528", + "amenity": "charging_station", + "capacity": "1", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1127958", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11265800000, + 48.30183200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50250001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA HAYE - Rue du Vavasseur", + "network": "e-charge50", + "start_date": "2016-10-28", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54632260000, + 49.28946150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2018-04-23;2022-03-02", + "operator:email": "fr.duhamel@bouygues-es.com;support@alizecharge.fr", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S;BOUYGUES ENERGIES SERVICES", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "owner:ref:FR:SIREN": "258100072", + "charging_station:output": "18 kW;22 kW", + "description": "PARISOT - Place Du Lavoir", + "ref:EU:EVSE": "FRS81E8120200122;FRS81E8120200121;FRS81E81202001;FRS81E8120200111;FRS81E8120200112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83113600000, + 43.79899500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF059916", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "531680516;531680517", + "opening_hours": "24/7", + "description": "RELAIS DE MARSANNAY LA COTE", + "start_date": "2020-10-29;2023-10-26", + "ref": "FRHPCPNF059916", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00810000000, + 47.28060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "BRAIN-SUR-ALLONNES - Place Champs de Foire;OuestCharge - Diva Sp - Brain-sur-Allonnes - Foire", + "amenity": "charging_station", + "start_date": "2024-04-25;2024-04-29;2021-04-22", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49041001;FRS49E0490051;FRS49P49041A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06525200000, + 47.30312800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CLARY - Rue Miroux", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-04-26", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS59E59149001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40059000000, + 50.07793770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRAS - cours de Verdun", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH06E62041010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76858100000, + 50.29039400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30007005", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ALES - Rue Albert 1er", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07717700000, + 44.12538700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEGQHWV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Augan - Rue du Verger", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28117700000, + 47.91908300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHATELLERAULT NORD QC50-1", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346052691;FRLMSE12346052692", + "ref": "B148", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2021-09-24", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54263000000, + 46.83623000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRMGPP93049B", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "446960", + "operator": "Métropolis | FR*MGP", + "description": "Métropolis/FR*MGP*P93049*B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122500000, + 48.85580600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "start_date": "2017-04-27", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79307P0010A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Sauzé Vaussais - Pôle Médical" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10559154000, + 46.13154710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "capacity": "13", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLFR00349", + "opening_hours": "24/7", + "network": "Atlante", + "ref": "1175619", + "ref:EU:EVSE": "FRATLP7481967878242666469", + "operator": "Atlante | FR*ATL", + "charging_station:output": "300 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99000000000, + 47.28407000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89397442", + "description": "ENGIE Vianeo - Communauté d'Agglomération d'Epinal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44108700000, + 48.18079700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint-Laurent-Sur-Gorre | Place de L'Église", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "93770b2a-1efe-5de0-9af7-7d9c47af11b8", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95709300000, + 45.77113000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E159049;FRS88E159047", + "capacity": "2", + "network": "MODULO - EPINAL - Rue de Remiremont", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08", + "description": "MODULO - EPINAL - Rue de Remiremont", + "ref:EU:EVSE": "FRS88E159049;FRS88E159047" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45091440000, + 48.15966592000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "start_date": "2023-04-14", + "description": "EVREUX", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSEVREU", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17353400000, + 49.01319700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3598EVCP01;LFR3598EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3598EVCP01;LFR3598EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "AMIENS d'Australie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27382700000, + 49.90484400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PD155WPC2WD", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-11E, Route de la Treille", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51211000000, + 43.31196000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP5433077142736126479", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/TJPZS8BPH4", + "ref": "492126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06505700000, + 45.60489800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/JJWUMZACZF", + "ref:EU:EVSE": "FRFR1P697735323595698123", + "ref": "529340", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51202300000, + 44.87961800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PIBSSMA", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "description": "Ibis - Saint-Malo", + "start_date": "2023-03-22", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98994920556, + 48.62562401616 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/GIB8D1B3ML;Chambery, Rue de la République Manège", + "start_date": "2020-12-09", + "ref": "GIB8D1B3ML;346733", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP33180160457654954;FREBNPGIB8D1B3ML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92589300000, + 45.56429200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - 3M - Parking Rue des Anémones", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP34337A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP34337A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86379300000, + 43.52961800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FROTHPOTHR23591;FROTHPOTHR23561;FROTHPOTHR23551;FROTHPOTHR23541;FROTHPOTHR235132;FROTHPOTHR235121;FROTHPOTHR235111;FROTHPOTHR235101;FROTHPOTHR23511;FROTHPOTHR235131;FROTHPOTHR235133;FROTHPOTHR23521;FROTHPOTHR23531;FROTHPOTHR23571;FROTHPOTHR23581", + "network": "E.LECLERC", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*235*6*_*_;FR*SOD*S*OTHR*235*5*_*_;FR*SOD*S*OTHR*235*3*_*_;FR*SOD*S*OTHR*235*2*_*_;FR*SOD*S*OTHR*235*13*_*_;FR*SOD*S*OTHR*235*10*_*_;FR*SOD*S*OTHR*235*1*_*_;FR*SOD*S*OTHR*235*11*_*_;FR*SOD*S*OTHR*235*12*_*_;FR*SOD*S*OTHR*235*4*_*_;FR*SOD*S*OTHR*235*7*_*_;FR*SOD*S*OTHR*235*8*_*_;FR*SOD*S*OTHR*235*9*_*_", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "start_date": "2021-09-17;2022-06-01", + "charging_station:output": "50 kW;22 kW", + "operator:email": "sav@izivia.com", + "capacity": "1;3", + "description": "E.LECLERC - PONT LABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23486000000, + 47.86538300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "SONELOG CESTAS 04", + "ref": "FRCPIE6599395;FRCPIE6599365;FRCPIE6599315;FRCPIE6599405", + "amenity": "charging_station", + "network": "SONELOG CESTAS 04", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6599395;FRCPIE6599365;FRCPIE6599315;FRCPIE6599405", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75390700000, + 44.71478500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3752204252076916995", + "ref": "505689", + "charging_station:output": "22 kW", + "description": "Freshmile France/U4TFFCDH2S", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13491300000, + 49.35392000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "charging_station:output": "3.7 kW;11 kW;7.4 kW;22 kW", + "amenity": "charging_station", + "ref": "1184465;1017831;1017828", + "description": "WAAT/FRWATLYF7QMYHV;WAAT/s367761;WAAT/s373997", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "capacity": "1;2;32", + "opening_hours": "We 10:00-10:15,We 10:30-10:45;24/7", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA2P8590467740184820773;FRWA2P8555824324956333352;FRWATP1613454680553536709" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30593100000, + 48.80112000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "971864", + "network": "Freshmile France", + "description": "Freshmile France/LLMOV35QA1QE7I", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7957518787392667228", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62149700000, + 44.81188100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "start_date": "2023-07-06;2023-07-17", + "charging_station:output": "50 kW;360 kW;22 kW", + "ref:EU:EVSE": "FRSWSE1000149593;FRSWSE1000138544;FRSWSE1000136535;FRSWSE1000136534;FRSWSE1000135606", + "opening_hours": "24/7", + "description": "ABB T54 Miura Voglans;ABB T360 Miura Voglans 3;ABB T360 Miura Voglans 4;ABB T360 Miura Voglans 2;WB 2x22 Miura Voglans", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000149593;1000135606;1000136534;1000136535;1000138544", + "socket:type2_combo:output": "50 kW;360 kW", + "capacity": "2;3", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88853600000, + 45.63792400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P4492063337651497256", + "operator:email": "roaming@freshmile.com", + "ref": "485121", + "description": "Freshmile France/JDBAHISUDA", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Mo,Th,Fr,Tu,We 08:00-19:00,Sa 14:00-18:00,Sa 09:00-12:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70957000000, + 49.73738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPLOC844001", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "start_date": "2023-09-01", + "charging_station:output": "22.08 kW", + "description": "Loc+ - Apt", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37218100000, + 43.88615900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E175635;FRS28E175634", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - AUNEAU BLEURY ST SYMPHORIEN - Guy Vasselais", + "network": "MODULO - AUNEAU BLEURY ST SYMPHORIEN - Guy Vasselais", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E175635;FRS28E175634", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76015400000, + 48.51533200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SIPECC SIPECC", + "opening_hours": "Du lundi au vendredi 8:00-17:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "Borne de recharge HEXAOM Le Pontet", + "charging_station:output": "22 kW", + "description": "Borne de recharge HEXAOM Le Pontet", + "owner:ref:FR:SIREN": "095720314", + "start_date": "2023-08-11", + "operator:email": "contact@sipecc.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87000000000, + 43.98000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P656672536921070872", + "description": "SDEA 10/UZHYYMLXNA", + "ref": "39833" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62469300000, + 48.23362300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LE004FAF;Zephyre/LE004E93", + "network": "Zephyre", + "ref": "575945;575936", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P5132554108799294228;FRZP1P4969340471611788061", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94772100000, + 48.45547800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE578;FRROSE542;FRROSE579", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2023-03-06", + "operator": "RossiniEnergy", + "description": "VERBAERE_LOMME_DC_718;VERBAERE_LOMME_DC_611;Verbaere_Lotus_Lomme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01035200000, + 50.64391100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "39013", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDE82/PWCMEH", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PPWCMEH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88195000000, + 44.18010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - TOURNON", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*119*1*_*_", + "start_date": "2024-05-24", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST11912;FRIZFPFAST11911;FRIZFPFAST11913", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83648386684, + 45.05368811378 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E4053;FRS41E4054", + "ref": "FRS41E4053;FRS41E4054", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - MER - Rue de Mardeau", + "network": "MODULO - MER - Rue de Mardeau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50658500000, + 47.70652000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Mouv'Oise/LLLDLCTQP1XUPB", + "ref:EU:EVSE": "FRS60P1451710142463317827", + "ref": "896706", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87580700000, + 49.40046500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*35*1*_*_;FR*SOD*S*LYON*35*2*_*_", + "ref:EU:EVSE": "FRGLYPLYON3511;FRGLYPLYON3512;FRGLYPLYON3521;FRGLYPLYON3522", + "opening_hours": "24/7", + "description": "SPR04 - CITE BERLIET", + "start_date": "2020-08-12", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90137400000, + 45.70533600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "ROCHEFORT DU GARD - Le Galoubet", + "ref:EU:EVSE": "FRS30E30217002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69179300000, + 43.97655300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Mobilité électrique 56/DWKEL0HZ7N", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P3198169143701736263", + "network": "Mobilité électrique 56", + "ref": "1130478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81309000000, + 47.64447400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "423e4356-77bc-4fc0-8b43-2d102d6b6093;a0052293-b341-4373-bb92-86c5949562f8", + "network": "LUMI'IN", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "807940069", + "start_date": "2022-08-08;2022-07-01", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "COMPTEUR LORIOL 1 ;HOTEL LES PEUPLIERS", + "ref:EU:EVSE": "FRLUMEHOTELPEUPLIERS11;FRLUMEATELIER11", + "operator": "LUMI'IN", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99000000000, + 44.08000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilygreen CPO/f0f94e45-9093-49b4-9ac7-ad94c6ada9ae", + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "ref": "951476", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMW1P163463039196286543", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57990000000, + 43.28500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE1711;FRSIGPSIGE1712", + "ref": "FR*SOD*S*SIGE*17*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 53 GRANDE RUE - SEVRES", + "start_date": "2020-08-03", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21283400000, + 48.82449900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-14", + "network": "SCAR - 35117 - 3", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRCG0E001428;FRCG0E001427;FRCG0E001429;FRCG0E001430", + "opening_hours": "24/7", + "ref": "FRCG0E001428;FRCG0E001427;FRCG0E001429;FRCG0E001430", + "charging_station:output": "11 kW", + "operator:email": "info@chargeguru.com", + "description": "SCAR - 35117 - 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42896600000, + 48.09035700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Hôtel Première Classe Epernay", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89834172", + "start_date": "2023-09-28", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95524900000, + 49.05245700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "acabe2b4-c1bf-5ea2-bbe5-967952c3a5e5;FR*SOD*S*MB40*84*1*_*_", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "description": "SAINT SEVER - PLACE DU TRIBUNAL;MOBIVE | Saint Sever | Place du Tribunal", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS40PMB408413;FRS40PMB408411;Non concerné;FRS40PMB408412;FRS40PMB408414", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "start_date": "2020-06-03", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57284500000, + 43.76036800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "MEAUX - Centre aquatique Frot", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MXEA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87308900000, + 48.96384200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Montélimar", + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9006782;FRALLEGO9006781;FRALLEGO9006482;FRALLEGO9006481;FRALLEGO9003972;FRALLEGO9003971;FRALLEGO9003562;FRALLEGO9003561", + "ref": "FRALLEGO9006782;FRALLEGO9006781;FRALLEGO9006482;FRALLEGO9006481;FRALLEGO9003972;FRALLEGO9003971;FRALLEGO9003562;FRALLEGO9003561", + "network": "Allego Carrefour Montélimar", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74765700000, + 44.53182100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3443EVCP01;LFR3443EVCP02;LFR3443EVCP03", + "capacity": "8", + "description": "BISCHHEIM Energie", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "ref": "LFR3443EVCP01;LFR3443EVCP02;LFR3443EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76561500000, + 48.63023500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-18", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34129003", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "LATTES - Av. De L'Europe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90467833300, + 43.57077167000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Rumilly, Parking de la Gare", + "start_date": "2022-03-22", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPSAYQDHUGKA", + "ref": "SAYQDHUGKA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94768024000, + 45.86309439000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSOJ91TYJVNGD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1133166", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1739008786205448568", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31837400000, + 49.07877400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "description": "SAINT-GERMAIN-EN-LAYE - Pologne", + "ref:EU:EVSE": "FRP07E78551002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-02-20;2020-06-17;2022-02-22", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08819000000, + 48.89790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "description": "Huez, Parking Huez Village", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPPPK9XAM3NX", + "ref": "PPK9XAM3NX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05632330000, + 45.08211520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2022-09-30", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPGONHI", + "description": "Gonesse - Hôtel Ibis", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46338400000, + 48.96867200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-14", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRP01E76351006", + "description": "Parking le Havre gares - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12389729000, + 49.49165802000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-28", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6630285", + "charging_station:output": "22 kW", + "description": "SONEPAR GRASSE", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6630285", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "network": "SONEPAR GRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95576200000, + 43.63593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "description": "La Baule , Parking Avenue des Ifs", + "amenity": "charging_station", + "capacity": "12", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUEBQLVNOQE", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "UEBQLVNOQE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39309448000, + 47.28256557000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue d'Auteuil 55", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1621", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX16*21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26360000000, + 48.84780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20697650000, + 49.97165070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4582210778802808194", + "operator:email": "roaming@freshmile.com", + "ref": "1053132", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLMT4Q0K3YNMVI", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76628700000, + 48.56429200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "start_date": "2023-02-15", + "ref:EU:EVSE": "FRTCBP01165", + "ref": "FRTCBP01165", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "838699742", + "network": "GROUPE DESFOSSEY - SIEGE", + "description": "DESFOSSEY - SIEGE", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84677214483, + 47.02550828376 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "735156", + "ref:EU:EVSE": "FRFR1P3881296458814390579", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/JZ543QKP9R", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45209300000, + 48.41725300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW448003", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW Mini - Saint-Herblain - zone VO", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61990800000, + 47.24719600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2911500", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Lannedern-Résidence Penn Ar Reun", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.89678000000, + 48.30108300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CASTELNAUDARY - Boulevard General Lapasset", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11076002", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95138888900, + 43.32027780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "493600563", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "Logis Hôtel Restaurant de France", + "opening_hours": "24/7", + "ref": "ab046087-0526-485a-9449-fd10a0bc5d7a", + "charging_station:output": "22 kW", + "description": "Hôtel Restaurant de France - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC81910;FRZP1PEAC81846;FRZP1PEAC81946;FRZP1PEAC87403", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61016593000, + 43.11224522000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57725;FRS08E57724", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS08E57725;FRS08E57724", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - LIART - Pl. de la mairie", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LIART - Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34044100000, + 49.76917800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "49003", + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/Stsauveur", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PSTSAUVEUR", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21363000000, + 49.93920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes", + "name": "Batiment Capitainerie" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20777450000, + 49.97234880000 + ], + [ + 1.20800530000, + 49.97219690000 + ], + [ + 1.20801240000, + 49.97218320000 + ], + [ + 1.20801050000, + 49.97217120000 + ], + [ + 1.20800020000, + 49.97216090000 + ], + [ + 1.20777120000, + 49.97201840000 + ], + [ + 1.20774450000, + 49.97200180000 + ], + [ + 1.20772460000, + 49.97200060000 + ], + [ + 1.20770520000, + 49.97200350000 + ], + [ + 1.20768660000, + 49.97201260000 + ], + [ + 1.20750430000, + 49.97213480000 + ], + [ + 1.20747340000, + 49.97215630000 + ], + [ + 1.20746050000, + 49.97217370000 + ], + [ + 1.20746180000, + 49.97219850000 + ], + [ + 1.20770750000, + 49.97236020000 + ], + [ + 1.20771940000, + 49.97236420000 + ], + [ + 1.20773260000, + 49.97236610000 + ], + [ + 1.20774670000, + 49.97236350000 + ], + [ + 1.20777450000, + 49.97234880000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - AULNOY-LEZ-VALENCIENNES", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-08-27", + "ref": "FR*SOD*S*FAST*259*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST25913;FRIZFPFAST25912;FRIZFPFAST25911", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51250610000, + 50.33260120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2024-04-17;2021-04-21", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - La Chapelle-Launay - Eglise;LA CHAPELLE-LAUNAY - Place De L'Église", + "ref:EU:EVSE": "FRS44P44033A;FRS44E44033001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97221800000, + 47.37213600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "start_date": "2023-05-15;2015-07-01", + "network": "Ecocharge77", + "description": "CHAUFFRY - Place Des La Mairie;Chauffry", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77106A;FRS77E77106001", + "ref": "01F5ZAKH615K9YFB4VNVPPBYS6", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18406500000, + 48.81773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "network": "Thalazur bains de Cabourg", + "operator": "GREENSPOT", + "ref:EU:EVSE": "FRGSPP1000056018;FRGSPP1000056020", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Thalazur bains de Cabourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13143833060, + 49.28963765779 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E219955;FRS37E219956", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - SEPMES - Rue de la République", + "ref": "FRS37E219955;FRS37E219956", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SEPMES - Rue de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66794400000, + 47.07343800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "44__CCCPH", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "8ba60faa-7ff6-531c-870f-db831460c7f6", + "description": "CCCPH - Joudreville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77921000000, + 49.28914300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "LPA Parking Gros Cailloux - N1 - Zone 2;LPA Parking Gros Cailloux - N1 - Zone 1", + "ref:EU:EVSE": "FRG10P69386BA;FRG10P69386BB", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRG10P69386BA;FRG10P69386BB", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "7.4 kW", + "description": "LPA Parking Gros Cailloux - N1 - Zone 2;LPA Parking Gros Cailloux - N1 - Zone 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83308960000, + 45.77473870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | LABOUHEYRE - Parking Marie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "0a3346c7-9b6b-56d1-a242-17354e940b1d", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91955500000, + 44.21228800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-13", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE28612;FRSIGPSIGE28611", + "network": "SIGEIF", + "description": "SIGEIF - PLACE DE LA REPUBLIQUE - MARCOUSSIS", + "ref": "FR*SOD*S*SIGE*286*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22980200000, + 48.64280800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6506795", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6506795", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "GDH BORNE 1", + "description": "GDH BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77117400000, + 45.89619400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "454368", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/YLN1E5ASLE", + "ref:EU:EVSE": "FRLE2P7429577317980065630" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27879100000, + 49.64119500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint Astier | Rue Amiral Courbet", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "44470ad9-b89c-5a4e-9ab8-4fb84974d749" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52750800000, + 45.14479100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB29037A", + "start_date": "2016-01-15", + "operator": "Séolis", + "description": "Réseau AlterBase - Mazières en Gâtine - Place des Marronniers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32346040000, + 46.53364734000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "start_date": "2020-01-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Pays de Gex - ePremium - Versonnex - Forge", + "ref:EU:EVSE": "FRAGXP01435A", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09591600000, + 46.30101400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR0406EVCP01;LFR0406EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "HEM", + "ref": "LFR0406EVCP01;LFR0406EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19936700000, + 50.66182900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P6665564721616635141", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/GKS0FGLKUY", + "ref": "414738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02094000000, + 47.89374400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA ROQUETTE SUR SIAGNE PARKING COEUR ST GEORGES", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*141*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ14111;FRA16PWIIZ14112", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2022-07-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95407700000, + 43.59781100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BALHQJMGSA", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "505539", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5868886108113782431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02466300000, + 47.30190100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Restaurant 3B Avranches - Le Val-Saint-Père", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PBBBLVS", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35504600000, + 48.65800710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85793", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/GYLUWGEFDI", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPGYLUWGEFDI", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26369400000, + 46.11742700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-01-23", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPAPBJL", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Artigues-près-Bordeaux - Jardiland", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49696700000, + 44.84355100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-11-27", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VALLAURIS - Vieux Port", + "ref:EU:EVSE": "FRP07E061550011;FRP07E06155001", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07284000000, + 43.56522000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6695555", + "ref": "FRCPIE6695555", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CGED DEAUVILLE", + "operator:email": "info@chargepoint.com", + "description": "CGED DEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09289000000, + 49.34888000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRECHPFSWAKMUXFE", + "ref": "FSWAKMUXFE", + "description": "La Baule , Parking Avenue Olivier Guichard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39366363000, + 47.28589164000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2022-12-08", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - A49 Royan Vercors", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP103107", + "charging_station:output": "300 kW;22 kW;61 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21108000000, + 45.07177300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSLIT9ZMRRKOO", + "ref:EU:EVSE": "FRFR1P2097756905382156218", + "operator": "Freshmile | FR*FR1", + "ref": "1026705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88296600000, + 44.87326700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "ref": "FR*V75*PPX07*07", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "ref:EU:EVSE": "FRV75PPX0707", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Boulevard de la Tour-Maubourg 76" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30976450000, + 48.85601290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PONT DE BEAUVOISIN Baronnie;Freshmile France/RJ628PL5BR", + "ref": "LFR3641EVCP02;LFR3641EVCP01;529574", + "ref:EU:EVSE": "LFR3641EVCP02;LFR3641EVCP01;FRFR1P8330155201641999502", + "network": "LIDL;Freshmile France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "operator": "Freshmile | FR*FR1;LIDL France", + "socket:type2_combo:output": "120 kW", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68976900000, + 45.53012900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINTOYOTA132001", + "capacity": "4", + "start_date": "2021-03-31", + "charging_station:output": "22.08 kW", + "description": "Toyota -Arles", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64334900000, + 43.66495300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22389001", + "charging_station:output": "22 kW", + "description": "Yffiniac-Place Ste Anne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.67833300000, + 48.48462700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MEHUN SUR YEVRE - Square 8 Mai 1945", + "ref": "FRS18E184330;FRS18E184331", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - MEHUN SUR YEVRE - Square 8 Mai 1945", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E184330;FRS18E184331", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21921900000, + 47.14657400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-16", + "description": "CROUS Pauliane 2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Dropnplug", + "capacity": "32", + "network": "Réseau de recharge CROUS Pauliane", + "operator:email": "claude.lebrize@dropnplug.fr", + "owner:ref:FR:SIREN": "882060387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44753000000, + 43.50690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "754179", + "charging_station:output": "22 kW", + "description": "PICOTY/cb5eb328-55b7-4a50-b81c-0abca3a6c8f2", + "network": "PICOTY", + "operator": "Mobilygreen | FR*PY1", + "ref:EU:EVSE": "FRPY1P8368762532382138253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25884700000, + 45.82697900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ANGLES - Station Service", + "ref:EU:EVSE": "FRS81E81014001", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56484900000, + 43.56538300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE402100", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2019-05-03", + "description": "IONITY Longué-les-Cossonnières", + "ref:EU:EVSE": "FRIONE402100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469400000, + 47.41925000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44154B;FRS44E44154002", + "start_date": "2021-04-15;2024-04-24", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Chassagne;SAINT-BREVIN-LES-PINS - Rue Albert Chassagne", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16196600000, + 47.24798900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-22;2016-09-02", + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61QWHK70G0X1BKPBN8", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77360A;FRS77E77360001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "PEZARCHES - Croisement Rd402 - Rd231;Pézarches", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98476100000, + 48.73418400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH01E62765008", + "description": "SAINT-OMER - Place de l'Esplanade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25060000000, + 50.75149900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E254894;FRS37E254898", + "network": "MODULO - TOURS - Pl. Rabelais", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - TOURS - Pl. Rabelais", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E254894;FRS37E254898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67656243000, + 47.38439695000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-10-13", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PJZDKPB", + "description": "Vannes - Place de la Libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76380500000, + 47.65884000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*160*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "TDL01 - ALAI - CHARLES DE GAULLE", + "start_date": "2022-04-01", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON16012;FRGLYPLYON16011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76720800000, + 45.75177300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAISIEUX - Rue de la Mairie", + "ref": "FR*MEL*P59780*01", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5978001", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24001200000, + 50.61510800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-12:15, Mo 14:00-19:00, Tu 09:00-12:15, Tu 14:00-19:00, We 09:00-12:15, We 14:00-19:00, Th 09:00-12:15, Th 14:00-19:00, Fr 09:00-12:15, Fr 14:00-19:00, Sa 09:00-12:15, Sa 14:00-19:00, Su 09:30-12:30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2019-09-26", + "operator": "DRIVECO", + "description": "Gamm Vert - Estaires", + "ref:EU:EVSE": "FRSSDPGAMMVERTESTAIRES599401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70579000000, + 50.64500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT THONON", + "network": "SONEPAR CONNECT THONON", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6586685", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6586685", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41538200000, + 46.34256000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref": "585572", + "charging_station:output": "22 kW", + "description": "Leclerc/FPVIHBM6KU", + "ref:EU:EVSE": "FRLE2P711884785797854239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841500000, + 47.67912100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Medard de Guizieres | Rue du 14 Juillet - Parking Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "01f90b00-af6a-5fba-ab72-2a2a96c03553", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05667500000, + 45.01477400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS95E95026001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-02", + "charging_station:output": "22 kW", + "description": "ASNIERES-SUR-OISE - Grande Rue - Parking Delchet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35544100000, + 49.13461700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "start_date": "2021-12-08;2021-11-22;2022-02-10;2022-11-10", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14;10", + "network": "CASINO LANESTER;ALLEGO;GreenToWheel", + "description": "CASINO LANESTER", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "ref:EU:EVSE": "FRSITE00000009;FRALLPCAS010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34486400000, + 47.77633100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3026EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT ETIENNE DE GEOIRS ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3026EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34940600000, + 45.34143500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PQCV0GDGIKP", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "description": "Marseille, Parking Relais Einstein", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44856900000, + 43.34540600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "description": "SDEY/ANJ1WIKMYP", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P526421635801650214", + "ref": "402440", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43847900000, + 47.99364800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*271*1*_*_", + "start_date": "2023-12-11", + "description": "VILLENEUVE-LOUBET - PARKING MAURETTES ", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ27112;FRA16PWIIZ27111", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13193920000, + 43.63026270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2473647667813571488", + "charging_station:output": "7.4 kW;22 kW", + "ref": "435171", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VTD24GRLDJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628500000, + 44.89138600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Mercure - Porte de Vanves", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-23", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PMRCVAV", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29146440000, + 48.82685770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Etienne-De-Lugdarès, Le Village;Réseau eborn/HWZQNS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "32707;HWZQNS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPHWZQNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95545000000, + 44.65120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP8411990352615378937", + "opening_hours": "24/7", + "description": "Norauto - Bornes publiques/05939333-DC66-4BFE-A6F7-77D723254062", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "ref": "811083" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32169300000, + 43.30353000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-02-27;2023-10-23", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR59822;FROTHPOTHR59812;FROTHPOTHR59811;FROTHPOTHR59821", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*598*2*_*_;FR*SOD*S*OTHR*598*1*_*_", + "description": "INTERMARCHE - OULLINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79402900000, + 45.72113700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPECO0VKGSLD", + "ref": "ECO0VKGSLD;30290", + "capacity": "2", + "description": "Champis, Fringuet;Réseau eborn/ECO0VKGSLD", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76573200000, + 44.94179400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "CARIVD0JDN;346646", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP8827213701039735979;FREBNPCARIVD0JDN", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Barberaz, Centre Bourg Route d'Apremont;Réseau eborn/CARIVD0JDN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94462000000, + 45.56438000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile de l'Union", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-12-20", + "ref:EU:EVSE": "FRVIAP121037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47164700000, + 43.64537200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/QYPUGRMYGA", + "ref:EU:EVSE": "FRFR1P8094755360006999334", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529556", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37982000000, + 47.72624000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1404", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "start_date": "2021-09-06", + "ref": "FR*V75*PPX14*04", + "description": "Paris | Rue Castagnou 10", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608000000, + 48.83273000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2939788675204543217", + "ref": "998793", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLO4DZ5TO4L836", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68531200000, + 44.91601500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Bonne Anse Plage (Camping Siblu) - Les Mathes", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-13:00, Mo 14:00-18:00, Tu 09:00-13:00, Tu 14:00-18:00, We 09:00-13:00, We 14:00-18:00, Th 09:00-13:00, Th 14:00-18:00, Fr 09:00-13:00, Fr 14:00-18:00, Sa 09:00-13:00, Sa 14:00-18:00, Su 09:00-13:00, Su 14:00-18:00", + "ref:EU:EVSE": "FRSSDPSIBLU175702", + "start_date": "2022-06-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19968400000, + 45.69749800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900031", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-06-14", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PHEUDEBOUVILLEECOPARC", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22489800000, + 49.19526300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Camlez-Parking du 19 mars 1962", + "ref:EU:EVSE": "FRS22E22028001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30503600000, + 48.77744300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLIERS LE MAHIEU - Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78681001", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77260000000, + 48.86028430682 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE157", + "operator:email": "info@rossinienergy.com", + "description": "CAAG", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14426500000, + 50.62325200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "1108152", + "description": "WAAT/FRWATLTWJWGQFM", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP3589604662917338577", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44130900000, + 43.61636400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2022-12-16", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Dijon Sud", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE453800", + "ref:EU:EVSE": "FRIONE453800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04560200000, + 47.27199000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BAZANCOURT - Rue Jean Jaurès", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BAZANCOURT - Rue Jean Jaurès", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS51E44730;FRS51E44731", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS51E44730;FRS51E44731", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17085200000, + 49.36277200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HORGUES - Salle des fêtes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65223001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08121000000, + 43.18654000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE000701;FRIENE000702", + "start_date": "2023-01-11", + "amenity": "charging_station", + "ref": "FRIENE000701;FRIENE000702", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Saint-Père-en-Retz", + "description": "Saint-Père-en-Retz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048000, + 47.20407070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34187001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21", + "network": "Reveo", + "description": "OLARGUES - Place de l'Ancienne Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91540555556, + 43.55631670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PCETTJG", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-06-27", + "description": "Pleugriffet - Rue Anne de Bretagne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68495500000, + 47.98792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLLYRH9ZG2FY9N", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7679934752879020283", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971783", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02118500000, + 49.06967800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VALLERAUGUE - Station Service", + "start_date": "2021-08-10", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30339001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63618600000, + 44.08056800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPDURIEUXOPEL735001", + "amenity": "charging_station", + "capacity": "3", + "description": "Opel - Durieux", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2020-09-04", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64666600000, + 45.19133600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC2P007601", + "opening_hours": "24/7", + "start_date": "2023-12-13", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "description": "COLLEGE LYCEE SAINT MICHEL", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr", + "network": "COLLEGE LYCEE SAINT MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12330160000, + 45.89203600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES TERRASSES DES SAVEURS", + "ref:EU:EVSE": "FRLUMELESTERRASSESSAVEURS11", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-10-05", + "charging_station:output": "13 kW", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "5216f182-6375-11ee-8c99-0242ac120002", + "capacity": "10", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87413330000, + 43.98315090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "5938f6b8-4b62-5b47-b0c9-732ed591e0a2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "description": "MOBIVE | Tresses - Avenue des écoles", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46396500000, + 44.84785600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "MAXIMARCHE - FONCINE LE HAUT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE39FABA", + "start_date": "2023-10-10", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07459000000, + 46.65859300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP6114445088330597819", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "description": "BornEco/64255ebeceade60b493082cc", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "ref": "782313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29447900000, + 48.86292300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/J9YFZ96UNZ", + "ref:EU:EVSE": "FRLE2P311265745938444441", + "capacity": "16", + "charging_station:output": "25 kW;22 kW;11 kW", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "454287" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314200000, + 45.63022000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Saint-Mitre-Les-Remparts, Résidence Les Remparts", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PZB3PP3S10S", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01177200000, + 43.45382900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "488910", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P5856705103874976609", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "SDEY/WO6VCOTK0I" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99273200000, + 48.19955300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "description": "R3 - Norauto Saint Martin Lez Tatinghem", + "start_date": "2023-02-24", + "operator": "R3", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363741", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22125800000, + 50.75956400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "598017", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/TA9HIA7WJP", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8240703094460637857" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.27518400000, + 16.25790700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUHAB", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "description": "Super U - Hambach", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03970050000, + 49.08790960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Manosque, Place du Dr Joubert;Réseau eborn/E0NLSN3Q3N", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPE0NLSN3Q3N;FREBNP6492467914710333494", + "ref": "598230;E0NLSN3Q3N" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78442400000, + 43.83070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "ref:EU:EVSE": "FREVZP8606932044491195804", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "EVzen", + "description": "EVzen/35404FBB-9438-4ED9-AE66-3376EF230AAB", + "operator:email": "support@evzen.com", + "ref": "1057122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36438700000, + 43.80566500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2024-03-12", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*798*1*_*_;FR*SOD*S*OTHR*798*2*_*_", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR79821;FROTHPOTHR79811", + "opening_hours": "24/7", + "description": "SUPER U - RENNES SARAH BERNHARDT ", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67972267111, + 48.09193409442 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNKBQJ8XDAJ", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/NKBQJ8XDAJ", + "ref": "237730" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57614100000, + 44.97511900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "socket:type2_combo:output": "50 kW", + "description": "L’Isle-D’Abeau, Place du 8 Mai 1945", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPNLEDVFEXF7", + "ref": "NLEDVFEXF7", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269785000, + 45.62297234000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*405*1*_*_;FR*SOD*S*OTHR*405*2*_*_", + "ref:EU:EVSE": "FROTHPOTHR40521;FROTHPOTHR40511", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "TEGOMETALL - FORBACH", + "network": "TEGOMETALL", + "start_date": "2022-05-24", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90184600000, + 49.20632400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLJ5GHD3D2JJMR", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P164838039474173341", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03796500000, + 50.01689000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30255", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Bourg-de-Péage, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05181800000, + 45.03327400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "510482", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "9", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FJFZXU8ENZ", + "ref:EU:EVSE": "FRFR1P3040551320597658478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38676400000, + 46.34756600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRTCBP02713", + "operator": "Total Charging Services", + "charging_station:output": "7 kW", + "opening_hours": "Mo-Fr 08:00-12:15,Mo-Fr 13:30-19:00,Sa 08:00-12:30,Sa 13:30-17:00", + "network": " Carglass Services SAS - Chasseneuil Futuroscope", + "amenity": "charging_station", + "description": "Carglass Services SAS - Chasseneuil Futuroscope", + "owner:ref:FR:SIREN": "425050556", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-03-06", + "ref": "FRTCBP02713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36547725695, + 46.65681689081 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;22 kW;63 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/IU1FUKZ0FE", + "ref:EU:EVSE": "FRFR1P9061223177611706587", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "ref": "705929" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71336000000, + 49.50626000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "467490", + "ref:EU:EVSE": "FRS14P1855262111489060772", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/JIQBOVFEMZ", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30337600000, + 49.17194400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC61743", + "network": "Mazda ANNECY - MONT BLANC AUTOMOBILES ", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-06-01", + "operator:email": "advenir@zeborne.com", + "owner:ref:FR:SIREN": "432152593", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "ref": "61743", + "description": "Mazda - Annecy - 22KW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08251220000, + 45.93069130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-11", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE367", + "description": "Najeti_Chateau_Clery", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67957200000, + 50.66622300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LES MUREAUX - Avenue Paul Raoult - Borne 1", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78440002", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91340400000, + 48.98952500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20727120000, + 49.97191920000 + ], + [ + 1.20725360000, + 49.97187750000 + ], + [ + 1.20724030000, + 49.97184610000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "network": "Sierentz", + "capacity": "9", + "description": "Sierentz", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE462252;FRIOYE462206;FRIOYE462205;FRIOYE462203;FRIOYE462202;FRIOYE462201;FRIOYE462204;FRIOYE462251;FRIOYE462253", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE462252;FRIOYE462206;FRIOYE462205;FRIOYE462203;FRIOYE462202;FRIOYE462201;FRIOYE462204;FRIOYE462251;FRIOYE462253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44223400000, + 47.66693100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Mayenne - Vinci;MAYENNE - Parking Léonard De Vinci", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2024-05-28;2021-04-13", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53P53147C;FRS53E53147002", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62236300000, + 48.30089100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-09-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66118001", + "description": "MONTNER - 4 Rue Des Ecoles", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67709100000, + 42.74980400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE012022000201;FRIENE012022000202", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE012022000201;FRIENE012022000202", + "description": "Aubigné-sur-Layon", + "network": "Aubigné-sur-Layon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47010000000, + 47.20593100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35125001B1", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "LA GUERCHE DE BRETAGNE - 6 place du champ de foire ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23320100000, + 47.94150200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-LSAP-001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "LE SAP", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61460A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33845000000, + 48.89397300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477723", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WULLAX36A5", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P862047653378963765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04838700000, + 44.08577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-01-15", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PNRYGLD", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Caubiac, Village;Roulez Électrique En Haute-Garonne/NRYGLD", + "ref": "64880;NRYGLD", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08348000000, + 43.71460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NANTERRE - Avenue des Champs Pierreux", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-04-25", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92050017", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21301078640, + 48.88876053285 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "22 kW;11 kW;2 kW", + "ref:EU:EVSE": "FRCG0E000545;FRCG0E000546;FRCG0E000547;FRCG0E000548;FRCG0E000549", + "amenity": "charging_station", + "start_date": "2023-02-03", + "description": "Logis Hôtel le Sainte Mère - 50480 - 2", + "opening_hours": "24/7", + "network": "Logis Hôtel le Sainte Mère - 50480 - 2", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000545;FRCG0E000546;FRCG0E000547;FRCG0E000548;FRCG0E000549" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31300600000, + 49.40415600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE18612;FRM06PNICE18611", + "capacity": "2", + "description": "CHATEAU-VILLE-VIEILLE - PARKING VILLAGE", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*186*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29566639355, + 43.80748957085 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Prayssas | Parking de L'Auditorium", + "ref": "ae87bb7b-2dab-5c6d-a76e-96b0e9e16566" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50786900000, + 44.28894200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE32511;FRSIGPSIGE32512", + "network": "SIGEIF", + "start_date": "2023-02-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*325*1*_*_", + "description": "SIGEIF - PARKING DES FAUVETTES - DOMONT", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34058900000, + 49.02517400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "1;2", + "description": "Bump - Hôtel Les Pierre Dorée - Ambérieux", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "121020;120855", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS120855;FRBMPS121020", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73591500000, + 45.92781670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "MEAUX Victoire", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3276EVCP01", + "ref:EU:EVSE": "LFR3276EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91464900000, + 48.95682500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Puymirol | 2 Place du Marechal leclerc", + "amenity": "charging_station", + "ref": "b5a2df40-89ce-5000-8df6-7d0336fd3e34", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79555600000, + 44.18710200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Yerres - Rue du Mont Griffon", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "ref": "f0222390-50b2-58bd-9448-7182362c50b3", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49208800000, + 48.71918100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P83170*CLS*CANAL", + "ref:EU:EVSE": "FR55CP83170CLSCANAL", + "operator:email": "contact@e55c.com", + "start_date": "2024-08-07", + "charging_station:output": "22.08 kW;7.36 kW", + "description": "RUE DU CANAL - CAMPS-LA-SOURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09657200000, + 43.38482500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3644EVCP01;LFR3644EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LOCHES - Route de Vauzelles", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3644EVCP01;LFR3644EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98340800000, + 47.13459300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Intermarché Super - Benfeld", + "amenity": "charging_station", + "start_date": "2023-08-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMBFD", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58960100000, + 48.37467200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNZOLN3KQH;FREBNPPNZOLN3KQH", + "ref": "75272;PNZOLN3KQH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/PNZOLN3KQH;Bagnols-En-Forêt, 4 Montée de derrière le Château", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69856100000, + 43.53684900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "4;11;6;7", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "start_date": "2023-04-01;2023-10-09", + "description": "SUPER U La Madeleine", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;100 kW;150 kW;22 kW;7.4 kW", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06974514198, + 50.66179854123 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E38185010", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Grenoble Gare Palais de Justice - PARK GRENOBLE ALPES METROPOLE", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-10-01", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71232700000, + 45.19329300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT605301", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Neuilly-En-Thelle", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29333800000, + 49.22322600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPICYZM13ZT9", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "75140;ICYZM13ZT9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Valence, Place Tony Garnier;Réseau eborn/ICYZM13ZT9", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92975200000, + 44.95054600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-26", + "ref": "FR*SOD*S*OTHR*520*2*_*_;FR*SOD*S*OTHR*520*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "NETTO - BOLBEC", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR52022;FROTHPOTHR52011;FROTHPOTHR52012;FROTHPOTHR52021", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48984100000, + 49.57031400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6725925", + "start_date": "2023-05-17", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6725925", + "description": "SONEPAR BRIVE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR BRIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48554900000, + 45.16160400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892647", + "description": "Freshmile France/RHNENTGU8Q", + "ref:EU:EVSE": "FRFR1P763467377099511641", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36403200000, + 46.65301800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRURWPUNIB1961;FRURWPUNIB1942;FRURWPUNIB1941;FRURWPUNIB1912;FRURWPUNIB1911;FRURWPUNIB1921;FRURWPUNIB1922;FRURWPUNIB1931;FRURWPUNIB1932;FRURWPUNIB1951;FRURWPUNIB1952;FRURWPUNIB1962", + "capacity": "2", + "start_date": "2021-04-21;2021-05-27", + "amenity": "charging_station", + "description": "VELIZY 2 - PKG AERIEN P12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*UNIB*19*5*_*_;FR*SOD*S*UNIB*19*4*_*_;FR*SOD*S*UNIB*19*2*_*_;FR*SOD*S*UNIB*19*1*_*_;FR*SOD*S*UNIB*19*3*_*_;FR*SOD*S*UNIB*19*6*_*_", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22123100000, + 48.77968600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3299427200996520124", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009122", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CTUDSJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27849000000, + 47.75920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-05", + "operator:email": "customerservice@shellrecharge.com", + "operator": "Shell Recharge", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRTNME07910270", + "ref": "FRTNME07910270", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "07910270", + "network": "07910270" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64385100000, + 48.55692700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1036191", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLSSZH988I4QBO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4339301848718749857", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29317100000, + 43.80227000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P8818630113722193222", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "456846", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/RLM6CEWDCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78964400000, + 49.21954300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA FOUILLADE - Rue Du Levant", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12105001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03290800000, + 44.23704300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLJBYV94DZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA4P1048222218582206611", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "ref": "789192" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77791600000, + 44.82605200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49241001;FRS49P49241A", + "description": "OuestCharge - Diva Sp - Le Plessis-Grammoire - Gilles;LE PLESSIS-GRAMMOIRE - Rue Saint-Gilles", + "charging_station:output": "22 kW", + "start_date": "2021-04-16;2024-04-04", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43027500000, + 47.49691000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LA FLECHE - Boulevard de Montréal", + "start_date": "2021-10-06", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS72E72154001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07158400000, + 47.69752600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA FLAMENGRIE - Rue des Toubaqueux - Parking de l'église", + "start_date": "2023-05-12", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH16E59232001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71514135103, + 50.31493077991 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Saint-Vincent-Des-Landes - Libération;SAINT-VINCENT-DES-LANDES - Rue De La Libération", + "amenity": "charging_station", + "start_date": "2021-04-12;2024-04-25", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44E44193001;FRS44P44193A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49881000000, + 47.65575600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63308A", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref": "518408", + "description": "SIEG 63/FR*S63*P63308*A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05585600000, + 45.76645600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAUBEUGE - Rue de Croix", + "ref:EU:EVSE": "FRH02E59392001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97588700000, + 50.27663800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34028001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BEDARIEUX - Place Albert Thomas", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15734600000, + 43.61552700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "CRETEIL - Rue Erik Satie", + "start_date": "2022-11-23", + "ref:EU:EVSE": "FRSIPE94028012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46691554303, + 48.77144046454 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2024-09-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE35212;FRM06PNICE35211", + "ref": "FR*SOD*S*NICE*352*1*_*_", + "operator:email": "sav@izivia.com", + "description": "SAINT-LAURENT-DU-VAR - VALLONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18863015128, + 43.67820132487 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Champcevinel | Aquacap", + "network": "CPO CITEOS Mobive", + "ref": "e9ff51a4-45be-5702-9355-6b504a09ca49", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74322600000, + 45.20457800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-11-17", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 9 RUE CLARA ZETKIN - GENNEVILLIERS", + "ref": "FR*SOD*S*SIGE*434*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE43412;FRSIGPSIGE43411", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29656600000, + 48.91963700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-07-18", + "ref:EU:EVSE": "FRALLPEVCARSSTJDL", + "network": "Carrefour Energies", + "description": "SAINT JEAN DE LUZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62660200000, + 43.40473600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3023EVCP02;LFR3023EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "MONTALIEU", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3023EVCP02;LFR3023EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39972900000, + 45.80449900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "b638cf81-15ef-5ce2-a193-d03e70009a97", + "description": "MOBIVE | Gelos | Square Edouard Herriot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37077100000, + 43.28510300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "3490b092-8d9c-5d5c-9d94-9183a56cdb5c", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "GRAMBOIS - D122 Les Pasquiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59115900000, + 43.76103600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LONGVILLIERS - Route du Reculet", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA05E78349001", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99060370000, + 48.57826740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3906EVCP01;LFR3906EVCP02;LFR3906EVCP03", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "NANTES - Rennes", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3906EVCP01;LFR3906EVCP02;LFR3906EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57628400000, + 47.25353900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Intermarché - Vitry-le-François", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-16", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMVLF", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58857220000, + 48.72991550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85886;Y4OFET8FDN;346979;ODJ3J2PXMV", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ODJ3J2PXMV;Réseau eborn/Y4OFET8FDN;Gareoult, Parking Jean Monnet", + "capacity": "2;4", + "start_date": "2020-08-26", + "ref:EU:EVSE": "FREBNP1426538876091893570;FREBNPY4OFET8FDN;FREBNPODJ3J2PXMV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04446300000, + 43.33029300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Evadea | FR*EVA", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "18", + "charging_station:output": "150 kW;50 kW;22 kW", + "amenity": "charging_station", + "ref": "753759", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "ref:EU:EVSE": "FREVAP11188A", + "description": "E-VADEA/FR*EVA*P11188*A", + "network": "E-VADEA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96903500000, + 42.94943200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-06-01", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCPNPJL", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Campanile - Pujols", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71353130000, + 44.38780510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT715001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2024-09-10", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market Louhans", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23489300000, + 46.62605300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-08-26", + "operator": "E-TOTEM", + "ref": "FRESEPS42218AJ", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Chavanelle", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218AJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39456400000, + 45.43399700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "ref:EU:EVSE": "FROTHPIZIG39512;FROTHPIZIG39511;FROTHPIZIG39531;FROTHPIZIG39532;FROTHPIZIG39541;FROTHPIZIG39542;FROTHPIZIG39551;FROTHPIZIG39552;FROTHPIZIG39561;FROTHPIZIG39562", + "capacity": "2", + "amenity": "charging_station", + "description": "HYDRO EST OTTMARSHEIM - EXTERIEUR", + "opening_hours": "24/7", + "start_date": "2021-10-18", + "ref": "FR*SOD*S*IZIG*395*1*_*_;FR*SOD*S*IZIG*395*3*_*_;FR*SOD*S*IZIG*395*4*_*_;FR*SOD*S*IZIG*395*5*_*_;FR*SOD*S*IZIG*395*6*_*_", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52243000000, + 47.77432000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-13", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRCPIE6852765", + "ref:EU:EVSE": "FRCPIE6852765", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "network": "SAINT-MAURICE MAIRIE 2", + "description": "SAINT-MAURICE MAIRIE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42378600000, + 48.81753200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120653", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/FJJSHD", + "ref:EU:EVSE": "FRFR1PFJJSHD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53540000000, + 49.30470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-20", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRVIAP123460", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL NANTES ATLANTIS LE ZENITH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64444200000, + 47.23303300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "574547", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRFR1P8306359727702075786", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile/S9CX3BOM9Y", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13246600000, + 49.11088500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Chartres, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP26192", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53906581000, + 48.44581525000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSOMFBNGPVFB2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1161849", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7145612809149753544", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12691000000, + 49.13049200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P5737748242298713568", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/LWXGXZ6NVG", + "network": "MobiSDEC", + "ref": "461826", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12662900000, + 49.39965800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "457494", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P4099668805693340830", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/KTAWLU4IZC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19040200000, + 49.23114000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128117", + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P6583288804056236376", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATL9OGLRSMO", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43322900000, + 43.64506000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-10", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "COUTANCES - Claires Fontaines 1", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50147005", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43116700000, + 49.05515400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8116300221;FRS81E8116300212;FRS81E8116300211;FRS81E8116300222", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "MAZAMET - Avenue Du Président Kennedy - Parking De La Richarde", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-04-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39483690300, + 43.49724960300 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059558", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "RELAIS LA LIRONDE", + "ref:EU:EVSE": "FRHPCPNF059558", + "opening_hours": "24/7", + "start_date": "2020-12-16", + "owner:ref:FR:SIREN": "531680551", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91280000000, + 43.60820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARVEJOLS - Le Pré De Suzon", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS48E48092001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28747800000, + 44.55417200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "description": "Guiscriff - Place Centrale", + "ref:EU:EVSE": "FRS56PK2YQ7NB5P1", + "start_date": "2023-06-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.64477488997, + 48.04817976394 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH05E62604003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "NEUFCHÂTEL-HARDELOT - Avenue Charles Dickens", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58445600000, + 50.63278500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2928400", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Treffiagat - Avenue du Port", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.27698900000, + 47.79454000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-07-13", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Saint-gildas-de-rhuys - Rue Saint Goustan", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PQJSQBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83329800000, + 47.50187000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B082", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-06-20", + "opening_hours": "24/7", + "description": "ROMAGNE BOURG-1-2;ROMAGNE BOURG-1-1", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346052152;FRLMSE12346052151;FRLMSE12346052161;FRLMSE12346052162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30311000000, + 46.27048100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "start_date": "2021-11-25", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93031B", + "opening_hours": "24/7", + "description": "Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162062000, + 48.95992322000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE91114013", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-22", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "BRUNOY - Avenue Montaigne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50850640121, + 48.69791216595 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "38", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP100229194220842785", + "ref": "970211", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "charging_station:output": "100 kW;300 kW;150 kW;22 kW", + "description": "Atlante/FRATLFR00310" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43941100000, + 43.86926900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "326765054;844817650", + "operator:email": "supervision@nvh-france.fr;eabdi@balas.net", + "operator": "SCI OLYMPE;NVH", + "amenity": "charging_station", + "capacity": "1;2;8", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSE1000100986;FRLMSE1000100985;FRLMSE1000100984;Non concerné", + "start_date": "2023-02-08", + "ref": "0", + "description": "SCI olympe;BM92", + "network": "SCI olympe;BM92" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32000000000, + 48.92000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SARL LAFOURCADE", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "sarl.lafourcade@orange.fr", + "operator": "SARL LAFOURCADE ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMAPP000000006994", + "owner:ref:FR:SIREN": "433220761", + "description": "Borne 22kW SB-ASST-Lafourcade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39000000000, + 43.67000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85223001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "SAINTE-HERMINE - Place Saint Hermand - Aire Covoiturage", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06227000000, + 46.55509900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Vannes", + "amenity": "charging_station", + "ref": "FRALLEGO9009972;FRALLEGO9009971;FRALLEGO9006472;FRALLEGO9000711;FRALLEGO9000481;FRALLEGO9000482;FRALLEGO9000712;FRALLEGO9004751;FRALLEGO9004752;FRALLEGO9004753;FRALLEGO9006471", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Vannes", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9009972;FRALLEGO9009971;FRALLEGO9006472;FRALLEGO9000711;FRALLEGO9000481;FRALLEGO9000482;FRALLEGO9000712;FRALLEGO9004751;FRALLEGO9004752;FRALLEGO9004753;FRALLEGO9006471", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78997800000, + 47.65932600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 6 - RUE DEJEAN", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-08-09", + "ref": "FR*SOD*S*MAMP*55*1*_*_", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIZMPMAMP5512;FRIZMPMAMP5511", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37249380000, + 43.28917950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMATPON", + "opening_hours": "24/7", + "description": "Match Pont-A-Mousson (54)", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06445847971, + 48.91798443033 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Roanne, Numériparc", + "opening_hours": "24/7", + "ref": "NA1INBYCYV", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPNA1INBYCYV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08037845000, + 46.05971964000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "485154", + "amenity": "charging_station", + "description": "Freshmile France/UYYZ1I5HC8", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P233548801760102983" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96296000000, + 43.54993100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-06-09", + "description": "Ibis Styles - Dreux", + "ref:EU:EVSE": "FRPD1PIBSDRX", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36828000000, + 48.73089000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPCWYOE0KVEJ", + "ref": "32932", + "description": "Réseau eborn/CWYOE0KVEJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63348600000, + 45.93213100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - 3M - Castelnau Le Lez - Parking Charles de Gaulle", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Réseau e-Totem Infrastructures", + "start_date": "2024-09-11", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34057A", + "ref:EU:EVSE": "FRETIP34057A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89757842841, + 43.62790971504 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LOGIS TRAVAUX - ST ORENS DE GAMEVILLE", + "ref": "FR*SOD*S*OTHR*209*2*_*_;FR*SOD*S*OTHR*209*1*_*_", + "start_date": "2021-03-12", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "LOGIS TRAVAUX", + "ref:EU:EVSE": "FROTHPOTHR20921;FROTHPOTHR20911", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52629600000, + 43.56359600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*39*1*_*_", + "start_date": "2020-11-13", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GIFS -PEUPLIERS", + "ref:EU:EVSE": "FRCPSPCAPS3912;FRCPSPCAPS3911", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11679900000, + 48.68796500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "971969", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7374433765633264846", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLP2MKM5G2J0GA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02435700000, + 49.12171700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "capacity": "1", + "ref": "873903", + "ref:EU:EVSE": "FRVISP9061554332456947340", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENRGETICA/e595b676-3adf-4179-b934-1e25c917ae7a", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20241600000, + 43.92715900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VNW0SO2WZX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P382210502470416213", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "466245" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30494200000, + 49.13446500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ABB T54 VW Seynod;ABB T360 VW Seynod 1;ABB-T360-VW-Seynod-HUB-1;ABB T54 VW Seynod 1", + "start_date": "2022-07-22;2023-08-16;2016-08-23", + "amenity": "charging_station", + "ref": "1000149992;1000149991;1000081570", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSWSE1000081570;FRSWSE1000149991;FRSWSE1000149992", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "charging_station:output": "360 kW;50 kW;22 kW", + "socket:type2_combo:output": "50 kW;360 kW", + "capacity": "2;3", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07734700000, + 45.88929600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/SBKBL8DGO5", + "ref:EU:EVSE": "FRFR1P3323632367198492842", + "ref": "735192", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Fr,We,Su,Tu,Mo,Sa,Th 08:00-22:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89605500000, + 44.42091500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Lugo Di Nazza - Hôtel de ville", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPLUGODINAZZA202401", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30191200000, + 42.07392700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E137387", + "start_date": "2021-04-02", + "amenity": "charging_station", + "capacity": "1", + "description": "PONTGOUIN - Place des halles - 137387", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "PONTGOUIN - Place des halles - 137387", + "ref": "FRS28E137387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16030500000, + 48.48067742000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "FIREX", + "ref": "FRMOB69570FIREXAC08", + "amenity": "charging_station", + "start_date": "2023-01-01", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "operator:email": "contact@groupe-mobelec.fr", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "507771335", + "opening_hours": "Mo-Fr 8:00-18:00", + "description": "FIREX-DARDILLY", + "operator": "MOBELEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76564142479, + 45.80602585385 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRS10P1543631605973506760", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "SDEA 10/M8VPGPD5FN", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "370241", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06955100000, + 48.31203000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLARTXBPGS", + "network": "WAAT", + "ref": "706184", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWATP6204722083240254203", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89963400000, + 49.18745400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE462", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-09-20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Handynamic_Rennes", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58757000000, + 48.15300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "VIANE - Place Du Petit Train", + "start_date": "2021-03-23", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "26 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8131400122;FRS81E8131400121;FRS81E8131400112;FRS81E8131400111", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58171200800, + 43.73695755000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "442414207", + "capacity": "16", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIPKEPPM", + "ref": "FRIPKEPPM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-06", + "description": "INTERPARKING - Salon de Provence place Morgan", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441000000, + 43.63799000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-08-24;2024-05-24", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "CHOLET - Rue Aubance;OuestCharge - Quick Charger Evtronic - Cholet - Aubance", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS49E49099006;FRS49P49099F", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83442000000, + 47.07870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRS60P5509679998585172568", + "network": "Mouv'Oise", + "description": "Mouv'Oise/OHL8HOTRVI", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "585566", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46478900000, + 49.19523500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-11-24;2021-11-03", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DOUVRIN - rue Marcel Cabiddu", + "network": "pass pass électrique", + "charging_station:output": "50 kW;36 kW", + "ref:EU:EVSE": "FRH13E62276001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84602700000, + 50.51072000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NIMES - Rue Michel Debré", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30189008", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36765100000, + 43.81401200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Belz - Avenue Général de Gaulle", + "start_date": "2017-08-29", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPSZCJC", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16775800000, + 47.67557000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Center Parcs Le Bois Aux Daims", + "operator": "Last Mile Solutions", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90291164", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00364000000, + 47.09240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - ePremium - Vincennes - Diderot (216)", + "start_date": "2022-03-18", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94080J", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45519471000, + 48.84968646000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*145*1*_*_", + "network": "SIGEIF", + "start_date": "2021-08-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 9 RUE RENE SAHORS - VANVES", + "ref:EU:EVSE": "FRSIGPSIGE14512;FRSIGPSIGE14511", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29055100000, + 48.82190200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E78545004", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT CYR l'ECOLE - Rue de Lattre de Tassigny", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06195760000, + 48.80835770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89647202", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Hérouville", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32365600000, + 49.20908100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Barbezieux-Saint Hilaire | Avenue du 14 Juillet", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "eef66935-7ba2-5439-b715-2d126c8908fb", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15862700000, + 45.47251100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2023-12-29", + "capacity": "2", + "amenity": "charging_station", + "description": "COMBS LA VILLE - Thérouanne", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE77CVEA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56673500000, + 48.65394800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-31", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "description": "RAMBOUILLET", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "charging_station:output": "22 kW;0 kW;150 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSRAMBO", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82916300000, + 48.62652700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2427EVCP01;LFR2427EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2427EVCP01;LFR2427EVCP02", + "description": "SARREGUEMINES Ormes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08762100000, + 49.11667500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Place Anatole France", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31555018", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43838400000, + 43.60606100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85970", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/WLQXF6NKY2", + "ref:EU:EVSE": "FREBNPWLQXF6NKY2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00450200000, + 45.74561100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5738124142087389717", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/A1OTAOVE13", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505533", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23237800000, + 49.09145100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "description": "PARIS - Très Grande Bibliothèque", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E75113004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37764900000, + 48.83229600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "231616;VICHY3", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPVICHY3", + "start_date": "2017-05-02", + "description": "Réseau eborn/VICHY3;Vichy, Porte de France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42184000000, + 46.12170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "La Farlède - Intermarché", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPLFAIM", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "start_date": "2024-08-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04448500000, + 43.16340100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Chalon-sur-Saône - EFFIA", + "ref:EU:EVSE": "FRP01E71076001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84338900000, + 46.78159600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref": "FRCPIE6613045;FRCPIE6665345", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6613045;FRCPIE6665345", + "network": "HPSM BORNE 1 ET 2", + "description": "HPSM BORNE 1 ET 2", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.77093100000, + 48.33096200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Montbrison, Place Bouvier", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPLZFEFO7KSR", + "ref": "LZFEFO7KSR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06076410000, + 45.60737650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1182096", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/s570548", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P6193154841492475750" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36996200000, + 47.75753500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/HS9LF6WZTM", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1946703656479752105", + "ref": "471066" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27368200000, + 48.90284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-07", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa-Su 09:00-12:00,Sa-Su 14:00-17:30", + "socket:type2_combo:output": "50 kW", + "ref": "FRTCBP01606", + "capacity": "2", + "network": "KIA MULHOUSE", + "description": "GROUPE CAR AVENUE - OHK MULHOUSE", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP01606", + "owner:ref:FR:SIREN": "479081903", + "charging_station:output": "50 kW;43 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30422280000, + 47.75047080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/BOQN0KHP5L", + "operator:email": "roaming@freshmile.com", + "ref": "477600", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8312784782235355234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16395000000, + 43.95966500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Renault - Aire sur l'Adour", + "start_date": "2022-10-27", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPEDENAUTORENAULT408001", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:30-18:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26482000000, + 43.72236700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS29E29076002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "description": "Milizac-Route de Gouesnou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.59860000000, + 48.42829900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11023001", + "description": "BADENS - Parking école communale", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50792181858, + 43.21858828323 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC89528;FRZP1PEAC49143", + "ref": "669af3db-44c8-426a-9442-fa86c06c44c0", + "description": "La Croix de Savoie - 22 kW AC", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Logis Hôtel la Croix de Savoie & Spa", + "owner:ref:FR:SIREN": "431916493", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63785211000, + 46.01801602000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57542;FRS08E57541", + "description": "MODULO - MONTHERMÉ - Pl. Jean Batiste Clément", + "start_date": "2021-09-07", + "ref:EU:EVSE": "FRS08E57542;FRS08E57541", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - MONTHERMÉ - Pl. Jean Batiste Clément", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73855300000, + 49.88518900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PSTFUZJ", + "description": "FDE 80/STFUZJ", + "ref": "34637", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38758000000, + 50.06550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*22*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-11-15", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST2213;FRIZFPFAST2212;FRIZFPFAST2211", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - ECUELLES MORET-SUR-LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84325100000, + 48.36769640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44005001;FRS44P44005A", + "amenity": "charging_station", + "start_date": "2024-04-26;2021-04-21", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "CHAUMES-EN-RETZ - Rue Du Clos Gris;OuestCharge - Diva Sp - Chaumes-En-Retz - Clos Gris", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91028100000, + 47.12510500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77047A;FRS77E77047001", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61HVVT0NPS06MV38WB", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "BOULEURS - Rue Du Mont;Bouleurs", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2015-07-01;2023-05-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90694900000, + 48.88202700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "410072177", + "operator": "GREENSPOT", + "network": "BOISSEE - IBIS BUDGET PETIT QUEVILLY ", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "start_date": "2024-09-28", + "description": " IBIS BUDGET PETIT QUEVILLY ", + "ref:EU:EVSE": "FRGSPP1234595640" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05511306999, + 49.42546227039 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219832;FRS37E219834", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - SACHE - Pl. Alexandre Calder", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E219832;FRS37E219834", + "network": "MODULO - SACHE - Pl. Alexandre Calder", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54287800000, + 47.24667500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PTLKZQJ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Pluneret - Rue Marie Curie", + "start_date": "2016-11-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95916000000, + 47.67360700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2023-08-03", + "capacity": "2", + "network": "Ville de Lens - 20 Place de la République", + "amenity": "charging_station", + "description": "Ville de Lens - 20 Place de la République", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P62498D", + "ref:EU:EVSE": "FRG10P62498D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83233956278, + 50.42623082559 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f4186fc3-f6b5-5fa0-80a4-60c9dbe91f20", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "191__SDEER17", + "description": "MOBIVE | BEAUVAIS SUR MATHA | Grande Place" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18654500000, + 45.88286400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE25512;FRSIGPSIGE25511", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 67 RUE DE VERSAILLES - VILLE-DAVRAY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-06-15", + "ref": "FR*SOD*S*SIGE*255*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18174600000, + 48.82169300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE2828345", + "ref": "FRCPIE2828345", + "start_date": "2021-09-07", + "network": "INTERMARCHE VILLEFRANCHE1", + "charging_station:output": "22 kW", + "description": "INTERMARCHE VILLEFRANCHE1", + "opening_hours": "Mo 09:00-20:00,Tu 09:00-20:00,We 09:00-20:00,Th 09:00-20:00,Fr 09:00-20:00,Sa 09:00-20:00", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70340500000, + 43.40411200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/ZVJ9WGG12K", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "454383", + "ref:EU:EVSE": "FRLE2P551801452242754751" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657700000, + 47.40421400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Donzenac | Pl. Martin Principaud", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "d87eef2d-5ec5-5ac0-8660-93f11626354f", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52455400000, + 45.22792100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-06-30", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - Faye l'Abbesse - Centre", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB12008A", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35227800000, + 46.83070800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;7 kW;3 kW", + "description": "ORY - Parking P3 SILO - Niveau 2;ORY - Parking P3 SILO - Niveau 3;ORY - Parking P3 SILO - Niveau 4;ORY - Parking P3 SILO - Niveau 5;ORY - Parking P3 SILO - Niveau 6", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "ref:EU:EVSE": "FRADPE914790186;FRADPE914790185;FRADPE914790184;FRADPE914790183;FRADPE91479018;FRADPE914790181;FRADPE914790182;FRADPE914790187;FRADPE914790188", + "start_date": "2023-03-24;2024-07-24", + "capacity": "16;18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36255400000, + 48.72878700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3134EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "SERIGNAN VALRAS", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3134EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28388300000, + 43.26716200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "SAINT-MARTIN-D'HERES - Rue des Universités (ex Avenue Centrale)", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38421001", + "start_date": "2022-03-02;2024-05-30", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76978100000, + 45.19160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*113*1*_*_", + "start_date": "2021-01-26", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "MANDELIEU-LA NAPOULE - PARKING CHANTIER NAVAL", + "ref:EU:EVSE": "FRA16PWIIZ11311;FRA16PWIIZ11312", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94124900000, + 43.52533000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "892527", + "charging_station:output": "22 kW", + "opening_hours": "Th,Tu,We,Fr,Mo 08:00-12:00,Fr,Th,Tu,We,Mo 14:00-19:00,Sa 14:00-18:00,Sa 09:00-12:00", + "description": "Freshmile France/LLKIEL089Y2D98", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3887217474949761784" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93969300000, + 43.58759600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Action - Cholet", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PACTCHO", + "start_date": "2024-02-05", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84510509178, + 47.07508454988 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPAAVBTG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "AAVBTG;133471", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/AAVBTG;Sainte-Croix-En-Jarez, Parking aux portes", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64742000000, + 45.47940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Mons-en-Baroeul - Hôtel Kyriad", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPMEBHK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10834200000, + 50.64998100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E95127006", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Cergy-Pontoise Genottes - EFFIA", + "start_date": "2024-02-16", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03583170000, + 49.04947160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6672145", + "network": "GRAMAGLIA SARL BORNE ELECTRIC", + "start_date": "2023-01-10", + "capacity": "2", + "amenity": "charging_station", + "description": "GRAMAGLIA SARL BORNE ELECTRIC", + "ref": "FRCPIE6672145", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35997900000, + 44.03914700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "ref:EU:EVSE": "FRECHPLLYID88WO2RPBD", + "opening_hours": "24/7", + "ref": "LLYID88WO2RPBD", + "network": "Easycharge services", + "start_date": "2024-07-12", + "description": "Amagney, Rue des Mirabelles", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15135800000, + 47.30324700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX2020", + "capacity": "4", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "ref": "FR*V75*PPX20*20", + "description": "Paris | Rue Pelleport 86", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40214360000, + 48.86760440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "682229", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2274252223378508681", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/QVONONBFDE", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64721600000, + 47.26324800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX05*05", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0505", + "opening_hours": "24/7", + "description": "Paris | bis Rue Valette 2", + "start_date": "2021-06-30", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34693650000, + 48.84799930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/UMSFRRANOQ", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P5374103778933657471", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346352", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12001900000, + 44.11633000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPMAURINFORD011701", + "network": "DRIVECO", + "description": "Ford - Ségny", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "start_date": "2021-03-09", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06965100000, + 46.30050600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Jacut de la Mer-Rue du Chatelet", + "ref:EU:EVSE": "FRS22E22302001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18900000000, + 48.59809900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E143320;FRS18E143319", + "capacity": "2", + "description": "MODULO - FOECY - Rue Gaston Cornavin", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E143320;FRS18E143319", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - FOECY - Rue Gaston Cornavin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16114800000, + 47.17766700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-22", + "capacity": "2", + "amenity": "charging_station", + "network": "SECURITEST", + "opening_hours": "Mo-Fr 08:45-18:30", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "22 kW", + "operator": "SARL BEAUDRE BAUDOT", + "owner:ref:FR:SIREN": "485169692", + "ref": "fr*map*e000014961534", + "operator:email": "gohel.stephane@orange.fr", + "description": "BORNE SECURITEST, DOUVRES LA DELIVRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38000000000, + 49.29000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P5218807546287555912", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "466341", + "description": "SDEA 10/MWJ3AW8XB5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21452000000, + 48.29891100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-07-28", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8100400112;FRS81E8100400111;FRS81E8100400121;FRS81E8100400122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "ALBI - Place Du Foirail Du Castelviel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13704991300, + 43.92675399800 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-18", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*96*1*_*_;FR*SOD*S*FAST*96*2*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST9621;FRIZFPFAST9612;FRIZFPFAST9611;FRIZFPFAST9613;FRIZFPFAST9622;FRIZFPFAST9623", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - MERS LES BAINS", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40687350941, + 50.06069541981 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "description": "OuestCharge - Pulse 50 - Pont-Saint-Martin - Olympique;PONT-SAINT-MARTIN - Rue De La Flamme Olympique", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS44P44130A;FRS44E44130001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-30;2024-04-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54039300000, + 47.11258500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-22;2016-01-22", + "ref:EU:EVSE": "FRS77E77302001;FRS77P77302A", + "description": "Montcourt-Fromonville;MONTCOURT-FROMONVILLE - Route De Moret", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61J7W7NMHQMVEC2RA6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69995000000, + 48.30003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62325001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-12-04;2021-11-03", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FAUQUEMBERGUES - Avenue Roland Huguet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09666800000, + 50.60348900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - AMBOISE - Rue André Huard", + "ref:EU:EVSE": "FRS37E221936;FRS37E221439", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - AMBOISE - Rue André Huard", + "ref": "FRS37E221936;FRS37E221439", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02235481000, + 47.41472228000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66354;FRS55E66355", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66354;FRS55E66355", + "description": "MODULO - SAMPIGNY - Rue Raymond Poincaré", + "network": "MODULO - SAMPIGNY - Rue Raymond Poincaré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51185900000, + 48.82147800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2022-09-20", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON13612;FRGLYPLYON13611", + "operator:email": "sav@izivia.com", + "description": "CRM01 - ROUTE DES MONTS DOR", + "ref": "FR*SOD*S*LYON*136*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82028300000, + 45.86980500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5923701", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59237*01", + "description": "VERLINGHEM - Place de Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99527100000, + 50.68138100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "IMT Douai - Lille Villeneuve", + "ref:EU:EVSE": "FRSSDPIMTDOUAI596501", + "operator:email": "support@driveco.com", + "start_date": "2018-09-07;2020-10-30", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13458000000, + 50.61150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MAURICE ESPACES VERTS", + "ref": "FRCPIE6573995", + "charging_station:output": "7 kW", + "network": "SAINT-MAURICE ESPACES VERTS", + "amenity": "charging_station", + "start_date": "2023-04-17", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6573995", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45626700000, + 48.81414400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/CK6TYRZRSZ", + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "882738", + "ref:EU:EVSE": "FRLE2P4322042945550884506" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298000000, + 47.79580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Montagne | Centre Bourg", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "09185f1b-1959-5fa9-83f6-9d53eb92c08d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12678100000, + 44.92953100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "0f91011d-492f-54e0-a183-010642c7289e", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Leuville-sur-Orge - Rue Jules Ferry" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26349800000, + 48.61608100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO0001521", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO0001521", + "network": "Allego NISSAN Besancon", + "start_date": "2022-12-14", + "description": "Allego NISSAN Besancon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99311600000, + 47.24265700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2488EVCP01", + "description": "LA GRANDE MOTTE Fages", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2488EVCP01", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07791100000, + 43.55924600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE9911;FRM06PNICE9912;FRM06PNICE9921;FRM06PNICE9922", + "description": "NICE - PARKING EDITH PIAF RP", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*99*2*_*_;FR*SOD*S*NICE*99*1*_*_", + "start_date": "2023-07-27;2020-12-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26359012545, + 43.69782878943 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - LIFFOL - Rue de l'Orme", + "ref:EU:EVSE": "FRS88E163471;FRS88E163473", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LIFFOL - Rue de l'Orme", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS88E163471;FRS88E163473", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58120176000, + 48.31761748000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "SAINT-RAPHAEL - RUE LEON ISNARD", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*223*1*_*_", + "start_date": "2022-12-02", + "ref:EU:EVSE": "FRA16PWIIZ22311;FRA16PWIIZ22312", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77005700000, + 43.42612100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "377483", + "description": "Freshmile France/valmontmairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7248876427599520140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69759000000, + 49.08290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "start_date": "2023-05-17", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRPD1PMBRLHA", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Mr. Bricolage - Les Hauts-d'Anjou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50006806851, + 47.67989722343 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPQH0TXLZWSV", + "ref": "QH0TXLZWSV", + "network": "eborn", + "description": "Bonneville, Avenue de la gare", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41730200000, + 46.07824910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/D57E6D82-F7F8-463E-8C44-0502FDFA154C", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP8031318387035144516", + "operator:email": "support@evzen.com", + "ref": "927813", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39388600000, + 43.25579400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "capacity": "146", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E593500099;FRP07E593500093;FRP07E593500092;FRP07E5935000914;FRP07E593500091;FRP07E59350009;FRP07E5935000910;FRP07E5935000911;FRP07E5935000912;FRP07E5935000913;FRP07E593500094;FRP07E593500095;FRP07E593500096;FRP07E593500097;FRP07E593500098", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LILLE - Euralille Centre Commercial", + "start_date": "2023-03-23;2024-01-30", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07480864734, + 50.63652009332 + ] + } + }, + { + "type": "Feature", + "properties": { + "natural": "water", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011;Bing", + "water": "basin" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.21019540000, + 49.97181200000 + ], + [ + 1.21025260000, + 49.97181650000 + ], + [ + 1.21031900000, + 49.97184620000 + ], + [ + 1.21035640000, + 49.97188820000 + ], + [ + 1.21035800000, + 49.97247450000 + ], + [ + 1.21031000000, + 49.97250130000 + ], + [ + 1.21031830000, + 49.97258140000 + ], + [ + 1.21031520000, + 49.97263150000 + ], + [ + 1.21029110000, + 49.97266900000 + ], + [ + 1.21025450000, + 49.97269900000 + ], + [ + 1.21017730000, + 49.97272150000 + ], + [ + 1.21007700000, + 49.97271700000 + ], + [ + 1.20965150000, + 49.97264800000 + ], + [ + 1.20953810000, + 49.97260210000 + ], + [ + 1.20945240000, + 49.97254250000 + ], + [ + 1.20939760000, + 49.97248720000 + ], + [ + 1.20937540000, + 49.97242230000 + ], + [ + 1.20937730000, + 49.97234320000 + ], + [ + 1.20944010000, + 49.97224460000 + ], + [ + 1.21003330000, + 49.97185640000 + ], + [ + 1.21011520000, + 49.97181840000 + ], + [ + 1.21019540000, + 49.97181200000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUTZ2KU4Z0Y", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "UTZ2KU4Z0Y;23632", + "description": "Largentière, Place les Vergnades;Réseau eborn/UTZ2KU4Z0Y", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29186100000, + 44.53852800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Toulon, Piscine Du Pin D'Alep;Réseau eborn/QP7TLLYXNL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "306109;QP7TLLYXNL", + "start_date": "2020-11-05", + "ref:EU:EVSE": "FREBNPQP7TLLYXNL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89540100000, + 43.14378700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-10-06", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP121024", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Première Classe Caen Mondeville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29911000000, + 49.16330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLOR1MDD517B82", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8014478427048397077", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009152", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62951400000, + 49.08133700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1217", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | ter Rue de Picpus 122", + "amenity": "charging_station", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "ref": "FR*V75*PPX12*17", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40224450000, + 48.83731490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "505584", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/HWIOS76HPC", + "ref:EU:EVSE": "FRFR1P1727797262088589232", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11762200000, + 45.89946500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPBAYERNBMW592101", + "capacity": "8", + "network": "DRIVECO", + "description": "BMW Mini - Dunkerque", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-06-23", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38086900000, + 51.00736400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PEPAIGNESMAIRIE", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900023", + "opening_hours": "24/7", + "network": "SIEGE27", + "start_date": "2016-05-26", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43984000000, + 49.27973000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "180416", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "ref:EU:EVSE": "FRS21P21584A", + "operator:email": "roaming@freshmile.com", + "description": "SICECO/FR*S21*P21584*A", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23079600000, + 47.28151500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-GERMAIN-EN-LAYE - TOURVILLE 2", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551013", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08633720000, + 48.90419510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-06-17", + "ref:EU:EVSE": "FRROSE106", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "description": "Hutt_lanmary" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82281400000, + 45.23903900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "880233", + "network": "WAAT", + "capacity": "2", + "description": "WAAT/FRWATLIYYDQSTM", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "charging_station:output": "6.9 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWATP2759476815640582578" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32625100000, + 47.56909800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE436000", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE436000", + "start_date": "2021-02-24", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Kergoët", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18739800000, + 48.27399600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E41324;FRS51E41325", + "ref": "FRS51E41324;FRS51E41325", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "network": "MODULO - REIMS - Pl. Alfred Brouette", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - REIMS - Pl. Alfred Brouette", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04679500000, + 49.26041100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Morêt-Loing-et-Orvanne - Médiathèque", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "ref": "ed533ac5-8c7b-48d6-8733-716d26cb0ebc", + "operator": "Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77316D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82617000000, + 48.35976300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DE VALLEE DE L ERVE", + "ref:EU:EVSE": "FRHPCENF080355", + "ref": "FRHPCPNF080355", + "capacity": "8", + "start_date": "2024-07-20", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34253300000, + 48.02651300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34143001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-12-28", + "description": "LOUPIAN - Ancien Chemin De Poussan", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61534722222, + 43.45094440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYDWRKB", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2016-11-30", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Rue de Lanveur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38746100000, + 47.74267100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PIPHPE34WD", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7296369276825043681", + "amenity": "charging_station", + "capacity": "1", + "ref": "1009200", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.26599200000, + -21.01416700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-12-29", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92051M", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - ePremium - Neuilly-sur-Seine - Jacques Dulud;Métropolis/FR*MGP*P92051*M", + "charging_station:output": "25 kW;22 kW", + "ref": "599079", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26573800000, + 48.88099500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fiat - Coignières", + "ref:EU:EVSE": "FRSSDPPRIODFIAT783101", + "network": "DRIVECO", + "start_date": "2020-07-09", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 09:30-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93210100000, + 48.75680200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC2P004502;FRC2P004501", + "description": "SCIC SEMPIN", + "capacity": "2", + "amenity": "charging_station", + "network": "SCIC SEMPIN", + "opening_hours": "24/7", + "ref": "FRC2P004502;FRC2P004501", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "start_date": "2022-12-12", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58188528658, + 48.90204545430 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMECHAUMIERE11", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "description": "HOSTELLERIE LA CHAUMIERE", + "operator": "LUMI'IN", + "ref": "30893f16-8cc1-4c38-ac64-f258d2f9bdd1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64512480000, + 48.26904750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "5c8dfc83-093d-5014-8669-5e4dae5e9c49", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Branne | Avenue du 8 Mai 1945", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18683600000, + 44.82939700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE24LABA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-07-11", + "description": "Lardin Saint Lazare- Place Delas", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22658500000, + 45.12906700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "start_date": "2023-05-02;2023-06-02", + "charging_station:output": "7.4 kW;22 kW", + "ref": "756453;26596", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN91;FRBHMESAINTQUENTIN81;FRBHMESAINTQUENTIN71;FRBHMESAINTQUENTIN141;FRBHMESAINTQUENTIN111;FRBHMESAINTQUENTIN101;FRBHMECASA1;FRBHMECASAB1;FRBHMESAINTQUENTIN151;FRBHMESAINTQUENTIN161;FRBHMESAINTQUENTIN171;FRBHMESAINTQUENTIN181;FRBHMESAINTQUENTIN1941;FRBHMESAINTQUENTIN21;FRBHMESAINTQUENTIN31;FRBHMESAINTQUENTIN51", + "description": "borneco saint quentin ;borneco casaa;borneco casab" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78044600000, + 43.95855750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/JJVAYN6WHW", + "operator:email": "roaming@freshmile.com", + "ref": "446738", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P4164740616033279497", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "44" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149500000, + 44.88383500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Mimet, Rue de Balotesti", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PB42MUATGIM", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50502000000, + 43.41700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P3618077066584945440", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/GE5GIEJMTM", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28908200000, + 47.97441300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*79*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-06-11", + "capacity": "2", + "amenity": "charging_station", + "description": "PEGOMAS PARKING LOGIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ7912;FRA16PWIIZ7911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92952900000, + 43.59236100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P955541294902842296", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/M2EKYW5E8U", + "operator": "Freshmile | FR*FR1", + "ref": "749349" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13951300000, + 45.70240900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Subway - Vertou", + "ref:EU:EVSE": "FRPD1PSUBVER", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46388641423, + 47.18596131102 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "510653;PZ5XASX8DE", + "description": "Hyères, Place des Aigrettes;Réseau eborn/PZ5XASX8DE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPPZ5XASX8DE;FREBNP6718474754067213140", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17573900000, + 43.10600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP4912642072289888022", + "opening_hours": "24/7", + "description": "ENGIE MAMP - Bornes publiques/A7F218D9-63CF-49E0-AA08-EAE49E1F0980", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "1057131" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37924200000, + 43.24185900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*695*6*_*_;FR*SOD*S*OTHR*695*3*_*_;FR*SOD*S*OTHR*695*2*_*_;FR*SOD*S*OTHR*695*1*_*_;FR*SOD*S*OTHR*695*4*_*_;FR*SOD*S*OTHR*695*5*_*_", + "start_date": "2023-11-27", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR69551;FROTHPOTHR69511;FROTHPOTHR69521;FROTHPOTHR69531;FROTHPOTHR69541;FROTHPOTHR69561", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "GROUPE VIKINGS", + "operator:email": "sav@izivia.com", + "description": "CASINO - BARBAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62040277728, + 43.03064830970 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/KOKMLXJ1C1;Valence, Avenue des Langories", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "37174;KOKMLXJ1C1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPKOKMLXJ1C1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90288900000, + 44.90444500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUELO0XXIY8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "48301;UELO0XXIY8", + "description": "Chandolas, Le Verdal;Réseau eborn/UELO0XXIY8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23633000000, + 44.39337300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDEIS AEROPORT CHERBOURG-MAUPERTUS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*379*1*_*_", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "AEROPORT DE CHERBOURG-MANCHE", + "ref:EU:EVSE": "FROTHPOTHR37911;FROTHPOTHR37912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47713700000, + 49.64724500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "529550", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QSJIQWEZ6G", + "ref:EU:EVSE": "FRFR1P3584222538166620967", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32486200000, + 46.49628200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP33179", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Caen Saint Contest, France ", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39913300000, + 49.20080700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLZSER0FT1OFYI", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "1169430", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8979798905514783278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00937200000, + 49.13945200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPBMSBMW766001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "start_date": "2022-11-08", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-18:30", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Le Havre", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14793600000, + 49.49111400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/QUVPSIP9F5", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7966769827630413067", + "ref": "466167" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62493800000, + 43.99756800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plerin-Saint Laurent", + "ref:EU:EVSE": "FRS22E22187001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72760500000, + 48.54206100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "812806461", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZMAE22AC49606", + "start_date": "2020-12-03", + "network": "Mazda - Bourges", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "49606", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "description": "Mazda - Bourges - 22kW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41493030000, + 47.11128930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE319", + "description": "Hotel_Ibiss_Dunkerque", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38004200000, + 51.04075100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78317001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "JAMBVILLE - Rue Du Regard", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85059700000, + 49.04696400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Coquelles", + "network": "Coquelles", + "opening_hours": "24/7", + "start_date": "2022-02-10", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE439751;FRIOYE439704;FRIOYE439703;FRIOYE439702;FRIOYE439701;FRIOYE439705;FRIOYE439706;FRIOYE439752;FRIOYE439753", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE439751;FRIOYE439704;FRIOYE439703;FRIOYE439702;FRIOYE439701;FRIOYE439705;FRIOYE439706;FRIOYE439752;FRIOYE439753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79819500000, + 50.92702480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Evron - Basilique", + "start_date": "2021-04-08", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "network": "TEM53", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53P53097A", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40295500000, + 48.15581300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66024001", + "charging_station:output": "22 kW", + "description": "LE BOULOU - Rue Du Souvenir Français", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83232100000, + 42.52643100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "ref": "FRIENE009002;FRIENE009001", + "start_date": "2023-05-26", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE009002;FRIENE009001", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Saint-Pierre-la-Cour", + "network": "Saint-Pierre-la-Cour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04947000000, + 48.12164000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "BREAL SOUS MONTFORT - 30 rue de la petite motte ", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr", + "ref:EU:EVSE": "FRS35P35037001B1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86792500000, + 48.05002200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SE61-NECY-001", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61303A", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "NECY - Rue de Vignats" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11419500000, + 48.83293380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2007491113230803270", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466044", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/HYOVWUYG9D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16486100000, + 47.48374600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PEVEHSU", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "start_date": "2017-12-15", + "description": "L'Isle en Dodon;Roulez Électrique En Haute-Garonne/EVEHSU", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "64862;EVEHSU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83871000000, + 43.38090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE92044001", + "network": "SIPPEREC", + "description": "LEVALLOIS PERRET - Place de la République", + "start_date": "2021-07-15;2021-07-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28873300000, + 48.89322700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "FRCG0E000314;FRCG0E000312;FRCG0E000311;FRCG0E000313;FRCG0E000315", + "amenity": "charging_station", + "description": "Sure Hotel - 2", + "start_date": "2022-06-30", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000314;FRCG0E000312;FRCG0E000311;FRCG0E000313;FRCG0E000315", + "network": "Sure Hotel - 2", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00540000000, + 49.28135700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE P+R IKEA", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE15831;FRM06PNICE15821;FRM06PNICE15811;FRM06PNICE15841;FRM06PNICE15851", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*158*5*_*_;FR*SOD*S*NICE*158*4*_*_;FR*SOD*S*NICE*158*3*_*_;FR*SOD*S*NICE*158*1*_*_;FR*SOD*S*NICE*158*2*_*_", + "start_date": "2022-08-16", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19486400000, + 43.70582600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "7e7a68ba-da31-5bf9-ad76-a9aeba2b2492", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Marmande | Place de la Couronne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16916700000, + 44.50166700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*301*1*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30111;FRSIGPSIGE30112", + "opening_hours": "24/7", + "description": "SIGEIF - 7 QUAI DASNIERES - VILLENEUVE-LA-GARENNE", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-09-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33597500000, + 48.93511900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Casino Supermarché - Torcy", + "ref": "205174;205173;205175;205176", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS205176;FRBMPS205174;FRBMPS205173;FRBMPS205175", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44057810000, + 46.77987510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2677EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2677EVCP01", + "charging_station:output": "22 kW", + "description": "PONT A MARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12025800000, + 50.51862600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Curemonte | Parking lesturgie", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8c3814b3-f811-55e4-9a08-49eb313778c9", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73872700000, + 45.00363700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "description": "Viry-Châtillon - Boulevard Meder", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "fd6addc8-dfb0-5a08-86e8-1d7d65fad911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38285100000, + 48.68125000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP06000NCEPALME1RA", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P06000*NCE*PALME1RA", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "INTENCITY - PARKING PALMEIRA - NICE", + "operator:email": "contact@e55c.com", + "start_date": "2024-01-05", + "charging_station:output": "2.3 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25547700000, + 43.69819700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3074EVCP02;LFR3074EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3074EVCP02;LFR3074EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "MONTAUBAN Paris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37480800000, + 44.03248100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "917316", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPVDP8082138388279479122", + "charging_station:output": "300 kW;22 kW", + "network": "Proviridis", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator:email": "data.gouv@proviridis.fr", + "capacity": "9", + "description": "Proviridis/6426d2f8e68d7362559e5b6f", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25714200000, + 46.22638600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref": "LLTHE8SOLN8KMX", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Salavas, Chemin de la Gleizasse", + "ref:EU:EVSE": "FREBNPLLTHE8SOLN8KMX", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37680700000, + 44.39413000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP49007A", + "description": "e-Totem - DASSIN Première Classe Angers", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref": "FRETIP49007A", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51104675969, + 47.47174802338 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E34032002;FRP01E340320021", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "description": "Parking de Béziers Charles de Gaulle - EFFIA", + "start_date": "2023-07-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21809034855, + 43.34501588615 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT633601", + "amenity": "charging_station", + "start_date": "2023-05-04", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Gerzat", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15274200000, + 45.81722000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "aqualudique;38833", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "description": "Réseau eborn/aqualudique;Bellerive sur Allier, Parking Aqualudique", + "socket:type2_combo:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPAQUALUDIQUE", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39618400000, + 46.12712200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*492*1*_*_;FR*SOD*S*OTHR*492*2*_*_", + "start_date": "2022-09-09", + "ref:EU:EVSE": "FROTHPOTHR49222;FROTHPOTHR49212;FROTHPOTHR49211;FROTHPOTHR49221", + "description": "BRICOMARCHE - DOLE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50860600000, + 47.10859900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/YDHE3VJJY9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5953230779976114156", + "ref": "529826" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29787000000, + 47.96141400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "start_date": "2023-12-15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10091971;FRUBIE10040894", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-174", + "ref": "setp0100000126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24208300000, + 49.66094400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7056207417009823896", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/HPIJ5SALHF", + "ref": "454044" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54018000000, + 48.33960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "ref:EU:EVSE": "FRTLSE31555031", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOULOUSE - Parking Rue Paul Bernies", + "charging_station:output": "22 kW;90 kW;180 kW", + "start_date": "2024-01-26;2024-07-05", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41479000000, + 43.61130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "598092", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XLLMSNVNT8", + "ref:EU:EVSE": "FRFR1P7726445584132619473", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04681300000, + 44.51054800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/AU5QM7JWO3", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P3198559116606799561", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "456786" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457000000, + 49.30206000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS12E12056002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-10", + "description": "BARAQUEVILLE - Place René-Cassin G2", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43246950000, + 44.27724640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "805230", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA3P6247710319184494391", + "description": "WAAT/FRWA3LXQI8OSF8", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98272200000, + 43.90897400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "start_date": "2021-04-28;2024-04-03", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49179A;FRS49E49179001", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Le Longeron - Bonnet;LE LONGERON - Rue Eugene Bonnet", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06114800000, + 47.01714400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "64997", + "description": "SIED70/PortsurSaone", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS70PPORTSURSAONE", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04208000000, + 47.68370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-06", + "description": "LEDRINGHEM - Route D'Arneke", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59338001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43902800000, + 50.85447700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - JOUE LES TOURS - Rue Denis Papin", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - JOUE LES TOURS - Rue Denis Papin", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E209663;FRS37E209631", + "ref": "FRS37E209663;FRS37E209631", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65434600000, + 47.35402400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "ref": "518357", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63236A", + "description": "SIEG 63/FR*S63*P63236*A", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80837300000, + 45.57239100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59041001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BACHANT - Rue Alphonse Polvent" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86551100000, + 50.21413800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "21845", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/KHRYDG", + "ref:EU:EVSE": "FRS32PKHRYDG", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07928000000, + 43.61370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94017006", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHAMPIGNY-SUR-MARNE - Avenue Ambroisine", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56165910000, + 48.81575190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-01-22", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*280*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - SQUARE BOOTH", + "ref:EU:EVSE": "FRM06PNICE28011;FRM06PNICE28012", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25052363069, + 43.71402679364 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "d8d3e57b-5750-572a-bf34-d0e414d391ee", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Tamnies | Place Salle des Fetes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15009000000, + 44.96633500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*410*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - 15 RUE MARTEL - LISLE-ADAM", + "ref:EU:EVSE": "FRSIGPSIGE41011;FRSIGPSIGE41012", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21653100000, + 49.11130500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76540009", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ROUEN - Parking Vieux Marche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08833500000, + 49.44348200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "CHARMEIL Pourçain", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR2970EVCP01;LFR2970EVCP02;LFR2970EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2970EVCP01;LFR2970EVCP02;LFR2970EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39327700000, + 46.15674700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "04c23147-ed90-5a1c-a0b9-f5741cf00373", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Gouzon | Place du Champ de Foire", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23965300000, + 46.19073300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "0a29fc0f-a888-5365-9981-3f1cbe2e851a", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "ANSOUIS - Pl. Saint-Elzéar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46550000000, + 43.73836000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FR594E59122009", + "charging_station:output": "22 kW", + "start_date": "2021-12-06", + "network": "pass pass électrique", + "description": "CAMBRAI - Rue du Champ de Manœuvre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24091700000, + 50.18199200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref:EU:EVSE": "LFR4091EVCP04;LFR4091EVCP01;LFR4091EVCP02;LFR4091EVCP03", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CHATEAUDUN", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4091EVCP04;LFR4091EVCP01;LFR4091EVCP02;LFR4091EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33335200000, + 48.06214200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-02-15", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché - Rezé", + "ref:EU:EVSE": "FRPD1PITMREZ", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53322000000, + 47.17995000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPH6VUVLTMNF", + "description": "Réseau eborn/H6VUVLTMNF", + "ref": "30257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47059400000, + 45.65131300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Ibis Styles Frejus ", + "ref:EU:EVSE": "FRETIP83061A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "start_date": "2024-05-30", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP83061A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72914300000, + 43.42519400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PCORMET", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-08-12", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "description": "Cora - Metz-Technopôle", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22776072773, + 49.10626613488 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-09-17", + "ref:EU:EVSE": "FRDRVPCRFMKT594601", + "description": "Carrefour Market - Jeumont", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10071900000, + 50.29459600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2024-02-01", + "ref:EU:EVSE": "FRESEPS42044AB", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "description": "SEMOB - Rue Thomas", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42044AB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33189620986, + 45.39809623645 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH20411;FROTHPAUCH20412", + "description": "AUCHAN - PEROLS", + "start_date": "2023-12-29", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*AUCH*204*1*_*_", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94025600000, + 43.57219170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRCPIE6821775;FRCPIE6821765;FRCPIE6821565", + "amenity": "charging_station", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6821765;FRCPIE6821565;FRCPIE6821775", + "operator:email": "info@chargepoint.com", + "description": "MANOIR STATION 7", + "network": "MANOIR STATION 7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72220000000, + 48.55345700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2234326394194026462", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "Sa,We,Fr,Tu,Th,Mo 08:00-12:30,Sa,Fr,Th,We,Tu,Mo 14:00-19:00", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VRKBJPV0VD", + "ref": "559808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78750200000, + 49.38905500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "start_date": "2021-04-14", + "ref": "FR*V75*P9015*05", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue de Vouillé 25", + "ref:EU:EVSE": "FRV75P901505", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30552900000, + 48.83470500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/GGAMYMHXPY", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "515015", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7711535447862052975", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78290300000, + 47.68423800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Tesla Supercharger Poitiers", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP1762", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36265100000, + 46.67035600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5308631974357403697", + "ref": "892254", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLIVPQ0AY1UT5Y", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.88289900000, + 48.69172800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-02-22", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363711", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "description": "R3 - Norauto Quetigny", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10167300000, + 47.31136500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461970", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P661510678849965952", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/UTPIDLSOX7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04856100000, + 48.84097700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "description": "Plan-D'Orgon, Route De Cavaillon", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS13PBEKMYGZAFL", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99899100000, + 43.80944700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1041819", + "network": "WAAT", + "description": "WAAT/FRWA7LQKHTHBSY", + "capacity": "24", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA7P127252274867362949", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA7", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30066600000, + 47.04800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Vivy - Soeurs", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49378A", + "start_date": "2021-06-16", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05568300000, + 47.32585500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "GUITALENS LALBAREDE - Place de la Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81132001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03870400000, + 43.64237900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2023-06-15;2023-02-03;2023-01-23;2023-01-19;2022-12-19", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF058911", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF058911", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681021;531681019;531681018;531681017;531681024;531681023;531681022;531681020", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "REL.VENOY OUEST CHABLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67190000000, + 47.78770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SALVIAC - D673, parking Pharmacie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46297001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26840200000, + 44.68252200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PCVA0LBMFFS", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "298633", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/CVA0LBMFFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15478000000, + 47.34644400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-03-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LAMBRES LEZ DOUAI - RUE GALLIENI", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59329003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07949900000, + 50.35040900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Roscoff-Rue Célestin Seite", + "ref:EU:EVSE": "FRS29E29239002", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98536900000, + 48.72420900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PTCSBVD", + "operator": "Freshmile", + "description": "Lorient - Boulevard Abbé Louis le Cam", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35960200000, + 47.73054500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CIVRAY-1-1;CIVRAY-1-2", + "start_date": "2017-02-15", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346051641;FRLMSE12346051632;FRLMSE12346051631;FRLMSE12346051642", + "opening_hours": "24/7", + "ref": "B034", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29635000000, + 46.14706000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "ref:EU:EVSE": "FRMGPP93005B", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "start_date": "2021-06-30", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389000, + 48.93369727000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE8341;FRSIGPSIGE8321;FRSIGPSIGE8311;FRSIGPSIGE8331;FRSIGPSIGE8351", + "ref": "FR*SOD*S*SIGE*83*4*_*_;FR*SOD*S*SIGE*83*1*_*_;FR*SOD*S*SIGE*83*2*_*_;FR*SOD*S*SIGE*83*3*_*_;FR*SOD*S*SIGE*83*5*_*_", + "description": "SIGEIF - 2 PLACE CHARLES DE GAULLE - VAUCRESSON", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "start_date": "2021-02-15;2021-03-02;2021-02-19", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15209600000, + 48.83718600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP1542063854300574062", + "network": "Atlante", + "description": "Atlante/FRATLZ331_FRODYSSE_000001", + "ref": "940608", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92021000000, + 43.60269000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1000081821", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "description": "Howdens Massy", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28606100000, + 48.72207900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Arette | Route d'Issor", + "ref": "bdce1c4e-1f2e-528c-993f-7dc4e355f1d6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71523400000, + 43.09505100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85182001", + "description": "POUZAUGES - Rue Joachim Rouault", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84160000000, + 46.77822100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Coquelles", + "description": "Allego Carrefour Coquelles", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9006831;FRALLEGO9006691;FRALLEGO9002813;FRALLEGO9002812;FRALLEGO9001771;FRALLEGO9000281;FRALLEGO9000282;FRALLEGO9001772;FRALLEGO9002811;FRALLEGO9006692;FRALLEGO9006832", + "start_date": "2023-07-10", + "ref": "FRALLEGO9006831;FRALLEGO9006691;FRALLEGO9002813;FRALLEGO9002812;FRALLEGO9001771;FRALLEGO9000281;FRALLEGO9000282;FRALLEGO9001772;FRALLEGO9002811;FRALLEGO9006692;FRALLEGO9006832" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81066400000, + 50.93231900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP1812;FRIZMPMAMP1811", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-04-01", + "network": "IZIVIA", + "description": "IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE SATELITE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*MAMP*18*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31663000000, + 43.35941000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Match - Avesnes-les-Aubert", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2023-12-01", + "ref:EU:EVSE": "FRPD1PMATALA", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38813044373, + 50.18997162688 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "ref": "Y4YC7FBRZQ;346985", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP5025074030968006413;FREBNPY4YC7FBRZQ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/Y4YC7FBRZQ;Chambery, Piscine Chambery 29 Rue Henri Oreiller" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93663200000, + 45.56597600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref": "1169313", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3270495314594713585", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "description": "EVzen/253B283B-B935-4E87-B7C6-106469E7DE01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64420100000, + 47.04519300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Basic Fit - Héricourt", + "amenity": "charging_station", + "start_date": "2023-11-14;2024-04-25", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PHLFHRC", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77317447672, + 47.58187723921 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPC4DAJBRGSS", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-05", + "description": "Réseau eborn/C4DAJBRGSS;Toulon, Plages Du Mourillon Entrée Ouest 1-1", + "ref": "C4DAJBRGSS;306124" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94340700000, + 43.10850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP21390A", + "opening_hours": "24/7", + "ref": "FRETIP21390A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - LAPEYRE Marsannay la cote" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00978007563, + 47.28169529764 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*181*4*_*_;FR*SOD*S*OTHR*181*1*_*_;FR*SOD*S*OTHR*181*2*_*_;FR*SOD*S*OTHR*181*3*_*_;FR*SOD*S*OTHR*181*5*_*_", + "start_date": "2021-04-13", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR18121;FROTHPOTHR18111;FROTHPOTHR18131;FROTHPOTHR18141;FROTHPOTHR18151", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "ARCACHON", + "operator:email": "sav@izivia.com", + "description": "ARCACHON - MOULLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20166300000, + 44.64171600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-11-27", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*14*1*_*_", + "description": "MONTHLERY - CLOS BOUQUET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRCPSPCAPS1412;FRCPSPCAPS1411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27054200000, + 48.64104100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6728253981654245261", + "ref": "472176", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CQ2K0BBPT6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77001400000, + 48.59239500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "CENTER PARCS LES BOIS-FRANCS - Maison du Lac", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-06-20", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP123017", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84307800000, + 48.72579200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "515150", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ZXZOFYGKVX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5376073812986789617", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02238400000, + 47.76453500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SAS HADERMA", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRSUAP49054A", + "capacity": "2", + "description": "SUPER U CANDE", + "amenity": "charging_station", + "ref": "FRSUAP49054A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03205900000, + 47.56910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "160230", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/possessjolizac", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P677799215482435702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.32610000000, + -20.96210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPJFCVOLVOLISIEUX141001", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Volvo - JFC - Lisieux", + "start_date": "2022-09-29", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21887500000, + 49.16874800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref": "FRS28E134777", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E134777", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHARTRES - Pl. Saint Jean", + "network": "MODULO - CHARTRES - Pl. Saint Jean" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48298800000, + 48.44983200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "Non concerné", + "owner:ref:FR:SIREN": "917220985", + "amenity": "charging_station", + "capacity": "1", + "description": "Borne Hager Hostellerie aux deux cléfs", + "ref:EU:EVSE": "Non concerné", + "network": "Hostellerie aux deux cléfs", + "start_date": "2022-06-30", + "operator:email": "francoise.groff@deux-clefs.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "GROFF SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54000000000, + 48.04000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "ref:EU:EVSE": "FRS10P5695399093364958347", + "description": "SDEA 10/SGEMIBGXBY", + "opening_hours": "24/7", + "ref": "706058", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09722200000, + 48.30888300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "747309", + "opening_hours": "24/7", + "capacity": "41", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP981648456431467579", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLVIINCX5O" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27762200000, + 48.83296900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P50332001", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-01-15", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "LES MOITIERS D’ALLONNE – D650 Station TOTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78334100000, + 49.40609600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "start_date": "2023-06-29", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81281001", + "description": "SEMALENS - Place de la Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11078850000, + 43.59231020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE477205;FRIOYE477204;FRIOYE477202;FRIOYE477201;FRIOYE477203;FRIOYE477206;FRIOYE477251;FRIOYE477252;FRIOYE477253", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "start_date": "2024-01-29", + "description": "Toulouse Ouest", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "Toulouse Ouest", + "ref:EU:EVSE": "FRIOYE477205;FRIOYE477204;FRIOYE477202;FRIOYE477201;FRIOYE477203;FRIOYE477206;FRIOYE477251;FRIOYE477252;FRIOYE477253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41164900000, + 43.63099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "25 kW", + "description": "BRISSAC-LOIRE-AUBANCE - Rue du Layon", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49050002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40891701000, + 47.31863784790 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PSTJUSTCHAUS", + "description": "Mouv'Oise/Stjustchaus", + "ref": "48955" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43583000000, + 49.50560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH11E62038001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "ARDRES - Avenue de Saint-Omer", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98628700000, + 50.85268800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30138001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LANGLADE - Chemin Des Aires", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24672300000, + 43.80510100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/LLXUCH4M6YG14D", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56P3408864569624541896", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "124 kW", + "opening_hours": "24/7", + "ref": "1161867", + "charging_station:output": "124 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91127800000, + 47.54639400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B080", + "ref:EU:EVSE": "FRLMSE12346396391;FRLMSE12346396401", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-03-21", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "description": "PRESSAC-1-2;PRESSAC-1-1", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57314000000, + 46.11510800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Métropolis/FR*MGP*P94069*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRMGPP94069A", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "419988", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205700000, + 48.82215200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*114*1*_*_", + "start_date": "2021-05-21", + "ref:EU:EVSE": "FRSIGPSIGE11411;FRSIGPSIGE11412", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - AVENUE DU MARECHAL LECLERC - CHENNEVIERES-SUR-MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53094000000, + 48.79650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78168003", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03", + "description": "COIGNIERES - Rue des Etangs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91779900000, + 48.74703400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89397449", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - La Vôge-les-Bains - Médiathèque", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26399700000, + 48.00221200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Vaux Rouillac | Parking Salle des Fêtes", + "network": "CPO CITEOS Mobive", + "ref": "08c2085a-d4f2-5303-9c67-f939ed51a5ea", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09341800000, + 45.74316100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2023-12-29", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE63MABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "La monnerie le Montel Sortie péage", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62397100000, + 45.87609700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref": "FRALLEGO9006222;FRALLEGO9006221;FRALLEGO9005702;FRALLEGO9003722;FRALLEGO9001662;FRALLEGO9001661;FRALLEGO9003721;FRALLEGO9005701", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22", + "network": "Allego Carrefour Gruchet Le Valasse", + "description": "Allego Carrefour Gruchet Le Valasse", + "ref:EU:EVSE": "FRALLEGO9006222;FRALLEGO9006221;FRALLEGO9005702;FRALLEGO9003722;FRALLEGO9001662;FRALLEGO9001661;FRALLEGO9003721;FRALLEGO9005701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49386400000, + 49.54845430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3942EVCP03;LFR3942EVCP02;LFR3942EVCP01", + "description": "PIERRELAYE - Leclerc", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3942EVCP03;LFR3942EVCP02;LFR3942EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14704800000, + 49.02072800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31230001", + "network": "Reveo", + "description": "GRATENTOUR - Avenue de Toulouse / Rue de la Côte vieille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43197700000, + 43.72130600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Val, Parking Collège Bosco Chemin du Buchet;Réseau eborn/ZG0YWPL16J", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPZG0YWPL16J;FREBNP2705381075162880128", + "ref": "347003;ZG0YWPL16J", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99389500000, + 43.13175800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3487373178979662028", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "466263", + "description": "Freshmile France/WAHN3XCBEO", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72547100000, + 48.66115400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2024-08-01", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Réaumur Sentier", + "capacity": "65", + "ref:EU:EVSE": "FRP07E751020477;FRP07E751020474;FRP07E751020473;FRP07E751020472;FRP07E751020475;FRP07E751020476;FRP07E751020478", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34848750000, + 48.86732500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPSOFCJVBSHW", + "ref": "SOFCJVBSHW;32815", + "description": "Saint-Hilaire-Du-Rosier, Parking R21 - Le Village;Réseau eborn/SOFCJVBSHW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24800500000, + 45.10060700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "description": "Road/65e9e3194b75c7001cc93bef", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREFLP6924193722974284038", + "operator:email": "roaming-dev@road.io", + "ref": "1110513", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74007900000, + 43.41256700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*306*1*_*_;FR*SOD*S*OTHR*306*2*_*_", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR30621;FROTHPOTHR30611", + "opening_hours": "24/7", + "description": "SAINT-JUNIEN - PLACE AUGUSTE ROCHE", + "start_date": "2022-01-20", + "network": "SAINT-JUNIEN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90327876554, + 45.88975898620 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6609035", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CONNECT ETAMPES", + "charging_station:output": "22 kW", + "description": "SONEPAR CONNECT ETAMPES", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6609035", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17019900000, + 48.45756800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Cranves-Sales, Route de Borly", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDQETGFDKRS", + "ref": "DQETGFDKRS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29113970000, + 46.18456260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA2P8762259426474064987", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "1181775", + "description": "WAAT/s570508", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63906800000, + 44.15559800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P130306835623564491", + "ref": "892227", + "description": "Freshmile France/LLIVP7UIU269NB", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95996900000, + 48.75842500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP00528", + "network": "ACCOR Hotels", + "start_date": "2021-10-12", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "description": "IBIS AIX EN PROVENCE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "800994055", + "ref:EU:EVSE": "FRTCBP00528", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46575600000, + 43.51230200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSIROU7QVCWYQ", + "ref": "1062408", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P973668890614270951", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27757900000, + 44.45755400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-01-27", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN345001", + "operator": "DRIVECO", + "description": "Nissan - Béziers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25431700000, + 43.34488600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2904300", + "description": "Daoulas-Rue de la Rive", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26215400000, + 48.36109500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P8645464255285569998", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "88235", + "opening_hours": "24/7", + "description": "SDEA 10/M90FZ6RVEV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53496400000, + 48.06066700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "682955", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP001B9B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P5123765699017671606", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48404100000, + 49.84003100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "description": "Régie Services Energie/FR*RSE*P01362*A", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRRSEP01362A", + "ref": "481287" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88247200000, + 45.95127800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/rueverdun", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PRUEVERDUN", + "ref": "48991", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67121000000, + 50.27140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*181*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - MEAUX LES SAISONS DE MEAUX", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-08-27", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST18113;FRIZFPFAST18111;FRIZFPFAST18112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86245840000, + 48.95623670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E5020;FRS41E5021", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "network": "MODULO - VILLEFRANCHE SUR CHER - Rue Marcel Géré", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E5020;FRS41E5021", + "description": "MODULO - VILLEFRANCHE SUR CHER - Rue Marcel Géré", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76930700000, + 47.29244300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT LEONARD DES BOIS - La Forge Collet", + "ref:EU:EVSE": "FRS72E72294001", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07932900000, + 48.35514400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "ref:EU:EVSE": "FRGLYPLYON9241;FRGLYPLYON9231;FRGLYPLYON9221;FRGLYPLYON9211", + "operator:email": "sav@izivia.com", + "description": "LY104 - PLACE TOLOZAN", + "ref": "FR*SOD*S*LYON*92*4*_*_;FR*SOD*S*LYON*92*3*_*_;FR*SOD*S*LYON*92*2*_*_;FR*SOD*S*LYON*92*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83759900000, + 45.76945900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - BOSSAY SUR CLAISE - Rue de la poste", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BOSSAY SUR CLAISE - Rue de la poste", + "ref:EU:EVSE": "FRS37E215807;FRS37E215808", + "ref": "FRS37E215807;FRS37E215808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96157027000, + 46.83186155000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2018-08-24", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PYBMHAN", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Cournon - Rue de l'Ecole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10467000000, + 47.74654000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10P45028C", + "operator": "E-TOTEM", + "start_date": "2023-04-27", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P45028C", + "network": "Mairie de Beaugency - PARKING RUE NATIONALE", + "description": "Mairie de Beaugency - PARKING RUE NATIONALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63018730000, + 47.78020580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - MANOSQUE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH13812;FROTHPAUCH13811", + "start_date": "2023-08-29", + "ref": "FR*SOD*S*AUCH*138*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82452500000, + 43.85038300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE22811;FRSIGPSIGE22812", + "ref": "FR*SOD*S*SIGE*228*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 71 AVENUE MEDERIC - NOISY-LE-GRAND", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56634700000, + 48.82944800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "21806", + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Move In Pure/RSXCTV", + "socket:type2_combo:output": "44 kW", + "ref:EU:EVSE": "FRCN1PRSXCTV", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65644000000, + 43.80150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "446780", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/OXHA7QGZKR", + "ref:EU:EVSE": "FRLE2P7860334694821409966" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44611100000, + 44.83617300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "efe37c7a-dc91-5a95-bdf5-d46e262dd0bf", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Royan | Bd Georges Clémenceau (gare SNCF)", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01821700000, + 45.62523000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE91BSMB", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-04", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Hôtel de ville - BOUSSY ST ANTOINE", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53140600000, + 48.68865300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONTSALVY - Avenue de l'Oeuvre L. Conlombant - D19 - Parking salle Polyvalente", + "ref:EU:EVSE": "FRA88E15134001", + "charging_station:output": "50 kW;43 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49766400000, + 44.70805900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DIGNE LES BAINS Napoléon", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3775EVCP01;LFR3775EVCP02", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3775EVCP01;LFR3775EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17794800000, + 44.06997100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "description": "GIERES - Rue De La Gare", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78451900000, + 45.18462000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ZSZXKD;Marcillat-en-Combraille, Champ de foire", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "ZSZXKD;94277", + "ref:EU:EVSE": "FREBNPZSZXKD", + "start_date": "2017-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63455000000, + 46.16670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471054", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/FCDNW73QHC", + "opening_hours": "Sa 09:00-18:00,Mo,Th,We,Tu,Fr 07:30-19:00", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7831715598381995028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14496400000, + 48.79239400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACCBEA", + "network": "Power Dot France", + "start_date": "2023-09-15", + "amenity": "charging_station", + "description": "hotelF1 - Beauvais", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11279869151, + 49.41016550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Le Monêtier-Les-Bains, Hôtel Les Glaciers", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPP0A4HH2T9K", + "ref": "P0A4HH2T9K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40560759000, + 45.03563670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Tourlaville - E.Leclerc", + "ref:EU:EVSE": "FRELCPTLVLE", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59224900000, + 49.63356600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Parking Asnières-sur-Seine Olympe de Gouges - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E92004002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31748370000, + 48.91866070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE66545854", + "ref": "FRCPIE66545854", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support.eu@chargepoint.com", + "description": "HMV / SAINT DIE 1 ", + "network": "HOPITAUX MASSIF DES VOSGES", + "owner:ref:FR:SIREN": "200096824", + "operator": "ChargePoint" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96437433490, + 48.28991928854 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Muret, rue du Port", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-11-21", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRECHPLLP8JSIBO1GCWA", + "ref": "LLP8JSIBO1GCWA", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32550260000, + 43.45721830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1911", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue de Crimée 82", + "opening_hours": "24/7", + "ref": "FR*V75*PPX19*11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38660000000, + 48.88240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21035340000, + 49.97145750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PYUCPGH", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/YUCPGH", + "ref": "232378", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79114700000, + 48.57171200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX02*01", + "description": "Paris | Rue Notre-Dame des Victoires 21", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "ref:EU:EVSE": "FRV75PPX0201", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34232470000, + 48.86969940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "294443", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/G2PBVFTJNU", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PG2PBVFTJNU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04492000000, + 49.04350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "ref:EU:EVSE": "FRSSDPVULCAINVOLVO420001", + "capacity": "13", + "amenity": "charging_station", + "description": "Volvo - GROUPE VULCAIN - St Etienne", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 08:00-12:00, Sa 14:00-17:30", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "start_date": "2023-04-03;2021-06-16", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39084300000, + 45.44834600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "description": "Plumieux-Parking place 19 mars 1962", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22241001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58335400000, + 48.10225300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PORT LA NOUVELLE - Rue Paul Trilles", + "network": "Reveo", + "start_date": "2022-03-03", + "ref:EU:EVSE": "FRS11E11266001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05100200000, + 43.01428120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-22;2022-03-24", + "network": "Toyota GAP- AUTO DAUPHINE", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "317898492", + "operator:email": "advenir@zeborne.com", + "ref": "55104;55103;125091;125090", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "description": "Toyota - GAP - 22KW AC ; Toyota - GAP - 22KW AC ", + "operator": "ZEBORNE", + "ref:EU:EVSE": "FRZTLE22AC125091;FRZTLE22AC125090;FRZTLE22AC55103;FRZTLE22AC55104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09968230000, + 44.56626890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P3185052359232178856", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1017105", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/LLSD41GW3QKDDX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09433100000, + 48.25705400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PBHCEYP", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref": "79465", + "charging_station:output": "22 kW", + "description": "FDE 80/BHCEYP", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95655000000, + 49.89630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*63*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST6313;FRIZFPFAST6311;FRIZFPFAST6312", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-04-03", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - DIEPPE MONOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11131580000, + 49.92229760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44097A", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-04-26", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Mesquer - Camping Cars", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45170200000, + 47.39617400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77257A;FRS77E77257001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH614YH6Y44CRNT61J05", + "start_date": "2023-05-05;2016-08-31", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "LIZY-SUR-OURCQ - Avenue De La Gare;Lizy-sur-Ourcq - Mairie", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02689100000, + 49.02519600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "FRGYMP7377425590230077576", + "ref": "1030632", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW;150 kW", + "description": "GreenYellow Shift Mobility/77", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55398300000, + 49.08910600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221247;FRS37E221241", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - VILLANDRY - Pkg. du potager", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VILLANDRY - Pkg. du potager", + "ref": "FRS37E221247;FRS37E221241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51093500000, + 47.34124900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BAR LE DUC - La Sapinière", + "description": "MODULO - BAR LE DUC - La Sapinière", + "ref:EU:EVSE": "FRS55E226457;FRS55E226456", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E226457;FRS55E226456", + "start_date": "2023-11-24", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17288600000, + 48.78109700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON11241;FRGLYPLYON11231;FRGLYPLYON11221;FRGLYPLYON11211", + "description": "SFL02 - JARROSSON", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*112*4*_*_;FR*SOD*S*LYON*112*3*_*_;FR*SOD*S*LYON*112*2*_*_;FR*SOD*S*LYON*112*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79760900000, + 45.74192000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "network": "Garage Lamerain - St Jean de Luz", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMBZETIRSE;FRMBZEZSVOY", + "ref": "8f34ee89-5a2f-4425-81a6-ae123dc15968;c1b2e236-65ed-40c6-b727-43f74aa79cdb", + "description": "Garage Lamerain - St Jean de Luz", + "start_date": "2024-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64100591776, + 43.39875806321 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 07:30-12:30, Mo 13:30-19:00, Tu 07:30-12:30, Tu 13:30-19:00, We 07:30-12:30, We 13:30-19:00, Th 07:30-12:30, Th 13:30-19:00, Fr 07:30-12:30, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW692001", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "description": "BMW Mini - Vénissieux", + "capacity": "20", + "start_date": "2022-09-26;2022-08-03", + "charging_station:output": "50 kW;24 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87907700000, + 45.72050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BORNE GAZZOLA DEPOT GMT", + "description": "BORNE GAZZOLA DEPOT GMT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6551715", + "start_date": "2022-10-12", + "ref": "FRCPIE6551715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39614000000, + 48.96229800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/N3LWFBBFVR", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P7292086031813934998", + "charging_station:output": "22 kW", + "ref": "529886", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45434000000, + 48.64674400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint-Genes-De-Castillon | Centre Bourg;SAINT-GENES-DE-CASTILLON - CENTRE BOURG", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB33*137*1*_*_;10c5920e-5f74-55c0-badc-3243828328f9", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "ref:EU:EVSE": "FRS33PMB3313711;Non concerné;FRS33PMB3313712", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06350100000, + 44.89820500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "description": "Soisy-sur-Seine - Rue des Chenevieres", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "0a8551ee-0a45-57ed-9ea6-17860054fa0d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45293800000, + 48.64565300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "capacity": "2", + "operator": "Midas Fitz-James;Midas Fitz-James\t", + "amenity": "charging_station", + "network": "Réseau de recharge Charge-in", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "tech@eoliberty.com", + "description": "Midas Fitz-James", + "ref:EU:EVSE": "FRLIBP329104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42181870000, + 49.39593470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "COGOLIN Carnot", + "amenity": "charging_station", + "ref": "LFR2217EVCP02;LFR2217EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2217EVCP02;LFR2217EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53243400000, + 43.25578200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*70*1*_*_", + "start_date": "2019-10-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE7011;FRM06PNICE7012", + "operator:email": "sav@izivia.com", + "description": "SAINT-ETIENNE-DE-TINEE - PARKING DES NABINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92639900000, + 44.22040900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-11-17", + "description": "ANTIBES - PARKING ST MAYMES", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*200*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ20011;FRA16PWIIZ20012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08841500000, + 43.57612200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/V3RPWWAZKE", + "opening_hours": "24/7", + "ref": "466221", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6384987218726864893", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774700000, + 48.79670100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "But - Mende", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBUTMED", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2023-09-14", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47595780000, + 44.51460210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "cussetcent;231601", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "description": "Réseau eborn/cussetcent;Cusset, Place du Centenaire", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPCUSSETCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45461000000, + 46.13440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "1057125", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP5063007366337474640", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "ENGIE MAMP - Bornes publiques/79432403-86AE-4340-8223-23E1ECF11822", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36611000000, + 43.29592800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "14", + "start_date": "2024-09-12;2020-07-10", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "AGEN - Gare", + "ref:EU:EVSE": "FRP07E47001002;FRP07E470010021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62330500000, + 44.20777100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ELNZBQTZOX;346679", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP2826379489689942862;FREBNPELNZBQTZOX", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ELNZBQTZOX;Le-Puy-En-Velay, Place de la Libération", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87728000000, + 45.04768000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "240 kW;50 kW;150 kW", + "ref": "1035447", + "network": "Road", + "description": "Road/65fae2b616d8c6001c5a2f64", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP9125136755890431336", + "opening_hours": "Fr,We,Th,Mo,Tu,Sa,Su 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "capacity": "9", + "operator": "Road | FR*EFL", + "charging_station:output": "50 kW;43 kW;150 kW;240 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98685400000, + 43.16434300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP143011", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Thaon Les Vosges - Mairie d'Oncourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37832300000, + 48.25073000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "472239", + "charging_station:output": "22 kW", + "description": "Freshmile France/PL7JHFSCKK", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2290590527772748167" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73374700000, + 48.61567500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1107", + "description": "Paris | Rue du Commandant Lamy 2", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2021-06-23", + "opening_hours": "24/7", + "ref": "FR*V75*PPX11*07", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37420300000, + 48.85579000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529361", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile/K7EHUWAXLO", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P213447933873748339" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86316800000, + 45.72585700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Ellipse - Ajaccio", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMSGCINEMA2002901", + "operator:email": "support@driveco.com", + "start_date": "2021-07-30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75587800000, + 41.94563200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PBONNEVILLELORRAINE", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900103", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03789000000, + 48.99214500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SICECO/FR*S21*P21071*A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "180347", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS21P21071A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26976800000, + 47.46720100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78444001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-09-13", + "network": "Seymaborne", + "description": "NEAUPHLETTE - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52509757290, + 48.93159498698 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK891;FRQPKPQPRK871;FRQPKPQPRK861;FRQPKPQPRK851;FRQPKPQPRK841;FRQPKPQPRK831;FRQPKPQPRK821;FRQPKPQPRK8191;FRQPKPQPRK8181;FRQPKPQPRK8171;FRQPKPQPRK8141;FRQPKPQPRK8131;FRQPKPQPRK8111;FRQPKPQPRK811;FRQPKPQPRK8101;FRQPKPQPRK8121;FRQPKPQPRK8151;FRQPKPQPRK8161;FRQPKPQPRK8201;FRQPKPQPRK881", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-06-20;2022-09-30;2022-06-02;2022-06-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "QPARK - 75040 PARIS - VILLETTE MUSIQUE", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*8*8*_*_;FR*SOD*S*QPRK*8*7*_*_;FR*SOD*S*QPRK*8*6*_*_;FR*SOD*S*QPRK*8*5*_*_;FR*SOD*S*QPRK*8*3*_*_;FR*SOD*S*QPRK*8*2*_*_;FR*SOD*S*QPRK*8*19*_*_;FR*SOD*S*QPRK*8*18*_*_;FR*SOD*S*QPRK*8*17*_*_;FR*SOD*S*QPRK*8*16*_*_;FR*SOD*S*QPRK*8*15*_*_;FR*SOD*S*QPRK*8*12*_*_;FR*SOD*S*QPRK*8*11*_*_;FR*SOD*S*QPRK*8*1*_*_;FR*SOD*S*QPRK*8*10*_*_;FR*SOD*S*QPRK*8*13*_*_;FR*SOD*S*QPRK*8*14*_*_;FR*SOD*S*QPRK*8*20*_*_;FR*SOD*S*QPRK*8*4*_*_;FR*SOD*S*QPRK*8*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39401800000, + 48.88984500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLSJO7L6D8", + "network": "WAAT", + "amenity": "charging_station", + "charging_station:output": "6.9 kW;7.4 kW", + "ref": "962411", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP6811366584475962131", + "capacity": "21", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46310100000, + 48.82002300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE413800", + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2020-12-08", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE413800", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Haut Koenigsbourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40263900000, + 48.23192000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-03", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANISY - Rue Jean Follain", + "ref:EU:EVSE": "FRS50P50860001", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17322570000, + 49.07626210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "VIMPELLES - Grande Rue;Vimpelles", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61QHH4V61S5VESVP7P", + "start_date": "2016-01-19;2023-05-12", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77524A;FRS77E77524001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16530900000, + 48.43937300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FRHPCPNF080239", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "description": "ETS DORMOY FRERES", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCENF080239", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15854300000, + 47.63405000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - CHEMERY - Rue du Balay", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHEMERY - Rue du Balay", + "ref:EU:EVSE": "FRS41E2953;FRS41E2952", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E2953;FRS41E2952", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48292500000, + 47.35059900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "description": "Mobilité électrique 56/LTFJPE", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PLTFJPE", + "network": "Mobilité électrique 56", + "ref": "25038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80442000000, + 47.69750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1023191163982006776", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/GR3CSHARYG", + "ref": "479199", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13248100000, + 46.95789600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P92040*J", + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92040J", + "ref": "484739", + "opening_hours": "24/7", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063800000, + 48.81681100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "start_date": "2020-05-29;2023-01-25", + "ref:EU:EVSE": "FRSSDPJFCNORMANDIEVOLVO141121", + "capacity": "11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Volvo - JFC - Caen", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36722900000, + 49.22712100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "448848283", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRC2P000301", + "opening_hours": "24/7", + "description": "STATION CIEL", + "network": "STATION CIEL", + "start_date": "2021-06-10", + "charging_station:output": "22.08 kW", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92662254342, + 45.74594621170 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446867", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P6514004359503491055", + "description": "Leclerc/XARMSHHUZH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97300200000, + 48.65753300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "description": "MOBIVE | Royan | Avenue des Congrès", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "3edb0a51-551d-5b7f-8fef-07c7c595b7ac", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03311200000, + 45.62042100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "network": "SAEMES", + "description": "SAEMES | Parking Saint-Augustin", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "317032993", + "capacity": "350", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32007484051, + 48.87579799849 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "26", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego FR, Pathe, TV6 Aubières", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO8007661;FRALLEGO8007581;FRALLEGO8007562;FRALLEGO8001642;FRALLEGO8001641;FRALLEGO8001621;FRALLEGO8001602;FRALLEGO8001601;FRALLEGO8001541;FRALLEGO8001532;FRALLEGO8001531;FRALLEGO8001221;FRALLEGO8001222;FRALLEGO8001542;FRALLEGO8001622;FRALLEGO8007551;FRALLEGO8007552;FRALLEGO8007561;FRALLEGO8007571;FRALLEGO8007572;FRALLEGO8007582;FRALLEGO8007662;FRALLEGO8008001;FRALLEGO8008002;FRALLEGO8008011;FRALLEGO8008012", + "ref": "FRALLEGO8007581;FRALLEGO8001642;FRALLEGO8001621;FRALLEGO8001601;FRALLEGO8001542;FRALLEGO8001532;FRALLEGO8001531;FRALLEGO8001221;FRALLEGO8001222;FRALLEGO8001541;FRALLEGO8001602;FRALLEGO8001622;FRALLEGO8001641;FRALLEGO8007551;FRALLEGO8007552;FRALLEGO8007561;FRALLEGO8007562;FRALLEGO8007571;FRALLEGO8007572;FRALLEGO8007582;FRALLEGO8007661;FRALLEGO8007662;FRALLEGO8008001;FRALLEGO8008002;FRALLEGO8008011;FRALLEGO8008012", + "network": "Allego FR, Pathe, TV6 Aubières", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14264600000, + 45.75744800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P575225183697489202", + "network": "Leclerc", + "capacity": "14", + "description": "Leclerc/GQWX3AC3GR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "471231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581300000, + 48.09107600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fos-Sur-Mer, Avenue du Sablé D'Or", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PQMV1OWNDGR", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94352000000, + 43.42977000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "description": "SDEY/NIMRJEM5YF", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P1251677031385015551", + "ref": "402563", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29679000000, + 48.08409000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "VILLENEUVE-LOUBET - PARKING GENERAL DE GAULLE", + "ref:EU:EVSE": "FRA16PWIIZ5312;FRA16PWIIZ5311", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-05-31", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*53*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12068700000, + 43.65847400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ENPRTC", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P925801149555096062", + "charging_station:output": "7.4 kW", + "ref": "346400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94185000000, + 48.21660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "SCI - Malemort", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-05-09", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSCIMLM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55537470000, + 45.16875250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP5313441676680416627", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref": "741135", + "description": "Réseau eborn/YQIQWQ8UZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32747700000, + 45.88239100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/4CBE0F8C-5C0F-4850-A30B-886AB33615E7", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FREVZP6930965229771220699", + "opening_hours": "24/7", + "ref": "1127163", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50326800000, + 48.58604600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR66061;FROTHPOTHR66011;FROTHPOTHR66021;FROTHPOTHR66031;FROTHPOTHR66041;FROTHPOTHR66051", + "start_date": "2023-07-04", + "description": "CARREFOUR MARKET - SEVRIER", + "ref": "FR*SOD*S*OTHR*660*3*_*_;FR*SOD*S*OTHR*660*1*_*_;FR*SOD*S*OTHR*660*2*_*_;FR*SOD*S*OTHR*660*4*_*_;FR*SOD*S*OTHR*660*5*_*_;FR*SOD*S*OTHR*660*6*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "CARREFOUR", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15042600000, + 45.84534300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPATU4HTPHF1", + "ref": "96005", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/ATU4HTPHF1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07149800000, + 45.59600700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPGAXPWP", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/GAXPWP;Faramans, Chemin de la Porte Bleue", + "start_date": "2020-06-12", + "ref": "30137;GAXPWP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16587700000, + 45.39325500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BRAS - LE SUQUET", + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "description": "BRAS - LE SUQUET - LAGUIOLE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR35211;FROTHPOTHR35221", + "start_date": "2022-03-21", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*352*2*_*_;FR*SOD*S*OTHR*352*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89277200000, + 44.68074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892563", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKMP2DTFUJ9NI", + "ref:EU:EVSE": "FRFR1P6425088590025207999", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11545900000, + 46.44952500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP29873", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Cesson, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60411400000, + 48.58459800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892650", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/RQMXNLPGD7", + "ref:EU:EVSE": "FRFR1P3577778335431349628", + "capacity": "2", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07402000000, + 45.88903400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPTHIBAUTVOLVO760001", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "Volvo - Rouen", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-03-30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06840200000, + 49.44725800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900131", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PEVREUXCOLLEGE", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16034600000, + 49.02405500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22147003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MERDRIGNAC - Rue De Brocéliande", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-09-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41303600000, + 48.19001000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref": "70565;70564", + "ref:EU:EVSE": "FRZIME22AC70565;FRZIME22AC70564", + "owner:ref:FR:SIREN": "410177661", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Bricomarché - Villard de lans - 22kW AC ", + "start_date": "2021-09-02", + "network": "Bricomarché - Villard de lans ;Bricomarché - Villard de lans- SARALAM", + "operator": "ZEBORNE", + "opening_hours": "Mo-sat 09:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55923700000, + 45.08775700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE267", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "Yesss_Wambrechies", + "operator": "RossiniEnergy", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06473500000, + 50.68612200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CONFLANS-SAINTE-HONORINE - Place Jean Moulin", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78172001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09462900000, + 48.99359500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Giberville Sud", + "start_date": "2021-11-20", + "capacity": "7", + "ref:EU:EVSE": "FRIOYE417153;FRIOYE417152;FRIOYE417101;FRIOYE417102;FRIOYE417103;FRIOYE417104;FRIOYE417151", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Giberville Sud", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE417153;FRIOYE417152;FRIOYE417101;FRIOYE417102;FRIOYE417103;FRIOYE417104;FRIOYE417151", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27685710000, + 49.16675190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "description": "AHUILLE - Rue De Concise;OuestCharge - Diva Sp - Ahuille - Concise", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53P53001A;FRS53E53001001", + "start_date": "2021-04-16;2024-05-16", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86894600000, + 48.02072100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TRIE SUR BAISE - Rue de la monjoie", + "ref:EU:EVSE": "FRS65E65452002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36832300000, + 43.31782100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Pontfaverger-Moronvilliers", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE006402;FRIENE006401", + "description": "Pontfaverger-Moronvilliers", + "ref:EU:EVSE": "FRIENE006402;FRIENE006401", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33912285000, + 49.29988356000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34341001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "VILLEVEYRAC - Route de Montagnac - Parking salle des Rencontres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60221944444, + 43.50019170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-FERTE-001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "LA FERTE EN OUCHE - Allée de Kerroch", + "ref:EU:EVSE": "FRS61P61167A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51063100000, + 48.83889100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "454083", + "capacity": "2", + "description": "Freshmile France/LZBDAYDH0Y", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6538771091323205899", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67902200000, + 48.49009200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PZJFBFZ", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "start_date": "2018-06-01", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/ZJFBFZ;Buzet-sur-Tarn, Rue des Écoles", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "ref": "529961;ZJFBFZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63193000000, + 43.77910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ASNIERES-SUR-SEINE - 44 Avenue De La Marne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE92004020", + "network": "SIPPEREC", + "start_date": "2022-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28318560000, + 48.90745810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;150 kW", + "description": "BMW - LE MANS SUD AUTO - 72100 - 1", + "capacity": "8", + "network": "BMW - LE MANS SUD AUTO - 72100 - 1", + "amenity": "charging_station", + "ref": "FRCG0E000176;FRCG0E000174;FRCG0E000173;FRCG0E000172;FRCG0E000171;FRCG0E000169;FRCG0E000170;FRCG0E000175", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "socket:type2_combo:output": "50 kW;150 kW", + "ref:EU:EVSE": "FRCG0E000174;FRCG0E000173;FRCG0E000172;FRCG0E000171;FRCG0E000169;FRCG0E000170;FRCG0E000175;FRCG0E000176", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19166800000, + 47.98128800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*126*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE12611;FRM06PNICE12612", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-04-22", + "description": "NICE - PARKING PIOL", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25193100000, + 43.70823200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Soustons | Parking Salle Roger Hanin", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d30e34c2-6a53-5253-81dc-6d7dbd3a67c1", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32588700000, + 43.75170100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "RETTEL / RUE DE SIERCK", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE57RACA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34124800000, + 49.44605900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS4748;FRBMPS4746;FRBMPS4745;FRBMPS4747", + "capacity": "2", + "amenity": "charging_station", + "ref": "4746;4745;4747;4748", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "24 kW;22 kW", + "description": "Bump - Campanile - Berges du Rhône - Lyon", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84197600000, + 45.75675790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4125EVCP04;LFR4125EVCP03;LFR4125EVCP02;LFR4125EVCP01", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4125EVCP04;LFR4125EVCP03;LFR4125EVCP02;LFR4125EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "BETHUNE Fleming" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64953200000, + 50.54070600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-10E, 1 Rue Alfred Curtel", + "ref:EU:EVSE": "FRM13PXGVSGL0WTG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40820000000, + 43.28025200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "Viry-Châtillon - Place du pavillon", + "opening_hours": "24/7", + "ref": "bdf9215e-85f9-545d-86bf-fbd58cc1f46f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36077700000, + 48.64957500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84000*AVG*FERRY", + "network": "ELECTRIC 55 CHARGING", + "start_date": "2020-11-17", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP84000AVGFERRY", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "LABANDE FERRY - AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79862800000, + 43.93735400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ANTIBES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3262EVCP01", + "charging_station:output": "22 kW", + "ref": "LFR3262EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10335400000, + 43.59797500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Tacos & co Grill Valence (26)", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PTGLVLC", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2024-09-28;2024-09-26", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92838300000, + 44.95109800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNDUJH0PIS3", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;43 kW", + "description": "Voiron, Avenue Francois Mitterand;Réseau eborn/NDUJH0PIS3", + "ref": "94457;NDUJH0PIS3", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59367000000, + 45.36330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UJGVB4DZD2", + "capacity": "2", + "amenity": "charging_station", + "ref": "749385", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6503449429265788483", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50563500000, + 48.82127000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E132010041;FRP01E13201004", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "capacity": "10", + "description": "Parking Marseille Cours Julien - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38303876000, + 43.29426100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-11-16", + "ref": "FR*SOD*S*CAPS*53*1*_*_", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS5312;FRCPSPCAPS5311", + "description": "PALAISEAU - 9 ROUTE DE SACLAY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23444800000, + 48.71719200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/creuzierlev;Creuzier-le-Vieux, Guinards", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPCREUZIERLEV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "creuzierlev;231598" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42969000000, + 46.15480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-23", + "operator": "IZIVIA", + "description": "BRICOMARCHE - COSNE COURS SUR LOIRE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR46911;FROTHPOTHR46912", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*469*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91282200000, + 47.38260500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "description": "Freshmile France/ESR34INWKW", + "amenity": "charging_station", + "capacity": "1", + "ref": "529211", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1589408834230855365", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66740900000, + 50.88568200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-14", + "description": "Lycee Auguste Perret - Rue Boris Vian", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10077840;FRUBIE10074850;FRUBIE10017910;FRUBIE10080379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16030200000, + 49.51508100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "694289", + "description": "Freshmile France/P7ZEAJRSCL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P646376071072899042", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14900300000, + 49.41405800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRTLSE31555005", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TOULOUSE - Avenue Honoré Serres", + "start_date": "2022-06-13", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43790000000, + 43.61380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLXIY73641SEGG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5140994035508101585", + "ref": "1123305", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17928400000, + 46.94489300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1937565530662853877", + "charging_station:output": "25 kW;22 kW", + "description": "MobiSDEC/LLU9UQ4CV19779", + "ref": "1052508" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42652000000, + 49.14438200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-11-30", + "description": "VILLEGAILHENC - Rue Des Effaches", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11425001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35722222222, + 43.26833330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "CHAMBOURCY - Cimetière", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78133004", + "start_date": "2023-08-18", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03789000000, + 48.90321000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref": "1d449e22-8fde-5afb-96e1-fb368c8b30cc", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "CD54 - Parking covoiturage - Flavigny Sur Moselle", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17945400000, + 48.57704600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/Gymairie", + "ref:EU:EVSE": "FRS70PGYMAIRIE", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "65033", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81502000000, + 47.40710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62846001", + "description": "VERMELLES - Place de la République D39", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-07-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74584900000, + 50.48783600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35288002B1", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "description": "ST MALO - 26 rue anita conti ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00672300000, + 48.64589700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63113I", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "description": "SIEG 63/FR*S63*P63113*I;SIEG63 - ePremium - Clermont Ferrand - Fayolle", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref": "518318", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07834100000, + 45.78125300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/H7PMEQE0EW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P256614670848161664", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "565067", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73366200000, + 47.65303900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "SDEG32/NXFKDH", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "ref:EU:EVSE": "FRS32PNXFKDH", + "ref": "242344", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19905000000, + 43.40170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "ALFORTVILLE - Rue Paul Vaillant Couturier", + "ref:EU:EVSE": "FRSIPE94002008", + "start_date": "2022-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42297500000, + 48.79960900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001327;FRCG0E001328", + "ref": "FRCG0E001327;FRCG0E001328", + "description": "EPAF VACANCES PREMANON - - 39220 - 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "EPAF VACANCES PREMANON - - 39220 - 1", + "start_date": "2024-04-02", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03179600000, + 46.46019900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-27;2023-08-28", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE24821;FRM06PNICE24812;FRM06PNICE24811;FRM06PNICE24822", + "ref": "FR*SOD*S*NICE*248*2*_*_;FR*SOD*S*NICE*248*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING SAINT-LAMBERT", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26255869267, + 43.71541805084 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Foulayronnes | Zae Foulayronnes", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "7b34a736-39b8-51ff-972d-6fbbb5027b79", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64046900000, + 44.24525100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE38612;FRSIGPSIGE38611", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref": "FR*SOD*S*SIGE*386*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - CORMEILLES - SANNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24037000000, + 48.96860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "LE MESNIL-ESNARD - Salle des fêtes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76429001", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13598900000, + 49.41117000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "description": "ROCHEFORT Fuller", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "50 kW;22 kW", + "ref": "LFR3475EVCP01;LFR3475EVCP02;LFR3475EVCP03;LFR3475EVCP04", + "capacity": "9", + "ref:EU:EVSE": "LFR3475EVCP01;LFR3475EVCP02;LFR3475EVCP03;LFR3475EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94143400000, + 45.94994000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "09da54ab-61b5-563a-bd50-70285156e7ea", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "191__SDEER17", + "description": "MOBIVE | Pons | Place de L'Europe (1)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55179000000, + 45.58084700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "39004", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PMONTAUBANED", + "description": "SDE82/Montaubaned", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36598200000, + 44.01496300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P92350*LPR*B0UCHER", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "SQUARE HELENE BOUCHER - LE PLESSIS-ROBINSON", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP92350LPRB0UCHER", + "start_date": "2024-09-03", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26415600000, + 48.78761400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3746EVCP02;LFR3746EVCP01", + "capacity": "4", + "description": "LESSAY Ferrage", + "ref": "LFR3746EVCP02;LFR3746EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52602700000, + 49.21230500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Moyenmoutier", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMMOY", + "start_date": "2023-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89305677431, + 48.37797870431 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LYDKEMDVH2", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP7587227492131219595", + "ref": "598260", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34282600000, + 43.14614400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - Ciné Mont-Blanc Sallanches", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP74256A", + "ref:EU:EVSE": "FRETIP74256A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62884960379, + 45.94199368336 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;100 kW;175 kW;150 kW", + "charging_station:output": "50 kW;175 kW;150 kW;100 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCORAVD", + "description": "Cora - Saint Avold", + "amenity": "charging_station", + "start_date": "2023-11-23;2023-10-14", + "opening_hours": "24/7", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69404900000, + 49.11142300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT023201", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Pinon", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-08-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45102300000, + 49.49931300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "operator:email": "help@electra.com", + "socket:type2_combo:output": "50 kW;200 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPSNIHC", + "network": "ELECTRA", + "capacity": "4", + "description": "Saint-Nicolas - Hôtel Campanile", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78026300000, + 50.30762300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "description": "AUCHAN - MONTIVILLIERS", + "ref:EU:EVSE": "FROTHPAUCH15912;FROTHPAUCH15911", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*159*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07525751108, + 45.93774668109 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LECLERC BERGUES BORNE 2", + "network": "LECLERC BERGUES BORNE 2", + "ref": "FRCPIE6776385;FRCPIE6776395", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-10-20", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6776385;FRCPIE6776395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43567000000, + 50.95626200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "735321", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/KJ10TZEAZY", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1894119405875959737", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87468000000, + 48.08200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901102", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*V75*P9011*02", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Boulevard du Temple 27", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36554000000, + 48.86509700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P945845167498363333", + "network": "Freshmile France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "Freshmile France/DYII1VYXNM", + "operator": "Freshmile | FR*FR1", + "ref": "491982" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10953800000, + 44.12057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Tesla Supercharger Le Mans", + "ref:EU:EVSE": "FRTSLP1745", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17534200000, + 48.04183300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1943304892120813077", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "896619", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLL4XHO2L67KTX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07073500000, + 48.70614500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR3R3P89333935", + "description": "R3 - Norauto Berck", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60238300000, + 50.40515900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "467514", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/WX6KIL9ED5", + "ref:EU:EVSE": "FRS14P4214740530568546002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28131900000, + 49.26271100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12237001", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "SAINT LAURENT D'OLT - Rue Du Valt D'Olt", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11037000000, + 44.44519500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P1653172608988655019", + "ref": "972632", + "opening_hours": "24/7", + "description": "WAAT/FRWA5LDLBM5MYX", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58932100000, + 44.85903000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-07;2024-04-27;2021-04-13", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Soulaire-et-Bourg - Ecole;SOULAIRE-ET-BOURG - Parking École Route Angers", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49339001;FRS49P49339A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55436000000, + 47.57746600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRAULHET - Place Du Languedoc", + "ref:EU:EVSE": "FRS81E81105001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99278400000, + 43.76289600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "LAGARDE BELLERIVE SUR ALLIER ", + "start_date": "2024-03-27;2024-03-07", + "ref": "FRHPCPNF020238", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681534;531681532;531681531;531681533", + "ref:EU:EVSE": "FRHPCPNF020238", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41265500000, + 46.11731800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GRAMAT - Place de la république", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46128001", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72656800000, + 44.77960600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PXKAKPT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "242137", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/XKAKPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89082000000, + 48.10790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DOUAI - Place du Barlet", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH04E59178005", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08228800000, + 50.36492500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2922000", + "charging_station:output": "22 kW", + "description": "Pont l Abbe-Place de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22418100000, + 47.86632200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue Garibaldi", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2023-07-21", + "ref:EU:EVSE": "FRSIPE94068005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48756313063, + 48.79329216608 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90116476", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Restaurant Campanile Manosque" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79333500000, + 43.83061200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8e64203c-895d-5b6c-8fd4-fb4c180aa987", + "description": "MOBIVE | Perigueux | Parking du Centre Hospitalier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73031200000, + 45.19204300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 10 RUE DE LA VERRERIE - MEUDON", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5812;FRSIGPSIGE5811", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*58*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23496500000, + 48.82029700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Chelles", + "start_date": "2024-05-19", + "capacity": "8", + "amenity": "charging_station", + "ref": "FRALLEGO9009882;FRALLEGO9009881;FRALLEGO9008881;FRALLEGO9008452;FRALLEGO9008451;FRALLEGO9008882;FRALLEGO9009871;FRALLEGO9009872", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Chelles", + "ref:EU:EVSE": "FRALLEGO9009882;FRALLEGO9009881;FRALLEGO9008881;FRALLEGO9008452;FRALLEGO9008451;FRALLEGO9008882;FRALLEGO9009871;FRALLEGO9009872", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61026200000, + 48.87758800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fast Automobile Longw;Fast Automobile Longwy", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-01-07;2022-01-27", + "operator": "ZEENCO", + "opening_hours": "24/7", + "network": "ZEENCO", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRLMSE1000034868;FRLMSE10000348682;FRLMSE10000348683", + "owner:ref:FR:SIREN": "791432263", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74097400000, + 49.51617900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Lasseube | Chemin du Mourou", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "ref": "0f263360-d17f-59b1-9c0e-e58d7a6bbe5c", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47844500000, + 43.22260300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85109002", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-15", + "description": "LES HERBIERS - Place Du Champ De Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01449000000, + 46.87136800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2022-10-18", + "amenity": "charging_station", + "ref": "FRALLEGO9007082;FRALLEGO9007081;FRALLEGO9006992;FRALLEGO9006991;FRALLEGO9000492;FRALLEGO9000101;FRALLEGO9000102;FRALLEGO9000491", + "network": "Allego Carrefour Douai", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Douai", + "ref:EU:EVSE": "FRALLEGO9007082;FRALLEGO9007081;FRALLEGO9006992;FRALLEGO9006991;FRALLEGO9000492;FRALLEGO9000101;FRALLEGO9000102;FRALLEGO9000491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04519500000, + 50.39703100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3277EVCP01;LFR3277EVCP02", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3277EVCP01;LFR3277EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "description": "LOUVIERS Churchill", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16806500000, + 49.22574600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "La Boucherie - Pamiers", + "opening_hours": "24/7", + "start_date": "2024-04-04", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PLBRPAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62987437302, + 43.11424321340 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPQOX8DO7S4R", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/QOX8DO7S4R", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "96107", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25111900000, + 45.40931400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP2521186048881124039", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "description": "ENGIE MAMP - Bornes publiques/FB453C88-D005-460F-88CE-89949F15A52C", + "ref": "927825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40140000000, + 43.31904600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PGDMSBZ", + "description": "Le Géant du Meuble - Sébazac", + "amenity": "charging_station", + "start_date": "2023-01-23", + "charging_station:output": "22 kW;50 kW;60 kW", + "socket:type2_combo:output": "50 kW;60 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60528930000, + 44.39713070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2019-03-18", + "capacity": "14", + "ref:EU:EVSE": "FRE11PLMALBI810001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30, Su 05:30-20:30", + "operator": "DRIVECO", + "description": "Leroy Merlin - Albi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17723900000, + 43.93740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "e-Totem - Lavage Lapalisse", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP03138A", + "ref": "FRETIP03138A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61533535669, + 46.24734507391 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "AUTOGRILL", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR15321;FROTHPOTHR15311", + "charging_station:output": "22 kW", + "description": "AUTOGRILL - MERCUEIL - AIRE DE BEAUNE TALLY", + "ref": "FR*SOD*S*OTHR*153*2*_*_;FR*SOD*S*OTHR*153*1*_*_", + "start_date": "2021-03-31", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83626100000, + 46.96424700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "ASTRADEC PSS STATION 1", + "ref:EU:EVSE": "FRCPIE6963425;FRCPIE6962715", + "amenity": "charging_station", + "capacity": "4", + "description": "ASTRADEC PSS STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6963425;FRCPIE6962715", + "start_date": "2024-07-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29303700000, + 50.72830500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1155486", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P1024080444431739722", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLXU7OI0X2KQAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54772900000, + 44.80715900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL SALON DE PROVENCE", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-07-10", + "ref:EU:EVSE": "FRVIAP122062", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12364900000, + 43.62839000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5083668547055712361", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "435246", + "network": "Freshmile France", + "description": "Freshmile France/J0TOR4JKAG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21987700000, + 43.61678100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPJEANLAINHYUNDAI732001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2022-08-04", + "description": "Hyundai - Jean Lain Automobiles - Albertville", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40910900000, + 45.66264200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6516203287394158068", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "440994", + "description": "Freshmile France/JSQOOBA6QV", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08703000000, + 45.76440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - SP Motors - Saint Doulchard", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-01-03;2022-07-05", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSPMOTORS182301", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37930500000, + 47.10716500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS28E130809", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E130809", + "start_date": "2022-05-07", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CROYES-SUR-LE-LOIR - Rte. de Montigny(Piscine)", + "description": "MODULO - CROYES-SUR-LE-LOIR - Rte. de Montigny(Piscine)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23758300000, + 48.00549300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P1946813593675083520", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/WDC8V4ORJE", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "462000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00792500000, + 48.79299900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128015", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA5LYENV5US4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P4606605868484206393", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01851400000, + 50.41238900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-27", + "ref:EU:EVSE": "FRS50P50410002", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PONTORSON - la Gare", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50528150000, + 48.55272940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8123800121;FRS81E8123800111;FRS81E8123800112;FRS81E8123800122", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-01-26", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "SAINT AMANS SOULT - La Lamberthe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48452471965, + 43.48026365128 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF078171", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF078171", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS AMIRAL MOUCHEZ", + "owner:ref:FR:SIREN": "531680527;531680526;531680523;531680524;531680525", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-06-15", + "charging_station:output": "175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14960000000, + 49.48760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49007021", + "description": "ANGERS - Boulevard Coubertin", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53269521800, + 47.46096236000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/saintcrepin", + "operator:email": "roaming@freshmile.com", + "ref": "46606", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PSAINTCREPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07936000000, + 49.26230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH08E59295002", + "description": "HAZEBROUCK - Rue du Maréchal Foch", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53092600000, + 50.73268900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CODOLET - Parking Du Stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30084002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70128600000, + 44.12725600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "socket:type2_combo:output": "42 kW", + "start_date": "2016-06-30", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Sarzeau - Saint Colombier", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PVCVTUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72136500000, + 47.54681000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "360 kW", + "description": "MOULISMES AIRE T365 2", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346367082;FRLMSE12346367081", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2024-03-18", + "operator": "SOREGIES MOBILITES", + "ref": "B174", + "operator:email": "irve@soregies.fr", + "socket:type2_combo:output": "360 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80992989242, + 46.33314067569 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P93077*A;Metropolis - Citadine - Villemomble - Grande Rue", + "ref:EU:EVSE": "FRMGPP93077A", + "opening_hours": "24/7", + "ref": "446930", + "start_date": "2021-10-06", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52316800000, + 48.88186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "ref:EU:EVSE": "FRSHEE72;FRSHEE71;FRSHEE336;FRSHEE337", + "start_date": "2024-03-22", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Shell Aire des Eglantiers - Ruffec", + "socket:type2_combo:output": "300 kW", + "capacity": "9", + "description": "Shell Aire des Eglantiers - Ruffec", + "charging_station:output": "300 kW;125 kW", + "ref": "FRSHEE72;FRSHEE71;FRSHEE336;FRSHEE337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20085100000, + 46.00116600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "capacity": "16", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E341540011;FRBE1E34154001", + "socket:type2_combo:output": "60 kW", + "description": "AMM - Mauguio - Parking P2", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "7 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95734547695, + 43.57876998251 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-01-10", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89369721", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A13 Beuzeville Nord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32766900000, + 49.32446300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS16PMB162511;Non concerné;FRS16PMB162512", + "start_date": "2020-07-17", + "charging_station:output": "3.7 kW;22 kW", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "description": "MONTEMBOEUF - PLACE LAURENT PRAT;MOBIVE | Montemboeuf | Place laurent Prat", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB16*25*1*_*_;690146ce-bc6b-5610-afeb-435eec44382a", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55188500000, + 45.77749600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Piscine Municipale - BARLIN", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE62BADA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62273700000, + 50.45724900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "description": "VAULX EN VELIN", + "ref:EU:EVSE": "FRALLPEVCARSVLXEV", + "start_date": "2022-02-12", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92977000000, + 45.74707500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3684EVCP03;LFR3684EVCP02;LFR3684EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "REIMS Papin", + "ref": "LFR3684EVCP03;LFR3684EVCP02;LFR3684EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06999200000, + 49.27080700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRM29E29061001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GOUESNOU - Rue Emile Roux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46623000000, + 48.43108100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Scionzier, Place du 18 Août", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPB92IX0BMR1", + "ref": "B92IX0BMR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54918080000, + 46.05686490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6444140293107633938", + "ref": "466080", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "25 kW", + "description": "Freshmile France/LJRZ79TYYV", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12864700000, + 48.69360900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "PERPIGNAN - Catalogne", + "start_date": "2022-10-06;2023-12-18", + "ref:EU:EVSE": "FRP07E661360011;FRP07E66136001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88796860000, + 42.69800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/ZUDHFC7WPK", + "network": "Réseau eborn", + "ref": "244021", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPZUDHFC7WPK", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25005700000, + 46.20124200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "opening_hours": "Th,Sa,Tu,Mo,Su,We,Fr 08:00-18:00", + "ref:EU:EVSE": "FREFLP3187203340583925147", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/668ce59447a067001c87f60f", + "ref": "1137603" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96653100000, + 50.27439300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "E.LECLERC", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "ref:EU:EVSE": "FROTHPOTHR27151;FROTHPOTHR27141;FROTHPOTHR27131;FROTHPOTHR27121;FROTHPOTHR271111;FROTHPOTHR271101;FROTHPOTHR27111;FROTHPOTHR27161;FROTHPOTHR27171;FROTHPOTHR27181;FROTHPOTHR27191", + "ref": "FR*SOD*S*OTHR*271*7*_*_;FR*SOD*S*OTHR*271*5*_*_;FR*SOD*S*OTHR*271*11*_*_;FR*SOD*S*OTHR*271*1*_*_;FR*SOD*S*OTHR*271*10*_*_;FR*SOD*S*OTHR*271*2*_*_;FR*SOD*S*OTHR*271*3*_*_;FR*SOD*S*OTHR*271*4*_*_;FR*SOD*S*OTHR*271*6*_*_;FR*SOD*S*OTHR*271*8*_*_;FR*SOD*S*OTHR*271*9*_*_", + "charging_station:output": "22 kW", + "start_date": "2021-11-05", + "operator:email": "sav@izivia.com", + "description": "E.LECLERC - ARES - ZONE 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11420000000, + 44.76836300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "JANUS RUOMS BORNE 1", + "description": "JANUS RUOMS BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6605205", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6605205", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33796600000, + 44.43102600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/P0E4AALLVD", + "ref:EU:EVSE": "FRFR1P2119443653151225875", + "ref": "694283", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04198900000, + 49.13816100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/s524821", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P3565888056083595795", + "charging_station:output": "22 kW;47 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1167240", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31120500000, + 45.89856300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892317", + "description": "Freshmile France/LLJ2K74751AZB8", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1227857519535464845" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95540900000, + 48.82978500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Georges-du-bois", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "aguerin@seeyousun.fr", + "ref:EU:EVSE": "FRSYSELMSSGDB", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "operator": "See You Sun", + "charging_station:output": "7.4 kW", + "network": "Le mans sun ", + "owner:ref:FR:SIREN": "824641294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09582800000, + 47.97287200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/RVBWQ4ACRN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5677867298032067391", + "network": "Freshmile France", + "ref": "705977", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62701900000, + 43.09000500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPJPVKIA835001", + "network": "DRIVECO", + "description": "Kia - La Seyne-sur-Mer", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "Mo 08:00-12:30, Mo 13:30-19:00, Tu 08:00-12:30, Tu 13:30-19:00, We 08:00-12:30, We 13:30-19:00, Th 08:00-12:30, Th 13:30-19:00, Fr 08:00-12:30, Fr 13:30-19:00, Sa 09:00-12:30, Sa 13:30-19:00", + "start_date": "2020-03-04", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85517400000, + 43.10799600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Briec-Rue Michel-armand de Cornouaille", + "ref:EU:EVSE": "FRS29E2902000", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00256100000, + 48.10192500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P2044326178680783761", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/J2HGHKHSLJ", + "opening_hours": "24/7", + "ref": "88220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42743000000, + 48.02854400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NORAUTO - Barjouville;Zephyre/1819032", + "capacity": "1;2", + "owner:ref:FR:SIREN": "480470152", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "NORAUTO - Barjouville;Zephyre", + "charging_station:output": "22 kW", + "ref": "716d4a88-c2ae-488b-a64c-c602d99aa069;575858", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref:EU:EVSE": "FRZP1PEAC39163;FRZP1P2528886434702827276;FRZP1PEAC36808", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46971100000, + 48.41373800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-05-14", + "capacity": "3", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AssifepPouvy", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE78" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45734120000, + 50.34129400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/Miraumonmair", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PMIRAUMONMAIR", + "network": "FDE 80", + "ref": "48988" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72950000000, + 50.09240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST15411;FRIZFPFAST15412;FRIZFPFAST15413", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*154*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2024-06-26", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - SIGEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96590991051, + 43.03051330363 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4674;FRS41E4675", + "description": "MODULO - VENDOME - Geoffrey Martel", + "ref": "FRS41E4674;FRS41E4675", + "network": "MODULO - VENDOME - Geoffrey Martel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07390000000, + 47.79130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "38806", + "ref:EU:EVSE": "FRS60PBEAUVAISIS", + "description": "Mouv'Oise/Beauvaisis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95509000000, + 49.57540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON6821;FRGLYPLYON6812;FRGLYPLYON6811;FRGLYPLYON6822", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "description": "SPR06 - PARKING HENRI MARECHAL", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*68*1*_*_;FR*SOD*S*LYON*68*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94011400000, + 45.69281400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E214058;FRS37E214059", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - NOTRE DAME D'OE - Rue de Couleuvrou", + "capacity": "2", + "description": "MODULO - NOTRE DAME D'OE - Rue de Couleuvrou", + "amenity": "charging_station", + "start_date": "2023-09-16", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E214058;FRS37E214059", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71107900000, + 47.45598400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PHTGWJF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/HTGWJF", + "ref": "39089", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13532000000, + 47.90610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Centre commercial Grand Var", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRG05E83144001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01631280000, + 43.14281960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - NANCY - Pkg. P2 stade Marcel Picot", + "network": "MODULO - NANCY - Pkg. P2 stade Marcel Picot", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2020-02-29", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRN54E187498;FRN54E187497", + "ref:EU:EVSE": "FRN54E187498;FRN54E187497" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20983000000, + 48.69470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-08-18", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*201*6*_*_;FR*SOD*S*SIGE*201*5*_*_;FR*SOD*S*SIGE*201*4*_*_;FR*SOD*S*SIGE*201*2*_*_;FR*SOD*S*SIGE*201*1*_*_;FR*SOD*S*SIGE*201*3*_*_", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FRSIGPSIGE20151;FRSIGPSIGE20141;FRSIGPSIGE20131;FRSIGPSIGE20121;FRSIGPSIGE20111;FRSIGPSIGE20161", + "description": "SIGEIF - AVENUE AUDRA - COLOMBES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284000000, + 48.92783600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18", + "network": "PLD Auto - Volkswagen Touring Utilitaires Aubagne - 13400 - DC", + "charging_station:output": "30 kW;22 kW", + "ref": "FRCG0E001802;FRCG0E001801", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001802;FRCG0E001801", + "opening_hours": "24/7", + "socket:type2_combo:output": "30 kW", + "operator:email": "info@chargeguru.com", + "description": "PLD Auto - Volkswagen Touring Utilitaires Aubagne - 13400 - DC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60595200000, + 43.28280500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "30 kW;22 kW", + "operator": "GARAGE DE L'AUZON", + "operator:email": "garagedeauzon@wanadoo.fr", + "amenity": "charging_station", + "capacity": "4", + "network": "GARAGE RENAULT", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "306328253", + "start_date": "2023-11-30", + "description": "lavilledieu", + "socket:type2_combo:output": "30 kW;22 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00;24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45333300000, + 44.57749900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "charging_station:output": "3.7 kW;36 kW", + "description": "MOBIVE | Tournon d'Agenais | Parking du Credit Agricole", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "ea4f0126-96f2-5958-a17f-7c7d75dbb305" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99940100000, + 44.40205000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-04-25", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE86CADA", + "description": "KODAC SLJ - CHASSENEUIL DU POITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37443500000, + 46.66641500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ9221;FRA16PWIIZ9211;FRA16PWIIZ9212;FRA16PWIIZ9222", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-02-28", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "MANDELIEU-LA NAPOULE - ROND-POINT DE LA CANARDIERE", + "ref": "FR*SOD*S*WIIZ*92*1*_*_;FR*SOD*S*WIIZ*92*2*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94631600000, + 43.55024600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3042EVCP02;LFR3042EVCP01;LFR3042EVCP03", + "description": "BENESSE ET MAREMNE Capbreton", + "ref:EU:EVSE": "LFR3042EVCP02;LFR3042EVCP01;LFR3042EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39046200000, + 43.62975700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-20", + "ref:EU:EVSE": "FRM34E34337001", + "network": "Reveo", + "description": "VILLENEUVE LES MAGUELONE - Rue Gustave Courbet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83434800000, + 43.54749300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79312;SZNPWU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPSZNPWU", + "description": "Revest-Du-Bion, Avenue de Miravail;Réseau eborn/SZNPWU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54716000000, + 44.08240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "682157", + "description": "Freshmile France/HGWIUU7WVJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6607501880464420522", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29936700000, + 48.16530900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-10-09", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "RUEIL-MALMAISON - 2 Gares", + "ref:EU:EVSE": "FRP07E92063004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17140060000, + 48.88867390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPRQNSQX", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "121574;RQNSQX", + "start_date": "2020-06-12", + "description": "Romans-Sur-Isère, Pl. du 75eme Rég Inf;Réseau eborn/RQNSQX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05134000000, + 45.04510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Chasse-sur-Rhône - Kyriad Direct", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2022-12-20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPCSRKY", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78957900000, + 45.58496500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E80288001", + "description": "Parking gare de TGV Haute Picardie - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83113000000, + 49.85983000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2022-10-19", + "capacity": "4", + "description": "HMV / MOYENMOUTIER 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support.eu@chargepoint.com", + "ref": "FRCPIE66430152", + "network": "HOPITAUX MASSIF DES VOSGES", + "owner:ref:FR:SIREN": "200096824", + "operator": "ChargePoint", + "ref:EU:EVSE": "FRCPIE66430152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88017124065, + 48.37587100374 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "description": "Easy Charge/SQAXHVYUL0", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "opening_hours": "24/7", + "ref": "749250", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHP7230631620097502675" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827300000, + 47.29464200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX1801", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue Fernand Labori 1", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "ref": "FR*V75*PPX18*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34232520000, + 48.89830300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/JBANTOHEUX", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRFR1P4682450335300580846", + "operator": "Freshmile | FR*FR1", + "ref": "761457" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51758500000, + 44.89619800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9017*05", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901705", + "description": "Paris | Rue de Courcelles 83", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30244200000, + 48.87965400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "559691", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P352243886468949750", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BSU6OTRKUO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13344600000, + 44.18653700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Hyundai -Chalon sur Saone", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPGUILLETHYUNDAI711001", + "start_date": "2022-06-08", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86028400000, + 46.76930400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2917100", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plomeur-Place des Anciens Combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28491600000, + 47.84168600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11188001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "LAPALME - Place des palmiers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99482100000, + 42.97452800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "129732", + "amenity": "charging_station", + "capacity": "1", + "network": "Syndicat intercommunal de Cesson et Vert-Saint-Denis", + "owner:ref:FR:SIREN": "257702613", + "opening_hours": "24/7", + "description": "Syndicat intercommunal (Mairie) - Cesson - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-09-03", + "ref:EU:EVSE": "FRZPEE22AC129732", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60890270000, + 48.56993160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09225001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PAMIERS - Place Sainte Helene", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61493900000, + 43.11549500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PQGBZJG", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/QGBZJG", + "ref": "79387", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30784000000, + 49.89230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*35*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BEGAAR", + "ref:EU:EVSE": "FRIZFPFAST3513;FRIZFPFAST3511;FRIZFPFAST3512", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83400711618, + 43.82884918294 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Guerande - Flaubert (8)", + "ref:EU:EVSE": "FRS44P44069C", + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-06-30", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41648600000, + 47.32424800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Flagy;FLAGY - Place De L'Église", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77184001;FRS77P77184A", + "start_date": "2023-05-16;2016-02-01", + "ref": "01F5ZAKH61PCPP9M7Z1HWEX6W9", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92266600000, + 48.31219500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;47 kW;150 kW", + "ref:EU:EVSE": "FRGYMP1757050473146948452", + "capacity": "8", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "ref": "978449", + "opening_hours": "24/7", + "description": "GreenYellow Shift Mobility/56", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69828000000, + 48.06915200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E220296;FRS37E220294", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - EPEIGNE SUR DEME - Rue Jean de Bueil", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - EPEIGNE SUR DEME - Rue Jean de Bueil", + "opening_hours": "24/7", + "ref": "FRS37E220296;FRS37E220294", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61283782000, + 47.66849239000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PETR - Blainville-sur-l'Eau", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c14dfbfa-b99e-5de1-a6f3-4d407303ce0f", + "operator": "37__PETR", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40860000000, + 48.55530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Super U Belberaud", + "owner:ref:FR:SIREN": "443256979", + "start_date": "2024-01-22", + "network": "Super U", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55653700000, + 43.50592700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "5c26539c-1774-5f87-8a93-a2238eda1193", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | AYGUEMORTE-LES-GRAVES | Parking la Sablière", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47430900000, + 44.71142000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "VILLEJUIF - Rue Boulevard Paul Vaillant Couturier", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-12-18", + "ref:EU:EVSE": "FRSIPE94076003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36743170000, + 48.79557820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-08", + "description": "SONELOG LE PONTET 6", + "amenity": "charging_station", + "ref": "FRCPIE6729915;FRCPIE6531055", + "ref:EU:EVSE": "FRCPIE6729915;FRCPIE6531055", + "capacity": "4", + "network": "SONELOG LE PONTET 6", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86274100000, + 43.98731400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P3652799556305054145", + "capacity": "2", + "amenity": "charging_station", + "ref": "971987", + "network": "Leclerc", + "description": "Leclerc/LLLP53TM91GB6F", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51816900000, + -21.28190600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "7ff9b790-b996-5475-88ad-24943c09c52d", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "description": "MOBIVE | Ares | Avenue de la Plage | Place Weiss" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14142400000, + 44.76466400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-22", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB58084A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Melle / St Martin les Melles - Lotissement du Pérot", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15772504000, + 46.22664850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Airbus - Blagnac - VELASQUEZ SUD", + "capacity": "4", + "ref:EU:EVSE": "FRAIRPAIRBUS317004", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-07-31", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38655700000, + 43.62003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR1160EVCP02;LFR1160EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR1160EVCP02;LFR1160EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "SAINT LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36990500000, + 49.74211900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "BONSON - ROUX", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2024-09-17", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE38012;FRM06PNICE38011;FRM06PNICE38021;FRM06PNICE38022", + "ref": "FR*SOD*S*NICE*380*1*_*_;FR*SOD*S*NICE*380*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14670720000, + 43.88223660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-05", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "MASSOINS - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ17412;FRA16PWIIZ17411", + "ref": "FR*SOD*S*WIIZ*174*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12500300000, + 43.94274700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLPSE7I6515LFO", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "1002906", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4999962414334103609", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66783300000, + 45.51048000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bricomarché - Cussac", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBRCCSC", + "charging_station:output": "100 kW", + "opening_hours": "24/7", + "start_date": "2023-12-01", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84628800000, + 45.70771000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Villars, Parking rue de l'arsenal", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref": "OYO5JSDPCS", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPOYO5JSDPCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35242020000, + 45.46647400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2022-06-30", + "charging_station:output": "225 kW", + "description": "Passy - Decathlon Mountain Store", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPPASDC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69171800000, + 45.91665700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2020-06-19;2023-01-06", + "ref:EU:EVSE": "FRP07E31555006;FRP07E315550061;FRP07E315550062", + "description": "TOULOUSE - Victor Hugo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44652600000, + 43.60608700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Sainte hélène du lac, route des plattières;Réseau eborn/LLP9JEBGL9G6II", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP890653648396571744;FREBNPLLP9JEBGL9G6II", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2023-11-22", + "ref": "LLP9JEBGL9G6II;1017090" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06600000000, + 45.48335000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "756831;B8VYNNI4EK", + "capacity": "2", + "amenity": "charging_station", + "description": "Easy Charge/B8VYNNI4EK;Golbey , Collège Louis Armand", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPB8VYNNI4EK;FRECHP4195704900067718196", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-03-08", + "socket:type2_combo:output": "24 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42234600000, + 48.18395500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-02-15", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A16 Lormaison Ouest", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP102112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09685000000, + 49.24117900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9018991632301313993", + "description": "Freshmile France/LLQ3MHNYD2GQVF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1002909", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79731300000, + 43.81961600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue du conservatoire 13", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-08-17", + "ref": "FR*V75*PPX09*06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0906", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34665280000, + 48.87358940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "3 kW", + "description": "Freshmile France/ZSFMSZ", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PZSFMSZ", + "ref": "86921", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62645000000, + 48.54500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Volvo - Saint Quentin", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "start_date": "2024-09-30;2023-02-24;2022-07-19;2022-09-02", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPGFVOLVO021001", + "capacity": "10", + "charging_station:output": "50 kW;24 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25181700000, + 49.85134100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25PUULUVH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "94337", + "description": "SYDED/UULUVH", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30319000000, + 46.81350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-07-07", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - UZAY LE VENON - Eglise", + "ref": "FRS18E212027;FRS18E212026", + "ref:EU:EVSE": "FRS18E212027;FRS18E212026", + "description": "MODULO - UZAY LE VENON - Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46063500000, + 46.81299700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARLY-LE-ROI - Eglise", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-27", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78372005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09249347709, + 48.86658309134 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "network": "QPARK", + "description": "QPARK - 73012 CHAMBERY - CHATEAU", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRQPKPQPRK2941;FRQPKPQPRK2931;FRQPKPQPRK2921;FRQPKPQPRK2911", + "ref": "FR*SOD*S*QPRK*29*4*_*_;FR*SOD*S*QPRK*29*3*_*_;FR*SOD*S*QPRK*29*2*_*_;FR*SOD*S*QPRK*29*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91555700000, + 45.56491400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81060001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "CARMAUX - Bld Augustin Malroux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15360600000, + 44.04805500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2021-07-09", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE408700", + "description": "IONITY Pech Montat Est", + "ref": "FRIONE408700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85972300000, + 47.94858300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTMARTIN SUR MER - Place de l’eglise", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2016-08-18", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50590002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52362600000, + 48.98826200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-31;2015-05-29", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77453001;FRS77P77453A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH615T44TYYE5HJP8AXY", + "description": "Sivry courty;SIVRY-COURTRY - Rue Du Calvaire", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75064100000, + 48.52702000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "531680480;531680479;531680478;531680481", + "description": "RELAIS AVELIN", + "opening_hours": "24/7", + "start_date": "2020-08-28;2023-12-14", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF080064", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080064" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07400000000, + 50.54000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - VENDOME - Rte. du Dr Faton", + "description": "MODULO - VENDOME - Rte. du Dr Faton", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E233546;FRS41E233545", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E233546;FRS41E233545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07001700000, + 47.79357100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PUXWAZX", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/UXWAZX", + "network": "Mobilité électrique 56", + "ref": "21872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34079400000, + 47.81132800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2023-05-25", + "ref": "FR*SOD*S*LYON*188*2*_*_;FR*SOD*S*LYON*188*1*_*_", + "description": "LY609 - VIABERT - BELLECOMBE", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON18822;FRGLYPLYON18821;FRGLYPLYON18812;FRGLYPLYON18811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86236100000, + 45.76625400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRMGPP92014D", + "charging_station:output": "100 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2023-11-10", + "ref": "599043", + "description": "Métropolis/FR*MGP*P92014*D;Metropolis - Express - Bourg-la-Reine - Général Leclerc", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31730400000, + 48.78469700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRSSDPSOFIDACITROEN625001", + "network": "DRIVECO", + "description": "Citroën - Saint Omer", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:00-12:00, Sa 13:30-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-02-14", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22936200000, + 50.75928500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76560001", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-10-21", + "description": "SAINT AUBIN EPINAY - Allée des roses" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17729000000, + 49.42208000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "446726", + "network": "Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P7712333383389137860", + "description": "Leclerc/IRPP8IVUJA", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02778200000, + 47.90172500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "9b74d05d-62af-53cd-9241-fd7d7d11d3f6", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | La Reole | Parking | Rue des Jacobins" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03475700000, + 44.58224500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE PLESSIS-GASSOT - Place de la Ferme du Château", + "ref:EU:EVSE": "FRS95E95492001", + "start_date": "2024-10-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41228600000, + 49.03367700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "ref:EU:EVSE": "FRSITE00000150;FRALLPTIS024", + "amenity": "charging_station", + "start_date": "2023-06-16", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "300 kW", + "network": "ALLEGO;GreenToWheel", + "description": "BASSO CAMBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149000000, + 43.56942000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "505770", + "description": "Leclerc/LHO03SXIPB", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P149834769330953872", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562300000, + 49.18870100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM13PP8NE1JHEQV", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Aubagne, 22 Avenue de Verdun", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57308000000, + 43.28884900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P3201063591535145556", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "SDEY/SXV8EJRVZX", + "socket:type2_combo:output": "24 kW", + "ref": "782622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95652400000, + 47.74590900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AURIBEAU-SUR-SIAGNE - PARKING SOUS-BARRI ", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ31211;FRA16PWIIZ31212", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*312*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2024-08-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91032371303, + 43.59954696814 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "514967", + "ref:EU:EVSE": "FRFR1P6732337826086392237", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/AYP7STRGYF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336400000, + 45.17755700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "description": "Picard - Rambouillet", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "ref:EU:EVSE": "FRPD1PPICRMB", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-03-29;2024-03-30", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82808915509, + 48.63009449223 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "50728;CNVK97OWH1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNCNVK97OWH1;FREBNPCNVK97OWH1", + "start_date": "2020-08-26", + "description": "La Crau, 01-03 Boulevard de la République;Réseau eborn/CNVK97OWH1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07458100000, + 43.14834700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "charging_station:output": "12 kW;240 kW", + "opening_hours": "We,Mo,Sa,Tu,Fr,Th 09:00-20:00,Th,Sa,Fr,We,Mo,Tu 08:00-19:00", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP4080966809567744277", + "capacity": "3", + "ref": "753660", + "operator:email": "support@evzen.com", + "socket:type2_combo:output": "240 kW", + "description": "Norauto - Bornes publiques/EE0C051A-A8B9-4B28-9968-2309B09CBCF8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69824000000, + 43.44858400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR62941;FROTHPOTHR62931;FROTHPOTHR62932;FROTHPOTHR62942", + "start_date": "2023-04-25;2023-05-26", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*629*4*_*_;FR*SOD*S*OTHR*629*3*_*_", + "network": "AUCHAN", + "description": "LA CHAPELLE ST AUBIN LE MANS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17524500000, + 48.04184600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLTHE8SNCQXIGW;1133604", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LLTHE8SNCQXIGW;Bilieu, Route de Fayarde et Côtes", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07", + "ref:EU:EVSE": "FREBNPLLTHE8SNCQXIGW;FREBNP1664266719775876702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55084500000, + 45.44893800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLYMPE1AAV4OSU;FREBNP3670374975084784987", + "description": "Réseau eborn/LLYMPE1AAV4OSU;Brézins, Parking Impasse des Frênes", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref": "LLYMPE1AAV4OSU;1162374" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30875200000, + 45.34545400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-11-10;2022-04-01", + "amenity": "charging_station", + "description": "SUPER U - TINTENIAC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR32471;FROTHPOTHR32461;FROTHPOTHR32411;FROTHPOTHR32421;FROTHPOTHR32431;FROTHPOTHR32441;FROTHPOTHR32451;FROTHPOTHR32472", + "ref": "FR*SOD*S*OTHR*324*6*_*_;FR*SOD*S*OTHR*324*4*_*_;FR*SOD*S*OTHR*324*3*_*_;FR*SOD*S*OTHR*324*1*_*_;FR*SOD*S*OTHR*324*2*_*_;FR*SOD*S*OTHR*324*5*_*_;FR*SOD*S*OTHR*324*7*_*_", + "operator:email": "sav@izivia.com", + "charging_station:output": "50 kW;3.68 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84159800000, + 48.32940600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7285653209348206337", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/PC8A6CPOJO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626213", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53253300000, + 43.25549400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "ref": "FR*V75*PPX15*22", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75PPX1522", + "description": "Paris | Rue Houdart de Lamotte 2", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28760000000, + 48.84070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4171195575087150033", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1112637", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLWG2L8WYONRDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77245400000, + 48.59885700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Hyundai - Théobald Automobiles - Sarreguemines", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPTHEOBALDHYUNDAI572001", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09824900000, + 49.11059300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-06-23", + "description": "900010", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "ref:EU:EVSE": "FRS27PTHIBERVILLEMARKET", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45836000000, + 49.14164900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22094001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Lancieux-parking de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15106400000, + 48.60416000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY28E78615001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "THIVERVAL-GRIGNON - Parc De Folleville", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93418500000, + 48.84184300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE216", + "owner:ref:FR:SIREN": "839265873", + "description": "Yesss_Lens", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82535600000, + 50.45020600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ANDRESY - Boulevard Noël Marc", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78015001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05802900000, + 48.97864500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-26", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE408652;FRIOYE408605;FRIOYE408604;FRIOYE408603;FRIOYE408606;FRIOYE408651;FRIOYE408653", + "ref": "FRIOYE408652;FRIOYE408651;FRIOYE408605;FRIOYE408604;FRIOYE408603;FRIOYE408606;FRIOYE408653", + "opening_hours": "24/7", + "description": "Nemours", + "network": "Nemours", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72088281000, + 48.26375165000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "474531", + "operator:email": "roaming@freshmile.com", + "description": "SDED52/KWFKOG6DAH", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P2860255188118324039" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32932000000, + 47.83289000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65388002", + "description": "SAINT LARY SOULAN - Rue des chardons", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32399800000, + 42.81757500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Saint-Léon-sur-l'Isle", + "description": "Saint-Léon-sur-l'Isle", + "amenity": "charging_station", + "ref": "FRIENE003802;FRIENE003801", + "capacity": "4", + "ref:EU:EVSE": "FRIENE003802;FRIENE003801", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299000, + 45.11994500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34281001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-10", + "network": "Reveo", + "description": "SAINT PARGOIRE - Parking Du Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51934722222, + 43.52966110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61063A", + "operator:email": "Exploitation@tevgo.fr", + "description": "BRIOUZE", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-BRIO-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36746300000, + 48.69885800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4354772880953140710", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLHQ9B01L2OYT4", + "ref": "892026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42564100000, + 49.05068800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/UNUUZP;Sainte-Foy-d'Aigrefeuille", + "start_date": "2017-03-01", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "UNUUZP;33376", + "ref:EU:EVSE": "FRS31PUNUUZP", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61002000000, + 43.54230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2020-10-09", + "ref:EU:EVSE": "FRSSDPGRENARDFORD390001", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Ford - Lons Le Saunier", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55802200000, + 46.69398900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "BMW STATION 7", + "capacity": "3", + "start_date": "2022-03-02", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRCG0E000075;FRCG0E000073;FRCG0E000074", + "description": "BMW STATION 7", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000075;FRCG0E000073;FRCG0E000074" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33934200000, + 43.35257700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2022-10-19", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "ae3e91c3-3153-4958-a9ce-9a122ab72804", + "ref:EU:EVSE": "FRLUMEVVFLOURIOUCLAR11", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52000000000, + 44.41000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "359b17d4-d274-59b6-bb12-bc0a4afdc956", + "description": "MOBIVE | Espoey | Route de Lourdes (Tennis)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16305300000, + 43.24521600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-01-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE54LYXA", + "charging_station:output": "24 kW;22 kW", + "description": "BYMYCAR - LAXOU", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13652300000, + 48.69469100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "11981;11980;11982", + "description": "Bump - Amarante - Montigny", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBMPS11981;FRBMPS11982;FRBMPS11980", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03920900000, + 48.79321890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3096EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3096EVCP01", + "description": "CARHAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56232900000, + 48.28403400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PGAHEBRSFVD", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-4E, Rue du Bosquet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39956600000, + 43.30038800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TE90/NQKUBV", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRS90PNQKUBV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref": "232501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469000000, + 47.58700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP83120STMGAUMONT", + "charging_station:output": "22.08 kW", + "ref": "FR*55C*P83120*STM*GAUMONT", + "operator:email": "contact@e55c.com", + "description": "PARKING GAUMONT STE MAXIME", + "start_date": "2019-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62492700000, + 43.32578800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P5596780097746384530", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "735117", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BOAWXOY1RL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03418800000, + 48.11934000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-09-01", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Super U - Pouilly-en-Auxois", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYUPYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54110946494, + 47.27078191623 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "C3RYGMDUOZ;30440", + "description": "Réseau eborn/C3RYGMDUOZ;Saint-Bonnet-En-Champsaur, Place Waldems", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPC3RYGMDUOZ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07729700000, + 44.68213400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "ref": "FRFASE33108;FRFASE33109", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "network": "Fastned Aire de L'Obrion;Fastned Aire de Loisy", + "description": "Fastned Aire de L'Obrion;Fastned Aire de Loisy", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "ref:EU:EVSE": "FRFASE33108;FRFASE33109", + "charging_station:output": "300 kW", + "start_date": "2023-03-14;2022-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08893940000, + 48.85609590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ES/ MEGAREX", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*SENT*366*6*_*_;FR*SOD*S*SENT*366*1*_*_;FR*SOD*S*SENT*366*2*_*_;FR*SOD*S*SENT*366*3*_*_;FR*SOD*S*SENT*366*4*_*_;FR*SOD*S*SENT*366*5*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPSENT36661;FROTHPSENT36651;FROTHPSENT36641;FROTHPSENT36611;FROTHPSENT36621;FROTHPSENT36631", + "start_date": "2022-08-19", + "network": "ES B2B", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83529300000, + 48.79997000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "ref:EU:EVSE": "FREBNP7665511587278764417;FREBNPWQ39LEVWWJ", + "ref": "682307;WQ39LEVWWJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/WQ39LEVWWJ;Six-Fours-Les-Plages, Rue de la Garde", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84357300000, + 43.11194900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPOL7HMZRXTP", + "operator:email": "contact@reseau-eborn.fr", + "ref": "OL7HMZRXTP", + "start_date": "2020-06-21", + "description": "La Talaudiere, Parking rue Salvador Allende" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42572360000, + 45.47532540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - PONT-AUDEMER", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR44132;FROTHPOTHR44131;FROTHPOTHR44111;FROTHPOTHR44112", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*441*1*_*_;FR*SOD*S*OTHR*441*3*_*_", + "start_date": "2023-09-20;2022-07-26", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52366900000, + 49.34770300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "492030", + "capacity": "18", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P184808192368603245", + "charging_station:output": "22 kW", + "description": "Freshmile France/RBFHMY0D1N", + "opening_hours": "Su,Mo,Th,Fr,We,Tu,Sa 08:00-19:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62993500000, + 46.50183000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-131", + "ref": "seno0100000005", + "ref:EU:EVSE": "FRUBIE10001006;FRUBIE10084600", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12125000000, + 49.49719400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLV2F1YE54TW33", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3186889652533716763", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1160895", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11994900000, + 49.10810700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "description": "Station-service de l'aire de Portes-lès-Valence - A7", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "98cd8709-9481-5940-b396-585b939ae6a5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86480300000, + 44.86586200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PZSBLAQ", + "ref": "120671", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ZSBLAQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00400000000, + 49.05180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1107912", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P7816352272831774672", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLW66ZW3VCGVT2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20193800000, + 49.28566300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "description": "Zephyre/LP0095AA;Zephyre/LP0095AB", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P6040283541342471224;FRZP1P6730736500148532016", + "ref": "576317;576320", + "charging_station:output": "14 kW;22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91071000000, + 47.49266500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-18", + "ref:EU:EVSE": "FRS11E11304002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "QUILLAN - Parking De La Gare", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18250000000, + 42.87390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BONNIERES-SUR-SEINE - Rue Des Caboches - Droite", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY02E78089001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57948850000, + 49.03151290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "operator": "44__CCCPH", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "03dc517b-7b48-5b8c-8c2d-96a881eab6b1", + "description": "CCCPH - Landres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80445800000, + 49.32117500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66188001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2017-09-09", + "description": "SAINT-PIERRE-DELS-FORCATS - 50-54Avenue Jean Moulin", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11878600000, + 42.49366000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref:EU:EVSE": "FRIKAPIKEA17361;FRIKAPIKEA17311;FRIKAPIKEA17321;FRIKAPIKEA17331;FRIKAPIKEA17341;FRIKAPIKEA17351;FRIKAPIKEA17352;FRIKAPIKEA17371", + "amenity": "charging_station", + "ref": "FR*SOD*S*IKEA*173*4*_*_;FR*SOD*S*IKEA*173*2*_*_;FR*SOD*S*IKEA*173*1*_*_;FR*SOD*S*IKEA*173*3*_*_;FR*SOD*S*IKEA*173*5*_*_;FR*SOD*S*IKEA*173*6*_*_;FR*SOD*S*IKEA*173*7*_*_", + "opening_hours": "24/7", + "description": "IKEA LILLE - PARKING COLLABORATEURS", + "start_date": "2024-03-20;2023-10-02", + "socket:type2_combo:output": "24 kW", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97879658388, + 50.65010336161 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "REDON - 1 rue de la vieille ville ", + "capacity": "2", + "operator": "Spie", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr", + "ref:EU:EVSE": "FRS35P35236004B1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06698700000, + 47.67285200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63042A", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref": "518252", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "SIEG 63/FR*S63*P63042*A;SIEG63 - ePremium - Blanzat - Primeveres", + "start_date": "2022-10-20", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07845100000, + 45.82799800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "454116", + "network": "Freshmile France", + "description": "Freshmile France/QEJQBLAVR2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P754411772175715488", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79260000000, + 46.28000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-01", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "description": "Carbonne", + "ref:EU:EVSE": "FRS31PUWQHJA", + "ref": "UWQHJA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22489000000, + 43.29590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "DRANCY - 13 Rue Marcelin Berthelot", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE93029011", + "operator": "Bouygues E&S", + "start_date": "2021-01-22", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44573200000, + 48.92164500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001282;FRCG0E000952;FRCG0E000949;FRCG0E000948;FRCG0E000950;FRCG0E000951;FRCG0E000953;FRCG0E001281", + "network": "Conseil département de la Somme - 80000 - 3", + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "start_date": "2023-11-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001282;FRCG0E000952;FRCG0E000949;FRCG0E000948;FRCG0E000950;FRCG0E000951;FRCG0E000953;FRCG0E001281", + "socket:type2_combo:output": "300 kW", + "operator:email": "info@chargeguru.com", + "description": "Conseil département de la Somme - 80000 - 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29607500000, + 49.89023000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-22", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE22111;FRM06PNICE22112", + "description": "NICE - PARKING MELCHIOR DE VOGUE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*221*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26602825923, + 43.70018058958 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "7675d370-2b6c-5b72-8e2e-4530a669c571", + "description": "MOBIVE | Bon Encontre | Parking Tortis", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67641900000, + 44.18615000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*361*1*_*_", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE36112;FRSIGPSIGE36111", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 102 RUE DU GENERAL LECLERC - FRANCONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22823810000, + 48.98427300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76216002", + "description": "DÉVILLE LÈS ROUEN - Rue Du Petit Aulnay", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-02-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04565300000, + 49.46315800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "OBERHAUSBERGEN Euro", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3445EVCP01", + "ref": "LFR3445EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70563200000, + 48.60520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "2f98b24b-5ef9-5f2b-adbd-a8497dd2c49a", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Perigueux | Place Francheville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71758400000, + 45.18335400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "description": "SDE82/KMNJNR", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "38944", + "ref:EU:EVSE": "FRS82PKMNJNR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53981000000, + 44.16260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "PLACE ANDRE GRANGIER - PUYVERT", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-03", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP84160PUYGRANG1ER", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P84160*PUY*GRANG1ER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34248200000, + 43.75886100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3187EVCP02;LFR3187EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "MAYENNE Blériot", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3187EVCP02;LFR3187EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61417900000, + 48.29785600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "start_date": "2023-02-02", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMILB", + "capacity": "3", + "description": "Intermarché - Ivry-la-Bataille", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45902024844, + 48.88203121319 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "description": "Réseau eborn/FA3KQKMH2K;Chambery, Le Phare Bissy", + "ref": "FA3KQKMH2K;346691", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP7749418447839517478;FREBNPFA3KQKMH2K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90132800000, + 45.58349600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "7", + "description": "e-Totem - BIARRITZ AV. du Golf", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP64122O", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP64122O", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54518868498, + 43.49078389076 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-06-23", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Centre Commercial Les Tisserands - Louviers", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "ref:EU:EVSE": "FRPD1PCCTLVS", + "opening_hours": "24/7", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17297999643, + 49.21025387110 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Saint-Jean-Pied-De-Port", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT642201", + "start_date": "2023-12-06", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23260100000, + 43.16614700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "description": "Artigues-près-Bordeaux - Hôtel Campanile", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPAPBHC", + "start_date": "2023-02-09", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49805800000, + 44.86747600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "amenity": "charging_station", + "network": "VOLKSWAGEN", + "ref:EU:EVSE": "FROTHPOTHR55812;FROTHPOTHR55811;FROTHPOTHR55813", + "description": "VOLKSWAGEN - SAINT MALO", + "ref": "FR*SOD*S*OTHR*558*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-07-12", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98608000000, + 48.62225800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "SUPERUPDC BORNE 1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6750405", + "network": "SUPERUPDC BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6750405", + "operator:email": "info@chargepoint.com", + "start_date": "2023-07-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26237200000, + 45.79020300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZNBCSN6ZPT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8977228003671640030", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "896670", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09700900000, + 49.25101000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref:EU:EVSE": "FRV75P900102", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue de L'Amiral De Coligny 1", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9001*02", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34046000000, + 48.86003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521288", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6725048044716653131", + "description": "Freshmile France/H5EHPPZSMJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69182800000, + 48.97872500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP3318", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Aire de la Baie de Somme", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75550500000, + 50.16732100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "11 kW;7.4 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/RKXKTUYHMP", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "505665", + "ref:EU:EVSE": "FRFR1P1838581933264306351", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53604000000, + 45.11870700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "description": "Ville d'Annecy - Parc des sports", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FR0NXPOOLC4BHY", + "operator": "NEXTENEO", + "capacity": "9", + "network": "Ville d'Annecy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11668600000, + 45.91756800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P3898227774538649275", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLXIWXP912EF7V", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "1162371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04837800000, + 48.84186600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12176001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-15", + "network": "Reveo", + "description": "ONET LE CHÂTEAU - Bd Des Capucines (Parking Médiathèque)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59655800000, + 44.36582700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA5P7587707551083914275", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "description": "WAAT/FRWATLJ8Y3Q8UO", + "operator:email": "exploitation@waat.fr", + "ref": "805281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71642100000, + 45.16661800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49301A;FRS49E49301001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-07;2024-04-05;2021-04-29", + "description": "OuestCharge - Diva Sp - Sevremoine - Prieure;SEVREMOINE - Place du Prieuré", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99491300000, + 47.12482500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8107000122;FRS81E8107000111;FRS81E8107000112;FRS81E8107000121", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "owner:ref:FR:SIREN": "258100072", + "description": "COUFOULEUX - Avenue Jean Berenguier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73134100000, + 43.81663500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-17;2023-05-09", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MARCK - Aire de covoiturage", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRHDFE62548003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96436940000, + 50.94709910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46028001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BETAILLE - Place publique", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73168200000, + 44.94423000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "518462", + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-10-07", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63457A", + "description": "SIEG63 - ePremium - Vic le Comte - Gare;SIEG 63/FR*S63*P63457*A", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20746600000, + 45.66303300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "QUIÉVRECHAIN - Avenue Jean Jaurès", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59484001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66905500000, + 50.40269500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS29E2918600", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plouezoc h-Place du Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82205300000, + 48.64005700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94042003", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "description": "JOINVILLE LE PONT - Place Mozart", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47553344707, + 48.82454916737 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90104377", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-11-13;2024-02-01", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Antibes Sophia Antipolis", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05850300000, + 43.62114600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "91fa1fdb-46b1-5e04-b71f-3e162ff9370b", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Sarlat la Caneda | Place de la Liberation", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21435300000, + 44.88386500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-01", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*466*1*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE46612;FRSIGPSIGE46611", + "description": "SIGEIF - 13 AVENUE DE VERDUN - VANVES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29372270000, + 48.82027020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9009272;FRALLEGO9009271;FRALLEGO9006321;FRALLEGO9005781;FRALLEGO9005782;FRALLEGO9006322", + "network": "Allego Carrefour Guingamp", + "amenity": "charging_station", + "description": "Allego Carrefour Guingamp", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9009272;FRALLEGO9009271;FRALLEGO9006321;FRALLEGO9005781;FRALLEGO9005782;FRALLEGO9006322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16476300000, + 48.56207300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "LFR4052EVCP02;LFR4052EVCP01;LFR4052EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT JULIEN EN GENEVOIS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4052EVCP02;LFR4052EVCP01;LFR4052EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09231700000, + 46.14135700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Urcuit | Parking de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "3f809355-e8b7-549e-bcbf-4333c42203b4", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33646900000, + 43.48574400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "BOUIN - Place Raoul Pelote", + "ref:EU:EVSE": "FRS85E85029001", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99678000000, + 46.97329000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSITE00000198", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "description": "TIKEAU Viriat - Bourg en Bresse", + "start_date": "2024-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20845220000, + 46.22051420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2705EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CHABEUIL", + "ref": "LFR2705EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00950800000, + 44.90244400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Kfc Outreau (62)", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PKFCOTR", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60831223523, + 50.69970454552 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "L'Argentière-La-Bessee, Place de la Gare;Réseau eborn/EULNXGGME8", + "ref": "EULNXGGME8;30401", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPEULNXGGME8", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "2;6", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55653900000, + 44.79073700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "amenity": "charging_station", + "capacity": "12", + "owner:ref:FR:SIREN": "383872892", + "description": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "charging_station:output": "22 kW", + "operator:email": "cmoya@girondins.com", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924000, + 44.87476787000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Boutique SFR - Sébazac-Concourès", + "opening_hours": "24/7", + "start_date": "2023-11-22", + "ref:EU:EVSE": "FRPD1PESCUFC", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60263960000, + 44.39458870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": " SAS La Tuiliere ", + "owner:ref:FR:SIREN": "320342975", + "ref:EU:EVSE": "FRE000028067822", + "ref": "6b387b60-89ed-11ee-b9d1-0242ac120002", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-01-03", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "charging_station:output": "22 kW", + "description": "Carry-le-Rouet", + "operator": "Electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14375000000, + 43.32934000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SEMOB Augustin Dupré", + "ref:EU:EVSE": "FRESEPS42218BQ", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218BQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37989000000, + 45.43724300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*100*1*_*_;FR*SOD*S*OTHR*100*2*_*_", + "network": "SYSTEME U", + "start_date": "2021-01-26", + "description": "HYPER U - GUJAN-MESTRAS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR10021;FROTHPOTHR10011", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07611500000, + 44.61719100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6920065", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "13 kW", + "opening_hours": "24/7", + "network": "BORNE LAGNIEU STATION 1", + "ref": "FRCPIE6920065", + "start_date": "2024-04-22", + "description": "BORNE LAGNIEU STATION 1", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34637400000, + 45.89858700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "94220", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DKZZCS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PDKZZCS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44807000000, + 47.06341000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Campanile Villennes-sur-Seine", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-06-20", + "ref:EU:EVSE": "FRVIAP121050", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99270000000, + 48.93290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2528389945495312464", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "368965", + "charging_station:output": "7.4 kW", + "description": "Freshmile France/VXRRZV9XIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61014100000, + 44.83271500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-11", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEDENAUTOMG641401", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "MG - Lons", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38110400000, + 43.33826700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@freshmile.com", + "amenity": "charging_station", + "start_date": "2022-12-09", + "capacity": "1", + "description": "MULTISERVICES LOUDUNAIS", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Th 08:30-12:30,Mo-Th 13:30-17:30,Fr 08:30-12:30,Fr 13:30-16:00", + "owner:ref:FR:SIREN": "343849238", + "network": "FRESHMILE", + "ref:EU:EVSE": "FRFR1EDNPE1;FRFR1EDNPE2", + "operator": "Centre d'exploitation Freshmile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08891200000, + 47.01926100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref": "FRS28E128792", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E128792", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BREZOLLES - Rue de la Ferté", + "description": "MODULO - BREZOLLES - Rue de la Ferté" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07302800000, + 48.68908400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/NPPA9S0IZH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461853", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P5810180118631562790" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40271500000, + 49.18213700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5L6HEULHIM", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "ref:EU:EVSE": "FRWA9P2298226798632968309", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1127901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09858000000, + 44.65110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-07", + "description": "LESSAY - Place St Cloud", + "ref:EU:EVSE": "FRS50P50267001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53554510000, + 49.21897670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81209001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PONT DE L'ARN - Place Du Moulin", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40572000000, + 43.50426600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "description": "REL.COMMUNAY NORD", + "owner:ref:FR:SIREN": "531680994;531680998;531680997;531680996;531680993;531680995;531680999;531681000", + "start_date": "2023-01-30;2023-04-21;2023-10-10;2023-08-01;2022-12-23;2023-09-05", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF062085", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF062085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82730000000, + 45.59100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49007001;FRS49P49007A", + "amenity": "charging_station", + "start_date": "2021-04-26;2024-04-04", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Angers - Rennes;ANGERS - Rue de Rennes", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54920800000, + 47.47725400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS59E59624001", + "start_date": "2023-01-12", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VILLERS-OUTREAUX - Place Du General De Gaulle Face Au N13", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29859440000, + 50.03273920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH06E62041015", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARRAS - Place de la Préfecture", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-10-26", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76562700000, + 50.29234300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ANDUZE - Parking Rue Du Luxembourg", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30010001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98626200000, + 44.05259000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PHGDFBF", + "ref": "21909", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/HGDFBF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73722000000, + 47.69030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LUSIGNAN HPC-1", + "ref:EU:EVSE": "FRLMSE12346052792;FRLMSE12346052791", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B138", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "socket:type2_combo:output": "120 kW", + "start_date": "2020-02-14", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11593500000, + 46.42911900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Metropolis - Citadine - Pierrefitte-sur-Seine - Salvador Allende;Métropolis/FR*MGP*P93059*B", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-10-27", + "ref:EU:EVSE": "FRMGPP93059B", + "ref": "514937", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36198300000, + 48.96303900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "304891641", + "network": "Réseau de recharge Sogestran", + "operator": "SGA Industries", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;1.7 kW", + "ref:EU:EVSE": "FRSGAP1D2007", + "start_date": "2021-03-10", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator:email": "contact@sga-automation.com", + "description": "D2007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15306000000, + 49.48321600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "750528960", + "ref": "01FDJ49W5BNFBBW4HR43XBSXYM", + "capacity": "2", + "amenity": "charging_station", + "description": "TOULOUSE AEROPORT HOTEL ", + "ref:EU:EVSE": "FRAU1000801", + "operator": "AUTORECHARGE", + "opening_hours": "24/7", + "network": "Réseau de charge FASTHOTEL BLAGNAC", + "start_date": "2021-08-12", + "operator:email": "contact@autorecharge.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39400000000, + 43.63280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89369709", + "start_date": "2022-12-08", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "description": "ENGIE Vianeo - A49 Royan Vercors", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21107900000, + 45.07177200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "258708585", + "network": "MOBIVE - SEHV87;CPO CITEOS Mobive", + "ref:EU:EVSE": "FRS87PMB87711;Non concerné;FRS87PMB87712", + "start_date": "2021-07-26", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB87*7*1*_*_;0b0dff85-dd1c-5b24-9526-d617d47a8737", + "charging_station:output": "22 kW", + "operator": "203__SEHV;IZIVIA", + "description": "MOBIVE | Ambazac | Gare;AMBAZAC - GARE", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40617200000, + 45.95307500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E161636;FRS88E161638", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS88E161636;FRS88E161638", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - DINOZE - Rue de la Papeterie", + "description": "MODULO - DINOZE - Rue de la Papeterie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47570320000, + 48.14031875000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2024-03-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego Carrefour Issoire", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9008672;FRALLEGO9001492;FRALLEGO9001491;FRALLEGO9000861;FRALLEGO9000862;FRALLEGO9001121;FRALLEGO9001122;FRALLEGO9008671;FRALLEGO9009091;FRALLEGO9009092", + "capacity": "10", + "network": "Allego Carrefour Issoire", + "ref:EU:EVSE": "FRALLEGO9008672;FRALLEGO9001492;FRALLEGO9001491;FRALLEGO9000861;FRALLEGO9000862;FRALLEGO9001121;FRALLEGO9001122;FRALLEGO9008671;FRALLEGO9009091;FRALLEGO9009092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26777140000, + 45.54829212000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "MONTIGNY EN GOHELLE Allende", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3670EVCP01;LFR3670EVCP03", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3670EVCP01;LFR3670EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92976500000, + 50.41966400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "description": "Marseille-13E, 61 Avenue de Saint-Just", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PDZK91KHIS4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40484900000, + 43.31705500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85811;XGFJVH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPXGFJVH", + "start_date": "2020-06-12", + "description": "Réseau eborn/XGFJVH;Annecy Seynod, Chemin de la Bruyère Vieugy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08326000000, + 45.86260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5602368712260663293", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/LLUL5C5EE2Q9K9", + "operator": "Freshmile | FR*FR1", + "ref": "1084770" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51079300000, + -20.89776800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "200 kW;160 kW;50 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PIBSVSS", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "description": "Ibis - Lyon Villefranche sur Saône", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73835040000, + 45.97656500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/I7JXCEB90K;Carqueiranne, Parking Cimetière", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP5659158235815841618;FREBNPI7JXCEB90K", + "ref": "I7JXCEB90K;492096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07722200000, + 43.09487600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "e-Totem - Netto Montrond-les-Bains", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP42149A", + "ref:EU:EVSE": "FRETIP42149A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23100999254, + 45.65467753284 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*244*1*_*_", + "network": "ES B2G", + "description": "PAYS RHENAN - GARE DE KILSTETT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR24411;FROTHPOTHR24412", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.84856300000, + 48.67607400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED TOULOUSE N", + "description": "CGED TOULOUSE N", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6600265", + "ref": "FRCPIE6600265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45599400000, + 43.64403000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2404432805142768010", + "ref": "1179987", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KTXKVX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48279000000, + 48.46140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRWA2P8325429058271244726", + "network": "WAAT", + "description": "WAAT/s421848", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "213026", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35276100000, + 48.74375300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2516052066466934642", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JIJ2OTELEJ", + "ref": "971750", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34267000000, + 46.20214500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1234596044", + "amenity": "charging_station", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 22 TOYOTA ECHIROLLES", + "ref:EU:EVSE": "FRSWSE1234596044", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71077100000, + 45.15113900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7226726140916327218", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JBXZWVVFM5", + "ref": "782406", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.61326300000, + -17.62261000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPGAMMVERT624001", + "network": "DRIVECO", + "start_date": "2023-04-11", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-12:15, Mo 14:00-19:00, Tu 09:00-12:15, Tu 14:00-19:00, We 09:00-12:15, We 14:00-19:00, Th 09:00-12:15, Th 14:00-19:00, Fr 09:00-12:15, Fr 14:00-19:00, Sa 09:00-12:15, Sa 14:00-19:00, Su 09:30-12:30", + "charging_station:output": "22.08 kW", + "description": "Gamm Vert - Bethune", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64745000000, + 50.54530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E232687", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E232687", + "charging_station:output": "0 kW", + "description": "MODULO - COURVILLE-SUR-EURE - Beauce", + "opening_hours": "24/7", + "network": "MODULO - COURVILLE-SUR-EURE - Beauce", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25236400000, + 48.44903000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "owner:ref:FR:SIREN": "775682040", + "description": "Parking UCPA Bombannes Camping Dune Bleue", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "operator": "UCPA DUNE BLEUE", + "charging_station:output": "22 kW", + "network": "UCPA Bombannes DUNE BLEUE", + "operator:email": "ldurin@ucpa.asso.fr", + "opening_hours": "Mo-Su 9:00-17:00", + "ref": "EVB-P2022901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14887030000, + 45.10113120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/XLCIFNNICB", + "ref": "39776", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P1439273734242886888" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03922500000, + 48.29227200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "description": "Zephyre/LE004BD1;Zephyre/LE006DA2", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P2793305697709177159;FRZP1P2465124496967272864", + "ref": "575930;576020", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28541900000, + 48.35375200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "owner:ref:FR:SIREN": "839265924;839265923", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-26", + "description": "Kiloutou_Grand_Quevilly", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE581" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04187700000, + 49.41186400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "38995", + "ref:EU:EVSE": "FRS82PMONBEQUITO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/monbequito" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24065000000, + 43.89210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST12311;FRIZFPFAST12312;FRIZFPFAST12313", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*123*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - MONTCEAU-LES-MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36220543604, + 46.68184853103 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS41E4326;FRS41E4327", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - MUIDES SUR LOIRE - Rue du tramway", + "ref": "FRS41E4326;FRS41E4327", + "network": "MODULO - MUIDES SUR LOIRE - Rue du tramway" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52558900000, + 47.66880800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRS60P6227286435945079613", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "896718", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/LLLDQ4EN11JU1J", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87054700000, + 49.44088100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-19", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4411;FRGLYPLYON4412;FRGLYPLYON4421;FRGLYPLYON4422", + "opening_hours": "24/7", + "description": "VEN07 - PARILLY - METRO", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*44*2*_*_;FR*SOD*S*LYON*44*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88811200000, + 45.72000200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30254001", + "description": "SAINT GENIES DE COMOLAS - Place Du 8 Mai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72218200000, + 44.06452100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PEKCQMR", + "ref": "25074", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/EKCQMR", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68107000000, + 47.74250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-17", + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "5423755b-f394-4821-8e41-fa9dcb935aaa", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEBANKABLE1ROQUEALRIC1", + "description": "BANKABLE LA ROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06572170000, + 44.14325740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilygreen CPO/f4dc0619-f65b-4dff-9f38-e25ad01df422", + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "ref": "999957", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P8902558863238814443", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45074700000, + 43.64110600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*175*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE17511;FRSIGPSIGE17512", + "start_date": "2021-07-22", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - PLACE DE LA GARE - BIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21611800000, + 48.75196400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-07", + "ref:EU:EVSE": "FRCG0E001520;FRCG0E001519;FRCG0E001518;FRCG0E001517", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "FRCG0E001520;FRCG0E001519;FRCG0E001518;FRCG0E001517", + "capacity": "4", + "description": "Audi Vannes - 56000 - 2", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Audi Vannes - 56000 - 2", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78565200000, + 47.66944700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89881493", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-06-22", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Campanile Aurillac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438000000, + 44.91394900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "aecbf3f0-f60a-5271-a169-a15b1daba95c", + "operator": "199__SYDEC40", + "description": "MOBIVE | Magescq | Aire de Covoiturage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21337700000, + 43.77866000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MXTA", + "description": "MEAUX - Résidence Saint Faron", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88284600000, + 48.96435900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSRIIOM", + "description": "RIOM", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11760000000, + 45.87676000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3429EVCP01;LFR3429EVCP02;LFR3429EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3429EVCP01;LFR3429EVCP02;LFR3429EVCP03", + "charging_station:output": "50 kW;120 kW", + "description": "ST AMAND LES EAUX Durre", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43118600000, + 50.44141700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONTPELLIER - Route De Lodeve", + "ref:EU:EVSE": "FRM34E34172002", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81946560000, + 43.61599690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLR3Z5GMDXD", + "charging_station:output": "22 kW", + "ref": "LR3Z5GMDXD;63971", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/LR3Z5GMDXD;Aouste-Sur-Sye, Parking de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05661200000, + 44.71431200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5609023136722367993", + "operator:email": "roaming@freshmile.com", + "ref": "505728", + "amenity": "charging_station", + "description": "Freshmile France/VSN8XCGMXJ", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95134400000, + 43.63754700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E84007001", + "start_date": "2022-11-22", + "description": "AVIGNON - CHU visiteurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80394638941, + 43.91797322637 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/JYPPQA0TJQ;Saint-Laurent-Du-Pont, PLACE DU 10E REGROUPEMENT PARKING", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJYPPQA0TJQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30224;JYPPQA0TJQ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73768600000, + 45.39008900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2023-04-21", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Saint-Égrève - BUT", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPSEGBU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68210800000, + 45.21631400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "Parking gare de Rouen-Rive-Droite P2 - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E76540001", + "start_date": "2024-04-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09380170000, + 49.45024390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR VIENNE", + "ref:EU:EVSE": "FRCPIE6632165", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6632165", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-11", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "network": "SONEPAR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82163000000, + 45.48841800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "ref": "JSXHVQBXWH", + "amenity": "charging_station", + "socket:type2_combo:output": "90 kW", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPJSXHVQBXWH", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "description": "Angoulins , Marché", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10070080000, + 46.10849620000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "start_date": "2021-11-03", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue de la Pompe 137", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28034700000, + 48.86731500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/BB7LOI4JNQ", + "ref": "705896", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8053703503086214182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01452500000, + 50.64467700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP01185", + "start_date": "2022-10-17", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "description": "Mercure Albi Bastides", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTCBP01185", + "network": "MERCURE ALBI", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "341636918" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14637900000, + 43.93280200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3670467959238321140", + "ref": "786990", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YAWALWXPJN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37140400000, + 49.18673400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "BMW - Mondeville", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPGCABMW141201", + "capacity": "10", + "opening_hours": "Mo 07:30-12:30, Mo 13:30-19:00, Tu 07:30-12:30, Tu 13:30-19:00, We 07:30-12:30, We 13:30-19:00, Th 07:30-12:30, Th 13:30-19:00, Fr 07:30-12:30, Fr 13:30-19:00, Sa 09:00-12:30, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "start_date": "2023-09-25;2022-12-01", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31711000000, + 49.16847200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2912200", + "description": "Laz-Place de l'Église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.83613300000, + 48.13726000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11103001", + "network": "Reveo", + "description": "COUIZA - Rue Du Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25472222222, + 42.94361110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "owner:ref:FR:SIREN": "686850223", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0.0 kW", + "opening_hours": "Mo-sat 08:00-18:00", + "operator:email": "advenir@zeborne.com", + "ref": "142948", + "description": " Peugeot NOMBLOT ", + "ref:EU:EVSE": "FRZPEE142948", + "network": "NOMBLOT VILLEFRANCHE", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0E-11, + 0E-11 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AX LES THERMES - Parking Avenue Adolphe Authie", + "ref:EU:EVSE": "FRS09E09032001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84097300000, + 42.72045800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PSAINSENAMIEN", + "description": "FDE 80/Sainsenamien", + "ref": "79483", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31630000000, + 49.81550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST27011;FRIZFPFAST27012;FRIZFPFAST27013", + "start_date": "2024-07-30", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*270*1*_*_", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - SAINT-VALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81308200000, + 45.17294300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44043002;FRS44P44043B", + "amenity": "charging_station", + "start_date": "2024-04-18;2021-04-20", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Clisson - Lemot;CLISSON - Place Lemot", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28201400000, + 47.08515300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77126A;FRS77E77126001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CONGIS-SUR-THEROUANNE - Rue De La Poste;Congis-sur-Thérouanne", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61KQMQ3JSMY5G6DTFH", + "start_date": "2016-08-31;2023-05-12", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97457800000, + 49.00692700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "description": "HOTEL LES SALINES", + "ref:EU:EVSE": "FRGSPP1000056182;FRGSPP1000056183", + "network": "HOTEL LES SALINES", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.08018131426, + 47.57199313948 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - SAINT AVERTIN - Pl. de la Marne", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E219970;FRS37E219971", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E219970;FRS37E219971", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINT AVERTIN - Pl. de la Marne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72783400000, + 47.36832900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "53d17881-14ae-5be1-80f2-7e33d755f63b", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SDE54", + "description": "PETR - Parking de la Gare - Bayon-Virecourt", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "37__PETR", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32290200000, + 48.46833100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CERTAS Eurodisney", + "ref": "FRG10P77132A", + "capacity": "5", + "network": "CERTAS Eurodisney", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "start_date": "2023-01-11", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P77132A", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79664200000, + 48.87229300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | MONT-DE-MARSAN | Place Francis Planté", + "ref:EU:EVSE": "Non concerné", + "ref": "649b391f-d044-59cf-a305-468f0820f5c1", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50272800000, + 43.89486700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE29512;FRSIGPSIGE29511", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 27 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE", + "start_date": "2022-08-16", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*295*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32466200000, + 48.96176400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "ref:EU:EVSE": "FRCPIE6511515", + "charging_station:output": "24 kW", + "network": "GVA LADOIX ABB", + "amenity": "charging_station", + "capacity": "1", + "description": "GVA LADOIX ABB", + "start_date": "2021-09-07", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW", + "ref": "FRCPIE6511515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87734800000, + 47.07268300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/BBNL2YXVNI", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5927362009709709417", + "ref": "446672" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30108800000, + 45.53600500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e7670638-a5f4-52dd-a040-6da345b6862d", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Bergerac | Rue Candillac (Mairie)", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48543000000, + 44.84966700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2015-07-08", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "description": "Réseau AlterBase - Châtillon sur Thouet - agence Séolis", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB33001A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24831400000, + 46.66261500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "network": "DRIVECO", + "description": "Airbus - Marignane - parking J1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS313004", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22575000000, + 43.43673000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "description": "CHATENAY MALABRY", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR4289EVCP09;LFR4289EVCP07;LFR4289EVCP06;LFR4289EVCP05;LFR4289EVCP04;LFR4289EVCP03;LFR4289EVCP01;LFR4289EVCP02;LFR4289EVCP12;LFR4289EVCP10;LFR4289EVCP11;LFR4289EVCP08", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4289EVCP10;LFR4289EVCP12;LFR4289EVCP06;LFR4289EVCP05;LFR4289EVCP04;LFR4289EVCP03;LFR4289EVCP01;LFR4289EVCP02;LFR4289EVCP07;LFR4289EVCP09;LFR4289EVCP11;LFR4289EVCP08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28997000000, + 48.76378000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Orléans Métropole/FGU7G4ZMF1", + "ref": "414732", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref:EU:EVSE": "FRM45P3015002541211181775" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90251300000, + 47.90537500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*148*1*_*_;FR*SOD*S*WIIZ*148*2*_*_", + "opening_hours": "24/7", + "start_date": "2022-09-08;2022-07-08", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ14822;FRA16PWIIZ14812;FRA16PWIIZ14811;FRA16PWIIZ14821", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "VALBERG - PISCINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93536700000, + 44.09189700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/IQSGOGAXZQ", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2639253429093319383", + "ref": "735147" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12743300000, + 43.61491600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "start_date": "2024-03-27;2024-03-22", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBBFPRI", + "description": "Inter Caves - Pringy", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56818960818, + 48.52062697570 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "JLQWOQOKKG;30191", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJLQWOQOKKG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/JLQWOQOKKG;Meyrie, Rue des Grands Tournants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28612200000, + 45.55948000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Toulouse - Novotel Purpan Aéroport", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPTOUNO", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-10-30", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39897000000, + 43.60564600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-16", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP07E13103001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SALON DE PROVENCE - Portail Coucou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09986700000, + 43.64180800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6697565", + "charging_station:output": "22 kW", + "ref": "FRCPIE6697565", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT CLERMONT-FER 1", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "description": "SONEPAR CONNECT CLERMONT-FER 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13440000000, + 45.78501000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPQ01LMEG8IN", + "ref": "Q01LMEG8IN", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "description": "La Baule , Parking des Frênes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39118097000, + 47.28521084000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A1 Coeur des Hauts-de-France Ouest", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP103115" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83781200000, + 49.88604300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/BU0VIGCDAQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8423477367680720026", + "operator": "Freshmile | FR*FR1", + "ref": "786954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31350100000, + 49.35824200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0716", + "capacity": "4", + "ref": "FR*V75*PPX07*16", + "opening_hours": "24/7", + "description": "Paris | Rue Jean Nicot 10", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30698670000, + 48.86112860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/P9ZRAMGL0G", + "ref:EU:EVSE": "FRFR1P2226027335141511960", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346343", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86681900000, + 43.57967300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-18", + "network": "DRIVECO", + "description": "Toyota - Sète", + "ref:EU:EVSE": "FRSSDPMAURINTOYOTA342001", + "capacity": "2", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70743000000, + 43.41894700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25PXFPUWS", + "charging_station:output": "22 kW", + "ref": "79891", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "description": "SYDED/XFPUWS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96517000000, + 47.21320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BLET - Château", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BLET - Château", + "ref": "FRS18E186579", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E186579" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73075100000, + 46.89559800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref": "530096e5-2e8c-4396-af14-c2ed1b384914", + "ref:EU:EVSE": "Non concerné", + "operator": "ELEC eCONNECT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ELEC eCONNECT Tain l'hermitage", + "network": "ELEC eCONNECT", + "owner:ref:FR:SIREN": "853251635", + "operator:email": "contact@elec-econnect.fr", + "start_date": "2022-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85000000000, + 45.07000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK101121;FRQPKPQPRK101111;FRQPKPQPRK101131;FRQPKPQPRK101141", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*QPRK*101*14*_*_;FR*SOD*S*QPRK*101*13*_*_;FR*SOD*S*QPRK*101*11*_*_;FR*SOD*S*QPRK*101*12*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "QPARK", + "description": "QPARK - LA DEFENSE - COUPOLE REGNAULT", + "start_date": "2022-01-03;2022-01-01", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24337700000, + 48.89476200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8103100122;FRS81E8103100121;FRS81E8103100111;FRS81E8103100112", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-03-29", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "LE BEZ - Communauté de Comunes Sidobre Vals et Plateaux/Route de Lignon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40734300000, + 43.63374200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "bench" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20629000000, + 49.97198850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE402600", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Gueux", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2019-04-24", + "ref": "FRIONE402600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92352200000, + 49.24440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2024-05-30", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - ePremium - Saint-Brevin-Les-Pins - Jules Verne (26)", + "ref:EU:EVSE": "FRS44P44154E", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16847400000, + 47.24697000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Reau;REAU - Rue De Villaroche", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-26;2016-08-12", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77384001;FRS77P77384A", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61YS90NBC7MSK83QP2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62365000000, + 48.61061500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62901001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-12-04;2021-11-03", + "operator": "Bouygues E&S", + "description": "WITTES - RDV 943", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39236600000, + 50.66732000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - JOUE LES TOURS - Rue de la Gitonniere", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E5908;FRS37E5907", + "ref:EU:EVSE": "FRS37E5908;FRS37E5907", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - JOUE LES TOURS - Rue de la Gitonniere" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65640000000, + 47.33760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PFLENKG", + "network": "Morbihan Energies", + "start_date": "2016-10-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Auray - Rue du Four Mollet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98956300000, + 47.66645900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-25;2022-05-21;2022-05-12;2022-07-06", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON16441;FRGLYPLYON16421;FRGLYPLYON16411;FRGLYPLYON16431", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*164*3*_*_;FR*SOD*S*LYON*164*2*_*_;FR*SOD*S*LYON*164*1*_*_;FR*SOD*S*LYON*164*4*_*_", + "description": "LY712 - GERLAND", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83057900000, + 45.72687100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DEÛLÉMONT - Rue des Processions", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "FR*MEL*P59890*01", + "ref:EU:EVSE": "FRMELP5989001", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94526916700, + 50.73515731000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPEURAUTOOPEL596401", + "amenity": "charging_station", + "start_date": "2019-12-09", + "description": "OPEL -Dunkerque", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35664000000, + 51.01670100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6589545", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6589545", + "network": "SONEPAR CONNECT LA GARDE", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "description": "SONEPAR CONNECT LA GARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03036200000, + 43.13795900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/ZRNC95PUZD", + "opening_hours": "24/7", + "ref": "1069284", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRLE2P7980930624445897168" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56165100000, + 48.74192700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Braud et Saint Louis | Av de la Republique | Parking Musique Proche Pharmacie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "ref": "020622d0-c6a5-5795-a2aa-56306ac703cb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62651300000, + 45.24669300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-07-31", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95183002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "COURDIMANCHE - Parking de la Mairie – Rue vieille Saint-Martin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00181600000, + 49.03523700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "CASINO VALENCE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "capacity": "2;6", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRSITE00000105;FRALLPCAS014", + "charging_station:output": "50 kW;43 kW", + "start_date": "2021-10-19", + "network": "ALLEGO;GreenToWheel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942000000, + 44.90681000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4244EVCP04;LFR4244EVCP02;LFR4244EVCP01;LFR4244EVCP03;LFR4244EVCP05", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4244EVCP04;LFR4244EVCP02;LFR4244EVCP01;LFR4244EVCP03;LFR4244EVCP05", + "capacity": "10", + "socket:type2_combo:output": "120 kW", + "description": "La Seyne sur Mer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85490200000, + 43.11548900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PC5BXB3E6ZD", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Aix-en-Provence, Rue Neil Armstrong", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34707400000, + 43.48566800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P2587940846554451974", + "network": "SDEY", + "description": "SDEY/RD41RSGJAA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "488895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62774100000, + 47.90392700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ28112;FRA16PWIIZ28111", + "network": "WIIIZ", + "description": "CANNES - PARKING DU RIOU", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-04", + "ref": "FR*SOD*S*WIIZ*281*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00185680000, + 43.56357720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2607718461333577884", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/IEKST5G1ZL", + "operator": "Freshmile | FR*FR1", + "ref": "505527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16727800000, + 48.15413300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PNETBZL", + "description": "Netto - Beauzelle", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36669224949, + 43.66890357289 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "souvignymou;231643", + "description": "Souvigny, Moulins;Réseau eborn/souvignymou", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPSOUVIGNYMOU", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19333000000, + 46.53350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref": "740955", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP7540229242387962976", + "socket:type2_combo:output": "120 kW", + "description": "Norauto - Bornes publiques/B5AD1533-2887-456C-B285-907A103E1E65", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72544900000, + 45.15730500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "FFF - DISTRICT DE LARIEGE DE FOOTBALL", + "start_date": "2023-03-03;2023-03-02", + "ref": "FR*SOD*S*OTHR*602*2*_*_;FR*SOD*S*OTHR*602*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR60221;FROTHPOTHR60212;FROTHPOTHR60211;FROTHPOTHR60222", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67896400000, + 43.09861500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPPXQQOQYXV2;FREBNP1763516132942883170", + "ref": "419358;PXQQOQYXV2", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/PXQQOQYXV2;Toulon, Parking De La Carte Postale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93608400000, + 43.11520100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/YZ10HKDMQ8", + "ref:EU:EVSE": "FREBNP4952807600280400072", + "socket:type2_combo:output": "24 kW", + "ref": "492177" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31861900000, + 45.15396900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP121041", + "start_date": "2023-09-06", + "description": "ENGIE Vianeo - Hôtel Kyriad Nancy-Ouest - Laxou", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14045000000, + 48.70551000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6719606130668419491", + "operator:email": "roaming@freshmile.com", + "ref": "892560", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKMOQW5N2E870" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23636600000, + 46.58080500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX14*10", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2022-06-30;2021-10-26", + "description": "Paris | Rue Henri Barbusse 66", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1410" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33722900000, + 48.83912000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ZP2XBRNY7Q", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3183639606884207103", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "598125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16709000000, + 49.23853000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPSIBLU344101", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Les Sables du Midi (Camping Siblu) - Sérignan - zone 1", + "charging_station:output": "22.08 kW", + "start_date": "2022-06-02", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:30-12:30, Mo 14:30-17:00, Tu 09:30-12:30, Tu 14:30-17:00, We 09:30-12:30, We 14:30-17:00, Th 09:30-12:30, Th 14:30-17:00, Fr 09:30-12:30, Fr 14:30-17:00, Sa 09:30-12:30, Sa 14:30-17:00, Su 09:30-12:30, Su 14:00-17:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28688600000, + 43.25753000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "description": "900077", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PMADELEINONANCECOLES", + "start_date": "2016-12-05", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19461000000, + 48.77835900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plessala-Place du marché (parking église)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22046003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.61764200000, + 48.27639400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY08E78192001", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "DAMMARTIN-EN-SERVE - Allee Des Tournesol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62252780000, + 48.90101390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Distri_Chris", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE167", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04272800000, + 48.72074100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLYEWMZSVU", + "ref": "1087518", + "ref:EU:EVSE": "FRWATP6647279204348033164", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21961200000, + 49.12110700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Volvestre", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Volvestre", + "opening_hours": "24/7", + "ref": "FRIOYE401953;FRIOYE401952;FRIOYE401951;FRIOYE401904;FRIOYE401901;FRIOYE401902;FRIOYE401903", + "start_date": "2019-06-26", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE401953;FRIOYE401901;FRIOYE401902;FRIOYE401903;FRIOYE401904;FRIOYE401951;FRIOYE401952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436000, + 43.33794647000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2021-04-29", + "ref": "FRS51E57728;FRS51E57729", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - SAINT JUST SAUVAGE - Pkg. de l'église", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E57728;FRS51E57729", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SAINT JUST SAUVAGE - Pkg. de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78362700000, + 48.55509900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65282001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LOUDENVIELLE - Parking superette", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40869000000, + 42.79569000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE001201;FRIENE001202", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE001201;FRIENE001202", + "charging_station:output": "361 kW", + "description": "Maen Roch", + "network": "Maen Roch", + "socket:type2_combo:output": "361 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38736700000, + 48.41805700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34194002", + "start_date": "2023-12-12", + "description": "PAULHAN - Rue Saint Sébastien", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45926006500, + 43.53523736469 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PPPYXVZ", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/PPYXVZ", + "network": "Mobilité électrique 56", + "ref": "21873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34411000000, + 47.48100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1093591199007074878", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346274", + "description": "Freshmile France/ZZACWFQHTL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08555000000, + 49.04410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE VIGAN - Parking Ecole De Musique", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30350002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60805000000, + 43.99037300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Village Maurin - Nissan Perpignan", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "start_date": "2020-10-22", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN1", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90353500000, + 42.66142400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "network": "Carrefour Contact Périgny", + "amenity": "charging_station", + "start_date": "2023-02-23", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "Carrefour Contact Périgny", + "ref:EU:EVSE": "FRCARP17274A", + "ref": "FRCARP17274A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55682234299, + 48.69566871300 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMELOUCASTELETAPPARTHOTEL11", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-05-15", + "description": "Lou Castelet Appart'hotel ", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "f5fc2930-f303-11ed-a05b-0242ac120003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20124290000, + 43.77184290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "2f3c37d5-12dc-5e68-af3a-96ed9668ff58", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "MOBIVE | Champnetery | Aire de Pique-Nique - Covoiturage", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57055200000, + 45.83395200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Bricorama - SOUSTONS", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-07", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE40SACA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33002900000, + 43.74527100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "description": "BornEco/64facf4d6b5dbc773fee2f0b", + "amenity": "charging_station", + "ref": "923298", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRBHMP2828137447965361800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50704400000, + 47.76078400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "VALDAHON - chêne", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4116EVCP03;LFR4116EVCP02;LFR4116EVCP01", + "ref": "LFR4116EVCP03;LFR4116EVCP02;LFR4116EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33088700000, + 47.14828300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Salon-de-Provence, Rue César Bossy", + "ref:EU:EVSE": "FRM13PK0VMTM4AOW", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09300400000, + 43.63866500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/EWYZJ18PVY", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "488850", + "ref:EU:EVSE": "FRS89P4743219611292738948" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76453900000, + 47.45937100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "description": "R3 - Chaussea Clouange", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89882145", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "start_date": "2024-03-29", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08448300000, + 49.25707300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6936791477886486304", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "782418", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/NSVXI9YR3W", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04070100000, + 50.35961700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYULGN", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "start_date": "2023-10-26", + "capacity": "13", + "amenity": "charging_station", + "description": "Super U - Léognan", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59952000000, + 44.73295000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJUNKKQX4CA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/JUNKKQX4CA;La Roche-Sur-Foron, Parking Clavel", + "ref": "JUNKKQX4CA;30491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31168000000, + 46.06650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Comfort Hotel Lille l'Union", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "ref": "02c703db-2c8d-4e59-95d8-14183ca107fb", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1PEAC91696;FRZP1PEAC91707", + "description": "Comfort Hotel Lille l'Union - 22 kW AC", + "owner:ref:FR:SIREN": "508085461", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15949694000, + 50.70524241000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCVL - SAINTE-CONSORCE - ROND-POINT DU QUINCIEUX ", + "ref": "FR*SOD*S*OTHR*816*1*_*_", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS", + "ref:EU:EVSE": "FROTHPOTHR81612;FROTHPOTHR81611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69845700000, + 45.76534700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "48427;OE2C6C8Q1R", + "description": "Valencin, Route du 16 Mai 1944;Réseau eborn/OE2C6C8Q1R", + "ref:EU:EVSE": "FREBNPOE2C6C8Q1R", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01665000000, + 45.61280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP1558453186252558015", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/LLSUDE0H32MFHF", + "ref": "1026825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79964600000, + 45.73783900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING LE PARADIS - SAINT-LEON-SUR-VEZERE", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "24 kW;3.68 kW;7.36 kW", + "start_date": "2023-03-24;2022-06-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR41041;FROTHPOTHR41031;FROTHPOTHR41011;FROTHPOTHR41021;FROTHPOTHR41051;FROTHPOTHR41061;FROTHPOTHR41071", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*OTHR*410*6*_*_;FR*SOD*S*OTHR*410*5*_*_;FR*SOD*S*OTHR*410*3*_*_;FR*SOD*S*OTHR*410*2*_*_;FR*SOD*S*OTHR*410*1*_*_;FR*SOD*S*OTHR*410*4*_*_;FR*SOD*S*OTHR*410*7*_*_", + "network": "CAMPING LE PARADIS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07128100000, + 45.00173200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "626330", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/YCQYLGSCIJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4372338296501195089" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36049100000, + 47.76684300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "26", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP34046", + "description": "Tesla Supercharger Champfleury, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01239700000, + 49.20443100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/I6KMX075ND", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "782427", + "ref:EU:EVSE": "FRFR1P2962967597610076648", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49764800000, + 43.77623300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carglass Services SAS - DARDILLY", + "network": "Carglass Services SAS - DARDILLY", + "ref:EU:EVSE": "FRTCBP02824", + "operator": "Total Charging Services", + "charging_station:output": "7 kW", + "opening_hours": "Mo-Fr 08:00-12:15,Mo-Fr 13:30-19:00,Sa 08:00-12:30,Sa 13:30-17:00", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-06-14", + "owner:ref:FR:SIREN": "425050556", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP02824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76792158291, + 45.80527417415 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "761463", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/JWQ3WYZXD3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6987092275186785325", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71361500000, + 43.41959700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "462030", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/YTDEL15IL4", + "ref:EU:EVSE": "FRS14P7942961767051526384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91389900000, + 48.87235600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "Mazda - Buchelay - 7kW AC ", + "ref:EU:EVSE": "FRZMAE74AC96190", + "network": "Mazda Buchelay - Technic Auto Services", + "amenity": "charging_station", + "capacity": "1", + "ref": "96190", + "operator:email": "advenir@zeborne.com", + "opening_hours": " Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", + "owner:ref:FR:SIREN": "379198443", + "start_date": "2022-01-04", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67603700000, + 48.99153600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE387", + "amenity": "charging_station", + "capacity": "4", + "description": "Golf_Ruminghem", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-07-18", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15091710000, + 50.84746460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "POISSY - Rue Jean Bouin (Secteur Stade)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78498004", + "charging_station:output": "22 kW", + "start_date": "2024-01-19", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05690300000, + 48.93586100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE468553;FRIOYE468552;FRIOYE468551;FRIOYE468505;FRIOYE468502;FRIOYE468501;FRIOYE468503;FRIOYE468504;FRIOYE468506", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "network": "La Roche sur Yon", + "ref:EU:EVSE": "FRIOYE468553;FRIOYE468552;FRIOYE468551;FRIOYE468505;FRIOYE468502;FRIOYE468501;FRIOYE468503;FRIOYE468504;FRIOYE468506", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2024-05-17", + "description": "La Roche sur Yon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43075300000, + 46.70120900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS53E53161001", + "charging_station:output": "22 kW", + "start_date": "2024-05-24", + "description": "MONTSURS - Rue De Saint-Céneré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55696610000, + 48.13513780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PERPIGNAN - Aire de covoiturage - Péage Sud", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66136001", + "charging_station:output": "100 kW", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-19", + "network": "Reveo", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85780499000, + 42.67060425000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20650390000, + 49.97156130000 + ], + [ + 1.20656690000, + 49.97151260000 + ], + [ + 1.20663200000, + 49.97136340000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE023002;FRIENE023001", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "ref": "FRIENE023002;FRIENE023001", + "charging_station:output": "0 kW", + "description": "Dampierre-en-Burly", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2024-10-07", + "network": "Dampierre-en-Burly" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50507200000, + 47.76282100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35152001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "LIFFRE - 3b rue de la mairie ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50499400000, + 48.21374800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61491B", + "description": "TOUROUVRE - Rue Charles de Gaulle", + "network": "61mobility", + "charging_station:output": "3 kW;43 kW;36 kW", + "start_date": "2021-03-01", + "socket:type2_combo:output": "36 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "SE61-TORA-002", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64696800000, + 48.58684600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FFXHAYUY6K", + "ref:EU:EVSE": "FRFR1P3881053725810395771", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "1009131", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93096400000, + 48.56702900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/MBUWWA;Montberon", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "start_date": "2018-02-21", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PMBUWWA", + "ref": "64853;MBUWWA", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48099000000, + 43.71510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92050022", + "description": "NANTERRE - Rue des Peupliers", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-01-13", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21567026940, + 48.91270406098 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-02", + "network": "Zen Park Marseille - 13000 - 10", + "amenity": "charging_station", + "ref": "FRCG0E000680;FRCG0E000674;FRCG0E000673;FRCG0E000672;FRCG0E000671;FRCG0E000670;FRCG0E000665;FRCG0E000608;FRCG0E000607;FRCG0E000606;FRCG0E000605;FRCG0E000666;FRCG0E000667;FRCG0E000668;FRCG0E000669;FRCG0E000675;FRCG0E000676;FRCG0E000677;FRCG0E000678;FRCG0E000679", + "ref:EU:EVSE": "FRCG0E000680;FRCG0E000674;FRCG0E000673;FRCG0E000672;FRCG0E000671;FRCG0E000670;FRCG0E000665;FRCG0E000608;FRCG0E000607;FRCG0E000606;FRCG0E000605;FRCG0E000666;FRCG0E000667;FRCG0E000668;FRCG0E000669;FRCG0E000675;FRCG0E000676;FRCG0E000677;FRCG0E000678;FRCG0E000679", + "capacity": "20", + "opening_hours": "24/7", + "description": "Zen Park Marseille - 13000 - 10", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36578600000, + 43.32363800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE19412;FRM06PNICE19411;FRM06PNICE19421;FRM06PNICE19422", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "SAINT-LAURENT-DU-VAR - CRECHE DES RENARDEAUX", + "ref": "FR*SOD*S*NICE*194*1*_*_;FR*SOD*S*NICE*194*2*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19608300000, + 43.66529400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "b5ff1c1c-1e91-5ea1-a617-fef052e55bcc", + "operator": "200__TE47", + "description": "MOBIVE | Gontaud de Nogaret | Rue des Docteurs de Samondes", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29367200000, + 44.45563500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*333*1*_*_", + "description": "SIGEIF - 6 AVENUE DE LEGALITE PARKING DU STADE - BEAUCHAMP", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE33312;FRSIGPSIGE33311", + "start_date": "2023-02-09", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18510000000, + 49.01790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "ROUEN - Rue De Bihorel", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC01E76000024", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10393800000, + 49.44991600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CORBEIL ESSONNES John Kennedy", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3054EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3054EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47748600000, + 48.59102600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Coux | Av. de la République", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "73ae9f36-833f-5125-90e3-d393c87b8197", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40396400000, + 45.31232300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS82PCAUSSADEGARE", + "description": "SDE82/caussadegare", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "46648" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53390000000, + 44.16210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P83310*GRI*MURESPRE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "11.04 kW", + "operator:email": "contact@e55c.com", + "description": "CAMPING DES MURES - PRESTIGE - GRIMAUD", + "ref:EU:EVSE": "FR55CP83310GRIMURESPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59045900000, + 43.28427300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRAVIGNY Industrie", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3679EVCP02;LFR3679EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3679EVCP02;LFR3679EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16745700000, + 49.05668500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PITMCHN", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-08-13;2023-10-03", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "description": "Intermarché - Chauny", + "capacity": "11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21591875330, + 49.62634273359 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/EJWEGJHZDG", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454395", + "ref:EU:EVSE": "FREBNP7824971197033095533" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94080100000, + 43.11948700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP60636A", + "description": "e-Totem - B&B Compiegne Thourotte", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP60636A", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86744596892, + 49.48385067768 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E42218003", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Saint-Étienne Jean Jaurès - EFFIA", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38505000000, + 45.44108000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Pauillac", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT332501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74940200000, + 45.19399800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Orange - Peugeot", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPORAPG", + "start_date": "2022-12-02", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83868100000, + 44.11893000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - COARRAZE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*530*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR53011;FROTHPOTHR53012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23542200000, + 43.17527300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "E LECLERC BORNE 2", + "start_date": "2023-06-01", + "amenity": "charging_station", + "network": "E LECLERC BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6731805;FRCPIE6731795;FRCPIE6731085", + "ref": "FRCPIE6731805;FRCPIE6731795;FRCPIE6731085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25657600000, + 47.28805600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/IUXFHAEHEQ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3972719973394674408", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref": "368854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58589100000, + 44.87854200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-12-01", + "capacity": "2", + "amenity": "charging_station", + "description": "TOISON DOR - PARKING EXTENSION", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*26*1*_*_", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096", + "ref:EU:EVSE": "FRURWPUNIB2612;FRURWPUNIB2611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04924800000, + 47.35594900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8869169947481906979", + "network": "Freshmile France", + "ref": "529346", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JNMYHDCGFT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80739800000, + 45.92515000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRTSLP1755", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Mulhouse", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38818600000, + 47.78200200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "479256", + "charging_station:output": "22 kW", + "description": "Freshmile France/ZSVJXFFR02", + "ref:EU:EVSE": "FRFR1P8438005671059399786", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11751800000, + 45.80382000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;400 kW", + "operator:email": "roaming@zunder.com", + "network": "Zunder", + "description": "Zunder/143954", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "capacity": "26", + "ref": "1130592", + "opening_hours": "24/7", + "operator": "Zunder | ES*ZUN", + "ref:EU:EVSE": "ESZUNP8264781427198228838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09277800000, + 43.93758300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LSL7IGJCKA", + "operator:email": "roaming@freshmile.com", + "ref": "559883", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRS14P6635788792559716814", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973000000, + 48.92917800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAISSAC - Chemin De Maquefabes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12120001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82485100000, + 44.37954100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4LA5OIPNMY", + "ref": "880146", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA4P9045749530506036260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11844100000, + 49.48385700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "OMBREE D'ANJOU - Place du Champ de Foire", + "start_date": "2024-04-11", + "ref:EU:EVSE": "FRS49E49248002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17483305900, + 47.73916625977 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRS72E72181006", + "start_date": "2021-09-23", + "description": "LE MANS - Rue de Joinville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20492881536, + 47.99664746404 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "LANDRECIES - Avenue de la Légion d'Honneur (Caserne Clarke)", + "ref:EU:EVSE": "FRH16E59331002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2023-05-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68762970000, + 50.12708520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44201B;FRS44E44201002", + "description": "OuestCharge - Diva Sp - Suce-Sur-Erdre - Briand;SUCE-SUR-ERDRE - Place Aristide Briand", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-23;2024-05-02", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52705100000, + 47.34228400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG63 - ePremium - Saint Eloy les Mines - Jean Jaures;SIEG 63/FR*S63*P63338*A", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-10-18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63338A", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref": "518417", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83585800000, + 46.15871600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH02E59467001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "PONT-SUR-SAMBRE - Rue du huit mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84891700000, + 50.22236600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34038001", + "network": "Reveo", + "description": "LE BOUSQUET D'ORB - Avenue Jean Jaurès Parking Spar", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17048611111, + 43.68912500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CRETEIL - Chemin des Meches", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028024", + "start_date": "2023-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43853485890, + 48.78505200353 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12345904061;FRLMSE12345904062;FRLMSE12345904071;FRLMSE12345904072", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B124", + "operator": "SOREGIES MOBILITES", + "description": "MIGNALOUX-BEAUVOIR LE VERGER-1-2;MIGNALOUX-BEAUVOIR LE VERGER-1-1", + "operator:email": "irve@soregies.fr", + "start_date": "2017-05-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37658000000, + 46.55698000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Le Bugue | Place de Pre Saint Louis", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "1f7aa60f-0032-5aa5-95e4-b0c089569d97", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92588000000, + 44.92235000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*439*1*_*_", + "description": "SIGEIF - 90 AVENUE HENRI BARBUSSE - TREMBLAY-EN-FRANCE", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE43911;FRSIGPSIGE43912", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57264260000, + 48.95879680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "Allego Carrefour Goussainville", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9006802;FRALLEGO9006801;FRALLEGO9006702;FRALLEGO9004261;FRALLEGO9004262;FRALLEGO9004311;FRALLEGO9004312;FRALLEGO9006701", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO9006702;FRALLEGO9004261;FRALLEGO9004262;FRALLEGO9004311;FRALLEGO9004312;FRALLEGO9006701;FRALLEGO9006801;FRALLEGO9006802", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "description": "Allego Carrefour Goussainville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45640498000, + 49.02167499000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST PAUL LES DAX Resistance", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3780EVCP02;LFR3780EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3780EVCP02;LFR3780EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07616300000, + 43.72653500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "328b0798-fd2c-5916-98c2-c9085cd6a1cd", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Ciboure | Parking Marinela | Avenue François Miterrand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66569300000, + 43.38223300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "0cb3a6ce-27c9-5665-9cc1-3da8eb9aeea0", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "description": "ALTHEN-DES-PALUDS - Route de la Garance", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95598300000, + 44.00319400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRA05E78486001", + "description": "LE PERRAY EN YVELINES - Avenue de la gare", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85571310000, + 48.69364450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST AMAND VILLAGES Saint-Lô", + "capacity": "8", + "ref:EU:EVSE": "LFR4037EVCP01;LFR4037EVCP02;LFR4037EVCP03;LFR4037EVCP04", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4037EVCP01;LFR4037EVCP02;LFR4037EVCP03;LFR4037EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98416600000, + 49.04014900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-06-28", + "capacity": "3", + "description": "Intermarché - Vieillevigne", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PITMVVG", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43566510000, + 46.97070230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/OCMVHL5UIN;Toulon, Pkg. du parc Des Lices 2 ", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "ref": "346850;OCMVHL5UIN", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP2279484810758147988;FREBNPOCMVHL5UIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93622000000, + 43.12710700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "operator": "SPIE CITYNETWORKS", + "network": "e-Vadea", + "start_date": "2022-12-21;2023-01-18", + "amenity": "charging_station", + "operator:email": "assistance-commerciale@e-vadea.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVAP25368A", + "description": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "charging_station:output": "300 kW;50 kW;43 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458000, + 47.32890163000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Carrefour Market - Pont-l'Abbé-d'Arnoult", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PCRFPAA", + "opening_hours": "24/7", + "start_date": "2023-11-22", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87708267050, + 45.82984866744 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT362001", + "opening_hours": "24/7", + "description": "Carrefour Market - Le Pèchereau", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53271800000, + 46.57823900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2019-07-22", + "capacity": "2", + "description": "SEMOB Anatole France", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218AO", + "ref": "FRESEPS42218AO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39056700000, + 45.43094400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-02-07", + "description": "SAUSHEIM", + "capacity": "2", + "network": "DALKIA-EV100", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*IZIG*451*1*_*_;FR*SOD*S*IZIG*451*2*_*_", + "ref:EU:EVSE": "FROTHPIZIG45122;FROTHPIZIG45111;FROTHPIZIG45112;FROTHPIZIG45121", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38697000000, + 47.78587000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6876945;FRCPIE6876925", + "amenity": "charging_station", + "capacity": "4", + "description": "DDAY EXPERIENCE BORNE 1", + "opening_hours": "24/7", + "network": "DDAY EXPERIENCE BORNE 1", + "charging_station:output": "22 kW", + "ref": "FRCPIE6876945;FRCPIE6876925", + "operator:email": "info@chargepoint.com", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26805700000, + 49.32947200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1017009", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6742459737309334623", + "description": "Freshmile France/LLMSY984R150GF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21392200000, + 47.90745000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL BLOIS", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP122047", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-05-13", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37016500000, + 47.57387800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/I4EZXFLS0M", + "operator": "Freshmile | FR*FR1", + "ref": "466047", + "ref:EU:EVSE": "FRFR1P6208785774201815127" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99215700000, + 49.18919800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Albertville, France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP29935", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36568300000, + 45.65543600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "674252", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8879239066260811975", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/Q5Y2M4CFKZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17175200000, + 45.67069900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P4963413535006701703", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "467481", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "50 kW;43 kW", + "description": "MobiSDEC/CPTGDV5IRH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89095900000, + 48.84059500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/VUHVSPUVEE", + "opening_hours": "24/7", + "ref": "457578", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P6440418579522383740", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32725300000, + 49.24025000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P3198491289102540528", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref": "1127904", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LEPFUTNRU", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63251200000, + 43.40130100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-05", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "description": "CHERBOURG EN COTENTIN (EQUEURDREVILLE HAINNEVILLE) - Jean Moulin", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173002", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67577400000, + 49.65408700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81165001", + "start_date": "2022-12-27", + "description": "MILHARS - chemin de la Rivière", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88076700000, + 44.12821500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-10;2023-05-30;2023-07-10", + "charging_station:output": "175 kW;54 kW", + "description": "RELAIS TOURS VAL DE LOIRE", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680978;531680984;531680983;531680982;531680979;531680977;531680980;531680981", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF059694", + "ref:EU:EVSE": "FRHPCPNF059694" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77593600000, + 47.47336900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "PONT DE MONTVERT - Route de Finiels", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;150 kW", + "start_date": "2024-07-25", + "network": "Reveo", + "ref:EU:EVSE": "FRS48E48116002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74575850000, + 44.36364320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "441120", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56P1515874166148455240", + "description": "Mobilité électrique 56/GKP4F0ALTF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00879800000, + 47.66980500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH05E62746002", + "network": "pass pass électrique", + "description": "SAINT-ÉTIENNE-AU-MONT - Place Victor Hugo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62775600000, + 50.68115200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2929700", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Tréméven - Rue du Faouët" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52067000000, + 47.90242000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "85853", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/XQMKFJ", + "ref:EU:EVSE": "FRS56PXQMKFJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42677000000, + 47.73690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B092", + "start_date": "2017-05-25", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346052342;FRLMSE12346052341;FRLMSE12346052332;FRLMSE12346052331", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "SAINT-SAUVANT-1-1;SAINT-SAUVANT-1-2", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05509000000, + 46.35754000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "Metropolis - Citadine - Montreuil - Franklin (18)", + "start_date": "2022-04-08", + "capacity": "7", + "ref:EU:EVSE": "FRMGPP93048A", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44364069000, + 48.86153522000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Melle - Place de la Poste", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2017-09-05", + "ref:EU:EVSE": "FRSEOPAB79174P0017B", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14301159000, + 46.22177490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP8845878455163423482", + "ref": "1088868", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00366", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37617000000, + 47.11762000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "chm energy", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE1000131717", + "socket:type2_combo:output": "60 kW", + "start_date": "2022-10-10", + "network": "super u guipry messac", + "operator:email": "m.chariag@chm-energy.com", + "ref": "FRLMSE1000131717", + "owner:ref:FR:SIREN": "898476619", + "description": "parking super u" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83657000000, + 47.82456000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "799445309", + "operator:email": "info@electromaps.com", + "network": "FRIENDLY AUBERGE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMAPE000022182905", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1fc222f1-5977-493d-a446-f33359543573", + "description": "FRIENDLY AUBERGE", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34024673831, + 43.61226237608 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS85E85234001", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-JEAN-DE-MONTS - Place Koh Chang", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06061000000, + 46.79002000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "NEVERS", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRALLPEVCARSNVERS", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10552300000, + 46.99779900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*MAMP*9*2*_*_", + "start_date": "2022-03-18", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "IZIVIA | PLAN-DE-CUQUES - AVENUE PLEIN SUD", + "ref:EU:EVSE": "FRIZMPMAMP921;FRIZMPMAMP922", + "network": "IZIVIA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46368000000, + 43.34478600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Match Vieux conde (59)", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMATVXC", + "opening_hours": "24/7", + "start_date": "2024-09-26", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56771768614, + 50.46107640158 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPEYZ3RALMSG", + "charging_station:output": "22 kW", + "ref": "75074;EYZ3RALMSG", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/EYZ3RALMSG;Coux, Place d'Onclaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62365100000, + 44.73589100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4729400903056468626", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DX98OTN73K", + "opening_hours": "24/7", + "ref": "514982", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98792500000, + 48.97284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "description": "Ibis Budget - Isneauville", + "amenity": "charging_station", + "start_date": "2023-05-04", + "ref:EU:EVSE": "FRPD1PIBSINV", + "charging_station:output": "100 kW;50 kW;22 kW;180 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;180 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14481960000, + 49.49019070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYMXK9OQBKU", + "ref": "YMXK9OQBKU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Roanne, Parking halle Vacheresse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05039290000, + 46.03029580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-Totem - 3M - Jacou - Parking Communal TAM", + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34120A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34120A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91261227335, + 43.65472715349 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-07", + "description": "HOTEL LE BELVEDERE - MONTAGUDET", + "ref:EU:EVSE": "FROTHPOTHR21721;FROTHPOTHR21711", + "amenity": "charging_station", + "capacity": "1", + "network": "HOTEL LE BELVEDERE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*217*1*_*_;FR*SOD*S*OTHR*217*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10501300000, + 44.24757100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MASSY - NOYER LAMBERT", + "start_date": "2020-09-02", + "ref:EU:EVSE": "FRCPSPCAPS4312;FRCPSPCAPS4311", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*CAPS*43*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29232600000, + 48.73232000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TCBPDHC3FI", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P459329393903951551", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521369", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85897600000, + 48.74580200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRW11P8398693345098951735", + "network": "WAAT", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLLJARIKGX", + "opening_hours": "24/7", + "ref": "767202", + "charging_station:output": "50 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*W11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84290900000, + 43.92577800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2489268034104724129", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "801594", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/DFCD7VBOXJ", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61443700000, + 44.86993900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1000098510;FRSWSE1000098515", + "start_date": "2023-09-15", + "amenity": "charging_station", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "charging_station:output": "32 kW", + "description": "WB 40kW MG Etancheite 1;WB 40kW MG Etancheite 2", + "opening_hours": "24/7", + "ref": "1000098515;1000098510", + "socket:type2_combo:output": "32 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42174200000, + 46.30480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1371146159762087531", + "description": "Freshmile France/RJFZVVGX8O", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "574577", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01415700000, + 50.61510300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Henri Maire - Boichailles", + "start_date": "2023-06-28", + "opening_hours": "24/7", + "capacity": "10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPBOISSET396001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72360000000, + 46.91014000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS28E139334;FRS28E139335", + "ref": "FRS28E139334;FRS28E139335", + "start_date": "2021-03-13", + "charging_station:output": "0 kW", + "description": "MODULO - VERNOUILLET - Rue du Moulin Rouge", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - VERNOUILLET - Rue du Moulin Rouge", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35519400000, + 48.72064500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@reve-mobilite.com", + "capacity": "2", + "ref": "EVB-P1950759", + "amenity": "charging_station", + "network": "REVE", + "owner:ref:FR:SIREN": "904902186", + "ref:EU:EVSE": "Non concerné", + "start_date": "2022-05-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hôtel la Bastide de Vaison", + "operator": "REVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04000000000, + 44.24000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "SDEA 10/T9MXJNYNEM", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "ref:EU:EVSE": "FRS10P5652446308885271210", + "ref": "521462", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04579000000, + 48.27896100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP8619572782221121648", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/FRWATLQCD2E6Q7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "706265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43501400000, + 46.67090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "3", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy", + "description": "grand_hotel_touquet;renault seclin A;renault seclin B", + "ref:EU:EVSE": "FRROSE58;FRROSE50;FRROSE49", + "start_date": "2021-02-25;2021-02-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59606000000, + 50.52649800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PLAMAGISTERE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/lamagistere", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "46675", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82032500000, + 44.12473300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "INTERPARKING - Vieux Pilori (Mantes-la-Jolie)", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIPKPVPM", + "ref": "FRIPKPVPM", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "901573139", + "start_date": "2023-01-09", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71206000000, + 48.99212000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2021-04-16;2024-04-10", + "description": "OuestCharge - Diva Sp - Corne - Moines;CORNE - Place du Logis des Moines", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49106A;FRS49E49106001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35073600000, + 47.47167200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/JPBENS", + "ref": "94280", + "ref:EU:EVSE": "FRS60PJPBENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98237000000, + 49.57090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON20611;FRGLYPLYON20612;FRGLYPLYON20613", + "start_date": "2024-03-12", + "ref": "FR*SOD*S*LYON*206*1*_*_", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "100 kW", + "description": "VIL14 - CUSSET", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89892690000, + 45.76582200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30189017", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NIMES - Rue George Besse", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36872600000, + 43.82183600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-08-29", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Ploeren - Parking relais - proximité route nationale", + "ref:EU:EVSE": "FRS56PPTMTEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79624000000, + 47.66067800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref": "FR*SOD*S*SORE*48*1*_*_;B058", + "start_date": "2016-06-02;2016-04-04", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS86PSOREB0581;FRLMSE12346402651;FRLMSE12346402661;FRS86PSOREB0582", + "network": "SOREGIES MOBILITES;SOREGIES", + "opening_hours": "24/7", + "operator:email": "irve@soregies.fr;sav@izivia.com", + "description": "LUSIGNAN CENTRE-1-1;LUSIGNAN CENTRE-1-2;LUSIGNAN CENTRE | B058", + "owner:ref:FR:SIREN": "450889225", + "charging_station:output": "18 kW;22 kW", + "operator": "SOREGIES MOBILITES;IZIVIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12231100000, + 46.43525300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "ref": "511166", + "description": "Mobilygreen CPO/e1d6ef02-b0aa-4152-907b-e29b225dbb8e", + "network": "Mobilygreen CPO", + "ref:EU:EVSE": "FRMW1P2632166932885492939", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42916100000, + 43.64287500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE15012;FRSIGPSIGE15011", + "start_date": "2021-06-18", + "ref": "FR*SOD*S*SIGE*150*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "SIGEIF - 11 AVENUE DU MARECHAL FOCH - CHATOU", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15736800000, + 48.88945200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E78674001", + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLEPREUX - Avenue De Touraine", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99935900000, + 48.82757900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13;2023-03-14", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89369685", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A36 Dole Audelange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58042400000, + 47.14738000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "72afe941-14dd-5d9f-bb71-76fa79db8553", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Verdille | Rue de L'Océan", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10689700000, + 45.88224400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "GRISY-SUISNES - MAIRIE", + "ref:EU:EVSE": "FRSE1PSE77GABA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66506100000, + 48.68548900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Denain", + "capacity": "8", + "amenity": "charging_station", + "description": "Allego Carrefour Denain", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-10-20", + "ref:EU:EVSE": "FRALLEGO9007161;FRALLEGO9007032;FRALLEGO9007031;FRALLEGO9003052;FRALLEGO9003051;FRALLEGO9002992;FRALLEGO9002991;FRALLEGO9007162", + "ref": "FRALLEGO9007161;FRALLEGO9007032;FRALLEGO9007031;FRALLEGO9003052;FRALLEGO9003051;FRALLEGO9002992;FRALLEGO9002991;FRALLEGO9007162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38970400000, + 50.32441200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3120EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "STE RUFFINE Paris", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3120EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09771200000, + 49.11060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Av. Camille Pujol", + "ref:EU:EVSE": "FRM31E31555023", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46208900000, + 43.60095000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "XNTOYCDUUU;446894", + "description": "Réseau eborn/XNTOYCDUUU;Alixan, Parking SDED Privé", + "ref:EU:EVSE": "FREBNP5461533248529893543;FREBNPXNTOYCDUUU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97614400000, + 44.98973100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "We,Mo,Fr,Tu,Th 09:00-17:00", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "521252", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "description": "Freshmile France/DLUIDNHJUL", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5075782703321310033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02341600000, + 47.24720400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "PARIS - Porte de Champerret", + "capacity": "7", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E75117001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-06-16;2023-01-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28677600000, + 48.88478500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP7276501807014331033;FREBNPRPQUB69LKZ", + "capacity": "2", + "description": "Sallanches, Parking du Centre Aquatique;Réseau eborn/RPQUB69LKZ", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346919;RPQUB69LKZ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64624600000, + 45.93089000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "description": "Istres - Jardipassion", + "ref:EU:EVSE": "FRELCPISTJP", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96132900000, + 43.52228900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking gare de Chambéry - EFFIA", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E73065001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91888400000, + 45.57180610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED ARMENTIERES", + "ref": "FRCPIE6619225", + "description": "CGED ARMENTIERES", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6619225", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89409000000, + 50.65642400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3775479499883216933;FREBNPG15FUATVOZ", + "capacity": "2", + "description": "Réseau eborn/G15FUATVOZ;Challes-Les-Eaux, Massettes 2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "G15FUATVOZ;346724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97110000000, + 45.54710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA2P4349420865226690077", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570558", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1181967" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96523700000, + 43.57959700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5610588633481089633", + "ref": "160308", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/TVZBFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15556000000, + 48.69160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00774", + "opening_hours": "Mo-Sa 08:00-19:00", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "start_date": "2021-09-28", + "network": "CHALLANS AUTOMOBILES", + "ref": "FRTCBP00774", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "KIA LITTOTAL - CHALLANS", + "owner:ref:FR:SIREN": "539245803" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86806848325, + 46.85689649969 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8065523757369026775", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLKMSXRQ0152TA", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892569", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06051200000, + 46.81811200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-12:30, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPBYMYCARSMART062001", + "description": "Smart - ByMyCar - Nice", + "start_date": "2020-07-20", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18963800000, + 43.70209300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Irvillac-Route de Daoulas", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2908600", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21417700000, + 48.37019300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CABRESPINE - Chemin De Pradelles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11056001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45751700000, + 43.36389500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC60915;FRZP1PEAC60826;FRZP1PEAC60818;FRZP1PEAC60916", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "owner:ref:FR:SIREN": "432654176", + "description": "Kyriad Lunel 4 - 11 kW;Kyriad Lunel 2 - 11 kW;Kyriad Lunel 1 - 11 kW;Kyriad Lunel 3 - 11 kW", + "ref": "1488e789-86cb-46ad-a97e-46e1091a6ca7", + "network": "Kyriad - Lunel", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14908360000, + 43.68473240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - ATTIGNY - Rue Verlaine", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ATTIGNY - Rue Verlaine", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57600;FRS08E57599", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS08E57600;FRS08E57599" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57827600000, + 49.47432900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PYGXHDL", + "ref": "79390", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/YGXHDL", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30589000000, + 49.88950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MC DONALDS - CHATEAU GONTIER", + "ref:EU:EVSE": "FRIZFPFAST23411;FRIZFPFAST23412;FRIZFPFAST23413", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-07-22", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*234*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68624500000, + 47.83162600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BLAIN - Boulevard De La Résistance", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-22", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS44E44015003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76164901257, + 47.47294616699 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CERNEUX - Rue De L'Église;Cerneux", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2015-07-01;2023-05-31", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77066A;FRS77E77066001", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH617RS00Z06JRBZ3SP7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34356700000, + 48.69384000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CHÂTEAU DE LA CHAIZE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000054380;FRGSPP1000054356;FRGSPP1000054351;FRGSPP1000054350;FRGSPP1000054352;FRGSPP1000054353;FRGSPP1000054354;FRGSPP1000054355;FRGSPP1000054357;FRGSPP1000054379", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "description": "CHÂTEAU DE LA CHAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63939642683, + 46.08731351638 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - LUZE - Pkg. derrière la mairie - T2", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LUZE - Pkg. derrière la mairie - T2", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219851;FRS37E219852", + "ref": "FRS37E219851;FRS37E219852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45328000000, + 47.02299500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "39__CCBP", + "charging_station:output": "3.7 kW;22 kW", + "ref": "498d0f26-1eab-5844-bab7-45ef94e915ff", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCBP - Place de la Mairie - Malleloy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16383400000, + 48.79441100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "LPA Parking St Exupery - N1 - Zone 1", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "4", + "ref:EU:EVSE": "FRG10P69123AA", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P69123AA", + "network": "LPA Parking St Exupery - N1 - Zone 1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07856319000, + 45.71936029000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "a40fcc43-1991-5aa2-9b72-5ce3cc8af95e", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Rochefort | Av. Camille Pelletan (les Thermes)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96215300000, + 45.94209000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*269*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE26911;FRSIGPSIGE26912", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-05-25", + "description": "SIGEIF - 23 BOULEVARD DE BRANDEBOURG - IVRY-SUR-SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39972900000, + 48.81458900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6713475;FRCPIE6470615;FRCPIE6713485", + "capacity": "5", + "ref:EU:EVSE": "FRCPIE6470615;FRCPIE6713475;FRCPIE6713485", + "start_date": "2024-09-23", + "amenity": "charging_station", + "description": "CHA BORNE 3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CHA BORNE 3", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.77073800000, + 41.94408400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Leclerc/KCAJTARK3I", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "515156", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1253475249879081547", + "opening_hours": "Mo,We,Sa,Th,Fr,Tu 08:00-18:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41458900000, + 46.33485800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "47176a57-7515-5c67-aebb-d8a52f591b49", + "operator": "192__FDEE19", + "description": "MOBIVE | Saint Cernin de larche | Rue de L'Etang", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43089500000, + 45.09252500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Chiché - Mairie", + "start_date": "2014-04-22", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB12228A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35812900000, + 46.79614500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "description": "Pays de Gex - ePremium - Cessy - Vidolet", + "owner:ref:FR:SIREN": "240100750", + "ref:EU:EVSE": "FRAGXP01071A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-01-14", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06978300000, + 46.31538300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "VILLERS COTTERETS", + "ref:EU:EVSE": "LFR2675EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2675EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09584600000, + 49.24930270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "start_date": "2023-01-25", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SEYSSINET-PARISET - Parking Lamartine (CITIZ);SEYSSINET-PARISET - Parking Lamartine", + "ref:EU:EVSE": "FRM38E38485002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69592000000, + 45.17965000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "GRASSE STADE DE LA PAOUTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-04-16", + "ref:EU:EVSE": "FRA16PWIIZ1212;FRA16PWIIZ1211", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*12*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95472516305, + 43.63239724296 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "50 kW;100 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLPMRRYOZ14XK8", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRFR1P3959053008526527320", + "ref": "978047" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52915800000, + 48.01858400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "charging_station:output": "50 kW;22 kW;160 kW", + "amenity": "charging_station", + "start_date": "2023-12-28", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "description": "Action - Maromme", + "ref:EU:EVSE": "FRPD1PACTMRM", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04249400000, + 49.47487700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LUID3LXHYD;419355", + "ref:EU:EVSE": "FREBNP7464315179619686095;FREBNPLUID3LXHYD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-07-23", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LUID3LXHYD;Six-Fours, Parking Bouillibaye" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83693100000, + 43.09168200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "A7 - Aire du Bornaron (direction Marseille)", + "opening_hours": "24/7", + "capacity": "10", + "start_date": "2024-06-05", + "ref:EU:EVSE": "FRELCPAABOR", + "operator": "ELECTRA", + "socket:type2_combo:output": "200 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88751300000, + 45.15470700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "Parking gare de Saint-Gratien - EFFIA", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-08-02", + "ref:EU:EVSE": "FRP01E95555001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28770700000, + 48.96361700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6676785", + "ref": "FRCPIE6676785", + "network": "BORNHDP BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BORNHDP BORNE 1", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27989900000, + 44.52419100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "LLUWS2OGW17DV1;1065255", + "charging_station:output": "120 kW;22 kW", + "description": "Easy Charge/LLUWS2OGW17DV1;Besançon, Avenue des Montbucons", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPLLUWS2OGW17DV1;FRECHP6841756804091523504", + "start_date": "2024-04-12", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99957000000, + 47.25164600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP143002", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Xertigny - Les Woodies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39751100000, + 48.04696800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLIUCVZTPQXWI2", + "operator": "Freshmile | FR*FR1", + "ref": "892203", + "ref:EU:EVSE": "FRFR1P8545563752829936064" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57709800000, + 50.49695500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX0601", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Lobineau 9", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "ref": "FR*V75*PPX06*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33613690000, + 48.85160020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5192955960936742522", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454035", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GW64CPZFD3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70197100000, + 48.41321600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUFFORTVOLVO286301", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Chartres", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:00, Tu 08:30-12:00, Tu 14:00-18:00, We 08:30-12:00, We 14:00-18:00, Th 08:30-12:00, Th 14:00-18:00, Fr 08:30-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-17:00", + "start_date": "2021-04-28;2022-08-02", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54711600000, + 48.45139100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Taden-ZA des Alleux", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22339001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04553000000, + 48.47470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E147512", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "network": "MODULO - MÉNÉTRÉOL SUR SAULDRE - Pl. de l'église", + "opening_hours": "24/7", + "description": "MODULO - MÉNÉTRÉOL SUR SAULDRE - Pl. de l'église", + "ref:EU:EVSE": "FRS18E147512", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30790800000, + 47.44792200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "duquesne@absolutconcept.com", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "490792348", + "description": "Absolut Bougival", + "start_date": "2022-02-20", + "operator": "ABSOLUT CONCEPT", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00,Th 08:00-17:00", + "ref": "a913eed7-13a3-448e-b1d3-59a63f4791fc", + "network": "Recharge Absolut" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13000000000, + 48.86000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P3335908437092649343", + "ref": "32065", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/PNTCUBAVK3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15750800000, + 48.53342800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBI - Parking Du Bondidou 1", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-10", + "ref:EU:EVSE": "FRS81E81004007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13963700000, + 43.92764100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*42*4*_*_;FR*SOD*S*IKEA*42*2*_*_;FR*SOD*S*IKEA*42*1*_*_;FR*SOD*S*IKEA*42*3*_*_", + "ref:EU:EVSE": "FRIKAPIKEA4241;FRIKAPIKEA4231;FRIKAPIKEA4221;FRIKAPIKEA4211", + "network": "IKEA", + "description": "IKEA PLAISIR - PARKING CLIENTS PMR", + "operator:email": "sav@izivia.com", + "start_date": "2022-07-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96692000000, + 48.82856600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-19;2024-04-12", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Pornic - Foch;PORNIC - Rue Du Maréchal Foch", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44131C;FRS44E44131003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10196000000, + 47.11594100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77311A;FRS77E77311001", + "network": "Ecocharge77", + "description": "MONTIGNY-LENCOUP - Rue Montmart;Montigny-Lencoup", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-16;2015-05-29", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH617FRP6TWWNWE4P3A6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06080800000, + 48.45254500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62525004", + "network": "pass pass électrique", + "description": "LONGUENESSE - Rue Albert Camus" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27508370000, + 50.73977430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - AVRILLE LES PONCEAUX - Rue basse", + "ref:EU:EVSE": "FRS37E221491;FRS37E227282", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - AVRILLE LES PONCEAUX - Rue basse", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E221491;FRS37E227282", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28657400000, + 47.39509500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - DIEUX SUR MEUSE - Rue des dames", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "description": "MODULO - DIEUX SUR MEUSE - Rue des dames", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS55E66466;FRS55E66467", + "ref:EU:EVSE": "FRS55E66466;FRS55E66467" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42736700000, + 49.07122100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-17", + "description": "SAV01 - MAIRIE", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON1422;FRGLYPLYON1421;FRGLYPLYON1411;FRGLYPLYON1412", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*14*1*_*_;FR*SOD*S*LYON*14*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87832900000, + 45.83219400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DON - Rue de la Deule", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59272*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRMELP5927201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92071900000, + 50.54793200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Jaguar Land Rover - GRIM - Nîmes", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPJLRGRIMNIMES309001", + "start_date": "2019-02-18;2022-02-02", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34126000000, + 43.81440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "network": "PLOUHARNEL BORNE 2", + "amenity": "charging_station", + "ref": "FRCPIE6579895;FRCPIE6579885;FRCPIE6579905", + "ref:EU:EVSE": "FRCPIE6579895;FRCPIE6579885;FRCPIE6579905", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "description": "PLOUHARNEL BORNE 2", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11223900000, + 47.59994400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/C91UWKY1QR", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P3220428590960542718", + "charging_station:output": "22 kW", + "ref": "896676" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13189100000, + 46.45964000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Gujan-Mestras | Pem Rue de L'Yser | Gauche", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7014f911-eafe-5d58-b38a-58b84b2575b7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06907700000, + 44.64072000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "59a476c3-7d2f-5213-9cce-4e5b1e1e0a2d", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Évry-Courcouronnes - Parc Élisabeth" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44655600000, + 48.63644400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO8001021;FRALLEGO0002062;FRALLEGO0002061;FRALLEGO8001022;FRALLEGO8008541;FRALLEGO8008542", + "description": "Allego FR, Groupe Bertrand, Cognac", + "amenity": "charging_station", + "network": "Allego FR, Groupe Bertrand, Cognac", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2023-07-31", + "ref": "FRALLEGO8008542;FRALLEGO8008541;FRALLEGO0002062;FRALLEGO0002061;FRALLEGO8001021;FRALLEGO8001022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30796000000, + 45.68846100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3280EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT CHAMAS Croix", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3280EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04000600000, + 43.54492200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PL4LNJ5Z811", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98892300000, + 43.51608300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E179726;FRS88E179724", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "start_date": "2023-11-21", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - EPINAL - Rue du 11ème génie", + "description": "MODULO - EPINAL - Rue du 11ème génie", + "ref:EU:EVSE": "FRS88E179726;FRS88E179724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45845999000, + 48.15601578000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MOUGINS - PARKING DES OISEAUX", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*232*1*_*_", + "start_date": "2023-06-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ23212;FRA16PWIIZ23211", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00342300000, + 43.59016900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/JUD6RZJTTH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8238777997472919619", + "network": "Freshmile France", + "opening_hours": "24/7", + "capacity": "30", + "ref": "529349", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139000000, + 46.89651300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Mon Brico - Saint-Fulgent", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMBRSFU", + "opening_hours": "24/7", + "start_date": "2024-02-06", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17316656378, + 46.85795841695 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/mairie;Bellerive-sur-Allier, Mairie", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref": "37618;mairie", + "ref:EU:EVSE": "FREBNPMAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40602000000, + 46.12150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/884CCB14-78EE-4F10-BA94-784772AB9345", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "924675", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "FREVZP5016569837767163304" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43354600000, + 43.29465100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E59599003;FRP07E595990031;FRP07E595990032", + "capacity": "20", + "description": "TOURCOING - Centre", + "start_date": "2024-05-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15869330000, + 50.72463680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "ref:EU:EVSE": "FREBNPMHBJLZGXHM", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "MHBJLZGXHM;85790", + "capacity": "2;3", + "description": "Réseau eborn/MHBJLZGXHM;Passy, Stade - Piscine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69832000000, + 45.91690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/FRD1O42B4X;Le Bourget-Du-Lac, Allée lac d'Aiguebellette", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "FRD1O42B4X;346712", + "ref:EU:EVSE": "FREBNP6482526170033341404;FREBNPFRD1O42B4X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86891600000, + 45.64500200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Campanile Troyes-Sud", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-09-28", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10265900000, + 48.24723200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "529364", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/KDHRHLIQ98", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8931601321727956311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71367500000, + 43.41919900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1304", + "amenity": "charging_station", + "start_date": "2021-06-17", + "ref": "FR*V75*PPX13*04", + "opening_hours": "24/7", + "description": "Paris | Boulevard Arago 52", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34460530000, + 48.83516390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "294362", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VKXMXT", + "ref:EU:EVSE": "FRFR1PVKXMXT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35359000000, + 45.47640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-28", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPSAVYBMW391001", + "description": "BMW - Dole", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46090200000, + 47.07699300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "description": "900079", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PEVREUXPIPOTS", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "start_date": "2016-12-02", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13631600000, + 49.03025700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS21P21663A", + "ref": "180443", + "network": "SICECO", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "description": "SICECO/FR*S21*P21663*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45942900000, + 47.54296100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551023", + "description": "SAINT-GERMAIN-EN-LAYE - GRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06239000000, + 48.89086000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-07-19", + "description": "Sicae_Oise_2;Sicae_Oise_1", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE117;FRROSE116", + "capacity": "10", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74500800000, + 49.54045700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRWATP6189224288338097531", + "description": "WAAT/FRWATLHQKRKAOE", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr", + "ref": "880230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24479400000, + 43.42347800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "IONITY GMBH", + "ref": "FRIONE438800", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2022-02-03", + "description": "IONITY Maison Dieu", + "ref:EU:EVSE": "FRIONE438800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508100000, + 46.42104800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E42377;FRS51E42376", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CORMONTREUIL - Rue Manoel Pinto", + "start_date": "2020-12-11", + "network": "MODULO - CORMONTREUIL - Rue Manoel Pinto", + "ref": "FRS51E42377;FRS51E42376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05245100000, + 49.22548900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS65E65059003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "BAGNERES DE BIGORRE - Parking La Mongie", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17988000000, + 42.91015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2022-09-13", + "socket:type2_combo:output": "175 kW", + "description": "REL. DES COQUELICOTS DESJOYAUX", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080359", + "ref": "FRHPCPNF080359", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680887;531680886;531680884;531680885", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29590000000, + 45.52450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34147002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MAGALAS - ZAE l'Audacieuse", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20745527744, + 43.46829530919 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/WCCSFT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25041", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PWCCSFT", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36597000000, + 47.73540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1080795", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5532487344572746446", + "description": "Freshmile France/LLVM3HVD0I4QOB", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53891700000, + 43.65552600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-12-29", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P92051*U;Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès", + "opening_hours": "24/7", + "ref": "599103", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92051U", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27018100000, + 48.87891900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "4", + "description": "Fiat - ByMyCar - Fontaine", + "ref:EU:EVSE": "FRSSDPBYMYCARFIAT386002", + "charging_station:output": "22.08 kW", + "start_date": "2020-07-01", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68143100000, + 45.19016000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRC2P005101", + "owner:ref:FR:SIREN": "441361516", + "start_date": "2023-02-10", + "capacity": "2", + "description": "ARC EN CIEL SUBLIMATION", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRC2P005101", + "network": "ARC EN CIEL SUBLIMATION", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56276770000, + 48.62035940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "description": "MAS DE L'EVAJADE", + "ref": "71dbeab0-2dff-4a52-bdc6-fc3a114fa3de", + "ref:EU:EVSE": "FRLUMEEVAJADE11", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06000000000, + 44.12000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "ref": "435af313-d7ac-57f4-91b6-baebe63b827b", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40", + "description": "MOBIVE | Hossegor | Avenue des Écoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42181600000, + 43.66286600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-05-30", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE28CADA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "CHATEAUDUN - Rue des fouleries", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32465400000, + 48.07148300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP3367451805842090001", + "ref": "674792", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "description": "BornEco/637b6948beb8687dae1588d7", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95477400000, + 47.16096700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "opening_hours": "Tu,We,Fr,Th,Sa,Mo 08:30-19:30,Su 08:15-12:30", + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P2130663205399765040", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446714", + "charging_station:output": "22 kW", + "description": "Leclerc/HGR47RDIT0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18289600000, + 45.74577400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PRXLHQXGESH", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Peyrolles-En-Provence, Parking de L'Abreuvoir", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58486800000, + 43.64553300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "505827", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P5087567305685814316", + "description": "SDEY/JVE4YVDDY8", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09662000000, + 48.17929300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ8311;FRA16PWIIZ8312", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*83*1*_*_", + "description": "LE CANNET PARKING DES MOULIERES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-28", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01637100000, + 43.57752600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "783669831", + "start_date": "2022-08-22", + "socket:type2_combo:output": "50 kW", + "description": "Loos, Parking de la Gare", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRFR1EAYRU", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22.0 kW", + "operator:email": "contact@electricite-loos.fr", + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "network": "RME Loos (FR-FR1);RME Loos (FR-FR1) " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02000000000, + 50.61000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "187.5 kW;50 kW;100 kW", + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYSCOL", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "start_date": "2024-10-03", + "operator": "Power Dot France", + "description": "Hyper U Colmar (68)", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33989598392, + 48.06335736841 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ORK5FI3ZMM;Peyruis, Rue des Oliviers", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNPORK5FI3ZMM;FREBNP8684699887916872135", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "charging_station:output": "50 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346862;ORK5FI3ZMM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95677000000, + 44.04310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1068237", + "description": "ENGIE MAMP - Bornes publiques/1DD7D7BB-AB17-4DCA-BA0B-565C25CB48D3", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP3023128146450733249", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41725500000, + 43.30422700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref": "FR*SOD*S*OTHR*706*1*_*_", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR70611;FROTHPOTHR70612", + "operator:email": "sav@izivia.com", + "description": "SUPER U - EVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41297670000, + 48.14618460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPZUQ6OZWIHO", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Chamrousse, Place des Trolles;Réseau eborn/ZUQ6OZWIHO", + "ref": "ZUQ6OZWIHO;30107" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87483000000, + 45.11147000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Chomerac, Le Triolet;Réseau eborn/WLQ1UX3WUN", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPWLQ1UX3WUN", + "socket:type2_combo:output": "24 kW", + "ref": "39101;WLQ1UX3WUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66295900000, + 44.70697700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "start_date": "2022-04-20", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR38361;FROTHPOTHR38351;FROTHPOTHR38341;FROTHPOTHR38331;FROTHPOTHR38321;FROTHPOTHR38311", + "opening_hours": "24/7", + "description": "SUPER U - ANDARD - LOIRE-AUTHION", + "ref": "FR*SOD*S*OTHR*383*6*_*_;FR*SOD*S*OTHR*383*5*_*_;FR*SOD*S*OTHR*383*4*_*_;FR*SOD*S*OTHR*383*1*_*_;FR*SOD*S*OTHR*383*2*_*_;FR*SOD*S*OTHR*383*3*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39486200000, + 47.45764900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1026846", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8437452152066238865", + "description": "Freshmile France/LLKAVK7AC1LW76" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84222300000, + 43.88706800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref:EU:EVSE": "FRTSLP30257", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Beauvais, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11372100000, + 49.40990700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "operator:email": "exploitation@freshmile.com", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "description": "Pandora", + "owner:ref:FR:SIREN": "818110629", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRFR1EHYAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62925940231, + 48.09703406679 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "description": "AMP | Boulevard Alphonse David", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*TCB*P01739", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP01739", + "start_date": "2023-11-22", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63070100000, + 43.21407100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9102951875022860916", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TAXW4NUFVF", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "578966", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29658200000, + 43.24992300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Pleumeur Bodou-Les chardons (parking centre commercial) ", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22198002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51712500000, + 48.77185100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-01-05", + "ref": "50650;50637", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZMAE22AC50637;FRZMAE22AC50650", + "owner:ref:FR:SIREN": "317804144", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "Mazda CHATENOIS - GARAGE WALTER", + "description": "Mazda - Chatenois - 22kW AC ", + "operator": "ZEBORNE", + "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–18:30,Sat 08:00-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39009700000, + 48.27955000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20;2022-06-30", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE375;FRROSE337", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "description": "Clos_Cacheleux;Camping_Val_Authie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71807900000, + 50.09394700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MANTES-LA-JOLIE - Boulevard des Cygnes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78361006", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71594009012, + 48.99538958002 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE440753;FRIOYE440708;FRIOYE440707;FRIOYE440704;FRIOYE440702;FRIOYE440701;FRIOYE440703;FRIOYE440705;FRIOYE440706;FRIOYE440751;FRIOYE440752", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Mas D'Agenais", + "opening_hours": "24/7", + "description": "Mas D'Agenais", + "capacity": "11", + "ref:EU:EVSE": "FRIOYE440753;FRIOYE440708;FRIOYE440707;FRIOYE440704;FRIOYE440702;FRIOYE440701;FRIOYE440703;FRIOYE440705;FRIOYE440706;FRIOYE440751;FRIOYE440752", + "start_date": "2024-05-15", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18765800000, + 44.40592800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-13;2024-05-15", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53E53121001;FRS53P53121A", + "charging_station:output": "22 kW", + "description": "JAVRON-LES-CHAPELLES - Place De La Mairie;OuestCharge - Diva Sp - Javron-Les-Chapelles - Mairie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33677700000, + 48.41735500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CANET EN ROUSSILLON - Place St Jacques", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-10-12", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66037002", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00889900000, + 42.70529700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Beaugency", + "network": "Beaugency", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "ref": "FRIENE009902;FRIENE009901", + "capacity": "4", + "ref:EU:EVSE": "FRIENE009902;FRIENE009901", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-09-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60967837000, + 47.78797371000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35068002B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "CHATEAUBOURG - 2 za de la goulgatiere ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41382700000, + 48.10474400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-RANES-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61344A", + "description": "RANES - Rue du Château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21255600000, + 48.63976500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "515141", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7618180018620227613", + "description": "Freshmile France/YFZ4RGRHQW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05223100000, + 42.53719200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "ref": "Fontenilles", + "opening_hours": "24/7", + "start_date": "2017-11-16", + "description": "Fontenilles, Saint-Lys", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRS31PFONTENILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18917000000, + 43.54080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92044007", + "network": "SIPPEREC", + "start_date": "2021-08-21", + "description": "LEVALLOIS PERRET - Rue Ernest Cognacq / Parking André Citroën" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27575100000, + 48.89704900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000398", + "amenity": "charging_station", + "capacity": "1", + "network": "Hôtel Les Charmilles", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Hôtel Les Charmilles", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000398", + "start_date": "2022-07-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85831300000, + 45.50352900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-13", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*169*1*_*_", + "description": "NICE - CASTELLANE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE16911;FRM06PNICE16912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25414100000, + 43.71491000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "d0a600aa-0257-5bf8-a9a9-e4b11d88a136", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Aiguillon | Rue de Vise", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34055600000, + 44.30110900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - RUE PABLO NERUDA - GOUSSAINVILLE", + "ref:EU:EVSE": "FRSIGPSIGE31011;FRSIGPSIGE31012", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-10-24", + "ref": "FR*SOD*S*SIGE*310*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47388000000, + 49.03197400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS195735;FRBMPS195736;FRBMPS195734;FRBMPS195733;FRBMPS195682", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "195735;195734;195733;195736;195682", + "description": "Bump - Centre commercial Ginko - Bordeaux Lac", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56843440000, + 44.87970930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2846EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2846EVCP01", + "description": "MEZIERES SUR SEINE Vallée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80151400000, + 48.96175900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "ac41f414-0900-54ba-ba0c-4efd27c1f586", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint-Julien-Aux-Bois | les Fermes de Xaintries" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13536200000, + 45.13135100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Saint-Michel-sur-Orge - Rue de Saint-Exupéry", + "ref": "c29ca81a-b467-5582-a159-8f2cf353db51" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30911700000, + 48.63614300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP30670AGVGAULLE", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "PLACE DE GAULLE - AIGUES-VIVES", + "ref": "FR*55C*P30670*AGV*GAULLE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18299400000, + 43.73904600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "SARRIANS", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2704EVCP01", + "ref": "LFR2704EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98222600000, + 44.08046800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref": "972089", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "ref:EU:EVSE": "FRPVDP5290783192697954671", + "capacity": "3", + "network": "Proviridis", + "opening_hours": "24/7", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD", + "description": "Proviridis/65684ac0b94f50df794cb120" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85741300000, + 46.81489500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "description": "Réseau eborn/XBYO74ENAK;Le Coteau, Parking de la glacière", + "ref:EU:EVSE": "FREBNPXBYO74ENAK;FREBNP3306354327173837779", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "XBYO74ENAK;591395", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09246000000, + 46.02658000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "capacity": "3", + "description": "e-Totem - BRICOPRO MOUCHOTTE", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRETIP52060A", + "ref": "FRETIP52060A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75700507497, + 47.95342672659 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Parking gare Rennes nord - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-11-03", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E35238001", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67034000000, + 48.10428000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT383601", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Sassenage", + "start_date": "2023-10-03", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66068300000, + 45.21819300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPAVERMES", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref": "64817;avermes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/avermes;Avermes, La Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30928000000, + 46.58680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "description": "VIPE GESTION - TOULOUSE", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*50*2*_*_;FR*SOD*S*OTHR*50*1*_*_", + "start_date": "2020-10-09", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR5011;FROTHPOTHR5021", + "operator:email": "sav@izivia.com", + "network": "VIPE GESTION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38814600000, + 43.56437100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "782571", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1706455208957047917", + "description": "Freshmile France/ANFTOPYB1P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93718500000, + 47.23002000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2024-02-22", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-032", + "ref": "setp0100000114", + "ref:EU:EVSE": "FRUBIE10050507;FRUBIE10076359" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18018500000, + 49.51286800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3234839654693383335", + "opening_hours": "24/7", + "description": "Freshmile France/GUKJEM", + "socket:type2_combo:output": "30 kW;3 kW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "30 kW;3 kW", + "ref": "74966" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826000000, + 44.84460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "90 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "TOULOUSE - Bd Lazare Carnot", + "socket:type2_combo:output": "90 kW", + "start_date": "2022-09-20", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555040", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45036660000, + 43.60397350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/R5WTOSEIZZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7647229881093878083", + "ref": "510578" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87623600000, + 47.04568000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1026792", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "description": "MobiSDEC/LLSU7RL6M1U6J6", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS14P1260045552967853280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07464500000, + 49.30447000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12066001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "description": "CLAIRVAUX D'AVEYRON - Rd 57 - Cimetière - Atelier Municipaux", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41248900000, + 44.42954000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLQMISHJOQ", + "ref:EU:EVSE": "FRWA3P1560282766203889074", + "network": "WAAT", + "amenity": "charging_station", + "ref": "805311", + "opening_hours": "24/7", + "capacity": "9", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36373700000, + 43.28011800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-15;2024-04-09", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "LA MEMBROLLE-SUR-LONGUENEE - Parking du Cimetière;OuestCharge - Diva Sp - La Membrolle-sur-Longuenee - Cimetiere", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49200A;FRS49E49200001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67160300000, + 47.56090900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "description": "SIED70/YVHJEWG2DD", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70P1853659132096252560", + "socket:type2_combo:output": "22 kW;150 kW", + "ref": "706076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07360900000, + 47.42364700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20669630000, + 49.97203720000 + ], + [ + 1.20679920000, + 49.97213290000 + ], + [ + 1.20696560000, + 49.97224060000 + ], + [ + 1.20746240000, + 49.97256210000 + ], + [ + 1.20755850000, + 49.97258040000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-28", + "description": "NEUF-BERQUIN - Rue Charles Capelle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E59423001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67150600000, + 50.65962200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E214035;FRS37E214036", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - SAINT CYR SUR LOIRE - Pkg. Guy Raynaud", + "opening_hours": "24/7", + "ref": "FRS37E214035;FRS37E214036", + "network": "MODULO - SAINT CYR SUR LOIRE - Pkg. Guy Raynaud", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66953700000, + 47.40989400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2022-12-26", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG63 - ePremium - Montpeyroux - Parking Entree", + "ref:EU:EVSE": "FRS63P63241B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20033020000, + 45.62457330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COUSOLRE - D936", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH02E59157001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14950700000, + 50.24695200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "description": "MIOS - ECHANGEUR MASQUET", + "network": "MOBIVE - SDEEG 33", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB33*154*1*_*_", + "ref:EU:EVSE": "FRS33PMB3315413;FRS33PMB3315411;FRS33PMB3315412", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "operator:email": "sav@izivia.com", + "start_date": "2020-06-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96018500000, + 44.62788500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSIPE94018002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2022-02-26", + "description": "CHARENTON LE PONT - Rue De Paris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40520000000, + 48.82680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - ARSON", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "start_date": "2024-09-23", + "amenity": "charging_station", + "network": "NICE RP", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRM06PNICE28511;FRM06PNICE28512", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*285*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28693116002, + 43.70093717875 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "3cf34cbd-de32-5682-899d-bbf310fceed5", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Sorges-Et-Ligueux-En-Perigord | Place Jean Daniel", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87285600000, + 45.30575900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-11", + "ref": "FR*SOD*S*SIGE*413*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE41311;FRSIGPSIGE41312", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 30 RUE DU MARECHAL JOFFRE - COLOMBES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25504000000, + 48.92191470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76540017", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "ROUEN - Hangar 106 - Borne n°1", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07526200000, + 49.44004500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR0246EVCP02;LFR0246EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR0246EVCP02;LFR0246EVCP01", + "charging_station:output": "22 kW", + "description": "BESANCON Dôle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98383900000, + 47.22841400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint Pierre d'Irube | Parking de la Poste", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bc23a2dd-8786-5bc7-8e65-7920633632e7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45896300000, + 43.47879000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "81fc4afd-c73c-59db-aa7b-731c586bf30c", + "description": "SARRIANS - Boulevard Frédéric Mistral" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96778600000, + 44.08282200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAILLY LEZ CAMBRAI - Rue du Stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FR594E59521001", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17793370000, + 50.18864750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "LFR3045EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "ST Philbert de Grand Lieu", + "ref:EU:EVSE": "LFR3045EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63839600000, + 47.04713400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-12-19;2022-12-26;2021-04-08", + "description": "Intermarché - Ramonville-Saint-Agne", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "100 kW;187.5 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMRSA", + "socket:type2_combo:output": "100 kW;50 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47781900000, + 43.53557800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FUHOEZSQEV;23631", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPFUHOEZSQEV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Aubenas, Place de l Airette;Réseau eborn/FUHOEZSQEV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39254200000, + 44.62086000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;7.4 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;7.4 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP87088A", + "description": "e-Totem - Intermarché Magnac-Bourg", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP87088A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43919725846, + 45.62001471919 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Cora - Saint Dizier", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "11", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PCORSDZ", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96270376483, + 48.64904977060 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT318401", + "start_date": "2024-07-25", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Carrefour Market - Aussonne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33605600000, + 43.68982500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-03-10", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "description": "SEMOB Gambetta", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42186AB", + "ref": "FRESEPS42186AB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62000600000, + 45.52915200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "amenity": "charging_station", + "ref": "FR*SOD*S*IZIG*1*40*_*_;FR*SOD*S*IZIG*1*39*_*_;FR*SOD*S*IZIG*1*29*_*_;FR*SOD*S*IZIG*1*28*_*_;FR*SOD*S*IZIG*1*26*_*_;FR*SOD*S*IZIG*1*25*_*_;FR*SOD*S*IZIG*1*27*_*_;FR*SOD*S*IZIG*1*30*_*_", + "capacity": "1", + "start_date": "2019-09-16;2019-09-17", + "ref:EU:EVSE": "FROTHPIZIG1401;FROTHPIZIG1261;FROTHPIZIG1251;FROTHPIZIG1271;FROTHPIZIG1281;FROTHPIZIG1291;FROTHPIZIG1301;FROTHPIZIG1391", + "description": "BORDEAUX RAVEZIES - EXTERIEUR", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57491300000, + 44.86412400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-07", + "network": "PARKING B2 BORNE 2", + "amenity": "charging_station", + "description": "PARKING B2 BORNE 2", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6831745;FRCPIE6831975", + "ref:EU:EVSE": "FRCPIE6831745;FRCPIE6831975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06835600000, + 49.45855800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLZJKDRCXVX43E", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7124558077589776181", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1173900", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85793800000, + 43.95791300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-05-14", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL EPERNAY", + "ref:EU:EVSE": "FRVIAP122037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95528300000, + 49.05289000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLQC3CRGW1F8JW", + "ref:EU:EVSE": "FRFR1P5714702837992342948", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1002912", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79947900000, + 43.82351500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Aire du Granier, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP11606", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97483800000, + 45.52543400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLUJKBUFMRKH6O", + "ref:EU:EVSE": "FRFR1P8617536735637735631", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "240 kW", + "amenity": "charging_station", + "ref": "1073502", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "240 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33283800000, + 43.81426500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457464", + "description": "MobiSDEC/GVMAEKKID2", + "ref:EU:EVSE": "FRS14P2589886346044948737" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972000000, + 49.25834300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Boulbon, Chemin De La Lone", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRS13PUWBDRYNW5W", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69093000000, + 43.86342700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P6180319739373512344", + "ref": "1128138", + "description": "WAAT/FRWATLKDX0BWGD", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07032400000, + 48.89450600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200083640", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "AVRANCHES - Gare", + "network": "e-charge50", + "start_date": "2017-05-11", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50025001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36913670000, + 48.69086360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8113900122;FRS81E8113900121;FRS81E8113900112;FRS81E8113900111", + "start_date": "2017-03-10", + "description": "LAUTREC - Allée Des Promenades" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13629324306, + 43.70482107758 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "description": "REL.BEAUNE TAILLY", + "ref:EU:EVSE": "FRHPCPNF059042", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680872;531680879;531680877;531680878;531680876;531680875;531680873;531680874", + "ref": "FRHPCPNF059042", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-08-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83670000000, + 46.96470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA BASTIDE PUY LAURENT - Place De L'Eglise", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48021001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90559300000, + 44.59141100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-07-12", + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "description": "Le palais - Port-Collen", + "ref:EU:EVSE": "FRS56PBD9SBFG89K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18619440000, + 47.36075000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIN-LE-NOBLE - Centre aquatique Sourceane", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59569001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10115000000, + 50.34944200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-10-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SAINT GOAZEC - Rue De La Mairie", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E29249002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.78317500000, + 48.16293400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "25066", + "description": "Mobilité électrique 56/GFVWQZ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PGFVWQZ", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83751000000, + 47.88890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346051821;FRLMSE12346051812;FRLMSE12346051811;FRLMSE12346051822", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-12-20", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref": "B053", + "description": "LHOMMAIZE-1-1;LHOMMAIZE-1-2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59780000000, + 46.43571900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2023-01-20", + "description": "Metropolis - Proximité - Bagnolet - Sadi Carnot;Métropolis/FR*MGP*P93006*B", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP93006B", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "599112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42693000000, + 48.87773900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 38 RUE DU MONT VALERIEN - SAINT-CLOUD", + "ref:EU:EVSE": "FRSIGPSIGE9212;FRSIGPSIGE9211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*92*1*_*_", + "start_date": "2021-01-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21512600000, + 48.85715900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATLFR00328", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref": "1000005", + "ref:EU:EVSE": "FRATLP8185739297814988460" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12981000000, + 44.43733000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000081827", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Aix en Provence", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39320000000, + 43.48401000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Pau | Avenue Nitot", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "4f08490c-e1f7-5948-9fb2-0ce37e63727a", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35420900000, + 43.29514300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA ROCHE-SUR-YON - Rue Anatole France", + "ref:EU:EVSE": "FRS85E85191003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42820000000, + 46.67102100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "ref:EU:EVSE": "FRALLPEVCARSMTSTA", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-02-25", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies", + "description": "MONT SAINT AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09435100000, + 49.47012400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "IZIVIA | SEPTEMES-LES-VALLONS - BOULEVARD ANTOINE VABRE", + "ref": "FR*SOD*S*MAMP*30*1*_*_", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRIZMPMAMP3012;FRIZMPMAMP3011", + "network": "IZIVIA", + "start_date": "2022-08-04", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36923800000, + 43.40122600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PMATCMO", + "amenity": "charging_station", + "description": "Match - Commercy (Morelle)", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2024-01-07;2023-12-06", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58986570746, + 48.75929763895 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Neoules, 93 Chemin de la Fontaine du Midi;Réseau eborn/YJEH1BQMHQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNYJEH1BQMHQ;FREBNPYJEH1BQMHQ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "75329;YJEH1BQMHQ", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01354500000, + 43.30897100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "description": "Norauto - Bornes publiques/5A5A9137-B2E4-4A78-B94A-A8D8DB30F534", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FREVZP8928837537473058181", + "ref": "746976", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66892900000, + 45.23898300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Basic Fit - Paray-le-Monial", + "ref:EU:EVSE": "FRPD1PHOLPAR", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2024-01-24;2024-03-15", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10842383681, + 46.46771271111 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "YSINDSLO2T;298930", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPYSINDSLO2T", + "description": "Réseau eborn/YSINDSLO2T;Les-Deux-Alpes, Place des Deux Alpes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483000000, + 45.01030600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - Ibis Saint-Paul-Trois-Châteaux", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref": "FRETIP26324A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref:EU:EVSE": "FRETIP26324A", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74167366535, + 44.36184583446 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "BAOBAB", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR19121;FROTHPOTHR19111", + "start_date": "2021-06-24", + "description": "BAOBAB - BALARUC-LE-VIEUX", + "ref": "FR*SOD*S*OTHR*191*1*_*_;FR*SOD*S*OTHR*191*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69163800000, + 43.46523700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA VILLE-DU-BOIS - PLACE BEAULIEU", + "start_date": "2019-11-27", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*20*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPSPCAPS2012;FRCPSPCAPS2011", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26999600000, + 48.65788700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4645962272843505305", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/HZTA8PJY7H", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "368845", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60565500000, + 44.83660800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-08-30", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - Marseille 08 - Boulevard Sablier", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP142106", + "charging_station:output": "300 kW;62.5 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38195400000, + 43.25367100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1080111", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLUQOWK3H1D4U4", + "ref:EU:EVSE": "FRFR1P6602919127689888390", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46653100000, + 49.23222400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SUPER U VIVONNE", + "network": "SUPER U VIVONNE", + "operator": "E-TOTEM", + "start_date": "2021-07-07", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRSUAP86293A", + "ref": "FRSUAP86293A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26232060000, + 46.43044550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5027116017907254074", + "charging_station:output": "22 kW", + "description": "Freshmile France/KZRU0KKOAL", + "operator": "Freshmile | FR*FR1", + "ref": "505614", + "opening_hours": "Mo,Tu,We,Th,Fr 07:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83054000000, + 46.79740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "39", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBYMYCARMERCEDES062701", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "start_date": "2022-10-03;2020-07-02", + "description": "Mercedes - ByMyCar - Villeneuve Loubet", + "charging_station:output": "50 kW;24 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13198300000, + 43.63812300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E134890", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS28E134890", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BROU - Pl. de la Matrassiére", + "description": "MODULO - BROU - Pl. de la Matrassiére" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16761600000, + 48.21140100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-30", + "network": "Ax'stone", + "operator:email": "Contact@inouid.com", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Station Ax'Stone", + "ref": "69*axstn*lim*1", + "owner:ref:FR:SIREN": "828349175", + "operator": "INOUID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80713640000, + 45.79998250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/XYVVZLUAV4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P4861925101737212147", + "ref": "39659" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51705000000, + 48.29777500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWATP4498784648211384709", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATLDJM0WFEN", + "operator:email": "exploitation@waat.fr", + "ref": "481980" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02069400000, + 43.85490600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST VAAST LA HOUGUE - Parking Port de Plaisance", + "start_date": "2023-01-10", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50562002", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26351260000, + 49.58968790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2023-06-13", + "ref:EU:EVSE": "FRS81E8128800221;FRS81E8128800212;FRS81E8128800211;FRS81E8128800222", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "SOREZE - Parking Stade Route de Dourgne", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07191330000, + 43.45396070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;350 kW;43 kW;200 kW", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE482872;FRIOYE482871;FRIOYE482853;FRIOYE482852;FRIOYE482803;FRIOYE482802;FRIOYE482801;FRIOYE482804;FRIOYE482851", + "start_date": "2024-04-24", + "network": "Auray", + "capacity": "9", + "ref": "FRIOYE482872;FRIOYE482871;FRIOYE482853;FRIOYE482852;FRIOYE482803;FRIOYE482802;FRIOYE482801;FRIOYE482804;FRIOYE482851", + "description": "Auray", + "socket:type2_combo:output": "200 kW;50 kW;350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00337000000, + 47.66458200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "CANTENAY-EPINARD - Route d'Angers;OuestCharge - Diva Sp - Cantenay-Epinard - Angers", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49055A;FRS49E49055001", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-13;2024-05-26;2024-04-10", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56899200000, + 47.53436200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PSTMAX8MAI", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "description": "Mouv'Oise/Stmax8mai", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "48976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44539000000, + 49.22160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62083002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BARLIN - Rue François Arago Pk", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61730200000, + 50.45495300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30156002", + "start_date": "2022-02-21", + "network": "Reveo", + "description": "MARGUERITTES - Avenue Clément Ader" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44282000000, + 43.86714500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/LLXUD8K7B1IGK7", + "ref:EU:EVSE": "FRS56P7228289945048937994", + "ref": "1133409", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89866200000, + 47.58819700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NAINTRE INTERMARCHE-1-2;NAINTRE INTERMARCHE-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-04-22", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B112", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346396491;FRLMSE12346396501", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48491600000, + 46.75725200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Métropolis/FR*MGP*P94075*A;Metropolis - Citadine - Villecresnes - Réveillon", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP94075A", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref": "484874", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53399000000, + 48.72239000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE11911;FRSIGPSIGE11912", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-10-22", + "ref": "FR*SOD*S*SIGE*119*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - PLACE DE LA RESISTANCE - LES PAVILLONS-SOUS-BOIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50805100000, + 48.90283500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAULETTE - CITY PARC", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-12-02", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E78381001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62468220000, + 48.79197190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89460194", + "description": "ENGIE Vianeo - Golbey - ZA Jeanne d'Arc", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43427500000, + 48.20464200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Chalais | Avenue de la Gare", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2978db26-10d3-5c5b-93e8-44d8b3c5c883", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04345200000, + 45.27109100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE69BACA", + "operator:email": "support@stations-e.com", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Affaire citroen MORAT_ BRINDAS", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69710500000, + 45.71823200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "description": "VILLEURBANNE", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSVLBAR", + "start_date": "2022-12-26", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88356700000, + 45.76886200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "MUILLE VILLETTE - Paris", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3965EVCP03;LFR3965EVCP01;LFR3965EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3965EVCP03;LFR3965EVCP01;LFR3965EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06747000000, + 49.73058600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-06-22", + "description": "QUINT-FONSEGRIVES - Route De Castres", + "network": "Reveo", + "ref:EU:EVSE": "FRM31E31445001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53080100000, + 43.58510500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "79234;NX7Q0NZIA4", + "description": "Roquebrune-sur-Argens, Boulevard Jean Jaurès;Réseau eborn/NX7Q0NZIA4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNX7Q0NZIA4;FREBNNX7Q0NZIA4", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63640100000, + 43.44428700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Tu,Mo,We,Fr,Th 08:30-19:00,Sa 09:00-18:00", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "541892", + "charging_station:output": "7.4 kW;22 kW", + "description": "Freshmile France/XQUMZ7QBK6", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9012417489105436850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105700000, + 48.75868900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2023-01-04;2023-01-24", + "ref:EU:EVSE": "FRP07E751080025;FRP07E751080024;FRP07E751080023;FRP07E751080021;FRP07E751080022", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "44", + "description": "PARIS - Rond Point Champs Elysées" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30566000000, + 48.87083000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "AJCWTT;85760", + "socket:type2_combo:output": "50 kW;44 kW", + "description": "Annecy Cran-Gevrier, Rue Du Rond-Point;Réseau eborn/AJCWTT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPAJCWTT", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11126000000, + 45.89690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/66756e7dd1bb20001c36c605", + "network": "Road", + "ref": "1117182", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP5123876932799948621", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "opening_hours": "Fr,Su,Mo,Th,We,Sa,Tu 08:00-18:00", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42765000000, + 50.10962500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Lorraine TGV - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E57422001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16928100000, + 48.94875700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6609505", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CGED BEZIERS", + "ref:EU:EVSE": "FRCPIE6609505", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "network": "CGED BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22276900000, + 43.36878900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "492201;IY1C479BL4", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNPIY1C479BL4;FREBNP2569910882929940712", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "description": "Crest, Avenue George Clémenceau;Réseau eborn/IY1C479BL4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01717800000, + 44.73059200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1181763", + "description": "WAAT/s570519", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P7977711361633991748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89964700000, + 49.18746200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7984027313516957270", + "network": "Freshmile France", + "description": "Freshmile France/QHQG9BEFPV", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "368911", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54893800000, + 44.84719400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "CAR AVENUE TERVILLE", + "amenity": "charging_station", + "start_date": "2021-11-26", + "network": "BMW", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "owner:ref:FR:SIREN": "851381459", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "FRTCBP00601", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRTCBP00601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14592800000, + 49.34990100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "565073", + "capacity": "8", + "ref:EU:EVSE": "FRFR1P6911291814935525499", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QOS8EYYCTL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597000000, + 49.76098500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Nissan -Avignon", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN840001", + "start_date": "2023-04-18", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84184400000, + 43.92607300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2904600", + "description": "Douarnenez-Quai François Bonizec", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34182500000, + 48.09568000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P3375910417502803003", + "description": "SDEA 10/SMUUIBGAX6", + "ref": "370247" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05199200000, + 48.28353400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "ref": "7b22413e-0d38-4224-b0f7-1c809ea5017f", + "capacity": "1", + "description": "Logis Hôtel de la Poste - 22 kW AC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "915620298", + "network": "Logis Hôtel de la Poste", + "operator:email": "sav@zephyre.fr", + "ref:EU:EVSE": "FRZP1PEAC118048;FRZP1PEAC118022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11663616000, + 48.17206479000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "481260", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Régie Services Energie/FR*RSE*P01398*A", + "ref:EU:EVSE": "FRRSEP01398A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84855600000, + 46.00138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "FDE 80/bernaduprez", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref": "64718", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PBERNADUPREZ", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16290000000, + 50.13250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST19211;FRIZFPFAST19212;FRIZFPFAST19213", + "description": "IZIVIA FAST - MC DONALDS - ECHIROLLES COMBOIRE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*192*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69476180000, + 45.14931830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44054A;FRS44E44054001;FRS44E0440035", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Erbray - Mouette;ERBRAY - Rue De La Mouette", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-12;2024-04-29;2024-04-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31722300000, + 47.65700800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-15;2016-08-31", + "description": "Armentières-en-Brie;ARMENTIERES-EN-BRIE - Rue Des Vignettes", + "ref": "01F5ZAKH60BBZ8ARN3XJK3K1JT", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77008A;FRS77E77008001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02165800000, + 48.97871000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "description": "SDM01 - CENTRE-BOURG", + "ref:EU:EVSE": "FRGLYPLYON9711;FRGLYPLYON9712", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*97*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79811100000, + 45.80999200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - PREUILLY SUR CLAISE - Hôtel de ville", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E215822;FRS37E215834", + "ref": "FRS37E215822;FRS37E215834", + "description": "MODULO - PREUILLY SUR CLAISE - Hôtel de ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92911900000, + 46.85455900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/RAGKJL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PRAGKJL", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "242239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27127000000, + 48.03680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "network": "VILLE DE DAMPIERRE", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "description": "VILLE DE DAMPIERRE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P45122A", + "ref": "FRG10P45122A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52147334569, + 47.76058808735 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH15312;FROTHPAUCH15311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-10-20", + "network": "AUCHAN", + "ref": "FR*SOD*S*AUCH*153*1*_*_", + "description": "AUCHAN - CHATEAUROUX", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73488256107, + 46.79111970851 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 7 ALLEE DES SPORTS - PUTEAUX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*238*1*_*_", + "start_date": "2022-04-06", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE23812;FRSIGPSIGE23811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24350100000, + 48.87707800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "21801", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "description": "Move In Pure/NTMZTB", + "operator": "Freshmile | FR*CN1", + "ref:EU:EVSE": "FRCN1PNTMZTB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77022000000, + 45.59030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P2023919807210939853", + "description": "Leclerc/CYGBUJHGBQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446684" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51739200000, + 47.68397900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "b05243e3-fe78-512e-b5cd-f8ba3a8f6794", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Royan | Parking Avenue de Paris", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05076900000, + 45.62793000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Gymnase Citadelle - DRAVEIL", + "ref:EU:EVSE": "FRSE1PSE91DBGA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42449700000, + 48.68477800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRABAPOPUJ4UCI7I", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Paradou, Parking Des coles", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78255100000, + 43.71931700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "LFR3149EVCP05;LFR3149EVCP04;LFR3149EVCP03;LFR3149EVCP02;LFR3149EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "MARSEILLE Valentine", + "ref": "LFR3149EVCP05;LFR3149EVCP04;LFR3149EVCP03;LFR3149EVCP02;LFR3149EVCP01", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47578800000, + 43.30142300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRM38E38185019", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRENOBLE - Place Dr Léon Martin - Vaucanson (CITIZ)", + "start_date": "2021-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72700000000, + 45.18818000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT LEGER EN YVELINES - Place du Gros Billot", + "ref:EU:EVSE": "FRA05E78562002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76671210000, + 48.72225100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8967745689844775437", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1034097", + "description": "Freshmile France/LLT2XIHCX13XTH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38110500000, + 49.04869800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis - Evry", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PACCIBE", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "start_date": "2023-12-13;2023-12-15", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42039215820, + 48.62065790557 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Moirans, Rue Mozart;Réseau eborn/OYPH3MTL0S", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPOYPH3MTL0S", + "ref": "75158;OYPH3MTL0S", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56415700000, + 45.32821100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-12-01", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPMLNKF", + "description": "Moulins - KFC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34208600000, + 46.54431600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2023-09-25", + "ref:EU:EVSE": "FRP01E92073006", + "description": "Parking Suresnes Caron - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20981750000, + 48.86334840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6659145;FRCPIE6659155", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6659145;FRCPIE6659155", + "network": "IT TRATTORIA BORNE 2", + "start_date": "2022-12-02", + "description": "IT TRATTORIA BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79050900000, + 47.66076600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref": "QM8YJBAKS4;453948", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Vienne, Place des Capucins;Easy Charge/QM8YJBAKS4", + "ref:EU:EVSE": "FRECHPQM8YJBAKS4;FRECHP5437701852580534478", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87667000000, + 45.52714000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Manin 1", + "ref": "FR*V75*PPX19*16", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "ref:EU:EVSE": "FRV75PPX1916", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37901760000, + 48.87659680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/B4S2UL0ROL", + "ref:EU:EVSE": "FRFR1P7072516863011963745", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "585491", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45076200000, + 42.54955600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX03*02", + "ref:EU:EVSE": "FRV75PPX0302", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Place de la République 17", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36300740000, + 48.86745040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3798263802428665916", + "network": "Freshmile France", + "description": "Freshmile France/RJ9YJ5MPTD", + "opening_hours": "24/7", + "ref": "346463", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07607000000, + 45.99140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2020-12-18", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Hôtel AKENA - Troyes", + "ref:EU:EVSE": "FRSSDPHOTELAKENA106001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02351800000, + 48.30790400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Quintin-Place du Martray", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS22E22262001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91299000000, + 48.40373200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11280001", + "description": "PEPIEUX - Place Jean Gastou", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67972222222, + 43.29750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", + "amenity": "charging_station", + "capacity": "1", + "description": "Toyota - Nice - 24kW DC ;Toyota - Nice - 22KW AC ", + "ref:EU:EVSE": "FRZTLE24DC55361;FRZTLE22AC54738", + "ref": "55361;54738", + "network": "TOYOTA NICE - NOVELLIPSE", + "owner:ref:FR:SIREN": "827876251", + "operator:email": "advenir@zeborne.com", + "socket:type2_combo:output": "22 kW", + "charging_station:output": "22 kW", + "start_date": "2021-02-24;2021-02-17", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20154700000, + 43.68859020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/LOQVFXXZ4U", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "32041", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2168652290569471786" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21635600000, + 48.17057400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64754", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PHALLENCOURTREP", + "network": "FDE 80", + "description": "FDE 80/hallencourtrep" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87841000000, + 49.99170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-04-11", + "ref": "FR*SOD*S*FAST*68*1*_*_;FR*SOD*S*FAST*68*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST6823;FRIZFPFAST6822;FRIZFPFAST6821;FRIZFPFAST6813;FRIZFPFAST6812;FRIZFPFAST6811", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - LONS-LE-SAUNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54852600000, + 46.66879300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-20;0001-01-01", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44103001;FRS44P44103A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Montoir-De-Bretagne - Bernuais;MONTOIR-DE-BRETAGNE - Rue De La Bernuais", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15049000000, + 47.32623100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH61ARJ2FXM1YTQCNDGM", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-08-10;2023-05-22", + "description": "MAISONCELLES-EN-BRIE - Rue De Meaux;Mainsoncelles-en-Brie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77P77270A;FRS77E77270001", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99144100000, + 48.86255600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref": "1090992", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "ref:EU:EVSE": "FRGYMP7905136695359367155", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "description": "GreenYellow Shift Mobility/89", + "operator": "GreenYellow | FR*GYM", + "charging_station:output": "180 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36488100000, + 43.41833800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - REIGNAC SUR INDRE - Rue du Gué Romain", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E221276;FRS37E221273", + "ref": "FRS37E221276;FRS37E221273", + "start_date": "2019-03-18", + "description": "MODULO - REIGNAC SUR INDRE - Rue du Gué Romain", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91468289000, + 47.22805033000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS55E66213;FRS55E66214", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - ANCERVILLE- Rue de St Dizier", + "amenity": "charging_station", + "network": "MODULO - ANCERVILLE- Rue de St Dizier", + "charging_station:output": "0 kW", + "ref": "FRS55E66213;FRS55E66214", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01725800000, + 48.63780600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY601 - GARIBALDI - BUGEAUD", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*117*1*_*_;FR*SOD*S*LYON*117*2*_*_;FR*SOD*S*LYON*117*3*_*_;FR*SOD*S*LYON*117*4*_*_", + "start_date": "2021-09-01", + "ref:EU:EVSE": "FRGLYPLYON11721;FRGLYPLYON11711;FRGLYPLYON11731;FRGLYPLYON11741", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85112000000, + 45.76639600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f9a8d1cc-0419-40c1-866b-3d4ed1ca0046", + "operator": "Mobilize Power Solutions", + "description": "CICA Mours St Eusèbe Public", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "ref:EU:EVSE": "FRMBZEXBPBT", + "capacity": "1", + "start_date": "2023-08-29", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "network": "CICA Mours St Eusèbe", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 13:45-18:00;Mo-Fr 09:00-12:00;13:45-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05691700000, + 45.06150800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPAVENTIMLAZARO3595201", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2018-10-19", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Aventim - Marquette-Lez-Lille - Lazaro3", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08315200000, + 50.68010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6561965", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SONEPAR CONNECT CARCASSONNE", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT CARCASSONNE", + "ref:EU:EVSE": "FRCPIE6561965", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31519200000, + 43.20902900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P1637014119511922103", + "opening_hours": "24/7", + "ref": "521429", + "charging_station:output": "22 kW", + "description": "Leclerc/S9CNIAGWFB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41551400000, + 51.04589900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "5b825a22-b8e8-5b7c-a777-a6f8e1a57ae2", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33", + "description": "MOBIVE | Le Barp | Place du Centre Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77052100000, + 44.60796400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Egly - Grand Rue", + "ref": "698c9e3c-23a2-54cc-ac20-daef6cbaecc6", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22237500000, + 48.58015000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego NISSAN Saint-Herblain", + "ref:EU:EVSE": "FRALLEGO0000051", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRALLEGO0000051", + "charging_station:output": "0 kW", + "description": "Allego NISSAN Saint-Herblain", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "start_date": "2021-10-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61695749000, + 47.24944386000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST LAURENT DE LA SALANQUE RD 90", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR2919EVCP02;LFR2919EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2919EVCP02;LFR2919EVCP01", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01483400000, + 42.77472500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-11-29;2021-11-02", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-ETIENNE-DE-TINEE - PARKING PISCINE", + "ref": "FR*SOD*S*NICE*74*2*_*_;FR*SOD*S*NICE*74*1*_*_", + "ref:EU:EVSE": "FRM06PNICE7411;FRM06PNICE7412;FRM06PNICE7421;FRM06PNICE7422", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93183698048, + 44.22668113362 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-01", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ20811;FRA16PWIIZ20812", + "description": "PUGET SUR ARGENS - PARKING DES HARKIS", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*208*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68648900000, + 43.45677500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UZ2ITISA9Y", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1179990", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7901463694908031140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92995100000, + 45.89566800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "Mr. Bricolage - Auch", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBRACH", + "charging_station:output": "100 kW;22 kW;150 kW", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59442460241, + 43.66723840615 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/KODGS1EZY2", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPKODGS1EZY2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "96071" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16770000000, + 45.49804800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1075350", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP8594478255811870407", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "description": "EVzen/2F6D3DF3-BECB-4B4B-B563-E26BC6689D51" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62062200000, + 47.46932500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "35", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E543950022;FRP07E543950021;FRP07E54395002;FRP07E543950023", + "description": "NANCY - Joffre Saint Thiebault", + "start_date": "2021-04-19;2021-04-14;2020-06-17;2023-09-22;2020-06-26;2023-06-05;2020-06-16;2022-11-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17984800000, + 48.68772900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Monnetier-Mornex, Chemin de la Chapelle;Réseau eborn/YPWSTXXUWB", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "YPWSTXXUWB;48442", + "ref:EU:EVSE": "FREBNPYPWSTXXUWB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22815000000, + 46.16281000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Sa,Tu,Su,Mo,Fr,Th,We 08:00-18:00", + "network": "Road", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FREFLP2595152465091257585", + "charging_station:output": "22 kW", + "description": "Road/64bfbd4c854e18001c5ee8e3", + "ref": "1019241", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72773400000, + 48.49006700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-04-21", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Première Classe Laon", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65528500000, + 49.56841400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "756996", + "charging_station:output": "22 kW", + "description": "Freshmile France/TJ4BORJXNJ", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5963211392805814817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18896500000, + 47.88217200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX11*12", + "start_date": "2021-08-26", + "description": "Paris | Bis Avenue Parmentier 125", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37167900000, + 48.86907950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P998785478232774700", + "description": "Freshmile France/LLZCUH2K12NVU6", + "socket:type2_combo:output": "300 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1185130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63069100000, + 43.10711300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Volvo -Laval", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPSCHUMACHER539401", + "start_date": "2022-09-13", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-17:30, Sa 08:00-12:00, Sa 14:00-17:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80856800000, + 48.07449800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "description": "900112", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PBOURTHSALLEFETES", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80775800000, + 48.77070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21277*A", + "ref:EU:EVSE": "FRS21P21277A", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36558000000, + 47.52501100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78513001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LA QUEUE LEZ YVELINES - Rue Nationale (Devant le tennis)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74937300000, + 48.80243400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*93*9*_*_;FR*SOD*S*QPRK*93*4*_*_;FR*SOD*S*QPRK*93*3*_*_;FR*SOD*S*QPRK*93*20*_*_;FR*SOD*S*QPRK*93*15*_*_;FR*SOD*S*QPRK*93*14*_*_;FR*SOD*S*QPRK*93*12*_*_;FR*SOD*S*QPRK*93*11*_*_;FR*SOD*S*QPRK*93*10*_*_;FR*SOD*S*QPRK*93*1*_*_;FR*SOD*S*QPRK*93*13*_*_;FR*SOD*S*QPRK*93*16*_*_;FR*SOD*S*QPRK*93*17*_*_;FR*SOD*S*QPRK*93*18*_*_;FR*SOD*S*QPRK*93*19*_*_;FR*SOD*S*QPRK*93*2*_*_;FR*SOD*S*QPRK*93*5*_*_;FR*SOD*S*QPRK*93*6*_*_;FR*SOD*S*QPRK*93*7*_*_;FR*SOD*S*QPRK*93*8*_*_", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRQPKPQPRK9391;FRQPKPQPRK9381;FRQPKPQPRK9371;FRQPKPQPRK9321;FRQPKPQPRK93201;FRQPKPQPRK93191;FRQPKPQPRK93181;FRQPKPQPRK93171;FRQPKPQPRK93161;FRQPKPQPRK93151;FRQPKPQPRK93101;FRQPKPQPRK9311;FRQPKPQPRK93111;FRQPKPQPRK93121;FRQPKPQPRK93131;FRQPKPQPRK93141;FRQPKPQPRK9331;FRQPKPQPRK9341;FRQPKPQPRK9351;FRQPKPQPRK9361", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "description": "QPARK - NANCY CHRU BRABOIS - P1- AVENUE DE BOURGOGNE 54500 VANDOEUVRE LES NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14615015479, + 48.64973454573 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLCWOBP56A", + "capacity": "2", + "amenity": "charging_station", + "ref": "706190", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP2961484382894802182", + "charging_station:output": "24 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39809200000, + 43.54671200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE417100", + "description": "IONITY Giberville Sud", + "owner:ref:FR:SIREN": "838436145", + "start_date": "2021-11-18", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE417100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27723800000, + 49.16693200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E43647;FRS51E151675", + "capacity": "2", + "description": "MODULO - ANGLURE - Pl. de la République", + "amenity": "charging_station", + "network": "MODULO - ANGLURE - Pl. de la République", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E43647;FRS51E151675", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81431800000, + 48.58333000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77249A", + "network": "Ecocharge77", + "description": "Lésigny - centre commercial", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2023-03-15", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "ref": "01403a42-66f5-4e60-bcd6-8f6cb0af432a", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61570400000, + 48.74741700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AIRE DE RESSONS OUEST", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2021-06-11", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF080294", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680610", + "ref:EU:EVSE": "FRHPCPNF080294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71960000000, + 49.51960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SAINT GERVAIS LA FORET - Rue de la Poissonnière", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E3781;FRS41E3780", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E3781;FRS41E3780", + "description": "MODULO - SAINT GERVAIS LA FORET - Rue de la Poissonnière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35859600000, + 47.56655500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PLYBRMC", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "La roche-bernard - Place du Dôme", + "start_date": "2016-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29707000000, + 47.51740300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "541793", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/KKQLE6INYX", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4612421246850807394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76355300000, + 48.59868500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "446945", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92049*D", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31799100000, + 48.81739500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - Lievin (PDL2);Volvo - Lievin", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "start_date": "2020-02-13;2023-02-23", + "capacity": "3;7", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLEMPEREURVOLVO628002;FRSSDPLEMPEREURVOLVO628001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78767300000, + 50.42675100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CHATEAU MENTONE", + "opening_hours": "Mo-Sun 06:00-22:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC2P001101", + "charging_station:output": "7.36 kW", + "operator": "CAR2PLUG", + "start_date": "2021-07-10", + "owner:ref:FR:SIREN": "451611909", + "operator:email": "contact@car2plug.fr", + "description": "CHATEAU MENTONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27820977010, + 43.52534026252 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LLYO7UU0O1P20H", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8021226168419320519", + "ref": "1175844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56735400000, + 47.87012800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "55849741-31d3-5e6c-831d-0af5ef0babfa", + "description": "MOBIVE | L'Houmeau | Place Gaby Coll" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18840300000, + 46.19331800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE03VABA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "VAUX parking omnisport", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59650500000, + 46.41280900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "GOSB - Villejuif", + "ref:EU:EVSE": "FRBE1E94076001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35679340000, + 48.79986300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P6376072261969928048", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/AVW2LZTUA9", + "ref": "735228" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24040800000, + 47.90261300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Greasque, Boulevard Salvadore Allende", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PTFGLGFKWZ3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54046900000, + 43.43471200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "402434", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P8855079247631616144", + "description": "SDEY/ABZLE7DG3B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00455500000, + 47.58473400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ5812;FRA16PWIIZ5811", + "start_date": "2018-06-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*58*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "ROQUEFORT - PARKING CENTRE VILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04891000000, + 43.66559200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "782430", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/A2XEZHCMFS", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2907790394135827799" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39700600000, + 49.86749300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Sogenial - Rivières", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "start_date": "2024-07-18;2024-02-10", + "charging_station:output": "22 kW;160 kW", + "ref:EU:EVSE": "FRPD1PSGNLFP", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38415370171, + 45.75197779162 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85787;EGAHT5NLC0", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Morzine, Taille Du Grand Mas;Réseau eborn/EGAHT5NLC0", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPEGAHT5NLC0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70249000000, + 46.18177000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP7702796373688775291", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/6ba8d5e0-b89a-4577-8b26-28720e329b80", + "capacity": "3", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "opening_hours": "Mo,Sa,Fr,We,Tu,Su,Th 07:00-20:59", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "ref": "837012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68394400000, + 44.40504500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "start_date": "2023-07-24", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR66911;FROTHPOTHR66912", + "ref": "FR*SOD*S*OTHR*669*1*_*_", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "description": "BRICOMARCHE - LE MAGNY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98324300000, + 46.66650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP7489804933309809566", + "description": "Réseau eborn/E4GOEZZJSK", + "ref": "742989", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99885600000, + 45.87370300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPCDVWPX", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/CDVWPX;Les Omergues, Entrée du village", + "ref": "CDVWPX;94478", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60693000000, + 44.17195700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*357*1*_*_", + "description": "CAMPING LES TAMARIS - FRONTIGNAN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-03-22", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR35712;FROTHPOTHR35711", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80577000000, + 43.44983500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/RCJTORNXPX", + "ref": "529565", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5539389214225065090", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94828900000, + 45.96297000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Honfleur, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP28329", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26637800000, + 49.41400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/HMRQ8DJXDD", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3941682284825262895", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "882729", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42412800000, + 48.32665500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Audi - ByMyCar - Dijon", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRSSDPBYMYCARAUDI213001", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-10-30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01911900000, + 47.29206600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PTHUITANGERCOVOITURE", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27", + "description": "900070" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97564200000, + 49.26091400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Pabu-Rue de l'église", + "ref:EU:EVSE": "FRS22E22161001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13708000000, + 48.58625800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC95344;FRZIME22AC95349", + "amenity": "charging_station", + "ref": "95349;95344", + "capacity": "1", + "start_date": "2020-11-18", + "owner:ref:FR:SIREN": "397554791", + "description": "Intermarché - Hyères - 22kW AC ", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "INTERMARCHE HYERES - SADIP;INTERMARCHE HYERES - SADIP", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14791500000, + 43.12345800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE283", + "operator": "RossiniEnergy", + "description": "Village_Vingeanne", + "start_date": "2022-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32198190000, + 47.74612920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78217002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "EPONE - Place des Fêtes", + "start_date": "2024-09-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81409984633, + 48.95512701943 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE431253;FRIOYE431252;FRIOYE431251;FRIOYE431201;FRIOYE431202;FRIOYE431203;FRIOYE431204", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Ceignes Haut Bugey", + "ref": "FRIOYE431253;FRIOYE431251;FRIOYE431204;FRIOYE431201;FRIOYE431202;FRIOYE431203;FRIOYE431252", + "description": "Ceignes Haut Bugey", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49006180000, + 46.11785510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2021-04-06;2024-05-16", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Aze - Aventin;AZE - Rue De Saint-Aventin", + "ref:EU:EVSE": "FRS53P53014B;FRS53E53014001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68952800000, + 47.82309500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS65E65460005", + "network": "Reveo", + "description": "VIC EN BIGORRE - Rue de l'abattoir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05391300000, + 43.38430300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE007301;FRIENE007302", + "description": "Loireauxence", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "network": "Loireauxence", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE007301;FRIENE007302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04325000000, + 47.41236000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34403002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-10-19", + "network": "Reveo", + "description": "LUNEL - Avenue des Abrivados" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12968600000, + 43.67143600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-LAIG-001", + "description": "L'AIGLE - Rue G. Le Conquérant", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61214A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62863500000, + 48.76545900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6507124231328666122", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1111899", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLK8BIZ6R1F8V8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02432900000, + 48.98485000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS31PBMJCXM", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "94289", + "description": "Roulez Électrique En Haute-Garonne/BMJCXM", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39161200000, + 43.50661100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92004028", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ASNIERES-SUR-SEINE - Rue Adolphe Briffault", + "network": "SIPPEREC", + "start_date": "2024-04-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28413770000, + 48.92597190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-08", + "description": "BMW Mini - JPV - FREJUS - 83600 - 2", + "network": "BMW Mini - JPV - FREJUS - 83600 - 2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000226;FRCG0E000227;FRCG0E000228;FRCG0E000229", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "FRCG0E000226;FRCG0E000227;FRCG0E000228;FRCG0E000229", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73553200000, + 43.47215400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*136*1*_*_;FR*SOD*S*NICE*136*2*_*_", + "start_date": "2021-08-16;2023-04-07", + "description": "BEAULIEU-SUR-MER - PARKING MAIRIE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE13622;FRM06PNICE13621;FRM06PNICE13611;FRM06PNICE13612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33546800000, + 43.70648000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Mugron | Parking Place Rue ducasse", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "ref": "8a387008-6e78-54dc-ac2d-353d979459f2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74915600000, + 43.75027800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE59FABA", + "capacity": "2", + "amenity": "charging_station", + "description": "Carrefour - FENAIN", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30027400000, + 50.36624200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS245912;FRBMPS222645;FRBMPS222647;FRBMPS222644", + "ref": "222647;222644;222645;245912", + "description": "Bump - Casino Supermarché - Saint-Brieuc", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79189160000, + 48.52054210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3369EVCP01;LFR3369EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3369EVCP01;LFR3369EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "SENS Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28671600000, + 48.18459300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8eb0710f-3d9e-538c-8776-37f9509b73ac", + "description": "MOBIVE | Nespouls | Parking Aeroport Brive – Vallee de la Dordogne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48981200000, + 45.04187400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "414ea0ac-9727-5004-ad4d-6332a5d6fd12", + "description": "Évry-Courcouronnes - Rue Paul Claudel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42651400000, + 48.63793700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84000*AVG*BDC0MBES", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref:EU:EVSE": "FR55CP84000AVGBDC0MBES", + "capacity": "1", + "start_date": "2020-11-13", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "BOULEVARD MARCEL COMBES - AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83325800000, + 43.95212800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CENON Cassagne", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3774EVCP02;LFR3774EVCP03;LFR3774EVCP01;LFR3774EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3774EVCP02;LFR3774EVCP03;LFR3774EVCP01;LFR3774EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51362100000, + 44.86494600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-01-17", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PWELHES", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "description": "Weldom - Hésingue", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53346620000, + 47.57965730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPVMYGOPNGKC;FREBNP7338085100349779998", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "741120;VMYGOPNGKC", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Vivans, Parking de la mairie;Réseau eborn/VMYGOPNGKC", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94356800000, + 46.18924800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/MLER8IDBQE", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRFR1P1104320377595733395", + "ref": "749352", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52374500000, + 45.84551400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRP01E17300002", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de La Rochelle P2 - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14247700000, + 46.15244300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Dropnplug", + "ref:EU:EVSE": "FRDNPP5449671900499475860", + "ref": "698342", + "amenity": "charging_station", + "capacity": "23", + "description": "Dropnplug/14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@dropnplug.fr", + "operator": "Dropnplug | FR*DNP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95241400000, + 43.29283100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "EL284IFGMN;30326", + "description": "Saint-Alban-D'Ay, Font Benite;Réseau eborn/EL284IFGMN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPEL284IFGMN", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63847100000, + 45.18898300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*477*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "BRICOMARCHE - TARNOS", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-09-05", + "ref:EU:EVSE": "FROTHPOTHR47711;FROTHPOTHR47712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46182000000, + 43.52992000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Freshmile France/JD3PFCU6UJ", + "operator:email": "roaming@freshmile.com", + "ref": "529331", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P478616887382670230", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09998000000, + 43.67677100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10025505;FRUBIE10098072", + "operator:email": "contact@ubitricity.com", + "start_date": "2023-12-08", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref": "setp0100000120", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10388900000, + 49.51280600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "491979", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P709794330180054288", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/QGLWSBDZQW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11442200000, + 44.81678600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "TOULOUSE - Boulevard Delacourtie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555014", + "charging_station:output": "22 kW", + "start_date": "2022-02-10", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44840000000, + 43.58420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "368782", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/AQDLTY7DRW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4629154015930711988", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56935000000, + 44.81391100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P2379672728089210516", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/CPSHDAIWXX", + "ref": "456801", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45824100000, + 49.27698500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11435001", + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "VILLEROUGE-TERMENES - D613-Parking Cave Cooperative" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62666666667, + 43.00500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHEVREUSE - Palais des sports", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78160001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04500730000, + 48.70616740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49135A;FRS49E49135001", + "amenity": "charging_station", + "start_date": "2021-04-12;2024-04-03", + "description": "OuestCharge - Diva Sp - Feneu - Cure;FENEU - Rue de la Cure", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59443800000, + 47.57218500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "description": "SIED70/lureinter", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS70P669059796636137331", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "441141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49847100000, + 47.68532900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "operator": "Bouygues E&S", + "description": "BERGUES - Place Gambetta", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59067001", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43236400000, + 50.96942830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ST MALO - Quai Saint Vincent ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr", + "ref:EU:EVSE": "FRS35P35288008B1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02228700000, + 48.64997900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Cournon D Auvergne - Domes (12)", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124A", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2022-10-12", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19284960000, + 45.73076310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "782502", + "charging_station:output": "22 kW", + "description": "Freshmile France/MNZELUZI7A", + "ref:EU:EVSE": "FRFR1P8019999067845976208", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28992500000, + 45.25771100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "21823", + "description": "SDEG32/XRFJWF", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32", + "ref:EU:EVSE": "FRS32PXRFJWF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58568800000, + 43.63630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "ARCUEIL - Avenue Laplace", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94003005", + "network": "SIPPEREC", + "start_date": "2022-02-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32836970000, + 48.80928170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-12-19", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "SAINT-LAURENT-DU-VAR - PARKING JOUHAUD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*255*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE25512;FRM06PNICE25511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18934014659, + 43.68147562265 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | La Force | Rue de la Liberation | Parking Espace Socio-Culturel", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "58d09bf2-af02-5e56-bd87-e327086b4665" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37542600000, + 44.86891900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE3961;FRSIGPSIGE3951;FRSIGPSIGE3941;FRSIGPSIGE3931;FRSIGPSIGE3921;FRSIGPSIGE3911", + "capacity": "1", + "network": "SIGEIF", + "description": "SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*39*6*_*_;FR*SOD*S*SIGE*39*1*_*_;FR*SOD*S*SIGE*39*2*_*_;FR*SOD*S*SIGE*39*3*_*_;FR*SOD*S*SIGE*39*4*_*_;FR*SOD*S*SIGE*39*5*_*_", + "start_date": "2020-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30166900000, + 48.96644800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76475001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FRANQUEVILLE-SAINT-PIERRE - Avenue Coty", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17610600000, + 49.40083100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2638EVCP01;LFR2638EVCP02", + "operator:email": "bornes@lidl.fr", + "description": "AUXERRE Papin", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2638EVCP01;LFR2638EVCP02", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58496800000, + 47.81197500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "d44549fe-8bdc-54bb-b812-eaa83d740b60", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "194__SDEC23", + "description": "MOBIVE | Chenerailles | Place du Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17628100000, + 46.11158900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "706040", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS82P4729130750621068109", + "charging_station:output": "24 kW;22 kW", + "description": "SDE82/GBP28CCEYE", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28759000000, + 44.07593300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AVENUE DE GAULLE - LE PLESSIS-ROBINSON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "1", + "ref": "FR*55C*P92350*LPR*GAULLE", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP92350LPRGAULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26383500000, + 48.78182200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "ST NAZAIRE - Mollé", + "ref:EU:EVSE": "LFR4002EVCP01;LFR4002EVCP02;LFR4002EVCP03;LFR4002EVCP04", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4002EVCP01;LFR4002EVCP02;LFR4002EVCP03;LFR4002EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28236900000, + 47.25877700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;187.5 kW;100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PITMMTG", + "description": "Intermarché Super - Montignac", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-12-16;2023-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15301600000, + 45.05648000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/XANHLH;Rumilly, Parking des Anciennes Casernes", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPXANHLH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "30527;XANHLH", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94833000000, + 45.86060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP77390A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - Roissy-en-Brie - Stade Paul Bessuard", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP77390A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65275047151, + 48.79770483973 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORDNK", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "description": "Cora - Dunkerque", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37903700000, + 51.01519700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRDRVPCRFMKT093001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Lavelanet", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85796600000, + 42.92767500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPBLVHC", + "start_date": "2023-10-04", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Bourg-lès-Valence - Hôtel Campanile", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88987100000, + 44.96049400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - MELUN", + "ref:EU:EVSE": "FROTHPAUCH16511;FROTHPAUCH16512", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*AUCH*165*1*_*_", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59983970000, + 48.58810030000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DOUGEDISFR03182 BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6779185", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6779185", + "network": "DOUGEDISFR03182 BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59893700000, + 45.70897600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/VLGWEW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref": "346484", + "ref:EU:EVSE": "FRFR1P997334849555964541", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84149000000, + 48.40650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue Docteur Goujon 5", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9012*07", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P901207", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39782200000, + 48.83994700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLYZV877B1GF5X", + "ref": "1156971", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7040080675707847444", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54421800000, + 45.69945300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP5177", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Montpellier, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91990000000, + 43.60245000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7751247602037712267", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892308", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJ2K4KVG1SDXR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.04095800000, + 48.82953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-15", + "description": "R3 - Pizza del Arte Joué-les-Tours", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64762400000, + 47.34854200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P4858981598461905828", + "description": "MobiSDEC/KTL39IK8IX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457497" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39559400000, + 49.33251200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAUVETERRE DE ROUERGUE - Chemin Du Théron", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12262001", + "charging_station:output": "22 kW", + "start_date": "2021-08-26;2021-09-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31852700000, + 44.22079100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "932028", + "ref:EU:EVSE": "FRWA5P7379239202736340376", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA5LBAEIB4JP", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39723700000, + 47.29123700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-29", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "TORFOU - Place Clémenceau;OuestCharge - Diva Sp - Torfou - Clemenceau", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49350A;FRS49E49350001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11479500000, + 47.03754800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-01-27", + "ref:EU:EVSE": "FRS81E8110500322;FRS81E8110500321;FRS81E8110500311;FRS81E8110500312", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "GRAULHET - Place Jean Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98696734300, + 43.76186479486 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF042239", + "start_date": "2024-02-21;2024-02-01", + "owner:ref:FR:SIREN": "531681689;531681687;531681688;531681686", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "FRHPCPNF042239", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS ANTHELUPT", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41840000000, + 48.59090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46176001", + "description": "LIVERNON - Le Colombier", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83843200000, + 44.64827300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-09-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PQDCXYC", + "description": "Sérent - Rue Général de Kerhué", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.50753200000, + 47.82212000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "DOUAI - Parking Cinéma Majestic", + "ref:EU:EVSE": "FRH04E59178010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07529100000, + 50.37564100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2922900", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Quemeneven-Route de Kerampape" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.11987500000, + 48.11594000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-23", + "description": "SAINT-MAUR-DES-FOSSÉS - Boulevard du General Giraud", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94068010", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49185580000, + 48.78755610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHABOURNAY-1-1;CHABOURNAY-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B127", + "start_date": "2017-06-09", + "ref:EU:EVSE": "FRLMSE12346051302;FRLMSE12346051301;FRLMSE12346051291;FRLMSE12346051292", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25833000000, + 46.71738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "charging_station:output": "7 kW", + "description": "Metropolis - Proximité - Rueil-Malmaison - Driant;Métropolis/FR*MGP*P92063*N", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRMGPP92063N", + "opening_hours": "24/7", + "ref": "340667", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20091800000, + 48.87664900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE6661;FRSIGPSIGE6631;FRSIGPSIGE6621;FRSIGPSIGE6611;FRSIGPSIGE6641;FRSIGPSIGE6651", + "start_date": "2020-11-17", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*SIGE*66*5*_*_;FR*SOD*S*SIGE*66*4*_*_;FR*SOD*S*SIGE*66*3*_*_;FR*SOD*S*SIGE*66*2*_*_;FR*SOD*S*SIGE*66*1*_*_;FR*SOD*S*SIGE*66*6*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23014500000, + 48.83153600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT BRIEUC", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSSTBRX", + "start_date": "2023-02-07", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72768000000, + 48.49614700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000058480", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Groslay", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36450100000, + 48.98785100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Larceveau | Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "745e50dd-03c6-5389-a325-840a49cfe79b", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09310300000, + 43.23089200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "L'ILE-D'YEU - Parking Heliport Ile D'Yeu", + "ref:EU:EVSE": "FRS85E85113002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35018000000, + 46.72769900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSAIRES", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "AIRE SUR LA LYS", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41243200000, + 50.63668800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3333EVCP01;LFR3333EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "WOIPPY Thionville", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3333EVCP01;LFR3333EVCP02", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15936900000, + 49.14995400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carré D'Or - Perpignan", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2024-02-07;2024-03-01;2024-02-21;2024-04-24;2024-02-19;2024-01-30", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLCOPPG", + "charging_station:output": "100 kW;50 kW;200 kW;22 kW;160 kW", + "socket:type2_combo:output": "200 kW;160 kW;100 kW", + "capacity": "22", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94378101534, + 42.70200000611 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Puy En Velay, Avenue Maréchal Foch;Réseau eborn/LLK6PJDVY2IK3V", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "capacity": "4", + "start_date": "2023-07-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLLK6PJDVY2IK3V;FREBNP323567719647079716", + "ref": "933420;LLK6PJDVY2IK3V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88675800000, + 45.03465700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "description": "EVzen/F7B2060A-D9E4-41C6-BA1B-7015199E9A03", + "opening_hours": "24/7", + "network": "EVzen", + "ref": "1171422", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP8058691080828728984" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87525100000, + 46.63184200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-09-28", + "ref:EU:EVSE": "FRPD1PGMVOLR", + "description": "Gamm Vert - Oloron", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61527240000, + 43.17885680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "opening_hours": "Mo 05:30-20:30, Tu 05:30-20:30, We 05:30-20:30, Th 05:30-20:30, Fr 05:30-20:30, Sa 05:30-20:30", + "amenity": "charging_station", + "description": "Leroy Merlin - Hauconcourt", + "ref:EU:EVSE": "FRE11PLMHAUCONCOURT572801", + "start_date": "2021-08-16", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17720000000, + 49.22037500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRETIP09282A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2023-12-04", + "capacity": "3", + "opening_hours": "24/7", + "description": "e-Totem - INTERMARCHE SAVERDUN", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP09282A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56591000000, + 43.25089200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR16241;FROTHPOTHR16231;FROTHPOTHR16211;FROTHPOTHR16221", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-26", + "ref": "FR*SOD*S*OTHR*162*2*_*_;FR*SOD*S*OTHR*162*1*_*_;FR*SOD*S*OTHR*162*3*_*_;FR*SOD*S*OTHR*162*4*_*_", + "opening_hours": "24/7", + "network": "CARREFOUR", + "charging_station:output": "22 kW", + "description": "ZAC DE KERZOUAR", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.61328800000, + 48.42732600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "BONNEVAL VIEUX VILLAGE", + "charging_station:output": "22 kW", + "ref": "FRCPIE6967185", + "start_date": "2024-07-04", + "description": "BONNEVAL VIEUX VILLAGE", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6967185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04944600000, + 45.37244700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VKVLRRWSU5", + "ref": "505719", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7368009082581304667" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36833400000, + 49.22862400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - B&B HOTEL AIX EN PROVENCE PONT DE L'ARC", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP122069", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2024-08-13", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44674400000, + 43.51100100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VZJYCG", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PVZJYCG", + "ref": "232366" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22182000000, + 46.20300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-05", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "CC Sud Corse - Pianotolli", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCCSUDCORSE201311", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.05585700000, + 41.49251700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "971834", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLMOPR8DD1LXME", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3344535208913220772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35510600000, + 48.07615300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-11-23", + "description": "Kyriad - Crépy en Valois", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPKYRIAD608001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90742000000, + 49.22322100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LA LOUPE - Rue Pasteur", + "ref": "FRS28E134213", + "ref:EU:EVSE": "FRS28E134213", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - LA LOUPE - Rue Pasteur", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01216600000, + 48.47068400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/E2RZPOTRBD", + "ref:EU:EVSE": "FRS10P1057736216852250270", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "32110", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72773900000, + 48.52444400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WAAT", + "description": "WAAT/FRWA3L8AOUYW4D", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P7926137478499801463", + "operator:email": "exploitation@waat.fr", + "ref": "1127877" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12007300000, + 45.50582800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HAMBYE - Place de la Mairie", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-01-04", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50450002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26422850000, + 48.94837190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "description": "SAINT PAUL CAP DE JOUX - Place De La Resistance", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS81E81266001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97556100000, + 43.64754200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681642;531681643;531681638;531681644;531681645;531681639;531681640;531681641", + "capacity": "8", + "amenity": "charging_station", + "start_date": "2023-10-27", + "opening_hours": "24/7", + "description": "RELAIS DE KERANROY", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078202", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "ref": "FRHPCPNF078202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47150000000, + 48.41620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49012001;FRS49P49012A", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2024-03-27;2021-04-27", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Aubigne-sur-Layon - 19 Mars 1962;AUBIGNE-SUR-LAYON - Rue 19 Mars 1962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46403700000, + 47.21158200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "ref:EU:EVSE": "FRS60PCREIL8MAI", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mouv'Oise/Creil8mai", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "64826" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47424000000, + 49.26040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH08E59295011", + "description": "HAZEBROUCK - Rue André Biebuyck", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53804500000, + 50.72326200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30117001", + "start_date": "2022-02-16", + "description": "FOURQUES - Parking Avenue Du Vieux Pont Station 01", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61187100000, + 43.69068000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PYEHCXH", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "description": "Mobilité électrique 56/YEHCXH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "24746", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89104000000, + 47.54970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90281391", + "amenity": "charging_station", + "capacity": "1", + "description": "B&B Chalon-sur-Saone", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84137400000, + 46.76013500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93079A", + "description": "Metropolis - Citadine - Villetaneuse - Etienne Fajon;Métropolis/FR*MGP*P93079*A", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "ref": "484853", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34380000000, + 48.96056400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "description": "Shell Aire de la sainte Victoire HW", + "operator:email": "customerservice@shellrecharge.com", + "amenity": "charging_station", + "capacity": "15", + "charging_station:output": "300 kW;125 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-05-09", + "ref:EU:EVSE": "FRSHEE75;FRSHEE74;FRSHEE73;FRSHEE690;FRSHEE76;FRSHEE77", + "ref": "FRSHEE75;FRSHEE74;FRSHEE73;FRSHEE690;FRSHEE76;FRSHEE77", + "network": "Shell Aire de la sainte Victoire HW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564000, + 43.46925139000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBE1E64445003", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PAU - Parking Cours Bosquet", + "charging_station:output": "22 kW", + "start_date": "2024-01-05", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36455740000, + 43.29827210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A2 La Sentinelle Ouest", + "operator": "Last Mile Solutions", + "start_date": "2022-12-30;2023-01-03;2023-01-04", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89369825", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46633000000, + 50.34046800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "ref": "FR*SOD*S*MB16*1*1*_*_;59c7d993-d5d7-548b-be6c-57a3c6008b40", + "start_date": "2020-07-30", + "opening_hours": "24/7", + "description": "MOBIVE | Aigre | Place de L'Hôtel de Ville;AIGRE - PLACE DE LHOTEL DE VILLE", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref:EU:EVSE": "FRS16PMB16112;Non concerné;FRS16PMB16111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01037200000, + 45.89383700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE62HACA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-02", + "socket:type2_combo:output": "24 kW", + "description": "Carrefour - HOUDAIN", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53244200000, + 50.45379900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Rennes Cesson", + "description": "Allego Carrefour Rennes Cesson", + "start_date": "2023-11-27", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRALLEGO9008962;FRALLEGO9008961;FRALLEGO9008682;FRALLEGO9008681;FRALLEGO9001392;FRALLEGO9001391;FRALLEGO9001271;FRALLEGO9001272;FRALLEGO9004611;FRALLEGO9004612;FRALLEGO9008501;FRALLEGO9008502", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9008962;FRALLEGO9008961;FRALLEGO9008682;FRALLEGO9008681;FRALLEGO9001392;FRALLEGO9001391;FRALLEGO9001271;FRALLEGO9001272;FRALLEGO9004611;FRALLEGO9004612;FRALLEGO9008501;FRALLEGO9008502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59143100000, + 48.11380700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3931EVCP02;LFR3931EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3931EVCP02;LFR3931EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "CHAUNY - Ternynck" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21128200000, + 49.62850500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM29E29075002", + "charging_station:output": "22 kW", + "description": "GUIPAVAS - Place St Eloi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.40016000000, + 48.43558100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "RJVJ8NDBBF", + "capacity": "2", + "description": "Thyez, Rue des Sorbiers", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRJVJ8NDBBF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54143480000, + 46.07666400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P490893834849725420", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892536", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLKKVIR1U1I5M7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78338100000, + 49.70551300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "MULHOUSE - Parking Porte Jeune", + "start_date": "2022-07-01", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "37", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E682240032;FRP07E682240031;FRP07E68224003;FRP07E682240033", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34101030000, + 47.75071590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPLLMRFQFQ1RJNCW;FREBNP9198662911056217875", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Viriville, Rue de la gare;Réseau eborn/LLMRFQFQ1RJNCW", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-09-20", + "ref": "980637;LLMRFQFQ1RJNCW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20557600000, + 45.31657500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "978215", + "ref:EU:EVSE": "FREFLP7087450119509545415", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "description": "Road/6569c0670e122d001cfe7f11", + "charging_station:output": "11 kW", + "operator:email": "roaming-dev@road.io", + "opening_hours": "We,Mo,Th,Sa,Fr,Tu,Su 08:00-18:00", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45604200000, + 47.18583800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "network": "CAMPING SUNELIA LES 3 VALLEES", + "amenity": "charging_station", + "description": "CAMPING SUNELIA LES 3 VALLEES - ARGELES-GAZOST", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR27693;FROTHPOTHR27692;FROTHPOTHR27691;FROTHPOTHR27681;FROTHPOTHR27671;FROTHPOTHR27661;FROTHPOTHR27641;FROTHPOTHR27611;FROTHPOTHR27621;FROTHPOTHR27631;FROTHPOTHR27651", + "start_date": "2022-07-12;2021-11-17", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*276*6*_*_;FR*SOD*S*OTHR*276*5*_*_;FR*SOD*S*OTHR*276*4*_*_;FR*SOD*S*OTHR*276*3*_*_;FR*SOD*S*OTHR*276*1*_*_;FR*SOD*S*OTHR*276*2*_*_;FR*SOD*S*OTHR*276*7*_*_;FR*SOD*S*OTHR*276*8*_*_;FR*SOD*S*OTHR*276*9*_*_", + "capacity": "1;3", + "charging_station:output": "50 kW;3.68 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09683400000, + 43.01222700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6606875;FRCPIE6619845", + "network": "PANORAMA 360 HOTEL & SPA 2", + "ref": "FRCPIE6606875;FRCPIE6619845", + "start_date": "2022-10-12", + "description": "PANORAMA 360 HOTEL & SPA 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82953000000, + 46.30550500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "782364", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YSATF07ZM0", + "ref:EU:EVSE": "FRFR1P771085516326558286" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19029400000, + 47.87876000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/s540967", + "capacity": "2", + "amenity": "charging_station", + "ref": "1170660", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref:EU:EVSE": "FRWA2P8249476470065502962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15684200000, + 50.71782800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Freshmile France/DCAR0JL1LK", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "446513", + "charging_station:output": "100 kW;60 kW", + "socket:type2_combo:output": "100 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1899996812295175442" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27694000000, + 41.60460000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-05", + "network": "ACCOR Hotels", + "description": "Mercure - Villeurbanne Charpennes", + "ref:EU:EVSE": "FRTCBP00123", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "ref": "FRTCBP00123", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "380301317", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86334700000, + 45.77105700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RRFQQ84JRE", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "510584", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5904304252225582169", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86109300000, + 48.68106800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPGCABMW148201", + "network": "DRIVECO", + "description": "BMW Mini - Deauville", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW;24 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-02-02;2024-04-05", + "opening_hours": "Mo 08:30-12:30, Mo 14:00-19:00, Tu 08:30-12:30, Tu 14:00-19:00, We 08:30-12:30, We 14:00-19:00, Th 08:30-12:30, Th 14:00-19:00, Fr 08:30-12:30, Fr 14:00-19:00, Sa 08:30-12:30, Sa 14:00-19:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09194400000, + 49.33745400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "description": "Carhaix Plouguer-Rue Général Jacques de la Bollardière", + "ref:EU:EVSE": "FRS29E29024002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.53936700000, + 48.27561200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "387728", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/SGAGDZM0DN", + "ref:EU:EVSE": "FRS10P6882436630641957241", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10119500000, + 48.32962800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "GHO Metz Hauconcourt;Zephyre", + "amenity": "charging_station", + "description": "Zephyre/1948453;Zephyre/2011346;GHO Metz Hauconcourt", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "820818607", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref": "575900;575912;35051fb7-6896-415c-85d6-ae1b4c99a5cf", + "ref:EU:EVSE": "FRZP1P9044447610356347385;FRZP1P967880989418481337;FRZP1PEAC43736;FRZP1PEAC43737;FRZP1PEAC57021;FRZP1PEAC57022", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17074300000, + 49.21746300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-06", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "AthenaSpa", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE82", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71137800000, + 48.59167200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64742", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PBOVESINDES", + "charging_station:output": "22 kW", + "description": "FDE 80/Bovesindes", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37073000000, + 49.86430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST16311;FRIZFPFAST16312;FRIZFPFAST16313", + "start_date": "2024-07-30", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - CHATILLON-SUR-CHALARONNE", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*163*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96699167669, + 46.12962212970 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MONTRICHARD VAL DE CHER - Bd. Philippe Auguste", + "ref:EU:EVSE": "FRS41E4713;FRS41E4714;FRS41E4721;FRS41E4722", + "amenity": "charging_station", + "start_date": "2019-03-18", + "capacity": "4", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - MONTRICHARD VAL DE CHER - Bd. Philippe Auguste", + "ref": "FRS41E4713;FRS41E4714;FRS41E4721;FRS41E4722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419000000, + 47.34395800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PSAINTLEU", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "48958", + "description": "Mouv'Oise/saintleu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41837000000, + 49.21610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*73*4*_*_;FR*SOD*S*LYON*73*3*_*_;FR*SOD*S*LYON*73*2*_*_;FR*SOD*S*LYON*73*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7341;FRGLYPLYON7321;FRGLYPLYON7311;FRGLYPLYON7331", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "operator:email": "sav@izivia.com", + "description": "LY315 - AVENUE LACASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86352100000, + 45.75630700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - MONTLOUIS SUR LOIRE - Rue Rousseau", + "amenity": "charging_station", + "ref": "FRS37E214069;FRS37E214070", + "description": "MODULO - MONTLOUIS SUR LOIRE - Rue Rousseau", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E214069;FRS37E214070" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82543900000, + 47.38752300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-12-19", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXLMBLJ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Bréhan - Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68660500000, + 48.06161100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "ref": "FRG10P17300D", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRG10P17300D", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2022-07-26", + "charging_station:output": "25 kW;22 kW", + "network": "VILLE DE LA ROCHELLE - PARKING PREFECTURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15676000000, + 46.15701000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "0 kW", + "ref": "FRN54E243506;FRN54E243473;FRN54E243472;FRN54E243471;FRN54E243470;FRN54E243425;FRN54E243424;FRN54E188503;FRN54E188502;FRN54E188654;FRN54E188655;FRN54E243505", + "operator": "Modulo", + "description": "MODULO - NANCY - Pkg. Thiers Taxi", + "opening_hours": "24/7", + "start_date": "2020-07-31", + "ref:EU:EVSE": "FRN54E243506;FRN54E243473;FRN54E243472;FRN54E243471;FRN54E243470;FRN54E243425;FRN54E243424;FRN54E188503;FRN54E188502;FRN54E188654;FRN54E188655;FRN54E243505", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - NANCY - Pkg. Thiers Taxi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17538100000, + 48.68991400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-11-25", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*210*1*_*_", + "description": "SIGEIF - 49 AVENUE DU MARECHAL PIERRE KOEING - SARCELLES", + "ref:EU:EVSE": "FRSIGPSIGE21011;FRSIGPSIGE21012", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38354600000, + 48.98086100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001890;FRCG0E001888;FRCG0E001889", + "amenity": "charging_station", + "network": "NEXTIS - 71150 - 2", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001890;FRCG0E001888;FRCG0E001889", + "description": "NEXTIS - 71150 - 2", + "start_date": "2023-12-20", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81496400000, + 46.92291900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779987486", + "operator": "ZEENCO", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Yutz parking Republique", + "ref:EU:EVSE": "FRLMSE1234571370", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "network": "ZEENCO", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19026600000, + 49.35689900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Aigrefeuille | Rue de la Poste", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "4d193856-6a29-5214-99ad-c16c59ccdff5", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93619200000, + 46.11493100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2023-05-17", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "Place du Poitou - L'ISLE JOURDAIN", + "ref:EU:EVSE": "FRSE1PSE86JPPA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68620700000, + 46.23360300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-03", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COLOMIERS - Parking du Rouergue", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRA31E31149006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33206810000, + 43.61063800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3755EVCP01;LFR3755EVCP02", + "description": "SAINT CHRISTOL LES ALES Monteze", + "ref": "LFR3755EVCP01;LFR3755EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08152200000, + 44.09903300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM38E38151002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "ECHIROLLES - Avenue de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72162500000, + 45.13990200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/RH3HDEMXJD", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref": "492141", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNP1348488012404572492", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96790900000, + 45.03794600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Freshmile France/A2NLTYQ2Z5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "674315", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8991991262824170893", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43559400000, + 46.35114600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "SEVRES - Gymnase", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-03-18", + "ref:EU:EVSE": "FRP07E92072002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21853650000, + 48.82620810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1152066;LLYMQMCDY2MITP", + "ref:EU:EVSE": "FREBNP7171574559771890543;FREBNPLLYMQMCDY2MITP", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLYMQMCDY2MITP;La Farlède, Parking Salle des Fêtes", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04529800000, + 43.16630500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "description": "Cauneille - Intermarché", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPCAUIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595000000, + 43.54415600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Limoges Les Halles - EFFIA", + "ref:EU:EVSE": "FRP01E87085006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25637000000, + 45.82996000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6644195", + "start_date": "2022-10-17", + "capacity": "2", + "network": "CGED CGED ALBI", + "amenity": "charging_station", + "description": "CGED CGED ALBI", + "opening_hours": "24/7", + "ref": "FRCPIE6644195", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17586300000, + 43.92969100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHPQPBGH8RU9O", + "description": "Ste Gennevieve des Bois , Animalis", + "ref": "QPBGH8RU9O" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34236870000, + 48.62371280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "start_date": "2021-08-05", + "ref": "FR*V75*PPX18*06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1806", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue Marcadet 150", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33850000000, + 48.89130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/MYCHBY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009197", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3165158961746197057" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34306000000, + 47.74840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9019*04", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue Adolphe Mille 9", + "ref:EU:EVSE": "FRV75P901904", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38814900000, + 48.88842000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6892633602804925093", + "operator:email": "roaming@freshmile.com", + "ref": "1179957", + "capacity": "2", + "description": "Freshmile France/LLYE8IN6F6MVQZ", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72941900000, + 48.61236600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-07-12", + "ref:EU:EVSE": "FRSSDPHYUNDAI622191", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Longuenesse", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26548300000, + 50.73607800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22215002", + "description": "Ploufragan-rue du Grismolet / rue de la mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79245100000, + 48.48802900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11201001", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "description": "LEUC - Site Parking Communal Ecole", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32183423775, + 43.14842739154 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "OFFICE PUBLIC DE L'HABITAT DE LA SOMME", + "amenity": "charging_station", + "capacity": "1", + "network": "AMSOM HABITAT HENSON", + "opening_hours": "Lun-Ven 08:30-17:00", + "operator:email": "advenir@zeborne.com", + "ref:EU:EVSE": "FRZPEE74AC176494;FRZPEE22AC176462;FRZPEE22AC176460;FRZPEE74AC176459", + "charging_station:output": "7.4 kW;22 kW", + "description": "Borne 3 - AMSOM HENSON - AMIENS 7.4kW;Borne 2 - AMSOM HENSON - AMIENS 22kW;Borne 1 - AMSOM HENSON - AMIENS 22kW;Borne 4 - AMSOM HENSON - AMIENS 7.4kW " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28812810000, + 49.89911810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS09E09261001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT GIRONS - Quai Du Gravier", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14324900000, + 42.98482200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80P3418657127060847209", + "ref": "346325", + "network": "FDE 80", + "description": "FDE 80/HLQJWN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47289000000, + 50.03690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-01-11", + "ref": "FR*SOD*S*FAST*42*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - BRETEUIL", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST4211;FRIZFPFAST4212;FRIZFPFAST4213", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27976820000, + 49.64013990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-26;2024-04-24", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Pulse 50 - Heric - Erette;HERIC - Avenue De L'Erette", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS44P44073A;FRS44E44073001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64403100000, + 47.38021300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "owner:ref:FR:SIREN": "200041309", + "ref": "dad7fc3b-f555-44dc-8f17-60efea8082e6", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "charging_station:output": "24 kW;22 kW", + "description": "FONTENAY-TRESIGNY - Pierre de Coubertin;Fontenay-Trésigny - Pierre de Coubertin", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS77P77192B;FRS77E77192002", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87067000000, + 48.70882000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "FRGYMP4929789830672770080", + "amenity": "charging_station", + "ref": "1167588", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/65", + "opening_hours": "Tu,Mo,We,Th 13:30-17:30,Tu,Fr,Th,We,Mo 07:30-12:00,Fr 13:30-16:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09259300000, + 47.64223000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SONZAY - Salle des associations", + "ref": "FRS37E220431;FRS37E220432", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - SONZAY - Salle des associations", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E220431;FRS37E220432", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46009900000, + 47.52712000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "9019c5e1-2700-56a0-8033-0a9adf4bf0d7", + "network": "CPO CITEOS SDE54", + "description": "PETR - Einville-au-Jard", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "37__PETR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48590000000, + 48.65480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Super U", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-12-28", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "308326560", + "description": "Super U Ecouen", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895000000, + 49.02686800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 14:00-19:00", + "network": " Edenauto ", + "operator": "Mobilize Power Solutions", + "ref:EU:EVSE": "FRMBZEAARMK;FRMBZEYWYVU", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "description": "Edenauto Pau Renault", + "start_date": "2023-12-14", + "operator:email": "support@mobilize-ps.fr", + "ref": "708ed603-f818-4080-92bd-bce7b385e68e;5d5660da-f6aa-4de0-8e4a-fc74afd8a54e", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33287900000, + 43.30624100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94076008", + "start_date": "2022-09-19", + "description": "VILLEJUIF - Avenue Karl Marx" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35912577534, + 48.78451116226 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6536605;FRCPIE6536615", + "network": "BORNES TREGUIER BORNE 2", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6536605;FRCPIE6536615", + "start_date": "2021-09-15", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "BORNES TREGUIER BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23132100000, + 48.77855800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Leclerc/GDMHCEAKTI", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P4949270641701852799", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454272" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824500000, + 47.43607000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Gujan-Mestras | Rue Edmond Dautric", + "capacity": "2", + "amenity": "charging_station", + "ref": "c93b06d2-dae5-5f0e-b5e7-cd377de93ab5", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06848400000, + 44.64054100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Réseau AlterBase - La Crèche - Bibliothèque", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB79048P0004A", + "start_date": "2017-06-14", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29945450000, + 46.36230190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS317003", + "opening_hours": "24/7", + "capacity": "10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-11-20", + "description": "Airbus - Blagnac - C80", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34788900000, + 43.63236100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR4163EVCP01;LFR4163EVCP04;LFR4163EVCP03;LFR4163EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "description": "Saint Aignan", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4163EVCP01;LFR4163EVCP04;LFR4163EVCP03;LFR4163EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36053100000, + 47.26100900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "ref:EU:EVSE": "FRM06PNICE4411;FRM06PNICE4412;FRM06PNICE4421;FRM06PNICE4431", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "description": "NICE - FABRON RP", + "ref": "FR*SOD*S*NICE*44*2*_*_;FR*SOD*S*NICE*44*1*_*_;FR*SOD*S*NICE*44*3*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2019-01-05;2019-01-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23818891051, + 43.68698539051 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-06", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "LA PENNE - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ18212;FRA16PWIIZ18211", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*182*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94749800000, + 43.92746200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "742923", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BMMQ9BPZYD", + "ref:EU:EVSE": "FRFR1P9003017860863263201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.50349100000, + -21.25745700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-10-11;2023-08-20", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBRIISS", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Bricomarché - Issoudun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00666000000, + 46.95068000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref": "32914;QMLUTQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Annecy Pringy, Route du Pont du Brogny;Réseau eborn/QMLUTQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPQMLUTQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12351000000, + 45.93560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2022-12-08", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Fresnes - Euro Hôtel Orly Rungis", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPFREEH", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33635700000, + 48.75416000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E315550111;FRP07E31555011", + "description": "TOULOUSE - Place De L'Europe", + "capacity": "18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-03-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43093100000, + 43.61004710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP2913542780918441419;FREBNPKKT7GPURKL", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/KKT7GPURKL;Raucoules, Parking La Gare, lieu dit Oumey", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "ref": "KKT7GPURKL;346787" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29389000000, + 45.16762000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/LLP8K463YLTZ8H", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP3893722402595552632", + "capacity": "3", + "opening_hours": "24/7", + "ref": "998766", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32595900000, + 43.46315100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - A31 Val de Meuse", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP101113", + "charging_station:output": "300 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49855300000, + 47.97536800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/VJFO72D9YA", + "ref:EU:EVSE": "FRFR1P5248263574099838096", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "We,Fr,Mo,Th,Tu 09:00-12:00,Mo,Fr,Th,Tu,We 14:00-17:00", + "operator": "Freshmile | FR*FR1", + "ref": "699041" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75734900000, + 49.35889000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue Milton 12", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0911", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX09*11", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34091770000, + 48.87772120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/X9PLF6UY7Y", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "626312", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2928250235861795944", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98678400000, + 50.43186300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPACTENAVOLVO922001", + "capacity": "5", + "start_date": "2022-09-12", + "network": "DRIVECO", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-12:30, Mo 13:30-18:30, Tu 08:30-12:30, Tu 13:30-18:30, We 08:30-12:30, We 13:30-18:30, Th 08:30-12:30, Th 13:30-18:30, Fr 08:30-12:30, Fr 13:30-18:30, Sa 09:00-12:30, Sa 13:30-18:30", + "operator": "DRIVECO", + "description": "Volvo - Neuilly sur Seine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27285600000, + 48.88123500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SYDED/RTZIYHR634", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS25P2687672469943553361", + "network": "SYDED", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "ref": "505833" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77454200000, + 47.23433000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - EPINEUIL-LE-FLEURIEL - Mairie T2", + "ref:EU:EVSE": "FRS18E250988;FRS18E250989", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - EPINEUIL-LE-FLEURIEL - Mairie T2", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E250988;FRS18E250989", + "start_date": "2024-06-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58297600000, + 46.55845400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE MESNIL-LE-ROI - Haut de Girouette", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY03E78396003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12812000000, + 48.94257000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK3811;FRQPKPQPRK3821", + "description": "QPARK - BOURGOIN JALLIEU - LA FOLATIERE - MANAGEMENT CT", + "amenity": "charging_station", + "ref": "FR*SOD*S*QPRK*38*1*_*_;FR*SOD*S*QPRK*38*2*_*_", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2022-11-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27667300000, + 45.60669400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "description": "FONTRIEU - Musée du Protestantisme de Ferrière La Ramade D53", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8106200122;FRS81E8106200121;FRS81E8106200111;FRS81E8106200112", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44971563824, + 43.66212745170 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Valleiry Sud", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE409800", + "ref:EU:EVSE": "FRIONE409800", + "start_date": "2022-11-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96181200000, + 46.09619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50620001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2016-12-14", + "description": "ST JEAN DE DAYE - Place de la 30e Division d'Infanterie US", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13643570000, + 49.22839390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TRILPORT - Parking cimetière", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS77E77475003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94962600000, + 48.96236700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080123", + "description": "RELAIS DE LA CROIX BLANCHE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080123", + "start_date": "2024-03-25;2023-06-21", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531681537;531681535;531681536;531681538" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99337600000, + 48.82876800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E238649;FRS41E238648", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2024-02-08", + "network": "MODULO - CHEMERY - Rue des Galvaux - T2", + "description": "MODULO - CHEMERY - Rue des Galvaux - T2", + "ref": "FRS41E238649;FRS41E238648" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47651600000, + 47.34485200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "description": "Ile-aux-moines - Kerscot", + "network": "Morbihan Energies", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "capacity": "4", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84862890174, + 47.59211528313 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2023-11-27", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "CRA02 - MAIRIE", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON19611;FRGLYPLYON19612", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*LYON*196*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72298200000, + 45.74400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP92040A", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16)", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849366000, + 48.83087258000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPAEROAUTOOPEL913001", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 08:00-12:30, Mo 14:00-19:00, Tu 08:00-12:30, Tu 14:00-19:00, We 08:00-12:30, We 14:00-19:00, Th 08:00-12:30, Th 14:00-19:00, Fr 08:00-12:30, Fr 14:00-19:00, Sa 09:00-12:30, Sa 14:00-18:30", + "start_date": "2020-02-17", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Opel - Aero Auto - Massy", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28418400000, + 48.72118000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-14", + "description": "SAINT JACQUES SUR DARNÉTAL - Rue Du Stade", + "ref:EU:EVSE": "FRC01E76591001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20792500000, + 49.44011300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/KAHQKZVTML", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P212466548856121232", + "opening_hours": "24/7", + "ref": "446744", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53314600000, + 46.72268700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "2e7804ea-326f-577f-bdd7-a1e5ab5bad30", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Vayres | Parking du Gestas", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31692400000, + 44.89764800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95572004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "description": "SAINT OUEN L'AUMONE - Rue Victor Leveau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10431200000, + 49.04567900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "network": "Allego FR, Groupe Bertrand, Cambrai", + "start_date": "2023-07-28", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego FR, Groupe Bertrand, Cambrai", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO8008532;FRALLEGO8008531;FRALLEGO8001012;FRALLEGO8001011;FRALLEGO8005021;FRALLEGO8005022", + "ref": "FRALLEGO8008532;FRALLEGO8008531;FRALLEGO8001012;FRALLEGO8001011;FRALLEGO8005021;FRALLEGO8005022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21765000000, + 50.17789700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/OWQGWF0OGT", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "479271", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P8162158875329228333", + "capacity": "22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57537900000, + 47.48387800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Bouc-Bel-Air, Boulevard Montesquieu", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PKT5N8G7RMY", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42315500000, + 43.44122000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "SDEY/JJRIOZKK95", + "capacity": "3", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "782625", + "ref:EU:EVSE": "FRS89P1692917031962688810" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63726900000, + 47.80602300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ3411;FRA16PWIIZ3412", + "start_date": "2018-06-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ANDON LAC DE THORENC", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*34*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80777100000, + 43.79950300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6724931880428618911", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/S2TJTN9BOP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "471168", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88284900000, + 49.15722100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Garage Pyrame - Aix-en-Provence", + "ref:EU:EVSE": "FRPD1PPYRALM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38134070000, + 43.48389360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref": "32941;PVHEQY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Annecy-le-Vieux, NRO;Réseau eborn/PVHEQY", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPNQTNQA;FREBNPPVHEQY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16885000000, + 45.93280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "description": "EVzen/6ad8a99c-3b52-4731-85ca-2287e79d38d9", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP8759062178180063878", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "789690" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61702700000, + 44.67421200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CAVE COOP VINIFI COSTIERES", + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*638*1*_*_", + "start_date": "2023-05-22", + "charging_station:output": "3.68 kW", + "description": "CAVE COOP DE VINIFICATION - MEZE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR63811", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60504900000, + 43.42761100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFQCR2BEGJF;FREBNP6091143454944642155", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Le Bourget-Du-Lac, Hélios, avenue du Lac Léman;Réseau eborn/FQCR2BEGJF", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "ref": "FQCR2BEGJF;346709", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87513800000, + 45.63972600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPDONJON", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Le Donjon, Guillotière;Réseau eborn/donjon", + "ref": "donjon;231520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79649000000, + 46.35020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SUPER U - CAUSSADE", + "ref:EU:EVSE": "FROTHPOTHR33041;FROTHPOTHR33011;FROTHPOTHR33021;FROTHPOTHR33031;FROTHPOTHR33051;FROTHPOTHR33061;FROTHPOTHR33071;FROTHPOTHR33081;FROTHPOTHR33091;FROTHPOTHR33092", + "network": "SYSTEME U", + "capacity": "1;2", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-03-30;2022-03-10", + "ref": "FR*SOD*S*OTHR*330*8*_*_;FR*SOD*S*OTHR*330*7*_*_;FR*SOD*S*OTHR*330*4*_*_;FR*SOD*S*OTHR*330*3*_*_;FR*SOD*S*OTHR*330*2*_*_;FR*SOD*S*OTHR*330*1*_*_;FR*SOD*S*OTHR*330*5*_*_;FR*SOD*S*OTHR*330*6*_*_;FR*SOD*S*OTHR*330*9*_*_", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52682600000, + 44.15540600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ASXOGWE8XL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2451728474616154983", + "ref": "514964", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02071400000, + 47.69878700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-03", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX15*31", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Rue Sébastien Mercier 44", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27969280000, + 48.84391050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WQHEFOD9T2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "491880", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1635248947105829310" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78000000000, + 46.79740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "CC Rives d'Alzon - Uzes", + "ref:EU:EVSE": "FRSSDPCCRIVESALZON307001", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42605500000, + 43.99222700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900015", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PVASCOEUILGARE", + "start_date": "2016-06-17", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38214500000, + 49.44407600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22113003", + "description": "Lannion Ursulines", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.45374500000, + 48.73156200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY35E78189001", + "description": "CRESPIERES - Place De L'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92411000000, + 48.88163900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE232", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "description": "Kiloutou_Metz", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17658020000, + 49.14309560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "AULNAY-SUR-MAULDRE - Place De La Mairie", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78033001", + "start_date": "2021-01-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84363330000, + 48.92878610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE409752;FRIOYE409751;FRIOYE409704;FRIOYE409701;FRIOYE409702;FRIOYE409703;FRIOYE409705;FRIOYE409706;FRIOYE409753", + "description": "Vendée", + "opening_hours": "24/7", + "network": "Vendée", + "ref": "FRIOYE409752;FRIOYE409751;FRIOYE409704;FRIOYE409701;FRIOYE409702;FRIOYE409703;FRIOYE409705;FRIOYE409706;FRIOYE409753", + "start_date": "2020-11-27", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11798110000, + 46.57342920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "248257", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDED52/AXLL5QQDT9", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS52P6958886607272474061", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79328900000, + 48.55213000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SARP - Parking Office Du Tourisme", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65407001", + "network": "Reveo", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58943000000, + 43.01893000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-03-06", + "ref:EU:EVSE": "FRIENE004702;FRIENE004701", + "network": "Neulise", + "ref": "FRIENE004702;FRIENE004701", + "description": "Neulise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786000, + 45.91482880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SETE - Quai D'Alger", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34301001", + "start_date": "2022-02-21", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69995277778, + 43.40197780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61093A", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "CHANU", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-CHNU-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67784200000, + 48.72935000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "LIDL;Freshmile France", + "amenity": "charging_station", + "description": "Saint-Geneviève-des-Bois - Plessis;Freshmile France/BBYPZLGJJL", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4256EVCP04;LFR4256EVCP03;LFR4256EVCP02;FRFR1P499800020578985313;LFR4256EVCP01", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "ref": "LFR4256EVCP01;706112;LFR4256EVCP02;LFR4256EVCP03;LFR4256EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401500000, + 48.63200500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-01", + "network": "Freshmile", + "description": "Lherm", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRS31PVXNBPK", + "ref": "VXNBPK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22182000000, + 43.43010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2020-11-16;2022-01-31", + "network": "DRIVECO", + "description": "BMW - Béthune", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00, Su 09:00-12:00, Su 14:00-19:00", + "ref:EU:EVSE": "FRSSDPLEMPEREURBMW624001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65951700000, + 50.51250700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Provendi - Ingeteam sur pied", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRCG0E000105;FRCG0E000106;FRCG0E000107", + "start_date": "2022-04-28", + "description": "Provendi - Ingeteam sur pied", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW", + "ref:EU:EVSE": "FRCG0E000105;FRCG0E000106;FRCG0E000107" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35120700000, + 46.27494200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "ref:EU:EVSE": "FRM06PNICE10822;FRM06PNICE10821", + "capacity": "2", + "network": "NICE AP", + "description": "NICE - PARKING CRONSTADT AP", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*108*2*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25744300000, + 43.69607200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "4dafdad7-eb55-5c8d-9079-b1efebcfa335", + "capacity": "2", + "description": "MOBIVE | Hagetmau | Parking des Arênes- Chemin de Loussets", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59247000000, + 43.65255400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE55PMFA", + "capacity": "3", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-01-26", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "La Favorite - Pagny-Sur-Meuse", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72529300000, + 48.68619800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS170169;FRBMPS170168", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "170169;170168", + "description": "Bump - Super U - Port en Bessin", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75205830000, + 49.34233170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3094EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "PLONEOUR LANVERN", + "ref": "LFR3094EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23742400000, + 47.87148500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-6E, Avenue de delphes", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PILU2D0DW8B", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38832300000, + 43.28470400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1026834;232495", + "ref:EU:EVSE": "FRS90PDYDNZG;FRS90P5035939666245260963", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "TE90/LLT8RMGC51TIYT;TE90/DYDNZG", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "TE90", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86114000000, + 47.60730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP420CRVGIGARO", + "charging_station:output": "22.08 kW", + "ref": "FR*55C*P420*CRV*GIGARO", + "description": "PARKING PLAGE DU GIGARO", + "operator:email": "contact@e55c.com", + "start_date": "2019-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59948500000, + 43.18409600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P27892565828449347", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/porcelavold", + "ref": "377468", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65478000000, + 49.15590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Système U - Saint-Laurent-d'Aigouze", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYUSLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19189800000, + 43.62897700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref": "UFGBSW;32959", + "description": "Annecy Meythet, Rue François Vernex;Réseau eborn/UFGBSW", + "ref:EU:EVSE": "FREBNPUFGBSW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09082000000, + 45.91410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFASE33114", + "operator": "Fastned France", + "amenity": "charging_station", + "network": "Fastned Aire de Valmy-Orbeval", + "capacity": "4", + "description": "Fastned Aire de Valmy-Orbeval", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "ref": "FRFASE33114", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "start_date": "2022-12-13", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78908895000, + 49.07232088000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*SENT*794*1*_*_", + "operator": "IZIVIA", + "description": "AGILAUTO - FAYENCE OPEN", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "network": "AGILAUTO", + "operator:email": "sav@izivia.com", + "start_date": "2023-07-20", + "ref:EU:EVSE": "FROTHPSENT79411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69680300000, + 43.62417300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPXJLPEH", + "description": "Bourg-De-Peage, Espace François Mitterrand;Réseau eborn/XJLPEH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31786;XJLPEH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06121000000, + 45.03040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLRP071S55P", + "description": "Labastide-De-Virac, Sous la Vielle;Réseau eborn/LRP071S55P", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "75083;LRP071S55P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39995700000, + 44.35168600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "start_date": "2022-09-13", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*452*1*_*_", + "opening_hours": "24/7", + "description": "VILLE DE CHATILLON SUR CHALARONNE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR45211;FROTHPOTHR45212", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95852500000, + 46.12080400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3380590947596203940", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "505599", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JDCFCTPI49" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75677900000, + 48.57209500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10005079;FRUBIE10055327", + "start_date": "2023-06-14", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Gymnase du Mont-Gaillard - 41 Avenue du Mont-Gaillard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11570600000, + 49.52555300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLVUSR76ZN0TJ3", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3468837139896507123", + "operator": "Freshmile | FR*FR1", + "ref": "1150800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19502300000, + 43.63370800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTLSE31069054", + "network": "CPO Alizé Liberté Public", + "description": "BLAGNAC - Parking du Canalet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40032600000, + 43.63515500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "735111", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/AZ7U5AZUP6", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6445450397702149503" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63247300000, + 50.18824000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P2222052629310350539", + "operator:email": "roaming@freshmile.com", + "ref": "1161294", + "amenity": "charging_station", + "capacity": "1", + "description": "MobiSDEC/LLW66ZW0LRZP0Q", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80719400000, + 49.09088600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ef5e1232-6107-4092-a936-f5ddc86549c5;895002;576284", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "Moulin des Ruats - 22 kW;Zephyre/LP009578;Zephyre/LP00959C", + "network": "Zephyre;Hostellerie Moulin des Ruats", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840365530", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr", + "ref:EU:EVSE": "FRZP1P3477978655230159582;FRZP1P12970687;FRZP1P5373308113473083648;FRZP1P130072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87937700000, + 47.48558200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT ANDRE DE ROQUELONGUE - Site Parking Du Foyer", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11332001", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "start_date": "2023-06-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83684570449, + 43.11452355956 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BAILLY - Rue Des chênes", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78043001", + "start_date": "2022-02-21", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07875850000, + 48.83975200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "ref": "f2c18284-9f11-5024-8fa9-e968487c94ec", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "description": "CCTLB - Moyen", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56954500000, + 48.48328600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66213001", + "network": "Reveo", + "description": "TOULOUGES - Boulevard De Clairfont", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83474000000, + 42.66338000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "charging_station:output": "200 kW;24 kW;7.36 kW;7 kW", + "socket:type2_combo:output": "24 kW;200 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*IKEA*195*8*_*_;FR*SOD*S*IKEA*195*6*_*_;FR*SOD*S*IKEA*195*4*_*_;FR*SOD*S*IKEA*195*3*_*_;FR*SOD*S*IKEA*195*18*_*_;FR*SOD*S*IKEA*195*17*_*_;FR*SOD*S*IKEA*195*16*_*_;FR*SOD*S*IKEA*195*15*_*_;FR*SOD*S*IKEA*195*14*_*_;FR*SOD*S*IKEA*195*11*_*_;FR*SOD*S*IKEA*195*1*_*_;FR*SOD*S*IKEA*194*9*_*_;FR*SOD*S*IKEA*194*8*_*_;FR*SOD*S*IKEA*194*7*_*_;FR*SOD*S*IKEA*194*6*_*_;FR*SOD*S*IKEA*194*5*_*_;FR*SOD*S*IKEA*194*15*_*_;FR*SOD*S*IKEA*194*14*_*_;FR*SOD*S*IKEA*194*13*_*_;FR*SOD*S*IKEA*194*10*_*_;FR*SOD*S*IKEA*186*9*_*_;FR*SOD*S*IKEA*186*6*_*_;FR*SOD*S*IKEA*186*4*_*_;FR*SOD*S*IKEA*186*3*_*_;FR*SOD*S*IKEA*186*12*_*_;FR*SOD*S*IKEA*186*11*_*_;FR*SOD*S*IKEA*186*10*_*_;FR*SOD*S*IKEA*186*1*_*_;FR*SOD*S*IKEA*186*2*_*_;FR*SOD*S*IKEA*186*5*_*_;FR*SOD*S*IKEA*186*7*_*_;FR*SOD*S*IKEA*186*8*_*_;FR*SOD*S*IKEA*194*1*_*_;FR*SOD*S*IKEA*194*11*_*_;FR*SOD*S*IKEA*194*12*_*_;FR*SOD*S*IKEA*194*2*_*_;FR*SOD*S*IKEA*194*3*_*_;FR*SOD*S*IKEA*194*4*_*_;FR*SOD*S*IKEA*195*12*_*_;FR*SOD*S*IKEA*195*13*_*_;FR*SOD*S*IKEA*195*19*_*_;FR*SOD*S*IKEA*195*20*_*_;FR*SOD*S*IKEA*195*2*_*_;FR*SOD*S*IKEA*195*21*_*_;FR*SOD*S*IKEA*195*5*_*_;FR*SOD*S*IKEA*195*7*_*_;FR*SOD*S*IKEA*195*9*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA19591;FRIKAPIKEA19581;FRIKAPIKEA19561;FRIKAPIKEA19551;FRIKAPIKEA19541;FRIKAPIKEA195201;FRIKAPIKEA195191;FRIKAPIKEA195181;FRIKAPIKEA195171;FRIKAPIKEA195161;FRIKAPIKEA195151;FRIKAPIKEA195141;FRIKAPIKEA195131;FRIKAPIKEA195121;FRIKAPIKEA195111;FRIKAPIKEA19461;FRIKAPIKEA19421;FRIKAPIKEA194151;FRIKAPIKEA194141;FRIKAPIKEA194131;FRIKAPIKEA194121;FRIKAPIKEA194101;FRIKAPIKEA18691;FRIKAPIKEA18681;FRIKAPIKEA18671;FRIKAPIKEA18661;FRIKAPIKEA186122;FRIKAPIKEA186121;FRIKAPIKEA186111;FRIKAPIKEA186101;FRIKAPIKEA186102;FRIKAPIKEA18611;FRIKAPIKEA186112;FRIKAPIKEA18621;FRIKAPIKEA18631;FRIKAPIKEA18641;FRIKAPIKEA18651;FRIKAPIKEA19411;FRIKAPIKEA194111;FRIKAPIKEA19431;FRIKAPIKEA19441;FRIKAPIKEA19451;FRIKAPIKEA19471;FRIKAPIKEA19481;FRIKAPIKEA19491;FRIKAPIKEA19511;FRIKAPIKEA19521;FRIKAPIKEA195211;FRIKAPIKEA19531;FRIKAPIKEA19571", + "description": "IKEA MONTPELLIER - PARKING CLIENTS CPT 1;IKEA MONTPELLIER - PARKING COLLABORATEURS;IKEA MONTPELLIER - PARKING CLIENTS CPT 2", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-09;2023-12-05;2023-12-04;2023-12-12;2024-07-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92420170000, + 43.60423500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35238009B1", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "RENNES - 3 place georges bernanos ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66056400000, + 48.12382900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63054B", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "start_date": "2022-08-10", + "description": "SIEG63 - ePremium - Le Broc - Vigneaux;SIEG 63/FR*S63*P63054*B", + "opening_hours": "24/7", + "ref": "518261", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24724700000, + 45.49948800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/GY89ZCH2XG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7378179944965254053", + "operator": "Freshmile | FR*FR1", + "ref": "782556" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97685600000, + 48.83006300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Villeneuve-les-bouloc", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS31PLLJZO7PBE2EPN3", + "ref": "YPYW", + "operator": "Freshmile SAS", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42733129026, + 43.76971180558 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOISY-LE-SEC - Rue du Progrès", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2024-06-24", + "ref:EU:EVSE": "FRSIPE93053008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46342000000, + 48.88760900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Skoda Labege - 31670 - 3", + "description": "Skoda Labege - 31670 - 3", + "amenity": "charging_station", + "ref": "FRCG0E001014;FRCG0E001013;FRCG0E001011;FRCG0E001010;FRCG0E001006;FRCG0E001005;FRCG0E001007;FRCG0E001009;FRCG0E001012", + "start_date": "2023-05-16", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001014;FRCG0E001013;FRCG0E001011;FRCG0E001010;FRCG0E001006;FRCG0E001005;FRCG0E001007;FRCG0E001009;FRCG0E001012", + "capacity": "9", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50913300000, + 43.55275400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CASTAGNIERS - PARKING LES OLIVIERS", + "ref": "FR*SOD*S*NICE*225*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "start_date": "2023-07-18", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE22511;FRM06PNICE22512", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23142883754, + 43.79171533036 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Nérac | Médiathèque | Droite", + "ref": "5da532e1-730b-5b35-9711-7e43e0ab081d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34265000000, + 44.13497500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-03", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36611;FRSIGPSIGE36612", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 9 MAIL DES OMBRAGES - HERBLAY-SUR-SEINE", + "ref": "FR*SOD*S*SIGE*366*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12663000000, + 49.01690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76319001", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-07", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GRAND COURONNE - Place de la République" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00866700000, + 49.35761400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3638EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "MARCKOLSHEIM Ortenbourg", + "ref": "LFR3638EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54744800000, + 48.17264700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Neuvic Ville | Place Henri Queuille", + "operator": "193__Syndicat de la Diège", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "262a7a49-c7d8-56f3-a823-8efd19769948" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27094000000, + 45.38308000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS82P3999298511125721639", + "charging_station:output": "24 kW;22 kW", + "network": "SDE82", + "description": "SDE82/RAISILQQHR", + "ref": "706049", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23694000000, + 43.85347000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2023-07-31;2023-07-19", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP84300CVLGAUTH1ER", + "description": "PARKING PAUL GAUTHIER - CAVAILLON", + "ref": "FR*55C*P84300*CVL*GAUTH1ER", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04206200000, + 43.83656500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3770EVCP02;LFR3770EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "PLOERMEL Brocéliande", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3770EVCP02;LFR3770EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38749100000, + 47.94270700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMJLM", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Jarville-la-Malgrange", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "start_date": "2022-04-29", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20828581482, + 48.66918276337 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref": "85736;BMGNQC", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPBMGNQC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Annecy, Route De Vignieres;Réseau eborn/BMGNQC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13666000000, + 45.90780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - B&B Saint Jean de Luz", + "start_date": "2024-04-09", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64483A", + "ref:EU:EVSE": "FRETIP64483A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62999532485, + 43.40606649824 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "charging_station:output": "50 kW;100 kW;187.5 kW;22 kW", + "description": "Chaussea Sainte-Marie-aux-Chêne (57)", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-09-19", + "ref:EU:EVSE": "FRPD1PCHASAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99648661891, + 49.19801499221 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT422101", + "start_date": "2023-12-11", + "description": "Carrefour Market Montrond-Les-Bains", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23278000000, + 45.64268900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPMARSO", + "capacity": "2", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "Marseille - Sofitel Vieux Port", + "start_date": "2024-06-27", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36102800000, + 43.29233200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "63 kW", + "ref:EU:EVSE": "FROTHPOTHR56552;FROTHPOTHR56551;FROTHPOTHR56542;FROTHPOTHR56541;FROTHPOTHR56532;FROTHPOTHR56531;FROTHPOTHR56521;FROTHPOTHR56512;FROTHPOTHR56511;FROTHPOTHR56522;FROTHPOTHR56553", + "start_date": "2024-03-28;2023-01-26", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*565*5*_*_;FR*SOD*S*OTHR*565*2*_*_;FR*SOD*S*OTHR*565*1*_*_;FR*SOD*S*OTHR*565*3*_*_;FR*SOD*S*OTHR*565*4*_*_", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "22 kW;63 kW", + "opening_hours": "24/7", + "description": "INTERMARCHE - LISLE SUR LE DOUBS", + "operator:email": "sav@izivia.com", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57982500000, + 47.44802300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAS AUNAUDIS BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "network": "SAS AUNAUDIS BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6753115", + "operator:email": "info@chargepoint.com", + "start_date": "2023-07-21", + "ref": "FRCPIE6753115" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04654600000, + 47.84988700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "597801", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8580500372388920564", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/EVMYWOAM15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72021000000, + 45.93848200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "ref": "FR*V75*P9006*01", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue Danton 7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P900601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34148300000, + 48.85245900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1189789", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LM03MD0WQ14JFY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6062101720508092285", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98052400000, + 47.41034000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP13281", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Reims, France - Tinqueux", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97595900000, + 49.25293100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "892332", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJ3Z2AGU2555D", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1480029243458028563" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92307800000, + 45.71597800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GALILEO", + "operator:email": "contact@nexteneo.com", + "capacity": "2", + "amenity": "charging_station", + "description": "GALILEO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "NEXTENEO", + "ref:EU:EVSE": "FR0NXPOOL8T9XK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07996700000, + 45.89479800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P6137480459459800159", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "461967", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/ULAU7GGFK3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25821600000, + 49.28837600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-29", + "operator:email": "support@alizecharge.fr", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12202001", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;150 kW", + "description": "RODEZ - ZA Les Moutiers ", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57229300000, + 44.36411600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LSASEHOA4", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P5871996362508418426", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref": "932052", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56688800000, + 48.86603700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "SAINT-MATHURIN-SUR-LOIRE - Place du 19 Mars 1962;OuestCharge - Diva Sp - Saint-Mathurin-sur-Loire - 1962", + "amenity": "charging_station", + "start_date": "2021-04-20;2024-04-10", + "ref:EU:EVSE": "FRS49P49307A;FRS49E49307001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32078000000, + 47.41070700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81081001", + "description": "DOURGNE - Rue De La Boal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13686000000, + 43.48345000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF006467", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680671;531680668;531680669;531680670", + "start_date": "2023-07-11;2021-06-22", + "capacity": "4", + "description": "RELAIS SOLAIZE", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006467", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83580000000, + 45.65160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS46E46055001", + "operator": "Bouygues E&S", + "description": "CAPDENAC LE HAUT - Parking des jardins", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07055000000, + 44.58200200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65025002", + "start_date": "2022-02-10", + "network": "Reveo", + "description": "ARGELES GAZOST - Roquette Buisson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10288000000, + 43.00361000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SEBOURG - Rue des Censés d'en haut", + "ref:EU:EVSE": "FRH03E59559001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64358800000, + 50.34412760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2919500", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plouguerneau-Route de Kervenni" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.55591300000, + 48.61944200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NOGENT-SUR-MARNE - Rue Charles VII", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94052003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48609300000, + 48.83651200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Rennes Ouest Villejean", + "amenity": "charging_station", + "start_date": "2024-03-21", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90223816" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71605900000, + 48.11712300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "c7843b16-4d22-5c0f-a4bf-3bc52ae08f00", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Gardonne | Rue de la Mairie", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33199500000, + 44.83628100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - 29 RUE CLAUDE MONET - CARRIERES-SUR-SEINE", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE47622;FRSIGPSIGE47621;FRSIGPSIGE47612;FRSIGPSIGE47611", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-04-12", + "ref": "FR*SOD*S*SIGE*476*2*_*_;FR*SOD*S*SIGE*476*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18280870000, + 48.90604730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLPEVCARSSENSM", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-11-27", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "SENS MAILLOT", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30333300000, + 48.18700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "QUIMPER Libération", + "ref": "LFR1952EVCP02;LFR1952EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR1952EVCP02;LFR1952EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07462200000, + 47.99122000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "59db76a1-4a61-5087-8d4a-c409d4bc0f09", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Tardets | Parking du lavoir", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86416300000, + 43.11635200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-20", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "charging_station:output": "50 kW;43 kW", + "description": "CHALLANS - Route De Nantes", + "ref:EU:EVSE": "FRS85E85047001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86445796500, + 46.86124802000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego FR, Tikehau, TJ2 Rouen", + "capacity": "8", + "amenity": "charging_station", + "network": "Allego FR, Tikehau, TJ2 Rouen", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO8009992;FRALLEGO8009991;FRALLEGO8009982;FRALLEGO8009981;FRALLEGO8005522;FRALLEGO8005521;FRALLEGO8005511;FRALLEGO8005512", + "ref": "FRALLEGO8009992;FRALLEGO8009991;FRALLEGO8009982;FRALLEGO8009981;FRALLEGO8005522;FRALLEGO8005521;FRALLEGO8005511;FRALLEGO8005512", + "start_date": "2024-02-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10598900000, + 49.36602800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AVALLON Pontaubert", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3722EVCP05;LFR3722EVCP04;LFR3722EVCP03;LFR3722EVCP02;LFR3722EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3722EVCP05;LFR3722EVCP04;LFR3722EVCP03;LFR3722EVCP02;LFR3722EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "capacity": "10", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89737600000, + 47.49664200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "charging_station:output": "50 kW;100 kW;22 kW;150 kW", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-04-14;2023-04-15", + "ref:EU:EVSE": "FRPD1PKYRCMF", + "opening_hours": "24/7", + "description": "Kyriad - Clermont-Ferrand-Sud La Pardieu", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14226103069, + 45.76057328660 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/ZOZRCQYIPI;Chorges, Parking des Ecoles", + "ref:EU:EVSE": "FREBNPZOZRCQYIPI", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30377;ZOZRCQYIPI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27804500000, + 44.54313900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HYUNDAI CENTRAL AUTOS FRANCHEVILLE", + "owner:ref:FR:SIREN": "780096376", + "operator": "EV MAP SAS", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "capacity": "3", + "network": "CENTRAL MOTOR FRANCHEVILLE", + "opening_hours": "Mo-Fr 08:00-19:00", + "ref:EU:EVSE": "FREVMP6649", + "socket:type2_combo:output": "60 kW", + "operator:email": "contact@evmap.fr", + "start_date": "2024-01-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77002930000, + 45.74639970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PETXBSC", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-07-26;2023-06-01", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Kiabi - Besançon", + "capacity": "10", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95024288014, + 47.21786823854 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SWISH", + "ref:EU:EVSE": "FRE10P", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-12-04", + "network": "Superchargeur Swish", + "owner:ref:FR:SIREN": "834651820", + "opening_hours": "24/7", + "description": "Swish-Cerel-Roissy-Superchargeur", + "operator:email": "contact@swishforgood.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52000000000, + 48.99000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRESEPS42237AB", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "description": "SEMOB STEEL", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRESEPS42237AB", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW", + "start_date": "2020-04-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42241900000, + 45.44473800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING CHADOTEL - LA DUNE DES SABLES - LES SABLES DOLONNE", + "ref:EU:EVSE": "FROTHPOTHR13521;FROTHPOTHR13511", + "start_date": "2021-02-16", + "charging_station:output": "3.68 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*135*2*_*_;FR*SOD*S*OTHR*135*1*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "network": "CAMPING CHADOTEL - LA DUNE DES SABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81425300000, + 46.51186400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6929245", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-04-30", + "ref:EU:EVSE": "FRCPIE6929245", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CAMPING GOULET BORNE 1", + "network": "CAMPING GOULET BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.53999500000, + 48.36508100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/WC1AKJFZH5", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2858634771203148671", + "ref": "370178" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21293300000, + 43.59465000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "operator": "Greenflux", + "description": "ENGIE Vianeo - B&B HOTEL AIX-EN-PROVENCE LE THOLONET", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP122035", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48732300000, + 43.51149300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7616987407522964014", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "368935", + "description": "Freshmile France/TNQRV3FCLS", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60087900000, + 44.81902000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "start_date": "2024-02-23", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBYMYCARAUDI383001", + "opening_hours": "24/7", + "description": "Audi - ByMyCar - Bourgoin Jallieu", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25841500000, + 45.58735100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/KHYFHA", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7847640422888833581", + "operator": "Freshmile | FR*FR1", + "ref": "377456" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86760000000, + 50.10570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref": "FRS28E129287", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BONNEVAL - Promenade du mail", + "description": "MODULO - BONNEVAL - Promenade du mail", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E129287", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38502700000, + 48.18248100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P7687912921243991926", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461787", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/JERHB0BEAB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36595900000, + 49.18095800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P267002318206980794", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "description": "WAAT/FRWA6LTJEAN9QQ", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128093", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53764300000, + 50.34561400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LA HAYE PESNEL - Parking du Thar", + "ref:EU:EVSE": "FRS50P50320002", + "network": "e-charge50", + "start_date": "2016-10-28", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39438100000, + 48.79412510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "RABASTENS 2 - Place Auger Gaillard", + "ref:EU:EVSE": "FRS81E81220002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72223000000, + 43.81928000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF067705", + "amenity": "charging_station", + "ref": "FRHPCPNF067705", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680451;531680452", + "start_date": "2020-06-30", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS LA POMME", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "50 kW;175 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45430000000, + 43.29230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-28;2024-04-04", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49007029;FRS49P49007AC", + "description": "ANGERS - Rue Max Richard;OuestCharge - Diva Sp - Angers - Richard", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55772100000, + 47.46610600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "46573", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/coyelaforet", + "ref:EU:EVSE": "FRS60PCOYELAFORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47028000000, + 49.14050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ANICHE - Rue des Frères Fâche", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH07E59008003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24284400000, + 50.33411000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30032001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BEAUCAIRE - Quai Sadi Carnot", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64229400000, + 43.80523300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-08-03", + "description": "Saint-perreux - Rue de la Mairie", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSKSKQS", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10625200000, + 47.66724200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "NVH", + "start_date": "2024-02-01", + "ref:EU:EVSE": "FRLMSE1234606462", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "972626373", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "0", + "operator:email": "supervision@nvh-france.fr", + "description": "AUTO24", + "network": "AUTO24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90000000000, + 48.13000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Metropolis - Citadine - Saint-Denis - Cheminots;Métropolis/FR*MGP*P93066*A", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93066A", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "start_date": "2022-01-24", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "475035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35242300000, + 48.91779800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "M2026;M2025;M2023;M2024", + "operator:email": "contact@sga-industries.com", + "network": "Réseau de recharge DEBELEC", + "operator": "SGA Industries", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRSGAP1M2026;FRSGAP1M2024;FRSGAP1M2023;FRSGAP1M2025", + "start_date": "2021-10-04", + "charging_station:output": "22 kW;1.7 kW", + "opening_hours": "Mo-Fr 08:30-16:30", + "owner:ref:FR:SIREN": "507500775" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29818500000, + 43.21257400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRAU10032", + "capacity": "2", + "network": "Réseau de recharge CENTRAKOR", + "amenity": "charging_station", + "start_date": "2022-09-22", + "ref": "a013cc8c-e4fe-4b33-b189-7b94a2eb58ea", + "operator": "AUTORECHARGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CENTRAKOR - SARL WILIS", + "operator:email": "CONTACT@AUTORECHARGE.FR", + "owner:ref:FR:SIREN": "493964464" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44715306622, + 43.32939290277 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - A11 Brou-Dampierre", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "start_date": "2022-12-14;2023-02-08", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89369714", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08259100000, + 48.23933700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Bellac | Place du Champ de Foire", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "f5cf5a2b-765d-51a0-8006-695d19eabebd", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05087900000, + 46.12036100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Tennis Club - BEAUVAIS", + "ref:EU:EVSE": "FRSE1PSE60BVTA", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09353500000, + 49.43022800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Sete", + "amenity": "charging_station", + "network": "Allego Carrefour Sete", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9009042;FRALLEGO9001482;FRALLEGO9000892;FRALLEGO9000891;FRALLEGO9001401;FRALLEGO9001402;FRALLEGO9001481;FRALLEGO9008491;FRALLEGO9008492;FRALLEGO9009041", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "10", + "start_date": "2024-05-26", + "ref:EU:EVSE": "FRALLEGO9001482;FRALLEGO9001481;FRALLEGO9000892;FRALLEGO9000891;FRALLEGO9001401;FRALLEGO9001402;FRALLEGO9008491;FRALLEGO9008492;FRALLEGO9009041;FRALLEGO9009042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69058400000, + 43.46275500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3549EVCP03;LFR3549EVCP02;LFR3549EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CHOCQUES Béthune", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3549EVCP03;LFR3549EVCP02;LFR3549EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58940400000, + 50.53882000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-13E, 1 Rue Augustin Fresnel", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PGJM32KDT73", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44664300000, + 43.34285600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "KMY7EK3TVS;31903", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPKMY7EK3TVS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Moras-En-Valloire, Le Village;Réseau eborn/KMY7EK3TVS", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99381100000, + 45.29085400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3133913027694519643", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/SYMTCVEZGS", + "ref": "346478", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61144000000, + 48.01950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parc Commercial de la Jaufertie - Soyaux", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PIMCSOY", + "capacity": "18", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-04-18", + "operator": "Power Dot France", + "socket:type2_combo:output": "187.5 kW", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "187.5 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20501118280, + 45.63818836381 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Corrençon-En-Vercors, Parking RD 215", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref": "UGZUCTHE6K", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPUGZUCTHE6K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52714720000, + 45.03263890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FREFLP156347917306155920", + "network": "Road", + "amenity": "charging_station", + "opening_hours": "Fr,Sa,Tu,We,Su,Mo,Th 08:00-18:00", + "ref": "1025487", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/65e1f087d68795001c8877d8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31534700000, + 49.35838100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR24931;FROTHPOTHR24921;FROTHPOTHR24911;FROTHPOTHR24941", + "description": "LES CAVES DE LA LOIRE - BRISSAC-LOIRE-AUBANCE", + "ref": "FR*SOD*S*OTHR*249*4*_*_;FR*SOD*S*OTHR*249*3*_*_;FR*SOD*S*OTHR*249*2*_*_;FR*SOD*S*OTHR*249*1*_*_", + "network": "LES CAVES DE LA LOIRE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45421500000, + 47.35181900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED MONTATAIRE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6601735", + "ref": "FRCPIE6601735", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "description": "CGED MONTATAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45002900000, + 49.25499300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/M07QKYRRKD", + "operator:email": "roaming@freshmile.com", + "ref": "521324", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3731705834419399374", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80992800000, + 46.47206000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/s437359", + "ref:EU:EVSE": "FRWA2P1871021325649063008", + "operator:email": "exploitation@waat.fr", + "ref": "120701", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35931100000, + 48.74429700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLIVSBLIT1W0MF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2009960001413074916", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892269" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.89889000000, + 48.72328600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1234605582", + "ref:EU:EVSE": "FRSWSE1234605582", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-17", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 2x22kW MG THONON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44053500000, + 46.35115200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "ref:EU:EVSE": "FRFR1P3973661935771331606", + "opening_hours": "24/7", + "ref": "491940", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BOYXK5TOYQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58068200000, + 48.72619600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Renault - Trucks Bourg-en-Bresse", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT014401", + "network": "DRIVECO", + "opening_hours": "Mo 05:00-19:00, Tu 05:00-19:00, We 05:00-19:00, Th 05:00-19:00, Fr 05:00-19:00", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-02-16", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25817500000, + 46.22969400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E240810", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - STE GEMME MORONVAL - Rte. Nogent le Roi", + "ref:EU:EVSE": "FRS28E240810", + "network": "MODULO - STE GEMME MORONVAL - Rte. Nogent le Roi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39109100000, + 48.72765400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "437854508", + "ref": "FRWBCERCG0C21101", + "operator:email": "support@wellborne.fr", + "operator": "Wellborne", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-05-31", + "description": "SAFEXIS", + "network": "SAFEXIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13836500000, + 49.04508400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39743", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1742551579745511245", + "description": "SDEA 10/ERKIMUKWMI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73673000000, + 48.40372500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P8098345682113899029", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP009E82", + "opening_hours": "Fr,We,Tu,Sa,Th,Mo,Su 08:00-17:00,Su,We,Fr,Tu,Sa,Th,Mo 00:00-23:59", + "charging_station:output": "22 kW", + "ref": "576350", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32303500000, + 43.73129100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-06", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "carre_creation", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE60", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82038100000, + 45.89816400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/serignac", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS82PSERIGNAC", + "ref": "46666", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02086000000, + 43.92090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - PORT LEUCATE", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-05-23", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST13313;FRIZFPFAST13311;FRIZFPFAST13312", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*133*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03826950000, + 42.84132380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS41E4436;FRS41E4437", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - BRACIEUX - Rue de Candy", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - BRACIEUX - Rue de Candy", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4436;FRS41E4437", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54504300000, + 47.54912900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PSONGEONS", + "ref": "38824", + "description": "Mouv'Oise/songeons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85339000000, + 49.54820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON4922;FRGLYPLYON4921;FRGLYPLYON4911;FRGLYPLYON4912", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2020-11-02", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*49*1*_*_;FR*SOD*S*LYON*49*2*_*_", + "operator:email": "sav@izivia.com", + "description": "NEU01 - CENTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83850600000, + 45.87746700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30258002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-11-30", + "description": "SAINT GILLES - Place Jean Jaures", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43392000000, + 43.67705000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PCNAHPN", + "description": "Moustoir-ac - Rue de la Maillette", + "start_date": "2016-12-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83353600000, + 47.85572200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4457826702712143364", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1087749", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLNVX1QHN1XU0K", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16174000000, + 49.08570400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "capacity": "1", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "1070394", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/a7249c2e-d2c9-4f95-aa87-103e979107a1", + "ref:EU:EVSE": "FRMW1P5942204509483969382", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33137000000, + 43.47642800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "description": "SIGEIF - RUE DU DOCTEUR SCHWEITZER - BAGNEUX", + "start_date": "2021-09-27", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*185*4*_*_;FR*SOD*S*SIGE*185*3*_*_;FR*SOD*S*SIGE*185*2*_*_;FR*SOD*S*SIGE*185*1*_*_;FR*SOD*S*SIGE*185*5*_*_", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FRSIGPSIGE18551;FRSIGPSIGE18511;FRSIGPSIGE18521;FRSIGPSIGE18531;FRSIGPSIGE18541", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31314900000, + 48.79009700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "100 kW;150 kW;11 kW", + "capacity": "5", + "description": "Groupe C.A.R - Audi La rochelle - 17000", + "ref": "FRCG0E001562;FRCG0E001561;FRCG0E001560;FRCG0E001559;FRCG0E001563", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Groupe C.A.R - Audi La rochelle - 17000", + "ref:EU:EVSE": "FRCG0E001562;FRCG0E001561;FRCG0E001560;FRCG0E001559;FRCG0E001563", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13966600000, + 46.14251300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "50 kW;300 kW", + "charging_station:output": "50 kW;22 kW;300 kW;63 kW", + "start_date": "2023-07-06", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A11 Les Manoirs du Perche", + "ref:EU:EVSE": "FRLMSP89892624" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08310300000, + 48.24036900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-05", + "ref:EU:EVSE": "FRS40PMB406012;FRS40PMB406011;Non concerné;FRS40PMB406013;FRS40PMB406014", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB40*60*1*_*_;c7ff99a8-9e06-5017-9d2b-a5be8e76be45", + "description": "GRENADE SUR ADOUR - AVENUE DE HESINGUE;MOBIVE | Grenade Sur Adour | Avenue de Hesingue", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846000000, + 43.77366300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "MEAUX - QUAI SADI CARNOT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE77MXYA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-12-20", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88067100000, + 48.95651700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Allego Carrefour Sens-Voulx", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9006862;FRALLEGO9006861;FRALLEGO9006582;FRALLEGO9006581;FRALLEGO9003822;FRALLEGO9003821", + "ref": "FRALLEGO9006862;FRALLEGO9006861;FRALLEGO9006582;FRALLEGO9006581;FRALLEGO9003822;FRALLEGO9003821", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-26", + "description": "Allego Carrefour Sens-Voulx" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26560400000, + 48.19985900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "charging_station:output": "120 kW;50 kW;22 kW", + "description": "ACHERES Communes", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3389EVCP02;LFR3389EVCP01;LFR3389EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3389EVCP02;LFR3389EVCP01;LFR3389EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05834600000, + 48.96255400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34172015", + "charging_station:output": "22 kW", + "description": "MONTPELLIER - 147 Rue Alfred Nobel", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91139230000, + 43.61542200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLTHE8SI73160G;Aix-les-Bains, Aquarium", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP7622469372634649378;FREBNPLLTHE8SI73160G", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "1154088;LLTHE8SI73160G", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88965200000, + 45.69371600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "419109", + "description": "Freshmile France/HMPLJPJZBZ", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2705860746038425025", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90296000000, + 46.00341000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E91122001", + "description": "BURES SUR YVETTE - Gare RER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16425300000, + 48.69716600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAZRHEFA8M", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "ref": "SAZRHEFA8M", + "operator:email": "contact@reseau-eborn.fr", + "description": "Huez, Parking Des Bergers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07816860000, + 45.08866460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2022-12-07", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Villepinte - Hôtel Campanile", + "capacity": "4", + "ref:EU:EVSE": "FRELCPVILHC", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55363000000, + 48.96130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Moret sur Loing P+R - EFFIA", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E77316001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80459370000, + 48.37626880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR PERPIGNAN", + "description": "SONEPAR PERPIGNAN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6634095", + "ref": "FRCPIE6634095", + "charging_station:output": "22 kW", + "start_date": "2023-01-06", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86780000000, + 42.68468500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/X7EOR3LLXV", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHP7343505269675106713", + "ref": "756951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43123800000, + 46.70393900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX17*04", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1704", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "description": "Paris | Avenue de la Porte Pouchet 6", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32345200000, + 48.89797430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLW91O9T02ERBN", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1112841", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7479234424147501815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28558900000, + 46.27243800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01489", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AMP | Roquefort La Bedoule", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*TCB*P01489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59177300000, + 43.24690200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/I6PHLSC2S6", + "ref:EU:EVSE": "FRFR1P5080135482227252645", + "operator": "Freshmile | FR*FR1", + "ref": "749325" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35012200000, + 46.95691900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPAXXIABMW182301", + "description": "BMW Mini - Bourges", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-18:00", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-05-23", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37369500000, + 47.11830300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "charging_station:output": "184 kW;50 kW;43 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "50 kW;184 kW", + "description": "MELLAC - Fourniture et Pôle d'Activité Kervidanou", + "start_date": "2023-03-23;2023-08-09", + "ref:EU:EVSE": "FRS29E29147001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58497600000, + 47.86893500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DOUZENS - Avenue Des Corbières", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11122001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59017600000, + 43.18494200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CITROEN ET DS STORE - REIMS", + "opening_hours": "Lu- Ve 08:00-19:00, Sa 09:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "Citroen DS Auto Bernard - Reims - 22kW AC ", + "owner:ref:FR:SIREN": "802892794", + "operator:email": "advenir@zeborne.com", + "start_date": "2023-02-27", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRZPEE175100;FRZPEE175099", + "ref": "E175100;E175099", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08124900000, + 49.23891000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FOIX - Square Gabriel Fauré", + "ref:EU:EVSE": "FRS09E09122001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60429200000, + 42.96316200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/fressenneti", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80P3369813014407477315", + "network": "FDE 80", + "ref": "471000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57458300000, + 50.06576100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "start_date": "2024-09-27", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*276*1*_*_", + "description": "IZIVIA FAST - MCDONALDS - PODENSAC", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST27613;FRIZFPFAST27611;FRIZFPFAST27612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36101320000, + 44.65389040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "start_date": "2024-04-18;2024-04-16;2021-04-07", + "description": "OuestCharge - Diva Sp - Couffe - Havre;COUFFE - Rue De La Vallée Du Havre", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44E44048001;FRS44P44048A", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29415700000, + 47.39103000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRS77E77131003", + "socket:type2_combo:output": "24 kW", + "description": "COULOMMIERS - Parking des tanneries" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08766850000, + 48.81196680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IBIS GOLF ST TROPEZ", + "description": "IBIS GOLF ST TROPEZ", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000085922;FRGSPP1000085961" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53885006734, + 43.24899205129 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220244;FRS37E220243", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - CHÂTEAU RENAULT 1842 - Gare Bd. National", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220244;FRS37E220243", + "description": "MODULO - CHÂTEAU RENAULT 1842 - Gare Bd. National" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90214200000, + 47.58743800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "0c6df2aa-0a13-5ad0-9e2b-628b9627fa24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CCTLB - Glonville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69115400000, + 48.47356700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Garage de la Marinière", + "operator": "E-TOTEM", + "ref": "FRG10P91235A", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "100 kW", + "description": "Garage de la Marinière", + "ref:EU:EVSE": "FRG10P91235A", + "opening_hours": "24/7", + "start_date": "2023-01-06", + "operator:email": "contact@e-totem.fr", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37191200000, + 48.62244600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | SAINT-GEOURS-DE-MAREMNE | Parking Aygueblue", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40", + "ref": "89453d8f-9020-5a63-9b6e-ceadc91b44c9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23453300000, + 43.70800600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94068026", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Jean Jaurés", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48157144592, + 48.78873542550 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "UEXPRESS NOVES UEXPRESS", + "ref": "FRCPIE6524775", + "description": "UEXPRESS NOVES UEXPRESS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6524775", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90393000000, + 43.87780100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LLRKN1OALZL308", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P2912187275272938856", + "charging_station:output": "22 kW", + "ref": "1017081" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56023900000, + 45.57489300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "42806b4b-3205-5b90-9d14-78d1c7357f20", + "description": "MOBIVE | Thiviers | Place du Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91911400000, + 45.41589000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-12-22", + "description": "Réseau AlterBase - St Hilaire la Palud - La Poste", + "ref:EU:EVSE": "FRSEOPAB41018A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71177102000, + 46.26240115000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "18", + "amenity": "charging_station", + "description": "Airbus - Marignane - Parking P2", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2023-06-26;2023-04-20", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS3130014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23208900000, + 43.43406600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3018EVCP01;LFR3018EVCP02", + "capacity": "4", + "ref": "LFR3018EVCP01;LFR3018EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "FERRIERES EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80837700000, + 48.08989100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM45P4729495935697454842", + "ref": "414750", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/I6GJEEHANQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90126000000, + 47.90074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GUILLAUMES - PARKING PLACE NAPOLEON 3", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*157*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ15712;FRA16PWIIZ15711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2022-08-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85460900000, + 44.08953100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/KLBKXT19XL", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3880383893638431804", + "operator": "Freshmile | FR*FR1", + "ref": "749337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92566700000, + 48.85849200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-26", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Burger King - Dreux", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PBDMDR2", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36905676102, + 48.74857376097 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP6358291064869180010;FREBNP4228596172528410160", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/KHJBBVINUJ;Réseau eborn/UTIMKUAQVQ", + "ref": "399014;399020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97218300000, + 43.12926700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPLUTHK", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-09-14", + "description": "Lutterbach - Hôtel Kyriad", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29231700000, + 47.75931100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2024-01-18;2023-07-18;2023-11-01", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MARSEILLE - Castellane", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "ref:EU:EVSE": "FRP07E132020062;FRP07E132020061;FRP07E13202006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38573520000, + 43.28476970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "description": "BORNE HU BORNE DC 02", + "amenity": "charging_station", + "network": "BORNE HU BORNE DC 02", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6714275;FRCPIE6707215;FRCPIE6714285;FRCPIE6739225", + "ref:EU:EVSE": "FRCPIE6714275;FRCPIE6707215;FRCPIE6714285;FRCPIE6739225" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48955600000, + 43.45039300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHP5248397083227173104;FRECHPZDHWTXVFAL", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "ZDHWTXVFAL;470994", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;22 kW", + "charging_station:output": "50 kW;22 kW", + "description": "Vienne, Parking Saint-Louis;Easy Charge/ZDHWTXVFAL", + "start_date": "2021-07-20;2022-04-20", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87419000000, + 45.52793000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "description": "ENGIE Vianeo - A5 Chateauvillain Orges", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP101103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96054000000, + 48.05761100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20743120000, + 49.97151510000 + ], + [ + 1.20734140000, + 49.97171350000 + ], + [ + 1.20744890000, + 49.97173360000 + ], + [ + 1.20753810000, + 49.97153650000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "472272", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2593373866762622395", + "description": "Freshmile France/UJRBFAQ6K8", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75892400000, + 48.62711500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Paris | Avenue de Friedland 42", + "ref": "FR*V75*PPX08*05", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "ref:EU:EVSE": "FRV75PPX0805", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29763580000, + 48.87416420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ENQKRY", + "ref:EU:EVSE": "FRFR1PENQKRY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "120599" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56569000000, + 48.52430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "7.36 kW", + "description": "Corse travaux - Aléria", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPCORSETRVX202701", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50751800000, + 42.11324400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SYDED/besacgranvel", + "ref": "120662", + "ref:EU:EVSE": "FRS25PBESACGRANVEL", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02526000000, + 47.23510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MEREAU - Pl. de la mairie", + "ref:EU:EVSE": "FRS18E201365;FRS18E201364", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - MEREAU - Pl. de la mairie", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS18E201365;FRS18E201364", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05005000000, + 47.16264000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "08:00-18:00", + "start_date": "2023-04-24", + "description": "GITE 3 ELEPHANTS", + "network": "GITE DE FRANCE", + "operator": "BURNEYKO LARISA ET SOMPAIRAC THIERRY", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "ref": "7a2cf4e5-e155-4842-8fe2-94d4adbd7c39", + "operator:email": "tsompairac@mac.com", + "owner:ref:FR:SIREN": "831127576", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22023700000, + 43.70168000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-02-16;2024-02-09", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPQPRK10791;FRQPKPQPRK10761;FRQPKPQPRK10751;FRQPKPQPRK10741;FRQPKPQPRK10731;FRQPKPQPRK10721;FRQPKPQPRK10711;FRQPKPQPRK10771;FRQPKPQPRK10781", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "description": "QPARK - BOULOGNE-SUR-MER - AQUARIUM NAUSICAA", + "ref": "FR*SOD*S*QPRK*107*8*_*_;FR*SOD*S*QPRK*107*7*_*_;FR*SOD*S*QPRK*107*6*_*_;FR*SOD*S*QPRK*107*2*_*_;FR*SOD*S*QPRK*107*1*_*_;FR*SOD*S*QPRK*107*3*_*_;FR*SOD*S*QPRK*107*4*_*_;FR*SOD*S*QPRK*107*5*_*_;FR*SOD*S*QPRK*107*9*_*_", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59865171660, + 50.72883141150 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW;36 kW", + "ref:EU:EVSE": "FRS81E8103700121;FRS81E81037001;FRS81E8103700111;FRS81E8103700112;FRS81E8103700122", + "capacity": "1;2", + "operator:email": "fr.duhamel@bouygues-es.com;support@alizecharge.fr", + "description": "BRASSAC - Place De Castelnau", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S;BOUYGUES ENERGIES SERVICES", + "start_date": "2018-05-31;2022-03-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49632800000, + 43.63097300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Taponas", + "start_date": "2019-11-08", + "ref:EU:EVSE": "FRIONE403900", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE409800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88957300000, + 44.02430400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS44E44163002;FRS44P44163B", + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-29", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Saint-Herblon - Versailles;SAINT-HERBLON - Rue De Versailles", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09568300000, + 47.40620600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-08;2024-03-22", + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77P77404B;FRS77E77404002", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "0831b0ef-bc83-4897-a7aa-b33442e14684", + "description": "Sainte-Colombe - Parking Septveilles;SAINTE-COLOMBE - Parking Septveilles", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25626900000, + 48.52994800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-10-21;2021-10-22", + "ref": "FRHPCPNF078551", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "description": "RELAIS FONTBELLEAU", + "owner:ref:FR:SIREN": "531680730;531680729;531680727;531680728", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "175 kW", + "ref:EU:EVSE": "FRHPCPNF078551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50630000000, + 44.87360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BEAUMONT EN VERON - Rue Paul Langevin", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E7746;FRS37E7747", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2019-09-26", + "description": "MODULO - BEAUMONT EN VERON - Rue Paul Langevin", + "ref:EU:EVSE": "FRS37E7746;FRS37E7747" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17108100000, + 47.21140500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PEPRULV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/EPRULV", + "opening_hours": "24/7", + "ref": "24748", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.02919000000, + 47.58930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*LYON*172*2*_*_;FR*SOD*S*LYON*172*1*_*_", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY608 - VAUBAN - GARIBALDI", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON17222;FRGLYPLYON17221;FRGLYPLYON17212;FRGLYPLYON17211", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "start_date": "2022-05-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85049500000, + 45.76550200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "1121505", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P91027*A", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP91027A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36281300000, + 48.70560800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRSSDPBYMYCAR012101", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2020-02-05", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Peugeot - ByMyCar - Ornex", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08686000000, + 46.28353500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED SENS", + "description": "CGED SENS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6589845", + "ref": "FRCPIE6589845", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28448500000, + 48.22116400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P5018131602641223454", + "operator:email": "roaming@freshmile.com", + "ref": "529880", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/HDGGB1NVRK", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373100000, + 46.95758900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Blaye | Cours du General de Gaulle", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "f3ed450d-683c-5fe9-bffd-f37cce60824f", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66430200000, + 45.12451900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS95E95211004", + "network": "VOLTI", + "description": "ENNERY - Rue Charpentier d'Ennery", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2024-02-28;2024-07-10", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10828705237, + 49.07741010339 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "capacity": "6", + "description": "Allego Klepierre Toulouse Nailloux Outlet", + "amenity": "charging_station", + "network": "Allego Klepierre Toulouse Nailloux Outlet", + "charging_station:output": "0 kW", + "ref": "FRALLEGO7002041;FRALLEGO7002021;FRALLEGO7001031;FRALLEGO7001032;FRALLEGO7002022;FRALLEGO7002042", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO7002041;FRALLEGO7002022;FRALLEGO7002021;FRALLEGO7001031;FRALLEGO7001032;FRALLEGO7002042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60939400000, + 43.38723000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ETAIN", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4054EVCP02", + "ref:EU:EVSE": "LFR4054EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64939300000, + 49.21730300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PS0GR1QBOSU", + "operator:email": "support@evzen.com", + "description": "Aix-En-Provence, Rue du Dr Lucien Cartotto" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43590700000, + 43.51568300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402518", + "description": "SDEY/HS6YJGEDPN", + "ref:EU:EVSE": "FRS89P4278013671834719629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45168900000, + 47.86887500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "FREJUS - PARKING RELAIS DES ARENES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*287*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ28712;FRA16PWIIZ28711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2024-07-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72747750000, + 43.43378820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "694205", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1366479512469250470", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/E2YEK1N0HS", + "capacity": "9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13921300000, + 45.89527500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Netto - Marseille", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PNETMRS", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;100 kW", + "start_date": "2023-06-21", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38358492286, + 43.32724555175 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPZBTMTF", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;44 kW", + "description": "Réseau eborn/ZBTMTF;Entrevaux, Parking Les Lauves", + "opening_hours": "24/7", + "ref": "230935;ZBTMTF", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-06-11", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81066000000, + 43.94880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref": "1115472", + "description": "EVzen/DF894BC8-7480-40C7-83CA-718C61C6E9B1", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP2668207321470857417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65138000000, + 44.38520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR611;FROTHPOTHR612", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*6*1*_*_", + "start_date": "2018-06-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "SCHILTIGHEIM - EXEN", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74947200000, + 48.60644700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Tournon-Sur-Rhône, Place Carnot;Réseau eborn/O3TC1Q6PSG", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "48346;O3TC1Q6PSG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPO3TC1Q6PSG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83552700000, + 45.06430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1180143", + "ref:EU:EVSE": "FREBNP1808193470218460552", + "description": "Réseau eborn/LLYO9ZZIOAX5MQ", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05757900000, + 45.88438400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP122008", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2023-09-12", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - B&B HOTEL BELFORT", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88831300000, + 47.64320300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7608731024721731801", + "network": "Freshmile France", + "ref": "971951", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOIE93012K3O1", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20594900000, + 46.16058600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1505", + "ref": "FR*V75*PPX15*05", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "description": "Paris | Rue de la Croix Nivert 192", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28929830000, + 48.83888750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529829", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/YEGFTTHMH7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6606175327223700202", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06325400000, + 48.90166700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Pierre Lannier - Ernolsheim Lès Saverne", + "start_date": "2022-03-10", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:00-17:30, Tu 08:00-17:30, We 08:00-17:30, Th 08:00-17:30, Fr 08:00-12:00", + "ref:EU:EVSE": "FRSSDPLANNIER673301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38528900000, + 48.79540300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-05-25", + "capacity": "2", + "description": "900035", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS27PPTAUDEMERGARE", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51393600000, + 49.35175800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;3 kW", + "description": "Lehon", + "ref:EU:EVSE": "FRS22E22050003;FRS22E220500031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03938010000, + 48.44268940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HOUILLES - Rue De La Marne", + "ref:EU:EVSE": "FRY10E78311004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18541670000, + 48.92418330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-11-22", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE183", + "description": "GGP_Achats" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12303700000, + 50.62523300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1133508", + "network": "WAAT", + "description": "WAAT/FRWATLPKP7CTKF", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWATP7409511810856675243", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46156000000, + 48.91291500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Tavel Nord", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE402551;FRIOYE402504;FRIOYE402501;FRIOYE402502;FRIOYE402503;FRIOYE402552;FRIOYE402553", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "ref:EU:EVSE": "FRIOYE402551;FRIOYE402504;FRIOYE402501;FRIOYE402502;FRIOYE402503;FRIOYE402552;FRIOYE402553", + "description": "Tavel Nord", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70362040000, + 44.00409630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "description": "MODULO - Montmirail - Pkg. Rochefoucauld", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E93789;FRS51E93790", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - Montmirail - Pkg. Rochefoucauld", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E93789;FRS51E93790", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54109000000, + 48.87171200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65286004", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LOURDES - Mairie", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04571000000, + 43.09216000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "network": "Saint-Jean-le-Vieux", + "start_date": "2023-01-11", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE002102;FRIENE002101", + "ref": "FRIENE002102;FRIENE002101", + "description": "Saint-Jean-le-Vieux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36823700000, + 46.04341700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34211001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE POUJOL SUR ORB - Rue Du Pont Suspendu", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06228611111, + 43.57874170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "description": "ALENCON - Rue de la Poterne", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-ALEN-004", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-02-23", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61001D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08987010000, + 48.42980830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4099502244056209152", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1184513", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LM0Z3UCQ42FHHE", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77218800000, + 48.59103800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-02", + "description": "Roulez Électrique En Haute-Garonne/HKTWHF;Castelmaurou", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PHKTWHF", + "ref": "33358;HKTWHF", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53124000000, + 43.67860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "description": "Ford - Avignon", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "start_date": "2020-12-10", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMAURINFORD840001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84240900000, + 43.92611100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "Carrefour Contact La Crèche", + "start_date": "2023-02-24", + "capacity": "2", + "amenity": "charging_station", + "description": "Carrefour Contact La Crèche", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRCARP79048A", + "ref:EU:EVSE": "FRCARP79048A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31140500000, + 46.35461200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMERAMADES11", + "charging_station:output": "12 kW", + "capacity": "2", + "description": "RAMADES", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-03-24", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "4daae94a-c7db-11ed-afa1-0242ac120002", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90419250000, + 44.11602940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "e38bdd5e-33fd-558b-8e73-52d6e4891a4a", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Montguyon | Place du Champ de Foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18718800000, + 45.21686600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "ref:EU:EVSE": "FRSE1PSE49MABA", + "charging_station:output": "25 kW;22 kW", + "description": "CITROEN - La Pommeraye", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85713000000, + 47.35055100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP6064846893639378063", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref": "1086291", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "7.4 kW;22 kW", + "description": "BornEco/6640dd2f4276ef2fa25d400f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31917600000, + 45.96557300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3058EVCP01;LFR3058EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3058EVCP01;LFR3058EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "GOLBEY Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42483100000, + 48.19073300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Trets, Place de la Libération", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PEDNRUJ2XDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68802300000, + 43.44868200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref:EU:EVSE": "FRS89P3952111736094073952", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/WNRYGDUGDQ", + "ref": "402659" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26034600000, + 48.34304500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING ELEPHANT BLEU LES ANGLES", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref": "FR*55C*P30133*LAS*ELEPHANT", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP30133LASELEPHANT", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2020-03-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76434700000, + 43.95803700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLIN9MY4N14O9S", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "923310", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P939936196184223616", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14411300000, + 47.74043000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-03-20", + "description": "Super U - Montgeron", + "opening_hours": "24/7", + "charging_station:output": "50 kW;187.5 kW;22 kW", + "capacity": "9", + "socket:type2_combo:output": "50 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSYUMGR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45855270000, + 48.70318850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/TTJZND;La Motte-Du-Caire, Le Village", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "102638;TTJZND", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPTTJZND", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02821000000, + 44.34250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "network": "Fastned Aire de Jonchets - La Grande Paroisse", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2021-12-27", + "ref": "FRFASE33021", + "capacity": "4", + "operator:email": "support@fastned.nl", + "ref:EU:EVSE": "FRFASE33021", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "853300010", + "description": "Fastned Aire de Jonchets - La Grande Paroisse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92882606000, + 48.42602984000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR82411", + "ref": "FR*SOD*S*OTHR*824*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-05-31", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "U EXPRESS - ROGNONAS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80280720000, + 43.90196950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJZXFBNTFY9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Thoard, Le Village;Réseau eborn/JZXFBNTFY9", + "ref": "79321;JZXFBNTFY9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14906100000, + 44.14950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roanne, Parking place du champ de foire;Réseau eborn/URQIIQNRHG", + "ref": "URQIIQNRHG;31633", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPURQIIQNRHG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07151200000, + 46.04581900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR42312;FROTHPOTHR42311", + "capacity": "2", + "description": "INTERMARCHE - DANNEMARIE", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-06-29", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*423*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10932400000, + 47.63215400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "398915", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JYFTYHFQUW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P778459674066612552" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11060000000, + 49.35690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Biguglia, France", + "ref:EU:EVSE": "FRTSLP29651", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43717300000, + 42.59466900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "674237", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/L6TZIUSYVL", + "ref:EU:EVSE": "FRFR1P4411774956851586871", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80631700000, + 48.87602100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "description": "AVIGNON-Boulevard Saint Michel Nord", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d30e0af0-c810-53a0-ad44-bdf39141940d", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81123400000, + 43.94238000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4793834837874223526", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/eleclerober", + "ref": "1009281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49570000000, + 48.46810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/LLV6P53P4G92P7", + "capacity": "2", + "amenity": "charging_station", + "ref": "1173510", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRS14P5166808128755142042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34619600000, + 49.16242200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref:EU:EVSE": "FRZP1P5535492419092186630;FRZP1P2007248617699648487;FRZP1P7459327163511615875;FRZP1P8285374717364305810", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP00897A;Zephyre/LP008978;Zephyre/LP008987;Zephyre/LP00897D", + "opening_hours": "24/7", + "ref": "576203;576170;576176;576182", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04945100000, + 47.36044900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hotel_Ibis_St_Omer", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE403", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-08-16", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25142100000, + 50.74845900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78531002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROSNY-SUR-SEINE - Avenue De La Gare", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63149600000, + 48.99686200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "description": "SAINT-PIERRE-DES-NIDS - Place De L'Église;OuestCharge - Diva Sp - Saint-Pierre-Des-Nids - Eglise", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53P53246A;FRS53E53246001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-05-31;2021-04-09", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09880000000, + 48.39971300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "RIVESALTES - Avenue Ledru Rollin", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66164001", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86974500000, + 42.76749800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "capacity": "5", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "network": "Vezin-le-Coquet", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE35353A", + "description": "Vezin-le-Coquet", + "ref": "FRIENE35353A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75494803000, + 48.12518425000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35173001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "MELESSE - 16 allée rouge cote ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69780900000, + 48.21637000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref:EU:EVSE": "FRS61P616001", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "charging_station:output": "22 kW", + "ref": "SE61-BRIO-002", + "description": "Briouze - Salle de Spectacle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36399500000, + 48.70008500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5839781869606160644", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/KFRAWCIG6H", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "694241", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05098400000, + 45.49638600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "32161", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PFHPGXB", + "capacity": "3", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "description": "Roulez Électrique En Haute-Garonne/FHPGXB", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59227000000, + 43.71700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AUBERVILLIERS - Rue Marcel Carné", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93001002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37294126932, + 48.91810907935 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2023-03-15", + "opening_hours": "24/7", + "network": "ALLIBERT TREKKING - 38530 - B21", + "ref:EU:EVSE": "FRCG0E000741;FRCG0E000740;FRCG0E000742;FRCG0E000743;FRCG0E000744;FRCG0E000745", + "operator:email": "info@chargeguru.com", + "description": "ALLIBERT TREKKING - 38530 - B21", + "ref": "FRCG0E000741;FRCG0E000740;FRCG0E000742;FRCG0E000743;FRCG0E000744;FRCG0E000745" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99317800000, + 45.46779800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*200*1*_*_", + "ref:EU:EVSE": "FRM06PNICE20012;FRM06PNICE20011", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "LA BOLLENE VESUBIE - PARKING PISCINE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2022-07-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33100101372, + 43.99113625927 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "7523276f-e358-53be-8161-4542ae21b22d", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Villeneuve Sur Lot | Parking République", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70649500000, + 44.40877200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-02-22", + "capacity": "2", + "description": "SIGEIF - 4-6 AVENUE DU MARECHAL JOFFRE - BEAUCHAMP", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE33812;FRSIGPSIGE33811", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*338*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19769000000, + 49.00970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76069001", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BELBEUF - Rue Des Canadiens", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14031100000, + 49.38891400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REVIN", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3303EVCP01;LFR3303EVCP02", + "ref": "LFR3303EVCP01;LFR3303EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64048000000, + 49.93788000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint-Sulpice-Le-Guérétois | Aire des Monts de Guéret", + "operator": "194__SDEC23", + "ref": "bb051530-82a7-5adc-963b-19d5df409ad9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84684300000, + 46.18266200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/montbartmair", + "ref": "64910", + "ref:EU:EVSE": "FRS82PMONTBARTMAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27172000000, + 43.91240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2022-03-30", + "capacity": "1", + "ref:EU:EVSE": "FR55CP83350RAMGARB1NE", + "description": "[PRIVEE] HOTEL LA GARBINE - RAMATUELLE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83350*RAM*GARB1NE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65733700000, + 43.25087500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR1976EVCP01;LFR1976EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR1976EVCP01;LFR1976EVCP02", + "charging_station:output": "22 kW", + "description": "LA COLOMBE - La Herviere" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21125300000, + 48.84953600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché - Corbas", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMCOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90206400000, + 45.65965700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDVX2BDOT0V", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "32677;DVX2BDOT0V", + "description": "Vagnas, Place de l'Eglise;Réseau eborn/DVX2BDOT0V", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36600800000, + 44.34512200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2024-07-30", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP63014A", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP63014A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Honoré Table Auvergnate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14332462764, + 45.75911915685 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E44109009", + "description": "Parking Nantes Médiathèque - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56266100000, + 47.21119200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-29", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market Pibrac", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT318201", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28546700000, + 43.60842500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPLOGHE", + "amenity": "charging_station", + "start_date": "2024-07-30", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Lognes - Hôtel Europarc", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61878600000, + 48.82390400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-07", + "network": "LES MOUSQUETAIRES", + "description": "BRICOMARCHE - SAINT USAGE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR53411;FROTHPOTHR53412", + "ref": "FR*SOD*S*OTHR*534*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25497400000, + 47.11076600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6735855", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-06-09", + "ref": "FRCPIE6735855", + "network": "LA CAPRICIEUSE GOLD", + "description": "LA CAPRICIEUSE GOLD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35823600000, + 49.31815200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/ZRBGLBCPQH", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1774756017975892742", + "ref": "801735", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24894100000, + 48.70500700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LYON PART DIEU 2", + "ref:EU:EVSE": "FRURWPUNIB991;FRURWPUNIB981;FRURWPUNIB971;FRURWPUNIB931;FRURWPUNIB9111;FRURWPUNIB911;FRURWPUNIB921;FRURWPUNIB941;FRURWPUNIB951;FRURWPUNIB961", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "start_date": "2020-12-08;2020-12-22", + "owner:ref:FR:SIREN": "682024096", + "ref": "FR*SOD*S*UNIB*9*9*_*_;FR*SOD*S*UNIB*9*6*_*_;FR*SOD*S*UNIB*9*5*_*_;FR*SOD*S*UNIB*9*3*_*_;FR*SOD*S*UNIB*9*1*_*_;FR*SOD*S*UNIB*9*11*_*_;FR*SOD*S*UNIB*9*2*_*_;FR*SOD*S*UNIB*9*4*_*_;FR*SOD*S*UNIB*9*7*_*_;FR*SOD*S*UNIB*9*8*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85644800000, + 45.76227100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2241512710412011253", + "description": "Freshmile France/LLMRIIODA1ADP7", + "capacity": "4", + "network": "Freshmile France", + "ref": "1069416", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03721000000, + 48.91237900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP3319", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Aire du Poulet de Bresse", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31039400000, + 46.49617900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8868248483835656737", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BCUFNF", + "ref": "346367" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14330000000, + 45.75880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ELECTROMAPS", + "capacity": "2", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "operator:email": "oscar@electromaps.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FR000012292701", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "owner:ref:FR:SIREN": "349009423", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Hôtel Restaurant Campanile Nogent-sur-Marne", + "description": "Hôtel Restaurant Campanile Nogent-sur-Marne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49356956759, + 48.83267793517 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/RJC5UJDFHM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "457554", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P5989749733545817543" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42222100000, + 49.12859700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MARCILLAC CONQUES - Route De Rodez", + "start_date": "2022-02-05", + "ref:EU:EVSE": "FRS12E12138001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46548200000, + 44.47181500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA4P4797341802769752963", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA4LUCFFETXE", + "ref": "880188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11806700000, + 49.48386500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17;2021-04-28", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - La Romagne - Nationale;LA ROMAGNE - Rue Nationale", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49260A;FRS49E49260001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02672900000, + 47.05999800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CASTRES - Parc Gourjade", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2018-04-17", + "ref:EU:EVSE": "FRS81E8106500621;FRS81E8106500611;FRS81E8106500612;FRS81E8106500622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25358810119, + 43.62022161295 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH17E59249002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FOURMIES - Rue des étangs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06358300000, + 50.00788890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-16;2024-04-29;2024-04-18", + "ref:EU:EVSE": "FRS44P44210B;FRS44E44210002", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "TRIGNAC - Place De La Mairie;OuestCharge - Diva Sp - Trignac - Mairie", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18709100000, + 47.31750100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "start_date": "2022-10-18", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63354*A;SIEG63 - ePremium - Saint Gervais D Auvergne - Foirail", + "ref": "518432", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63354A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82027300000, + 46.03086300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-RÉMY-DU-NORD - Rue de la Place", + "ref:EU:EVSE": "FRH02E59543001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90552800000, + 50.23139600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-11-16", + "ref:EU:EVSE": "FRS34E34063001", + "description": "CAUX - Rue Pierre Pascal", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36701111000, + 43.50916670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRETEIL - Rue Juliette Savar", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE94028030", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-03-20", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46877720990, + 48.77478504948 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2024-02-16;2024-05-23", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP90186485", + "description": "ENGIE Vianeo - B&B Hôtel Dieppe", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07635700000, + 49.89992400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Villefranche de Lonchat | Rue Bugeaud", + "ref": "d35a91f6-6afa-5651-90bc-1b3434ae5a05", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05722800000, + 44.94678900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 3 RUE CHAUSSEE - SAINT-BRICE-SOUS-FORET", + "start_date": "2024-02-23", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE44712;FRSIGPSIGE44711", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*447*1*_*_", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35459570000, + 49.00069180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2022-08-09", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSFCAMP", + "network": "Carrefour Energies", + "description": "FECAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37304000000, + 49.75434000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3356EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3356EVCP01", + "description": "SARLAT LA CANEDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21697300000, + 44.88077000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "d6627834-8451-5279-b324-1f94b84f9e73", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Ogeu les Bains | Avenue de Pau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50214300000, + 43.15354200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "SAINT-ROMAIN-EN-VIENNOIS - Avenue de Verdun", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "1c4aa1da-39a2-589a-807d-f6fc0856a0c6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10961300000, + 44.25901100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "description": "RAMBOUILLET - Piscine", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78517002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83427240000, + 48.63547000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3615EVCP02;LFR3615EVCP01", + "description": "CROLLES Croizat", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3615EVCP02;LFR3615EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88394700000, + 45.27400400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PJARGRA", + "description": "Jardiland Granville (50)", + "start_date": "2024-09-26", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55845317976, + 48.83764590297 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/RJYQTZVSYG", + "ref:EU:EVSE": "FREBNP8789258760763444739", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14181800000, + 43.10362600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "917546251", + "capacity": "16", + "operator": "SPIE CITYNETWORKS", + "description": "e-Vadea - Fabregues - A9 Montpellier Sud", + "network": "e-Vadea", + "amenity": "charging_station", + "operator:email": "assistance-commerciale@e-vadea.fr", + "start_date": "2023-06-22;2023-04-21", + "opening_hours": "24/7", + "charging_station:output": "43 kW;22 kW;50 kW;150 kW", + "socket:type2_combo:output": "50 kW;150 kW", + "ref:EU:EVSE": "FREVAP34095A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79562180000, + 43.54626530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Gamm Vert - Orthez", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCRIORT", + "opening_hours": "24/7", + "start_date": "2024-01-13;2024-01-11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77996194589, + 43.48801315372 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market Gonneville La Mallet", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPEUWY", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2024-08-22;2024-07-16", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22397200000, + 49.64077200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42218AZ", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-05-27", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SEMOB Avenue Rochetaillée", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218AZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39999500000, + 45.41816000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG587131;FROTHPIZIG587121;FROTHPIZIG587111", + "ref": "FR*SOD*S*IZIG*587*13*_*_;FR*SOD*S*IZIG*587*11*_*_;FR*SOD*S*IZIG*587*12*_*_", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "EDF PARK AZUR", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-08-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30407600000, + 48.81471100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "SONEPAR CONCARNEAU", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6881325", + "charging_station:output": "22 kW", + "start_date": "2024-02-09", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6881325", + "network": "SONEPAR CONCARNEAU", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90318800000, + 47.89990700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6512110919449549202", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "479217", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/SQMYKHQ3PK", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02146300000, + 46.52089500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL RENNES NORD SAINT-GRÉGOIRE", + "ref:EU:EVSE": "FRVIAP122059" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69963000000, + 48.15591700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3707184472209028318", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "175 kW;22 kW;3 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "175 kW;22 kW;3 kW", + "description": "Freshmile France/BJOVJOAKTT", + "opening_hours": "24/7", + "capacity": "10", + "ref": "978002", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69519000000, + 49.32011800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "opening_hours": "Mo 09:00-12:30, Mo 14:00-19:00, Tu 09:00-12:30, Tu 14:00-19:00, We 09:00-12:30, We 14:00-19:00, Th 09:00-12:30, Th 14:00-19:00, Fr 09:00-12:30, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDMD448003", + "description": "Jaguar Land Rover - Saint-Herblain", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62164200000, + 47.24950100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8783350897210571921", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/EZQEWY01JS", + "ref": "735135" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420500000, + 48.62136100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E104721", + "network": "MODULO - BOURGES - Pl. Cothenet", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E104721", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BOURGES - Pl. Cothenet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40458209000, + 47.10553756000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/JDWZ4GKGLJ", + "operator:email": "roaming@freshmile.com", + "ref": "461784", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P7976305919526230713", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27339200000, + 49.24537300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LZVA7BLAK", + "ref": "1127862", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P6103401402304015813", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54975900000, + 43.43168700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-06-02", + "description": "COUTANCES - Stade", + "ref:EU:EVSE": "FRS50P50200003", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45369270000, + 49.05152110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81174001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-02-17", + "description": "MONTDRAGON - Route de Lautrec", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10303400000, + 43.77408500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "description": "STE MAURE DE TOURAINE", + "ref:EU:EVSE": "FRHPCPNF059736", + "owner:ref:FR:SIREN": "531680828;531680822;531680824;531680825;531680826;531680827;531680829;531680823", + "ref": "FRHPCPNF059736", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "start_date": "2022-10-27;2022-12-21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63070000000, + 47.16810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT CHELY D'APCHER - Pontet", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "network": "Reveo", + "ref:EU:EVSE": "FRS48E48140001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27326100000, + 44.80288000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "541928", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilité électrique 56/NKDC4JEQPF", + "ref:EU:EVSE": "FRS56P3408539412624983069", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01160000000, + 47.67010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "LA CAPELLE-LÈS-BOULOGNE - Rue Marcel Caudevelle", + "ref:EU:EVSE": "FRH05E62908001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70753400000, + 50.73094200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E29520002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "description": "CHATEAUNEUF DU FAOU - Aire De Covoiturage", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82204800000, + 48.20236900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/BJDCGG", + "ref": "250558", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PBJDCGG", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24881000000, + 47.82790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "SAVIGNY-SOUS-FAYE-1-2;SAVIGNY-SOUS-FAYE-1-1", + "ref": "B096", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346052442;FRLMSE12346052441;FRLMSE12346052431;FRLMSE12346052432", + "start_date": "2017-09-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28431000000, + 46.86971700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-04-08", + "amenity": "charging_station", + "ref": "485295", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP93048F", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "description": "Metropolis - Citadine - Montreuil - Brossolette;Métropolis/FR*MGP*P93048*F", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47901400000, + 48.86437100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - Niort - Conseil Départemental 79;Réseau AlterBase - Niort - Conseil Départemental 80", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB79191P0031A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46040290000, + 46.32887360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Atlante/FRATLFR00304", + "charging_station:output": "300 kW;22 kW;150 kW", + "ref:EU:EVSE": "FRATLP16840049155878446", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref": "1068459", + "opening_hours": "24/7", + "network": "Atlante", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17502800000, + 45.69237500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Epinal - ZA de Reffye 1", + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89397435", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43287700000, + 48.17986100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "ref": "Non concerné", + "description": "Etablissement Combes", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-Fr 14:00-18:00", + "operator:email": "combes4@orange.fr", + "network": "Etablissement Combes", + "ref:EU:EVSE": "FRMAPP000000007832", + "operator": "Etablissement Combes", + "charging_station:output": "11 kW", + "owner:ref:FR:SIREN": "343489464" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04239969299, + 44.14050798469 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - EPINAL - Pkg. La Louvière", + "ref:EU:EVSE": "FRS88E144241;FRS88E144239", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS88E144241;FRS88E144239", + "start_date": "2023-03-15", + "charging_station:output": "0 kW", + "description": "MODULO - EPINAL - Pkg. La Louvière", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45240700000, + 48.17316500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Ollioules", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "capacity": "11", + "ref:EU:EVSE": "FRALLEGO9007882;FRALLEGO9001762;FRALLEGO9000591;FRALLEGO9000592;FRALLEGO9001761;FRALLEGO9002621;FRALLEGO9002622;FRALLEGO9002623;FRALLEGO9007881;FRALLEGO9007911;FRALLEGO9007912", + "ref": "FRALLEGO9007881;FRALLEGO9002623;FRALLEGO9000591;FRALLEGO9000592;FRALLEGO9001761;FRALLEGO9001762;FRALLEGO9002621;FRALLEGO9002622;FRALLEGO9007882;FRALLEGO9007911;FRALLEGO9007912", + "network": "Allego Carrefour Ollioules" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87714800000, + 43.12411500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-12", + "ref:EU:EVSE": "FRJRCPFANG00001", + "capacity": "2", + "amenity": "charging_station", + "description": "BASTIDE FANGOUSE", + "ref": "5f85b102-d5a8-4ff3-a039-d5b3939a3280", + "operator": "Jerecharge.com", + "opening_hours": "Mo-Su 08:00-18:00", + "owner:ref:FR:SIREN": "905083895", + "charging_station:output": "22 kW", + "network": "Jerecharge.com", + "operator:email": "contact@jerecharge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22516800000, + 43.49725200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "start_date": "2024-09-01", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMBCCHP;FRPD1PMBCCHA", + "capacity": "3;4", + "description": "Marie Blachère - Chaponnay", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92785815477, + 45.65132383908 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "492123;URKGXP7KLK", + "description": "Bonson, Place François mitterand;Réseau eborn/URKGXP7KLK", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPURKGXP7KLK;FREBNP3797011920292283635", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21674000000, + 45.52367000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5951126198769352517", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "682262", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/TVOJ4ZF90H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08292000000, + 49.11815600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "ref:EU:EVSE": "FRPD1PIBSMLC", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Ibis - Mellac", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58870600000, + 47.86899100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPXAIFX7NXUY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/XAIFX7NXUY;La Valette, Mairie", + "ref": "306118;XAIFX7NXUY", + "start_date": "2020-11-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98374100000, + 43.13765300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - LAPEYRE Pérols", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-06-13", + "ref:EU:EVSE": "FRETIP34198A", + "ref": "FRETIP34198A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93643656804, + 43.57705856202 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "CTA CONSTRUCTION - RODEZ", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-04-26", + "ref:EU:EVSE": "FROTHPOTHR22311;FROTHPOTHR22321", + "opening_hours": "24/7", + "network": "CTA CONSTRUCTION", + "ref": "FR*SOD*S*OTHR*223*1*_*_;FR*SOD*S*OTHR*223*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56153400000, + 44.36206400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPSPCAPS5212;FRCPSPCAPS5211", + "start_date": "2023-09-27", + "ref": "FR*SOD*S*CAPS*52*1*_*_", + "description": "MONTLHERY - GRANDE RUE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27041300000, + 48.63659600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "761472", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/RWMAQR1XOL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2618555460041379424", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41528300000, + 46.81230800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA1P2344712973143461943", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "ref": "735825", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLIS4PZGPB", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34916200000, + 51.03263600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892395", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJMOSG3QB1HVH", + "ref:EU:EVSE": "FRFR1P6411452162319335212", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15412000000, + 43.54698400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "start_date": "2023-04-19", + "ref": "1000114226", + "owner:ref:FR:SIREN": "903356970", + "description": "ALPITRONIC 225kW VW Pontcharra", + "ref:EU:EVSE": "FRSWSE1000114226", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00461500000, + 45.42668900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/T63G4SSANF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7571490923946740675", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "598014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08853200000, + 48.31828200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "opening_hours": "Mo 07:00-18:00, Tu 07:00-18:00, We 07:00-18:00, Th 07:00-18:00, Fr 07:00-18:00", + "amenity": "charging_station", + "description": "Loc+ - Perpignan", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPLOC660001", + "operator:email": "support@driveco.com", + "start_date": "2023-07-11", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85004700000, + 42.69051700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E139414", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - LA CHAUSSEE-D'IVRY - Pl. de l'église", + "operator": "Modulo", + "network": "MODULO - LA CHAUSSEE-D'IVRY - Pl. de l'église", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E139414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47865754000, + 48.88282251000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 9:00-12:00,Mo-Fr 14:00-17:30", + "start_date": "2022-11-06", + "capacity": "2", + "amenity": "charging_station", + "description": "arteco 44", + "ref:EU:EVSE": "Non concerné", + "network": "recharge arteco", + "operator:email": "meuzenat@arteco.fr", + "operator": "arteco44", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "842477895", + "ref": "c635b39a-6507-11ed-9022-0242ac120002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25000000000, + 47.29000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39821", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/AL6PSPCLF8", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1639891399637176211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46641000000, + 48.23946600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "803464445", + "description": "LP009E71;Zephyre/LP009E71;LP003B25;Zephyre/LP003B25", + "network": "Zephyre;Logis Mar I Sol", + "amenity": "charging_station", + "capacity": "1", + "ref": "696524;24545a1c-6cf5-11ee-b962-0242ac120002;928416", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P45602;FRZP1P3877065261224232130;FRZP1P6101647055542817860;FRZP1P94884", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03467900000, + 42.63212800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "description": "FPB_Angers", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE511", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53117000000, + 47.46593300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PDUJPRC", + "ref": "38989", + "description": "SDE82/DUJPRC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08375000000, + 44.10600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - NANTES - PONT DE CHEVIRE", + "start_date": "2024-03-11", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*105*2*_*_;FR*SOD*S*FAST*105*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST10512;FRIZFPFAST10511;FRIZFPFAST10513;FRIZFPFAST10521;FRIZFPFAST10522;FRIZFPFAST10523", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61627480000, + 47.19802550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "DOUE-LA-FONTAINE - Place de Verdun;OuestCharge - Diva Sp - Doue-la-Fontaine - Verdun", + "ref:EU:EVSE": "FRS49E49125003;FRS49P49125C", + "start_date": "2021-04-22;2024-04-09", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27354800000, + 47.19349500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "34616", + "description": "Mouv'Oise/rantigny", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PRANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44089000000, + 49.32940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LY206 - DENUZIERE - CONFLUENCE", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2322;FRGLYPLYON2321;FRGLYPLYON2312;FRGLYPLYON2311", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-07-31", + "ref": "FR*SOD*S*LYON*23*2*_*_;FR*SOD*S*LYON*23*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81780200000, + 45.74248400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "NIMES - Route D'Uzès", + "ref:EU:EVSE": "FRS30E30189022", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37687700000, + 43.86280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "561800", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Mobilité électrique 56/VCVTUT", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PVCVTUT", + "charging_station:output": "50 kW;44 kW", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72136000000, + 47.54680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2016-05-09", + "ref:EU:EVSE": "FRLMSE12346449931;FRLMSE12346449921", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B101", + "operator": "SOREGIES MOBILITES", + "description": "USSON DU POITOU-1-2;USSON DU POITOU-1-1", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52613000000, + 46.27595100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "40 kW", + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "capacity": "3", + "network": "Mobilygreen CPO", + "description": "Mobilygreen CPO/e3b97859-3048-4f79-a1e2-e7dbf888feec", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P2751636470965371981", + "ref": "1061805", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "40 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93278200000, + 43.58468900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-29", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*159*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - 48 RUE JEAN JAURES - PUTEAUX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE15912;FRSIGPSIGE15911", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24562200000, + 48.88420800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E81105001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "50 kW;43 kW;22 kW", + "network": "CPO Alizé Liberté Public", + "description": "GRAULHET - Route de LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96344100000, + 43.76047200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-10-17", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Epinal - Centre des Congrès Park.P3", + "ref:EU:EVSE": "FRLMSP89883144", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47042900000, + 48.18621900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "Non concerné;FRS40PMB405311;FRS40PMB405312;FRS40PMB405313;FRS40PMB405314", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB40*53*1*_*_;889b2486-a5d3-572e-93e3-07a3b89bce83", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "description": "MOBIVE | Castets | Parking Mairie;CASTETS - PARKING MAIRIE", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "start_date": "2020-05-26", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14495200000, + 43.88217500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOUROUX - Tennis", + "ref:EU:EVSE": "FRSE1PSE77MAEA", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2023-06-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03494200000, + 48.82172500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2022-10-19", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSLORNT", + "network": "Carrefour Energies", + "description": "LORIENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39179700000, + 47.76263600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3696EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ST MIHIEL Vuillaume", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3696EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53689000000, + 48.89528700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-09", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34022003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BAILLARGUES - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00831997395, + 43.65477003252 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/MCO5MCQGLW", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "492135", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNP8007559716040730588" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59628600000, + 46.40028600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "541709", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3555823405725620659", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IKAA3NFK9U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60960800000, + 48.57796700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-18", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DIEPPE - La Barre", + "ref:EU:EVSE": "FRP07E76217002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07487400000, + 49.92352300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Megève, RD1212;Réseau eborn/WCBMBTLQJ7", + "opening_hours": "24/7", + "ref": "WCBMBTLQJ7;598293", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP5936113934177868772;FREBNPWCBMBTLQJ7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62129600000, + 45.86010300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "300 kW;400 kW", + "ref:EU:EVSE": "FRELCPSERKO", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "description": "Serris - Ki Space Hotel & Spa", + "operator": "ELECTRA", + "start_date": "2024-06-06", + "charging_station:output": "300 kW;400 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80078900000, + 48.83710500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Bercy Accor Arena - EFFIA", + "start_date": "2023-07-25;2023-06-27;2023-06-23", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "75", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E751120011;FRP01E75112001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38268140000, + 48.83822670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MANOIR LE ROURE BORNE 2", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRCPIE6621065;FRCPIE6621055", + "ref": "FRCPIE6621065;FRCPIE6621055", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "MANOIR LE ROURE BORNE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75678800000, + 44.51230800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/N1QJPHUMBX;La Baule , Pkg Atlantia - Palais des Festivals", + "ref:EU:EVSE": "FRECHPN1QJPHUMBX;FRECHP778672712863052871", + "ref": "N1QJPHUMBX;749229", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40912800000, + 47.28403200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Avenue Paul Doumer 72", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "ref:EU:EVSE": "FRV75PPX1609", + "ref": "FR*V75*PPX16*09", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27869380000, + 48.85975600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "466218", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P4532609235255286992", + "description": "Freshmile France/V2WYTXUEVW", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75911300000, + 48.57833900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP00991", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "description": "LECLERC AUTOMOBILE - JARNY - RENAULT", + "ref": "FRTCBP00991", + "start_date": "2022-07-07", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "L.R. Participations", + "owner:ref:FR:SIREN": "325805547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89235683068, + 49.15425720316 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "694349", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WV8CNWBXWV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2550622456656635767", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94982400000, + 49.02088300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPABVVVOLVO957001", + "start_date": "2021-02-02", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Volvo - ABVV Automobiles - Roissy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51109500000, + 48.99953100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2910300", + "charging_station:output": "22 kW", + "description": "Landerneau-Quai de Léon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25166200000, + 48.44945500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CARCASSONNE - Chemin De La Madeleine", + "ref:EU:EVSE": "FRS11E11069002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39504098892, + 43.22140864410 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage Santa Maria - 22 kW AC", + "ref:EU:EVSE": "FRZP1PEAC63539", + "network": "UNICAP - GARAGE SANTA MARIA", + "ref": "99c7ed24-561a-49de-a8d5-0f4926056c6a", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "812991560", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57598610000, + 47.20042700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E57629;FRS08E57630", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - VOUZIERS - Rue Gambetta", + "operator": "Modulo", + "ref:EU:EVSE": "FRS08E57629;FRS08E57630", + "description": "MODULO - VOUZIERS - Rue Gambetta", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69976100000, + 49.39587500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PZSEFWZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/ZSEFWZ", + "ref": "79492", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46179000000, + 50.06370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-07-10", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST24213;FRIZFPFAST24212;FRIZFPFAST24211", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - LA GLACERIE", + "ref": "FR*SOD*S*FAST*242*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59641050633, + 49.60085970888 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "BOUSSAY - Rue Cathelineau;OuestCharge - Diva Sp - Boussay - Cathelineau", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44P44022A;FRS44E44022001", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-18;2021-04-29", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18643000000, + 47.04249500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CHALAUTRE-LA-PETITE - Place De La Mairie;Chalautre-la-Petite", + "start_date": "2023-05-25;2015-05-28", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77073001;FRS77P77073A", + "ref": "01F5ZAKH61TG3DXJGS087Z7W4Q", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31440700000, + 48.52907900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "B&B LA ROCHELLE", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "B&B LA ROCHELLE", + "ref:EU:EVSE": "FRGSPP1000054878" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14437076034, + 46.15472149530 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - CRAVANT LES COTEAUX - Pl. Pierre Alliet", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E219899", + "start_date": "2019-07-16", + "ref": "FRS37E219899", + "network": "MODULO - CRAVANT LES COTEAUX - Pl. Pierre Alliet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34600000000, + 47.15840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCPHVA - Parking Place du 8 Mai 1945 - Thil", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "7.328 kW", + "operator": "51__CCPHVA", + "ref": "cf25e029-bc58-56b9-9086-b87e296f06b7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90783100000, + 49.47318300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LPA Parking St Antoine - N1 - Zone 1", + "operator": "E-TOTEM", + "network": "LPA Parking St Antoine - N1 - Zone 1", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P69382CA", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRG10P69382CA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83210840000, + 45.76439080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | PARENTIS-EN-BORN | Route du Lac", + "socket:type2_combo:output": "24 kW", + "ref": "91d918e2-5420-5947-a31a-1a30041774ea", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09772000000, + 44.34464000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 12 RUE DE LA RONCE - VILLE-DAVRAY", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE27312;FRSIGPSIGE27311", + "start_date": "2022-06-09", + "ref": "FR*SOD*S*SIGE*273*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18812090000, + 48.82323590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6496555", + "capacity": "2", + "network": "CORSTYRENE BORNE 1", + "amenity": "charging_station", + "start_date": "2021-09-07", + "description": "CORSTYRENE BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6496555" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.47535000000, + 42.11241000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/LLOPLV25H2GIKR", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "capacity": "10", + "ref:EU:EVSE": "FRLE2P482262275125079814", + "ref": "1026867" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350900000, + 44.87554900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "736876f7-4f5d-592f-bf60-601a533abc78", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Ussac | Zc la Croix de Pataud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50739200000, + 45.18697200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "charging_station:output": "3 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB18008A", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - St Jean de Thouars - Place de la Mairie", + "start_date": "2015-12-22", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21796600000, + 46.96235200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-03-11", + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "description": "Pays de Gex - ePremium - Gex - Cimetiere Perdtemps", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "ref:EU:EVSE": "FRAGXP01173A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05997500000, + 46.33736400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3699EVCP02;LFR3699EVCP01", + "description": "LAROQUE D OLMES 1918", + "ref:EU:EVSE": "LFR3699EVCP02;LFR3699EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86548700000, + 42.96296100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "description": "LA TRONCHE - Parking Relais La Tronche Grand-Sablon", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38516002", + "start_date": "2024-01-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74967200000, + 45.19855200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-04-09", + "operator": "IZIVIA", + "description": "GRASSE PARKING PLACE FREDERIC MISTRAL", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*13*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ1311;FRA16PWIIZ1312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91297600000, + 43.63954200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5862438703224372873", + "ref": "1111626", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLSOMCXRX2BN4W" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15490600000, + 49.11299300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PACTVDR", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;100 kW;22 kW", + "amenity": "charging_station", + "description": "Action - Villefranche-de-Rouergue", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "start_date": "2024-05-24", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02707922416, + 44.35878565091 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "CDVYRNUDQ1;346649", + "description": "Réseau eborn/CDVYRNUDQ1;Chambery, Ecoris Rue de Chantabord", + "ref:EU:EVSE": "FREBNP1130444991849176274;FREBNPCDVYRNUDQ1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89316000000, + 45.59280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGEICC", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "socket:type2_combo:output": "300 kW", + "description": "Geispolsheim - CC La Vigie", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69401400000, + 48.53331700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CANNES - Palais Stéphanie", + "ref:EU:EVSE": "FRP07E060290012;FRP07E06029001;FRP07E060290011", + "capacity": "25", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02556810000, + 43.55098250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "ref:EU:EVSE": "FRCPIE6684665", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6684665", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "MSP CLARENSAC BORNE 1", + "description": "MSP CLARENSAC BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22512600000, + 43.82697900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Easy Charge/Q3W5HM1IYW", + "operator:email": "roaming@freshmile.com", + "ref": "756918", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP5917480752421392042", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71562500000, + 48.00855500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Girancourt - ZA des Mitroches", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30517300000, + 48.16152300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "801585", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6407521464450616238", + "charging_station:output": "22 kW", + "description": "Freshmile France/CERS7JVZEC", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33847500000, + 45.12109300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX06*06", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0606", + "description": "Paris | Rue de Fleurus 2", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33212080000, + 48.84710790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LM0L084ZXXJDDG", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1183674", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P7440918577294015531", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75605600000, + 48.58952000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - Général Automobile - Guérande", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:30-12:30, Mo 14:00-19:00, Tu 08:30-12:30, Tu 14:00-19:00, We 08:30-12:30, We 14:00-19:00, Th 08:30-12:30, Th 14:00-19:00, Fr 08:30-12:30, Fr 14:00-19:00, Sa 09:00-12:30, Sa 14:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2021-03-17;2023-02-07", + "capacity": "9", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPGENERALAUTOVOLVO443501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41278700000, + 47.32202200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22358001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Tregonneau-Le bourg", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16516100000, + 48.61179000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E150513", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - SAINT-JUST - Mairie", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E150513", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINT-JUST - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51002394000, + 46.99228393000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "bfccb924-10de-414b-90e9-20208967ee22", + "operator:email": "dany.capemploi@gmail.com", + "operator": "CAP EMPLOI", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CAP EMPLOI", + "owner:ref:FR:SIREN": "345406565", + "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-17:00", + "charging_station:output": "22 kW", + "start_date": "2022-04-01", + "description": "CAP EMPLOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06156200000, + 49.10520900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/SK1TRPWVYS", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P8912370275151690076", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32080" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50235800000, + 48.49522100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "ALBI - Av. de Saint Juéry", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "56 kW", + "ref:EU:EVSE": "FRS81E8100400941;FRS81E8100400932;FRS81E8100400931;FRS81E8100400921;FRS81E8100400912;FRS81E8100400911;FRS81E8100400922;FRS81E8100400942", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17278790500, + 43.93396377600 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IKEA LYON - STATION 2", + "start_date": "2023-01-11", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*95*8*_*_;FR*SOD*S*IKEA*95*6*_*_;FR*SOD*S*IKEA*95*20*_*_;FR*SOD*S*IKEA*95*19*_*_;FR*SOD*S*IKEA*95*18*_*_;FR*SOD*S*IKEA*95*16*_*_;FR*SOD*S*IKEA*95*15*_*_;FR*SOD*S*IKEA*95*13*_*_;FR*SOD*S*IKEA*95*11*_*_;FR*SOD*S*IKEA*95*10*_*_;FR*SOD*S*IKEA*95*1*_*_;FR*SOD*S*IKEA*95*12*_*_;FR*SOD*S*IKEA*95*14*_*_;FR*SOD*S*IKEA*95*17*_*_;FR*SOD*S*IKEA*95*2*_*_;FR*SOD*S*IKEA*95*21*_*_;FR*SOD*S*IKEA*95*22*_*_;FR*SOD*S*IKEA*95*23*_*_;FR*SOD*S*IKEA*95*24*_*_;FR*SOD*S*IKEA*95*3*_*_;FR*SOD*S*IKEA*95*4*_*_;FR*SOD*S*IKEA*95*5*_*_;FR*SOD*S*IKEA*95*7*_*_;FR*SOD*S*IKEA*95*9*_*_", + "ref:EU:EVSE": "FRIKAPIKEA9581;FRIKAPIKEA9551;FRIKAPIKEA9541;FRIKAPIKEA95191;FRIKAPIKEA95181;FRIKAPIKEA95161;FRIKAPIKEA95151;FRIKAPIKEA95141;FRIKAPIKEA9511;FRIKAPIKEA95101;FRIKAPIKEA95111;FRIKAPIKEA95121;FRIKAPIKEA95131;FRIKAPIKEA95171;FRIKAPIKEA95201;FRIKAPIKEA9521;FRIKAPIKEA95211;FRIKAPIKEA95221;FRIKAPIKEA95231;FRIKAPIKEA95241;FRIKAPIKEA9531;FRIKAPIKEA9561;FRIKAPIKEA9571;FRIKAPIKEA9591", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88130300000, + 45.71809200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PREFAILLES - Place Du Marché;OuestCharge - Diva Sp - Prefailles - Marche", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-16;2024-05-02", + "ref:EU:EVSE": "FRS44E44136001;FRS44P44136A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21885800000, + 47.12900500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-08-10;2023-05-06", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Moussy-le-Neuf;MOUSSY-LE-NEUF - Rue Lamaze", + "ref": "01F5ZAKH61J9776V0ADCNMGHWC", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77322A;FRS77E77322001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60308900000, + 49.06453300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH01E62721001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ROQUETOIRE - Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34136900000, + 50.67062400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E221518;FRS37E221516", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - NEUILLE LE LIERRE - Pl. de la mairie", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - NEUILLE LE LIERRE - Pl. de la mairie", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E221518;FRS37E221516", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91056000000, + 47.51268000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MONTMEDY- Pl. Raymond Poincare", + "ref": "FRS55E66592;FRS55E66593", + "description": "MODULO - MONTMEDY- Pl. Raymond Poincare", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66592;FRS55E66593" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36667300000, + 49.51962500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "description": "LTS01 - PLACE DE LA MAIRIE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*149*1*_*_", + "start_date": "2022-01-26", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON14912;FRGLYPLYON14911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71621900000, + 45.81452100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ESCOBECQUES - Route d'Ennetières", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5932005", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59320*05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93130300000, + 50.62220400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jaguar Land Rover - GRIM - Valence", + "start_date": "2019-04-10", + "ref:EU:EVSE": "FRSSDPJLRGRIMVALENCE260001", + "network": "DRIVECO", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93500300000, + 44.92232900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6580595", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6580595", + "description": "SONEPAR CONNECT TOULOUSE NORD", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TOULOUSE NORD", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41071000000, + 43.63242300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/HDMLYUQSSU", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454278", + "ref:EU:EVSE": "FRLE2P4306384301115473413" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766100000, + 47.70646200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "4b8888d5-b077-5c72-9059-6b394eba49ea", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "description": "MOBIVE | Saint Loubes | Parking Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42620600000, + 44.91607700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Juvisy-sur-Orge - Place Anatole France", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a048ff4d-0aef-5ae3-b065-54a7e8f6f9ac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37569500000, + 48.68905600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "start_date": "2021-07-09", + "capacity": "18", + "ref:EU:EVSE": "FRSITE00000004;FRALLPTIS017", + "amenity": "charging_station", + "description": "TISSEO BORDEROUGE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "socket:type2_combo:output": "50 kW;350 kW;300 kW", + "charging_station:output": "350 kW;50 kW;43 kW;22 kW;300 kW", + "network": "ALLEGO;GreenToWheel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281000000, + 43.64246000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "CREHANGE Faulquemont", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3585EVCP03", + "ref": "LFR3585EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58180300000, + 49.04896200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PGNCU8D204C", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Istres, Halle Polyvalente Rassuen", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97413400000, + 43.49404900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - EPINAL - Rue du président Kennedy", + "ref:EU:EVSE": "FRS88E182103;FRS88E182101", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - EPINAL - Rue du président Kennedy", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-27", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRS88E182103;FRS88E182101", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45378000000, + 48.18290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ23712;FRA16PWIIZ23711", + "ref": "FR*SOD*S*WIIZ*237*1*_*_", + "description": "SAINT-VALLIER-DE-THIEY - PARKING TENNIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-04-22", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85061100000, + 43.69839500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1PNHHVSV", + "description": "Freshmile France/NHHVSV", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "capacity": "11", + "ref": "38704", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698000000, + 43.42060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMDMPMR", + "start_date": "2024-02-07", + "description": "Maison du Monde - Pamiers", + "operator": "Power Dot France", + "charging_station:output": "160 kW;50 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62433365890, + 43.09943897923 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPMSHPUS", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/MSHPUS;Sablières, Le Village", + "ref": "48328;MSHPUS", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07317000000, + 44.53230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/87A8F5FF-8418-4872-9B00-805A6A5D2F39", + "ref:EU:EVSE": "FREVZP4174550504201026221", + "ref": "927795", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45921000000, + 43.34532400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "FPEE INDUSTRIES", + "operator": "IZIVIA", + "description": "FPEE - BRULON", + "ref:EU:EVSE": "FROTHPOTHR58411;FROTHPOTHR58412", + "ref": "FR*SOD*S*OTHR*584*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23038800000, + 47.97755800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPBTEM7L8NXD;FREBNP2606149451440264015", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-04-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Seyne sur Mer, Parking Tamaris;Réseau eborn/BTEM7L8NXD", + "ref": "BTEM7L8NXD;786999" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90020700000, + 43.09172500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "JDC6F1GITF;75335", + "ref:EU:EVSE": "FREBNJDC6F1GITF;FREBNPJDC6F1GITF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/JDC6F1GITF;Pourcieux, Rue Gustave Aubert", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78495400000, + 43.47188100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP104106", + "start_date": "2023-06-19", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW;300 kW;72 kW;22 kW;36 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "36 kW;300 kW;72 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A52 Marcel Pagnol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57546000000, + 43.40057800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLSWY8VF11TF1U", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7044867668357685295", + "ref": "1026714", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.51471500000, + -20.89325000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX13*13", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "description": "Paris | Rue Vulpian 24", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1313", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34605840000, + 48.83104930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/QOTMBBSOOH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4700938922607332328", + "operator": "Freshmile | FR*FR1", + "ref": "472254" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74000500000, + 48.63124500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-11", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPOLLANDINIAVIS202601", + "amenity": "charging_station", + "capacity": "4", + "description": "Avis Location - Calvi", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20:00, Th 08:00-20:00, Fr 08:00-20:00, Sa 08:00-20:00, Su 08:00-20:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.78879100000, + 42.52906000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900058;900059;4000xx", + "ref:EU:EVSE": "FRS27PGAILLONCOVOITURAGE1;FRS27PGAILLONCOVOITURAGE2;FRS27PIVRYBATAILLEBDGARE", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "start_date": "2017-01-01;2016-10-13", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918000000, + 49.15796600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-09-10", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E02223", + "charging_station:output": "22 kW", + "description": "POMMERIT-LE-VICOMTE - Place du Centre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09057400000, + 48.62028700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT REMY LES CHEVREUSE - RER", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78575002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07109450000, + 48.70316880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Frial_1_Prod", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE135", + "operator:email": "info@rossinienergy.com", + "capacity": "18", + "amenity": "charging_station", + "start_date": "2021-10-11", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69175700000, + 49.27351800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLBGHT1WWM", + "ref:EU:EVSE": "FRWATP4713534390094729461", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@waat.fr", + "ref": "944172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99997900000, + 43.65418000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "description": "IONITY Seclin", + "ref:EU:EVSE": "FRIONE440100", + "capacity": "13", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "start_date": "2023-03-17", + "operator": "IONITY", + "ref": "FRIONE440100", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05325500000, + 50.54921000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - THIEBLEMONT-FAREMONT - Rue Laurent Gerard", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E42689;FRS51E42688", + "start_date": "2020-12-11", + "description": "MODULO - THIEBLEMONT-FAREMONT - Rue Laurent Gerard", + "ref:EU:EVSE": "FRS51E42689;FRS51E42688" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73088900000, + 48.69136400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOURISP - Parking Carrefour Market", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65106001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33408000000, + 42.82758000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "RELAIS DES PALOMBIERES", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "start_date": "2024-07-26", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCENF080372", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF080372", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03672800000, + 45.00158400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34162001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "MONTAGNAC - Avenue Du 11 Novembre", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48299444000, + 43.48046390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXAYSUU", + "start_date": "2016-10-12", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Grand-champ - Rue de la Poste", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84266400000, + 47.75808400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3868621042002004197", + "ref": "541862", + "description": "Freshmile France/SRNTWNCMBI", + "opening_hours": "Fr,Mo,Th,We,Tu 09:00-18:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47166900000, + 47.50941800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP92063B", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "330281", + "start_date": "2021-01-06", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Citadine - Rueil-Malmaison - Édouard Belin;Métropolis/FR*MGP*P92063*B", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16936100000, + 48.88770500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2020-07-08", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINRENAULT944701", + "description": "Renault - Boissy-St-Léger", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:30-12:00, Sa 14:00-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50913900000, + 48.74872100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VILLA HOTEL", + "description": "VILLA HOTEL", + "start_date": "2023-03-22", + "ref": "FRC2P006202;FRC2P006201", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRC2P006202;FRC2P006201", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "owner:ref:FR:SIREN": "922445440" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60904217830, + 47.66616053717 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "capacity": "2", + "ref": "34e85270-ea64-11ed-a05b-0242ac120003", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2023-05-04", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "description": "HOTEL LE COLLIER", + "ref:EU:EVSE": "FRLUMEHOTELLECOLLIER11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11869700000, + 43.58717480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "a37ea686-714d-51c2-af8f-88af5e9dd582", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | Limeuil | Rue du Port", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88787000000, + 44.88431000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE33LABA", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Citroën Labat - LACANAU", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-29", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06820400000, + 44.97642700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP1994218278328504633", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "description": "BornEco/649c10906a4e31e6c35428b2", + "ref": "882351" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27643100000, + 48.21583200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "485163", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/JBMCIPOQG1", + "ref:EU:EVSE": "FRLE2P5858060141903324619" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48017600000, + 43.86358400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Puyloubier, Avenue du Chemin Neuf", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM13PJY28QDJCF6", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67331300000, + 43.52475600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDEY/QCI92NVVNY", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P7685066682083269186", + "ref": "402602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64666700000, + 47.74408300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-04-24", + "ref:EU:EVSE": "FR3R3P89363715", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "R3 - Norauto Colmar", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36311100000, + 48.10685500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/MBSSYTGNDB", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1989031668216025633", + "operator": "Freshmile | FR*FR1", + "ref": "694271" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.90537700000, + -17.52763100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PSYUARB", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Système U - Arbois", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75197950000, + 46.91574710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/LWVJGTCWAV", + "ref": "79153", + "ref:EU:EVSE": "FREBNPLWVJGTCWAV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62342800000, + 44.66996700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "951578", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref:EU:EVSE": "FREVZP2722794979280238934", + "opening_hours": "24/7", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW", + "description": "EVzen/a346ec49-7def-4c54-a806-363347de2c9f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89583900000, + 45.59685000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*766*1*_*_;FR*SOD*S*OTHR*766*2*_*_", + "charging_station:output": "3.68 kW;22 kW", + "description": "FFF - MAIRIE DE PLOUMAGOAR", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-03", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "ref:EU:EVSE": "FROTHPOTHR76622;FROTHPOTHR76621;FROTHPOTHR76612;FROTHPOTHR76611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13437868149, + 48.54323828639 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Auris, Place des Orgières;Réseau eborn/KAH5MCU0PR", + "opening_hours": "24/7", + "ref": "KAH5MCU0PR;735243", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2023-02-07", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPKAH5MCU0PR;FREBNP3330206939741576723" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07781100000, + 45.05606700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPFZYNI4UPQP", + "description": "Réseau eborn/FZYNI4UPQP", + "operator:email": "roaming@freshmile.com", + "ref": "31636", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07477000000, + 46.04149600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*392*2*_*_;FR*SOD*S*OTHR*392*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "CAMPING LES ROCHELETS - SAINT-BREVIN-LES-PINS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR39222;FROTHPOTHR39221;FROTHPOTHR39211;FROTHPOTHR39212", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "network": "CAMPING LES ROCHELETS", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15432600000, + 47.21398500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P929539221277709241", + "network": "Freshmile France", + "ref": "626252", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SAKZY4U1S4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672000000, + 50.86272000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP30951", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Montmarault, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97554054000, + 46.33082359000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8645900388121310997", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "23", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "682286", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/X2P436SZ2U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766200000, + 49.91268300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01864", + "ref": "FR*TCB*P01864", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-12-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "AMP |220 Rue Charles Kaddouz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43791500000, + 43.31733900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "182528", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UXMNDN", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PUXMNDN", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40326000000, + 48.07620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plouaret - Rue Louis Prigent", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22207002", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.47351200000, + 48.61141500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mazda - Lyon Nord - 22kW AC ", + "network": "ELITE MOTORS - MAZDA LYON NORD", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", + "capacity": "1", + "ref:EU:EVSE": "FRZMAE22AC50776", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2021-01-06", + "ref": "50776", + "owner:ref:FR:SIREN": "968504480", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79744100000, + 45.77670900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Commissariat_Mairie_Wingles", + "ref:EU:EVSE": "FRROSE345", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-05-23", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 50.49472500000, + 50.49472500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "description": "MANTES-LA-VILLE - Route De Houdan", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78362002", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71439720000, + 48.97761670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "18", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIOYE452074;FRIOYE452073;FRIOYE452072;FRIOYE452056;FRIOYE452052;FRIOYE452051;FRIOYE452010;FRIOYE452003;FRIOYE452004;FRIOYE452005;FRIOYE452006;FRIOYE452007;FRIOYE452008;FRIOYE452009;FRIOYE452053;FRIOYE452054;FRIOYE452055;FRIOYE452071", + "start_date": "2023-06-27", + "opening_hours": "24/7", + "charging_station:output": "11 kW;50 kW;350 kW;43 kW;22 kW", + "description": "Pays de Brives Nord", + "ref": "FRIOYE452074;FRIOYE452073;FRIOYE452072;FRIOYE452056;FRIOYE452052;FRIOYE452051;FRIOYE452010;FRIOYE452003;FRIOYE452004;FRIOYE452005;FRIOYE452006;FRIOYE452007;FRIOYE452008;FRIOYE452009;FRIOYE452053;FRIOYE452054;FRIOYE452055;FRIOYE452071", + "socket:type2_combo:output": "50 kW;350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44065300000, + 45.16104300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;43 kW;22 kW;3.7 kW", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS53E53130005;FRS53P53130A", + "start_date": "2024-05-17;2021-07-06", + "description": "LAVAL - Rue Albert Einstein - Parking Palindrome;OuestCharge - Quick Charger Evtronic - Laval - Palindrome", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74099300000, + 48.05408200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "DORRES - Carretera De Las Escaldes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66062001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94513400000, + 42.48713500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "ref": "FRIENE010702;FRIENE010701", + "capacity": "4", + "ref:EU:EVSE": "FRIENE010702;FRIENE010701", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-09-12", + "network": "Amanvillers", + "description": "Amanvillers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05826280000, + 49.16911320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "description": "DINARD - 15 rue Gouyon Matignon (Parking du Cosec) ", + "ref:EU:EVSE": "FRS35P35093001B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06618900000, + 48.62376800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-SACO-001", + "capacity": "2", + "amenity": "charging_station", + "description": "ST GERMAIN DE LA COUDRE - République", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS61P61394A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60526900000, + 48.28061800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "515075", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/MZO1WROI2A", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7704796472572519387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60106800000, + 48.02019300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79753;XUVKYK", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "ref:EU:EVSE": "FRS31PXUVKYK", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "start_date": "2018-04-16", + "description": "Roulez Électrique En Haute-Garonne/XUVKYK;Bretx, Clauses de la Filouse", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19896000000, + 43.70520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92050004", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-12-18", + "description": "NANTERRE - Boulevard de Pesaro" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22481000000, + 48.89558940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000464;FRCG0E000428", + "start_date": "2022-11-07", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "CHATEAU DES ANNEREAUX - 33500", + "description": "CHATEAU DES ANNEREAUX - 33500", + "ref": "FRCG0E000464;FRCG0E000428", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21230200000, + 44.95635100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*175*3*_*_;FR*SOD*S*NICE*175*2*_*_", + "ref:EU:EVSE": "FRM06PNICE17521;FRM06PNICE17531", + "description": "LEVENS - PARKING VILLAGE", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22675700000, + 43.86017600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "5f506b02-a7c1-5413-9f65-0bfa579bee90", + "description": "MOBIVE | Foulayronnes | Place du Marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64414700000, + 44.23867400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 4 BOULEVARD CONSTANT MELET - VAIRES-SUR-MARNE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE31311;FRSIGPSIGE31312", + "ref": "FR*SOD*S*SIGE*313*1*_*_", + "start_date": "2022-11-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64049100000, + 48.87330800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref:EU:EVSE": "FRBMPS229890;FRBMPS229889;FRBMPS230284", + "ref": "230284;229889;229890", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "Bump - Hyper U - CHANTONNAY", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04867200000, + 46.68189480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3306EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "REIMS Juin", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3306EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01691100000, + 49.22133500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Mont | Place de la Mairie", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "c00de6a7-dc56-5ed0-a92c-e3bf2160dfc7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65166200000, + 43.43383600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "description": "Savigny-sur-Orge - Avenue des Marronniers", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "74ee81ab-7a14-507c-80dc-2b51fbc3e14c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34982500000, + 48.69627000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RUE SAINT HONORE - VERSAILLES", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78130VERH0N0RE", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "ref": "FR*55C*P78130*VER*H0N0RE", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12459300000, + 48.79742400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "LA CHATAIGNERAIE", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4300EVCP01;LFR4300EVCP02;LFR4300EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4300EVCP01;LFR4300EVCP02;LFR4300EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74973800000, + 46.64264200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMAFM", + "description": "Intermarché - Aigrefeuille-sur-Maine", + "socket:type2_combo:output": "50 kW;120 kW", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-02-27;2023-02-14", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41113700000, + 47.08281800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FJYNYUSSSJ;Montauroux, Place Du Clos", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNFJYNYUSSSJ;FREBNPFJYNYUSSSJ", + "ref": "FJYNYUSSSJ;75323", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76523500000, + 43.61790600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Thionville Place Malraux", + "ref": "FRETIP57672G", + "ref:EU:EVSE": "FRETIP57672G" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16040177000, + 49.36005120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Saint-Malo Duguay Trouin P12 - EFFIA", + "ref:EU:EVSE": "FRP01E35288010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01595000000, + 48.65185000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT623101", + "opening_hours": "24/7", + "start_date": "2023-10-20", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Fruges", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13206900000, + 50.50965900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMHD5MKUFAK", + "ref": "96011", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/MHD5MKUFAK", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33678600000, + 45.79286600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-03;2022-10-04", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*OTHR*506*2*_*_;FR*SOD*S*OTHR*506*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR50611;FROTHPOTHR50612;FROTHPOTHR50621;FROTHPOTHR50622", + "description": "INTERMARCHE - JOINVILLE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14605500000, + 48.44934600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT 4 CHENES 28", + "description": "WAAT 4 CHENES 28", + "amenity": "charging_station", + "capacity": "12", + "ref": "FRCPIE6715805;FRCPIE6715795;FRCPIE6715815;FRCPIE6715825;FRCPIE6715835;FRCPIE6715845", + "start_date": "2023-04-25", + "ref:EU:EVSE": "FRCPIE6715805;FRCPIE6715795;FRCPIE6715815;FRCPIE6715825;FRCPIE6715835;FRCPIE6715845", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58691100000, + 48.77791900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8829801494821845785", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YOTUP5OVAQ", + "ref": "435186" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52703300000, + 47.56158600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2024-02-22", + "ref": "setp0100000193", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "description": "UBI-LHSM-147", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10069984;FRUBIE10076037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13127800000, + 49.51413900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "50 kW;3 kW", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "50 kW;3 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "74969", + "description": "Freshmile France/VUNCDL", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5460743917774351724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097000000, + 44.84140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - 5 allée du vivarais", + "ref:EU:EVSE": "FRTLSE31555045", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39793000000, + 43.61809000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7811868349105603023", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LSF6JWOBET", + "operator": "Freshmile | FR*FR1", + "ref": "472221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50330100000, + 47.24699700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P7369226505760999221", + "operator:email": "roaming@freshmile.com", + "ref": "461697", + "description": "MobiSDEC/E4PPW00CLV", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26914900000, + 49.40857300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12085001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "description": "CRESPIN - Le Bourg", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28186800000, + 44.15971200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "WAAT", + "description": "WAAT/FRWATLCEGW9FHJ", + "ref": "787236", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA3P2962555567005455745", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87725600000, + 45.73416600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49215A;FRS49E49215001", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Montreuil-Bellay - Concorde;MONTREUIL-BELLAY - Place du Concorde", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-16;2024-04-09;2022-02-11", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15513200000, + 47.13052600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/Planchermarcel", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70PPLANCHERMARCEL", + "charging_station:output": "22 kW", + "ref": "65009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73722000000, + 47.75550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E59578001", + "description": "STEENBECQUE - Place Jean Ruyssen", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48524800000, + 50.67379900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SORIGNY - Av. du 11 Novembre 1918", + "description": "MODULO - SORIGNY - Av. du 11 Novembre 1918", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E214053;FRS37E214054", + "charging_station:output": "0 kW", + "ref": "FRS37E214053;FRS37E214054", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69715172000, + 47.24320891000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-11", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Parent - Gare", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63269B", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21635011000, + 45.61447849000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "FEIGNIES - Route de Valenciennes", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH02E59225002", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90704200000, + 50.28059400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34001001", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "ABEILHAN - Parking Boulevard Emile Zola", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29611944444, + 43.44885000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94021004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CHEVILLY-LARUE - Rue de la Provence", + "network": "SIPPEREC", + "start_date": "2021-05-11;2021-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35980400000, + 48.77233000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE29512;FRM06PNICE29511;FRM06PNICE29521;FRM06PNICE29522", + "description": "NICE - GROSSO", + "start_date": "2023-11-24;2023-11-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*295*2*_*_;FR*SOD*S*NICE*295*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25320054720, + 43.69460214069 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Montcaret | Place Tournier", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "c8384ffe-cda7-58fe-b303-fe37ef38f87c", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06528700000, + 44.85280200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 9 RUE DE LA REPUBLIQUE - PRESLES", + "ref:EU:EVSE": "FRSIGPSIGE42111;FRSIGPSIGE42112", + "start_date": "2023-05-25", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*421*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28451600000, + 49.11516600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "description": "DRAGUIGNAN", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSDRGNA", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46473000000, + 43.54109000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3650EVCP03;LFR3650EVCP02;LFR3650EVCP01", + "description": "LONGEVILLE-LES-METZ Symphorien", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3650EVCP02;LFR3650EVCP01;LFR3650EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15861500000, + 49.11225500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Saint Jean de Luz | Parking Urdazuri", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "d7e1dda7-11de-5091-a835-ea0ff708c79d", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66143200000, + 43.38500600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "SAULT - Place des Aires", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "58adf362-8712-5359-9bfa-ca9194bb0990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40886300000, + 44.09301200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES BREVIAIRES - Route des Harras", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-09-29", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78108001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81340970000, + 48.70789470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3294EVCP02;LFR3294EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3294EVCP02;LFR3294EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "OLONNE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77624700000, + 46.51386700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-08-25", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Intermarché - Saint-André", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMSTA", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97705426724, + 42.55249492144 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Roanne, Centre commercial Saint Louis", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPKMKK2WXJUA", + "ref": "KMKK2WXJUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06726420000, + 46.03302770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP89438A", + "ref": "FRETIP89438A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Moulin de la Coudre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65980354645, + 47.80240190875 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cora - Soissons", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "socket:type2_combo:output": "120 kW;100 kW;200 kW", + "ref:EU:EVSE": "FRPD1PCORSSO", + "capacity": "13", + "amenity": "charging_station", + "charging_station:output": "120 kW;200 kW;50 kW;100 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-07-07;2023-12-10;2023-12-12;2023-12-16", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31340349486, + 49.37016653626 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-07-15", + "ref:EU:EVSE": "FRDRVPCRFMKT591121", + "description": "Carrefour Market - Annoeullin", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94285100000, + 50.52714400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42207AH", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-04-20", + "ref": "FRESEPS42207AH", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "SEMOB Louis Comte St Chamond" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50397780000, + 45.45777570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPUS SACLAY", + "socket:type2_combo:output": "50 kW", + "network": "EDF-EV100", + "amenity": "charging_station", + "ref": "FR*SOD*S*IZIG*255*88*_*_;FR*SOD*S*IZIG*255*86*_*_;FR*SOD*S*IZIG*255*85*_*_;FR*SOD*S*IZIG*255*84*_*_;FR*SOD*S*IZIG*255*80*_*_;FR*SOD*S*IZIG*255*76*_*_;FR*SOD*S*IZIG*255*75*_*_;FR*SOD*S*IZIG*255*73*_*_;FR*SOD*S*IZIG*255*72*_*_;FR*SOD*S*IZIG*255*71*_*_;FR*SOD*S*IZIG*255*66*_*_;FR*SOD*S*IZIG*255*62*_*_;FR*SOD*S*IZIG*255*61*_*_;FR*SOD*S*IZIG*255*60*_*_;FR*SOD*S*IZIG*255*59*_*_;FR*SOD*S*IZIG*255*58*_*_;FR*SOD*S*IZIG*255*57*_*_;FR*SOD*S*IZIG*255*55*_*_;FR*SOD*S*IZIG*255*48*_*_;FR*SOD*S*IZIG*255*47*_*_;FR*SOD*S*IZIG*255*42*_*_;FR*SOD*S*IZIG*255*41*_*_;FR*SOD*S*IZIG*255*37*_*_;FR*SOD*S*IZIG*255*38*_*_;FR*SOD*S*IZIG*255*39*_*_;FR*SOD*S*IZIG*255*40*_*_;FR*SOD*S*IZIG*255*43*_*_;FR*SOD*S*IZIG*255*44*_*_;FR*SOD*S*IZIG*255*45*_*_;FR*SOD*S*IZIG*255*46*_*_;FR*SOD*S*IZIG*255*50*_*_;FR*SOD*S*IZIG*255*51*_*_;FR*SOD*S*IZIG*255*52*_*_;FR*SOD*S*IZIG*255*53*_*_;FR*SOD*S*IZIG*255*54*_*_;FR*SOD*S*IZIG*255*56*_*_;FR*SOD*S*IZIG*255*63*_*_;FR*SOD*S*IZIG*255*64*_*_;FR*SOD*S*IZIG*255*65*_*_;FR*SOD*S*IZIG*255*67*_*_;FR*SOD*S*IZIG*255*68*_*_;FR*SOD*S*IZIG*255*69*_*_;FR*SOD*S*IZIG*255*70*_*_;FR*SOD*S*IZIG*255*74*_*_;FR*SOD*S*IZIG*255*77*_*_;FR*SOD*S*IZIG*255*78*_*_;FR*SOD*S*IZIG*255*79*_*_;FR*SOD*S*IZIG*255*81*_*_;FR*SOD*S*IZIG*255*82*_*_;FR*SOD*S*IZIG*255*83*_*_;FR*SOD*S*IZIG*255*87*_*_;FR*SOD*S*IZIG*255*89*_*_;FR*SOD*S*IZIG*255*90*_*_", + "capacity": "1", + "ref:EU:EVSE": "FROTHPIZIG255871;FROTHPIZIG255831;FROTHPIZIG255821;FROTHPIZIG255811;FROTHPIZIG255801;FROTHPIZIG255751;FROTHPIZIG255741;FROTHPIZIG255731;FROTHPIZIG255721;FROTHPIZIG255701;FROTHPIZIG255661;FROTHPIZIG255631;FROTHPIZIG255621;FROTHPIZIG255611;FROTHPIZIG255601;FROTHPIZIG255551;FROTHPIZIG255521;FROTHPIZIG255501;FROTHPIZIG255471;FROTHPIZIG255441;FROTHPIZIG255411;FROTHPIZIG255401;FROTHPIZIG255391;FROTHPIZIG255381;FROTHPIZIG255371;FROTHPIZIG255421;FROTHPIZIG255431;FROTHPIZIG255451;FROTHPIZIG255461;FROTHPIZIG255481;FROTHPIZIG255511;FROTHPIZIG255531;FROTHPIZIG255541;FROTHPIZIG255561;FROTHPIZIG255571;FROTHPIZIG255581;FROTHPIZIG255591;FROTHPIZIG255641;FROTHPIZIG255651;FROTHPIZIG255671;FROTHPIZIG255681;FROTHPIZIG255691;FROTHPIZIG255711;FROTHPIZIG255761;FROTHPIZIG255771;FROTHPIZIG255781;FROTHPIZIG255791;FROTHPIZIG255841;FROTHPIZIG255851;FROTHPIZIG255861;FROTHPIZIG255881;FROTHPIZIG255891;FROTHPIZIG255901", + "start_date": "2022-01-26;2021-10-11;2021-10-12;2021-10-08", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "charging_station:output": "50 kW;3.68 kW;7.36 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19440900000, + 48.71555700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-16:00,Tu 08:00-16:00,We 08:00-16:00,Th 08:00-16:00,Fr 08:00-16:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6834745", + "ref": "FRCPIE6834745", + "network": "BORNE BASUYAU STATION 1", + "charging_station:output": "22 kW", + "start_date": "2023-12-12", + "operator:email": "info@chargepoint.com", + "description": "BORNE BASUYAU STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50675100000, + 50.19816100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P346448700990738685", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "368959", + "description": "Freshmile France/VG28KMGHSD", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53437100000, + 44.85577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP122050", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL MONTLHÉRY", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25889200000, + 48.62809200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4258377494769287234", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QOOZLR9PNL", + "operator": "Freshmile | FR*FR1", + "ref": "597981" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63671600000, + 48.86289300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP17477", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Rivesaltes, France", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90831200000, + 42.77534100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LLIVP5VCVB92KF", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8244100265090639249", + "ref": "892224" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.94059400000, + 48.75332300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461775", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/IZJM7OHIWO", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1978027833507669323" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47708600000, + 49.04960600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Graveson, Avenue Du Général De Gaulle", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS13PQ4WRG0VPAM", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77513900000, + 43.85003800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128006", + "network": "WAAT", + "description": "WAAT/FRWATLZRQ6VAXD", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P7173968924054458495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72457100000, + 43.78283400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-15", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P50103001", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "STE MERE EGLISE (CARQUEBUT) - Les Forges", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29588430000, + 49.37984130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LAVAUR - Place René Cassin", + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-04-15", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8114000411;FRS81E8114000412;FRS81E8114000421;FRS81E8114000422", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81639677278, + 43.69664537211 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2022-10-27", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF059193", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF059193", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680657;531680652;531680650;531680651;531680653;531680655;531680656;531680654", + "description": "REL. MARGUERITTES NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44900000000, + 43.87550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS48E48038001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "BEL-AIR-VAL-D'ANCE - Route De Langogne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66369540000, + 44.84996750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/YHQTBN", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PYHQTBN", + "ref": "32833", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35360000000, + 47.63650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOULOGNE-SUR-MER - Boulevard Eurvin", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH05E62160002", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61681800000, + 50.72643300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Saint Segal-Rue de Pont de Buis", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2926300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.06757300000, + 48.24113500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEUEZBT", + "start_date": "2018-07-20", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Arzon - Quai des Cabestans - Le port du Crouesty", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89455100000, + 47.54205200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "MARIGNY-CHEMEREAU-1-2;MARIGNY-CHEMEREAU-1-1", + "opening_hours": "24/7", + "start_date": "2017-02-09", + "ref:EU:EVSE": "FRLMSE12346051922;FRLMSE12346051921;FRLMSE12346051911;FRLMSE12346051912", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B062", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21484000000, + 46.42480900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Metropolis - Proximité - Le Bourget - Elise Deroche;Métropolis/FR*MGP*P93013*B", + "ref:EU:EVSE": "FRMGPP93013B", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "518057", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42698600000, + 48.93219500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "start_date": "2021-03-23", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE9812;FRSIGPSIGE9811", + "charging_station:output": "22 kW", + "description": "SIGEIF - ROND-POINT DU SOUVENIR FRANCAIS - VAUCRESSON", + "ref": "FR*SOD*S*SIGE*98*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16451800000, + 48.84030700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Atlante/FRATLFR00525", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "1022550", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP8987958352835598939", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48753600000, + 43.86796100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "ref:EU:EVSE": "FRLMSE10000882601;FRLMSE10000882591", + "owner:ref:FR:SIREN": "668502966", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "description": "Würth Gonesse", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "start_date": "2023-01-17", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45159100000, + 48.97995000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LOMME - Rue du grand but", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "capacity": "12", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM59E593500011;FRM59E59350001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97498600000, + 50.65277100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "LES SABLES-D'OLONNE - Cours Dupont", + "ref:EU:EVSE": "FRS85E85194001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78187000000, + 46.49718100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2023-01-03", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Libourne", + "network": "Allego Carrefour Libourne", + "ref:EU:EVSE": "FRALLEGO9006181;FRALLEGO9000382;FRALLEGO9000381;FRALLEGO9001321;FRALLEGO9001322;FRALLEGO9002961;FRALLEGO9002962;FRALLEGO9002963;FRALLEGO9006182;FRALLEGO9006681;FRALLEGO9006682", + "ref": "FRALLEGO9006181;FRALLEGO9000382;FRALLEGO9000381;FRALLEGO9001321;FRALLEGO9001322;FRALLEGO9002961;FRALLEGO9002962;FRALLEGO9002963;FRALLEGO9006182;FRALLEGO9006681;FRALLEGO9006682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22009762000, + 44.90070826000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-02", + "description": "IZIVIA | MARSEILLE 04 - BOULEVARD BOISSON", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "ref": "FR*SOD*S*MAMP*36*1*_*_", + "ref:EU:EVSE": "FRIZMPMAMP3612;FRIZMPMAMP3611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40404200000, + 43.29646200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Match - Doullens", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMATDLN", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-04-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34776077802, + 50.16016666961 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/CPRBTI1JCS;Le Castellet, 3054 Route des Sources", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPCPRBTI1JCS;FREBNCPRBTI1JCS", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "CPRBTI1JCS;50734", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77190200000, + 43.17646100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/E92CC8EA-BB18-4A91-BD9A-979E8A809E8A", + "capacity": "2", + "amenity": "charging_station", + "ref": "927819", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP2925082537460815270", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40901400000, + 43.30799400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIBIDUN", + "opening_hours": "24/7", + "start_date": "2024-07-25", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "description": "Ibis Budget - Dunkerque", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31078463439, + 51.00710147233 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "230929;COBGZQF7KR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Le Luc, Parking Rond point de l'Europe;Réseau eborn/COBGZQF7KR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPCOBGZQF7KR;FREBNCOBGZQF7KR", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31651700000, + 43.39270000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - IBIS hotel LUCE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-01-18", + "ref:EU:EVSE": "FRETIP28218A", + "ref": "FRETIP28218A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44978761068, + 48.43729011840 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-06-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U - LISLE-JOURDAIN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR19641;FROTHPOTHR19631;FROTHPOTHR19621;FROTHPOTHR19611", + "ref": "FR*SOD*S*OTHR*196*2*_*_;FR*SOD*S*OTHR*196*1*_*_;FR*SOD*S*OTHR*196*3*_*_;FR*SOD*S*OTHR*196*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09001300000, + 43.61337600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BALLAINVILLIERS - HAUTS-FRESNAIS", + "ref:EU:EVSE": "FRCPSPCAPS2812;FRCPSPCAPS2811", + "start_date": "2024-08-14", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*CAPS*28*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27988100000, + 48.66550100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P2067415594448503307", + "description": "Freshmile France/PIY0KLXO2X", + "operator": "Freshmile | FR*FR1", + "ref": "782532" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84888900000, + 47.02514200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "contact@mobilygreen.fr", + "operator": "Mobilygreen | FR*VIS", + "socket:type2_combo:output": "48 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVISP1650659021772465497", + "ref": "800037", + "description": "ENRGETICA/50187cd9-2e9b-4c50-a355-4dec09e949d1", + "opening_hours": "24/7", + "network": "ENRGETICA", + "charging_station:output": "22 kW;48 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44022200000, + 43.52848400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4798152146660589683", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "682121", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/B3IBLOQRWG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91937200000, + 46.53788600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1000098806;FRSWSE1000081553", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "network": "SOWATT SOLUTIONS", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Sa 09:00-12:00,Sa 14:00-18:00;24/7", + "start_date": "2022-07-22;2022-07-27", + "ref": "1000081553;1000098806", + "operator": "SOWATT SOLUTIONS", + "description": "ALPITRONIC 300kW Audi Echirolles;ABB T54 Audi Echirolles", + "owner:ref:FR:SIREN": "903356970", + "capacity": "2;4", + "charging_station:output": "300 kW;50 kW;22 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71001400000, + 45.15162200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DL5LSORYGN", + "ref:EU:EVSE": "FRFR1P8607163919967649237", + "operator": "Freshmile | FR*FR1", + "ref": "735126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14770300000, + 49.37096100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPGAMMVERT594501", + "start_date": "2022-10-26", + "description": "Gamm Vert - Sin-le-Noble", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11921500000, + 50.36681500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS28E137317;FRS28E137316", + "ref": "FRS28E137317;FRS28E137316", + "charging_station:output": "0 kW", + "description": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2022-07-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18617300000, + 48.04401900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EVB-P21151738", + "operator": "L'AERODROME DE LA BAIE DE SOMME", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "hotelrestaurant@laerodrome.com", + "owner:ref:FR:SIREN": "824255509", + "description": "Parking L'Aérodrome de la Baie de Somme", + "start_date": "2021-10-08", + "network": "AERODROME BAIE SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82551894914, + 50.13950991486 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/TAP2EUA8MR", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P8172975658743940328", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "39800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08050800000, + 48.29368100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLUUAJF9DL", + "opening_hours": "24/7", + "ref": "706289", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWATP1811135616290125262", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74421100000, + 47.65628900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-20", + "description": "PORTBAIL - Place de l'Eglise", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50580001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69621310000, + 49.33559480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TEILLET - Place De La Mairie", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2018-02-22", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8129500122;FRS81E8129500121;FRS81E8129500111;FRS81E8129500112", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33943834880, + 43.83408981964 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "owner:ref:FR:SIREN": "692051113", + "ref:EU:EVSE": "FRIPKEGRI", + "amenity": "charging_station", + "ref": "FRIPKEGRI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-06", + "description": "INTERPARKING - Nice Grimaldi", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451000000, + 43.69807000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49080A", + "start_date": "2021-04-09", + "description": "OuestCharge - Diva Sp - Chateauneuf-sur-Sarthe - Lefort" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48803100000, + 47.68098000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PPLAILLY", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "482088", + "description": "Mouv'Oise/Plailly" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59307000000, + 49.10630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH13E62119007", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2022-12-01", + "description": "BETHUNE - Avenue de l'Abattoir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63226800000, + 50.53175300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MOLIERES CAVAILLAC - Plaine De Cavaillac", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30170001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58746600000, + 43.97354600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Mauron - Rue du 19 Mars 1962", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-06-14", + "ref:EU:EVSE": "FRS56PPMKMGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28273700000, + 48.08235600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-03-23", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346396671;FRLMSE12346396681", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B025", + "description": "CHAUVIGNY PEURON-1-1;CHAUVIGNY PEURON-1-2", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62974000000, + 46.56322900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP94080D", + "ref": "348968", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "885354860", + "description": "Métropolis/FR*MGP*P94080*D;Metropolis - ePremium - Vincennes - Péri", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44718300000, + 48.84689600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-02-28", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - PLACE DE LA MAIRIE - MARNES-LA-COQUETTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*13*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE1311;FRSIGPSIGE1312", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17806700000, + 48.83056700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTIGNY LE BRETONNEUX - Avenue de la Gare", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78423003", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-06-21", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04689030000, + 48.78631130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Meaux", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000123974", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90322400000, + 48.96712400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Jarnac | Place du Château", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "67ee490f-2ae6-5db6-ac4c-c130eaafe76f", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17419300000, + 45.67888300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Place Jean Dufournier - BESSE SUR BRAYE", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-07-18", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE72BACA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75348700000, + 47.83341700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "start_date": "2023-03-23", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "description": "ATHIS MONS", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSATHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37223800000, + 48.71166200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3470EVCP01;LFR3470EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3470EVCP01;LFR3470EVCP02", + "description": "MARMOUTIER", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37432700000, + 48.70675500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Carmes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRM31E31555006", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44480600000, + 43.59727800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2022-09-22", + "ref": "X5JIHAHDBL;598296", + "capacity": "4", + "ref:EU:EVSE": "FREBNPX5JIHAHDBL;FREBNP7965298763089808626", + "opening_hours": "24/7", + "description": "Arâches-La-Frasse, Flaine 2;Réseau eborn/X5JIHAHDBL", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "7.4 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69079400000, + 46.00793000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8700835081887160841", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/P4I9QD4QKG", + "operator": "Freshmile | FR*FR1", + "ref": "529505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55864800000, + 50.41373400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "PARIS - Haussmann - Galeries Lafayette", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E75109002;FRP07E751090021", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "10", + "start_date": "2020-06-04;2020-06-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33081300000, + 48.87325700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Porte-de-Savoie , Passage du 19 mars 1962;Réseau eborn/L8FMQOSKS4", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPL8FMQOSKS4;FREBNP116628439598920634", + "ref": "346802;L8FMQOSKS4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00026600000, + 45.49924700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-09", + "ref:EU:EVSE": "FREFLEV9317488", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "contact@qowatt.com", + "description": "QoWatt - CENTRE AFFAIRES ERMITAGE POITIERS", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "904074716", + "charging_station:output": "22 kW", + "ref": "FR*EFL*EV9317488*C1", + "network": "QoWatt", + "operator": "QoWatt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31710000000, + 46.55540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-07-04;2024-06-11", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E59350003;FRP01E593500031", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Lille République - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06288600000, + 50.63101400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Su 08:00-15:00,Mo 08:00-15:00,Tu 08:00-15:00,We 08:00-15:00,Th 08:00-15:00,Fr 08:00-15:00,Sa 08:00-15:00", + "ref": "FRCPIE6609845", + "capacity": "2", + "amenity": "charging_station", + "description": "UNILABS BIO CT EPERNAY", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "UNILABS BIO CT EPERNAY", + "ref:EU:EVSE": "FRCPIE6609845", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95807800000, + 49.04327400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Le Pradet, Parking Des Oursinières", + "ref:EU:EVSE": "FREBNPGTTHOQUJRW", + "ref": "GTTHOQUJRW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01877600000, + 43.08455200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "1181928;706268", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/s570522;WAAT/FRWATLQSDPM78G", + "ref:EU:EVSE": "FRWA2P8845803747227488022;FRWATP793989405317837710" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37375500000, + 43.33563700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW;63 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7955186710121270014", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/BOHVRKIAYW", + "ref": "465972", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66684200000, + 48.58700100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00697", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "network": "BMW METZ", + "ref": "FRTCBP00697", + "opening_hours": "Mo-Fr 07:45-12:30,Mo-Fr 13:30-19:00,Sa 08:30-12:00,Sa 14:00-18:00", + "charging_station:output": "50 kW;43 kW", + "description": "CAR AVENUE - BMW METZ", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "332834175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23359795418, + 49.10522433613 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PMELUNDOUMER", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120752", + "description": "Freshmile France/Melunermi", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65415000000, + 48.52650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "description": "Hyundai - Autodif - Brignoles", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPTHAONHYUNDAI831701", + "operator:email": "support@driveco.com", + "start_date": "2022-10-14;2022-09-08", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04858900000, + 43.40000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "description": "La Foret Fouesnant-Rue Charles de Gaulle", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2905700", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97773600000, + 47.90942800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/FHE4S0TLNK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446897", + "ref:EU:EVSE": "FRS10P1834210899891310375" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62083200000, + 48.38043300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "description": "Hôtel la Bombardière - 22 kW AC", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC121744;FRZP1PEAC121740;FRZP1PEAC121904;FRZP1PEAC121909", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "378690630", + "charging_station:output": "22 kW", + "network": "Logis Hôtel la Bombardière", + "ref": "376459a8-ec33-4e04-896a-4f0b637939e5", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88958452000, + 43.56756550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E200426;FRS08E200427", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS08E200426;FRS08E200427", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - BAIRON - Lac Bairon", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BAIRON - Lac Bairon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78298900000, + 49.52675600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64628", + "description": "FDE 80/EGMDVD", + "ref:EU:EVSE": "FRS80PEGMDVD", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83717000000, + 50.10720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-09-24", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*199*2*_*_", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST19922;FRIZFPFAST19921;FRIZFPFAST19923", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - COURSEULLES-SUR-MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44560240000, + 49.31271920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-13;2024-06-04", + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44146A;FRS44E0440121", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "ROUGE - Rue Du Vieux Rouge;OuestCharge - Diva Sp - Rouge - Vieux Rouge", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44902800000, + 47.78388300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-09-18;2015-05-28", + "ref:EU:EVSE": "FRS77E77027001;FRS77P77027A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "Beaumont-du-Gâtinais;BEAUMONT-DU-GATINAIS - Rue Du Mail Est", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW", + "ref": "01F5ZAKH60ECP5XDNXDFK3HVCM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47839300000, + 48.13933600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGOBPCARREFOURMARKETCOLLIN", + "capacity": "2", + "amenity": "charging_station", + "network": "GMOB", + "description": "Carrefour Market Collin", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "97609174-6d99-4870-9c58-ecbbc2a72463", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "911886703", + "operator:email": "contact@gmob.fr", + "operator": "G-MOB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.60529200000, + 16.20394000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - BOSSEE - Pl. de la mairie", + "operator:email": "support@modulo-energies.fr", + "start_date": "2022-03-09", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRS37E219746;FRS37E219748", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E219746;FRS37E219748", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BOSSEE - Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72963400000, + 47.11199100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-05", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Les fougerêts - Place de la Mairie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PULLLGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21280300000, + 47.73902100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "description": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "amenity": "charging_station", + "network": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "ref": "FRG10P45249A", + "start_date": "2022-07-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P45249A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79290500000, + 48.03500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Estillac | Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "615b6163-05fe-59c1-ac46-098f9f48a60a", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57721700000, + 44.16872000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*242*1*_*_", + "description": "SIGEIF - 2 RUE MARCEL MONGE - SURESNES", + "ref:EU:EVSE": "FRSIGPSIGE24211;FRSIGPSIGE24212", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-04-06", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22405900000, + 48.86125200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "opening_hours": "Th,Mo,Fr,We,Tu 00:00-23:59,Sa 00:00-12:00", + "charging_station:output": "350 kW;120 kW", + "socket:type2_combo:output": "350 kW;120 kW", + "ref": "21799", + "description": "Move In Pure/MCNYGZ", + "ref:EU:EVSE": "FRCN1PMCNYGZ", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83787000000, + 45.72610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/EOJBWKSCLF", + "ref:EU:EVSE": "FRLE2P1041879791175035952", + "ref": "510623" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082400000, + 49.00313800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "3499ee6a-ad83-5e80-b78a-70b6229ce1ce", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "description": "MOBIVE | Les Mathes | Avenue du Poitou (la Palmyre)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17870600000, + 45.69160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE94VABA", + "operator": "STATIONS-E", + "description": "Supermarché Triangle - VILLENEUVE SAINT GEORGES", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "charging_station:output": "24 kW;22 kW", + "opening_hours": "08:30-20:30", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-07-05", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44870600000, + 48.73889900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "St-Remy-de-Provence, Avenue Louis Mistral", + "ref:EU:EVSE": "FRABAPSY6TQUL6QL", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82999400000, + 43.79075600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CAUSSADE Grimal", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3381EVCP03;LFR3381EVCP02;LFR3381EVCP01", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3381EVCP03;LFR3381EVCP02;LFR3381EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52389400000, + 44.14744900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GRENOBLE - Rue Docteur Hermite", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38185025", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71091149780, + 45.18171783113 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "ANTIBES PARKING ST ROCH", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2020-12-21;2018-04-04", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*10*2*_*_;FR*SOD*S*WIIZ*10*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ1022;FRA16PWIIZ1012;FRA16PWIIZ1011;FRA16PWIIZ1021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12336100000, + 43.58397300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3412698030702044855", + "description": "Freshmile France/TMRU6GQRN3", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "441045", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58976000000, + 46.33060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PACCTRI", + "amenity": "charging_station", + "description": "hotelF1 - Trignac", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "start_date": "2023-12-14;2023-12-13", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21014390310, + 47.29195942764 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPTYMBBVGUX0", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Saint-Julien-En-Genevois, Grand Rue", + "ref": "TYMBBVGUX0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07972510000, + 46.14115370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2023-06-14", + "owner:ref:FR:SIREN": "891624884", + "description": "A89 - Aire de Manzat (double sens)", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPAAMZT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98933300000, + 45.95702700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking Sucy-en-Brie Marché - EFFIA", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E94071002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51848600000, + 48.77192200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6664735", + "network": "SONEPAR LILLE", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR LILLE", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-12-13", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6664735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97398900000, + 50.63844200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "socket:type2_combo:output": "120 kW;60 kW", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHP8811594712655209270;FRECHPREAFBETMMN;FRECHP1644326819426031567;FRECHPXHS48CLQNH", + "opening_hours": "24/7", + "description": "Easy Charge/XHS48CLQNH;GAP , Parking de Bonne;Easy Charge/REAFBETMMN", + "start_date": "2023-03-08", + "ref": "749271;XHS48CLQNH;REAFBETMMN;749244", + "capacity": "3;6", + "network": "Easycharge services;Easy Charge", + "charging_station:output": "120 kW;22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08177300000, + 44.56212800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX20*08", + "ref:EU:EVSE": "FRV75PPX2008", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue Monte Cristo 24", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39849120000, + 48.85522530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "159403", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ERHZAA", + "ref:EU:EVSE": "FRFR1PERHZAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64299000000, + 49.42920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX0402", + "amenity": "charging_station", + "start_date": "2022-06-27;2021-11-25", + "ref": "FR*V75*PPX04*02", + "description": "Paris | Rue François Miron 80", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35919390000, + 48.85536720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/YOK4NQXJLT", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2614022753461375941", + "operator": "Freshmile | FR*FR1", + "ref": "682292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47967500000, + 46.75713500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "description": "Volvo - ABVV Automobiles - St Ouen l'Aumône", + "ref:EU:EVSE": "FRSSDPABVVVOLVO953101", + "start_date": "2022-11-09;2021-02-02;2022-06-29", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12245000000, + 49.03599400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS22E22266001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Rostrenen-Place Bourg Kohz", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31622500000, + 48.23455400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E113070", + "network": "MODULO - HENRICHEMONT - Pl. de d'église", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS18E113070", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - HENRICHEMONT - Pl. de d'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52614680000, + 47.30317135000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZTLE22AC62872;FRZTLE22AC62871;FRZTLE22AC60012;FRZTLE22AC60013", + "ref": "62871;60013;60012;62872", + "amenity": "charging_station", + "capacity": "1", + "network": "TOYOTA ANTIBES- NOVELLIPSE", + "description": "Toyota - Antibes - 22kW AC;Toyota - Antibes - 22kW AC ", + "charging_station:output": "21 kW;22 kW", + "owner:ref:FR:SIREN": "827876251", + "operator:email": "advenir@zeborne.com", + "start_date": "2021-06-14;2021-04-29", + "operator": "ZEBORNE", + "opening_hours": "Mo-sat 09:00-19:00,Sun 10:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08805390000, + 43.60232650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P5627617244752085326", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/ENFWY3FHBW", + "ref": "626384", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38777900000, + 48.07744100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/feuquebaie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64670", + "ref:EU:EVSE": "FRS80PFEUQUEBAIE", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59010000000, + 50.07090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - MARSEILLE BLANCARDE", + "ref:EU:EVSE": "FRIZFPFAST7813;FRIZFPFAST7811;FRIZFPFAST7812", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*78*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40129640000, + 43.30314250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-19;2021-04-30", + "description": "NOZAY - Impasse Du Lavoir;OuestCharge - Diva Sp - Nozay - Lavoir", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44113B;FRS44E44113002", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62302800000, + 47.56614500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77284C;FRS77E77284003", + "ref": "86dcd48e-60d3-4f3c-98f8-ab3af2d86f02", + "start_date": "2023-09-13", + "description": "MEAUX - Camille Guérin 1;Meaux - Camille Guérin 1", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88255300000, + 48.96747500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AIRE-SUR-LA-LYS - Rue des Alliés", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH01E62014001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39078500000, + 50.63745500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E221320;FRS37E221316", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - SUBLAINES – ZA Bois Gaulpied", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E221320;FRS37E221316", + "start_date": "2023-10-20", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SUBLAINES – ZA Bois Gaulpied" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98677800000, + 47.29086300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS55E66259;FRS55E66260", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - L'ISLE EN RIGAULT - Rue Henri Chevalier", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "description": "MODULO - L'ISLE EN RIGAULT - Rue Henri Chevalier", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS55E66259;FRS55E66260", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04627600000, + 48.71691500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*125*4*_*_;FR*SOD*S*LYON*125*3*_*_;FR*SOD*S*LYON*125*1*_*_;FR*SOD*S*LYON*125*2*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY409 - HOPITAL CROIX-ROUSSE", + "operator:email": "sav@izivia.com", + "start_date": "2021-08-31", + "ref:EU:EVSE": "FRGLYPLYON12541;FRGLYPLYON12531;FRGLYPLYON12521;FRGLYPLYON12511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83424900000, + 45.78143600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMELP5913403", + "opening_hours": "24/7", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "description": "HERLIES - Rue du Bourg", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59134*03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85382100000, + 50.57670600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAIRIEROGLIANO202471", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "Rogliano - Mairie", + "operator:email": "support@driveco.com", + "start_date": "2021-02-19", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45532100000, + 42.95753800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPERU BORNE CLIENT", + "description": "SUPERU BORNE CLIENT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6566565", + "opening_hours": "24/7", + "ref": "FRCPIE6566565", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06532400000, + 48.06910200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/E23HKPXHU0", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "20", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P8629009389569295481", + "ref": "735234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23864700000, + 44.51674400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "eb252328-c261-5973-ae19-8aa6061de56d", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Selve | Grand Rue | Salle Polyvalente", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47857800000, + 44.67112400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "de7cc94f-97fa-5847-85c4-ff1e55e9fa57", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Yerres - Rond-Point Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48292000000, + 48.69438600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO0001071", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref": "FRALLEGO0001071", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "description": "Allego NISSAN Ségny", + "network": "Allego NISSAN Ségny", + "operator:email": "info@allego.eu", + "start_date": "2019-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06989000000, + 46.30011600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4216EVCP02;LFR4216EVCP01;LFR4216EVCP03", + "description": "LATTES - Frêche", + "ref:EU:EVSE": "LFR4216EVCP02;LFR4216EVCP01;LFR4216EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92310700000, + 43.58207100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-10-02;2020-10-01", + "network": "NICE RP", + "description": "P+R NIKAIA ETAGE 2", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE8551;FRM06PNICE8531;FRM06PNICE8511;FRM06PNICE8521;FRM06PNICE8541", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*85*5*_*_;FR*SOD*S*NICE*85*2*_*_;FR*SOD*S*NICE*85*1*_*_;FR*SOD*S*NICE*85*3*_*_;FR*SOD*S*NICE*85*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19711200000, + 43.67652300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*212*1*_*_", + "description": "ROQUEBRUNE-SUR-ARGENS - PARKING ISSAMBRE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ21211;FRA16PWIIZ21212", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69425700000, + 43.34184900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P3488695329554635526", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/DRECSOIEMU", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "465993" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.45680100000, + -21.33254300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Mr. Bricolage - Bollwiller", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PMBRBLW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-10-21", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25719233897, + 47.86232302434 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "79315;VSQHNQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPVSQHNQ", + "start_date": "2020-06-11", + "description": "Réseau eborn/VSQHNQ;Sainte-Croix-De-Verdon, Le Village" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15186000000, + 43.75920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "924672", + "ref:EU:EVSE": "FREVZP1705979735479869065", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "description": "ENGIE MAMP - Bornes publiques/385658E1-E25E-4253-A45B-42C9B729476F", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17191900000, + 43.37935900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "METZ - Pompidou", + "operator:email": "support@alizecharge.fr", + "capacity": "35", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E574630173;FRP07E574630172;FRP07E574630171;FRP07E57463017", + "operator": "Bouygues E&S", + "start_date": "2023-12-21;2023-02-09", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17935860000, + 49.10799400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-18", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJR9TTMXTJ7;FREBNEAMVM1", + "description": "Réseau eborn/JR9TTMXTJ7;La Talaudiere, Parking place Jean Moulin", + "ref": "JR9TTMXTJ7;133480", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43520000000, + 45.48154000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Su,Sa,Mo,We,Fr,Th,Tu 08:00-18:00", + "ref:EU:EVSE": "FREFLP6769926292495747033", + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "ref": "920010", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "description": "Road/6447a39e426e750012641e68", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34974900000, + 44.41680400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Campanile Valenciennes-Ouest", + "amenity": "charging_station", + "start_date": "2023-10-05", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121022", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47257000000, + 50.37695000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7309232240186713049", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "124 kW", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "124 kW", + "ref": "482001", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/B2HE7Y57KD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.82486000000, + 41.92340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Rue de Charenton 251", + "ref:EU:EVSE": "FRV75PPX1204", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX12*04", + "opening_hours": "24/7", + "start_date": "2021-06-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39225560000, + 48.83640940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "541880", + "ref:EU:EVSE": "FRFR1P5614049717176622992", + "opening_hours": "Tu,Mo,Th,We,Fr 14:00-17:00", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VQODSEY6PD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45052500000, + 48.95732600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volvo - Corsin - Sancé", + "ref:EU:EVSE": "FRSSDPCORSINVOLVO710001", + "operator:email": "support@driveco.com", + "start_date": "2022-05-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84333200000, + 46.33390300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PCONCHESGARE1", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "801003", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93716100000, + 48.96230300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SICECO/FR*S21*P21412*A", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS21P21412A", + "network": "SICECO", + "opening_hours": "24/7", + "ref": "180386", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77115800000, + 46.97815600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "SAINT-GERMAIN-EN-LAYE - Place Victor Hugo", + "ref:EU:EVSE": "FRY03E78551001", + "start_date": "2021-09-10;2021-09-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06253630000, + 48.88718560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "info@qwello.fr", + "amenity": "charging_station", + "ref": "FRQWCEJ2C9M", + "capacity": "4", + "network": "Qwello ", + "ref:EU:EVSE": "FRQWCEJ2C9M", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-09-13", + "operator": "Qwello ", + "owner:ref:FR:SIREN": "913705380", + "description": "Pôle de Consultation " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83715500000, + 43.56959500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "781602", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP6366794565449885674", + "description": "WAAT/FRWATLK0BHUBWK", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31026000000, + 47.74297900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Ceignes Haut Bugey", + "ref": "FRIONE431200", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE431200", + "start_date": "2022-03-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49084170000, + 46.11663800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - EPINE - Rue des Moissons", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS51E40007;FRS51E40008", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS51E40007;FRS51E40008", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - EPINE - Rue des Moissons", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46809232000, + 48.97577513000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "6a23956e-b41c-400f-80a7-7300fbcf1820", + "capacity": "2", + "amenity": "charging_station", + "description": "Claye-Souilly - Parking Mariette", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-18", + "ref:EU:EVSE": "FRS77P77118D", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68506600000, + 48.94495200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080342", + "description": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-02-08", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "531681171;531681169;531681166;531681167;531681168;531681170;531681172;531681173", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13770000000, + 47.71590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34114003", + "start_date": "2022-02-14", + "description": "GIGNAC - Place Pierre Mendès France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54481940000, + 43.65173060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PCURVAL", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Ploemeur - Lomener - Place Patrick Bihan", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-10-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43252400000, + 47.70230800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SKHOBW49HF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7428517604186463551", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1179738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13613600000, + 49.24106200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92049F", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "start_date": "2022-03-04", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "description": "Metropolis - Express - Montrouge - Maurice Arnoux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31451738000, + 48.82207878000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "JLR - Groupe Dugardin - Valenciennes", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPDUGARDINJLR593001", + "start_date": "2022-02-24", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51433100000, + 50.33083800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRC2P002901", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "start_date": "2022-06-08", + "network": "MINOTTI-TRANS", + "owner:ref:FR:SIREN": "750327231", + "operator": "CAR2PLUG", + "ref:EU:EVSE": "FRC2P002901", + "operator:email": "contact@car2plug.fr", + "description": "MINOTTI-TRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46484230000, + 48.95141080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/HXDYFHVRAK", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "477765", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P5341770464709074574" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60947600000, + 49.31727900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | MIOS - Echangeur Masquet", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "42a4a847-3f46-55b6-a7ba-9f194ecab8c1", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96003200000, + 44.62792400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-02", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "Mairie - Plan d'Orgon", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE13PRGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99820300000, + 43.80882200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "freddy.borneco@gmail.com", + "capacity": "2", + "amenity": "charging_station", + "network": "bubble tree", + "owner:ref:FR:SIREN": "445403512", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRBHM777777", + "operator": "BORNECO", + "description": "DRINCHAM ", + "start_date": "2022-08-04", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27709730000, + 50.91626300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P7394053656731491520", + "operator:email": "roaming@freshmile.com", + "opening_hours": "Mo,Fr,Th,We,Tu 08:00-19:30,Sa 08:00-19:00", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/F8CISMNBL6", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "892677" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46207300000, + 48.28148400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Lançon-Provence, Rue Saint-Marc", + "ref:EU:EVSE": "FRM13PKYWXS8TNNN", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12445400000, + 43.59286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/DLMH5PS9PO", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P5768073087272860978", + "ref": "505824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34605700000, + 47.61749000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "ANTIBES PARKING GARBERO", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*68*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2018-06-18", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ6811;FRA16PWIIZ6812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12197000000, + 43.60007900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "597888", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3307782713179505636", + "description": "Freshmile France/JG6YZDT24P", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67684200000, + 48.04035700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PSPRFTU", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Spar - Fitou", + "amenity": "charging_station", + "start_date": "2023-12-04", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99339900000, + 42.89494200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPYRUUXFJYTW", + "ref": "YRUUXFJYTW;79144", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Marignier, Parking De La Gare;Réseau eborn/YRUUXFJYTW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50848000000, + 46.08869000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARF - Bornes Publiques/E1BA5D9F-F149-4592-A062-C3C49C04FDE6", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "674606", + "ref:EU:EVSE": "FREVZP3818656021239484772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61632100000, + 44.06334800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR67551;FROTHPOTHR67541;FROTHPOTHR67521;FROTHPOTHR67511", + "charging_station:output": "22 kW", + "description": "SUPER U - CHATEAUNEUF-SUR-LOIRE", + "ref": "FR*SOD*S*OTHR*675*5*_*_;FR*SOD*S*OTHR*675*2*_*_;FR*SOD*S*OTHR*675*1*_*_;FR*SOD*S*OTHR*675*4*_*_", + "start_date": "2023-08-01", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22665100000, + 47.87360800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "598299;Y9EHBF4TKH", + "start_date": "2022-10-10", + "description": "Réseau eborn/Y9EHBF4TKH;Poisy, Route d'Annecy", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPY9EHBF4TKH;FREBNP2391333696726832933" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08353400000, + 45.91843500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPIHDYYMOWSE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/IHDYYMOWSE;Lus-La-Croix-Haute, Parking de la Poste", + "opening_hours": "24/7", + "ref": "31852;IHDYYMOWSE", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70697000000, + 44.66630400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "CAMPING LES VAGUES - VENDRES", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR36612;FROTHPOTHR36611", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA", + "ref": "FR*SOD*S*OTHR*366*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25351400000, + 43.23102000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "492021", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7722905457438022801", + "description": "Freshmile/KVSPKBVOHL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99683500000, + 49.78908100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Marseille La Valentine, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "ref:EU:EVSE": "FRTSLP30237", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47981070000, + 43.29435490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1070982", + "description": "Freshmile France/LLOE3P24U2BB25", + "ref:EU:EVSE": "FRFR1P3444591374354218165", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83251400000, + 44.12014500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLITTORALBMW560001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Vannes", + "capacity": "10", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-19:00, Tu 08:00-12:00, Tu 13:30-19:00, We 08:00-12:00, We 13:30-19:00, Th 08:00-12:00, Th 13:30-19:00, Fr 08:00-12:00, Fr 13:30-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "operator:email": "support@driveco.com", + "start_date": "2022-10-28;2022-06-22", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78703000000, + 47.66558100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "782397", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Th,Tu,Fr,Mo,Sa,We 08:00-12:00,Sa,Tu,We,Mo,Th,Fr 13:30-18:00", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/YZO8OKJXGC", + "ref:EU:EVSE": "FRFR1P5389301527468649806", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71373500000, + 43.41951700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PLANCOET - Rue de la Madeleine (Parking Collège)", + "ref:EU:EVSE": "FRS22E22172001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24080400000, + 48.52357400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-sat 08:00-19:00", + "network": "KIA TROYES - Groupe Amplitude", + "description": "KIA TROYES - Groupe Amplitude;KIA - Barberey - 22kW AC ", + "ref": "90066;90067", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "443171558", + "ref:EU:EVSE": "FRZKAE24DC90066;FRZKAE22AC90067", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "start_date": "2021-11-16", + "socket:type2_combo:output": "24 kW", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02398710000, + 48.33028040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Oceane_Pluneret", + "ref:EU:EVSE": "FRROSE298", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95810400000, + 47.66811000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FOLLAINVILLE-DENNEMONT - Rue Jean Jaurès", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78239001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69554500000, + 49.01463500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Kergoët", + "network": "Kergoët", + "ref": "FRIOYE436005;FRIOYE436003;FRIOYE436002;FRIOYE436004", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "start_date": "2024-06-24", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIOYE436005;FRIOYE436003;FRIOYE436002;FRIOYE436004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18599973000, + 48.27388261000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "ref:EU:EVSE": "FRS53E53054001;FRS53P53054B", + "description": "OuestCharge - Diva Sp - Change - Mairie;CHANGE - Place De La Mairie", + "amenity": "charging_station", + "start_date": "2021-04-12;2024-05-13", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78852000000, + 48.09876000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66009001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ARLES SUR TECH - Carrer Del 14 Juliol", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63650500000, + 42.45756400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE007801;FRIENE007802", + "network": "Carcassonne", + "description": "Carcassonne", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE007801;FRIENE007802" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31768800000, + 43.20294400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "ACIGNE - 1 rue des vignerons ", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35001001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53330000000, + 48.13468200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "LONLAY L'ABBAYE", + "ref:EU:EVSE": "FRS61P61232A", + "ref": "SE61-LOLA-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71019000000, + 48.64580700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "454008", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4663158783821630940", + "description": "Freshmile France/EY9BGCXHTS", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189000000, + 47.36120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "start_date": "2018-06-01", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PXEBJZZ", + "ref": "XEBJZZ", + "operator": "Freshmile SAS", + "description": "Valcabrère, Basilique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58466000000, + 43.02910000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92026003", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "COURBEVOIE - Boulevard de la Paix", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-09-15", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26201000000, + 48.90089800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "2 kW;50 kW;22 kW", + "start_date": "2024-05-08", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRCG0E000249;FRCG0E000248;FRCG0E000246;FRCG0E000244;FRCG0E000242;FRCG0E000241;FRCG0E000243;FRCG0E000245;FRCG0E000247", + "amenity": "charging_station", + "ref": "FRCG0E000249;FRCG0E000248;FRCG0E000246;FRCG0E000244;FRCG0E000242;FRCG0E000241;FRCG0E000243;FRCG0E000245;FRCG0E000247", + "network": "BMW - ALTITUDE 42 SAINT ETIENNE - 42000 - 3", + "opening_hours": "24/7", + "capacity": "9", + "operator:email": "info@chargeguru.com", + "description": "BMW - ALTITUDE 42 SAINT ETIENNE - 42000 - 3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39819300000, + 45.44810300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE14112;FRM06PNICE14111", + "ref": "FR*SOD*S*NICE*141*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-MARTIN-DU-VAR MALAUSSENA", + "operator:email": "sav@izivia.com", + "start_date": "2021-08-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18892700000, + 43.82134300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "de186c3e-29bc-53b5-b9e3-704a7ccf5dd3", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Biscarrosse | Parking Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16733500000, + 44.39563800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "MILLY SUR THERAIN - Centre", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-29", + "ref:EU:EVSE": "FRSE1PSE60ABCA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99404200000, + 49.50310700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "charging_station:output": "7 kW", + "description": "Bump - SAGS -LES ARCS 1800 - CHARMETTOGER", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRBMPS264542;FRBMPS264543;FRBMPS264544;FRBMPS264545", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref": "264542;264543;264545;264544", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77671770000, + 45.56844140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FREVENT", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3363EVCP01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3363EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29052400000, + 50.27391400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "c96186ec-0652-51e9-a319-957c45ee3119", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "description": "MOBIVE | Saint Germain les Vergnes | Place de la Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63508200000, + 45.27307200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Corbeil-Essonnes - Rue de la Pêcherie", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "0bbc912f-83ae-59ed-a49d-331c7f5b29ab" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48588500000, + 48.61353100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2021-02-17", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84310*MOR*VITRIA", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP84310MORVITRIA", + "description": "PLACE EMMANUEL VITRIA - MORIÈRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90471000000, + 43.94266200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ISTRES Florins", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3182EVCP01;LFR3182EVCP02;LFR3182EVCP03", + "ref": "LFR3182EVCP01;LFR3182EVCP02;LFR3182EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97889700000, + 43.49923800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "100 kW;50 kW;22 kW", + "description": "Sport 2000 - Firminy", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2024-01-31", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PZCFFMN", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29829580489, + 45.39009402815 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "VS6SOGHFTE", + "ref:EU:EVSE": "FREBNPVS6SOGHFTE", + "description": "Le Bourg d'Oisans, Rue Capitaine Meunier", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03083390000, + 45.05276980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "674240", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LA2MZRBDKK", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9172587155189216940", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80462900000, + 48.87433400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "5", + "ref:EU:EVSE": "FRP01E21231009", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking de Dijon Grangier - DIVIAPARK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03726400000, + 47.32340600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDOUEPLVCS2DC5;FRDOUEPLVCS2DC3;FRDOUEPLVCS2AC4;FRDOUEPLVCS1DC2;FRDOUEPLVCS1DC1", + "charging_station:output": "300 kW;22 kW", + "ref": "FRDOUEPLVCS2DC5;FRDOUEPLVCS2DC3;FRDOUEPLVCS2AC4;FRDOUEPLVCS1DC2;FRDOUEPLVCS1DC1", + "description": "Pont-L'Évêque S2 (2x360 kW Combo CCS)", + "opening_hours": "24/7", + "network": "Pont-L'Évêque S2 (2x360 kW Combo CCS)", + "socket:type2_combo:output": "300 kW", + "operator:email": "info@yaway-recharge.eu", + "start_date": "2024-10-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20553200000, + 49.28568800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Le Thoronet, 208 Boulevard du 17 Aout 1944;Réseau eborn/RRK1AVPNIS", + "ref": "RRK1AVPNIS;121592", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNRRK1AVPNIS;FREBNPRRK1AVPNIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30404400000, + 43.45090100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*481*1*_*_", + "description": "BRICOMARCHE - BAUMES LES DAMES", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR48112;FROTHPOTHR48111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33638100000, + 47.34832900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529424", + "description": "Freshmile France/MM3KFC2I4N", + "ref:EU:EVSE": "FRFR1P6323944939860772916", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16087100000, + 43.03086700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "26 Rue Henri Cayeux", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRUBIE10030869;FRUBIE10086518", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11847200000, + 49.51666700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/USPBSW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7124982800119827516", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346544", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30320000000, + 47.91330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Place Laganne", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555019", + "charging_station:output": "22 kW", + "start_date": "2022-03-11", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43658000000, + 43.59848000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLY5HWZSBHDMC0", + "ref:EU:EVSE": "FRFR1P7282134090968423144", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1133625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03460100000, + 47.26347800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "462018", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P2973215127679965773", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/XMBUXALML9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26863200000, + 49.01436200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-09-20", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LABASTIDE SOLAGES - Face à la Mairie", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12023001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52362800000, + 43.94573400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-11", + "ref:EU:EVSE": "FRY03E78255001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FRENEUSE - Rue Charles De Gaulle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60194000000, + 49.04905000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "GESTE - Place des Peupliers;OuestCharge - Diva Sp - Geste - Peupliers", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49151001;FRS49P49151A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-21;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11009100000, + 47.18211300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "79858", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "description": "SIED70/TPLBGP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PTPLBGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07924000000, + 47.42610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BROUCKERQUE - Place De L'Eglise", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59110001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29265700000, + 50.95377300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "SIXT SUR AFF - 2 rue des templiers ", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35328001B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08055500000, + 47.77611200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref": "518339", + "description": "SIEG 63/FR*S63*P63178*C", + "ref:EU:EVSE": "FRS63P63178C", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25020000000, + 45.54625800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "opening_hours": "Tu,Fr,Mo,We,Th 08:00-19:00,Sa 09:00-18:00", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2786817575513362733", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref": "559859", + "description": "Freshmile France/ZU2CHSGYDT", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89343500000, + 42.67262300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/JXNFKK", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "ref": "94325", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS32PJXNFKK", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73349000000, + 43.44980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94016001", + "charging_station:output": "7 kW", + "description": "CACHAN - Avenue Carnot", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "start_date": "2021-11-24;2021-06-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32670000000, + 48.79860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE26411;FRM06PNICE26412", + "ref": "FR*SOD*S*NICE*264*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "RIMPLAS - PARKING MADELEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13029393470, + 44.06345845705 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "8dece34e-5d84-50cb-9651-b6a7ec1195aa", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Grolejac | Parking Zone Commerciale", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29070000000, + 44.82082400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - SALLE POLYVALENTE - PIERRELAYE", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39912;FRSIGPSIGE39911", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*399*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15733000000, + 49.02180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "capacity": "8", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PETIT COURONNE - Parking Relais du Zenith", + "ref:EU:EVSE": "FRC01E76497002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-01-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05745200000, + 49.39175800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR4232EVCP03;LFR4232EVCP01;LFR4232EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4232EVCP03;LFR4232EVCP01;LFR4232EVCP02", + "description": "BRIOUDE - SAINT FERREOL", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37401300000, + 45.31368500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "ref": "923520e7-689f-5c3c-b16f-3bfa9f7916f5", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "194__SDEC23", + "description": "MOBIVE | Jarnages | Parking Rue des Abattoirs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08605900000, + 46.18088200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COURTHEZON - Avenue Géneral Leclerc", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "27be3e9e-c709-58b8-9601-30a02f2aa929" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88783000000, + 44.08706000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2023-03-01", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92380*GAR*SU1SSES", + "charging_station:output": "22.08 kW;7.36 kW", + "description": "RUE DES SUISSES - GARCHES", + "ref:EU:EVSE": "FR55CP92380GARSU1SSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19756000000, + 48.85446000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4165EVCP04;LFR4165EVCP01;LFR4165EVCP02;LFR4165EVCP03", + "description": "FLERS Miniere", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4165EVCP04;LFR4165EVCP01;LFR4165EVCP02;LFR4165EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57504100000, + 48.73551700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Ploeren", + "start_date": "2022-06-23", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRPD1PITMPLR", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87013375330, + 47.65886765925 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLYMNRS9A1O4CV;Saint-Fortunat-sur-Eyrieux, Chemin des Ecoliers", + "ref": "1155522;LLYMNRS9A1O4CV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNPLLYMNRS9A1O4CV;FREBNP9161356160737727504", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67346300000, + 44.82846200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "e-Totem - Roissy-en-Brie - Gare", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP77390F", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP77390F", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64966476040, + 48.79569435599 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "start_date": "2023-04-27", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORERM", + "description": "Cora - Ermont", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24638890000, + 48.98861110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Carrefour Market - Saint-Quentin-Fallavier", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT380701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10833400000, + 45.63692900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREPIE1895834", + "operator": "ECOPI", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-11-04", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "description": "KREA DEVELOPMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96678070000, + 50.47405830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "AUCHAN - GUILHERAND GRANGES", + "ref:EU:EVSE": "FROTHPAUCH18011;FROTHPAUCH18012", + "start_date": "2023-11-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*180*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86688870000, + 44.93847060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6799185", + "capacity": "2", + "amenity": "charging_station", + "description": "SES ENERGY BORNE SES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-10-20", + "network": "SES ENERGY BORNE SES", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6799185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13305400000, + 50.60365300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P4595158996376386423", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "698954", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MVI0NG2BIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12215700000, + 49.10941800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9013*04", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue de l'Amiral Mouchez 77", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901304" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34362600000, + 48.82085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "description": "Freshmile/Z5MFSTXFBK", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1063788780008497517", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72450800000, + 48.55188800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP1757", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "12", + "description": "Tesla Supercharger Narbonne", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98601600000, + 43.16768600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TDVHUEWOGS", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "370166", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "charging_station:output": "44 kW;50 kW;100 kW", + "ref:EU:EVSE": "FRFR1P9186288789366166964" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48628500000, + 47.92704400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "R3 - eLeclerc Fagnières", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2023-11-13", + "operator:email": "exploitation@r3-charge.fr", + "capacity": "10", + "ref:EU:EVSE": "FR3R3P89879155", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31556000000, + 48.95945400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "482070", + "description": "MobiSDEC/BSWUMHG7ZY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P6402325024373167571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71863200000, + 49.27946000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-30", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "NAUCELLE - Salle Des Fêtes", + "ref:EU:EVSE": "FRS12E12277002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34263900000, + 44.20083900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LKNLQWDWP", + "ref": "1041807", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P8619672462934340877", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75559900000, + 48.50947300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS49E49362001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHOLET - Avenue Nantes", + "start_date": "2024-04-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90127497900, + 47.05985641479 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LACAUNE - Avenue Georges Clémenceau Place De La Poste", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS81E81124001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69289028282, + 43.70732936262 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref:EU:EVSE": "FRHPCPNF042677", + "socket:type2_combo:output": "175 kW", + "owner:ref:FR:SIREN": "531681346;531681345;531681343;531681344", + "start_date": "2023-04-05", + "amenity": "charging_station", + "description": "RELAIS LORMONT", + "ref": "FRHPCPNF042677", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50733600000, + 44.87368700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-09-26;2021-11-03", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MERCUES - Chemin Du Rouquet", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46191001", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38620600000, + 44.49525500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/MEFKNE", + "ref": "21900", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PMEFKNE", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45708000000, + 47.59240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-11", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DOUAI - ORIONIS", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH04E59178019", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13042040000, + 50.40969810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "charging_station:output": "43 kW;50 kW;22 kW", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "Quimper-N165", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-04-14;2023-05-21", + "ref:EU:EVSE": "FRS29E29232008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08375500000, + 48.03123900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue du Général Leclerc", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-12-13", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49205111800, + 48.80566831041 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CHATELLERAULT - CHATEAUNEUF-1-2;CHATELLERAULT - CHATEAUNEUF-1-1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346051402;FRLMSE12346051393;FRLMSE12346051392;FRLMSE12346051401", + "ref": "B022", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2017-11-03", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53227000000, + 46.81327100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "100 kW;50 kW;150 kW", + "capacity": "4", + "opening_hours": "24/7", + "ref": "484745", + "description": "Métropolis/FR*MGP*P92063*S", + "ref:EU:EVSE": "FRMGPP92063S", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798600000, + 48.88946900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 114 RUE GALLIENI - BOULOGNE-BILLANCOURT", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE711;FRSIGPSIGE712", + "ref": "FR*SOD*S*SIGE*7*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-08-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23969400000, + 48.83663900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATL*PORT6501", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP6753601803916379103", + "capacity": "9", + "operator": "Atlante | FR*ATL", + "ref": "782655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648100000, + 48.05205100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE1000081806", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Melun", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68411000000, + 48.52543900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Anglet | Plaine du Maharin", + "ref": "65ff1072-76d2-5f34-9e17-40cab8f0ac3a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51203300000, + 43.50019100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85151002", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "MORTAGNE-SUR-SEVRE - Place De La Roseraie - Rue De La Fontaine", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95255000000, + 46.99136000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Isle d'Abeau", + "network": "Allego Carrefour Isle d'Abeau", + "start_date": "2022-06-23", + "amenity": "charging_station", + "ref": "FRALLEGO9001161;FRALLEGO9000201;FRALLEGO9000202;FRALLEGO9000421;FRALLEGO9000422;FRALLEGO9001162;FRALLEGO9005291;FRALLEGO9005292;FRALLEGO9009081;FRALLEGO9009082", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9005292;FRALLEGO9001161;FRALLEGO9000201;FRALLEGO9000202;FRALLEGO9000421;FRALLEGO9000422;FRALLEGO9001162;FRALLEGO9005291;FRALLEGO9009081;FRALLEGO9009082", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22499990000, + 45.61388780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3082EVCP01", + "ref:EU:EVSE": "LFR3082EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "LOUDEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76410400000, + 48.19236100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-05;2023-01-24", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "description": "Leon de Bruxelles - Bourges", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLEOBRB", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34627134484, + 47.04803625911 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/HWGH4CNZPB;La Grave, Salle Polyvalente", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPHWGH4CNZPB", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "ref": "HWGH4CNZPB;85682", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30074000000, + 45.04430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref": "740952", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP3542838836668423871", + "capacity": "3", + "opening_hours": "24/7", + "description": "Norauto - Bornes publiques/77333B59-67B3-48A4-BA9F-E997387A7A0B", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94723500000, + 45.57289100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Boconcept - Les Pennes-Mirabeau", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PGSTLPM", + "start_date": "2023-05-05", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35242600000, + 43.41515290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/PTMJY7PQFA;Nyons, Parking Cerisiers Mistral", + "ref": "PTMJY7PQFA;31906", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPPTMJY7PQFA", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12757200000, + 44.35745800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - DASSIN Kyriad Martigues", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP13056A", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP13056A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02655776098, + 43.40943759386 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*167*39*_*_;FR*SOD*S*OTHR*167*38*_*_;FR*SOD*S*OTHR*167*36*_*_;FR*SOD*S*OTHR*167*37*_*_", + "start_date": "2021-01-20", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "SEMVR - ROUBAIX - LANNOY", + "ref:EU:EVSE": "FROTHPOTHR167371;FROTHPOTHR167361;FROTHPOTHR167381;FROTHPOTHR167391", + "network": "SEMVR", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18254000000, + 50.68865000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6981525", + "description": "DUNKERQUE POINT P BORNE 1", + "network": "DUNKERQUE POINT P BORNE 1", + "opening_hours": "24/7", + "start_date": "2024-09-06", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6981525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33953200000, + 51.00524900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/GAY47NFYIK", + "ref": "368836", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5018626053396332890", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59588100000, + 44.85047000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "CENTER PARCS VILLAGE NATURE - Entrée ouest", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP123004", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-08-07", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80587800000, + 48.83168200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1260993555316673918", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XANUJCTKNB", + "ref": "368977", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61067900000, + 44.82404400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U LE CHEYLARD", + "operator": "E-TOTEM", + "ref": "FRSUAP07064A", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "SUPER U LE CHEYLARD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRSUAP07064A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44237600000, + 44.91140400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5782568270718802592", + "charging_station:output": "50 kW;22 kW", + "ref": "485091", + "opening_hours": "Fr,We,Tu,Sa,Mo,Th 09:00-18:00", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/B6ZAAZNRMB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39278500000, + 48.94867100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Gevrey Chambertin - Complexe sportif", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPMAIRIEGEVREY212205", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-02-09", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99431700000, + 47.22423400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - SENONCHES - Rue de la Ferté Vidame", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E134317", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E134317", + "network": "MODULO - SENONCHES - Rue de la Ferté Vidame" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02415900000, + 48.56963700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/MMYWYPTXJS", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "75449", + "ref:EU:EVSE": "FRS10P2464422881251116303" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85422900000, + 48.22519600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA5LSD6GDCRU", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P240480184236026190", + "charging_station:output": "22 kW", + "ref": "1127988", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12420200000, + 45.85220100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50484002", + "start_date": "2023-01-10", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "ST HILAIRE DU HARCOUET (VIREY) - Rue des Ecoles", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13149040000, + 48.58460780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8127000121;FRS81E8127000111;FRS81E8127000112;FRS81E8127000122", + "start_date": "2022-10-18", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "description": "SAINT-SERNIN-LES-LAVAURS - Chemin des Boulbènes", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97257310000, + 43.54813670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-07-19", + "capacity": "4", + "opening_hours": "24/7", + "description": "RELAIS SAINT MARTIN SUR LE PRE", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681655;531681654;531681652;531681653", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078332", + "ref:EU:EVSE": "FRHPCPNF078332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34246200000, + 48.99075200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Beaufort-en-Vallee - Equisseaux;BEAUFORT-EN-VALLEE - Parking des Equisseaux", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS49E49021001;FRS49P49021A", + "start_date": "2021-04-21;2024-04-09;2024-04-11", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23738600000, + 47.44008500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1051074", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P3986101547115401535", + "description": "Mouv'Oise/LLRG824J01LOED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19868900000, + 49.28538200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HAVERSKERQUE - Rue du Moulin", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH09E59293001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54961800000, + 50.62661700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30127001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-01", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "GAUJAC - Parking Relais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58506400000, + 44.07777800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/LLTZYIP5423MYW", + "ref": "1084857", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS56P585580685899402986", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.06823900000, + 48.12420800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-10-02", + "ref:EU:EVSE": "FRLMSE12346390421;FRLMSE12346390411", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "SMARVES-1-2;SMARVES-1-1", + "opening_hours": "24/7", + "ref": "B099", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35019100000, + 46.51126900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "1121526", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "Métropolis/FR*MGP*P94018*B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP94018B", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41760300000, + 48.82460700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*102*2*_*_;FR*SOD*S*SIGE*102*1*_*_", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10222;FRSIGPSIGE10212;FRSIGPSIGE10211;FRSIGPSIGE10221", + "opening_hours": "24/7", + "start_date": "2021-03-23;2021-03-11", + "charging_station:output": "22 kW", + "description": "SIGEIF - 20 RUE DE LA PEPINIERE - VIROFLAY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16326600000, + 48.80643400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRBE1E64445008", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-23", + "network": "CPO Alizé Liberté Public", + "description": "PAU - Parking Bourbaki" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37190710000, + 43.30340780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A5 Villeneuve Vauluisant", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89369699", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-27;2022-12-26;2022-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55576000000, + 48.24769200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Vars | Place du Pilori;VARS - PLACE DU PILORI", + "start_date": "2020-05-11", + "owner:ref:FR:SIREN": "251600060", + "ref:EU:EVSE": "Non concerné;FRS16PMB164311;FRS16PMB164312", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "ref": "3357b2c0-d227-5779-a7ea-a94dd0eaaf0a;FR*SOD*S*MB16*43*1*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12278500000, + 45.76236300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE62MACA", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "description": "Clinique de santé - MARCONNE", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03086100000, + 50.37340200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "description": "MULHOUSE", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSMLHSE", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38453400000, + 47.77225000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "LONGUENESSE - Lumbres", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3802EVCP01;LFR3802EVCP02", + "ref:EU:EVSE": "LFR3802EVCP01;LFR3802EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25130300000, + 50.73239000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BLAGNAC - Av. D'Andromède", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRM31E31069001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37130500000, + 43.65568300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/CHQCBVH6YS;Saint-Priest, Place Des Mineurs", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPCHQCBVH6YS", + "ref": "48337;CHQCBVH6YS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57474100000, + 44.72065400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471120", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/NFUXGBCYW2", + "ref:EU:EVSE": "FRFR1P8260284829840893808", + "opening_hours": "We,Tu,Fr,Th,Mo 09:00-18:00,Sa 09:00-17:00", + "charging_station:output": "50 kW;43 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59277100000, + 49.63422800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "description": "CHAMBERY - Palais", + "start_date": "2023-10-18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E73065001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91960680000, + 45.56865110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPUINJVNH6Q6;FREBNP1200873742520967917", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "UINJVNH6Q6;346946", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "description": "Réseau eborn/UINJVNH6Q6;Tence, Parking du Fieu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29221000000, + 45.11508000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP6608095340113950780", + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref": "1110522", + "description": "Road/665748c78a3e52001cc49373", + "opening_hours": "Tu,Fr,Th,Mo,Su,Sa,We 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32216000000, + 46.28950100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*29*2*_*_;FR*SOD*S*OTHR*29*1*_*_", + "description": "PARKING ENTREE DU SITE", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2019-03-06", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR2921;FROTHPOTHR2912;FROTHPOTHR2911;FROTHPOTHR2922", + "network": "TIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49952900000, + 49.10810500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT AUBERGENVILLE", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT AUBERGENVILLE", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6607645", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "ref": "FRCPIE6607645" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85791000000, + 48.97037300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "G7PHWB2AIL;492195", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPG7PHWB2AIL;FREBNP4730649417085483712", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "description": "Villefontaine, Rue Serge Mauroit;Réseau eborn/G7PHWB2AIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15545900000, + 45.61322900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s546178", + "network": "WAAT", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P2033968632991414481", + "operator:email": "exploitation@waat.fr", + "ref": "1178490", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91408700000, + 47.84640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "541739", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "opening_hours": "Fr,Mo,Tu,We,Th 14:00-18:00,Sa,Th,We,Mo,Fr,Tu 09:00-12:00", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2121916249379911773", + "description": "Freshmile France/DEOKKTJKAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12183200000, + 45.77891700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTCBP00387", + "capacity": "2", + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "ref": "FRTCBP00387", + "start_date": "2021-05-31", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "description": "WARNING Nancy", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18813100000, + 48.64262600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1311290787987127567", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "471069", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IGQCVM7GLR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00763100000, + 49.22986300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-18", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "Hyundai - Pedinielli - Manosque", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPPEDINIELLIHYUNDAI041001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79408100000, + 43.82139300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Commana-Place du Champ de Foire", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2903800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.95601800000, + 48.41394800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "75473", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/HFIJQKRTJJ", + "ref:EU:EVSE": "FRS10P1222088199072223080" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49807900000, + 47.97821300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GHO Creteil Le Lac;Zephyre/1847192", + "owner:ref:FR:SIREN": "819282385", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1PEAC48182;FRZP1P4782991025550976182;FRZP1PEAC48181;FRZP1PEAC48183;FRZP1PEAC48184", + "ref": "431628bc-fc24-4f65-9cb6-c4394803e5d0;575867", + "opening_hours": "24/7", + "network": "GHO Creteil Le Lac;Zephyre", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "capacity": "1;4", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44708600000, + 48.78129200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Olexa", + "capacity": "5", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE91", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-05-31", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85021400000, + 50.27397500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/oisemont", + "ref": "86651", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80POISEMONT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76749000000, + 49.95570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-05-24", + "ref:EU:EVSE": "FRIZFPFAST16911;FRIZFPFAST16912;FRIZFPFAST16913", + "ref": "FR*SOD*S*FAST*169*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - OLONNE-SUR-MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76927520000, + 46.51424190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - HUISSEAU SUR COSSON - Champs de Ligny", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - HUISSEAU SUR COSSON - Champs de Ligny", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4739;FRS41E4740", + "ref": "FRS41E4739;FRS41E4740" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45730800000, + 47.59298000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60P3323695966265146495", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/OEVNVGJIXL", + "ref": "598167" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14936900000, + 49.58767200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON8141;FRGLYPLYON8131;FRGLYPLYON8121;FRGLYPLYON8111", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "LY304 - DUGUESCLIN - LES HALLES", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-06-04", + "ref": "FR*SOD*S*LYON*81*1*_*_;FR*SOD*S*LYON*81*2*_*_;FR*SOD*S*LYON*81*3*_*_;FR*SOD*S*LYON*81*4*_*_", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84839700000, + 45.76336100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - LOCHE SUR INDROIS - Pl. du Mail", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E215556;FRS37E215614", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E215556;FRS37E215614", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LOCHE SUR INDROIS - Pl. du Mail" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21797000000, + 47.09218100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PUPKBXY", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Plougoumelen - Rue des Chaumières", + "start_date": "2016-11-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91568700000, + 47.65308800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10P42094A", + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "description": "Garage Cheminal - Volkswagen", + "amenity": "charging_station", + "network": "Garage Cheminal - Volkswagen", + "capacity": "3", + "ref": "FRG10P42094A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2021-03-09", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22544312000, + 45.72749023000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRN54E243072;FRN54E243071", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRN54E243072;FRN54E243071", + "charging_station:output": "0 kW", + "network": "MODULO - NANCY - Pkg. des 2 Rives", + "operator": "Modulo", + "description": "MODULO - NANCY - Pkg. des 2 Rives", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2024-04-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19677000000, + 48.69464000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-11-25", + "capacity": "2", + "description": "SIGEIF - 2 RUE CHANTE COQ - PUTEAUX", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21311;FRSIGPSIGE21312", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*213*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23672000000, + 48.88396500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-08", + "network": "Energie de Reure Loches - 37600 - 1", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "ref": "FRCG0E002131;FRCG0E002132;FRCG0E002133;FRCG0E002134", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRCG0E002131;FRCG0E002132;FRCG0E002133;FRCG0E002134", + "operator:email": "info@chargeguru.com", + "description": "Energie de Reure Loches - 37600 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00590600000, + 47.14016400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "IDEXCHES_EMPLOYES", + "operator:email": "contact.bbc@idex.fr", + "charging_station:output": "7 kW", + "network": "Réseau de recharge Idex", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89989552", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "921041711", + "capacity": "10", + "start_date": "2023-10-30", + "operator": "IDEX SOLAR CHARGING STATIONS", + "description": "Centre Hospitalier Évreux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11627500000, + 49.03359600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | Vaux sur Mer | Rue de Verdun (marché)", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7147905c-e6b7-5f4d-9e00-2397c3608a4b", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06059300000, + 45.64539000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Av. du 11 Novembre - RAMBERVILLERS", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE88RABA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-26", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63593800000, + 48.33456600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LABORATOIRE ESTRADE HUART", + "ref:EU:EVSE": "FRA42P1200020003", + "charging_station:output": "7 kW", + "start_date": "2023-03-03", + "capacity": "2", + "description": "Saint Etienne, 94 rue Bergson", + "ref": "644a2d6e-ddca-11ed-b5ea-0242ac120002", + "operator:email": "estrade.huart@gmail.com", + "owner:ref:FR:SIREN": "315708974", + "amenity": "charging_station", + "operator": "LABORATOIRE ESTRADE HUART", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38219000000, + 45.45884000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "PT ST ESPRIT PANCRACE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2930EVCP01", + "ref:EU:EVSE": "LFR2930EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63631600000, + 44.26687000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "capacity": "6", + "description": "GIERES - Parking Relais Gières Plaine des Sports", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38179002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78408000000, + 45.18786000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DWYWZS;75257", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPDWYWZS", + "start_date": "2020-06-12", + "description": "Réseau eborn/DWYWZS;Talloires-Montmin, Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21571000000, + 45.83930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/VRCUMHLPYR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8777937903742654755", + "ref": "529721", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19251500000, + 45.73364200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "NOGENT SUR MARNE - Parking Baltard", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-02;2020-06-18;2023-09-22", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "41", + "ref:EU:EVSE": "FRP07E94052001;FRP07E940520011;FRP07E940520012;FRP07E940520013;FRP07E940520014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47301800000, + 48.83329000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Dingy-Saint-Clair, Cimetière;Réseau eborn/VWTMPYFVOZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPVWTMPYFVOZ", + "ref": "37153;VWTMPYFVOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22112000000, + 45.90633000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-06-19", + "description": "Trappes - Ibis Budget", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPTRAIB", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97449300000, + 48.76638200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E91103001", + "description": "Parking gare de Bretigny-Sur-Orge RER P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30300400000, + 48.60697700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6649455", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6649455", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "description": "SONEPAR ARLES", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "network": "SONEPAR ARLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63386400000, + 43.70755200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "EKGLSXWYLC;705890", + "ref:EU:EVSE": "FRECHP8350304244278346002;FRECHPEKGLSXWYLC", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "description": "Le Chesnay, Rue Pottier;Easy Charge/EKGLSXWYLC", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12590000000, + 48.82597000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Rue Marcadet 220", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33313530000, + 48.89208240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2562429180559350348", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QEKHJI0HSD", + "ref": "541835", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85674700000, + 46.17183000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9020*03", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Rue Jules Romains 5", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P902003", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-03-04", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37828300000, + 48.87290500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7970876516029006488", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/J17WV9RWME", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "419112", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15251900000, + 48.64828800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPKIA041001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Kia -Manosque", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78801100000, + 43.82419900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Rostrenen-ZA de Goasnel ", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS22E22220001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31319500000, + 48.24226100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11255001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MONTREDON-DES CORBIERES - Avenue Du Languedoc, Parking De La Maison Des Associations", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92861100000, + 43.18861100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZPEE24DC80464;FRZPEE22AC80465", + "ref": "80465;80464", + "amenity": "charging_station", + "capacity": "1", + "network": "FORD LORIENT", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "description": "Ford - Lanester - 24 kW DC ; Ford - Lanester - 22KW AC ", + "owner:ref:FR:SIREN": "391581451", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-09-22", + "opening_hours": "Mo-sat 09:00-19:00", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33756327000, + 47.77843796000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAVERDUN 2 - Rue du Moulin", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS09E09282003", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57554580351, + 43.23583191471 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "FDE 80/RCDEAM", + "ref:EU:EVSE": "FRS80PRCDEAM", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "86657", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30094000000, + 49.89650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*FAST*51*1*_*_", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST5113;FRIZFPFAST5112;FRIZFPFAST5111", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-04-23", + "description": "IZIVIA FAST - MCDONALDS - BLOIS VINEUIL ", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37039740000, + 47.57133210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44082001;FRS44P44082A", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-06;2024-04-18;2024-04-22", + "description": "LIGNE - Rue Des Lilas;OuestCharge - Diva Sp - Ligne - Lilas", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37423900000, + 47.41175100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZDX6C28GEPQQJHACKBPAZF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77226A;FRS77E77226001", + "description": "HERICY - Rue De L'Église;Héricy", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-01-19;2021-04-22", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76527400000, + 48.44847400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "description": "GreenYellow Shift Mobility/84", + "socket:type2_combo:output": "150 kW;47 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "ref": "1157244", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "charging_station:output": "150 kW;47 kW", + "ref:EU:EVSE": "FRGYMP592951823439573742" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10653600000, + 45.88969700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - YZEURES-SUR-CREUSE 18318 - ZA Les Chalussons", + "capacity": "2", + "network": "MODULO - YZEURES-SUR-CREUSE 18318 - ZA Les Chalussons", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220454;FRS37E220452", + "start_date": "2019-07-16", + "ref": "FRS37E220454;FRS37E220452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88317000000, + 46.78264200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "amenity": "charging_station", + "description": "CCTLB - Piscine-Lunéville", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6fa1ecf5-2fa0-5ede-970a-19b04181f196", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50326700000, + 48.59336000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY705 - QUAI CLAUDE BERNARD", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON10241;FRGLYPLYON10211;FRGLYPLYON10221;FRGLYPLYON10231", + "ref": "FR*SOD*S*LYON*102*2*_*_;FR*SOD*S*LYON*102*1*_*_;FR*SOD*S*LYON*102*3*_*_;FR*SOD*S*LYON*102*4*_*_", + "start_date": "2021-07-20", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83803100000, + 45.75282400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bodemer Loudéac", + "operator": "Mobilize Power Solutions", + "description": "Bodemer Loudéac", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "ref": "6d0f016b-90ed-413a-bcc5-85f2693aab88", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "start_date": "2024-06-27", + "ref:EU:EVSE": "FRMBZEGVDGD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74764391955, + 48.17197076182 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WattzHub", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "capacity": "14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "910092", + "operator": "WattzHub | FR*SMI", + "description": "WattzHub/64f5adcb1ac4a352e222bddb", + "ref:EU:EVSE": "FRSMIP555348830061113526" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37177600000, + 48.86655700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "SONEPAR CONNECT CHÂTEAU-THIERRY", + "amenity": "charging_station", + "ref": "FRCPIE6540995", + "description": "SONEPAR CONNECT CHÂTEAU-THIERRY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6540995", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38974400000, + 49.03665600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P1657988863772680131", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/S8BGCQIRE8", + "ref": "757017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01433100000, + 46.85754900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0cad5293-f241-5fb9-b4ec-a64343a4ffcf", + "description": "MOBIVE | Laruscade | le Bourg | Rd N°22 - Parking Salle des Fetes", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34312000000, + 45.10792000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "ref": "a67e9052-b0bc-5ced-8881-381cf9f55fad", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "description": "Vigneux-sur-Seine - Rue René Gauthier", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43230600000, + 48.70906400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Airbus - Montoir de Bretagne - G21 parking COMETE", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRAIRPFMQX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17222300000, + 47.31151500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4205EVCP03", + "description": "CANET EN ROUSSILLON - alizees", + "ref": "LFR4205EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02279800000, + 42.70169800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "start_date": "2019-01-18;2019-01-05", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - FLEURS RP", + "ref:EU:EVSE": "FRM06PNICE5612;FRM06PNICE5611;FRM06PNICE5621;FRM06PNICE5631", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*56*1*_*_;FR*SOD*S*NICE*56*2*_*_;FR*SOD*S*NICE*56*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25196873259, + 43.69800556917 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*189*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "LE CANNET PARKING BASTIERES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ18912;FRA16PWIIZ18911", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02151700000, + 43.57040700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P687619409232532173", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/D7WPB3XQ6G", + "operator": "Freshmile | FR*FR1", + "ref": "471033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59124700000, + 47.46810100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-29", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "charging_station:output": "100 kW;50 kW;22 kW;187.5 kW", + "operator": "Power Dot France", + "description": "Brit Hotel - Périgny", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PBRTPGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11044880000, + 46.15324080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "598275;R7WVTFXTZQ", + "description": "Réseau eborn/R7WVTFXTZQ;Megève, Rue de la Poste", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPR7WVTFXTZQ;FREBNP3465859792414968378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61638500000, + 45.85748300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE MAMP - Bornes publiques/B648DAD1-98F3-40DA-866F-1D0A8C8FAB20", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "945666", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP1059627602778701130", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38946100000, + 43.28084700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BORDEAUX - P4 Gare Saint Jean Belcier", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-06-02", + "capacity": "10", + "ref:EU:EVSE": "FRP07E33063002;FRP07E330630021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55487500000, + 44.82345700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2023-02-22", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "R7XOIJXQOL;NLASTBEEVJ", + "operator:email": "contact@reseau-eborn.fr", + "description": "Nances, Chemin du clos Saint-Bruno;Nances, Parking P1", + "ref:EU:EVSE": "FREBNPNLASTBEEVJ;FREBNPR7XOIJXQOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79934994000, + 45.57534521000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Neufchâteau, Place Jules Méline;Easy Charge/LLRG450QW2PSES", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "ref": "LLRG450QW2PSES;1052463", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRECHPLLRG450QW2PSES;FRECHP1111882213250412882", + "start_date": "2024-01-16", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69143800000, + 48.35385300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A42 Lyon Montluel", + "start_date": "2022-12-25;2022-12-23", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP101111", + "charging_station:output": "300 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06931300000, + 45.84464300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/JCKGRBBWBK", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRFR1P3733359572897040187", + "ref": "485118", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33412200000, + 47.91795600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1009", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref": "FR*V75*PPX10*09", + "description": "Paris | boulevard de la Villette 55" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37271500000, + 48.87565000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "626153", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8992686098574268748", + "charging_station:output": "22 kW", + "description": "Freshmile France/L0DBRWYOEI", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28015900000, + 49.16528900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - Paris 16", + "start_date": "2023-03-23", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPACTENAVOLVO750161", + "opening_hours": "Mo 08:30-18:30, Tu 08:30-18:30, We 08:30-18:30, Th 08:30-18:30, Fr 08:30-18:30, Sa 08:30-18:30", + "amenity": "charging_station", + "capacity": "14", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27418700000, + 48.84820900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PANDELYSPOUSSIN", + "start_date": "2023-03-03", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SIEGE27", + "description": "Z19Z1002", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41862700000, + 49.24692900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E95968", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS18E95968", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BOURGES - Pkg. hôtel de ville", + "network": "MODULO - BOURGES - Pkg. hôtel de ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39871737000, + 47.08070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78397003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE MESNIL SAINT DENIS - La Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96163360000, + 48.74270910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK5931;FRQPKPQPRK5921;FRQPKPQPRK59171;FRQPKPQPRK59151;FRQPKPQPRK59111;FRQPKPQPRK5911;FRQPKPQPRK59101;FRQPKPQPRK59121;FRQPKPQPRK59131;FRQPKPQPRK59141;FRQPKPQPRK59161;FRQPKPQPRK59181;FRQPKPQPRK59191;FRQPKPQPRK59201;FRQPKPQPRK5941;FRQPKPQPRK5951;FRQPKPQPRK5961;FRQPKPQPRK5971;FRQPKPQPRK5981;FRQPKPQPRK5991", + "description": "QPARK - GRENOBLE - CHAVANT", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-04-17;2022-11-03;2024-04-08;2024-02-29;2024-04-11", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "ref": "FR*SOD*S*QPRK*59*9*_*_;FR*SOD*S*QPRK*59*7*_*_;FR*SOD*S*QPRK*59*6*_*_;FR*SOD*S*QPRK*59*5*_*_;FR*SOD*S*QPRK*59*4*_*_;FR*SOD*S*QPRK*59*3*_*_;FR*SOD*S*QPRK*59*20*_*_;FR*SOD*S*QPRK*59*19*_*_;FR*SOD*S*QPRK*59*14*_*_;FR*SOD*S*QPRK*59*11*_*_;FR*SOD*S*QPRK*59*10*_*_;FR*SOD*S*QPRK*59*1*_*_;FR*SOD*S*QPRK*59*12*_*_;FR*SOD*S*QPRK*59*13*_*_;FR*SOD*S*QPRK*59*15*_*_;FR*SOD*S*QPRK*59*16*_*_;FR*SOD*S*QPRK*59*17*_*_;FR*SOD*S*QPRK*59*18*_*_;FR*SOD*S*QPRK*59*2*_*_;FR*SOD*S*QPRK*59*8*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73083600000, + 45.18556700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASTRES - Parking Archipel", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81065003", + "charging_station:output": "22 kW", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25778800000, + 43.62208300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE410200", + "ref:EU:EVSE": "FRIONE410200", + "start_date": "2020-07-15", + "description": "IONITY Gevrey-Chambertin Est" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01098400000, + 47.22316600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50690001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "COUVILLE - la Vallée", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "start_date": "2016-10-28", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67239140000, + 49.55746240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77483002", + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VARREDDES - Ourcq", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92585500000, + 49.00492200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080178", + "owner:ref:FR:SIREN": "531680734", + "description": "RELAIS PORTES DE YEBLES", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080178", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78260000000, + 48.63570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "network": "MODULO - MONTOIRE SUR LE LOIR - Pl. Clémenceau", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E248728;FRS41E248727", + "ref:EU:EVSE": "FRS41E248728;FRS41E248727", + "description": "MODULO - MONTOIRE SUR LE LOIR - Pl. Clémenceau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86205600000, + 47.75265700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PNAKFKG", + "start_date": "2016-10-14", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Vannes - Avenue Winston Churchill" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77068900000, + 47.64553300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "ROS01 - MAIRIE - QUAI PIERRE DUPONT", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-07-31", + "ref:EU:EVSE": "FRGLYPLYON2022;FRGLYPLYON2012;FRGLYPLYON2011;FRGLYPLYON2021", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*20*1*_*_;FR*SOD*S*LYON*20*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83465400000, + 45.84082300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92040*D", + "ref": "484733", + "operator": "Métropolis | FR*MGP", + "ref:EU:EVSE": "FRMGPP92040D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28357600000, + 48.82950400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-01-30", + "description": "Peugeot - HESS - Sedan", + "network": "DRIVECO", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-19:00", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPHESSPEUGEOT082001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94345000000, + 49.69643000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "TOURVILLE-LA-RIVIERE - Place de la poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-11-21", + "ref:EU:EVSE": "FRC01E76705002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10525000000, + 49.32872400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref": "694388", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/MFHGZELL9S", + "ref:EU:EVSE": "FRLE2P6026118850801875166" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33482500000, + 47.83245400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Petit-Palais-Et-Cornemps | Centre Bourg", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "d4c8e4f1-876c-51cc-b77a-2e8f10e9cc3e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06402600000, + 44.98181200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95594001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-06", + "charging_station:output": "22 kW", + "description": "SEUGY - Place Lecocq" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39430846881, + 49.12128337623 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-18", + "capacity": "6", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Bazalp Evreux", + "ref:EU:EVSE": "FRALLEGO8008591;FRALLEGO8001112;FRALLEGO8001111;FRALLEGO8001061;FRALLEGO8001062;FRALLEGO8008592", + "network": "Allego Bazalp Evreux", + "ref": "FRALLEGO8008592;FRALLEGO8008591;FRALLEGO8001112;FRALLEGO8001111;FRALLEGO8001061;FRALLEGO8001062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17234800000, + 49.00649200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "446837", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P2971807658735068173", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/V7SFAZJTXG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.54738700000, + 42.26291400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Ceyreste, Chemin des Peupliers", + "ref:EU:EVSE": "FRM13PZKDFFRVJVT", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62475400000, + 43.21039800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/KVJYQPYE2S", + "operator:email": "roaming@freshmile.com", + "ref": "402545", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P6347294905358860644", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43990300000, + 47.95138400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2020-01-10", + "description": "THEOULE PORT DE LA FIGUEIRETTE", + "ref:EU:EVSE": "FRA16PWIIZ4212;FRA16PWIIZ4211", + "ref": "FR*SOD*S*WIIZ*42*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93410800000, + 43.48507700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "505581", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/HTMKTM7ROT", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2797425726817490539", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73293500000, + 48.58284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "start_date": "2024-02-19;2024-03-01", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PRTPAMB", + "operator": "Power Dot France", + "description": "LaMaison.fr - Amboise", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01528920000, + 47.41696740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPTGGQTZ", + "opening_hours": "24/7", + "ref": "32710;TGGQTZ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/TGGQTZ;Lanarce, La Bruge", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00661000000, + 44.72840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref:EU:EVSE": "FREVZP1271438047291627304", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ENGIE MAMP - Bornes publiques/736D0EC8-56F9-4390-BF9E-6CE291DE8163", + "operator:email": "support@evzen.com", + "ref": "1095585", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40146700000, + 43.34247900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*643*1*_*_", + "description": "BRICOMARCHE - AMBERT", + "operator:email": "sav@izivia.com", + "start_date": "2023-05-30", + "ref:EU:EVSE": "FROTHPOTHR64311;FROTHPOTHR64312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72762400000, + 45.54104600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-07-23", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "WWTYSYKPGE;466335", + "description": "Réseau eborn/WWTYSYKPGE;Toulon, passage de la Corderie", + "ref:EU:EVSE": "FREBNP7704691219844947026;FREBNPWWTYSYKPGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92601700000, + 43.12383100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Roiffieux, Place de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPHLF6XDN9UE", + "ref": "HLF6XDN9UE", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65860545000, + 45.22726400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-01", + "network": "CAMPING DEVILLAIRS", + "ref": "FR*SOD*S*OTHR*340*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR34012;FROTHPOTHR34011", + "opening_hours": "24/7", + "description": "DOMAINE DE LEVENO - GUERANDE", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39107200000, + 47.33328000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3024191259830323271", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSONC9BN2KAIQ", + "ref": "1081737", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19221300000, + 49.10706700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Boulevard Pasteur 41", + "ref:EU:EVSE": "FRV75PPX1536", + "capacity": "5", + "ref": "FR*V75*PPX15*36", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31326610000, + 48.84264460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;50 kW;60 kW;120 kW", + "amenity": "charging_station", + "description": "Freshmile/TCRKEQNZSQ;PIERREFITTE SUR SEINE Mermoz", + "socket:type2_combo:output": "120 kW;50 kW;60 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3752EVCP03;LFR3752EVCP01;FRFR1P6720100458509846725;LFR3752EVCP02", + "capacity": "4;7", + "ref": "LFR3752EVCP01;626273;LFR3752EVCP02;LFR3752EVCP03", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36437300000, + 48.96650200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "6;8", + "amenity": "charging_station", + "start_date": "2022-09-29;2022-10-05", + "ref:EU:EVSE": "FRSSDPGRIMBMW349701;FRSSDPGRIMBMW349702", + "charging_station:output": "100 kW;22.08 kW", + "description": "BMW - Lattes - zone 1;BMW - Lattes - zone 2", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "socket:type2_combo:output": "100 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87336200000, + 43.57458100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PVERNEUILAVRETOURISME", + "network": "SIEGE27", + "description": "900115", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92994400000, + 48.73866300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Lezardrieux-Rue du port", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22127001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10316200000, + 48.78818100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZIME22AC141212;FRZIME22AC141213", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "ref": "141212;141213", + "network": "BRICOMARCHE TALLARD", + "charging_station:output": "22 kW", + "opening_hours": "Lu- Sa 09:00-19:00", + "description": "Bricomarché - Tallard - 22 kW AC ", + "start_date": "2022-07-04", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "890451289" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03301000000, + 44.45798100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE246", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "description": "Hotel_Le_Rabelais", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79147100000, + 46.46572800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78118003", + "start_date": "2021-02-23;2021-02-12", + "description": "BUCHELAY - Rue Pasteur", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67137700000, + 48.97963300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-29", + "network": "Bonneville", + "description": "Bonneville", + "ref": "FRIOYE412704;FRIOYE412703;FRIOYE412701;FRIOYE412702;FRIOYE412751;FRIOYE412752;FRIOYE412753", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE412704;FRIOYE412703;FRIOYE412701;FRIOYE412702;FRIOYE412751;FRIOYE412752;FRIOYE412753", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41122517000, + 46.06432300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/KZLRAD1NK3", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P778753539494952564", + "ref": "378633" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29604100000, + 48.08810100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65440006", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "description": "TARBES (Grand tarbes)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06688000000, + 43.24372000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "description": "Bourbon-l'Archambault", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE005202;FRIENE005201", + "start_date": "2023-03-06", + "network": "Bourbon-l'Archambault", + "ref": "FRIENE005202;FRIENE005201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06458000000, + 46.57987200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34301007", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2022-03-01;2022-02-21", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SETE - Corniche De Neuburg", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66501331329, + 43.39366622835 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "ref": "SE61-LAIG-003", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "L'AIGLE - Rue Lochon", + "ref:EU:EVSE": "FRS61P61121C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63510950000, + 48.75754330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6692078992893172980", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLP2O2EPL2KYU0", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "978041", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44333200000, + 47.55837000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-29", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/cadours;Cadours, Raymond Sommer", + "amenity": "charging_station", + "ref": "38851;cadours", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PCADOURS", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05059000000, + 43.72860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92004005", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - 152 Avenue d'Argenteuil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28168700000, + 48.91757400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2022-03-02", + "opening_hours": "24/7", + "charging_station:output": "50 kW;11 kW;2 kW", + "ref": "FRCG0E000123;FRCG0E000121;FRCG0E000122;FRCG0E000124;FRCG0E000125;FRCG0E000126", + "network": "BMW - SALEVE AUTOMOBILES - VILLE-LA-GRAND - 74100 - 4", + "operator:email": "info@chargeguru.com", + "description": "BMW - SALEVE AUTOMOBILES - VILLE-LA-GRAND - 74100 - 4", + "ref:EU:EVSE": "FRCG0E000123;FRCG0E000121;FRCG0E000122;FRCG0E000124;FRCG0E000125;FRCG0E000126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26637800000, + 46.19888700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE11412;FRM06PNICE11411", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "BONSON - PARKING GABRE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*114*1*_*_", + "start_date": "2021-01-18", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19444600000, + 43.85087300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Dax | Place Camille Bouvet", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "ref": "1d31381d-a1f5-5059-b3c5-eea20f049242" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05547600000, + 43.70896900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "description": "Algrange Mitterand", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-07", + "ref:EU:EVSE": "FRSE1PSE57ABEA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04825200000, + 49.36175100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "description": "Bump - Grand Mail Station 1 - SAINT-PAUL-LES-DAX", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS202108;FRBMPS202105;FRBMPS202106;FRBMPS202107", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "22 kW", + "ref": "202108;202105;202106;202107", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03699700000, + 43.72719700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "DARNETAL", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR4143EVCP03;LFR4143EVCP01;LFR4143EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4143EVCP03;LFR4143EVCP01;LFR4143EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12860000000, + 49.43950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-8E, Avenue André Zénatti", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PHJMLW4RZTL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38191400000, + 43.24739200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Viry-Châtillon - Parking Mairie", + "ref": "a03b1094-bd8c-5e9e-bde2-dc08ca8f8600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37532000000, + 48.67160400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P83990*STR*SALINS", + "ref:EU:EVSE": "FR55CP83990STRSALINS", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "PLAGE DES SALINS - SAINT-TROPEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69051800000, + 43.25647200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3267EVCP02;LFR3267EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3267EVCP02;LFR3267EVCP01", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "LA VALETTE DU VAR Descartes", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99990500000, + 43.13774500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24;2023-06-16", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "100 kW;7.36 kW", + "amenity": "charging_station", + "description": "Système U - Saint-Python", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "ref:EU:EVSE": "FRPD1PSYUSPT", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48832177302, + 50.19051192151 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPYPOTF1HQQB", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Laval, Parkinng de la mairie - RD 59;Réseau eborn/YPOTF1HQQB", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "YPOTF1HQQB;32746" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93243800000, + 45.25299800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SBPX6OZUXS", + "capacity": "8", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3671753065838013957", + "operator": "Freshmile | FR*FR1", + "ref": "446585", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37784900000, + 48.68142300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking de Nice l'Archet 2 - EFFIA", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E06088002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22950000000, + 43.69610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/JXWL9CLYQP;Andance, Place Maxime Chantier", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPJXWL9CLYQP", + "start_date": "2020-06-21", + "socket:type2_combo:output": "24 kW", + "ref": "JXWL9CLYQP;30281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79864300000, + 45.23989700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "NQ6WNF6GJD;559886", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Saint-Julien-Chapteuil, Place du Marché;Réseau eborn/NQ6WNF6GJD", + "ref:EU:EVSE": "FREBNPNQ6WNF6GJD;FREBNP6492529475784633387", + "start_date": "2022-07-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06222000000, + 45.03316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR45723;FROTHPOTHR45722;FROTHPOTHR45721;FROTHPOTHR45712;FROTHPOTHR45711", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "start_date": "2023-01-12;2022-08-16", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "capacity": "2;3", + "description": "INTERMARCHE - PINSAGUEL", + "ref": "FR*SOD*S*OTHR*457*1*_*_;FR*SOD*S*OTHR*457*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39217200000, + 43.50025500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/UG3WVGHZF7", + "ref": "529682", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7260097578538980118", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02513200000, + 46.87560900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "description": "356 route du Village", + "amenity": "charging_station", + "start_date": "2023-08-09", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10008924;FRUBIE10013362" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26250000000, + 49.59769400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P2204856433408647144", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "477708", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/UDZHMM2BS3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52695900000, + 46.84565200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COLOMIERS - Avenue des Marots", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRTLSE31149052", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32410000000, + 43.60124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLXCZ839P2LV06", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P878395836484245922", + "operator": "Freshmile | FR*FR1", + "ref": "1130412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00887100000, + 43.13875800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LLW545C3WU6EQL", + "ref:EU:EVSE": "FRS14P2757585727834050683", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "1138350", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18883200000, + 48.88996100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576326;3b928a32-1a6b-47c1-aa34-cfc47af6126c", + "owner:ref:FR:SIREN": "884881418", + "charging_station:output": "11 kW;7.4 kW", + "description": "Zephyre/LP0095AF;Logis Hôtel Cheval Blanc - 7,4 kW AC", + "ref:EU:EVSE": "FRZP1P7611794354421133211;FRZP1P130797", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "Logis Hotel Cheval Blanc;Zephyre", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75354000000, + 48.55493900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SALLES D'AUDE - Place Germain Canal", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11370001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11722200000, + 43.23944400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BEYNES - 4 Pignons", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-26", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78062003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90369071145, + 48.85505640744 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "08bbf709-cda3-536e-8716-b341b806b053", + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Pettonville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74119100000, + 48.52856600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLENEUVE DE LA RAHO - Rue San Vicens", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66227001", + "start_date": "2021-11-17", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91469000000, + 42.63747300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-09-29", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRH13E62473001", + "operator": "Bouygues E&S", + "description": "ISBERGUES - Rue Roger Salengro", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46969700000, + 50.61955200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "ST AUBIN DU CORMIER - 3 place de la mairie ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr", + "ref:EU:EVSE": "FRS35P35253001B1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40032200000, + 48.25988800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "518285", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "description": "SIEG 63/FR*S63*P63080*B", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63080B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12935200000, + 45.58960800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TFABMXZF7B", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P73904566880052512", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "454155", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79677500000, + 48.54604800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "21837", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEG32/WKRCQX", + "ref:EU:EVSE": "FRS32PWKRCQX", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59180700000, + 43.60780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PANTIN - Rue du Congo", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2023-04-19", + "ref:EU:EVSE": "FRSIPE93055005", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40086000000, + 48.89416000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001212;FRCG0E001211;FRCG0E001210;FRCG0E001209", + "network": "FCA Lanester - 56600 - 1", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "FCA Lanester - 56600 - 1", + "ref": "FRCG0E001212;FRCG0E001211;FRCG0E001210;FRCG0E001209", + "capacity": "4", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "start_date": "2024-05-25", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33816000000, + 47.78168000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING GUISOL", + "ref:EU:EVSE": "FRM06PNICE23412;FRM06PNICE23411", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*234*1*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28391958105, + 43.69915480431 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Bon Encontre | Parking Redon", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "ddd19ca4-f083-5a5d-b1e9-0c6dfe8e3b5e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65649200000, + 44.19034600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2023-03-07", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SIGEIF - VILLA FORESTIER PARKING GARE DU CHAMP DE COURSE - EAUBONNE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*374*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE37411;FRSIGPSIGE37412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29046000000, + 48.97950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76354001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "HENOUVILLE - Rue du stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96000020000, + 49.47956090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "BELLAC Coty", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3451EVCP01;LFR3451EVCP02", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3451EVCP01;LFR3451EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05455100000, + 46.12923600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "c4fd1133-7318-57d0-b6f4-4c1f6b8fc9be", + "description": "MOBIVE | Luberssac | Maison de Santé", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "11 kW;3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40344600000, + 45.44114000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "39022", + "description": "SDE82/saintnicolas", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PSAINTNICOLAS", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02194000000, + 44.06190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P92140*CLM*JAURES", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2021-06-17", + "capacity": "1", + "ref:EU:EVSE": "FR55CP92140CLMJAURES", + "description": "AVENUE JEAN JAURES - CLAMART", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26783400000, + 48.80801900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "VIERZON - 19 mars 1962", + "ref:EU:EVSE": "LFR3783EVCP02;LFR3783EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "capacity": "4", + "ref": "LFR3783EVCP02;LFR3783EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09251800000, + 47.24048000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;22 kW;160 kW;200 kW", + "start_date": "2023-08-03", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Intermarché - Le Lude", + "ref:EU:EVSE": "FRPD1PITMLLD", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15197400000, + 47.63946500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "30092;MNCBAF", + "description": "Réseau eborn/MNCBAF;Agnin, Place Publique", + "ref:EU:EVSE": "FREBNPMNCBAF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85669000000, + 45.33940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP69204A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP69204A", + "description": "e-Totem - DASSIN Ibis Budget St-Genis-Laval" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78745505387, + 45.67690168363 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCINROC", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Cinéville - La Roche-sur-Yon", + "start_date": "2023-12-12", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42593877434, + 46.69800307479 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Bray-sur-Seine", + "ref:EU:EVSE": "FRDRVPCRFMKT774801", + "operator:email": "support@driveco.com", + "start_date": "2024-01-16", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24468800000, + 48.41309500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2024-09-16", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "Grans - Jardipassion", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPGRAJP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08695100000, + 43.62372600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*575*2*_*_;FR*SOD*S*OTHR*575*1*_*_;FR*SOD*S*OTHR*575*3*_*_;FR*SOD*S*OTHR*575*4*_*_", + "charging_station:output": "3.68 kW;22 kW", + "start_date": "2023-02-10", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR57541;FROTHPOTHR57531;FROTHPOTHR57521;FROTHPOTHR57511", + "opening_hours": "24/7", + "description": "LES VIGNERONS DE FLORENSAC - BOUTIQUE", + "network": "LES VIGNERONS DE FLORENSAC", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46398400000, + 43.38912400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6758525", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR LISSES", + "network": "SONEPAR LISSES", + "ref": "FRCPIE6758525", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42705500000, + 48.61260800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3026443084010525181", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLISUB73Z14R3J", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31422600000, + 47.49500900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Avenue de Saxe 10", + "network": "Belib'", + "ref": "FR*V75*P9007*02", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "start_date": "2021-03-15;2021-03-01", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900702", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30749972000, + 48.84974940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "257200", + "ref:EU:EVSE": "FRFR1PEUQNWG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/EUQNWG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66796000000, + 48.76260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Tesla Supercharger Aire de Châteauvillain - Orges", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP2986", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96061000000, + 48.05768100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/G6EQG69JYG", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4014420257921611954", + "ref": "682148", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95478900000, + 46.57495500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "ref:EU:EVSE": "FR3R3P89251522", + "description": "R3 - Norauto Fâches Thumesnil", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "start_date": "2022-12-01", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08386000000, + 50.58572000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/RH6ES7OMSP", + "ref:EU:EVSE": "FRS14P7708013381387728637", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461910", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24200400000, + 48.96925000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT BEAULIZE - Rue des Remparts - Le Bourg", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12212001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10823400000, + 43.89629400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWATL2O03PP4Y", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA5P6382120602000379919", + "ref": "805260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37142800000, + 43.84852800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-27;2024-04-11", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49328E;FRS49E49328005", + "description": "OuestCharge - Diva Sp - Saumur - Moulins;SAUMUR - Rue des Moulins", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07197300000, + 47.25554500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E8109200222;FRS81E8109200211;FRS81E8109200212;FRS81E8109200221", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-06-15", + "description": "FIAC - Rue du Colombier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90584872748, + 43.70181879477 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2020-11-18", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FRHPCPNF007060", + "description": "RELAIS DELTA RUNGIS", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680533", + "ref:EU:EVSE": "FRHPCPNF007060" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34750000000, + 48.75810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46083001", + "charging_station:output": "22 kW", + "description": "CRESSENSAC - Route De Neyragues / Parking Salle Des Fetes - D820", + "network": "Reveo", + "start_date": "2022-05-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51789000000, + 45.01944500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-28", + "operator": "Freshmile;Morbihan énergies | FR*S56", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "245383", + "description": "Sainte-brigitte - Le Bourg;Mobilité électrique 56/BGPYPT", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "network": "Morbihan Energies;Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PBGPYPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12750000000, + 48.16420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH04E59015001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2019-12-02", + "description": "ARLEUX - Rue Georges lefebvre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10465100000, + 50.28078800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "ref:EU:EVSE": "FRS29E2920700", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Plourin lès Morlaix-Rue Guillaume Lezach", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.79046800000, + 48.53434800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "description": "RUNGIS - Parking Avenue de la République", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-08-08", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94065002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35235900000, + 48.75009100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRLMSP90272217", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-05-14", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B Besançon Chateaufarine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95546800000, + 47.22011400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "d8c51bd7-a050-55f8-9852-ced09de3a2d3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Thenon | Rd 6089 | Parking Gendarmerie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06972000000, + 45.14091100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*481*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE DE LA REPUBLIQUE - SERVON", + "opening_hours": "24/7", + "start_date": "2024-04-23", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE48112;FRSIGPSIGE48111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58580367057, + 48.71629021529 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "capacity": "8", + "network": "Allego Carrefour Besançon Valentin", + "amenity": "charging_station", + "description": "Allego Carrefour Besançon Valentin", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9009222;FRALLEGO9009212;FRALLEGO9009211;FRALLEGO9006431;FRALLEGO9006432;FRALLEGO9006841;FRALLEGO9006842;FRALLEGO9009221", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9009222;FRALLEGO9009212;FRALLEGO9009211;FRALLEGO9006431;FRALLEGO9006432;FRALLEGO9006841;FRALLEGO9006842;FRALLEGO9009221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99302600000, + 47.28159100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ITM CHATILLON SUR MARNE;ITM GUERIGNY", + "socket:type2_combo:output": "50 kW", + "network": "ITM CHATILLON SUR MARNE;ITM GUERIGNY", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRLIBP003740000005479;FRLIBP003740000001901", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "operator:email": "mguermouma@eoliberty.fr", + "ref": "FRLIBP003740000005479;FRLIBP003740000001901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76218000000, + 49.09128500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Artigueloutan | Rue de la Vallee de L'Ousse", + "ref": "587cf063-0dfe-5e0b-9a55-a1623c187d1d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24903700000, + 43.27567700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85070001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "COEX - Place Du Docteur Brechoteau", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76012000000, + 46.69736000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "description": "BOURG DE PEAGE", + "ref:EU:EVSE": "FRSITE00000192", + "capacity": "8", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03748000000, + 45.00591850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;50 kW;120 kW", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "ref:EU:EVSE": "LFR3275EVCP03;LFR3275EVCP01;LFR3275EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "VICHY Poincaré", + "ref": "LFR3275EVCP03;LFR3275EVCP01;LFR3275EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43859800000, + 46.11539600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-11-29", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "La Boucherie - Vannes", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PLABVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78926705393, + 47.66751641789 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "48307;CCH5F8VIHB", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/CCH5F8VIHB;Guilherand-Granges, Boulevard Charles de Gaulle", + "ref:EU:EVSE": "FREBNPCCH5F8VIHB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88350900000, + 44.93507100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "927810", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/BBA1D622-21D0-4219-BE65-FED42A545F5F", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP8796364453302169047", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62989000000, + 43.21141200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Boulangerie Feuillette - Bourges", + "ref:EU:EVSE": "FRPD1PFLTBRG", + "opening_hours": "24/7", + "start_date": "2023-10-10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37035500000, + 47.06591600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "56", + "charging_station:output": "22.08 kW;11.04 kW", + "opening_hours": "24/7", + "description": "Leroy Merlin - Lezennes - Siège France", + "operator:email": "support@driveco.com", + "start_date": "2017-04-07;2022-12-20", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRE11PLMLEZENNES592601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12165000000, + 50.61169800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRESEPS42275AD", + "amenity": "charging_station", + "description": "SEMOB La Bargette St Priest en Jarez", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW", + "ref": "FRESEPS42275AD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38244300000, + 45.47725300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "PATISMATIQUE", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-03-11", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR14021;FROTHPOTHR14011", + "description": "PATISMATIQUE - BELLEVIGNY", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*140*1*_*_;FR*SOD*S*OTHR*140*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41345600000, + 46.79922200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6944515", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CENTRE EQUESTRE BORNE 1", + "network": "CENTRE EQUESTRE BORNE 1", + "ref:EU:EVSE": "FRCPIE6944515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89543600000, + 50.48914500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/FG7EONN82J", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "541754", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7886812993035388887", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34677400000, + 48.77257400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-11", + "description": "ENGIE Vianeo - B&B HOTEL BRETIGNY-SUR-ORGE", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP123445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29870500000, + 48.62580300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/RKHZF2JTNU", + "ref:EU:EVSE": "FRFR1P8146133581573129842", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "370154", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59269500000, + 44.84097900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Peugeot - Ruffec", + "amenity": "charging_station", + "start_date": "2024-06-21", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPEFLR", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19850500000, + 46.01854800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "482031", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8932810876659084378", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LWAX2VIBUV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91480100000, + 50.33446400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E129928", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - CHARTRES - Av. des Sablons", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHARTRES - Av. des Sablons", + "ref:EU:EVSE": "FRS28E129928" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51529213000, + 48.45013673000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/FLQCEIECNA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6000459972840264185", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "461724", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34810300000, + 49.17835200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P1200408018096930849", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref": "1127937", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LFVZDLTHN", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37689900000, + 44.92330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "SIOUVILLE HAGUE - Bd André Michel", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-06-11", + "network": "e-charge50", + "operator": "Total marketing france", + "ref:EU:EVSE": "FRS50P50340005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84416500000, + 49.56517000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "REALMONT - Place Corduries", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS81E81222002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18720600000, + 43.77533800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF074566", + "start_date": "2023-06-06", + "opening_hours": "24/7", + "description": "RELAIS LILLE PERIPHERIQUE", + "ref": "FRHPCPNF074566", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531681506;531681504;531681505;531681502;531681501;531681500;531681499;531681503", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06219900000, + 50.65116700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49007009;FRS49P49007I", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Angers - Boisnet;ANGERS - Rue Boisnet", + "charging_station:output": "22 kW", + "start_date": "2021-04-28;2024-04-04;2024-04-05", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55195900000, + 47.47451700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60PJOUYSOUSTHELLE", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/jouysousthelle", + "ref": "46603" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97129000000, + 49.31810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH07E59375001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MARCHIENNES - Place Charles de Gaulle", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27848600000, + 50.40745200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BLANDAS - Belvédère", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30040001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-06-12", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51477300000, + 43.90295800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PHGVJHQ", + "ref": "25096", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/HGVJHQ", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49935000000, + 48.03220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Châlons en Champagne", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90197514", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40028400000, + 48.93936600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "475038", + "description": "Métropolis/FR*MGP*P93070*B", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP", + "ref:EU:EVSE": "FRMGPP93070B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102200000, + 48.90586200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-11", + "socket:type2_combo:output": "50 kW", + "operator:email": "customerservice@shellrecharge.com", + "operator": "Shell Recharge", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "network": "Shell AIRE DE VEMARS EST", + "opening_hours": "24/7", + "description": "Shell AIRE DE VEMARS EST", + "ref": "FRSHEE213", + "ref:EU:EVSE": "FRSHEE213" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55284101000, + 49.07247494000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUTEL EUROPE GmbH/21480", + "operator:email": "evsupport.eu@autel.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAUTP192226925204712008", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUTEL EUROPE GmbH", + "operator": "Autel Netherlands B.V. | FR*AUT", + "ref": "1154082" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49520300000, + 47.24917200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@securecharge.fr", + "description": "Securecharge Credit Agricole Le Passage", + "ref": "Securecharge-CAALPA-CC-1", + "network": "Securecharge", + "capacity": "2", + "ref:EU:EVSE": "FRLMSP1000117556", + "amenity": "charging_station", + "operator": "Securecharge", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "434651246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61000000000, + 44.20000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "0cb42fc3-e423-5c6c-a32f-8477eec7271c", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Cieux | Place du 8 Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04853800000, + 45.99105300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE60CAFA", + "capacity": "2", + "description": "Centre Ville - CREVECOEUR LE GRAND", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-29", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07925000000, + 49.60766500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref": "FRALLEGO9006572;FRALLEGO9006122;FRALLEGO9000991;FRALLEGO9000992;FRALLEGO9001011;FRALLEGO9001012;FRALLEGO9006121;FRALLEGO9006571", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9006572;FRALLEGO9006122;FRALLEGO9000991;FRALLEGO9000992;FRALLEGO9001011;FRALLEGO9001012;FRALLEGO9006121;FRALLEGO9006571", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Montluçon", + "start_date": "2024-02-27", + "description": "Allego Carrefour Montluçon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60301900000, + 46.34585950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3753EVCP01;LFR3753EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "TETEGHEM Rouge", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3753EVCP01;LFR3753EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43408000000, + 51.02254600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PCWXBIOCK47", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-15E, Boulevard Ledru-Rollin", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35694600000, + 43.33950500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1154256;LLYZV2ENO2H8NH", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLYZV2ENO2H8NH;FREBNP2950940851475756507", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Réseau eborn/LLYZV2ENO2H8NH;Flumet, Chemin de la revue - Parking Trou du diable" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51456600000, + 45.81953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "160 kW;60 kW", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "description": "Freshmile/MAIBZUMHHF", + "amenity": "charging_station", + "charging_station:output": "22 kW;60 kW;160 kW", + "opening_hours": "Fr,We,Th,Tu,Mo 07:00-20:00", + "ref:EU:EVSE": "FRFR1P5285660188394088526", + "operator": "Freshmile | FR*FR1", + "ref": "598356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300700000, + 43.49607300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Intermarché - Fains-Véel", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PINTFAI", + "start_date": "2024-07-25", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13569862300, + 48.78718582806 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "description": "Saint-Symphorien-De-Lay, Parking COPLER", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPTCHFTRZXQR", + "ref": "TCHFTRZXQR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20852700000, + 45.94835070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP55377715679800504", + "network": "Road", + "capacity": "2", + "opening_hours": "Su,Sa,Th,Fr,Mo,We,Tu 08:00-18:00", + "amenity": "charging_station", + "description": "Road/667138213e2298001c26ec95", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref": "1114656" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02410700000, + 44.03585700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR25831;FROTHPOTHR25811;FROTHPOTHR25821;FROTHPOTHR25841", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-10-13", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "SUPER U - CRAON", + "ref": "FR*SOD*S*OTHR*258*3*_*_;FR*SOD*S*OTHR*258*1*_*_;FR*SOD*S*OTHR*258*2*_*_;FR*SOD*S*OTHR*258*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97208901031, + 47.84315641627 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT RONCQ", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6602945", + "ref": "FRCPIE6602945", + "description": "SONEPAR CONNECT RONCQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13868600000, + 50.74646200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLOIDB9HW29EU1;Freshmile France/LLOIIPMFK2K6U3", + "ref:EU:EVSE": "FRFR1P4709542587096916466;FRFR1P5427225825923969575", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "998802;1017012", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "2;6", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21915800000, + 46.15713400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s466686", + "network": "WAAT", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P373198548446606111", + "charging_station:output": "22 kW", + "capacity": "11", + "operator:email": "exploitation@waat.fr", + "ref": "1116306", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38126700000, + 48.90388200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "735189", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/RMYYKKNR3R", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2149737072880760231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12890900000, + 45.76876500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVBOX 22 CITROEN ANTHY", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "4", + "opening_hours": "24/7", + "ref": "1234625683", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1234625683", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2024-03-05", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43154300000, + 46.34982500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626306", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/X5FEEIN90B", + "ref:EU:EVSE": "FRFR1P7527615055669049136" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60705900000, + 43.65212800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFRANARBONNE111001", + "capacity": "4", + "opening_hours": "24/7", + "description": "Kyriad Narbonne", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-02-27", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98514700000, + 43.16815000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS29E2900100", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Argol-Place des Anciens Combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31797700000, + 48.24583800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/IGEEE64TSJ", + "ref": "74987", + "ref:EU:EVSE": "FRS10P8568209438594257350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37218600000, + 48.12191100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1115394;1115385;1115391;1115388", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P6948628727488248148;FRZP1P707021612879707590;FRZP1P8062076940252026945;FRZP1P3182142209691025704", + "description": "Zephyre/LP200183;Zephyre/LP20018F;Zephyre/LP200190;Zephyre/LP200181", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98035000000, + 48.86641200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-07", + "network": "RossiniEnergy", + "description": "Mairie_De_Leers", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265970;839265969;839265968;839265971", + "capacity": "4", + "ref:EU:EVSE": "FRROSE633", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23981340000, + 50.67913500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77483B", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "ref": "1697dbe6-2d3d-4154-b4ad-cdbc366247dc", + "charging_station:output": "22 kW", + "start_date": "2024-05-15", + "description": "Vareddes - Coteret", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92483400000, + 49.00250800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - BOULOGNE SUR MER", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-06-11", + "ref": "FR*SOD*S*FAST*138*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST13813;FRIZFPFAST13811;FRIZFPFAST13812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60869764343, + 50.70016049313 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - LA CHAUSSEE ST VICTOR - Rue de Montprofond", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4510;FRS41E4511", + "description": "MODULO - LA CHAUSSEE ST VICTOR - Rue de Montprofond", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS41E4510;FRS41E4511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35905800000, + 47.60866900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "description": "Mouv'Oise/QCQKQULDDB", + "capacity": "2", + "amenity": "charging_station", + "ref": "598173", + "ref:EU:EVSE": "FRS60P2880303808791400434", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05928200000, + 49.56362200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW", + "ref": "FR*SOD*S*LYON*57*2*_*_;FR*SOD*S*LYON*57*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON5712;FRGLYPLYON5711;FRGLYPLYON5721;FRGLYPLYON5722", + "description": "SPR08 - BEL AIR", + "operator:email": "sav@izivia.com", + "start_date": "2021-01-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94909400000, + 45.69125000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30285001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT MAURICE DE CAZEVIEILLE - Parking Du Marché", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23379000000, + 44.03046900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PTAVUZX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "21874", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/TAVUZX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.56330000000, + 47.93860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "515042", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5207437836272633097", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/JDIEUSSXCH", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13157000000, + 43.51856100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref:EU:EVSE": "FRMW1P7081401058593437912", + "capacity": "2", + "description": "Mobilygreen CPO/6539253d-096c-44d9-87a4-4df9d3ec837e", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "ref": "461436", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63768900000, + 44.83320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE1911;FRSIGPSIGE1912", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*19*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - 101 RUE JEAN JAURES - VANVES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-08-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29018100000, + 48.82598000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001707;FRCG0E001708;FRCG0E001709", + "amenity": "charging_station", + "network": "Logis Hostellerie Bressane", + "start_date": "2023-04-14", + "ref:EU:EVSE": "FRCG0E001707;FRCG0E001708;FRCG0E001709", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "11 kW;2 kW", + "description": "Logis Hostellerie Bressane", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24354100000, + 46.75249200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89732205", + "operator": "Last Mile Solutions", + "start_date": "2023-07-13", + "description": "ENGIE Vianeo - Hôtel Campanile Calais", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87747700000, + 50.94796500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS40PMB407814;FRS40PMB407813;FRS40PMB407812;Non concerné;FRS40PMB407811", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "start_date": "2020-06-09", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Lon les Mines | Parking Superette;SAINT LON LES MINES - PARKING SUPERETTE", + "ref": "FR*SOD*S*MB40*78*1*_*_;c4a71c7c-6d25-54d7-954a-e6af30acff26", + "operator": "199__SYDEC40;IZIVIA", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12599600000, + 43.61354400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE80PLCA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "charging_station:output": "25 kW;22 kW", + "description": "Picardie Carrelage - Poulainville", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31027300000, + 49.94935100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-04-08", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSBSCCH", + "description": "BESANCON CHALEZEULE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06446800000, + 47.26285000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3782EVCP01", + "ref:EU:EVSE": "LFR3782EVCP01", + "description": "LINGOLSHEIM - Hannong" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69167000000, + 48.55687400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MONTPELLIER - 465 Rue Alfred Nobel", + "network": "Reveo", + "ref:EU:EVSE": "FRM34E34172020", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91256500000, + 43.61221000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Poisy, Parking de la Mairie;Réseau eborn/BDZXDF", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPBDZXDF", + "ref": "BDZXDF;32911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06426000000, + 45.92170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKQZKI261LPOZ", + "ref:EU:EVSE": "FRFR1P572435516444745224", + "operator": "Freshmile | FR*FR1", + "ref": "978011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30752300000, + 45.58241100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2024-03-18;2020-06-18", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ISSY LES MOULINEAUX - Hôtel de ville", + "ref:EU:EVSE": "FRP07E92040001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27372100000, + 48.82448600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPTMRZGC2FOR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "description": "Toulon, Parking Escaillon;Réseau eborn/TMRZGC2FOR", + "ref": "244036;TMRZGC2FOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88905200000, + 43.12862300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Saint-Martin-d'Hères - KFC", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPSMHKF", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-08-07", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76581000000, + 45.18456200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E77420001", + "charging_station:output": "7 kW", + "description": "Parking gare de Dammartin Pasteur P+R - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69914000000, + 49.03388000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "62 kW", + "start_date": "2022-10-17", + "charging_station:output": "62 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FRCPIE6637885;FRCPIE6638035;FRCPIE6638045", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "description": "HYPERU BORNE 2 DC", + "ref:EU:EVSE": "FRCPIE6637885;FRCPIE6638035;FRCPIE6638045", + "network": "HYPERU BORNE 2 DC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26073434000, + 47.83715900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "749277", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "description": "Easy Charge/YBYC4VCVNS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRECHP8702424532357973641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39248300000, + 47.28905400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX1713", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX17*13", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "description": "Paris | Avenue de Clichy 181 quater", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31480000000, + 48.89350000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PFQVDTM", + "charging_station:output": "22 kW", + "ref": "182531", + "description": "Freshmile France/FQVDTM", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69625000000, + 49.20500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTCBP01790", + "charging_station:output": "22 kW", + "ref": "FR*TCB*P01790", + "description": "AMP | 202 Avenue de la Madrague de Montredon", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35570100000, + 43.23208500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8543891079429100144", + "description": "Freshmile France/RB9CFF9JHS", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "ref": "446573" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54530000000, + 50.47540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPBPM360001", + "description": "Hyundai - Châteauroux", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-30", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72892600000, + 46.79788900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2915100", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Morlaix-Rue Jean Yves Guillard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.83211000000, + 48.58287000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FLEURY - Avenue Alain Colas", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11145003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23277777778, + 43.21666670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mairie de WAHAGNIES 22 kW AC ;Mairie de WAHAGNIES 7 kW AC ", + "amenity": "charging_station", + "capacity": "1", + "network": "MAIRIE DE WAHAGNIES;COMMUNE DE WAHAGNIES;Mairie de wahagnies", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW;7.4 kW;7 kW", + "ref": "E47280;E47051;E46966;E175807;E175643;E175646;E46970;E71792", + "ref:EU:EVSE": "FRZPEE71792;FRZPEE47280;FRZPEE46970;FRZPEE175807;FRZPEE175643;FRZPEE175646;FRZPEE46966;FRZPEE47051", + "start_date": "2021-09-03;2023-06-01;2020-11-08;2023-06-15;2023-05-04", + "operator": "ZEborne", + "opening_hours": "Lu- Ve 09:00-17:00, Sa 09:00-12:00;Lu- Sa 09:00-12:00,Me 09:00-17:00", + "owner:ref:FR:SIREN": "215906306" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03447010000, + 50.48759850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "LAVELANET - Avenue Alsace Lorraine", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS09E09160001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85486300000, + 42.94040600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/fortmahonparis", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PFORTMAHONPARIS", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "34646", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55556000000, + 50.33960000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - COLMAR", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-01-09", + "ref:EU:EVSE": "FRIZFPFAST3022;FRIZFPFAST3012;FRIZFPFAST3011;FRIZFPFAST3013;FRIZFPFAST3021;FRIZFPFAST3023", + "ref": "FR*SOD*S*FAST*30*1*_*_;FR*SOD*S*FAST*30*2*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36444150000, + 48.12832060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (42)", + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44055C", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-22", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38842200000, + 47.28544000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH61BYGVDJ7R63NQGJ33", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77152001;FRS77P77152A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-26;2015-07-01", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Dammarie-lès-Lys;DAMMARIE-LES-LYS - Avenue Aristide Briand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63514400000, + 48.51544100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000085932", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "network": "Château Les Ormes de Pez", + "description": "Château Les Ormes de Pez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78999000000, + 45.25999400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E221165;FRS37E220259", + "capacity": "2", + "network": "MODULO - CHEILLE - Rue Creuse", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref": "FRS37E221165;FRS37E220259", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHEILLE - Rue Creuse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46238452000, + 47.25496397000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "40__T2L", + "charging_station:output": "3.7 kW;22 kW", + "description": "T2L - Longuyon - Parking Gare", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "56b6c813-7d89-56d2-881d-a4836011904c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60420000000, + 49.44450000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRG58E31451001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-24;2021-11-17", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "CI2C REVEL - Rue Clémence Isaure" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99283900000, + 43.45195300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "MOBIVE | MAGNAC BOURG | Caserne", + "operator": "203__SEHV", + "ref": "4b142b2a-0a88-5539-a528-dddf6a52285d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43415000000, + 45.61798500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "ref:EU:EVSE": "FRSIPE94071007", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SUCY EN BRIE - Rue de la Cité Verte", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52516184918, + 48.77341912399 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LA BENETIERE BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6528205", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6528205", + "description": "LA BENETIERE BORNE 1", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85359000000, + 46.90976000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3254807193233785713", + "description": "Leclerc/X1P794WYD9", + "ref": "446861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08536500000, + 49.00859500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "0d0c801e-7f38-5c3b-84c9-61b5d5332287", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Hautefort | Rue Bertrand de Born" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14579500000, + 45.25883500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "start_date": "2021-05-18", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB47092A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - St Rémy - Salle Polyvalente", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52165270000, + 46.37306610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2024-09-23", + "capacity": "2", + "amenity": "charging_station", + "description": "Airbus - Marignane - Parking R5", + "ref:EU:EVSE": "FRAIRPBERV", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23405200000, + 43.43102900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4107EVCP04;LFR4107EVCP02;LFR4107EVCP01;LFR4107EVCP03", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "MONTOIRE SUR LE LOIR -PAIX", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4107EVCP04;LFR4107EVCP02;LFR4107EVCP01;LFR4107EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87821100000, + 47.75963900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Orléans Métropole/HSZFHCDE65", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM45P8547365722247441250", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45", + "ref": "414747" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93456000000, + 47.88026000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-23", + "operator": "IZIVIA", + "description": "DALUIS - PARKING GARE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*161*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ16112;FRA16PWIIZ16111", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81205000000, + 44.02651200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "471162", + "ref:EU:EVSE": "FRFR1P972951674236083670", + "amenity": "charging_station", + "description": "Freshmile France/RUIWFEJLLK", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41816900000, + 48.85019700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bio Attitudes - Saint-Flour", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRPD1PBIOSFL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05670500000, + 45.03974400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "XZCHPX;32767", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Clair-Du-Rhône, Plc Charles de Gaulle;Réseau eborn/XZCHPX", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPXZCHPX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77067000000, + 45.43870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Sausheim - Novotel", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPSAUNO", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38800500000, + 47.78032000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E141180021;FRP07E14118002", + "description": "CAEN - Presqu’Ile Tribunal", + "start_date": "2023-09-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34884934500, + 49.18258135925 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6708995", + "start_date": "2023-04-13", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6708995", + "operator:email": "info@chargepoint.com", + "network": "ZI PONTET BORNE 1", + "description": "ZI PONTET BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87743700000, + 45.63480300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "description": "Easy Charge/YDUBF6XMSJ;Bussy-Saint-Georges, Aire de Ferrières", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPYDUBF6XMSJ;FRECHP7331702788524624475", + "ref": "694181;YDUBF6XMSJ", + "socket:type2_combo:output": "70 kW", + "opening_hours": "24/7", + "charging_station:output": "70 kW", + "start_date": "2022-12-13", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74155200000, + 48.82841900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP101102", + "description": "ENGIE Vianeo - A6 Beaune Merceuil", + "start_date": "2022-12-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83847600000, + 46.96162700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4323018142238023216", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/XNM9MXUP5F", + "operator": "Freshmile | FR*FR1", + "ref": "801714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80160500000, + 45.10066300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0814", + "opening_hours": "24/7", + "ref": "FR*V75*PPX08*14", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Avenue George V 44", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30112100000, + 48.87057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PCZLFEL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CZLFEL", + "operator": "Freshmile | FR*FR1", + "ref": "120764" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34541000000, + 48.54050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Ajaccio - Place Miot", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPINGEOVOIRIE200001", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.72936900000, + 41.91424300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "description": "SYDED/NRDWFQ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25PNRDWFQ", + "charging_station:output": "22 kW", + "ref": "159439", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90226000000, + 47.17420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E204139;FRS18E204137", + "start_date": "2023-05-12", + "capacity": "2", + "description": "MODULO - LERE - Port", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRS18E204139;FRS18E204137", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LERE - Port" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87499900000, + 47.47364400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LOMMOYE - Eglise", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78344001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-03-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51497000000, + 48.99392000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "QPARK - ANTIBES - POIRIER", + "network": "QPARK", + "ref:EU:EVSE": "FRQPKPQPRK12331;FRQPKPQPRK123191;FRQPKPQPRK123181;FRQPKPQPRK123161;FRQPKPQPRK123141;FRQPKPQPRK123121;FRQPKPQPRK123111;FRQPKPQPRK12311;FRQPKPQPRK123101;FRQPKPQPRK123131;FRQPKPQPRK123151;FRQPKPQPRK123171;FRQPKPQPRK123201;FRQPKPQPRK12321;FRQPKPQPRK12341;FRQPKPQPRK12351;FRQPKPQPRK12371;FRQPKPQPRK12381;FRQPKPQPRK12391", + "ref": "FR*SOD*S*QPRK*123*8*_*_;FR*SOD*S*QPRK*123*7*_*_;FR*SOD*S*QPRK*123*20*_*_;FR*SOD*S*QPRK*123*19*_*_;FR*SOD*S*QPRK*123*18*_*_;FR*SOD*S*QPRK*123*17*_*_;FR*SOD*S*QPRK*123*15*_*_;FR*SOD*S*QPRK*123*13*_*_;FR*SOD*S*QPRK*123*1*_*_;FR*SOD*S*QPRK*123*10*_*_;FR*SOD*S*QPRK*123*11*_*_;FR*SOD*S*QPRK*123*12*_*_;FR*SOD*S*QPRK*123*14*_*_;FR*SOD*S*QPRK*123*16*_*_;FR*SOD*S*QPRK*123*2*_*_;FR*SOD*S*QPRK*123*3*_*_;FR*SOD*S*QPRK*123*4*_*_;FR*SOD*S*QPRK*123*5*_*_;FR*SOD*S*QPRK*123*9*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12012560000, + 43.58159830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81045001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-10-21", + "charging_station:output": "50 kW;43 kW", + "description": "LES CABANNES - Promenade de l'Autan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94066600000, + 44.06690900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE404400", + "start_date": "2019-12-17", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Mionnay Chatanay", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref": "FRIONE404400", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69347400000, + 48.09518000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2024-04-19", + "ref:EU:EVSE": "FRS44E44169002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT JULIEN DE CONCELLES - Route Du Lac", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37194502400, + 47.25130463000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "24 kW;22 kW", + "description": "SAINT-PIERRE-LES-NEMOURS - Guinebert", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS77E77431001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67831429000, + 48.27050340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681767;531681765;531681764;531681763;531681761;531681759;531681758;531681756;531681755;531681754;531681752;531681753;531681757;531681760;531681762;531681766", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF079895", + "network": "TotalEnergies Charge Rapide", + "start_date": "2024-03-19", + "description": "Relais Rocade Purpan", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "ref": "FRHPCPNF079895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39860000000, + 43.60060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BLOIS - Rue de la Vallée Maillard", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E139036;FRS41E139035;FRS41E139034;FRS41E139033", + "description": "MODULO - BLOIS - Rue de la Vallée Maillard", + "ref": "FRS41E139036;FRS41E139035;FRS41E139034;FRS41E139033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33550700000, + 47.61038300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/LPZGQN", + "opening_hours": "24/7", + "ref": "21896", + "ref:EU:EVSE": "FRS56PLPZGQN", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27615000000, + 47.80470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*177*1*_*_", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "FRGLYPLYON17712;FRGLYPLYON17711", + "opening_hours": "24/7", + "start_date": "2022-09-09", + "description": "VAV06 - CARRE DE SOIE - BOHLEN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92388800000, + 45.76548700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "1193899", + "network": "Métropolis", + "amenity": "charging_station", + "description": "Métropolis/FR*MGP*P91179*B", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP91179B", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48424900000, + 48.56646500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPBYMYCAR730001", + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "description": "Opel - ByMyCar - Chambery", + "start_date": "2020-02-26", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88740000000, + 45.60710100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6593495", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CGED CGED LORIENT", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "network": "CGED CGED LORIENT", + "ref": "FRCPIE6593495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33434000000, + 47.77953300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P4285875772124129612", + "ref": "1052505", + "description": "Leclerc/LLU1DE6F01AOIW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14419700000, + 45.75186000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Leognan | Parking Eglise", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW", + "ref": "131d7c61-1a38-5ac2-9b4c-e9bc096f2f6e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60147200000, + 44.72771100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GRISY LES PLATRES - Parking MAIRIE", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS95E95287001", + "charging_station:output": "22 kW", + "start_date": "2024-07-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05050100000, + 49.13080400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLEGO7002132;FRALLEGO7002131;FRALLEGO7002122;FRALLEGO7002121;FRALLEGO7001172;FRALLEGO7001171;FRALLPEVCARSKLPBL;FRALLEGO7001161;FRALLEGO7001162", + "network": "Carrefour Energies;Allego FR, Klepierre, TJ2 Toulouse Blagnac", + "operator": "Allego", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "socket:type2_combo:output": "0 kW;150 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO7002132;FRALLEGO7002131;FRALLEGO7002122;FRALLEGO7001172;FRALLEGO7001171;FRALLEGO7001161;FRALLEGO7001162;FRALLEGO7002121", + "start_date": "2024-06-07;2024-06-05", + "charging_station:output": "0 kW;22 kW;150 kW", + "description": "TOULOUSE BLAGNAC;Allego FR, Klepierre, TJ2 Toulouse Blagnac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37000000000, + 43.64655000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "VILLEREST Tuilerie", + "ref:EU:EVSE": "LFR3221EVCP02;LFR3221EVCP01", + "ref": "LFR3221EVCP02;LFR3221EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03869200000, + 46.01564300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PJFUQO0CX1X", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Aix-En-Provence, Avenue Robert Daugey", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41833600000, + 43.48495200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/KEFA2NCMDL", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "488865", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FRS89P5029392011002619005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71769400000, + 47.97061600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ29712;FRA16PWIIZ29711", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*297*1*_*_", + "description": "SAINT-RAPHAEL - PARKING COMMANDANT CHARCOT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-06-05", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77437069207, + 43.42739118766 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GKNGDZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "242335", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PGKNGDZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74958000000, + 48.57560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PNTOBGR", + "description": "Netto - Bégard", + "start_date": "2023-08-31", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29604074785, + 48.62168632829 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/IBY7XIF9QN;La Frette, Place des Déportés et Résistants", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "39134;IBY7XIF9QN", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPIBY7XIF9QN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36198000000, + 45.39080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref": "1086738", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FREVZP7425644275788847218", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "description": "EVzen/FCB125E0-4191-405F-AF1B-C6D9703D5942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38297900000, + 46.76715200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR61513;FROTHPOTHR61512;FROTHPOTHR61511", + "description": "INTERMARCHE - CHARNY OREE DE PUISAYE", + "amenity": "charging_station", + "start_date": "2023-06-28", + "charging_station:output": "100 kW", + "capacity": "3", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*615*1*_*_", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09490700000, + 47.87676200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHFWXM4PJLA", + "ref": "HFWXM4PJLA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "L'Etrat, Parking rue de Verdun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37212510000, + 45.48566990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/OZQAXE8API;Serres, Rue Marius Meyere", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPOZQAXE8API", + "ref": "OZQAXE8API;244015", + "capacity": "2;5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71815500000, + 44.42872900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-11-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR312;FROTHPOTHR311", + "ref": "FR*SOD*S*OTHR*3*1*_*_", + "operator:email": "sav@izivia.com", + "description": "ALTAU - OBERNAI", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47429300000, + 48.46287500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "ref": "1009155", + "description": "Freshmile France/LLOSDM26VQIZJY", + "opening_hours": "Mo,Tu,Fr,Th,We 08:00-19:00,Sa 08:00-18:00", + "ref:EU:EVSE": "FRFR1P7292738420735301705", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33759800000, + 46.90223900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "description": "Paris | Place Etienne Pernet 26", + "ref:EU:EVSE": "FRV75PPX1510", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*V75*PPX15*10", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29205130000, + 48.84259470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7814006659831766349", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "453963", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ANPKXW9RD5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26040000000, + 46.88650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "network": "DRIVECO", + "description": "Citroen -Maubeuge", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPSOGAMACITROEN597501", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90242300000, + 50.28194900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PROUTOTMAIRIE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900091", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73155400000, + 49.37879500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "description": "Gouarec-Rue du moulin", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22064001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18045700000, + 48.22707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "L'ETANG-LA-VILLE - Avenue General De Gaulle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY16E78224001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07259600000, + 48.87043800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-12-03", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE191", + "description": "MaisonPresse", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81900000000, + 49.28500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19;2021-05-20", + "owner:ref:FR:SIREN": "842019317;842019318;842019319", + "description": "GUAINVILLE", + "capacity": "5;6;4", + "amenity": "charging_station", + "network": "Réseau de recharge SAS PRIMARD", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "operator": "WAAT", + "charging_station:output": "22 kW", + "operator:email": "g.uppilirajan@waat.fr", + "ref": "61081;61082;61083" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44311050000, + 48.91913800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIOYE403806;FRIOYE403805;FRIOYE403804;FRIOYE403803;FRIOYE403801;FRIOYE403802;FRIOYE403851;FRIOYE403852;FRIOYE403853", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE403806;FRIOYE403805;FRIOYE403804;FRIOYE403803;FRIOYE403801;FRIOYE403802;FRIOYE403851;FRIOYE403852;FRIOYE403853", + "network": "Mâcon Saint-Albain", + "start_date": "2019-11-13", + "capacity": "9", + "description": "Mâcon Saint-Albain", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418000, + 46.42090355000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "description": "SDED52/VZFPF5S0ZN", + "opening_hours": "24/7", + "ref": "332240", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P5106208078048154244" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21805900000, + 48.42337400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65295002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LUZ SAINT SAUVEUR - Thermes St Sauveur", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01095000000, + 42.86302000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE002602;FRIENE002601", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE002602;FRIENE002601", + "operator": "NW IECharge", + "network": "Montalieu-Vercieu", + "description": "Montalieu-Vercieu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40785100000, + 45.80678500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT ANDRE DE SANGONIS - Parking Salle Des Fetes : Cours De La Liberte", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34239001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50470833333, + 43.65248890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P61006A", + "description": "ARGENTAN - Pl. Mahe", + "opening_hours": "24/7", + "ref": "SE61-ARGE-001", + "start_date": "2017-12-04;2017-12-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01787000000, + 48.74343800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8038191933657783221", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LM0KTZER824UWK", + "ref": "1179135", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75156600000, + 48.59160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Roulez Électrique En Haute-Garonne/CFCFDE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PCFCFDE", + "ref": "46561", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64529900000, + 42.91470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ford - Groupe Dugardin - Boulogne sur Mer", + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD622001", + "charging_station:output": "22.08 kW", + "start_date": "2020-10-15", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60927600000, + 50.69623300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000012", + "description": "EL BALESTRO - 56250 - 1", + "amenity": "charging_station", + "capacity": "1", + "network": "EL BALESTRO - 56250 - 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-08-05", + "ref:EU:EVSE": "FRCG0E000012", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52223700000, + 47.68875800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "8b6cd60c-7039-4767-a614-4bde137d5e1b", + "ref:EU:EVSE": "FRLUMERHONEAVACQUEYRAS11", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "description": "Rhonéa Vacqueyras", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98620500000, + 44.14048700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "2857adb8-db3f-5921-bdb6-2aa8a2db0a62", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Les Portes en Ré | Parking de la Grenouillère", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49964000000, + 46.24764300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Fondation Bon Sauveur - SAINT LO", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-24", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE50SLAC;FRSE1PSE50SLAB;FRSE1PSE50SLAA", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09410400000, + 49.11082000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP5561207904189237410", + "ref": "1133511", + "charging_station:output": "11 kW", + "description": "BornEco/668662b9af6adae311c5afd6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02183400000, + 42.61607000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "CHALONS Rolland", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4040EVCP04;LFR4040EVCP02;LFR4040EVCP03;LFR4040EVCP01", + "ref": "LFR4040EVCP04;LFR4040EVCP02;LFR4040EVCP03;LFR4040EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34991300000, + 48.95063900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PT2C8IPTWZ0", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-1E, 14 Allée Léon Gambetta", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38179000000, + 43.29905500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TE90/EGPJSR", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "182579", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90PEGPJSR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294000000, + 47.55740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P78000*VER*VAUBAN", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP78000VERVAUBAN", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "RUE VAUBAN VERSAILLES", + "start_date": "2019-10-23", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15357700000, + 48.79967400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1465473548884402774", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLY2S05OPTYITB", + "opening_hours": "24/7", + "ref": "1173966", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00156000000, + 49.14703200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;22 kW;120 kW", + "start_date": "2023-08-18", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "description": "Super U - Montigny-lès-Metz", + "ref:EU:EVSE": "FRPD1PSYUMTM", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15631630433, + 49.08797527372 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/moulinsjm;Moulins, Place Jean Moulin", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPMOULINSJM", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "moulinsjm;120734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32740000000, + 46.56680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "ref:EU:EVSE": "FRFASE33049", + "capacity": "8", + "network": "Fastned Aire du Manoire", + "amenity": "charging_station", + "start_date": "2022-11-09", + "operator:email": "support@fastned.nl", + "description": "Fastned Aire du Manoire", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRFASE33049", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80030450000, + 45.14952753000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING SANDAYA - CASTELLANE", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*96*1*_*_", + "start_date": "2020-12-22", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR9612;FROTHPOTHR9611", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49410900000, + 43.83880100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "48316;QZWCVQ", + "ref:EU:EVSE": "FREBNPQZWCVQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/QZWCVQ;Lesperon, Le Village", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89792000000, + 44.73030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "OHIKRIFSOE;48325", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPOHIKRIFSOE", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Rochemaure, Place des Brassieres;Réseau eborn/OHIKRIFSOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70472800000, + 44.58802500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - MERIGNAC", + "ref:EU:EVSE": "FROTHPOTHR43022;FROTHPOTHR43011;FROTHPOTHR43012;FROTHPOTHR43021", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*430*1*_*_;FR*SOD*S*OTHR*430*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65265600000, + 44.85634000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/BUE8MYS7P9", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "charging_station:output": "24 kW;7.4 kW", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "782538", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRFR1P556511989215536543", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.36661200000, + -21.26583100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Aime-la-Plagne, France", + "capacity": "8", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP34049", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64544800000, + 45.55317900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "100 kW;64 kW", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;64 kW", + "ref": "801729", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1504891282940744247", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/ZEAQE62RQJ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35370600000, + 48.07553400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "description": "MULHOUSE-8 pte du miroir", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "83de0931-f610-5f27-9627-9d6e331c539a", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33760400000, + 47.74234100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "515102", + "description": "Freshmile France/RIQRNFFR14", + "ref:EU:EVSE": "FRFR1P7514933855707442032", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81048200000, + 47.74558700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLWRT75LX1JB6N", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P3107898282968339331", + "ref": "1112316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38748000000, + 49.32802300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1P7391290286679176032;FRZP1P2447360366861185118;FRZP1P5696877267025136913;FRZP1P4576532703689904952", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Su 11:00-23:59,Mo 00:00-23:59;Mo 00:00-23:59,Su 11:00-23:59", + "charging_station:output": "22 kW", + "description": "Zephyre/LE006E52;Zephyre/LE00662F;Zephyre/LE0057A5;Zephyre/LP009E76", + "ref": "575957;895008;575978;576035", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32116400000, + 47.49182700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-05", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE421", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "FPB_Tarbes", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08267100000, + 43.22918300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "description": "VAUX-SUR-SEINE - Rue du temple", + "ref:EU:EVSE": "FRY01E78638003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97296915127, + 49.00379562991 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Villiers-Charlemagne - Eglise;VILLIERS-CHARLEMAGNE - Place De L'Église", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS53P53273A;FRS53E53273001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-06;2024-05-31", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67728600000, + 47.92208100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-CYPRIEN - Parking Sud Roussillon", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRS66E66171001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-05-18", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03347050000, + 42.64020720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IKEA BORDEAUX - EMPU", + "ref:EU:EVSE": "FRIKAPIKEA118111;FRIKAPIKEA118121;FRIKAPIKEA118131", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-04-19", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IKEA*118*13*_*_;FR*SOD*S*IKEA*118*12*_*_;FR*SOD*S*IKEA*118*11*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56573800000, + 44.88504500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "MORDELLES - 1 place de la mairie ", + "ref:EU:EVSE": "FRS35P35196001B1", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84688200000, + 48.07339100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63010A", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref": "518222", + "description": "SIEG63 - ePremium - Arlanc - Vellay;SIEG 63/FR*S63*P63010*A", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-07-28", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72485800000, + 45.41344900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892200", + "ref:EU:EVSE": "FRFR1P5819515186186901711", + "description": "Freshmile France/LLIUAFO8VI0P35", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.71547600000, + -21.04107900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "ref:EU:EVSE": "FRS31PBJUMFP", + "ref": "BJUMFP", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "description": "Ramonville-Saint-Agne, Georges Pompidou", + "start_date": "2017-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47782000000, + 43.54840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-04", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BOBIGNY - 218 Avenue Jean Jaurès", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93008004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43721490000, + 48.91076260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-02", + "amenity": "charging_station", + "ref": "FRCG0E000808;FRCG0E000807;FRCG0E000806;FRCG0E000805;FRCG0E000804;FRCG0E000803;FRCG0E000802;FRCG0E000801;FRCG0E001811", + "opening_hours": "24/7", + "description": "PLD Auto - Odicée Marseille Audi - 4", + "charging_station:output": "11 kW;2 kW", + "capacity": "9", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000807;FRCG0E000806;FRCG0E000805;FRCG0E000804;FRCG0E000803;FRCG0E000802;FRCG0E000801;FRCG0E000808;FRCG0E001811", + "network": "PLD Auto - Odicée Marseille Audi - 4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45886100000, + 43.29284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-22", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "NICE - PARKING PENCHIENATTI", + "ref:EU:EVSE": "FRM06PNICE21011;FRM06PNICE21012", + "ref": "FR*SOD*S*NICE*210*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27797149026, + 43.70223613001 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Agen | Rue Diderot | 001", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "fad4e8ce-1542-52ad-b90b-a99da00ffe10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61975000000, + 44.20058300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*348*1*_*_", + "network": "SIGEIF", + "description": "SIGEIF - 3 RUE DU MARECHAL JOFFRE GARE GROS NOYER - ERMONT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE34812;FRSIGPSIGE34811", + "start_date": "2023-10-12", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25854000000, + 48.99730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOIS GUILLAUME - Chemin De La Bretèque", + "ref:EU:EVSE": "FRC01E76108005", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11264500000, + 49.47898100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4085EVCP03;LFR4085EVCP01;LFR4085EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4085EVCP03;LFR4085EVCP01;LFR4085EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BOBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41455000000, + 48.91760000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Bonnat | Place du Foirail", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "c00a0420-4010-556c-9eca-b781ec6285cc", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90816900000, + 46.32581400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/MONTABANNORD", + "operator:email": "roaming@freshmile.com", + "ref": "79801", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PMONTABANNORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34418000000, + 44.01650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "PARKING FOCH - SAINT-TROPEZ", + "ref": "FR*55C*P83990*STR*F0CH", + "start_date": "2022-06-08;2022-06-17", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP83990STRF0CH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64320600000, + 43.26874100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3588EVCP03;LFR3588EVCP02;LFR3588EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "BREST Paulet", + "ref:EU:EVSE": "LFR3588EVCP03;LFR3588EVCP02;LFR3588EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47531600000, + 48.41522000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Intermarché - La Destrousse", + "ref:EU:EVSE": "FRPD1PITMDST", + "start_date": "2023-11-09;2023-11-03", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59739900000, + 43.38943600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Thônes, Parking Clos", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "eborn", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPYQIQWQ8UZY", + "ref": "YQIQWQ8UZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32348100000, + 45.88311100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "7", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "e-Totem - BIARRITZ Bd Marcel Daussault", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP64122C", + "ref:EU:EVSE": "FRETIP64122C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54701205270, + 43.46084327219 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-10-24;2023-10-25", + "description": "Best Western - Guérande", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBWTGRD", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41660766686, + 47.32534235631 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-12-08", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRDRVPCRFMKT271301", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Verneuil-Sur-Avre", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93372700000, + 48.74847500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-12-07", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Talence - Intermarché", + "capacity": "4", + "ref:EU:EVSE": "FRELCPTALIM", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57506700000, + 44.80735700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "operator": "IZIVIA", + "capacity": "2", + "description": "LES JARDINS DE LA MER - MERLIMONT", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR54311;FROTHPOTHR54312", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "LES JARDINS DE LA MER", + "ref": "FR*SOD*S*OTHR*543*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60010100000, + 50.45898200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6740865;FRCPIE6740855;FRCPIE6740835;FRCPIE6740825;FRCPIE6740815;FRCPIE6740845;FRCPIE6740875;FRCPIE6740885;FRCPIE6741075", + "start_date": "2023-06-23", + "capacity": "18", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "E.LECLERC BORNE 5 DC", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "E.LECLERC BORNE 5 DC", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6740865;FRCPIE6740855;FRCPIE6740835;FRCPIE6740825;FRCPIE6740815;FRCPIE6740845;FRCPIE6740875;FRCPIE6740885;FRCPIE6741075" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53700800000, + 43.24778200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7838549340192310081", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/A8NFE2AVUQ", + "ref": "440973", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71180000000, + 48.60010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV07E72264002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "description": "SABLE SUR SARTHE - Place Du Champ De Foire", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33637100000, + 47.84035400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/VPUTSR", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PVPUTSR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "232432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93010000000, + 49.47150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "125 kW", + "socket:type2_combo:output": "125 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP1727", + "opening_hours": "24/7", + "description": "Tesla Supercharger Calais - Eurotunnel Terminal", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81295100000, + 50.93503100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1631129927865620118", + "description": "Freshmile France/XQ1TNK1LIC", + "opening_hours": "Th,Mo,Fr,Tu,We 07:00-18:00,Sa 08:00-12:00", + "ref": "782520", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88147600000, + 48.91039900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HOTEL KYRIAD PARIS BEZONS", + "start_date": "2022-05-31", + "network": "HOTEL KYRIAD PARIS BEZONS", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-19:01", + "capacity": "1", + "operator:email": "acelec@acelec-france.com", + "ref:EU:EVSE": "FR073PKYRIADBEZONS", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "301192464", + "operator": "Acelec Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21233600000, + 48.93135600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1706059583882301425", + "ref": "461745", + "description": "MobiSDEC/GTOZBG9FBP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31841600000, + 49.17217300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12147001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-01-03;2022-01-06", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "MONTAGNOL - Lieu Dit Cenomes Haut D902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02625000000, + 43.80964300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA4P6502012991810079692", + "network": "WAAT", + "description": "WAAT/FRWA4LBFPTVSHW", + "ref": "880149", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11777200000, + 49.48406000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-17;2021-04-27", + "ref:EU:EVSE": "FRS49P49278A;FRS49E49278001", + "description": "SAINTE-GEMMES-SUR-LOIRE - Place de la Mairie;OuestCharge - Diva Sp - Sainte-Gemmes-sur-Loire - Mairie", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55671000000, + 47.42272400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CASTRES - Place Soult - Parking Extèrieur", + "start_date": "2022-01-22;2022-03-03", + "ref:EU:EVSE": "FRS81E81065011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24728500000, + 43.60405100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH18E62820001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TINCQUES - Route de Penin", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48729000000, + 50.35278300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Loireauxence - Parc;LOIREAUXENCE - Rue Du Parc", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-04-18;2021-04-27", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44213A;FRS44E44213001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03201600000, + 47.38696200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "ref": "518441", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63415*B", + "network": "SIEG 63", + "capacity": "3", + "ref:EU:EVSE": "FRS63P63415B", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36987300000, + 45.55000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRUAY-SUR-L'ESCAUT - Place Henri Durre", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59112001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55545600000, + 50.40961800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34082001", + "description": "Combaillaux - Place Aux Jeunes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-09-04", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77329795222, + 43.67242355286 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-03-30", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "L'HAY LES ROSES - Rue Jean Jaurès", + "ref:EU:EVSE": "FRSIPE94038002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33750794200, + 48.77940753200 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-03-20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP90197752", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B Hôtel Louveciennes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11583700000, + 48.87627200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Perigueux | Cours Saint Georges", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "aebc168d-a8fe-5df1-b461-9d3849b5ae2b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72480700000, + 45.17981700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "description": "SIGEIF - 85 RUE JEAN JAURES - VANVES", + "start_date": "2024-02-09", + "ref:EU:EVSE": "FRSIGPSIGE45112;FRSIGPSIGE45111", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*451*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29184470000, + 48.82548980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Rethel", + "network": "Allego Carrefour Rethel", + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22", + "ref:EU:EVSE": "FRALLEGO9009451;FRALLEGO9009441;FRALLEGO9004411;FRALLEGO9004371;FRALLEGO9004372;FRALLEGO9004412;FRALLEGO9009442;FRALLEGO9009452", + "ref": "FRALLEGO9009451;FRALLEGO9009441;FRALLEGO9004411;FRALLEGO9004371;FRALLEGO9004372;FRALLEGO9004412;FRALLEGO9009442;FRALLEGO9009452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37322520000, + 49.52111050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3461EVCP02;LFR3461EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "VITROLLES Monnet", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3461EVCP02;LFR3461EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28495800000, + 43.42321300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "b63c19f7-a5b2-582b-88a7-2c249240ae40", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Puyoo | Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91561200000, + 43.52664600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "d341370b-31f9-5385-8c24-94dc1263cab1", + "description": "VILLELAURE - Place du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43301200000, + 43.71012100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT HILARION - Parking de la Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78557001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73295920000, + 48.62030370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3900EVCP04;LFR3900EVCP02;LFR3900EVCP01;LFR3900EVCP03", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "FEURS Sables", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3900EVCP03;LFR3900EVCP02;LFR3900EVCP01;LFR3900EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22567700000, + 45.72676800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "Keepcool Firminy - Unieux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRPD1PKCOUNI", + "operator:email": "hello@powerdot.fr", + "operator": "Power Dot France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26808448050, + 45.39292801115 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLK6W5KDV2HGHI;Toulon, Allée Jules Muraire", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPLLK6W5KDV2HGHI;FREBNP6406506918389259566", + "ref": "LLK6W5KDV2HGHI;892818", + "start_date": "2023-07-17", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94714600000, + 43.12966700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "owner:ref:FR:SIREN": "449633189", + "description": "WELDOM PEYREHORADE", + "operator": "SOCIETE BRICORTHE;\tSOCIETE BRICORTHE", + "amenity": "charging_station", + "network": "WELDOM", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVBP2213099;FREVBP2212349", + "ref": "NON CONCERNE", + "operator:email": "c.maubourguet@sasmaubourguet.com", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12265915218, + 43.55065117961 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "50 kW;100 kW;22 kW;180 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;180 kW", + "start_date": "2023-04-15;2023-03-22", + "description": "Domaine de Marlioz - Aix-les-Bains", + "ref:EU:EVSE": "FRPD1PDMMALB", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90974210000, + 45.67399380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Fumay", + "ref:EU:EVSE": "FRDRVPCRFMKT081701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69593400000, + 49.99036700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "ref:EU:EVSE": "FRESEPS42218BE", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref": "FRESEPS42218BE", + "description": "SEMOB Place Jean Plotton", + "start_date": "2021-09-03", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38404000000, + 45.43990900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-08-29", + "opening_hours": "24/7", + "description": "CNPE CATTENOM - FORMATION - OUVERT AU PUBLIC", + "ref": "FR*SOD*S*IZIG*735*5*_*_;FR*SOD*S*IZIG*735*4*_*_;FR*SOD*S*IZIG*735*3*_*_;FR*SOD*S*IZIG*735*1*_*_;FR*SOD*S*IZIG*735*2*_*_;FR*SOD*S*IZIG*735*6*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPIZIG73511;FROTHPIZIG73521;FROTHPIZIG73531;FROTHPIZIG73541;FROTHPIZIG73551;FROTHPIZIG73561" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22000300000, + 49.41220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "KB 0200 GLOS STATION 5", + "start_date": "2024-03-13", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6896535;FRCPIE6896505;FRCPIE6896495;FRCPIE6896405;FRCPIE6896515", + "ref": "FRCPIE6896535;FRCPIE6896505;FRCPIE6896495;FRCPIE6896405;FRCPIE6896515", + "description": "KB 0200 GLOS STATION 5", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28341200000, + 49.14551400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SDPZT1PG8I", + "ref:EU:EVSE": "FRFR1P565061028532989166", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "466179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15215200000, + 46.88362600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-12-01", + "description": "ENGIE Vianeo - Hôtel Campanile Manosque", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121047" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79333600000, + 43.83061300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/KNBBD1WKUO", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "398918", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8695364249382905399" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38993400000, + 48.73937700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPPEMZECVOLVO566001", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "description": "Volvo - Lorient", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34897400000, + 47.77978100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLTY4VHFE2DUGC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3569578982834279318", + "charging_station:output": "22 kW", + "ref": "1044504", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76411800000, + 48.74094300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E109619", + "network": "MODULO - BOURGES - Prado", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS18E109619", + "charging_station:output": "0 kW", + "description": "MODULO - BOURGES - Prado", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2022-02-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38352300000, + 47.08280500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461943", + "description": "MobiSDEC/T6CP8IZJCW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P6941201258152504086" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32648800000, + 49.04422400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1127940", + "description": "WAAT/FRWA5LGDMIHRGL", + "ref:EU:EVSE": "FRWA9P1477203138380694051", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69933000000, + 45.38954400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-01-26", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P502181", + "network": "e-charge50", + "operator": "Total marketing france", + "description": "GRANVILLE - la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58770920000, + 48.83810830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8118300122;FRS81E8118300111;FRS81E8118300112;FRS81E8118300121", + "start_date": "2023-06-07", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "MONT ROC - Rue du Village", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36972800000, + 43.80208700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "capacity": "6", + "ref": "FRHPCPNF059841", + "amenity": "charging_station", + "description": "RELAIS COQUELICOTS", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "531681649;531681647;531681648;531681646;531681650;531681651", + "ref:EU:EVSE": "FRHPCPNF059841", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34180000000, + 48.68010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E66191001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Sansa - Parking Village", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-08-14", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17272200000, + 42.60156600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "hagger", + "description": "hagger", + "ref:EU:EVSE": "FRS56E56053AB1G", + "operator": "SEGA ELECTRICITE", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "mo-fr 8:00-12:00,mo-fr 14:00-18:0,Th 8:00-18:00", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "owner:ref:FR:SIREN": "791408040", + "operator:email": "pierremarinere489@yopmail.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25000000000, + 48.94000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH06E62041003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ARRAS - Rue Abel Bergaigne", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77569800000, + 50.28516400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AIGUES MORTES - Chemin Du Mas D'Avon", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30003001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19965300000, + 43.56818900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PLJKNWD", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/LJKNWD", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref": "28478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54428500000, + 48.09607900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346052621;FRLMSE12346052611;FRLMSE12346052612;FRLMSE12346052622", + "capacity": "1", + "opening_hours": "24/7", + "ref": "B154", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "start_date": "2022-11-02", + "operator:email": "irve@soregies.fr", + "description": "MONTS SUR GUESNES MEMORIAL 2 - 001;MONTS SUR GUESNES MEMORIAL 2 - 002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21055500000, + 46.92054000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-20", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93048L", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "description": "Metropolis - Proximité - Montreuil - République (5)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42329625000, + 48.85316398000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Parthenay - Palais des Congrès", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2019-01-15", + "ref:EU:EVSE": "FRSEOPAB79202P0095A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24764580000, + 46.64775070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1148397", + "description": "Atlante/FRATLFR00543", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP8514130692545303590", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39932300000, + 45.05892600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Epinal - Hôtel de l'Innovation Bois", + "ref:EU:EVSE": "FRLMSP89397433", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46014500000, + 48.19866600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRMAPP000000008492", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "890247786", + "opening_hours": "24/7", + "network": "ROAD54 / ChargeMeUp", + "charging_station:output": "22 kW", + "start_date": "2024-05-13", + "operator:email": "customer.support@electromaps.com", + "description": "ChargeMeUp 2A;ChargeMeUp 3B;ChargeMeUp 3A;ChargeMeUp 2C", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64613144000, + 43.56321754000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS88E145638;FRS88E145636", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-08-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS88E145638;FRS88E145636", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - GERARDMER - Pl. des déportés", + "network": "MODULO - GERARDMER - Pl. des déportés" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87198100000, + 48.07218100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9009952;FRALLEGO9006052;FRALLEGO9004462;FRALLEGO9004461;FRALLEGO9002653;FRALLEGO9002652;FRALLEGO9000651;FRALLEGO9000652;FRALLEGO9002651;FRALLEGO9006051;FRALLEGO9009951", + "ref": "FRALLEGO9009952;FRALLEGO9006052;FRALLEGO9004462;FRALLEGO9004461;FRALLEGO9002653;FRALLEGO9002652;FRALLEGO9000651;FRALLEGO9000652;FRALLEGO9002651;FRALLEGO9006051;FRALLEGO9009951", + "charging_station:output": "0 kW", + "network": "Allego Carrefour Reims Cernay", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "11", + "description": "Allego Carrefour Reims Cernay", + "start_date": "2024-05-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06626507000, + 49.26038873000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3551EVCP03;LFR3551EVCP01;LFR3551EVCP02", + "ref:EU:EVSE": "LFR3551EVCP01;LFR3551EVCP02;LFR3551EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "BOUSSY SAINT ANTOINE Auchin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52864500000, + 48.67848300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marseille-11E, 71 Boulevard Saint-Marcel", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PH8MP2KTFOQ", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45958200000, + 43.28884700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNK0VTCHYACN;FREBNPK0VTCHYACN", + "ref": "79216;K0VTCHYACN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/K0VTCHYACN;Le Muy, Parking Le Roucas", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56668100000, + 43.47063200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "541808", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3993886701654302803", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/M5PDKFW3KB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83956100000, + 46.31490200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis Budget - Poitiers Sud", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PIBSPTR", + "charging_station:output": "100 kW;50 kW;22 kW;187.5 kW", + "start_date": "2023-06-09", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30368328781, + 46.55072480377 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "EP9B5SQXIV;63998", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "La Baume-De-Transit, Place Du Tricastin;Réseau eborn/EP9B5SQXIV", + "ref:EU:EVSE": "FREBNPEP9B5SQXIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86617800000, + 44.33772500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP34332F", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "description": "e-Totem - VIAS - Parking des Remparts", + "opening_hours": "24/7", + "ref": "FRETIP34332F", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41741500000, + 43.31201400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*232*5*_*_;FR*SOD*S*OTHR*232*4*_*_;FR*SOD*S*OTHR*232*3*_*_;FR*SOD*S*OTHR*232*1*_*_;FR*SOD*S*OTHR*232*2*_*_;FR*SOD*S*OTHR*232*6*_*_;FR*SOD*S*OTHR*232*7*_*_;FR*SOD*S*OTHR*232*8*_*_", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR23281;FROTHPOTHR23251;FROTHPOTHR23221;FROTHPOTHR23211;FROTHPOTHR23231;FROTHPOTHR23241;FROTHPOTHR23261;FROTHPOTHR23271", + "description": "HYPER U - COMBOURG", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74550600000, + 48.41257300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "ALIZES BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6596035", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "ALIZES BORNE 1", + "ref": "FRCPIE6596035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58755800000, + 48.11331300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5621921658617096702", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/QL0SAGXFVN", + "operator": "Freshmile | FR*FR1", + "ref": "485136" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990400000, + 43.55204100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "781608", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLOUB3BEXJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA1P1146309859556047705", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08590100000, + 43.21942600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6845896938986301639", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "598047", + "description": "Freshmile France/UZEXPAZK2P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58486100000, + 44.82046500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1234572279;FRSWSE1000124914;FRSWSE1234572280", + "capacity": "1;2", + "start_date": "2023-09-07;2023-01-18", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref": "1000124914;1234572279;1234572280", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "description": "ABB 24kW Golf Aix les Bains 2;WB 2x22 Golf Aix les Bains;ABB 24kW Golf Aix les Bains 1", + "owner:ref:FR:SIREN": "903356970", + "socket:type2_combo:output": "24 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90740000000, + 45.66495100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471075", + "description": "Freshmile France/IQG36TGCXO", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5692512755231748067", + "socket:type2_combo:output": "300 kW", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05220300000, + 48.27103100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Apex Location - Toulouse", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPAPEX311001", + "operator:email": "support@driveco.com", + "start_date": "2024-09-18", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40545500000, + 43.55443400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E141761", + "network": "MODULO - VOVES - Rue de Châteaudun", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - VOVES - Rue de Châteaudun", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS28E141761", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62489800000, + 48.27174500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "Lacotte.p@gmail.com", + "ref": "fbe29b94-6def-4919-b3a0-cfdc35fbdd9a", + "amenity": "charging_station", + "operator": "Lacotte Pierre", + "start_date": "2023-06-28", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "Lacmeca", + "charging_station:output": "22 kW", + "description": "Lacmeca", + "owner:ref:FR:SIREN": "829417435", + "opening_hours": "tu-sa 08:30-12:00,tu-sa 14:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07305600000, + 49.10168100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "SDEA 10/GO3LHWGD06", + "ref": "39674", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P8397458651291074082" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89138200000, + 48.20797100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP009E59;Zephyre/LP100B69;Zephyre/LP100B59", + "ref:EU:EVSE": "FRZP1P4882790302463957447;FRZP1P6582441549837776204;FRZP1P5054417626446881980", + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref": "761367;895020;576338", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25653600000, + 48.83451600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2023-02-06", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE537", + "description": "Ecobra_Aniche_Tosso", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23968900000, + 50.33516300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/FWWAKK", + "ref:EU:EVSE": "FRS82PFWWAKK", + "ref": "34006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46289000000, + 44.04980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST1113;FRIZFPFAST1112;FRIZFPFAST1111", + "description": "IZIVIA FAST - MCDONALDS - MEYRARGUES", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*11*1*_*_", + "network": "IZIVIA FAST", + "start_date": "2024-04-02", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53425500000, + 43.64272900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2021-04-14;2024-04-03", + "amenity": "charging_station", + "description": "ECOUFLANT - Promenade Vieille Maine;OuestCharge - Diva Sp - Ecouflant - Vieille Maine", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49P49129B;FRS49E49129002", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52801300000, + 47.52875000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896700", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Mouv'Oise/LLLDJO3K2MCD92", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P7933395045928437198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30594800000, + 49.23465800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3111;FRGLYPLYON3112;FRGLYPLYON3121;FRGLYPLYON3122", + "opening_hours": "24/7", + "description": "LY308 - PLACE BIR-HAKEIM", + "start_date": "2020-07-24", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*31*2*_*_;FR*SOD*S*LYON*31*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85484000000, + 45.75291000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "REMOULINS - Parking Avenue Geoffroy Perret", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30212001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55881600000, + 43.93856100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PNDWAGL", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-14", + "description": "Saint-barthélemy - Rue de la Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04573000000, + 47.92571000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Technique Auto Drancy", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "owner:ref:FR:SIREN": "394925317", + "amenity": "charging_station", + "capacity": "1", + "network": "Bornevo Connect", + "ref:EU:EVSE": "FRLMSE1234647972;FRLMSE1234647973", + "start_date": "2024-07-10", + "operator": "Bornevo", + "charging_station:output": "22 kW", + "operator:email": "contact@bornevo.com", + "ref": "FRLMSE1234647972*1;FRLMSE1234647973*1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45000000000, + 48.93000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/85116295-95a3-4e5c-82af-3520a9a65802", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMW1P5755667528984322735", + "capacity": "4", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref": "951458", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50505000000, + 43.54900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - PARKING REPUBLIQUE - SAINT-CYR-LECOLE", + "opening_hours": "24/7", + "start_date": "2021-09-03", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*164*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE16411;FRSIGPSIGE16412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06951700000, + 48.79969300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "ref": "FRCG0E001373;FRCG0E001360;FRCG0E001376", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Jallu Berthier - Volkswagen Roissy - 95700", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001373;FRCG0E001360;FRCG0E001376", + "network": "Jallu Berthier - Volkswagen Roissy - 95700", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52226600000, + 48.99620200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89877019", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Beaune Sud 2", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-07-27;2023-07-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84078400000, + 47.01205900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "7699cf3f-2de6-5f5a-8edb-31820bd86759;FR*SOD*S*MB40*81*1*_*_", + "ref:EU:EVSE": "FRS40PMB408114;FRS40PMB408113;FRS40PMB408111;Non concerné;FRS40PMB408112", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-05-28", + "capacity": "3;4", + "description": "MOBIVE | Saint Paul les Dax | Parking lac de Christus;SAINT PAUL LES DAX - PARKING LAC DE CHRISTUS", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06440200000, + 43.72776800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "charging_station:output": "25 kW;22 kW", + "description": "MEAUX - Complexe Tauziet", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE77MXBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89780800000, + 48.95438900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2023-11-16", + "amenity": "charging_station", + "ref": "FRALLEGO9990041;FRALLEGO9990032;FRALLEGO9004321;FRALLEGO9003432;FRALLEGO9003431;FRALLEGO9004322;FRALLEGO9990031;FRALLEGO9990042", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9990041;FRALLEGO9990032;FRALLEGO9004321;FRALLEGO9003432;FRALLEGO9003431;FRALLEGO9004322;FRALLEGO9990031;FRALLEGO9990042", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Claye-Souilly", + "network": "Allego Carrefour Claye-Souilly" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66013158000, + 48.94668980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT POL SUR TERNOISE Cassin", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4064EVCP04;LFR4064EVCP03;LFR4064EVCP02;LFR4064EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4064EVCP04;LFR4064EVCP03;LFR4064EVCP02;LFR4064EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34834900000, + 50.38772400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-02-24;2022-03-03", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CLAPIERS - Avenue De L'Europe", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34077001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90059300000, + 43.66110100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/PVQEXFHYMO;Vorey-Sur-Arzon, Place des Moulettes", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPPVQEXFHYMO;FREBNP1581348967338206209", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "346889;PVQEXFHYMO", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90828000000, + 45.18615000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLRG8U8SLXA7KX", + "amenity": "charging_station", + "ref": "1084776", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4642522500341939783", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16044200000, + 45.64904000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP07E783610011;FRP07E78361001", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-07-28;2020-06-17", + "description": "MANTES LA JOLIE - Centre Hospitalier", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67514600000, + 48.99818000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Alba-La-Romaine, Parking le clos - Le clos;Réseau eborn/V8Z6ZGXG2M", + "ref": "V8Z6ZGXG2M;30275", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPV8Z6ZGXG2M", + "start_date": "2020-06-21", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59726100000, + 44.55336500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRELCPBIMHU", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "start_date": "2023-07-06", + "opening_hours": "24/7", + "description": "Boulazac-Isle-Manoire - Hyper U", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77438600000, + 45.18405700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E75115001", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Paris gare Montparnasse Pasteur - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31691000000, + 48.83896000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CGED MONT-DE-MARSAN", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6629175", + "description": "CGED MONT-DE-MARSAN", + "ref:EU:EVSE": "FRCPIE6629175", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44542500000, + 43.91452900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Easy Charge/SSHO5RSRMZ;La Baule, Parking Kercausette", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP6872990883192106571;FRECHPSSHO5RSRMZ", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-12-02", + "network": "Easycharge services;Easy Charge", + "ref": "891993;SSHO5RSRMZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40667200000, + 47.28125700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Boulevard Murat 157", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1618", + "ref": "FR*V75*PPX16*18", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26280000000, + 48.83790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "510563", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5297789206378736859", + "description": "Freshmile France/QGHU4NZ1E1", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99637000000, + 44.16639700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "343123766", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP01001", + "ref": "FRTCBP01001", + "opening_hours": "24/7", + "description": "MERCURE - Honfleur", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-07-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23851279914, + 49.41841125488 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;22 kW;150 kW", + "description": "Freshmile France/NHOGL06J48", + "operator:email": "roaming@freshmile.com", + "ref": "705959", + "capacity": "18", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3012028544565673070", + "socket:type2_combo:output": "50 kW;150 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30580000000, + 45.57522800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "BMW - Saint-Herblain", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPPAUTRICBMW448001", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-05-06", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 07:45-12:30, Mo 13:30-19:00, Tu 07:45-12:30, Tu 13:30-19:00, We 07:45-12:30, We 13:30-19:00, Th 07:45-12:30, Th 13:30-19:00, Fr 07:45-12:30, Fr 13:30-19:00, Sa 09:00-12:00, Sa 14:00-18:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61982800000, + 47.24965900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Landivisiau-Rue la Tour d'Auvergne", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2910500", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07222100000, + 48.50975800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CARCASSONNE - Rue Marceau Perrutel", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11069012", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34810400000, + 43.20668500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "f7440bbe-087b-4b8b-a328-2409f80ab91e", + "network": "Logis Hôtel des Lacs", + "operator": "Zephyre SAS", + "description": "Hôtel des Lacs - 22 kW AC", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZP1PEAC77897;FRZP1PEAC77898", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "411747157", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94807684000, + 48.45557122000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - ROUVROY SUR AUDRY - Grande Rue", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ROUVROY SUR AUDRY - Grande Rue", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS08E57688;FRS08E57687", + "ref:EU:EVSE": "FRS08E57688;FRS08E57687" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49431000000, + 49.78809400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "FDE 80/VSJVFY", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PVSJVFY", + "ref": "79381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35330000000, + 49.74584500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST25423;FRIZFPFAST25422;FRIZFPFAST25421;FRIZFPFAST25412;FRIZFPFAST25411;FRIZFPFAST25413", + "start_date": "2024-07-25", + "description": "IZIVIA FAST - MCDONALDS - MIOS", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*254*2*_*_;FR*SOD*S*FAST*254*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82812500000, + 44.65891100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-21;2024-04-22", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "LA CHAPELLE-DES-MARAIS - Rue De Penlys;OuestCharge - Diva Sp - La Chapelle-Des-Marais - Penlys", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44030A;FRS44E44030001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23972100000, + 47.44653100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77P77101A;FRS77E77101001", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "CHATENAY-SUR-SEINE - Rue Grande;Chatenay-sur-Seine", + "start_date": "2023-05-11;2016-01-19", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61VZ8SH2QWCYV4ZHFE", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09674800000, + 48.41957500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CHÂTEAU GIGOGNAN", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "ref:EU:EVSE": "FRGSPP1000056004", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CHÂTEAU GIGOGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90275922875, + 44.01333011254 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E219919;FRS37E219926", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - BEAUMONT EN VERON - Rue du Parc", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BEAUMONT EN VERON - Rue du Parc", + "ref:EU:EVSE": "FRS37E219919;FRS37E219926" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18334600000, + 47.19524400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCMAMO - Mars-La-Tour - 16 rue du Château", + "charging_station:output": "3.7 kW", + "ref": "d148c590-a2b1-5337-a3f1-c2bc11569237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88027300000, + 49.09737000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10P69385AA", + "operator": "E-TOTEM", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "4", + "opening_hours": "24/7", + "network": "LPA Parking St Georges - N1 - Zone 1", + "ref": "FRG10P69385AA", + "description": "LPA Parking St Georges - N1 - Zone 1", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82652269000, + 45.75851199000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | BOUGUE | Parking derrière bar", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "3b60ee02-1c1d-5fd9-bb9a-8b76402ddfe0", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39094000000, + 43.88926000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*282*1*_*_", + "start_date": "2022-06-01", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - 62 RUE DE LA BARRE - DEUIL-LA-BARRE", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28212;FRSIGPSIGE28211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32278800000, + 48.97266900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GVA COTEAU ABB", + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "amenity": "charging_station", + "ref": "FRCPIE6499065;FRCPIE6506285", + "start_date": "2021-09-07", + "description": "GVA COTEAU ABB", + "capacity": "3", + "ref:EU:EVSE": "FRCPIE6499065;FRCPIE6506285", + "charging_station:output": "24 kW;22 kW", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09311000000, + 46.02001300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P1184595403661521547", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/RWQKAKGXL4", + "ref": "471246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662000000, + 46.81216500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Salignac Eyvigues | Place de la Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "e6866c2c-1df7-5c68-b426-50e4aab9cb92" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32324700000, + 44.97430800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2016-01-13", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSEOPAB22002A", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "description": "Réseau AlterBase - Pas de Jeu - Place de l'Eglise" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04221723000, + 46.97521972000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAGXP01354D", + "owner:ref:FR:SIREN": "240100750", + "description": "Pays de Gex - ePremium - Saint-Genis-Pouilly - Technoparc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2020-01-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02043500000, + 46.23390500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2391EVCP01;LFR2391EVCP02", + "capacity": "4", + "ref:EU:EVSE": "LFR2391EVCP01;LFR2391EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "CAPPELLE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36672100000, + 50.99448900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38545001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-24", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VIF - Parking du 8 mai 1945", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67761400000, + 45.05334700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*135*1*_*_", + "start_date": "2021-11-30", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ13512;FRA16PWIIZ13511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CANNES - AEROPORT MANDELIEU", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95395600000, + 43.55190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/RHM6D0U5CK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8255376143323077034", + "operator": "Freshmile | FR*FR1", + "ref": "541847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43730200000, + 42.60415400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "description": "Centre Commercial Parc des Drapeaux - Rots", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PASCROT", + "charging_station:output": "22 kW", + "start_date": "2024-03-18", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45276480479, + 49.19726803222 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Taninges (Praz De Lys), Route de la Ramaz;Réseau eborn/LNG7XIKQU2", + "ref:EU:EVSE": "FREBNP1904192819466488883;FREBNPLNG7XIKQU2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "LNG7XIKQU2;626381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59182900000, + 46.14420800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "description": "Brens - E.Leclerc Drive Gaillac", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPBRELE", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90848000000, + 43.87729100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2024-05-07;2022-12-14", + "operator": "Bouygues E&S", + "description": "NICE - Parking Mozart", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E06088008;FRP07E060880081" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26195310000, + 43.70076110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6685935", + "network": "ULIET ULIET 3", + "capacity": "2", + "amenity": "charging_station", + "description": "ULIET ULIET 3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6685935", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-04-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34670000000, + 43.65887800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "description": "Muret, rue Col Aspin", + "amenity": "charging_station", + "ref": "LLP8K0JJQ1M3L7", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-11-21", + "ref:EU:EVSE": "FRECHPLLP8K0JJQ1M3L7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31397806000, + 43.43853208000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "description": "ENGIE Vianeo - Chaumousey - Cplx sportif ZI Trusey", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP143021", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30751600000, + 48.17535400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZSBWTUJWGI", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7045853280640371795", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1009230", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.63439800000, + -20.92943600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0704", + "ref": "FR*V75*PPX07*04", + "start_date": "2021-06-17", + "description": "Paris | Avenue de Ségur 55", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30776970000, + 48.84929730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1883273126732846489", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLUL4P8H02GHX9", + "charging_station:output": "22 kW", + "ref": "1052823", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75113400000, + 49.39814600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Sixt - Nanterre", + "amenity": "charging_station", + "start_date": "2021-03-02;2024-04-24", + "opening_hours": "Mo 08:00-13:00, Mo 14:00-18:00, Tu 08:00-13:00, Tu 14:00-18:00, We 08:00-13:00, We 14:00-18:00, Th 08:00-13:00, Th 14:00-18:00, Fr 08:00-13:00, Fr 14:00-18:00, Sa 08:00-13:00, Sa 14:00-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPSIXT920001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19258700000, + 48.88831600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22384001", + "charging_station:output": "22 kW", + "description": "Uzel-Champ de foire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83827100000, + 48.28058600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - BOURGES - Rue Didier Daurat", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS18E178309", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BOURGES - Rue Didier Daurat", + "ref": "FRS18E178309" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36893000000, + 47.06379200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bornes VE WattPark/EelDynamic - Av. Eugène Vernholes, Dourdan", + "ref": "41fbb9fc-a0af-4524-b7f1-d1b7cddb596a", + "description": "Av. Eugène Vernholes, Dourdan", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "249100595", + "start_date": "2023-03-15", + "opening_hours": "24/7", + "operator:email": "gael.kergroach@ccdourdannais.com", + "operator": "COMMUNAUTE DE COMMUNE LE DOURDANNAIS EN HUREPOIX (CCDH)", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01000000000, + 48.53000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "32107", + "ref:EU:EVSE": "FRS10P3174661017425438397", + "description": "SDEA 10/RHQHGUNUJO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71625900000, + 48.51535800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "ALBINE - Avenue de la Ribaute - La Poste", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2023-03-30", + "ref:EU:EVSE": "FRS81E8100500122;FRS81E8100500121;FRS81E8100500111;FRS81E8100500112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53910300000, + 43.46058900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref": "FRIONE124800", + "ref:EU:EVSE": "FRIONE124800", + "description": "IONITY Poitou Charentes", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "start_date": "2021-12-17", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36683800000, + 46.70143600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44145A;FRS44E44145001", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "description": "OuestCharge - Pulse 50 - Rouans - Pazanne;ROUANS - Route De Sainte-Pazanne", + "start_date": "2024-05-29;2021-04-28", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85872500000, + 47.18628600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "start_date": "2023-05-23;2016-11-15", + "network": "Ecocharge77", + "description": "NOISY-SUR-ECOLE - Rue Du Pont De L'Arcade;Noisy-sur-Ecole", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77339A;FRS77E77339001", + "ref": "01F5ZAKH6106W1EHH3HABH1GG9", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49609400000, + 48.37379800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-OMER - Chemin des glacis", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH01E62765005", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25030000000, + 50.74480100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E254853;FRS37E254851", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - TOURS - Rue de Tourcoing", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - TOURS - Rue de Tourcoing", + "ref": "FRS37E254853;FRS37E254851" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68397600000, + 47.42129400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PWFEDWU", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21911", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/WFEDWU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76991000000, + 47.52500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-03-07", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "SOL01 - MAIRIE", + "ref": "FR*SOD*S*LYON*153*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON15312;FRGLYPLYON15311", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84206200000, + 45.63938500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "FR*MEL*P59390*02", + "opening_hours": "24/7", + "description": "SAILLY-LEZ-LANNOY - Rue de la Mairie", + "ref:EU:EVSE": "FRMELP5939002", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22222000000, + 50.64827700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-13", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPSPIC202202", + "capacity": "2", + "description": "SPIC - Parking marin", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93683200000, + 42.63692000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6585715", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT GENNEVILLIERS", + "opening_hours": "24/7", + "network": "SONEPAR CONNECT GENNEVILLIERS", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6585715", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26478100000, + 48.93648500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "capacity": "10", + "ref": "1156821", + "ref:EU:EVSE": "FRLE2P515850946901323907", + "description": "Leclerc/LLVGKUZIK14VYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03943900000, + 43.11067900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Salles | Allee du Champ de Foire", + "ref": "55df6d0f-2982-5656-8a43-6f0fdd9ed3e8", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86702700000, + 44.55058300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "description": "Crosne - Rue du Carnaval", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9e0dd2a2-9f9f-5095-b3c8-9660f01177be" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47023900000, + 48.72212200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "ref:EU:EVSE": "FRSITE00000006;FRALLPCAS007", + "description": "CASINO NIMES", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14;10", + "network": "CASINO NIMES;ALLEGO;GreenToWheel", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "start_date": "2021-11-04;2022-02-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36125800000, + 43.81115300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ST LONGIS - Saint-Jean", + "ref": "LFR4018EVCP02;LFR4018EVCP01;LFR4018EVCP03;LFR4018EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4018EVCP02;LFR4018EVCP01;LFR4018EVCP03;LFR4018EVCP04", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35647300000, + 48.35281500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PCCB60UGD7I", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Entressens, Place Dei Blagiaires", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93901300000, + 43.59300700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2024-07-31", + "ref": "FRS88E241048;FRS88E241050", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS88E241048;FRS88E241050", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ELOYES - Rue Charles de Gaulle", + "network": "MODULO - ELOYES - Rue Charles de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61262900000, + 48.09313800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ26922;FRA16PWIIZ26921;FRA16PWIIZ26911;FRA16PWIIZ26912", + "description": "SAINT-CEZAIRE-SUR-SIAGNE - PARKING BATIPOLI", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*269*1*_*_;FR*SOD*S*WIIZ*269*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2023-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79530900000, + 43.65150900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PM3WP4TS73", + "operator:email": "roaming@freshmile.com", + "ref": "578948", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7365090172913946112", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46104900000, + 48.74956700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mercure - Lyon Chaponnay", + "start_date": "2023-04-02", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMRCCHA", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92050719455, + 45.64940289638 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/YALRDZFAG8;Saint-Quentin-Sur-Isère, Route du Sud", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "32752;YALRDZFAG8", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPYALRDZFAG8", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53861300000, + 45.27952300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/AF938A9A-86B1-48B3-A6DC-914FC694E834", + "capacity": "5", + "ref:EU:EVSE": "FREVZP1312235112605434840", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "charging_station:output": "12 kW;180 kW;63 kW", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "ref": "790128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34341400000, + 45.46972600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "1;2", + "charging_station:output": "3.68 kW;22 kW", + "ref": "FR*SOD*S*OTHR*590*4*_*_;FR*SOD*S*OTHR*590*2*_*_;FR*SOD*S*OTHR*590*1*_*_;FR*SOD*S*OTHR*590*3*_*_", + "start_date": "2023-03-01", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "ES B2B", + "description": "ES/ PARKING PUBLIC VLS HAGUENAU", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR59011;FROTHPOTHR59021;FROTHPOTHR59031;FROTHPOTHR59032;FROTHPOTHR59041;FROTHPOTHR59042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77318780000, + 48.79524320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Montrond-Les-Bains, Gare;Réseau eborn/Y8JMPRH4LS", + "capacity": "4", + "ref:EU:EVSE": "FREBNPY8JMPRH4LS;FREBNP3279483572305922623", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "Y8JMPRH4LS;749463" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24854100000, + 45.64460400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Digne-Les-Bains, Place Joseph Fontaine;Réseau eborn/AHJLY7UVLM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "AHJLY7UVLM;49351", + "ref:EU:EVSE": "FREBNPAHJLY7UVLM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23938000000, + 44.09472800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVIAP121034", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Campanile Bordeaux Mérignac", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67954600000, + 44.83600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6942786721983228567", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/TM6PKDLX7M", + "operator": "Freshmile | FR*FR1", + "ref": "441042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02784900000, + 46.25389100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1318", + "description": "Paris | boulevard Vincent Auriol 143", + "opening_hours": "24/7", + "ref": "FR*V75*PPX13*18", + "start_date": "2021-10-26", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36241010000, + 48.83282370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "25 kW;150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "capacity": "4;5", + "description": "Freshmile France/SHRWKOFQRZ;Freshmile France/ZPQVODGTYL", + "ref": "782373;742965", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "100 kW;25 kW;22 kW;150 kW", + "ref:EU:EVSE": "FRFR1P4242664512310942782;FRFR1P7990951175701056056" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.61832600000, + -20.91409900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "description": "Mar Estang (Camping Siblu) - Canet-en-Roussillon", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00, Su 08:00-19:00", + "start_date": "2022-06-02", + "ref:EU:EVSE": "FRSSDPSIBLU661401", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03145400000, + 42.67506800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-09-23", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900111", + "ref:EU:EVSE": "FRS27PGISORSMAIRIE", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77751700000, + 49.27868200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Callac-La gare", + "ref:EU:EVSE": "FRS22E22025001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41865000000, + 48.40707700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78615001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-03", + "network": "Seymaborne", + "description": "THIVERVAL-GRIGNON - École" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94170470000, + 48.84361440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE144", + "description": "Bowling_Acropolis", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-17", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05478900000, + 50.55255300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLJJN77XHC", + "network": "WAAT", + "amenity": "charging_station", + "ref": "972662", + "capacity": "4", + "ref:EU:EVSE": "FRWATP3275807857313229359", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00669200000, + 43.55003500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "network": "IONITY GMBH", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE448900", + "ref:EU:EVSE": "FRIONE448900", + "description": "IONITY Chateauroux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70479000000, + 46.85065200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - TOURS SUR MARNE - Av. de Champagne", + "ref": "FRS51E43909;FRS51E43908", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E43909;FRS51E43908", + "description": "MODULO - TOURS SUR MARNE - Av. de Champagne", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11789400000, + 49.04960500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65188001", + "start_date": "2021-12-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GAVARNIE - OT", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01092000000, + 42.73524000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Relais Maucomble", + "amenity": "charging_station", + "start_date": "2024-02-20", + "charging_station:output": "54 kW", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080385", + "owner:ref:FR:SIREN": "531681740", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "ref": "FRHPCPNF080385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33870000000, + 49.67830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "description": "MONTPEYROUX - Parking de la Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34173001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50486692886, + 43.69523112901 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Mobilité électrique 56/HRLQKX", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "21910", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PHRLQKX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72319000000, + 47.84440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "ref": "591047", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7208789720264192264", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile/A6P6NQCN8U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79534200000, + 46.26800700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "UZES - Zone Du Portalet", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30334002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42023800000, + 44.01074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Liévin", + "opening_hours": "24/7", + "start_date": "2020-08-18;2021-11-08", + "ref:EU:EVSE": "FRSSDPLEMPEREURHYUNDAI628001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78791100000, + 50.42700200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "INTERMARCHÉ VAURÉAL", + "description": "INTERMARCHÉ VAURÉAL", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRC2P006705;FRC2P006704;FRC2P006703;FRC2P006702;FRC2P006701;FRC2P006706;FRC2P006707", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "start_date": "2023-06-10", + "operator:email": "contact@car2plug.fr", + "ref:EU:EVSE": "FRC2P006705;FRC2P006704;FRC2P006703;FRC2P006702;FRC2P006701;FRC2P006706;FRC2P006707", + "owner:ref:FR:SIREN": "449170455" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02091890000, + 49.03352460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-03", + "charging_station:output": "12 kW", + "capacity": "2", + "ref:EU:EVSE": "FRLUMEHOTELRESTAURANTLALAUZETANE11", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "description": "HOTEL RESTAURANT LA LAUZETANNE", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "b64fdaec-31f7-11ee-be56-0242ac120002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43673500000, + 44.42576650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "706b2bb3-c6b5-5684-a631-4a86086f9c59", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "MOBIVE | Cherveix-Cubas | Place Goumondie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12589000000, + 45.29469000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE33TADA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-01-19", + "socket:type2_combo:output": "24 kW", + "description": "AMBARES ET LAGRAVE Place du 19 mars 1962", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49644300000, + 44.92926500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/64242f91ceade60b491cd913", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMP1811230379224514517", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "ref": "767316", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94919900000, + 47.70405800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/IKQI33EAGO", + "ref:EU:EVSE": "FRLE2P8500324072075021298", + "capacity": "42", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446720" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76113600000, + 48.53579800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PTDKR6HZAQA", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Saint-Cannat, Avenue Jean Moulin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29918500000, + 43.62306500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "488856", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEY/GIM7NUC4LN", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P7944377216951254484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22435500000, + 47.73200600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-06-23", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "R3 - Norauto Bessoncourt", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363728" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92103700000, + 47.64321100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/NV41MYEPGH", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "441021", + "ref:EU:EVSE": "FRFR1P613622778299254896", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15166500000, + 47.01451900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PSYUCVG", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Super U - Capavenir Vosges", + "start_date": "2023-08-02", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41029320000, + 48.26201090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1152795;LLTHE8SLG13A73", + "ref:EU:EVSE": "FREBNPLLTHE8SLG13A73;FREBNP666018406753980381", + "description": "Saint-Pierre-De-Chartreuse, Plan de ville;Réseau eborn/LLTHE8SLG13A73", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81454300000, + 45.34278600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/02888A83-4071-4536-BC64-9BA224C3A548", + "ref:EU:EVSE": "FREVZP8365837175301682416", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "903603", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39896200000, + 43.53198700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2024-01-29", + "ref": "FR*SOD*S*OTHR*794*9*_*_;FR*SOD*S*OTHR*794*8*_*_;FR*SOD*S*OTHR*794*3*_*_;FR*SOD*S*OTHR*794*2*_*_;FR*SOD*S*OTHR*794*1*_*_;FR*SOD*S*OTHR*794*10*_*_;FR*SOD*S*OTHR*794*4*_*_;FR*SOD*S*OTHR*794*5*_*_;FR*SOD*S*OTHR*794*6*_*_;FR*SOD*S*OTHR*794*7*_*_", + "network": "NH HOTEL", + "description": "NH HOTEL - MARSEILLE", + "ref:EU:EVSE": "FROTHPOTHR79491;FROTHPOTHR79481;FROTHPOTHR79431;FROTHPOTHR79421;FROTHPOTHR79411;FROTHPOTHR794101;FROTHPOTHR79441;FROTHPOTHR79451;FROTHPOTHR79461;FROTHPOTHR79471", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36901090000, + 43.26863260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPLLIIIO2L613NJN", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-06", + "network": "eborn", + "description": "Nyons, Promenade de la Digue Ouest", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref": "LLIIIO2L613NJN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13972955000, + 44.35821959000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-20", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNP8461141113604247453;FREBNPODTKP8CH6Y", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "477819;ODTKP8CH6Y", + "socket:type2_combo:output": "24 kW", + "description": "Saint Pourçain sur Sioule, Cours des Anciens combattant d'Afrique;Réseau eborn/ODTKP8CH6Y" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28860000000, + 46.30993000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "UBAUD", + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "start_date": "2022-05-11", + "capacity": "2", + "amenity": "charging_station", + "description": "UBAUD - LES PENNES-MIRABEAU", + "ref": "FR*SOD*S*OTHR*397*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR39711;FROTHPOTHR39712", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36738600000, + 43.41827000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/XHLANB0NZX", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6526931279285348390", + "operator": "Freshmile | FR*FR1", + "ref": "757005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21945800000, + 47.93281600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Laval, France", + "ref:EU:EVSE": "FRTSLP30246", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75845064000, + 48.09307904000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8127683128524723753", + "description": "Freshmile France/WUW4LZ9TPI", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "472290", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75065800000, + 48.60082400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP01794", + "start_date": "2023-06-07", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "TotalEnergies - Bar Restaurant l'Arena", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*TCB*P01794" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37014000000, + 43.76530900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XIUCAERVR9", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Fr,We,Tu,Th,Mo 08:00-12:00,Th,We,Mo,Fr,Tu 14:00-19:00,Sa 14:00-18:00,Sa 09:00-12:00", + "charging_station:output": "22 kW", + "ref": "742974", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P196918138621622109" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24915200000, + 43.34761200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Ploubezre-Place de la poste", + "ref:EU:EVSE": "FRS22E22211001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44761500000, + 48.70516200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC56571", + "start_date": "2021-03-23", + "amenity": "charging_station", + "capacity": "1", + "description": "Mazda - Château-Thierry - 22kW AC ", + "ref": "56571", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 08:30-18:00", + "owner:ref:FR:SIREN": "717280473", + "network": "Mazda CHÂTEAU THIERRY", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40880700000, + 49.02582400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "capacity": "6;1;8", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Verbaere_Dechy_Tosso_2;Verbaere_Dechy_Tosso_1;Verbaere_Dechy_DC30_2;Verbaere_Dechy_DC30_1;Verbaere_Dechy_AC_parking_av", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE493;FRROSE492;FRROSE480;FRROSE363;FRROSE479", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10733000000, + 50.34269600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MORAINVILLIERS - Place De L'Eglise", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78431001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93497200000, + 48.92780300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20723550000, + 49.97194110000 + ], + [ + 1.20715500000, + 49.97191350000 + ], + [ + 1.20701220000, + 49.97189170000 + ], + [ + 1.20692300000, + 49.97187380000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hastingues Sud", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Hastingues Sud", + "start_date": "2023-07-06", + "capacity": "20", + "opening_hours": "24/7", + "charging_station:output": "11 kW;50 kW;350 kW;43 kW;22 kW", + "ref:EU:EVSE": "FRIOYE454573;FRIOYE454572;FRIOYE454571;FRIOYE454555;FRIOYE454554;FRIOYE454553;FRIOYE454552;FRIOYE454551;FRIOYE454512;FRIOYE454510;FRIOYE454509;FRIOYE454501;FRIOYE454502;FRIOYE454511;FRIOYE454513;FRIOYE454514;FRIOYE454515;FRIOYE454516;FRIOYE454556;FRIOYE454574", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE454573;FRIOYE454572;FRIOYE454571;FRIOYE454555;FRIOYE454554;FRIOYE454553;FRIOYE454552;FRIOYE454551;FRIOYE454512;FRIOYE454510;FRIOYE454509;FRIOYE454501;FRIOYE454502;FRIOYE454511;FRIOYE454513;FRIOYE454514;FRIOYE454515;FRIOYE454516;FRIOYE454556;FRIOYE454574" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15037900000, + 43.52873900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS53P53130H", + "start_date": "2022-09-21", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "network": "TEM53", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Laval - Quartier ferrie", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78577560000, + 48.07746430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66081001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "FONTRABIOUSE - Rue Des Soulanets", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09785300000, + 42.63436400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20634740000, + 49.97146730000 + ], + [ + 1.20612980000, + 49.97146790000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE011802;FRIENE011801", + "owner:ref:FR:SIREN": "898270251", + "network": "Saint-Benin-d'Azy", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE011802;FRIENE011801", + "description": "Saint-Benin-d'Azy", + "start_date": "2023-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40382614000, + 47.00424937000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FOUGERES - 88 rue de la foret ", + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35115003B1", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "start_date": "2022-01-01", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19709300000, + 48.35715700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-GACO-001", + "ref:EU:EVSE": "FRS61P61451A", + "description": "STE GAUBURGE STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43121137000, + 48.71459500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8357837043984264481", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "socket:type2_combo:output": "100 kW", + "description": "Freshmile France/KEWBFH2LZO", + "ref": "756972" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72828900000, + 46.09881600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PQRKBCC", + "ref": "QRKBCC", + "network": "Freshmile", + "description": "Grenade", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "start_date": "2016-12-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29456000000, + 3.76820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-17;2023-10-18", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "NANTERRE - Allée de Gascogne", + "ref:EU:EVSE": "FRSIPE92050010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21499200000, + 48.89965000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRCG0E000526", + "opening_hours": "24/7", + "ref": "FRCG0E000526", + "network": "Hôtel Berny - 92160", + "description": "Hôtel Berny - 92160", + "operator:email": "info@chargeguru.com", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30809500000, + 48.76250400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE18311;FRM06PNICE18312", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*183*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING MONASTERE", + "start_date": "2022-05-24", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27789507692, + 43.72082139970 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Casseneuil | Chemin de Pascalet", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "ref": "dad26f94-8a15-5bf2-97b0-762f6e3fb51e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62146700000, + 44.44234500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE32211;FRSIGPSIGE32212", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*322*1*_*_", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-01-09", + "description": "SIGEIF - 121 AVENUE DE LA RESISTANCE - LE RAINCY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51605200000, + 48.89846500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - Super U - Pouzauges", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "ref:EU:EVSE": "FRBMPS200932;FRBMPS200933;FRBMPS200934", + "ref": "200934;200933;200932", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84611500000, + 46.77455000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "NOGENT SUR OISE Gambetta", + "ref:EU:EVSE": "LFR3244EVCP01", + "ref": "LFR3244EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47050500000, + 49.27035500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "dad0fae6-ccd2-57f6-8884-888381cfae3e", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Campagne | Parking de L'Eglise", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63943400000, + 43.86587500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "ref": "ae39b598-bc1a-5135-a8f7-72ebcd8cb264", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Grigny - Route de Corbeil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38605600000, + 48.65558200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P78140*VLZ*P1CARD1E", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "AVENUE DE PICARDIE - VELIZY", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-08-05", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP78140VLZP1CARD1E", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17243100000, + 48.78484900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MOURENX Moureu", + "ref": "LFR2835EVCP01", + "ref:EU:EVSE": "LFR2835EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61739000000, + 43.38050200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-07-13", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMBDB", + "charging_station:output": "100 kW;22 kW;150 kW", + "description": "Intermarché - Bain-de-Bretagne", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68628944316, + 47.84422832696 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLNX93SY41OD1Q;SOLLIES-PONT, Place de la Libération", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "LLNX93SY41OD1Q;972014", + "ref:EU:EVSE": "FREBNP3838751581244931212;FREBNPLLNX93SY41OD1Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04590900000, + 43.19071300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP58194A", + "description": "e-Totem - Espace Bernadette Soubirous Nevers", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP58194A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15143265728, + 46.99174995438 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Grenoble Presqu'île - PARK GRENOBLE ALPES METROPOLE", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E381850031;FRP01E38185003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70064430000, + 45.20491440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Bonneval Louveterie", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-09-28", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT288001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37400100000, + 48.17647800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPXC9VDLJNF4", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "94445;XC9VDLJNF4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Livet-Et-Gavet, Rue P. Saras;Réseau eborn/XC9VDLJNF4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90200000000, + 45.09060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR51711;FROTHPOTHR51721", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*517*2*_*_;FR*SOD*S*OTHR*517*1*_*_", + "network": "ES B2B", + "start_date": "2022-10-21", + "operator:email": "sav@izivia.com", + "description": "ES/ JARDINS GOTTRI REMY - RUE DES HAIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67686700000, + 48.79281800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6720865", + "ref": "FRCPIE6720865", + "network": "SCI FONTENAY BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SCI FONTENAY BORNE 1", + "start_date": "2023-05-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29829100000, + 48.79380400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/RR19SMVEEU", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "492036", + "ref:EU:EVSE": "FRFR1P8887721208438096839", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35513800000, + 48.75298000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRUBIE10087808;FRUBIE10094490", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "description": "Mayville - Gonfreville-l'Orcher", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-01-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21092500000, + 49.50291700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1009119", + "description": "Freshmile France/CNKANW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3864776848817128287", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83116000000, + 48.20990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTLSE31555059", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "TOULOUSE - 70-74 rue de soupetard", + "start_date": "2022-08-05", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47655000000, + 43.61227000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XKK4XUPHDA", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P33406877412001728", + "opening_hours": "24/7", + "ref": "370187", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46766000000, + 48.42280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P5628147244224470144", + "ref": "1157442", + "capacity": "3", + "opening_hours": "24/7", + "description": "MobiSDEC/LLY7015WV19UIU", + "network": "MobiSDEC", + "charging_station:output": "43 kW;50 kW;100 kW", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07762200000, + 49.36526400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "ENTRAYGUES SUR TRUYERE - Parking Du Boutigou", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12094001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56613000000, + 44.64573000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "1042599", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATLMUCOULYP", + "ref:EU:EVSE": "FRWA3P3059335948677562354", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56310500000, + 50.41186500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "description": "OuestCharge - ePremium - Noyant - Ecoles", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49228B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11736700000, + 47.51016300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-12-09", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS72E72129001", + "description": "FATINES - Rue Principale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34720080000, + 48.04565360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20861360000, + 49.97196280000 + ], + [ + 1.20895410000, + 49.97200210000 + ], + [ + 1.20914340000, + 49.97199130000 + ], + [ + 1.20927010000, + 49.97193920000 + ], + [ + 1.20951750000, + 49.97177920000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WATTEN - Rue Saint Antoine", + "start_date": "2020-10-07", + "ref:EU:EVSE": "FRH14E59647001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21296700000, + 50.83336700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-22;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "SAINTE-PAZANNE - Rue De L'Auditoire;OuestCharge - Diva Sp - Sainte-Pazanne - Auditoire", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44186A;FRS44E44186001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80867400000, + 47.10325600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63291A", + "amenity": "charging_station", + "description": "SIEG 63/FR*S63*P63291*A;SIEG63 - ePremium - Puy Guillaume - Jaures", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "start_date": "2022-12-15", + "ref": "518390", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47442000000, + 45.95994400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRH02E59365002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "description": "LOUVROIL - route de l'Espérance", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93595500000, + 50.25539400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BALARUC LES BAINS - Place Du Mail", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34023001", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2021-11-03;2021-08-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67782222222, + 43.43950830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94028009", + "capacity": "0", + "network": "SIPPEREC", + "description": "CRETEIL - 77 Avenue Pierre Brossolette", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46543410000, + 48.78958540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "start_date": "2023-11-20;2023-11-16", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*306*1*_*_;FR*SOD*S*NICE*306*2*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE30622;FRM06PNICE30621;FRM06PNICE30612;FRM06PNICE30611", + "operator:email": "sav@izivia.com", + "description": "ISOLA - PARKING ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05371212282, + 44.18606517674 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Angoisse | Rouffiac | Base Loisirs", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "20e41a4e-f643-5ab6-80f9-c4f57f5ca7d3", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16716700000, + 45.41254400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE42711;FRSIGPSIGE42712", + "description": "SIGEIF - 49 BOULEVARD CARNOT - CARRIERES-SUR-SEINE", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*427*1*_*_", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17901300000, + 48.90941800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Allego Carrefour Pau Lescar", + "start_date": "2022-05-20", + "description": "Allego Carrefour Pau Lescar", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9990402;FRALLEGO9990401;FRALLEGO9004121;FRALLEGO9004122;FRALLEGO9990391;FRALLEGO9990392", + "ref:EU:EVSE": "FRALLEGO9990402;FRALLEGO9990401;FRALLEGO9004121;FRALLEGO9004122;FRALLEGO9990391;FRALLEGO9990392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42725100000, + 43.31691000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3432EVCP03;LFR3432EVCP02;LFR3432EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "description": "CHATILLON EN MICHAILLE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3432EVCP03;LFR3432EVCP02;LFR3432EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81236100000, + 46.12902700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Mazeres lezons | Rue du Général de Gaulle", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "2b2adbf6-0154-577c-9572-18a3fbb9c99f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35582700000, + 43.27940400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "description": "VISAN - Rue de la Peine", + "ref": "657e6f86-9728-5043-9b28-73bd7e5b5907" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94844900000, + 44.31329300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22521040000, + 49.98500020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA05E78209001", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "EMANCE - Rue de Charlemagne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72945650000, + 48.58860720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3980EVCP02;LFR3980EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3980EVCP02;LFR3980EVCP01", + "description": "NANTES - Verne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52786300000, + 47.24280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMTLV", + "description": "Intermarché - Terrasson-Lavilledieu", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-08-05", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29216850000, + 45.13064390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPIMKLPMKKZY", + "ref": "IMKLPMKKZY", + "description": "Gaillard, Rue de Moellesulaz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20972810000, + 46.19138940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "917546251", + "operator": "SPIE CITYNETWORKS", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "description": "e-Vadea - Aire de la Riviera Française", + "amenity": "charging_station", + "operator:email": "assistance-commerciale@e-vadea.fr", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "start_date": "2023-03-09", + "charging_station:output": "22 kW;50 kW;150 kW", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42000540000, + 43.75358920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCORVYR", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Cora - Val d'Yerres", + "start_date": "2023-02-28;2022-05-14", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53516020000, + 48.68330270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT763701", + "description": "Carrefour Market - Neuville-Les-Dieppe Libération", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11290700000, + 49.92527500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42218AC", + "description": "SEMOB Ecole des Mines", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218AC", + "start_date": "2019-03-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40946500000, + 45.42265400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CNPE PALUEL - PARKING NORD", + "start_date": "2021-11-23;2021-11-24", + "network": "EDF-EV100", + "ref:EU:EVSE": "FROTHPIZIG322461;FROTHPIZIG322451;FROTHPIZIG322431;FROTHPIZIG322411;FROTHPIZIG322391;FROTHPIZIG322381;FROTHPIZIG322371;FROTHPIZIG322401;FROTHPIZIG322421;FROTHPIZIG322441;FROTHPIZIG322471;FROTHPIZIG322481", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;22 kW;7.36 kW", + "ref": "FR*SOD*S*IZIG*322*43*_*_;FR*SOD*S*IZIG*322*40*_*_;FR*SOD*S*IZIG*322*39*_*_;FR*SOD*S*IZIG*322*37*_*_;FR*SOD*S*IZIG*322*38*_*_;FR*SOD*S*IZIG*322*41*_*_;FR*SOD*S*IZIG*322*42*_*_;FR*SOD*S*IZIG*322*44*_*_;FR*SOD*S*IZIG*322*45*_*_;FR*SOD*S*IZIG*322*46*_*_;FR*SOD*S*IZIG*322*47*_*_;FR*SOD*S*IZIG*322*48*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62670000000, + 49.85715300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING HOTEL BORNE 1", + "network": "PARKING HOTEL BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6845865", + "ref": "FRCPIE6845865", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35209700000, + 48.63923100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8707334059053191282", + "ref": "626030", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/D1TG2DDEOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45532000000, + 48.97678000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP122010", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL LENS NOYELLES-GODAULT", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2024-01-19", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98684600000, + 50.41217800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529856", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ZPA4ATRQ2R", + "ref:EU:EVSE": "FRFR1P6995221754282539383" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05746600000, + 48.91584600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "description": "Tesla Supercharger Montauban, France", + "socket:type2_combo:output": "250 kW", + "ref:EU:EVSE": "FRTSLP20437", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37836700000, + 44.03640800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLUWDGBVA2MBKR", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6724270297099784330", + "ref": "1155285", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79418400000, + 43.91749200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1084845", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLV6JDJCJ2F86M", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRS14P8983246293414105889" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10002200000, + 49.28515400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P1319528933803974284", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "456831", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/GDUIKKNQ0H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02912800000, + 49.30646900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LTYOCBNXT", + "amenity": "charging_station", + "capacity": "3", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA9P7002698704405025947", + "operator:email": "exploitation@waat.fr", + "ref": "1128009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19083400000, + 48.76640400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P501294", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CHERBOURG EN COTENTIN - Notre Dame du Vœu", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-04-27", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62939400000, + 49.63639500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LISLE SUR TARN - Pôle Multimodal", + "start_date": "2023-05-25", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8114500213;FRS81E8114500211;FRS81E8114500212", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80638200000, + 43.85453000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "start_date": "2021-06-24;2023-06-29", + "owner:ref:FR:SIREN": "531680623;531680620;531680617;531680618;531680619;531680621;531680622;531680624", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS CANAVER", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FRHPCPNF059499", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67200000000, + 43.46680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LANGOGNE - Quai Du Langouyrou", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS48E48080001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85779600000, + 44.72775500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "description": "Elven - Rue Robert de la Noé", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PLYFYJOBRX4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "start_date": "2023-02-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58995624313, + 47.73119831934 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BOULOGNE-SUR-MER - Boulevard Sainte Beuve", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62160007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59523400000, + 50.73181200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Saint-Yvi - Place de la Mairie", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2927200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.93767900000, + 47.96695300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "48295", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/BJXJWS", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PBJXJWS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78850000000, + 47.67050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052102;FRLMSE12346052101;FRLMSE12346052091;FRLMSE12346052092", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-11-09", + "description": "NEUVILLE DE POITOU-1-2;NEUVILLE DE POITOU-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref": "B123", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24605100000, + 46.68788900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93031A", + "description": "Métropolis/FR*MGP*P93031*A", + "opening_hours": "24/7", + "ref": "446951", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30625600000, + 48.96022100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-02", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "BRUNOY - Rue Dupont Chaumont", + "ref:EU:EVSE": "FRSIPE91114010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49677591570, + 48.69023474612 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "operator:email": "operations.france@atlante.energy", + "ref": "1030692", + "opening_hours": "24/7", + "network": "Atlante", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRATLP2212845994236928073", + "description": "Atlante/FRATLFR00322", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26871100000, + 45.51732400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "owner:ref:FR:SIREN": "668502966", + "start_date": "2022-11-18", + "ref:EU:EVSE": "FRLMSE10000882711;FRLMSE10000882721", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "description": "Würth Rouen", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11567500000, + 49.39352000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM59E59670002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "DON - Quai de la Deule" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91398000000, + 50.55074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-06-03", + "description": "MONTREVERD (SAINT-ANDRE-TREIZE-VOIES) - Rue De La Mairie", + "ref:EU:EVSE": "FRS85E85197001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41197000000, + 46.93412000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "L'HAY LES ROSES", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2023-12-18", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLPEVCARSLHLRO", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34575000000, + 48.78393000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | ENSUES-LA-REDONNE - AVENUE DE LA COTE BLEUE", + "ref:EU:EVSE": "FRIZMPMAMP5211;FRIZMPMAMP5212", + "ref": "FR*SOD*S*MAMP*52*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "network": "IZIVIA", + "start_date": "2023-08-02", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20000700000, + 43.35579000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-04;2024-06-03", + "ref:EU:EVSE": "FRPD1PMATMRG", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "description": "Match - Morhange", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64509179600, + 48.92448747350 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-17", + "capacity": "2", + "description": "Réseau eborn/YQUVUC;Domérat, Victor Hugo", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPYQUVUC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "231550;YQUVUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53289000000, + 46.36190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "charging_station:output": "120 kW;22 kW", + "ref": "674570", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "Norauto - Bornes publiques/7FCB08D0-06B2-4027-8F92-A7B082320D46", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP4281615065378904974", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78967400000, + 46.25136400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "start_date": "2023-09-04", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Ibis - Beziers", + "ref:EU:EVSE": "FRPD1PIBSBZR", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27844497147, + 43.33441747108 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "La Côte-Saint-Andre, Place Hector Berlioz;Réseau eborn/LCJTWZ", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "39131;LCJTWZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLCJTWZ", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26067000000, + 45.39180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP33063A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP33063A", + "start_date": "2024-04-02", + "description": "e-Totem - Kyriad Bordeaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58680399202, + 44.78526366196 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*206*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-06-30", + "description": "COMMUNE DE TRUCHTERSHEIM", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR20611;FROTHPOTHR20612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60844500000, + 48.66361600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-11-28", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*32*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS3211;FRCPSPCAPS3212", + "operator:email": "sav@izivia.com", + "description": "SAINT-AUBIN - ETAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14257100000, + 48.71466400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/FJRKKXQ4LW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3607168592005485428", + "ref": "368827", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57680300000, + 44.86540600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "capacity": "1", + "ref": "951344", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRVISP2941252676409754752", + "description": "ENRGETICA/5d1c381e-cde0-4a9b-969a-357e3a4b2160", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05250700000, + 43.91354000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/ZO7EL7PRD6", + "ref:EU:EVSE": "FRFR1P1494993417844738362", + "operator:email": "roaming@freshmile.com", + "ref": "482064", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17320800000, + 48.26253100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSWSE1000081567", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "ref": "1000081567", + "owner:ref:FR:SIREN": "903356970", + "description": "ABB T54 VW Margencel", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41742000000, + 46.34458400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "735108", + "description": "Freshmile France/APP6MRYD8W", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P406934994824552918" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23688400000, + 46.64751500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPDLMC201671", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Dlmc - Sarrola Carcopino", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.80992400000, + 41.95927500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "200080869", + "operator:email": "lionel.chauvet@energie28.fr", + "opening_hours": "24/7", + "network": "FR*S28", + "start_date": "2022-06-02", + "ref:EU:EVSE": "FRS28E137367;FRS28E137368", + "description": "GARNAY", + "ref": "FRS28E137367;FRS28E137368" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34041800000, + 48.70359400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "romain.box@notaires.fr", + "owner:ref:FR:SIREN": "512803495", + "start_date": "2022-07-12", + "charging_station:output": "7 kW", + "network": "BOX", + "operator": "box", + "amenity": "charging_station", + "capacity": "1", + "ref": "414fdb34-8e7a-4add-b930-3f3c3ba8364c", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "description": "BOX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49000000000, + 47.93000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "39677", + "ref:EU:EVSE": "FRS10P5844828086869231568", + "description": "SDEA 10/NWLLC5Y9PI", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52974000000, + 48.39269500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWATLN3XLUDLR", + "ref:EU:EVSE": "FRWATP273713572843232443", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "ref": "706241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10063700000, + 44.14518900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "description": "Kiloutou_Charleville-M", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE453", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-11-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68038900000, + 49.76910400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VENES - Place Du Poids Public", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-12-08", + "ref:EU:EVSE": "FRS81E81311001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19245900000, + 43.72785100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "692051113", + "description": "INTERPARKING | PARKING MENTON HOTEL DE VILLE", + "start_date": "2021-12-15", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMHV", + "ref": "FRIPKPMHV", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50398170000, + 43.77598340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "OuestCharge - Diva Sp - Cholet - Hotel;CHOLET - Rue de l'Hôtel de Ville", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49099001;FRS49P49099A", + "charging_station:output": "22 kW", + "start_date": "2021-04-27;2024-04-05", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87928000000, + 47.05833400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref": "120614", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PJJNZPM", + "description": "Mouv'Oise/JJNZPM", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59498000000, + 49.21820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-15;2021-11-03", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DIEVAL - Rue du 8 Mai 1945", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "charging_station:output": "50 kW;36 kW", + "ref:EU:EVSE": "FRH13E62269001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45055100000, + 50.43580200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30189005", + "charging_station:output": "22 kW", + "description": "NIMES - Avenue Jean Prouvé", + "start_date": "2022-02-04", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35209500000, + 43.81422800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PZFRNAW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/ZFRNAW", + "capacity": "4", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "charging_station:output": "22 kW;36 kW", + "ref": "39080" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30513000000, + 47.52950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-06-01", + "ref:EU:EVSE": "FRLMSE12346396771;FRLMSE12346396781", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B106", + "description": "VILLIERS-1-2;VILLIERS-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17570600000, + 46.67592600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP94080G", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "348977", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Métropolis/FR*MGP*P94080*G", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43712000000, + 48.84624200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE13661;FRSIGPSIGE13641;FRSIGPSIGE13631;FRSIGPSIGE13621;FRSIGPSIGE13611;FRSIGPSIGE13651", + "start_date": "2021-06-08", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "description": "SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*136*1*_*_;FR*SOD*S*SIGE*136*2*_*_;FR*SOD*S*SIGE*136*3*_*_;FR*SOD*S*SIGE*136*4*_*_;FR*SOD*S*SIGE*136*5*_*_;FR*SOD*S*SIGE*136*6*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30664300000, + 48.93382400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRBE1E78545002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT CYR l'ECOLE - 6 Boulevard Georges Guynemer", + "start_date": "2022-10-22", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06546190000, + 48.80897970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89768249", + "operator": "Last Mile Solutions", + "start_date": "2023-06-23", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Kyriad Torcy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65753000000, + 48.83873300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Chateauneuf Sur Charente | Place du Vieux Marché", + "ref": "ebc1fc8c-3907-50f9-94d1-9e54a86d464f", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05774600000, + 45.60046100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2023-12-18", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "COMBS LA VILLE - Hector Berlioz", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE77CVBA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56633500000, + 48.65397100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "capacity": "11;10", + "charging_station:output": "300 kW;0 kW;150 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2022-08-19", + "ref:EU:EVSE": "FRALLEGO9005551;FRALLEGO9005491;FRALLEGO9002503;FRALLEGO9002141;FRALLPEVCARSVNISX;FRALLEGO9002131;FRALLEGO9002132;FRALLEGO9002142;FRALLEGO9002501;FRALLEGO9002502;FRALLEGO9005492;FRALLEGO9005552", + "socket:type2_combo:output": "300 kW;0 kW;150 kW", + "network": "Carrefour Energies;Allego Carrefour Vénissieux", + "description": "Allego Carrefour Vénissieux;VENISSIEUX", + "ref": "FRALLEGO9005552;FRALLEGO9005551;FRALLEGO9005492;FRALLEGO9005491;FRALLEGO9002142;FRALLEGO9002141;FRALLEGO9002132;FRALLEGO9002131;FRALLEGO9002501;FRALLEGO9002502;FRALLEGO9002503" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87724000000, + 45.71575300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3772EVCP01;LFR3772EVCP03;LFR3772EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "HOENHEIM Brumath", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3772EVCP01;LFR3772EVCP03;LFR3772EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73149900000, + 48.61938200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31555011", + "description": "TOULOUSE - Place Des Pradettes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38773100000, + 43.58138300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPYXQDXS;FREBNP5106733234650637852", + "charging_station:output": "22 kW", + "description": "Montalieu-Vercieu, Rue du Besset;Réseau eborn/YXQDXS", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref": "YXQDXS;346994" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40487400000, + 45.81437000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "472209", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3180803513677131503", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JE9YSXAOIJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75144000000, + 48.61340500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2020-06-19;2020-06-17", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E75113001", + "description": "PARIS - Bords de Seine Freyssinet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37330500000, + 48.83537300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/saintgerfos;Saint-Germain-des-Fossés, Place Libération", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPSAINTGERFOS", + "ref": "231607;saintgerfos" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43331000000, + 46.20180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-03-07", + "description": "Garges-lès-Gonesse - KFC", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPGLGKF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40269000000, + 48.96096500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Valenciennes - EFFIA", + "ref:EU:EVSE": "FRP01E59606001", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51699140000, + 50.36268630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "3C CLIM ST OUEN", + "ref": "FRCPIE6612625", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6612625", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "network": "3C CLIM ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14317700000, + 49.05061500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "IC3VKFYDUZ;492204", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP1589463363709149017;FREBNPIC3VKFYDUZ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "description": "Réseau eborn/IC3VKFYDUZ;Manosque, Parking du Riou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78727000000, + 43.83218000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570536", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P4492068157720686913", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1181934" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58241200000, + 47.86668000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6700115662060477595", + "network": "Freshmile France", + "description": "Freshmile France/IZ7TY3PKMS", + "opening_hours": "24/7", + "ref": "454056", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84120000000, + 46.36060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RIESTER MEAUX", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "description": "RIESTER MEAUX", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "charging_station:output": "50 kW;43 kW;22 kW", + "ref:EU:EVSE": "FRTCBP00702", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "805089158", + "ref": "FRTCBP00702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87930851314, + 48.94679007930 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/M8NQCQQXMD", + "operator:email": "roaming@freshmile.com", + "ref": "578915", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P857001418551658672", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75524800000, + 42.55176000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 09:00-12:00, Mo 14:00-17:00, Tu 09:00-12:00, Tu 14:00-17:00, We 09:00-12:00, We 14:00-17:00, Th 09:00-12:00, Th 14:00-17:00, Fr 09:00-12:00, Fr 14:00-17:00, Sa 09:00-12:00, Sa 14:00-17:00", + "ref:EU:EVSE": "FRSSDPCAVALLARIKIAHONDA063001", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "description": "Kia Honda - Nice Riquier", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "start_date": "2020-05-26", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29168800000, + 43.70638700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Goulien-Le Bourg", + "ref:EU:EVSE": "FRS29E2906300", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.59130000000, + 48.05554600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "AXAT - Place Joachim Estrade", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-12-25", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11021001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23472222222, + 42.80416670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "fa395c72-8992-4236-8495-195ab33a3135", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Hôtel Mercure - Annemasse - 22 kW AC", + "owner:ref:FR:SIREN": "819279852", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1PEAC39611;FRZP1PEAC39610;FRZP1PEAC39609;FRZP1PEAC39612", + "network": "Hôtel Mercure Annemasse Porte de Genève", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22166880000, + 46.18423200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS08E46433;FRS08E46434", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - RETHEL - Pkg. Pl. Victor Hugo", + "ref:EU:EVSE": "FRS08E46433;FRS08E46434", + "start_date": "2020-12-11", + "network": "MODULO - RETHEL - Pkg. Pl. Victor Hugo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36964900000, + 49.50489400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80P9155081543180970090", + "description": "FDE 80/LLW65J6VW2VTXV", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "1080132", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71849300000, + 50.09739600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - VALENCIENNES HARPIGNIES", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-04-30", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST2113;FRIZFPFAST2111;FRIZFPFAST2112", + "ref": "FR*SOD*S*FAST*21*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52318630385, + 50.36501757864 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-28;2024-04-17;2024-04-18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44002B;FRS44E44002002", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "AIGREFEUILLE-SUR-MAINE - Avenue De La Vendée;OuestCharge - Diva Sp - Aigrefeuille-Sur-Maine - Vendee", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39751200000, + 47.07496400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77043001;FRS77P77043A", + "ref": "01F5ZAKH61BFRHTER5H6HW5WZH", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-07-05;2016-11-07", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Boitron;BOITRON - Rue Du Lavoir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25989800000, + 48.89591600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "CREDIT AGRICOLE SAINT ANDRE DE CUBZAC ", + "network": "CREDIT AGRICOLE SAINT ANDRE DE CUBZAC ", + "operator": "GREENSPOT", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "start_date": "2024-06-03", + "ref:EU:EVSE": "FRGSPP1000085947", + "owner:ref:FR:SIREN": "434651246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44296295794, + 44.99473495415 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-13", + "ref:EU:EVSE": "FRS37E219783;FRS37E219780", + "ref": "FRS37E219783;FRS37E219780", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - RIGNY USSE - Chemin du Pont Félicie", + "description": "MODULO - RIGNY USSE - Chemin du Pont Félicie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29919900000, + 47.25316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PAAYULB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "25061", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/AAYULB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49143000000, + 48.10380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRG10P62498A", + "description": "Ville de Lens - Parking Léo Lagrange", + "opening_hours": "24/7", + "network": "Ville de Lens - Parking Léo Lagrange", + "charging_station:output": "22 kW", + "start_date": "2023-11-21", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRG10P62498A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84119427478, + 50.43308769116 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref": "90be8dc4-916d-5929-876c-1cece451d7cf", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "description": "MOBIVE | Blanzac | Étang de Rouffignac", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08242000000, + 46.13255000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*252*1*_*_", + "description": "SIGEIF - 89 AVENUE ALBERT PETIT - BAGNEUX", + "ref:EU:EVSE": "FRSIGPSIGE25212;FRSIGPSIGE25211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-05-18", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31377100000, + 48.79547200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCN1PDJCNGB", + "charging_station:output": "44 kW", + "capacity": "3", + "description": "Move In Pure/DJCNGB", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref": "23995", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89539000000, + 45.69100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref": "559874", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3918102894907026859", + "description": "Leclerc/W9UNHTTQOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669700000, + 44.20242700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Barbezieux-Saint Hilaire | Avenue Nelson Mandela;BARBEZIEUX-SAINT HILAIRE - AVENUE NELSON MANDELA", + "owner:ref:FR:SIREN": "251600060", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "opening_hours": "24/7", + "start_date": "2021-08-24", + "ref": "e42b8f51-d753-54c2-9dfc-a1191ba7e5c4;FR*SOD*S*MB16*73*1*_*_", + "ref:EU:EVSE": "FRS16PMB167311;Non concerné;FRS16PMB167312;FRS16PMB167313;FRS16PMB167314", + "charging_station:output": "50 kW;43 kW", + "capacity": "3;4", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15305200000, + 45.47003500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB06050A", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - L'Absie - Mairie", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57690500000, + 46.63317700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ORY - Parking P5", + "start_date": "2023-03-20", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "ref:EU:EVSE": "FRADPE91479014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36314700000, + 48.73157400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "LEUCATE Roseaux", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3731EVCP02;LFR3731EVCP01;LFR3731EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3731EVCP02;LFR3731EVCP01;LFR3731EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03423800000, + 42.85137600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM38E38382002", + "start_date": "2022-11-29", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "SAINT-EGREVE - Parking Karben (CITIZ)", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66999900000, + 45.24273240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "GRASSE PARKING AVENUE CARNOT", + "start_date": "2021-06-04", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ10711;FRA16PWIIZ10712", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*107*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92216200000, + 43.65569300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P421098520407078151", + "ref": "1026840", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/IGWTYIK1QR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16476700000, + 48.60908900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRPD1PACTAGL", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Action - Angoulême", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-08-24", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18347119976, + 45.68989218776 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJB7O75BBKV", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "30098;JB7O75BBKV", + "description": "Réseau eborn/JB7O75BBKV;Bernin, Place des Droits de l'Homme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86790000000, + 45.27023600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Valence - Hôtel Campanile Sud", + "socket:type2_combo:output": "50 kW;200 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPVALHCS", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW", + "start_date": "2024-03-28", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90979600000, + 44.91261100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E95127003", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-02-16", + "description": "Parking Cergy-Pontoise 3 Gares - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01016120000, + 49.04912810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CONNECT SAINT NAZAIRE", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6666445", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6666445", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-15", + "network": "SONEPAR CONNECT SAINT NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17630700000, + 47.30887100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "description": "Easy Charge/RZ1BLGWGRM", + "capacity": "3", + "opening_hours": "24/7", + "ref": "756930", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRECHP3581258837548511682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59322500000, + 46.73493200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue Frédéric Loliée 5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-09-29", + "ref": "FR*V75*PPX20*13", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX2013", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40620000000, + 48.84950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2338776568733723086", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "971795", + "description": "Freshmile France/LLM68T2T02D977", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96842300000, + 48.08200500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0502", + "description": "Paris | Rue Pierre Brossolette 1", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX05*02", + "start_date": "2021-06-04", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34726200000, + 48.84196000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892338", + "ref:EU:EVSE": "FRFR1P6105510713011806683", + "description": "Freshmile France/LLJ40WJN92QMZD", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05115800000, + 43.99882900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-26", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAURINFORD842001", + "amenity": "charging_station", + "capacity": "4", + "description": "Ford - Carpentras", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04904200000, + 44.03764500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "description": "Saint Gilles Pligeaux-Parking rue des Bruyères", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22294001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09392900000, + 48.38144300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E117415", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - VALLENAY - Pl. Bascoulard", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E117415", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VALLENAY - Pl. Bascoulard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37077109000, + 46.80111690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-29", + "description": "Toyota - Besançon - 22KW AC ", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZTLE22AC64859;FRZTLE22AC64860;FRZTLE22AC64861;FRZTLE22AC64862", + "operator:email": "advenir@zeborne.com", + "ref": "64862;64861;64860;64859", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "network": "Toyota - Besançon", + "owner:ref:FR:SIREN": "393417522", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99411560000, + 47.24295980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P7608744603988556168", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEA 10/JX3WYHQ0GZ", + "ref": "741141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07610000000, + 48.30268200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ALBAN - Place Du Foirail", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81003001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46415500000, + 43.88747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST8723;FRIZFPFAST8722;FRIZFPFAST8721;FRIZFPFAST8713;FRIZFPFAST8712;FRIZFPFAST8711", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - SOYONS", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*87*1*_*_;FR*SOD*S*FAST*87*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86150360000, + 44.91924230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-22;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "LE PELLERIN - Allée George Sand;OuestCharge - Diva Sp - Le Pellerin - Sand", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44120A;FRS44E44120001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75495800000, + 47.19861600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS77E77288002", + "description": "MELUN - Rosa Bonheur", + "start_date": "2023-09-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65349230000, + 48.52633590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62288001", + "description": "ECQUES - Rue du Brule", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29050500000, + 50.67017700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - SAINT MARTIN LE BEAU - Rue de l'Amboise", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - SAINT MARTIN LE BEAU - Rue de l'Amboise", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221423;FRS37E221422", + "ref:EU:EVSE": "FRS37E221423;FRS37E221422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90973600000, + 47.35594900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E66333;FRS55E66334", + "description": "MODULO - BURE - Rond point andra", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - BURE - Rond point andra", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66333;FRS55E66334" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35451500000, + 48.48833800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2022-03-08", + "ref:EU:EVSE": "FRGLYPLYON13021;FRGLYPLYON13012;FRGLYPLYON13011;FRGLYPLYON13022", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "description": "OUL03 - GARE DOULLINS", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*130*1*_*_;FR*SOD*S*LYON*130*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81466200000, + 45.71716400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5915204", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "TRESSIN - Rue du Stade", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59152*04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19322500000, + 50.61681000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jaguar Land Rover - JFC - Lisieux", + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "start_date": "2018-07-04", + "opening_hours": "Mo 08:00-12:00, Mo 13:30-17:30, Tu 08:00-12:00, Tu 13:30-17:30, We 08:00-12:00, We 13:30-17:30, Th 08:00-12:00, Th 13:30-17:30, Fr 08:00-12:00, Fr 13:30-17:30, Sa 08:00-12:00, Sa 13:30-17:30", + "ref:EU:EVSE": "FRSSDPJLRJFC141001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21867400000, + 49.16859800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6571325;FRCPIE6571335;FRCPIE6571365", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6571325;FRCPIE6571335;FRCPIE6571365", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 4", + "start_date": "2022-10-12", + "description": "SUPER U GREZ N STATION 4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70572400000, + 47.61350900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P6252504490130722972", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "699080", + "charging_station:output": "22 kW", + "description": "Leclerc/NVOX3RW4SD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037100000, + -20.89762100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c23cfc38-347b-51f7-b779-046d6634a4fb", + "operator": "197__SDEEG33", + "description": "MOBIVE | Puynormand | Rd N°123 -Angle Vc du Bourg - Ld Bourg Sud Ouest" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00149300000, + 44.98149900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "2ffc81f2-7777-5f3b-a134-00e9f185894e", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Ris-Orangis - Route de Grigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40663700000, + 48.65028400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-01-18", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO0001361", + "network": "Allego Nissan Strasbourg", + "description": "Allego Nissan Strasbourg", + "ref:EU:EVSE": "FRALLEGO0001361" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72659765000, + 48.62443198000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3070EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3070EVCP01", + "description": "ROUBAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18599500000, + 50.67319900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*90*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE9011;FRM06PNICE9012", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "start_date": "2020-08-27", + "description": "VALDEBLORE - PARKING COLMIANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22187300000, + 44.07095500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*22*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ2211;FRA16PWIIZ2212", + "start_date": "2018-04-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "GRASSE PARKING PLACE STE HELENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95866700000, + 43.64222000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "435168", + "amenity": "charging_station", + "description": "Freshmile France/V29FRQK8HC", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8036827069867730278", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24836000000, + 46.18666000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-05-22", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRPD1PMBRISH", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Mr. Bricolage - Issenheim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24149740000, + 47.90349000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "743010;QLPWEHFWDF", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Lotissement Landy, Quartier de l'Avenir;Réseau eborn/QLPWEHFWDF", + "ref:EU:EVSE": "FREBNPQLPWEHFWDF;FREBNP1567140308874888679", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68659400000, + 45.36144700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREVZP2631398216585453079", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref": "1072413", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "EVzen/5A7D5489-37E9-4894-A414-A3FB8144A6B6", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58884000000, + 48.75364000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2020-06-19;2023-09-20", + "ref:EU:EVSE": "FRP07E593500012;FRP07E593500011;FRP07E59350001", + "description": "LILLE - Grand Place", + "capacity": "22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06355500000, + 50.63717300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "96047", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPIWGHRPVBV0", + "description": "Réseau eborn/IWGHRPVBV0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31678500000, + 45.42282400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sanary-Sur-Mer, 121 Avenue General Rose;Réseau eborn/MR9BSJWNMJ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPMR9BSJWNMJ;FREBNMR9BSJWNMJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "MR9BSJWNMJ;75356", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80101500000, + 43.12004800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Hôtel Campanile Wasquehal", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP121020", + "capacity": "1", + "start_date": "2023-06-06", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11560500000, + 50.68216200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "94229", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KEQHCV", + "ref:EU:EVSE": "FRFR1PKEQHCV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69559000000, + 43.64180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "ref": "FR*V75*PPX12*10", + "description": "Paris | Avenue Émile Laurent 1", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "ref:EU:EVSE": "FRV75PPX1210", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40963100000, + 48.84071000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/T7NT4TEAJS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "682250", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5964444082975955422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04512800000, + 49.11464700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-03-09", + "capacity": "8", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSBMW680001", + "socket:type2_combo:output": "50 kW;100 kW", + "description": "BMW - HESS - Colmar", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "50 kW;100 kW;22.08 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36323600000, + 48.06463200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900028", + "network": "SIEGE27", + "start_date": "2016-05-26", + "ref:EU:EVSE": "FRS27PCONTEVILLEPRESBYTERE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39727600000, + 49.41799300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SICECO/FR*S21*P21532*A", + "amenity": "charging_station", + "ref": "211328", + "network": "SICECO", + "ref:EU:EVSE": "FRS21P21532A", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14218100000, + 47.23785400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78551010", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-GERMAIN-EN-LAYE - Rue Schnapper", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-08-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09224000000, + 48.88773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-18", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "904074713", + "capacity": "4", + "operator:email": "contact@qowatt.com", + "ref": "FR*QWT*S10357*A*1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRQWTS10357A", + "charging_station:output": "22 kW", + "description": "e-City 22kW - Ibis Budget Troyes Est", + "network": "QoWatt", + "operator": "QoWatt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14000000000, + 48.30000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1066971", + "amenity": "charging_station", + "description": "WAAT/FRWATLSFUY0VDQ", + "capacity": "4", + "charging_station:output": "6.9 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP8280748252737817277", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21608000000, + 48.78074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-09-18;2020-09-16", + "network": "Agen;IONITY GMBH", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Agen;IONITY Agen", + "capacity": "4", + "ref": "FRIOYE432704;FRIONE432700;FRIOYE432702;FRIOYE432703;FRIOYE432705", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "ref:EU:EVSE": "FRIOYE432704;FRIONE432700;FRIOYE432702;FRIOYE432703;FRIOYE432705", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966000000, + 44.17130600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS51E40934;FRS51E40935", + "network": "MODULO - POGNY - RD 54", + "capacity": "2", + "description": "MODULO - POGNY - RD 54", + "amenity": "charging_station", + "start_date": "2021-04-14", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E40934;FRS51E40935" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48473900000, + 48.86190600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77316A", + "capacity": "2", + "amenity": "charging_station", + "ref": "7707a42b-b2f8-499d-adbf-6fe31d8538c7", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "description": "Morêt-Loing-et-Orvanne - Montrichard", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81314300000, + 48.37297500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531680888", + "start_date": "2022-11-18", + "description": "RELAIS DE FALAISES DE WIDEHEM EST", + "ref:EU:EVSE": "FRHPCPNF080347", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "ref": "FRHPCPNF080347", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64570000000, + 50.57590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34127001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LANSARGUES - Avenue des Cévennes", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07152500000, + 43.65125000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PXNARGA", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/XNARGA", + "opening_hours": "24/7", + "ref": "18169", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49312000000, + 47.79260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8071625661766798419", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/JIRIL0QKRW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "472212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74018900000, + 48.57834900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "description": "Métropolis/FR*MGP*P92051*J;Metropolis - ePremium - Neuilly-sur-Seine - Rouvray", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-12-29", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92051J", + "ref": "599070", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28134600000, + 48.88823300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-18:30, Tu 08:00-18:30, We 08:00-18:30, Th 08:00-18:30, Fr 08:00-18:30, Sa 09:00-17:00", + "start_date": "2020-07-09", + "amenity": "charging_station", + "capacity": "4", + "description": "Fiat - HESS - Haguenau", + "ref:EU:EVSE": "FRSSDPHESSFIAT675001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78281400000, + 48.81635300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-21", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC2P003602;FRC2P003601", + "ref": "FRC2P003602;FRC2P003601", + "description": "CAMPING PORTE DES VOSGES", + "owner:ref:FR:SIREN": "797742442", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "network": "CAMPING PORTE DES VOSGES", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84454800000, + 48.19896500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-09-16;2020-09-22", + "network": "GARENNE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLGCPGACO311;FRLGCPGACO321;FRLGCPGACO331;FRLGCPGACO341;FRLGCPGACO351;FRLGCPGACO361", + "ref": "FR*SOD*S*GACO*3*5*_*_;FR*SOD*S*GACO*3*2*_*_;FR*SOD*S*GACO*3*1*_*_;FR*SOD*S*GACO*3*3*_*_;FR*SOD*S*GACO*3*4*_*_;FR*SOD*S*GACO*3*6*_*_", + "owner:ref:FR:SIREN": "219200359", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25716900000, + 48.91348600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Croignon | Rue de la Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW", + "ref": "3ec712f8-f471-5efb-9fa9-b76e0362c29d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34501600000, + 44.81952000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE17BACA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "description": "CITROEN- BOURCEFRANC", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14461000000, + 45.84523000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "ref": "674789", + "ref:EU:EVSE": "FRBHMP6751301600692409504", + "description": "BornEco/634695f735e82090cd09ffba" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01825600000, + 49.39113100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/VSZIZOKFFF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P5376556789358260482", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "782586" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84147300000, + 50.19839800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Martigues, Quai Général Leclerc", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PSGHPRL5APS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05781200000, + 43.40283000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDEY/ZAGK3DXQNE", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P779460294910367566", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402704" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26102400000, + 48.15970300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LA COLLE-SUR-LOUP - PARKING STRAPUTICARI", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2018-06-22", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ7212;FRA16PWIIZ7211", + "ref": "FR*SOD*S*WIIZ*72*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10683751319, + 43.68607351595 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "Freshmile France/IOA9IKAACX;Freshmile France/GBTVFCOXRK", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P690760080308674411;FRFR1P4355762482125591282", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "ref": "694235;694214" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58715800000, + 50.52031100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-01-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSSKLGD", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "description": "K9 Station Service - La Garde", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03883470000, + 43.14491640000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/SPQDVHK1OH;Chatonnay, Mairie", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "SPQDVHK1OH;892824", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPSPQDVHK1OH;FREBNP7772201196167954140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20601900000, + 45.48547400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FREVZP7704358996879250241", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "ref": "1114062", + "description": "ENGIE MAMP - Bornes publiques/5B1AA5B5-37F5-488B-86DA-9BFB96D6E50D", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38302600000, + 43.27085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "start_date": "2023-10-06", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*688*2*_*_;FR*SOD*S*OTHR*688*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR68811;FROTHPOTHR68821", + "description": "SUPER U - LA TRANCHE-SUR-MER", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43185417567, + 46.35150979445 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPEVXVDF", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref": "EVXVDF;106958", + "start_date": "2020-06-11", + "description": "Réseau eborn/EVXVDF;Sisteron, Parking de La Gare", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94565000000, + 44.19130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85712;OMMZ7I0YRZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPOMMZ7I0YRZ", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/OMMZ7I0YRZ;Crets-En-Belledonne, St Pierre d'Allevard", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04852500000, + 45.37614100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "description": "COMMUNE DE WISSEMBOURG - PARKING PLACE DU TRIBUNAL", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2020-01-27", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR3712;FROTHPOTHR3711", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*37*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.94574600000, + 49.03446600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4612233567551731785", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/Y39L9HN88E", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "749406", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500100000, + 45.43827600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "description": "Tesla Supercharger Nantes, France - Atlantis", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP30184", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62904000000, + 47.22599800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7232290798063048906", + "opening_hours": "24/7", + "ref": "782403", + "description": "Freshmile France/XG3TDDGOMM", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010700000, + 48.75808000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-20", + "network": "DRIVECO", + "description": "Opel - HESS - Charleville", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPHESSOPEL080001", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69749200000, + 49.75242200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2613442095005394891", + "capacity": "4", + "network": "Freshmile France", + "ref": "694421", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YDXANV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321000000, + 44.81180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22180001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Plelan le Petit-Rue des Rouairies (parking mairie)", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21830200000, + 48.43308600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-18:00", + "network": "ALESSANDRIA AUTOS - MAZDA GRENOBLE", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "400447710", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "49590;49521", + "description": "Mazda - Grenoble (Fontaine) Gauche - 22kW ;Mazda - Grenoble (Fontaine) Droite- 22kW", + "start_date": "2020-12-03;2020-12-02", + "operator": "ZEBORNE", + "ref:EU:EVSE": "FRZMAE22AC49521;FRZMAE22AC49590" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67959800000, + 45.19179600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "description": "Kiloutou_Parcay", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE309", + "start_date": "2022-09-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71758400000, + 47.44669400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY01E78299001", + "charging_station:output": "22 kW", + "description": "HARDRICOURT - Rue Denis Papin", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90055920827, + 49.00517758783 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;350 kW;43 kW;200 kW", + "description": "Champfleury", + "start_date": "2022-02-17", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "23", + "opening_hours": "24/7", + "ref": "FRIOYE438573;FRIOYE438572;FRIOYE438571;FRIOYE438553;FRIOYE438515;FRIOYE438514;FRIOYE438513;FRIOYE438511;FRIOYE438510;FRIOYE438509;FRIOYE438505;FRIOYE438504;FRIOYE438502;FRIOYE438501;FRIOYE438503;FRIOYE438506;FRIOYE438507;FRIOYE438508;FRIOYE438512;FRIOYE438516;FRIOYE438551;FRIOYE438552;FRIOYE438574", + "ref:EU:EVSE": "FRIOYE438574;FRIOYE438572;FRIOYE438516;FRIOYE438514;FRIOYE438513;FRIOYE438512;FRIOYE438510;FRIOYE438509;FRIOYE438505;FRIOYE438504;FRIOYE438503;FRIOYE438502;FRIOYE438501;FRIOYE438506;FRIOYE438507;FRIOYE438508;FRIOYE438511;FRIOYE438515;FRIOYE438551;FRIOYE438552;FRIOYE438553;FRIOYE438571;FRIOYE438573", + "network": "Champfleury", + "socket:type2_combo:output": "200 kW;50 kW;350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01232320000, + 49.20418840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Territoire de Energie TE53;TEM53", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-05-17;2021-06-07", + "amenity": "charging_station", + "capacity": "1", + "description": "OuestCharge - Quick Charger Evtronic - Craon - Murier;CRAON - Place Du Mûrier", + "ref:EU:EVSE": "FRS53E53084001;FRS53P53084A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW;3 kW;3.7 kW", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94799200000, + 47.84849300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66016003", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BANYULS-SUR-MER - Biodiversarium", + "start_date": "2024-02-19", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13580900000, + 42.48014500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE008701;FRIENE008702", + "owner:ref:FR:SIREN": "898270251", + "network": "Mailly-le-Château", + "amenity": "charging_station", + "description": "Mailly-le-Château", + "start_date": "2023-05-26", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE008701;FRIENE008702", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64276092000, + 47.60338410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BETTON - 2 avenue d'armorique ", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS35P35024001B1", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63657100000, + 48.18113300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61293C", + "operator:email": "Exploitation@tevgo.fr", + "description": "MORTAGNE AU PERCHE - Cour Blanche", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-MORTA-003", + "start_date": "2017-12-06", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54399360000, + 48.51981210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7577406524689854604", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLNYCX9741UFHR", + "ref": "971933", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97257300000, + 43.61123400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PLEFAUGAFETE", + "start_date": "2017-11-16", + "ref": "49036;Lefaugafete", + "description": "Le Fauga, Salle des Fêtes;Roulez Électrique En Haute-Garonne/Lefaugafete", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29477000000, + 43.39800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-05-31", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE92026008", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "COURBEVOIE - Rue Eugène Caron", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24683300000, + 48.89812400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000297", + "amenity": "charging_station", + "capacity": "1", + "network": "Hôtel des Châteaux", + "start_date": "2022-06-06", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Hôtel des Châteaux", + "ref:EU:EVSE": "FRCG0E000297", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47107100000, + 47.26794400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-ANDRE-DE-LA-ROCHE - PARKING PISCINE", + "ref:EU:EVSE": "FRM06PNICE15311;FRM06PNICE15312", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*153*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2021-12-06", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28780900000, + 43.74340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Labouheyre | Parking de la Gare", + "operator:email": "cpo@citeos.com", + "ref": "06ca5453-46aa-5113-9846-3afc0402449e", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92024400000, + 44.21160100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE29912;FRSIGPSIGE29911", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*299*1*_*_", + "charging_station:output": "22 kW", + "description": "SIGEIF - 6 RUE DU DR GOLDSTEIN - GROSLAY", + "start_date": "2022-09-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35196800000, + 48.98630300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "226387;226388;226386", + "ref:EU:EVSE": "FRBMPS226387;FRBMPS226388;FRBMPS226386", + "description": "Bump - Super U - Saint Martin de Crau", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79669280000, + 43.64010910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3317EVCP02;LFR3317EVCP01;LFR3317EVCP03", + "socket:type2_combo:output": "120 kW", + "description": "CARVIN Oignies", + "ref:EU:EVSE": "LFR3317EVCP02;LFR3317EVCP01;LFR3317EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96630100000, + 50.47939900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Arnac Pompadour | Place du Chateau", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "ref": "e5c209c2-f6b0-52d3-8478-82ca11a75dc5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38141500000, + 45.39704400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "description": "Arpajon - Rue Édouard Robert", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "a03fa8bc-c45a-54ed-aaba-ab91a39a6f1a", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24650200000, + 48.59063200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "BOULEVARD RAYMOND POINCARE - GARCHES", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "start_date": "2020-09-02", + "ref:EU:EVSE": "FR55CP92380GARRAYPOINCARE", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17036200000, + 48.83852000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR0927EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR0927EVCP01", + "description": "TOULOUSE Minimes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43406600000, + 43.62355500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRPL2PMERDC", + "socket:type2_combo:output": "50 kW", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2023-12-19", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "20", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Mérignac - Le Plein Décathlon", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67974000000, + 44.83056900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Eygliers, Parking de la Gare;Réseau eborn/E1RHXEXDBN", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "capacity": "2;3", + "ref:EU:EVSE": "FREBNPE1RHXEXDBN", + "ref": "E1RHXEXDBN;75029" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61590000000, + 44.67470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-07-25", + "description": "e-Totem - Le Set", + "ref:EU:EVSE": "FRETIP44014A", + "ref": "FRETIP44014A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50661080767, + 47.12472685219 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking gare de Valence TGV P1 Alpes - EFFIA", + "ref:EU:EVSE": "FRP01E26004002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97977940000, + 44.98884870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market - Verton", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-05-10", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT621801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64684100000, + 50.40967700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "YHCKATCVZD;346988", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FREBNPYHCKATCVZD;FREBNP1684681868059946079", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/YHCKATCVZD;Ruffieux, Ruffieux, ZA de Saumont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83655000000, + 45.84689800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "63 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR49051;FROTHPOTHR49021;FROTHPOTHR49011;FROTHPOTHR49031;FROTHPOTHR49041;FROTHPOTHR49052;FROTHPOTHR49053", + "start_date": "2023-01-23;2022-09-13", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*490*4*_*_;FR*SOD*S*OTHR*490*3*_*_;FR*SOD*S*OTHR*490*2*_*_;FR*SOD*S*OTHR*490*1*_*_;FR*SOD*S*OTHR*490*5*_*_", + "description": "GAZZELLA ATLANTIQUE - AVRILLE", + "charging_station:output": "3.68 kW;7.36 kW;63 kW", + "operator:email": "sav@izivia.com", + "capacity": "1;3", + "network": "GAZZELLA ATLANTIQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61115200000, + 47.51725700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "578957", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P6636663190362636044", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/QHFGR3GEVG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33075400000, + 49.37033600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "start_date": "2023-12-08", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10034398;FRUBIE10038683", + "charging_station:output": "22 kW", + "description": "32 RUE MAURICE TACONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07886100000, + 49.50408300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TKAQSF", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "294326", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PTKAQSF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60769000000, + 50.43050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOULOUSE - Impasse Pierre Curie", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTLSE31555028", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44124000000, + 43.62533000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AJGZJR", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Freshmile France", + "ref": "159379", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PAJGZJR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866000000, + 48.60050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/ZUGT4ZAI25", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "462039", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P3528159173001240383", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23764900000, + 49.41869400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12033001", + "network": "Reveo", + "description": "BOZOULS - Allée Denys Puech", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72289000000, + 44.47167000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-10-26", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GOUPILLIÈRES - Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78278001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76067000000, + 48.87632000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-20;2024-04-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS49E49177001;FRS49P49177A", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "LIRE - Rue Haut Fief;OuestCharge - Diva Sp - Lire - Haut Fief" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16766500000, + 47.34115400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "description": "SIED70/Faverneydruais", + "ref": "39034", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PFAVERNEYDRUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10379000000, + 47.76520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "ref:EU:EVSE": "FRH14E59189001", + "amenity": "charging_station", + "capacity": "1", + "description": "EECKE - Rue de Godewaersvelde", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "start_date": "2023-01-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59609100000, + 50.77891200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35360001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "VITRE - 1b rue du fougeray ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21825700000, + 48.10866500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG63 - ePremium - La Tour d'Auvergne - Bagnols", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63192A", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "start_date": "2022-12-22", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68754930000, + 45.53306760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PYCQGXG", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/YCQGXG", + "operator": "Freshmile | FR*FR1", + "ref": "294392", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24660000000, + 49.33180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "ref": "347036", + "charging_station:output": "22 kW", + "description": "SDEG32/KVTXUX", + "network": "SDEG32", + "ref:EU:EVSE": "FRS32P7881131214966728237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46049900000, + 43.75790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-12;2021-05-07", + "ref:EU:EVSE": "FRSIPE94017003", + "charging_station:output": "7 kW", + "description": "CHAMPIGNY-SUR-MARNE - Avenue Danielle Casanova", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51249200000, + 48.82498000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-10-26", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE27111;FRM06PNICE27112", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UTELLE - PARKING CHAUDAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*271*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19792309498, + 43.87106502574 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint Cyprien | Avenue de Sarlat Parking Comcom", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "28a05cd4-3700-5402-8eed-c620300277aa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04247700000, + 44.86511200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE40312;FRSIGPSIGE40311", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-06", + "ref": "FR*SOD*S*SIGE*403*1*_*_", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SIGEIF - AVENUE DES TILLEULS - MONTIGNY-LES-CORMEILLES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19770000000, + 49.00700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76540006", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROUEN - Place Joffre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08684700000, + 49.43561100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2435EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "JOUY ARCHES", + "ref": "LFR2435EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08951500000, + 49.07143300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "MOBIVE | Bort-Les-Orgues | Centre-Bourg", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "feb02de2-fbbc-50c0-81ff-ea0c1d5622a3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49987900000, + 45.39944100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "82629409-30f9-56f2-892e-885d9dcac2c2", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BEAUMES-DE-VENISE - Place du Marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02856100000, + 44.12071200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "CAMBRAI - Place Maurice Schumann", + "ref:EU:EVSE": "FR594E59122001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24150000000, + 50.17606500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3116EVCP01", + "description": "LA CHATRE", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3116EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00060000000, + 46.58190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2023-07-26", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMPRM", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "description": "Intermarché - Ploërmel", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40203694153, + 47.92394769769 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "AKHOI6DR2E;39122", + "description": "Saillans, Montée Soubeyranne;Réseau eborn/AKHOI6DR2E", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPAKHOI6DR2E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20000700000, + 44.69726400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-Totem - CARREFOUR CONTACT ALBI", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP81004A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP81004A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18346100000, + 43.93124200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cora - Clermont Ferrand", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORLPD", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19729630000, + 45.77914530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRDRVPCRFMKT774301", + "start_date": "2024-03-21", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Champagne-Sur-Seine", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80030000000, + 48.39537000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "description": "Novotel Poitiers Futuroscope", + "start_date": "2022-10-15", + "ref:EU:EVSE": "FRERAP", + "network": "eranovum", + "owner:ref:FR:SIREN": "909764680", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "contact-france@eranovum.energy", + "operator": "ERANOVUM E-MOBILITY FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33000000000, + 46.57000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - POITIERS", + "start_date": "2024-04-09", + "ref:EU:EVSE": "FROTHPAUCH19411;FROTHPAUCH19412", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "ref": "FR*SOD*S*AUCH*194*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29793220000, + 46.55071070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "capacity": "8", + "ref:EU:EVSE": "FRCPIE6818085;FRCPIE6818055;FRCPIE6818065;FRCPIE6818075", + "amenity": "charging_station", + "ref": "FRCPIE6818085;FRCPIE6818055;FRCPIE6818065;FRCPIE6818075", + "opening_hours": "24/7", + "network": "E LECLERC STATION 10", + "charging_station:output": "22 kW", + "description": "E LECLERC STATION 10", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25516500000, + 47.28756100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "346514", + "capacity": "2", + "description": "Freshmile France/ZWRJVV", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4804187294337829720" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96797000000, + 48.28220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Avenue du Maine 16/18", + "ref": "FR*V75*P9015*02", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75P901502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32027200000, + 48.84375300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/TMUDQRXWDT", + "ref": "1191322", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1970030618913032617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.61230000000, + -17.60091800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Tours", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP1771", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74279700000, + 47.40694800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/WVK9HMQCCS", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7481578209334243037", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "682280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884100000, + 48.44748600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "7", + "description": "R3 - Kiabi Schweighouse", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89882114", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "start_date": "2024-03-29", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74032000000, + 48.83380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "485175", + "capacity": "2", + "description": "MobiSDEC/EP02VR6FM7", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P2451914086514062390", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70792800000, + 49.28366700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRS13PKAQAWPMKL3", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "description": "Miramas, Avenue Marco Polo", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00374000000, + 43.60801800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRWA6P1685926968153741285", + "ref": "761370", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA6", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA6LEXY5ACXU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84374300000, + 47.04048100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "description": "OuestCharge - Diva Sp - Erdre-en-Anjou - Halles;VERN-D'ANJOU - Place des Halles", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49367A;FRS49E49367001", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-05-14;2024-05-15;2021-04-09", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83459000000, + 47.60009000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8112800121;FRS81E8112800111;FRS81E8112800112;FRS81E8112800122", + "start_date": "2017-01-18", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "LACROUZETTE - Place Du Théron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34805638339, + 43.66274105034 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRHPCPNF058532", + "description": "RELAIS DU PETIT HERMITAGE ", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF058532", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "owner:ref:FR:SIREN": "531681482;531681486;531681485;531681483;531681484;531681487" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56950000000, + 47.23780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT CIRQ LAPOPIE - D8 - Route De St Cirq Lapopie", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02;2022-02-11", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS46E46256001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67117700000, + 44.46360300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-11-29", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "ref:EU:EVSE": "FRS56PRWCLSX", + "operator": "Freshmile", + "description": "Ploemel - Rue du Lenno", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07038900000, + 47.65296000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH04E59234003", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "FLERS-EN-ESCREBIEUX - MAIRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06118580000, + 50.39763250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Quimperle-Boulevard de la Gare", + "ref:EU:EVSE": "FRS29E2923300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55285100000, + 47.87112400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21902", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PWDVXQA", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/WDVXQA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35816000000, + 47.58030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-05-18", + "description": "CHENEVELLES -1-1;CHENEVELLES -1-2", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref": "B030", + "ref:EU:EVSE": "FRLMSE12346051582;FRLMSE12346051581;FRLMSE12346051571;FRLMSE12346051572", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65501000000, + 46.72771800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P93005*A", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "484763", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520200000, + 48.93015600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*80*1*_*_;FR*SOD*S*SIGE*80*2*_*_;FR*SOD*S*SIGE*80*3*_*_;FR*SOD*S*SIGE*80*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-12-16;2020-12-17", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE8041;FRSIGPSIGE8031;FRSIGPSIGE8021;FRSIGPSIGE8011", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 44 RUE CHAMPS CHARDON - ISSY-LES-MOULINEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25202700000, + 48.82195600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "917970", + "operator:email": "operations.france@atlante.energy", + "capacity": "4", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATL*CaPu1381", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP2200017608466823274" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09421300000, + 46.18022900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "description": "Howdens Wasquehal", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000081812", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11600000000, + 50.65449200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Bosdarros | Route du Village", + "capacity": "2", + "amenity": "charging_station", + "ref": "7623a852-6433-5f88-afa5-b728799f2a90", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36216800000, + 43.22095500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS85E85163001", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "description": "NOIRMOUTIER-EN-L'ILE - Place De La Prée Aux Ducs", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24947000000, + 47.00067100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "ref:EU:EVSE": "FRALLPEVCARSANGSG", + "amenity": "charging_station", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "description": "ANGERS SAINT SERGE", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53906000000, + 47.48715000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 06 - RUE DE BRETEUIL", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*MAMP*14*1*_*_", + "network": "IZIVIA", + "ref:EU:EVSE": "FRIZMPMAMP1412;FRIZMPMAMP1411", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37860300000, + 43.28132900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMARLAU", + "opening_hours": "24/7", + "description": "Marie Blachère - La Chapelle-Saint-Luc", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-08-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02514081111, + 48.30828151825 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMRQEES", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-02-07", + "opening_hours": "24/7", + "ref": "231547;MRQEES", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/MRQEES;Désertines, Georges Brassens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61675000000, + 46.34570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "FREVZP2504707676658111542", + "charging_station:output": "120 kW;22 kW", + "description": "Norauto - Bornes publiques/0AB0E24F-45F3-4746-ACE2-8C3A465EA095", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref": "811086", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65774700000, + 45.19130200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-28", + "capacity": "3", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "description": "Darty - La Valette", + "ref:EU:EVSE": "FRPD1PGSTVVD", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99957620000, + 43.13654070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref": "G03APSS9V1", + "ref:EU:EVSE": "FREBNPG03APSS9V1", + "description": "La chapelle Sous Aubenas, parking chemin des Grads" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36421312000, + 44.56330289000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Lav'Car Bourges", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP18033A", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP18033A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36770760000, + 47.06385510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ARCACHON - AIGUILLON", + "ref": "FR*SOD*S*OTHR*178*4*_*_;FR*SOD*S*OTHR*178*2*_*_;FR*SOD*S*OTHR*178*1*_*_;FR*SOD*S*OTHR*178*3*_*_;FR*SOD*S*OTHR*178*5*_*_", + "opening_hours": "24/7", + "start_date": "2021-05-19;2021-05-04", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17841;FROTHPOTHR17811;FROTHPOTHR17821;FROTHPOTHR17831;FROTHPOTHR17851", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14698800000, + 44.65664900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "COSINUS ELEC BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "network": "COSINUS ELEC BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-09-25", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6990185", + "ref:EU:EVSE": "FRCPIE6990185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18416000000, + 46.86396300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3722489637768992332", + "operator:email": "roaming@freshmile.com", + "ref": "1180116", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLX0HI5JG152PB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49038000000, + 44.92617000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP123009", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "description": "CENTER PARCS LES TROIS FORETS - Parking Y", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99730200000, + 48.61777600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ZAUKZX", + "ref:EU:EVSE": "FRFR1PZAUKZX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "232369" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22460000000, + 46.20260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "network": "SUPER U SAVIGNEUX", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-10-22", + "description": "SUPER U SAVIGNEUX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRSUAP42299A", + "ref:EU:EVSE": "FRSUAP42299A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085000000, + 45.60781000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "160254", + "description": "Freshmile France/salinetamarin", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3286588718569596733", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.25700000000, + -21.08890000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "network": "DRIVECO", + "capacity": "2", + "description": "Campanile - Talange", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPCAMPANILE575251", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17864400000, + 49.24028100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - LE GAULT SAINT DENIS - Pl. de l'église", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS28E134509", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LE GAULT SAINT DENIS - Pl. de l'église", + "ref:EU:EVSE": "FRS28E134509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48426000000, + 48.24397000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "892839", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P2172124200993760737", + "description": "SDEA 10/LLJOC8WX4CKPT1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04593100000, + 48.29403000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "708680", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA5LYO2JCJWD", + "operator": "WAAT SAS | FR*WA9", + "ref:EU:EVSE": "FRWA9P394795491896965476", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57856900000, + 45.38247800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-05", + "ref:EU:EVSE": "FRS50P505025", + "description": "ST LO - Cité administrative", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "215005026", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09583400000, + 49.11515400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "description": "SALVAGNAC - Allée Jean Jaurès", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81276001", + "start_date": "2022-03-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68795700000, + 43.90650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF078544", + "start_date": "2021-02-10", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "description": "BEUZEVILLE NORD", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "ref": "FRHPCPNF078544", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680576", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32790000000, + 49.32440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS49P49023C", + "description": "OuestCharge - ePremium - Beaupreau - Bocage", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89977800000, + 47.25177800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "86696", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PDAPNRG", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/DAPNRG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90000000000, + 49.23410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH10E62534003", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "LUMBRES - Centre Aquatique", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2023-02-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10649904107, + 50.70448377213 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-06;2024-06-24", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE GRAU DU ROI - Parking Avenue Dossenheim", + "ref:EU:EVSE": "FRS30E30133006", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13938500000, + 43.53546100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile;Morbihan énergies | FR*S56", + "ref": "298645", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Larmor-plage - Place de l'Eglise;Mobilité électrique 56/OXD9WRDSZQ", + "owner:ref:FR:SIREN": "255601106", + "operator:email": "roaming@freshmile.com;support@freshmile.com", + "ref:EU:EVSE": "FRS56POXD9WRDSZQ", + "socket:type2_combo:output": "7.4 kW", + "network": "Morbihan Energies;Mobilité électrique 56", + "start_date": "2020-03-01", + "charging_station:output": "7.4 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38264500000, + 47.70602900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-03-11", + "description": "SAINT-LEOMER-1-1;SAINT-LEOMER-1-2", + "opening_hours": "24/7", + "ref": "B088", + "ref:EU:EVSE": "FRLMSE12346390511;FRLMSE12346390521", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99439100000, + 46.43572400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "description": "Metropolis - Citadine - Orly - Aérodrome;Métropolis/FR*MGP*P94054*A", + "start_date": "2021-09-29", + "charging_station:output": "2.3 kW;22 kW", + "ref:EU:EVSE": "FRMGPP94054A", + "opening_hours": "24/7", + "ref": "419982", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39996600000, + 48.74264100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - AVENUE PAUL VALERY - SARCELLES", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE10812;FRSIGPSIGE10811", + "network": "SIGEIF", + "start_date": "2021-03-03", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*108*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38076600000, + 48.97929000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78165002", + "start_date": "2023-03-29", + "charging_station:output": "22 kW", + "description": "LES CLAYES SOUS BOIS - Avenue Jules Ferry", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98808600000, + 48.82211500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89397444", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-10-30", + "description": "ENGIE Vianeo - Epinal - Patinoire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46123100000, + 48.17916700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Pressignac | Parking Multiple Rural", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "0449267a-7fb8-5b52-8272-cd0783a6576b", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74293700000, + 45.82829700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE62WADA", + "description": "Camping -WISSANT", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-04", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65840900000, + 50.88323200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "description": "LIMAY", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies", + "start_date": "2022-01-12", + "ref:EU:EVSE": "FRALLPEVCARSLIMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75386200000, + 48.99041500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "CHATEAU THIERRY - Prairie", + "amenity": "charging_station", + "ref": "LFR3903EVCP01;LFR3903EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3903EVCP01;LFR3903EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39442500000, + 49.03784900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31149002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "COLOMIERS - Allée du Roussillon", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-11", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33641800000, + 43.61063600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "La Balme-Les-Grottes, Place de la Mairie;Réseau eborn/GARMFX", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPGARMFX", + "ref": "30152;GARMFX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33732000000, + 45.85250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2173907424811408479", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DNX2FL4ZPW", + "operator": "Freshmile | FR*FR1", + "ref": "472179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69120600000, + 48.55197000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-04-25", + "description": "PARIS - Louvre Carrousel", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "ref:EU:EVSE": "FRP07E751010522;FRP07E751010521;FRP07E75101052" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33033400000, + 48.86172100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPRDFEUWJLV7", + "description": "Réseau eborn/RDFEUWJLV7;Saint-Vallier, Place du Champs de Mars", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "RDFEUWJLV7;31954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81653000000, + 45.17693500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/66ab9bcb017dc0001c4fa4ea", + "socket:type2_combo:output": "105 kW", + "network": "Road", + "ref:EU:EVSE": "FREFLP3125914614081163582", + "amenity": "charging_station", + "opening_hours": "Su,Mo,Th,Fr,We,Sa,Tu 08:00-18:00", + "capacity": "3", + "ref": "1161891", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "charging_station:output": "22 kW;105 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26898600000, + 48.77160100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "ref": "FR*SOD*S*OTHR*298*5*_*_;FR*SOD*S*OTHR*298*4*_*_;FR*SOD*S*OTHR*298*3*_*_;FR*SOD*S*OTHR*298*1*_*_;FR*SOD*S*OTHR*298*2*_*_;FR*SOD*S*OTHR*298*6*_*_;FR*SOD*S*OTHR*298*7*_*_;FR*SOD*S*OTHR*298*8*_*_", + "description": "ESPACE THERMAL DAX", + "ref:EU:EVSE": "FROTHPOTHR29881;FROTHPOTHR29871;FROTHPOTHR29861;FROTHPOTHR29841;FROTHPOTHR29831;FROTHPOTHR29821;FROTHPOTHR29811;FROTHPOTHR29851", + "network": "DOMAINE DE LESPERON", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "start_date": "2022-01-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04888100000, + 43.71467900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CGED CHENNEVIÈRES", + "network": "CGED CHENNEVIÈRES", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6608845", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6608845", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54592900000, + 48.79333300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPQJDZRN", + "charging_station:output": "22 kW", + "ref": "QJDZRN", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-12", + "description": "Septème, Route De La Pivollée" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00383028000, + 45.55390010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P640295503563640506", + "description": "WAAT/s570505", + "ref": "1181742", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72413600000, + 48.10678600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "398882", + "network": "Freshmile France", + "description": "Freshmile France/FM8964A1WI", + "ref:EU:EVSE": "FRFR1P2414131653625178000", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27270000000, + 46.96830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "capacity": "4", + "start_date": "2021-08-12", + "ref": "FRTCBP00415", + "ref:EU:EVSE": "FRTCBP00415", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "description": "WARNING - Marseille", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25124800000, + 43.43443400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P201118950740118301", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LI6JTMDSG0", + "ref": "482028", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.49549100000, + -20.89546400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Nissan -Arles", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-02-06", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN132001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64113800000, + 43.66429300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Concarneau-Rue Leray", + "ref:EU:EVSE": "FRS29E2903900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.91719900000, + 47.87039900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P6264156626025551772", + "ref": "101744", + "description": "SDEA 10/PZWWQPXHOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62618500000, + 48.54818500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP003B20;Zephyre/LP003B21", + "opening_hours": "24/7", + "ref": "576080;576083", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr", + "ref:EU:EVSE": "FRZP1P7863260582653691530;FRZP1P5409160552446270595" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07542200000, + 43.24071100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "Régie Services Energie", + "capacity": "4", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRRSEP01005C", + "charging_station:output": "22 kW", + "description": "Régie Services Energie/FR*RSE*P01005*C", + "ref": "978562" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90292900000, + 46.00339700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/contygare", + "operator:email": "roaming@freshmile.com", + "ref": "48994", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS80PCONTYGARE", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15622400000, + 49.74154800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*178*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST17813;FRIZFPFAST17812;FRIZFPFAST17811", + "start_date": "2024-06-05", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MCDONALDS - AVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73986360000, + 48.42270990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS41E4933;FRS41E4934", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4933;FRS41E4934", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "description": "MODULO - NAVEIL - Rue de Montrieux", + "network": "MODULO - NAVEIL - Rue de Montrieux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02438900000, + 47.79782200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS72E72181010", + "description": "LE MANS - Rue Du Panorama", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "11 kW", + "start_date": "2022-03-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21991300000, + 47.96391000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON8631;FRGLYPLYON8611;FRGLYPLYON8621;FRGLYPLYON8641", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "ECY01 - CAMPUS LYON OUEST", + "start_date": "2021-06-15", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*86*4*_*_;FR*SOD*S*LYON*86*1*_*_;FR*SOD*S*LYON*86*2*_*_;FR*SOD*S*LYON*86*3*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76580600000, + 45.78401900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - SAINT JEAN SAINT GERMAIN - Rte. de Loches", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SAINT JEAN SAINT GERMAIN - Rte. de Loches", + "ref:EU:EVSE": "FRS37E215628;FRS37E215629", + "ref": "FRS37E215628;FRS37E215629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03475606000, + 47.08256988000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/CHEKHW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PCHEKHW", + "ref": "21887", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.57070000000, + 47.67530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10P45004A", + "operator": "E-TOTEM", + "description": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "capacity": "2", + "amenity": "charging_station", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P45004A", + "start_date": "2022-09-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77278300000, + 47.96827000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPAUCH13412;FROTHPAUCH13411", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*134*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "AUCHAN - OLIVET", + "network": "AUCHAN", + "start_date": "2023-08-23", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91108700000, + 47.86712700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2021-12-16", + "description": "SIGEIF - 1 RUE CHARLES PEGUY - SURESNES", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE22511;FRSIGPSIGE22512", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*225*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22560100000, + 48.86830500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Su 07:00-22:00,Sa 07:00-22:00,Fr 07:00-22:00,Th 07:00-23:59,We 07:00-22:00,Tu 07:00-22:00,Mo 07:00-22:00", + "charging_station:output": "22 kW", + "ref": "FRCG0E003203;FRCG0E003202", + "description": "Korian - 66340 - 1", + "start_date": "2024-10-02", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E003203;FRCG0E003202", + "network": "Korian - 66340 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98177200000, + 42.41962100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P5674122321113716695", + "ref": "892686", + "charging_station:output": "7.4 kW", + "description": "Leclerc/LLI360U001X0NX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87814400000, + 48.93710700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Royan | Place Charles de Gaulle", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "88249d30-b682-5f32-b0d5-dc798b50edca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02934900000, + 45.62461400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "ANGERVILLE Mediathèque intercommunale", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-10-12", + "ref:EU:EVSE": "FRSE1PSE91ABCA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99644400000, + 48.31173600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA87E91069001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "BOIGNEVILLE - Place de la Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37867600000, + 48.34289500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "BLANQUEFORT Novembre", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3773EVCP03;LFR3773EVCP02;LFR3773EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3773EVCP03;LFR3773EVCP02;LFR3773EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62600500000, + 44.92134500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRENOBLE - Rue Commandant Gilot - Dumont", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRM38E38185007", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72135330000, + 45.18127070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Réseau eborn/PVQGYC;Le Peage-De-Roussillon, Rue de la République", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "ref": "PVQGYC;121583", + "ref:EU:EVSE": "FREBNPPVQGYC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79927000000, + 45.37000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5203059150311146879", + "operator:email": "roaming@freshmile.com", + "ref": "515063", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/M5NIODRBG9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14739000000, + 47.67853900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "19", + "description": "SAINT-MAUR-DES-FOSSÉS - Adamville", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-09-15", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E940680031;FRP07E94068003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48693630000, + 48.79831990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Solliès-Pont, Parking Autran;Réseau eborn/LLYMQUZQN1D2ML", + "ref:EU:EVSE": "FREBNPLLYMQUZQN1D2ML;FREBNP962508197465730604", + "ref": "LLYMQUZQN1D2ML;1152126", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04151200000, + 43.19258600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPSAVAV", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-10-20", + "description": "Saint-André-les-Vergers - Avia", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05485200000, + 48.27268800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking de Palaiseau Tronchet - EFFIA", + "ref:EU:EVSE": "FRP01E91477001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24568000000, + 48.71363000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "description": "SUPER U 72170 BORNE 2", + "opening_hours": "24/7", + "network": "SUPER U 72170 BORNE 2", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-11-22", + "ref:EU:EVSE": "FRCPIE6651965;FRCPIE6651955", + "ref": "FRCPIE6651965;FRCPIE6651955" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12842400000, + 48.22980500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Easycharge services", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHPLLTFRQ3OB1MNR4", + "capacity": "3", + "opening_hours": "24/7", + "network": "Easycharge services", + "description": "Thionville, Rue de l'Agriculture", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "start_date": "2024-03-06", + "ref": "LLTFRQ3OB1MNR4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14961488800, + 49.36932493000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX19*04", + "ref:EU:EVSE": "FRV75PPX1904", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "description": "Paris | Boulevard Sérurier 60", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39780000000, + 48.88101000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3627947723585759602", + "description": "Freshmile France/KXIPG0APTF", + "operator": "Freshmile | FR*FR1", + "ref": "377459" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01449800000, + 50.64439700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0104", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Rue des Pyramides 12", + "amenity": "charging_station", + "ref": "FR*V75*PPX01*04", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-09-21", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33297130000, + 48.86485940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/CRSMVV007E", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7832971916639356550", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "398855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39300000000, + 46.99870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "ref:EU:EVSE": "FRSSDPKIAMARSEILLE130101", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "description": "Kia - CARAUTO - Marseille", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39959300000, + 43.27786300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS22E22234001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plouvara-Rue de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91490700000, + 48.50910900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NARBONNE - Rue Pierre Viala", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11262004", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00918102264, + 43.18623205818 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "518528708", + "ref:EU:EVSE": "FRZSUE22AC36280;FRZSUE22AC36279", + "amenity": "charging_station", + "capacity": "1", + "description": "SuperU - Gundershoffen - 22kW AC ; SuperU - Gundershoffen - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "ref": "36280;36279", + "charging_station:output": "22 kW", + "opening_hours": "Mo-sat 08:30-20:00", + "network": "SU gunderschoffen - SAS SODIHARDT", + "start_date": "2020-07-14", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64945600000, + 48.90103100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "412241", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/MJJBMETL1P", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P2187386997224558808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12266600000, + 48.45588400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/GDZSRJ", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80PGDZSRJ", + "charging_station:output": "22 kW", + "ref": "86636", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56517000000, + 49.95330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-01", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - NOEUX LES MINES", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*55*1*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST5513;FRIZFPFAST5512;FRIZFPFAST5511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67852040000, + 50.47474040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44087B", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "start_date": "2021-04-23", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Saint Meme Le Tenu - Bois", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79392600000, + 47.02015690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2015-07-01;2023-05-09", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH6190M8XFX4J3JB6Y05", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "JAIGNES - Rue De L'Abbaye;Jaignes", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref:EU:EVSE": "FRS77P77235A;FRS77E77235001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05488900000, + 48.99129100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "description": "GreenYellow Shift Mobility/81", + "ref:EU:EVSE": "FRGYMP6124998422214832283", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref": "1030602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68102400000, + 48.82991200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-10-18", + "capacity": "2", + "network": "MODULO - CINQ MARS LA PILE - Z.A. Actiloire", + "amenity": "charging_station", + "description": "MODULO - CINQ MARS LA PILE - Z.A. Actiloire", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E221226;FRS37E221224", + "ref": "FRS37E221226;FRS37E221224" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43938400000, + 47.36326300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - STENAY - Pkg. codécom", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - STENAY - Pkg. codécom", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E124570;FRS55E124571", + "start_date": "2022-03-26", + "ref": "FRS55E124570;FRS55E124571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19129300000, + 49.49032600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "LY311 - PINEL - HOPITAUX EST", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "start_date": "2021-08-04", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON10711;FRGLYPLYON10721;FRGLYPLYON10731;FRGLYPLYON10741", + "ref": "FR*SOD*S*LYON*107*1*_*_;FR*SOD*S*LYON*107*2*_*_;FR*SOD*S*LYON*107*3*_*_;FR*SOD*S*LYON*107*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89649400000, + 45.74830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Mobilize Power Solutions", + "owner:ref:FR:SIREN": "881248165", + "amenity": "charging_station", + "capacity": "1", + "description": "Edenauto Royan Nissan", + "ref": "ba34ff7d-2161-4d74-aaff-20ec49887860", + "network": "Edenauto", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "start_date": "2024-06-28", + "ref:EU:EVSE": "FRMBZELMXWQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00228703022, + 45.62901306152 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "WattzHub", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "ref:EU:EVSE": "FRSMIP8889833839067261792", + "opening_hours": "24/7", + "ref": "510419", + "description": "WattzHub/625fc63fb907c5cc90734800", + "operator": "WattzHub | FR*SMI", + "charging_station:output": "7.4 kW;3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10653900000, + 48.68082200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "opening_hours": "24/7", + "ref": "FRCPIE6546945", + "network": "LANGEAC DISTRIB BORNE 2", + "description": "LANGEAC DISTRIB BORNE 2", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6546945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49248000000, + 45.11213300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/LLKUTCHP02Q7TV", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P8930742342282600591", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "892710" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86214700000, + 47.62734900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "cf062fbb-82ed-5e31-82c1-ae353e947b4f", + "capacity": "2", + "description": "MOBIVE | Leognan | Place Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59814500000, + 44.72755800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Savigny-sur-Orge - Place du 19 Mars 1962", + "ref": "68d2d0e9-3672-5786-b3a3-93f2f912251e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35040500000, + 48.68808000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPACHY", + "description": "Airbus - Montoir de Bretagne - GC22 Extérieur du site", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16345700000, + 47.31687000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "LE BOULOU", + "ref": "LFR4030EVCP02;LFR4030EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4030EVCP02;LFR4030EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83947100000, + 42.53340500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "start_date": "2021-06-25;2021-08-06", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE6131;FRM06PNICE6121;FRM06PNICE6122;FRM06PNICE6132", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*61*3*_*_;FR*SOD*S*NICE*61*2*_*_", + "charging_station:output": "50 kW;22 kW", + "description": "NICE - COMTE DE FALICON RP", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25542000000, + 43.72632200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "operator": "IZIVIA", + "description": "ANTIBES - PARKING COURBET", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*197*1*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ19712;FRA16PWIIZ19711", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11156300000, + 43.57138100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5159530444137358521", + "network": "Freshmile France", + "ref": "1166970", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLZ6PGEW5339O5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37357800000, + 47.82081500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Buffalo Grill - Saint-Dizier", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBUFSAI", + "start_date": "2024-02-09", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96609608347, + 48.62664584320 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "amenity": "charging_station", + "capacity": "4", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPB23XI8EXVR", + "charging_station:output": "22 kW", + "description": "Megève, Parking du Jaillet", + "operator:email": "contact@reseau-eborn.fr", + "ref": "B23XI8EXVR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61991300000, + 45.86390400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref": "1088070", + "ref:EU:EVSE": "FREVZP5566774643822575002", + "opening_hours": "24/7", + "network": "EVzen", + "description": "EVzen/CF3EA523-0911-4161-9D5E-7E146B05EC76", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15820100000, + 47.17978500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E330630072;FRP07E330630071;FRP07E33063007", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "BORDEAUX - Salinières", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "21", + "start_date": "2024-01-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56453829200, + 44.83513211000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP8347339451560459767", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau eborn/YDYHNZJJKE", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "492069", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77988000000, + 43.95895000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAUFFREY ACADEMY", + "operator": "Ecophi mobility", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-04-08", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "amenity": "charging_station", + "opening_hours": "MO-FR 08:00-17:00", + "capacity": "20", + "network": "PROPERPHI", + "charging_station:output": "25 kW;22 kW;7 kW", + "owner:ref:FR:SIREN": "334836608", + "operator:email": "contact@properphi.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60463700000, + 48.07763800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP143009", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Thaon Les Vosges - ZA Innova 3000 1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-02-07", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39897400000, + 48.25622200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "barrier": "gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20739370000, + 49.97089490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3574428816926978302", + "network": "Freshmile France", + "description": "Freshmile France/VNJBH5F0QI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "515126", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82520100000, + 46.46345100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "ref": "FR*V75*PPX10*14", + "description": "Paris | Quai de Valmy 107", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX1014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36289000000, + 48.87484000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6183968153962736592", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1086732", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLSX345EE23RC3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36512400000, + 46.25767900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Volvo - La Rochelle", + "start_date": "2021-11-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:30-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBARBIER171381", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10196000000, + 46.17919400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900075", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PBEAUMESNILMAIRIE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70469400000, + 49.01175700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS21P21023A", + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "description": "SICECO/FR*S21*P21023*A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "180341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48963800000, + 47.13094200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E78442005", + "network": "Seymaborne", + "start_date": "2024-10-01", + "description": "NEAUPHLE-LE-CHÂTEAU - Maison Médicale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90872710000, + 48.80884320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-02;2023-01-19", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK6841;FRQPKPQPRK68111;FRQPKPQPRK6861;FRQPKPQPRK6881;FRQPKPQPRK6891", + "ref": "FR*SOD*S*QPRK*68*6*_*_;FR*SOD*S*QPRK*68*4*_*_;FR*SOD*S*QPRK*68*11*_*_;FR*SOD*S*QPRK*68*8*_*_;FR*SOD*S*QPRK*68*9*_*_", + "description": "QPARK - 06002 NICE - ARENAS CASSIN", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21676300000, + 43.67019400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "6;9", + "description": "WAAT/FRWATLJPHEGM6Q;WAAT/FRWATLJM4BM03O", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP6280397234559132706;FRWATP8280588613440903854", + "ref": "675536;675539", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18663400000, + 49.25483000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE413100", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2021-01-21", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE413100", + "description": "IONITY Village Catalan Est" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84699400000, + 42.57842900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-08-17", + "description": "VILLEDIEU LES POELES - Place de La Poste", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50800003", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21922490000, + 48.83672250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2017-11-30;2023-05-30", + "description": "Villiers-en-Bière;VILLIERS-EN-BIERE - Rue Cambot", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77518001;FRS77P77518A", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH6137W78F5N8C2QK3VA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59908600000, + 48.49417500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681316;531681317;531681315;531681314;531681313;531681312;531681310;531681311", + "ref:EU:EVSE": "FRHPCPNF080193", + "capacity": "8", + "start_date": "2023-07-25;2023-03-29", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "RELAIS SAVERNE MONSWILLER", + "ref": "FRHPCPNF080193", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "150 kW;300 kW;54 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36270000000, + 48.75990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E2927;FRS41E2926", + "ref": "FRS41E2927;FRS41E2926", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - VILLEHEVIERS - Rue de la gare", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VILLEHEVIERS - Rue de la gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79743300000, + 47.36559200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2016-10-13", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Vannes - Rue Daniel Gilard", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PGRGKRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76399000000, + 47.63785000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7742791207574889860", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1024101", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLPS9U3IMRF4RQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19567800000, + 49.10303900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "start_date": "2021-03-12", + "description": "Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040H", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128899000, + 48.82162691000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "ref:EU:EVSE": "FRSSDPAVENTIM593001", + "network": "DRIVECO", + "description": "Opticien - Aulnoy les Valenciennes", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51040200000, + 50.33287700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRC01E76759001", + "operator": "Bouygues E&S", + "description": "YVILLE SUR SEINE - Chemin de la garderie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-11-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88011400000, + 49.40167300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P8262383790789915037", + "network": "Leclerc", + "capacity": "4", + "ref": "1111959", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/LLV2BESGW2L2GG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61261800000, + 47.76630800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "7a556625-75ae-5018-aa12-b7de5a343371", + "capacity": "2", + "description": "MOBIVE | Lussac | Impasse de la Confrérie", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09581400000, + 44.94899400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "ref:EU:EVSE": "FRS95E95652003", + "description": "VIARMES - Clos de la Garenne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37162200000, + 49.12849100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSITE00000193", + "operator": "Allego", + "amenity": "charging_station", + "charging_station:output": "300 kW;22 kW", + "network": "ALLEGO", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "capacity": "10", + "start_date": "2024-02-18", + "description": "BAZALP EXINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68455900000, + 47.50650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/CYEDSCSTTC", + "capacity": "46", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "454254", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P4723185682890923255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312400000, + 48.41155600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PLZZ3ATOVJ7", + "operator:email": "support@evzen.com", + "description": "Eyguieres, Avenue Saint Veredeme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02681500000, + 43.69299000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/UUV2MKASOZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P8601969060430839651", + "ref": "699125", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09600900000, + 48.17909100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "MOUGINS PARKING SALLE OMNISPORTS DU FONT DE LORME", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*47*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ4711;FRA16PWIIZ4712", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-05-28", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01553400000, + 43.60958900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-11", + "charging_station:output": "7 kW", + "operator:email": "exploitation@freshmile.com", + "operator": "freshmile", + "amenity": "charging_station", + "capacity": "4", + "ref": "FR*FR1*EVLH*1", + "description": "CYSOING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1EVLH1", + "network": "FRESHMILE", + "owner:ref:FR:SIREN": "215901687" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21761900000, + 50.56618400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "start_date": "2024-02-26;2024-02-01", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PRTPVIR", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "160 kW;50 kW;22 kW", + "description": "Le Palais d'Emeraude - Vire-Normandie", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87713021436, + 48.85736913197 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "230914;FMSJHW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FMSJHW;Satolas Et Bonce, Parking Place De La Mairie", + "ref:EU:EVSE": "FREBNPFMSJHW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12667000000, + 45.69340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREVZP4328677919742959911", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "description": "EVzen/7B83739D-857C-4658-AC59-92F30E06AFD3", + "ref": "1175043", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59828900000, + 49.44707300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*657*2*_*_;FR*SOD*S*OTHR*657*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR65721;FROTHPOTHR65712;FROTHPOTHR65711;FROTHPOTHR65722", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "description": "INTERMARCHE - APPRIEU", + "start_date": "2023-06-22", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46787100000, + 45.39863600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "85742", + "network": "Réseau eborn", + "description": "Réseau eborn/GTJY9D5ZAF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPGTJY9D5ZAF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23403100000, + 46.19174900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPGM910S6PBS", + "ref": "30467", + "description": "Réseau eborn/GM910S6PBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10131700000, + 46.09467300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "description": "SCA ALINEA - BEAUMONT-DE-LOMAGNE", + "amenity": "charging_station", + "start_date": "2022-03-30", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR34441;FROTHPOTHR34431;FROTHPOTHR34421;FROTHPOTHR34411", + "opening_hours": "24/7", + "network": "SCA ALINEA", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*344*4*_*_;FR*SOD*S*OTHR*344*2*_*_;FR*SOD*S*OTHR*344*1*_*_;FR*SOD*S*OTHR*344*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00876900000, + 43.89110800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "socket:type2_combo:output": "75 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P9194605267532745237", + "description": "Freshmile France/KSYDHOQJJU", + "charging_station:output": "50 kW;75 kW;22 kW", + "ref": "387704", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64640200000, + 45.74996900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Avenue Théophile Gauthier 14", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX16*08", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1608", + "start_date": "2021-07-22", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27392450000, + 48.85075390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1063761", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P9165002064834251376", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLUQPDTUU183RH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18987800000, + 46.45108600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "amenity": "charging_station", + "description": "Volvo -Charleville-Mézières", + "capacity": "3", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPEMILFREYVOLVO080001", + "operator:email": "support@driveco.com", + "start_date": "2022-11-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70002400000, + 49.73835400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900094", + "ref:EU:EVSE": "FRS27PBECHELLOUINANSELME", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71909400000, + 49.23311700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Loudeac-Parking du champ foire", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22136002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75819600000, + 48.17760900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-11-18", + "ref": "47104;47126;87472;87473", + "description": " Intermarché - Marchaux - 22kw AC ;Intermarché - Marchaux - 22kw AC ", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "ref:EU:EVSE": "FRZIME22AC87473;FRZIME22AC47104;FRZIME22AC47126;FRZIME22AC87472", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "808872097", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12994190000, + 47.32075670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "description": "hotel3fontaines", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE26", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-02-24", + "charging_station:output": "25 kW", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05656360000, + 50.37249120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "ref:EU:EVSE": "FRY01E7813800", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CHANTELOUP-LES-VIGNES - Rue Du Général Leclerc", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03058900000, + 48.97853500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2020-12-08", + "network": "Haut Koenigsbourg", + "opening_hours": "24/7", + "description": "Haut Koenigsbourg", + "ref": "FRIOYE413805;FRIOYE413804;FRIOYE413801;FRIOYE413802;FRIOYE413803;FRIOYE413806;FRIOYE413851;FRIOYE413852;FRIOYE413853", + "ref:EU:EVSE": "FRIOYE413805;FRIOYE413804;FRIOYE413801;FRIOYE413802;FRIOYE413803;FRIOYE413806;FRIOYE413851;FRIOYE413852;FRIOYE413853", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40274100000, + 48.23188950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "332213", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "ref:EU:EVSE": "FRS52P3629291914321380447", + "opening_hours": "24/7", + "network": "SDED52", + "description": "SDED52/C6FVVB3MVR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00687200000, + 47.94842500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TARBES - TÉLÉSITE - Rue Morane Saulnier", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS65E65440011", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-01-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04541200000, + 43.22083200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE006102;FRIENE006101", + "owner:ref:FR:SIREN": "898270251", + "description": "Saint-Amour", + "amenity": "charging_station", + "start_date": "2023-03-16", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE006102;FRIENE006101", + "operator": "NW IECharge", + "network": "Saint-Amour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33218100000, + 46.44032700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VENDRES - Rue De Vienne - ZAE Via Europa", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02;2022-03-03", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS34E34329002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21797777778, + 43.29509170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-ECUC-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "ECOUCHE", + "ref:EU:EVSE": "FRS61P61153A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12061200000, + 48.71679900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MJ3GBZ3PFX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8428230307326796528", + "ref": "466104", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56550500000, + 47.58638500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS31PVTFJDY", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "159388", + "description": "Roulez Électrique En Haute-Garonne/VTFJDY", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72903000000, + 43.10950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2021-11-26", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92004010", + "description": "ASNIERES-SUR-SEINE - 60 Rue Henri Poincaré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28116410000, + 48.93065920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000166", + "amenity": "charging_station", + "capacity": "1", + "network": "Logis Hôtel La Bastide des Monges", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Logis Hôtel La Bastide des Monges", + "start_date": "2023-02-18", + "ref:EU:EVSE": "FRCG0E000166", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10405700000, + 44.34282300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE12311;FRM06PNICE12312", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "CAP-DAIL - PARKING BEAVERBROOK", + "ref": "FR*SOD*S*NICE*123*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-02-08", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39613400000, + 43.72335900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "997b33e2-dfe8-5d57-8169-1fadcf6fe677", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Saint Geours de Marenne | Rue du Gave (Aygue Blue)", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23330700000, + 43.70822500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-22", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "ILLANGE - PARKING GYMNASE", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE57IABA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18141400000, + 49.32936800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "222307;227205;222305;222306", + "ref:EU:EVSE": "FRBMPS222307;FRBMPS227205;FRBMPS222305;FRBMPS222306", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "Bump - Intermarché HYPER - Saint-Pair-sur-Mer", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54460500000, + 48.81451500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR4144EVCP02;LFR4144EVCP01;LFR4144EVCP03;LFR4144EVCP04", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "NEUVILLE FERRIERES Eaux", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4144EVCP02;LFR4144EVCP01;LFR4144EVCP03;LFR4144EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45908400000, + 49.72572600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PET8HVBT9DL", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-9E, Traverse de la Gaye" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40906600000, + 43.25866600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "ref": "51a1e4d3-d84d-5c0e-b63b-76b9f61a0e48", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Le Plessis-Pate - Place du 8 Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32522300000, + 48.61221700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-19", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "MAIRIE NORD ROCADE - AVIGNON", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP84000AVGMA1R1EN0RD", + "ref": "FR*55C*P84000*AVG*MA1R1EN0RD", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82072000000, + 43.93561700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3921EVCP04;LFR3921EVCP03;LFR3921EVCP01;LFR3921EVCP05;LFR3921EVCP08;LFR3921EVCP09;LFR3921EVCP06;LFR3921EVCP07;LFR3921EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "22 kW;180 kW;360 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "15", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "360 kW;180 kW", + "description": "VILLEFRANCHE SUR SAONE - Braun", + "ref:EU:EVSE": "LFR3921EVCP04;LFR3921EVCP03;LFR3921EVCP01;LFR3921EVCP05;LFR3921EVCP08;LFR3921EVCP09;LFR3921EVCP06;LFR3921EVCP07;LFR3921EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73847300000, + 45.97816600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-11-16", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUVIE", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Hyper U - Vierzon", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09266948413, + 47.23873451976 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPNPBXS3RZKU", + "operator:email": "contact@reseau-eborn.fr", + "ref": "NPBXS3RZKU", + "start_date": "2020-06-21", + "description": "Bourgoin Jallieu, 14 Rue Maréchal Foch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27705890000, + 45.59379830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7068782950336071453", + "description": "Freshmile France/UKQGBDK3E7", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "435162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95996400000, + 49.53778400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Parking gare d'Aix-en-Provence TGV P1 P2 P3 - EFFIA", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E13001001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31619530000, + 43.45619080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Sixt-Fer-à-Cheval, Place de la Gare;Réseau eborn/GULDWSUOJM", + "ref": "598254;GULDWSUOJM", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP6463376013618793591;FREBNPGULDWSUOJM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77400700000, + 46.05353100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Lens-Lestang, Place Des Tilleuils;Réseau eborn/WTKHQRLVGM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "75125;WTKHQRLVGM", + "ref:EU:EVSE": "FREBNPWTKHQRLVGM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04182400000, + 45.29267000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*466*1*_*_;FR*SOD*S*OTHR*466*2*_*_;FR*SOD*S*OTHR*466*3*_*_;FR*SOD*S*OTHR*466*4*_*_", + "start_date": "2022-08-22", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR46611;FROTHPOTHR46621;FROTHPOTHR46631;FROTHPOTHR46641", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U - SAINT MEEN LE GRAND", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20215100000, + 48.18977300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VFRBGTHDDU", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P1153989224710643207", + "ref": "466233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29887000000, + 48.61060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "setp0100000064", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "ref:EU:EVSE": "FRUBIE10010797;FRUBIE10066792", + "description": "UBI-LHSM-062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23230100000, + 49.67264600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LUNOSLDDGN", + "amenity": "charging_station", + "ref": "485130", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7013320574300501347" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15275100000, + 43.09086400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRTLSE31555002", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-24;2022-12-13", + "description": "TOULOUSE - Avenue des Etats-Unis", + "network": "CPO Alizé Liberté Public", + "charging_station:output": "180 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42750000000, + 43.64330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892092", + "ref:EU:EVSE": "FRFR1P5022493467074247214", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLI8V0FNI2LL61" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13638900000, + 48.06017200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/FJDPVYD3VM", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461721", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS14P5890377210258792762", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20085400000, + 48.89537400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11388002", + "description": "TERMES - Parking visiteurs", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-29", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56552320000, + 43.00101930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78107002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BRÉVAL - Gare", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-03-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54081000000, + 48.94373000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "PETR - Damelevières", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "31ec6e3f-7bdf-5f41-bf4b-3fbbcdd76c97", + "operator": "37__PETR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38710000000, + 48.55710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "description": "SIED70/DORRYWA2NF", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS70P2606988900437248050", + "ref": "896748", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78105300000, + 47.59222100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "HERSIN COUPIGNY - Rue de Lavoisier", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH13E62543001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64624300000, + 50.44741500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "MAEN ROCH (St Etienne en Cogles) - Zone St Eustache ", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "socket:type2_combo:output": "54 kW", + "ref:EU:EVSE": "FRS35P35267001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31371500000, + 48.39946000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "518297", + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63113B", + "start_date": "2022-12-23", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG63 - ePremium - Clermont Ferrand - Clementel;SIEG 63/FR*S63*P63113*B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10959000000, + 45.81018300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW;63 kW;22 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2072990013385813160", + "description": "Freshmile France/W0RMJ2P85R", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "466260", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69038100000, + 48.53288600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "294494", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "description": "SDEG32/UCAAKJ", + "ref:EU:EVSE": "FRS32PUCAAKJ", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66865000000, + 44.00310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "description": "ALFORTVILLE - Avenue Charles De Gaulle", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94002005", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41306362932, + 48.81463221790 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-01", + "charging_station:output": "7 kW", + "description": "Logis Belle Hôtel - 59270 - 2", + "ref:EU:EVSE": "FRCG0E001250;FRCG0E001249", + "capacity": "2", + "amenity": "charging_station", + "network": "Logis Belle Hôtel - 59270 - 2", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E001250;FRCG0E001249" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73687100000, + 50.73890900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-06-13", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE23911;FRM06PNICE23912", + "ref": "FR*SOD*S*NICE*239*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "CARROS - PARKING CIGALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19157752050, + 43.77162943451 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Casteljaloux | Place de L'Église", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "ref": "48a0003c-9ad3-56bb-b7ea-95e212f6a603" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09043900000, + 44.31346500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PARKING GYMNASE - TAVERNY", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*379*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE37911;FRSIGPSIGE37912", + "start_date": "2023-03-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20446000000, + 49.01150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MAROMME - Carrefour de la Demi Lune", + "ref:EU:EVSE": "FRC01E76410001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04700500000, + 49.48057100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "ST MARTIN DE RE", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3354EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3354EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35707200000, + 46.19691500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Tonnay Boutonne | Impasse du Bastion", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "5a9cc947-766f-5ca1-8627-a20d71e92b44" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70606100000, + 45.96810900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "34054", + "ref:EU:EVSE": "FRS82PYYSPNW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/YYSPNW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53556000000, + 43.96390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2021-12-10", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref:EU:EVSE": "FR55CP92260FARJAURES", + "capacity": "1", + "description": "RUE JEAN JAURES - FONTENAY-AUX-ROSES", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P92260*FAR*JAURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28703600000, + 48.79075600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "PUILBOREAU Juin", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3584EVCP03;LFR3584EVCP02;LFR3584EVCP01", + "ref": "LFR3584EVCP03;LFR3584EVCP02;LFR3584EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11031500000, + 46.17636300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché Super - Labarthe-sur-Lèze", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMLSL", + "start_date": "2021-08-10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39622540000, + 43.45463120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "capacity": "2", + "description": "Saint-Just-Chaleyssin, Place Camille Gallon;Réseau eborn/P0N0AS01HF", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "P0N0AS01HF;801747", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP1466594090462611125;FREBNPP0N0AS01HF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99897800000, + 45.58671000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP73039A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - Hôtel le Belmont", + "ref": "FRETIP73039A", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65823409898, + 45.57893754976 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "socket:type2_combo:output": "100 kW", + "start_date": "2022-11-24", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PCORALE", + "description": "Cora - Alès" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09608257505, + 44.11275643537 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Plouha", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT225801", + "operator:email": "support@driveco.com", + "start_date": "2024-01-25", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.93037400000, + 48.68788700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Saint-Brevin-les-Pins - E.Leclerc", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPSBPLE", + "start_date": "2024-02-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15870200000, + 47.24465200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "description": "INTERMARCHE - AIGREFEUILLE-DAUNIS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR58011;FROTHPOTHR58012", + "start_date": "2023-02-09", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*580*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93576200000, + 46.11686100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SOHP BORNES SEM SOHP 7", + "charging_station:output": "7 kW", + "ref": "FRCPIE6771665;FRCPIE6771615;FRCPIE6771605;FRCPIE6771635", + "amenity": "charging_station", + "capacity": "4", + "description": "SOHP BORNES SEM SOHP 7", + "opening_hours": "24/7", + "start_date": "2023-09-13", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6771665;FRCPIE6771615;FRCPIE6771605;FRCPIE6771635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26815900000, + 48.82447100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1130469", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P887243749913411179", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/N8A8OYWIZN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64368100000, + 48.55733400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "description": "Paris | Place du Colonel Fabien 9", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75P901001", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "start_date": "2022-01-10", + "opening_hours": "24/7", + "ref": "FR*V75*P9010*01", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36968150000, + 48.87809900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "471072", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2630867083197282824", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IKISQUTAT2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60484800000, + 49.05462800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger La Léchère-les-Bains, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP7137", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48253300000, + 45.51866800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/KRXTAYLACE", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454074", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6299970319813214040" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76000000000, + 46.26020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "description": "R3 - Norauto Englos", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "start_date": "2022-12-02", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283499" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96528300000, + 50.63337000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LLW66ZW5R1NTHE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "1119258", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8093177189560616044" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10562100000, + 48.85488200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT GEORGES DE LUZENCON - Chemin Des Rivières", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12225001", + "charging_station:output": "22 kW", + "start_date": "2021-08-13", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98377200000, + 44.06380600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "815394", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA5P3365740237242997450", + "description": "WAAT/FRWA5LGMEJRVMS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68877400000, + 43.38623400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-03-25;2024-04-13;2021-04-07", + "description": "SEGRE - Parking de Lauingen;OuestCharge - Diva Sp - Segre - Lauingen", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49331003;FRS49P49331C", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87263100000, + 47.68614300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-23", + "ref:EU:EVSE": "FRS81E81099001", + "charging_station:output": "22 kW", + "description": "GAILLAC Hautepoul - Place Hautepoul" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89710700000, + 43.90098600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRHPCPNF010132", + "ref:EU:EVSE": "FRHPCPNF010132", + "start_date": "2021-04-28;2021-01-28", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680575;531680574", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "50 kW;175 kW", + "description": "RELAIS CARQUEFOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48940000000, + 47.26530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GOURDON - Place du foirail", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS46E46127001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38600500000, + 44.73526800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-28", + "description": "Saint-malo-des-trois-fontaines - Avenue Porhoët", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PQRHCVG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47243000000, + 48.01404900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH04E59170001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DECHY - rue Léon Gambetta", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12583500000, + 50.35353500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS29E2921500", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plozevet-Place du 8 Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.42402600000, + 47.98585500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "SAINT-MANDÉ - Avenue du Général De Gaulle", + "start_date": "2022-01-14;2022-01-06", + "ref:EU:EVSE": "FRSIPE94067005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41786920000, + 48.83774950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B Hôtel Saint-Sébastien-sur-Loire", + "start_date": "2024-02-23", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90193885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48548600000, + 47.21094900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Tocane Saint Apre | Place des Tilleuls", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "46af260d-debd-5c86-b197-87cd74bb9951", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49652300000, + 45.25356700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-17", + "ref:EU:EVSE": "FRSIGPSIGE5212;FRSIGPSIGE5211", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*SIGE*52*1*_*_", + "description": "SIGEIF - 34 RUE ANTOINE FRATACCI - VANVES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28842200000, + 48.82107700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSLATTE", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-04-20", + "network": "Carrefour Energies", + "description": "LATTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93110600000, + 43.58258100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "ref": "fr*lib*e3126085", + "start_date": "2023-06-23", + "amenity": "charging_station", + "capacity": "1", + "network": "Bornevo Connect", + "owner:ref:FR:SIREN": "530343086", + "description": "Résidence Carouge", + "operator": "Bornevo", + "operator:email": "contact@bornevo.com", + "ref:EU:EVSE": "FRLIBE3126085", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30000000000, + 48.62000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "e870dc88-071e-51ca-a202-6e248d0be051", + "description": "MOBIVE | Helette | Parking D645 Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24401600000, + 43.30676700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "FONTENAY-LE-COMTE - Aménagement Rouchefoucault", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85092001", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80378000000, + 46.46815100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego Carrefour Pontault-Combault", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9002572;FRALLEGO9002571;FRALLEGO9002281;FRALLEGO9000092;FRALLEGO9000091;FRALLEGO9000082;FRALLEGO9000081;FRALLEGO9000052;FRALLEGO9000051;FRALLEGO9002282;FRALLEGO9002573", + "ref": "FRALLEGO9002572;FRALLEGO9002571;FRALLEGO9002281;FRALLEGO9000092;FRALLEGO9000091;FRALLEGO9000082;FRALLEGO9000081;FRALLEGO9000052;FRALLEGO9000051;FRALLEGO9002282;FRALLEGO9002573", + "network": "Allego Carrefour Pontault-Combault", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60764300000, + 48.77630100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3186EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "CAEN Mariaise", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3186EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34928600000, + 49.20459400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-01-10", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "La Boucherie - Tarbes", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PLBCTRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03937580000, + 43.23891430000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/HFHFSNPFL8", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPHFHFSNPFL8", + "ref": "96029" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06644600000, + 46.02855900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "CARF - Bornes Publiques/FCB5BEC9-0356-4EE8-B8F9-5C923C01C394", + "ref": "850842", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP2335253582387532069", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43624800000, + 43.75116900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "187.5 kW;50 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-08-29;2024-09-25;2024-09-07;2024-09-06", + "capacity": "22", + "description": "Carré Sud - Nîmes", + "socket:type2_combo:output": "50 kW;187.5 kW", + "ref:EU:EVSE": "FRPD1PFRYNMS", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35964138106, + 43.80983394460 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leroy Merlin - Haguenau - 2", + "network": "DRIVECO", + "ref:EU:EVSE": "FRE11PLMHAGUENAU675001", + "amenity": "charging_station", + "start_date": "2018-10-30", + "capacity": "4", + "opening_hours": "Mo 06:45-20:00, Tu 06:45-20:00, We 06:45-20:00, Th 06:45-20:00, Fr 06:45-20:00, Sa 06:15-19:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83760000000, + 48.80229900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP02690A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP02690A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Domaine de Barive" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88301701884, + 49.61522066703 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-18", + "capacity": "2", + "description": "CCVL - THURINS - PLACE DE LA MAIRIE", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*150*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR15011;FROTHPOTHR15012", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64123900000, + 45.68380500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6954025", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6954025", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CHATEAU DE BESSEUIL B1", + "network": "CHATEAU DE BESSEUIL B1", + "start_date": "2024-06-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81917200000, + 46.41820400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/U3BIAJ1J75", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "472269", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P9048293589582300050" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68179200000, + 48.55731000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "socket:type2_combo:output": "100 kW;400 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo Camions - Trucks Only - A6 Beaune Merceuil", + "charging_station:output": "100 kW;400 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "ref:EU:EVSE": "FRVIAP111104", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-07-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83782700000, + 46.96062600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/AQN1LPHKFB", + "amenity": "charging_station", + "ref": "481998", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4909265182636502140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15810500000, + 46.98962000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-05", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "description": "Suzuki - Annecy", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPMAURINSUZUKI749601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09020000000, + 45.92091400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "752403", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/HROA3L4NBG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4022086341481582480", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07743400000, + 45.15738900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPBOULANGERENGLOS592301", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "12", + "start_date": "2022-07-20", + "description": "Boulanger - Englos", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96917900000, + 50.62762300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E130752", + "ref:EU:EVSE": "FRS28E130752", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CHARTRES - Rue Pierre Mendes France", + "description": "MODULO - CHARTRES - Rue Pierre Mendes France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49393800000, + 48.44258500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P3027663355104574925", + "ref": "1067700", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "25 kW;22 kW", + "description": "MobiSDEC/LLV2DCWI018MJ9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18216900000, + 49.18274700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1127973", + "ref:EU:EVSE": "FRWA9P5375652777392801", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/FRWA5LLTMTVRUD", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50492300000, + 45.47589700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "GRANVILLE - Place Corsaires", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50400005", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-05-20", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60005800000, + 48.83785800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81235001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT AFFRIQUE LES MONTAGNES - Chemin des Muriers", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-11-30", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20470320000, + 43.53283200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531680722", + "start_date": "2021-08-19", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS PONT AVAL", + "ref:EU:EVSE": "FRHPCPNF078037", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "ref": "FRHPCPNF078037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26630000000, + 48.83500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49007013;FRS49P49007M", + "description": "OuestCharge - Diva Sp - Angers - Cerf;ANGERS - Rue Corne de Cerf", + "start_date": "2024-03-28;2021-04-29", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56278600000, + 47.47428400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS60PSENLISORD", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "48928", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Senlisord" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58255000000, + 49.20130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-18", + "ref:EU:EVSE": "FRH07E59574003", + "network": "pass pass électrique", + "description": "SOMAIN - Boulevard Louise Michel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28298100000, + 50.34661900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-27", + "ref:EU:EVSE": "FRS30E30081001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "CHUSCLAN - Parking De La Cave Coopérative" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67678700000, + 44.14539900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "socket:type2_combo:output": "42 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Pontivy - Avenue des cités unies", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2014-03-18", + "ref:EU:EVSE": "FRS56PJSEDAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95376000000, + 48.05400100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-07", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - B&B Hôtel Aix-En-Provence Tholonet", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90226672" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48732200000, + 43.51149200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P93070*E;Metropolis - Citadine - Saint-Ouen-sur-Seine - Lafargue", + "opening_hours": "24/7", + "ref": "761934", + "start_date": "2023-04-07", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP93070E", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33302900000, + 48.91220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "customerservice@shellrecharge.com", + "operator": "Shell Recharge", + "description": "Shell Keskastel", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRSHEE255", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2023-09-25", + "ref:EU:EVSE": "FRSHEE255", + "network": "Shell Keskastel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06409000000, + 48.97502400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NIMES - Université - Site Vauban - Rue du Docteur Georges Salan", + "start_date": "2022-03-18", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E30189001", + "capacity": "9", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35702350000, + 43.84322560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A13 Morainvilliers Nord", + "ref:EU:EVSE": "FRLMSP89370716", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421000000, + 48.94159000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Aubeterre-Sur-Dronne | Place du Champ de Foire", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "251bc334-a355-57e3-9d89-649b4d17ac66", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16930400000, + 45.27180800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE62AHCA", + "operator": "STATIONS-E", + "description": "Carrefour Contact - AUCHY LES HESDIN", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10212600000, + 50.39993300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9990372;FRALLEGO9001051;FRALLEGO9001052;FRALLEGO9001781;FRALLEGO9001782;FRALLEGO9002601;FRALLEGO9002602;FRALLEGO9002603;FRALLEGO9990361;FRALLEGO9990362;FRALLEGO9990371", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "description": "Allego Carrefour Thionville", + "operator:email": "info@allego.eu", + "capacity": "11", + "network": "Allego Carrefour Thionville", + "start_date": "2023-06-22", + "ref": "FRALLEGO9990372;FRALLEGO9001051;FRALLEGO9001052;FRALLEGO9001781;FRALLEGO9001782;FRALLEGO9002601;FRALLEGO9002602;FRALLEGO9002603;FRALLEGO9990361;FRALLEGO9990362;FRALLEGO9990371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14152400000, + 49.35326200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3609EVCP01;LFR3609EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3609EVCP01;LFR3609EVCP02", + "description": "ROINVILLE Gaulle", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05542600000, + 48.53240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "Marseille-16E, 148 Plage de L'Estaque", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PSMLJQ89TDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30955100000, + 43.36223600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/QNZBOX38KS;Saint-Didier-En-Velay, Avenue Veron de la Conde", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "QNZBOX38KS;346904", + "ref:EU:EVSE": "FREBNP1529258774847107464;FREBNPQNZBOX38KS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27371000000, + 45.30199000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2847945549764295963", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ITBF0WI799", + "ref": "477651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236000000, + 48.18615000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "17", + "network": "INDIGO FRANCE", + "description": "ST JEAN DE LUZ - Cœur de Ville", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E64483001;FRP07E644830011", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-01-08;2020-07-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66020000000, + 43.38806900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/WXLUWMWMYZ;Mieussy, Rue des Écoles", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP3944217490393756159;FREBNPWXLUWMWMYZ", + "ref": "WXLUWMWMYZ;801753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52228800000, + 46.13365300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "description": "Road/65dca64696f7a5001c291247", + "capacity": "4", + "opening_hours": "We,Sa,Mo,Su,Fr,Th,Tu 08:00-18:00", + "charging_station:output": "11 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref:EU:EVSE": "FREFLP8430999136095365406", + "ref": "1036062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98796800000, + 48.63917600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;22 kW", + "ref": "FR*SOD*S*OTHR*263*4*_*_;FR*SOD*S*OTHR*263*1*_*_;FR*SOD*S*OTHR*263*2*_*_;FR*SOD*S*OTHR*263*3*_*_", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR26341;FROTHPOTHR26311;FROTHPOTHR26321;FROTHPOTHR26331", + "capacity": "1", + "description": "HYPER U - CHATEAUBRIANT", + "start_date": "2021-10-27", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38865600000, + 47.71736400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CONNECT FOIX", + "ref:EU:EVSE": "FRCPIE6604875", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CONNECT FOIX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6604875", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61596200000, + 43.00587000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "529463", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P6872815030168558266", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/NWS9EZWLMB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00148700000, + 43.51411800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA2P2263983613778018289", + "network": "WAAT", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "WAAT/s520631", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1132146", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950900000, + 48.98314100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLIVRKS18DUY5I", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892260", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1913098659976707517", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.90727700000, + 48.72912400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "description": "EVBOX 120 VO SALLANCHES", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "ref:EU:EVSE": "FRSWSE1234632523", + "start_date": "2024-04-12", + "socket:type2_combo:output": "120 kW", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234632523", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63794000000, + 45.94392200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5472710441655221267", + "description": "Freshmile France/LLZSFHAD8AYG7S", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1169406", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07405500000, + 49.11058200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-01-20", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPTARMAKKIA361301", + "capacity": "3", + "opening_hours": "Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "description": "Kia - Déols", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70944300000, + 46.84812100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Baye-Impasse Saint-eloi", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2900500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60556100000, + 47.85752500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "74993", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/FZQRL62BMY", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P7793276458545212903", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03595200000, + 48.12999500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "522990217", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "Zephyre/LE006464;Zephyre/LE006494;Ibis Centre Ales", + "network": "Ibis Centre Ales;Zephyre", + "ref": "575960;575963;798f5663-0d10-4dce-8ebb-0ae688567c46", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr", + "ref:EU:EVSE": "FRZP1P4806068299683552000;FRZP1P6077898302364209731;FRZP1PEAC35858;FRZP1PEAC38139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08198500000, + 44.12390200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2023-07-24", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRROSE678", + "opening_hours": "24/7", + "description": "Redeim_Montmorillon", + "operator": "RossiniEnergy", + "owner:ref:FR:SIREN": "839265947" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88679730000, + 46.43103950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bellot", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77030A", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "start_date": "2015-07-01", + "operator": "Bouygues Energies et Services", + "ref": "01F5ZAKH61DSK7H79WFYF7T5RT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31818300000, + 48.85722000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MC DONALDS - PAU NOBEL", + "start_date": "2024-06-19", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRIZFPFAST15112;FRIZFPFAST15111;FRIZFPFAST15113", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FR*SOD*S*FAST*151*1*_*_", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33173548348, + 43.30715345970 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST LAURENT NOUAN - Pl. St-Aignan", + "capacity": "2", + "network": "MODULO - ST LAURENT NOUAN - Pl. St-Aignan", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4613;FRS41E4614", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4613;FRS41E4614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56018600000, + 47.68538100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mouv'Oise/58ab18938675d", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60P58AB18938675D", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "120611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90043000000, + 49.44430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "start_date": "2021-02-11", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*61*2*_*_;FR*SOD*S*LYON*61*1*_*_", + "description": "CAL03 - MONTESSUY - GUTENBERG", + "ref:EU:EVSE": "FRGLYPLYON6122;FRGLYPLYON6121;FRGLYPLYON6111;FRGLYPLYON6112", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84949200000, + 45.79435300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30295001", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT QUENTIN LA POTERIE - Place Du Marché", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44088200000, + 44.04378000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Plouay - Rue Hélène Le Chaton", + "start_date": "2016-09-30", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PRJBZTG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33652800000, + 47.91721200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRFZDP74800001", + "capacity": "2", + "network": "Réseau de recharge Fuzed", + "opening_hours": "Mo-Fr 08:00-18:00", + "amenity": "charging_station", + "description": "Euromaster La Roche-sur-Foron", + "operator:email": "contact@fuzed.fr", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFZDP74800001;Non concerné", + "operator": "Fuzed", + "owner:ref:FR:SIREN": "927865220", + "start_date": "2024-06-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30303100000, + 46.07588300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - VANDOEUVRE - Ruelle Mathieu Dombasle", + "start_date": "2023-03-15", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRN54E187032;FRN54E187031", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VANDOEUVRE - Ruelle Mathieu Dombasle", + "ref": "FRN54E187032;FRN54E187031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18669200000, + 48.66961300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*199*1*_*_;FR*SOD*S*SIGE*199*2*_*_;FR*SOD*S*SIGE*199*3*_*_;FR*SOD*S*SIGE*199*4*_*_;FR*SOD*S*SIGE*199*5*_*_;FR*SOD*S*SIGE*199*6*_*_", + "ref:EU:EVSE": "FRSIGPSIGE19961;FRSIGPSIGE19941;FRSIGPSIGE19921;FRSIGPSIGE19911;FRSIGPSIGE19931;FRSIGPSIGE19951", + "start_date": "2021-10-28;2021-08-20;2021-08-19", + "description": "SIGEIF - RUE AUGUSTE RENOIR - COLOMBES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26062300000, + 48.93141800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Jallu Berthier - Saint Ouen L'Aumône Ford - COURTOISE AUTOMOBILES - 95300 - 1", + "description": "Jallu Berthier - Saint Ouen L'Aumône Ford - COURTOISE AUTOMOBILES - 95300 - 1", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001751;FRCG0E001752;FRCG0E001753", + "ref": "FRCG0E001751;FRCG0E001752;FRCG0E001753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12059400000, + 49.03508500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2023-09-12", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89914565", + "description": "ENGIE Vianeo - Hôtel Campanile Cholet", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87093400000, + 47.04971600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "6139ac29-e705-582c-ac4c-f5aba5fc48ec", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Saint Vincent de Tyrosse | Avenue de Tourren", + "charging_station:output": "3.7 kW;36 kW", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31468000000, + 43.66066000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "LUCON - Boulevard Phélipon - Parking du cinéma", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE85LACA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2023-07-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17951100000, + 46.45826000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Draguignan", + "ref": "FRALLEGO9006932;FRALLEGO9006931;FRALLEGO9005842;FRALLEGO9004231;FRALLEGO9004061;FRALLEGO9004062;FRALLEGO9004232;FRALLEGO9005841", + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2023-04-08", + "ref:EU:EVSE": "FRALLEGO9006932;FRALLEGO9005842;FRALLEGO9004231;FRALLEGO9004061;FRALLEGO9004062;FRALLEGO9004232;FRALLEGO9005841;FRALLEGO9006931", + "description": "Allego Carrefour Draguignan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45323000000, + 43.52764000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3433EVCP01;LFR3433EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "ORTHEZ Blum", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3433EVCP01;LFR3433EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74913400000, + 43.47955700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM34E34270003", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT JEAN DE VEDAS - Rue Alberto Santos Dumont", + "charging_station:output": "22 kW", + "start_date": "2022-02-20", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84469100000, + 43.55964600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHM8S9VMJ8N", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Ailhon, Le Village;Réseau eborn/HM8S9VMJ8N", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "HM8S9VMJ8N;75059", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34169600000, + 44.59790700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "FOSSES Saint Ladre;Freshmile/FINPWCYSPC", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "529220;LFR3118EVCP01", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "ref:EU:EVSE": "LFR3118EVCP01;FRFR1P5530095128990313624" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52862600000, + 49.09895100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-15", + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E92051002;FRP07E920510021", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "NEUILLY SUR SEINE - Bagatelle", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25079800000, + 48.87668200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPMFG307V2NS", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/MFG307V2NS", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "32881" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37465900000, + 46.33240400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPPLRBO", + "description": "Le Plessis-Robinson - La Boursidière", + "start_date": "2022-06-15", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23839200000, + 48.77325000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E78683001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking gare de Villiers Neauphle P1 P+R - EFFIA", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87646020000, + 48.81522140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE66386351", + "start_date": "2022-10-07", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE66386351", + "operator:email": "support.eu@chargepoint.com", + "network": "HOPITAUX MASSIF DES VOSGES", + "description": "HMV / BORNE 2", + "owner:ref:FR:SIREN": "200096824", + "operator": "ChargePoint" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87685560746, + 48.07256195733 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "La Baule , Parking des Corallines;Easy Charge/GYS7KX8RYW", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP1510254007160535841;FRECHPGYS7KX8RYW", + "amenity": "charging_station", + "ref": "749184;GYS7KX8RYW", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379000000, + 47.28767400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Avenue de Wagram 77", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "ref": "FR*V75*PPX17*18", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1718", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950738000, + 48.88003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "368926", + "description": "Freshmile France/SAYDRISMJD", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P577500314391810626", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57635900000, + 44.84732800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9017*02", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "description": "Paris | Avenue des Ternes 36", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P901702", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29360600000, + 48.87896500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/GLHZJS", + "ref:EU:EVSE": "FRFR1PGLHZJS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "120602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49877000000, + 48.54070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Hyundai - Narbonne", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPMLHYUNDAI111001", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 08:30-12:00, Tu 14:00-18:00, We 08:30-12:00, We 14:00-18:00, Th 08:30-12:00, Th 14:00-18:00, Fr 08:30-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "start_date": "2022-09-06", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98317800000, + 43.15945400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS29E2916700", + "description": "Plogastel Saint Germain-Rue de Briscoul", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.27096000000, + 47.98170900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS11E11170004;FRS11E111700044", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "capacity": "4", + "description": "GRUISSAN - Parking du stade", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10667517540, + 43.11576573072 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZPEE177600;FRZPEE177589;FRZPEE177587;FRZPEE177586;FRZPEE177152;FRZPEE177581;FRZPEE177588;FRZPEE177590;FRZPEE177733;FRZPEE177734", + "amenity": "charging_station", + "capacity": "1", + "description": "Mercedes-Benz - Chambéry ;MERCEDES - LA MOTTE SERVOLEX - 11KW AC;MERCEDES - LA MOTTE SERVOLEX - 22KW AC ;MERCEDES - LA MOTTE SERVOLEX - 22KW AC;MERCEDES - LA MOTTE SERVOLEX - 11KW AC ;MERCEDES - LA MOTTE SERVOLEX - 22KW AC / 24KW DC ;MERCEDES - LA MOTTE SERVOLEX - 22KW AC / 24KW DC", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "network": "E-MB 73", + "opening_hours": " Lun-Ven 07:00-19:00, Sam 09:00-18:00;Lun-Ven 07:00-19:00, Sam 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88934430000, + 45.60445920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MIREPOIX - Allee De Palafrugell", + "network": "Reveo", + "ref:EU:EVSE": "FRS09E09194001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87578800000, + 43.08501400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PXRQKGG", + "ref": "79489", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/XRQKGG", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60123700000, + 50.27054600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST3213;FRIZFPFAST3212;FRIZFPFAST3211", + "ref": "FR*SOD*S*FAST*32*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BAPAUME", + "owner:ref:FR:SIREN": "951478437", + "start_date": "2023-12-20", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86830420000, + 50.10569380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Getigne - Jean Vay;GETIGNE - Rue Du Pont Jean Vay", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44063001;FRS44P44063A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2024-04-18;2021-04-29", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24839900000, + 47.07689200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "LES ECRENNES - Rue Grande;Les Ecrennes", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61MEPVMYM1JS6XDRYK", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77165001;FRS77P77165A", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-26;2016-12-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86082600000, + 48.50412000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "description": "GreenYellow Shift Mobility/19", + "ref:EU:EVSE": "FRGYMP164766510449444909", + "capacity": "13", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "GreenYellow | FR*GYM", + "ref": "993411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54052700000, + 48.79831600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E220288;FRS37E220286", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - SAINT AUBIN LE DEPEINT - Pl. mairie", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "start_date": "2023-11-01", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E220288;FRS37E220286", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SAINT AUBIN LE DEPEINT - Pl. mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39000300000, + 47.63568800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CCCPH - Errouville", + "charging_station:output": "3.7 kW;22 kW", + "operator": "44__CCCPH", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1f4aadfd-a7ff-5fde-b822-ea6b1d2ed827" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90241900000, + 49.41597400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Gargage Bellevigny;Super U Saint Sauveur le Vicomte", + "amenity": "charging_station", + "start_date": "2024-03-18;2024-04-09", + "owner:ref:FR:SIREN": "819949645;533365185", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "network": "Garage Bellevigny;Super U Saint Sauveur le Vicomte", + "socket:type2_combo:output": "60 kW", + "operator": "C4Energies", + "charging_station:output": "22 kW;60 kW", + "operator:email": "contact@c4energies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43068000000, + 46.80108000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "db4b9b60-7428-51ca-a36b-e8d85a85191b", + "description": "MOBIVE | BELIN-BELIET | Place de l'Église", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79013300000, + 44.49329800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "THIAIS - Avenue du Président Franklin Roosevelt", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-01-08", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94073004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39288645340, + 48.76492062789 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6530575;FRCPIE6530555;FRCPIE6530465", + "amenity": "charging_station", + "network": "HYPER U HANCHES RETAIL 5", + "opening_hours": "24/7", + "ref": "FRCPIE6530575;FRCPIE6530555;FRCPIE6530465", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "description": "HYPER U HANCHES RETAIL 5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67605500000, + 48.59198300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "18", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P1137277589784625559", + "network": "Leclerc", + "description": "Leclerc/IQJ0OJAZ1J", + "opening_hours": "24/7", + "ref": "510629", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082500000, + 48.55487400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8cc1b55a-3aac-507f-bd22-5b6bea69fc8f", + "operator": "197__SDEEG33", + "description": "MOBIVE | Biganos | Rue de la Résistance" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96546900000, + 44.63935100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-24", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - Louzy - Salle Hespérida", + "ref:EU:EVSE": "FRSEOPAB21036A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18853000000, + 47.01279000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPAIRBUS314008", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "capacity": "10", + "charging_station:output": "22.08 kW", + "description": "Airbus ADS - Toulouse - Parking GEO", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48559700000, + 43.55502800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR4083EVCP05", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4083EVCP05", + "capacity": "10", + "socket:type2_combo:output": "120 kW", + "description": "LAGNY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73914700000, + 49.09711000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "SAINT-LAURENT-DU-VAR - VAUBAN", + "ref:EU:EVSE": "FRM06PNICE35711;FRM06PNICE35712", + "start_date": "2024-09-16", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*357*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18028437829, + 43.65721380654 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*171*1*_*_", + "description": "VILLARS-SUR-VAR - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-11-22", + "ref:EU:EVSE": "FRA16PWIIZ17111;FRA16PWIIZ17112", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09691500000, + 43.93704500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "585548", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1869817699324751506", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ZGTKMH9RNZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.37748900000, + 48.38163100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBRASAI", + "description": "Besson Chaussures - Saint-Memmie", + "start_date": "2024-04-26", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39421956019, + 48.94443671038 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Goncelin, Rue de la Ventive;Réseau eborn/O4FMROVXLK", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP4958580185566084161;FREBNPO4FMROVXLK", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "O4FMROVXLK;346844", + "capacity": "2;4", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97673000000, + 45.34240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPPARHMT", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris 15 - Hôtel Mercure Centre Tour Eiffel", + "operator": "ELECTRA", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162400000, + 48.85455900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E30189006;FRP07E301890061", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "11", + "description": "NÎMES - Jardin De La Fontaine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35091523000, + 43.83649887000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPKUZMMX4TIX", + "network": "eborn", + "ref": "KUZMMX4TIX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Sederon, Le Village", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53849131000, + 44.20221446000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP2178248820402407365;FRECHPCSBVBZRQDD", + "amenity": "charging_station", + "ref": "756840;CSBVBZRQDD", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "description": "Easy Charge/CSBVBZRQDD;L'Isle-sur-la-Sorgue , Chemin des Hors", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05352200000, + 43.92091000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-27", + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A1 Phalempin Est", + "ref:EU:EVSE": "FRVIAP102116", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04638500000, + 50.52955600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "opening_hours": "Th,We,Sa,Mo,Fr,Tu 14:00-18:00,We,Fr,Tu,Sa,Th 09:00-12:00,Su 13:00-18:00", + "description": "Freshmile France/LLNVEZKLC168QI", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8533156044974319523", + "operator": "Freshmile | FR*FR1", + "ref": "971927" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86851400000, + 45.01167600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX0820", + "description": "Paris | Rue de Courcelles 40", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "ref": "FR*V75*PPX08*20", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30829760000, + 48.87618780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8587892766284297319", + "operator:email": "roaming@freshmile.com", + "ref": "412286", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/HAFZJ5OASW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86250000000, + 48.68220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2021-05-07", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINRENAULT771601", + "operator:email": "support@driveco.com", + "description": "Renault - Provins", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29808400000, + 48.55291200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79924", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "ref:EU:EVSE": "FRS25PPIERREFONMAIR", + "opening_hours": "24/7", + "description": "SYDED/pierrefonmair", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53992000000, + 47.21430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E206417;FRS18E206419", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E206417;FRS18E206419", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - BAUGY - Rue de la Halle", + "description": "MODULO - BAUGY - Rue de la Halle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72952600000, + 47.08220100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-06-10", + "ref:EU:EVSE": "FRY03E78367004", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MAREIL-MARLY - 4 Chemins", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07822000000, + 48.88720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRQPKPQPRK1721;FRQPKPQPRK1711", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - 83013 TOULON - LAFAYETTE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "start_date": "2022-08-05", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*17*1*_*_;FR*SOD*S*QPRK*17*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93493600000, + 43.11970200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CAGNAC LES MINES - Place Emile Grand", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS81E81048001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14030000000, + 43.98589800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2019-12-17", + "ref": "FRIONE408400", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Lyon-Dagneux Sud", + "ref:EU:EVSE": "FRIONE408400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98754800000, + 48.56639100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-22;2024-04-25", + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44178A;FRS44E44178001", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "SAINT-MARS-DE-COUTAIS - Rue Des Chaponneries;OuestCharge - Diva Sp - Saint-Mars-De-Coutais - Chaponneries", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73458600000, + 47.11373900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAVIGNY-LE-TEMPLE - Avenue Léon Blum;Savigny-le-Temple", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77445001;FRS77P77445A", + "ref": "01F5ZAKH61K49RBSYZC50SY52B", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-26;2016-12-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58211300000, + 48.59657700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF080045", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080045", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680913;531680912;531680910;531680911", + "start_date": "2023-06-13;2023-05-17", + "description": "RELAIS MANOSQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85020000000, + 43.84180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-05-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E204266;FRS41E204267", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHATILLON SUR CHER - Rue de la mairie", + "network": "MODULO - CHATILLON SUR CHER - Rue de la mairie", + "ref:EU:EVSE": "FRS41E204266;FRS41E204267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49494700000, + 47.27635100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNNRVKY", + "description": "Vannes - Place Générale de Gaulle", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-11-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75399900000, + 47.65864900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-02-21", + "ref": "FR*SOD*S*LYON*185*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "LY811 - ETATS-UNIS - LYCEE LUMIERE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON18512;FRGLYPLYON18511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86265400000, + 45.73370400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92014A", + "start_date": "2021-04-26", + "description": "Métropolis/FR*MGP*P92014*A;Metropolis - Proximité - Bourg-la-Reine - Carnot", + "opening_hours": "24/7", + "ref": "383178", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32250200000, + 48.77713900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-28", + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Peugeot - Douai", + "ref:EU:EVSE": "FRSSDPSOFIDAPEUGEOT591871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11750000000, + 50.34294900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6594765", + "ref:EU:EVSE": "FRCPIE6594765", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "CGED DOUAI", + "start_date": "2022-10-12", + "description": "CGED DOUAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10591600000, + 50.39120500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Leclerc/JRR1WB5NO2", + "amenity": "charging_station", + "ref": "559868", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P3772944651234589290", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38309100000, + 45.47548000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Rauzan | Place du Champs de Foire", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "6e7c2562-fa60-5d0a-995f-1cbcaba4c20d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12618400000, + 44.77847300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-30", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MARINES - Allées des sablons", + "ref:EU:EVSE": "FRS95E95370001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98201670000, + 49.14387550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "TOULOUSE SUD NORD ASF", + "operator": "Green To Wheel", + "amenity": "charging_station", + "capacity": "12", + "start_date": "2023-02-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "socket:type2_combo:output": "300 kW", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRALLPASF023", + "charging_station:output": "300 kW", + "description": "TOULOUSE SUD NORD ASF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54897648000, + 43.48582412000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/YIYEOEVU2D", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "ref": "559877", + "ref:EU:EVSE": "FRLE2P4428185853270675431", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088000000, + 50.36549300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PHPWSYVR6AD", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Allauch, Chemin du Garlaban, Parking Monge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48367300000, + 43.33678900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402617", + "ref:EU:EVSE": "FRS89P2130624154444551867", + "description": "SDEY/S6P8Q3CCAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09528000000, + 47.88697200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "ANTIBES - PARKING VAL CLARET", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ30312;FRA16PWIIZ30311", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-15", + "ref": "FR*SOD*S*WIIZ*303*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12398200000, + 43.59850230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref": "1009116", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4432549842857756351", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ARZ7KBQW7E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705000000, + 49.11700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-11-28", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "L'Orange Bleue - Valenciennes", + "ref:EU:EVSE": "FRPD1PORBVLC", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52165550000, + 50.34992560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLTHE8SIO5MW4K;1154274", + "ref:EU:EVSE": "FREBNPLLTHE8SIO5MW4K;FREBNP5698342800470953311", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLTHE8SIO5MW4K;Les Chavannes-en-Maurienne, Cimetière", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28253400000, + 45.39254400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "771717", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "network": "EVzen", + "charging_station:output": "50 kW;43 kW", + "description": "EVzen/0da11575-ea62-47e1-be6f-247316d0fcbf", + "ref:EU:EVSE": "FREVZP2157473339061881460", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14771300000, + 43.32866100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "INTERMARCHE - LE THILLOT", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR62651;FROTHPOTHR62652", + "ref": "FR*SOD*S*OTHR*626*5*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2023-08-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77451200000, + 47.88906200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "ref": "598227;E01F68VZR8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPE01F68VZR8;FREBNP5129250798283710054", + "description": "Le Grand-Bornand, Route de l'envers du Chinaillon;Réseau eborn/E01F68VZR8", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45582600000, + 45.97337400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Ville-La-Grand, Rue des Tournelles", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPDR9TBERC11", + "ref": "DR9TBERC11", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24312390000, + 46.19779830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR31511;FROTHPOTHR31521", + "amenity": "charging_station", + "capacity": "1", + "description": "CAVE ROBERT ET MARCEL - BELLEVIGNE-LES-CHATEAUX", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "CAVE ROBERT ET MARCEL", + "ref": "FR*SOD*S*OTHR*315*2*_*_;FR*SOD*S*OTHR*315*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2022-02-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06982200000, + 47.20066600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "756975", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LCZEGSP1N1", + "ref:EU:EVSE": "FRFR1P543215756052987867" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806000000, + 49.24909400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Rue de Dantzig 80", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1519", + "opening_hours": "24/7", + "ref": "FR*V75*PPX15*19", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29599900000, + 48.83040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/MLRMIEOLWC", + "ref:EU:EVSE": "FRFR1P4683026979307493753", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "346442", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39586000000, + 49.01280000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-03", + "description": "BMW Mini - Ballainvilliers", + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPFOURNIERBMW911601", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-18:30, Tu 08:30-18:30, We 08:30-18:30, Th 08:30-18:30, Fr 08:30-18:30, Sa 09:30-17:30", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27780100000, + 48.66373000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "description": "900102", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PSTPIERREFLEURSINTER", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96219200000, + 49.24837600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Hillion-Rue de Bel Orient (parking mairie)", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22081001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.66815000000, + 48.51302000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY22E78389001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "MERE - Square Raoul Breton", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82015560000, + 48.78809720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE212", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-04-19", + "amenity": "charging_station", + "capacity": "4", + "description": "EtiqCreation", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23293090000, + 50.67499110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78005004", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ACHERES - Rue Camille Jenatzy", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07895000000, + 48.97107000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE405353;FRIOYE405303;FRIOYE405302;FRIOYE405304;FRIOYE405305;FRIOYE405351;FRIOYE405352", + "start_date": "2020-10-09", + "ref:EU:EVSE": "FRIOYE405353;FRIOYE405303;FRIOYE405302;FRIOYE405304;FRIOYE405305;FRIOYE405351;FRIOYE405352", + "opening_hours": "24/7", + "description": "Tavel Sud", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "network": "Tavel Sud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885000, + 43.99972129000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDED52/VIUG8CLD3R", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P7503957177907900642", + "ref": "478554" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88625800000, + 48.22296000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65340001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ORLEIX - Rue des platanes", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11978000000, + 43.27958000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE003501;FRIENE003502", + "owner:ref:FR:SIREN": "898270251", + "network": "Méru Amblainville", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRIENE003501;FRIENE003502", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "description": "Méru Amblainville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12724400000, + 49.21527800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34274001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-01", + "charging_station:output": "22 kW", + "description": "SAINT MARTIN DE LONDRES - Parking Des Ecoles (Route Pic St Loup)", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73411900000, + 43.79065000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS61P61040A", + "start_date": "2017-12-06;2017-12-05", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "ref": "SE61-BEEH-001", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "BELLOU EN HOULME - Route de Ste Opportune" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44135300000, + 48.69130200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "892011", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLHQ4HNNTSC6DY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6683842728977517776" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10064500000, + 49.05193100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Roulez Électrique En Haute-Garonne/NPGJDV", + "amenity": "charging_station", + "ref": "33391", + "opening_hours": "24/7", + "network": "Roulez Électrique En Haute-Garonne", + "ref:EU:EVSE": "FRS31PNPGJDV", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11115000000, + 43.32230000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-12:30, Mo 13:30-17:30, Tu 08:30-12:30, Tu 13:30-17:30, We 08:30-12:30, We 13:30-17:30, Th 08:30-12:30, Th 13:30-17:30, Fr 08:30-12:30, Fr 13:30-17:30", + "ref:EU:EVSE": "FRSSDPPROMOD598471", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2020-10-23", + "operator": "DRIVECO", + "description": "Siège Promod - Béziers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12217500000, + 50.68999500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "start_date": "2022-05-09", + "network": "BMW - ENVERGURE - LA ROCHE SUR YON - 85000 - 1", + "amenity": "charging_station", + "description": "BMW - ENVERGURE - LA ROCHE SUR YON - 85000 - 1", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRCG0E000062;FRCG0E000061", + "operator:email": "info@chargeguru.com", + "ref": "FRCG0E000062;FRCG0E000061" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42736665000, + 46.72260337000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "e6c1f396-0451-4d51-8190-96321d815134", + "charging_station:output": "12 kW", + "capacity": "2", + "ref:EU:EVSE": "FRLUMEVILADELAMARHOTEL11", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "operator": "LUMI'IN", + "description": "VILA DE LA MAR HOTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43077180000, + 43.45352930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Anglet | Parking des Dauphins", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a28c44cb-418c-5e31-af1d-a81cdbc7b761", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54265400000, + 43.49985500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "start_date": "2023-01-26", + "opening_hours": "24/7", + "description": "Pro & Cie - LUNEVILLE", + "ref:EU:EVSE": "FRSE1PSE54LPCA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51544400000, + 48.57901500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "socket:type2_combo:output": "24 kW;150 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS90166;FRBMPS90165;FRBMPS90163;FRBMPS90164", + "ref": "90166;90165;90164;90163", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Campanile Lyon Part Dieu - Lyon", + "charging_station:output": "24 kW;22 kW;150 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86352090000, + 45.76047490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3600EVCP04;LFR3600EVCP01;LFR3600EVCP02;LFR3600EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "CONFLANS EN JARNISY Verdun", + "ref": "LFR3600EVCP04;LFR3600EVCP01;LFR3600EVCP02;LFR3600EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84558600000, + 49.16540400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PUEV5Y4HIUP", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-2E, 38 Rue de L'Evêché", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36617900000, + 43.29890400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TE90/LLNRGU", + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS90PLLNRGU", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "213089", + "network": "TE90" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317000000, + 47.71770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING JAURES PLAN DE LA TOUR", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P83120*PLT*PARKING", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP83120PLTPARKING", + "operator:email": "contact@e55c.com", + "start_date": "2019-12-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54677800000, + 43.33783900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "529244", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GKSM9JPFEJ", + "ref:EU:EVSE": "FRFR1P1600448237048358030" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38259800000, + 48.74112200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PSYUPRD", + "socket:type2_combo:output": "100 kW;188 kW", + "start_date": "2023-08-03", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Super U - Prades", + "opening_hours": "24/7", + "capacity": "9", + "charging_station:output": "100 kW;188 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42880430201, + 42.62532347029 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Le Bourget-Du-Lac, Sud 1, rue mer Caspienne;Réseau eborn/OH9QA6KXPK", + "ref:EU:EVSE": "FREBNP8342276097927962015;FREBNPOH9QA6KXPK", + "ref": "OH9QA6KXPK;346853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87365100000, + 45.64095700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator": "Fastned France", + "description": "Fastned Aire de Vémars Ouest", + "amenity": "charging_station", + "ref": "FRFASE33098", + "network": "Fastned Aire de Vémars Ouest", + "operator:email": "support@fastned.nl", + "ref:EU:EVSE": "FRFASE33098", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55132135000, + 49.07354448000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "LE CONCORDE - CROLLES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPSENT13741;FROTHPSENT13721;FROTHPSENT13711;FROTHPSENT13731", + "ref": "FR*SOD*S*SENT*137*4*_*_;FR*SOD*S*SENT*137*3*_*_;FR*SOD*S*SENT*137*1*_*_;FR*SOD*S*SENT*137*2*_*_", + "network": "LE CONCORDE", + "operator:email": "sav@izivia.com", + "start_date": "2021-07-22;2022-03-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88252300000, + 45.27304800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-05-29", + "description": "Réseau eborn/LLI8VB03EYSCL2;Six-Fours-Les-Plages, Résidence Le Rayolet", + "ref:EU:EVSE": "FREBNPLLI8VB03EYSCL2;FREBNP4186296917799047452", + "opening_hours": "24/7", + "ref": "LLI8VB03EYSCL2;892788", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81114600000, + 43.09127800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "OGZVDJ7RLD;96095", + "description": "Savigneux, Rue Bayard;Réseau eborn/OGZVDJ7RLD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPOGZVDJ7RLD", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08257200000, + 45.60714300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*439*2*_*_;FR*SOD*S*OTHR*439*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "FFF - LIGUE DE FOOTBALL NOUVELLE AQUITAINE - PUYMOYEN", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "ref:EU:EVSE": "FROTHPOTHR43911;FROTHPOTHR43912;FROTHPOTHR43921;FROTHPOTHR43922", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW", + "start_date": "2022-07-22;2022-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16244200000, + 45.62276700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/MP0UEPI09O", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "510527", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6570087181850112497" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36860200000, + 48.73833200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger La Roche-sur-Yon, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP33173", + "owner:ref:FR:SIREN": "524335262", + "capacity": "9", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43189000000, + 46.70123800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1123095", + "network": "Freshmile France", + "description": "Freshmile France/LLV2FQLLV2I523", + "ref:EU:EVSE": "FRFR1P3583195599437209721", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09405800000, + 49.11159000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "ref": "9e5353ab-68f8-5cfe-b6c8-36729e36ca06", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Zone de Test - Integration" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81943100000, + 45.63159400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4972422347823905670", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892095", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIA7NV5H5IHN2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87089200000, + 49.43315300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "1138395", + "description": "MobiSDEC/LLW545C43W8LY5", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8122373729332104472", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18777600000, + 48.89834900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "network": "Zephyre", + "ref:EU:EVSE": "FRZP1P416214075258571634;FRZP1P7365668831890543565;FRZP1P2015435289079073981", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "576329;576230;576287", + "opening_hours": "24/7", + "description": "Zephyre/LP009586;Zephyre/LP009E54;Zephyre/LP00959E", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62624200000, + 48.28228900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "FPB_Castelsarrasin", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE426", + "start_date": "2022-09-29", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09792700000, + 44.06131800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "ref:EU:EVSE": "FRY01E78642005", + "description": "VERNEUIL-SUR-SEINE - Grande Rue", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97222830000, + 48.98351230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bbe7d3a6-3fa1-53d0-89eb-6bad3bf52eea", + "charging_station:output": "50 kW;43 kW", + "operator": "42__CD54", + "description": "CD54 - Parking Covoiturage - Brehain-la-ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89656100000, + 49.44643700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66182001", + "charging_station:output": "22 kW", + "description": "SAINTE MARIE LA MER - Parking Du Stade", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02509800000, + 42.73035500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "operator": "IZIVIA", + "description": "IKEA TOURS - PARKING CLIENTS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRIKAPIKEA12791;FRIKAPIKEA12781;FRIKAPIKEA12771;FRIKAPIKEA12761;FRIKAPIKEA12751;FRIKAPIKEA127251;FRIKAPIKEA127221;FRIKAPIKEA127171;FRIKAPIKEA127141;FRIKAPIKEA127101;FRIKAPIKEA12711;FRIKAPIKEA127111;FRIKAPIKEA127121;FRIKAPIKEA127131;FRIKAPIKEA127151;FRIKAPIKEA127161;FRIKAPIKEA127181;FRIKAPIKEA127191;FRIKAPIKEA127201;FRIKAPIKEA12721;FRIKAPIKEA127211;FRIKAPIKEA127231;FRIKAPIKEA127241;FRIKAPIKEA12731;FRIKAPIKEA12741", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*127*8*_*_;FR*SOD*S*IKEA*127*5*_*_;FR*SOD*S*IKEA*127*4*_*_;FR*SOD*S*IKEA*127*22*_*_;FR*SOD*S*IKEA*127*18*_*_;FR*SOD*S*IKEA*127*15*_*_;FR*SOD*S*IKEA*127*10*_*_;FR*SOD*S*IKEA*127*1*_*_;FR*SOD*S*IKEA*127*11*_*_;FR*SOD*S*IKEA*127*12*_*_;FR*SOD*S*IKEA*127*13*_*_;FR*SOD*S*IKEA*127*14*_*_;FR*SOD*S*IKEA*127*16*_*_;FR*SOD*S*IKEA*127*17*_*_;FR*SOD*S*IKEA*127*19*_*_;FR*SOD*S*IKEA*127*20*_*_;FR*SOD*S*IKEA*127*2*_*_;FR*SOD*S*IKEA*127*21*_*_;FR*SOD*S*IKEA*127*23*_*_;FR*SOD*S*IKEA*127*24*_*_;FR*SOD*S*IKEA*127*25*_*_;FR*SOD*S*IKEA*127*3*_*_;FR*SOD*S*IKEA*127*6*_*_;FR*SOD*S*IKEA*127*7*_*_;FR*SOD*S*IKEA*127*9*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71684700000, + 47.37528600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "PIRE SUR SEICHE - 2 rue du presbytere ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35220001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42986100000, + 48.00989900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "ref:EU:EVSE": "FRS63P63032A", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - Beaumont - Masage (624);SIEG 63/FR*S63*P63032*A", + "amenity": "charging_station", + "start_date": "2022-09-20", + "ref": "518234", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09606500000, + 45.75256000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9060063106877375067", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "559826", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WJPBSARJUV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16994900000, + 49.21696400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "start_date": "2017-03-06", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "TWTEDH;33397", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PTWTEDH", + "description": "Le Fousseret, Place du 11 Novembre;Roulez Électrique En Haute-Garonne/TWTEDH", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06589000000, + 43.28110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DRANCY - Boulevard Paul Vaillant Couturier", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-04-08;2021-12-15", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE93029007", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44765230000, + 48.92238910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "amenity": "charging_station", + "description": "Golf de Mormal - 59144", + "opening_hours": "24/7", + "network": "Golf de Mormal - 59144", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000836;FRCG0E000833;FRCG0E000831;FRCG0E000832;FRCG0E000834;FRCG0E000835", + "ref": "FRCG0E000836;FRCG0E000833;FRCG0E000831;FRCG0E000832;FRCG0E000834;FRCG0E000835", + "start_date": "2023-07-11", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71205700000, + 50.29174100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-22", + "ref": "FR*SOD*S*NICE*215*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - PARKING HOTEL DES POSTES", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE21512;FRM06PNICE21511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27172100000, + 43.69961400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Villeneuve Sur Lot | Parking de la Poste", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "826a0d83-29c2-5d6e-aec4-5ac2db0678e1", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70767300000, + 44.40521200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE35312;FRSIGPSIGE35311", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-02", + "ref": "FR*SOD*S*SIGE*353*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 56 RUE MAURICE BERTEAUX - ERMONT", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26332000000, + 48.98520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CLEON - Place Saint Roch", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76178001", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03285300000, + 49.31338600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2807EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MULHOUSE ILLZACH", + "ref": "LFR2807EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35651600000, + 47.76144300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Toulx-Sainte-Croix | Site des Pierres Jaumâtres", + "capacity": "2", + "amenity": "charging_station", + "ref": "52d6868a-01e6-5c1e-963a-c88058b6e4f4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23122800000, + 46.31065500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "79789", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PRUMFHQ", + "description": "SDE82/RUMFHQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02026000000, + 44.34060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MIN BATIMENT G ET E - AVIGNON", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84000*AVG*M1NGE", + "operator:email": "contact@e55c.com", + "start_date": "2024-06-04", + "ref:EU:EVSE": "FR55CP84000AVGM1NGE", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83501600000, + 43.93381000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3797EVCP02;LFR3797EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "PLEYBEN - Kerflouz", + "capacity": "10", + "ref": "LFR3797EVCP02;LFR3797EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97480000000, + 48.22059600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMFRT", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2022-12-29;2023-04-06", + "charging_station:output": "22 kW;50 kW;100 kW;187.5 kW", + "opening_hours": "24/7", + "capacity": "9", + "operator": "Power Dot France", + "description": "Intermarché - Fronton", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39213400000, + 43.83020100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "OAUEVKIP5N", + "ref:EU:EVSE": "FREBNPOAUEVKIP5N", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Sorbiers, Parking rue Claudius Remilleux", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44996320000, + 45.48772390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref": "FRETIP64122L", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP64122L", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - BIARRITZ Rue de la bergerie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55278903599, + 43.48582522357 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2024-09-22;2024-09-01", + "opening_hours": "24/7", + "description": "Carrefour Market - La Monnerie-le-Montel", + "ref:EU:EVSE": "FRPD1PCCMLMM", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63252371659, + 45.86810392650 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Riorges", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-11-24;2023-12-07", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT421531", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03710800000, + 46.04066400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-02-23", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Le Bourget - Hôtel Kyriad", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPLBOHK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43081300000, + 48.93979000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*548*1*_*_", + "capacity": "2", + "description": "CLUB DU DOMAINE DES HAUTS DE VAUGRENIER - VILLENEUVE LOUBET", + "amenity": "charging_station", + "start_date": "2022-10-19", + "network": "CLUB DU DOMAINE DES HAUTS DE VAUGRENIER", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR54812;FROTHPOTHR54811", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11974900000, + 43.63585000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR VENISSIEUX", + "ref:EU:EVSE": "FRCPIE6745105", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6745105", + "start_date": "2023-06-30", + "description": "SONEPAR VENISSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28580000000, + 48.79980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529493", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4177995194610457658", + "description": "Freshmile France/OTBAPZKKLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05905700000, + 47.35111200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRV20E01154001", + "charging_station:output": "22 kW", + "description": "ETREZ - Route De Montrevel", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18352700000, + 46.33414100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLRKMMUFMWFO1D", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9048404315336812704", + "ref": "1017042", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78465500000, + 49.51873100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRTSLP1767", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Saintes", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66172500000, + 45.75001200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/JCNTJBOJ10", + "ref": "896607", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5449081248960158900", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12653000000, + 43.52059700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Acelec", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-04-30", + "ref:EU:EVSE": "FR073P777022", + "operator:email": "acelec@acelec-france.com", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "opening_hours": "Mo-Fr 08:00-19:00", + "owner:ref:FR:SIREN": "301192464", + "network": "Acelec" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79885400000, + 48.84103200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461850", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P521480115782612378", + "description": "MobiSDEC/NJAYNI3IS5", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24238300000, + 49.19873800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NANT - Allée Chaude", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12168001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30203000000, + 44.02300500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1116321", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "ref:EU:EVSE": "FRWA5P2225245200725662807", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA5L8QGNOBIY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33535000000, + 43.60850500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Saint-Lambert-du-Lattay - Marie Lise;SAINT-LAMBERT-DU-LATTAY - Parking Salle Marie Lise", + "ref:EU:EVSE": "FRS49E49292001;FRS49P49292A", + "start_date": "2021-04-20;2024-04-10;2024-03-26", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62750800000, + 47.30393100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CESTAYROLS - route de villeneuve", + "start_date": "2022-08-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81067001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98416600000, + 43.98110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HAUCOURT - Rue du Général De Gaulle", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-30", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRHDFE62414001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95579970000, + 50.24927680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44224001;FRS44P44224A", + "description": "LA GRIGONNAIS - Route De L'Océan;OuestCharge - Diva Sp - La Grigonnais - Ocean", + "amenity": "charging_station", + "start_date": "2024-04-18;2021-05-21", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66637300000, + 47.52750900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIEG63 - ePremium - Usson - Parking Visiteurs", + "start_date": "2022-12-27", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS63P63439B", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33631480000, + 45.52654960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FRESNES-SUR-ESCAUT - Place Vaillant Couturier", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH03E59253001", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57941500000, + 50.43275500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2917800", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Ploudalmezeau-Rue de Mon Repos" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.69992800000, + 48.55781900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "L'HAY LES ROSES - Rue du Puit", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-08-08", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94038007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33166400000, + 48.76831000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bornevo", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "operator": "Bornevo Connect", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12345986601;FRLMSE12345986611", + "capacity": "1", + "description": "Coulommier Poids Lourds1;Coulommier Poids Lourds 2", + "charging_station:output": "22 kW", + "operator:email": "contact@bornevo.com", + "owner:ref:FR:SIREN": "310745872", + "ref": "AE0022H1GP6C00234N;BOR-AUTEL22-0001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02000000000, + 48.83000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "3e636ef1-e352-5e30-a3e4-6d7465f67bce", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Vezac | Place Regis Magnol", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539700000, + 44.83411800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*SIGE*461*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE46111;FRSIGPSIGE46112", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "start_date": "2024-01-29", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 22 QUAI DASNIERES - VILLENEUVE-LA-GARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33610180000, + 48.93534300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSNISUD", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "NIMES SUD", + "start_date": "2022-12-26", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39307500000, + 43.81843100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3117EVCP01", + "ref": "LFR3117EVCP01", + "description": "VAISON LA ROMAINE Choralies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07902900000, + 44.24307700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "f573a91b-ff2d-56b2-b41e-f6afcae47dc3", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Arthez de Bearn | Place du Palais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61529900000, + 43.46434400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85011001", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BARBATRE - Rue De La Barre Raguideau", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17667400000, + 46.94190100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO8005491;FRALLEGO8005482;FRALLEGO8002002;FRALLEGO8001892;FRALLEGO8001891;FRALLEGO8002001;FRALLEGO8005481;FRALLEGO8005492", + "ref": "FRALLEGO8005491;FRALLEGO8002002;FRALLEGO8001892;FRALLEGO8001891;FRALLEGO8002001;FRALLEGO8005481;FRALLEGO8005482;FRALLEGO8005492", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego FR, Tikehau, TJ2 Perigueux - Marsac", + "start_date": "2024-05-06", + "description": "Allego FR, Tikehau, TJ2 Perigueux - Marsac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66138766000, + 45.19471181000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4003EVCP03;LFR4003EVCP04;LFR4003EVCP01;LFR4003EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4003EVCP03;LFR4003EVCP04;LFR4003EVCP01;LFR4003EVCP02", + "description": "ALBERTVILLE - Armand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37149800000, + 45.65963200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "KFC - Montélimar", + "ref:EU:EVSE": "FRPD1PKFCMTL", + "start_date": "2022-01-19;2022-01-20", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74396100000, + 44.52562700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/SAUDIUNPPA;St Martin D Uriage, Parking Avenue Des Thermes - Rd 523", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SAUDIUNPPA;106943", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPSAUDIUNPPA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82977500000, + 45.14403400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "psasupport@evbox.com", + "network": "EVBOX", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "EVBOX", + "charging_station:output": "22 kW", + "description": "Xavier Delsalle", + "start_date": "2021-09-23", + "owner:ref:FR:SIREN": "489683078", + "ref:EU:EVSE": "FREVBEZLZQ7VD34M2MZZUH4NBEA55XLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21235695568, + 50.56848859815 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Espace Commercial Alpha - Colmar", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2023-09-25", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PECACOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37914489084, + 48.07953811961 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "amenity": "charging_station", + "ref": "50880746-8212-11ee-b962-0242ac120002", + "capacity": "3", + "opening_hours": "24/7", + "description": "Saint-Germain-Laprade", + "operator:email": "ismael@electromaps.com", + "owner:ref:FR:SIREN": "434543864", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "network": "Armstrong France", + "ref:EU:EVSE": "FRE000019057616" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95927000000, + 45.04810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRESEPS42218BN", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-04-19", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRESEPS42218BN", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW", + "description": "SEMOB Basse des Rives" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39543600000, + 45.42399900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "LEVAPARC", + "owner:ref:FR:SIREN": "353347222", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-02-18;2019-04-08", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*LVPR*5*4*_*_;FR*SOD*S*LVPR*5*3*_*_;FR*SOD*S*LVPR*5*1*_*_;FR*SOD*S*LVPR*5*2*_*_", + "operator:email": "sav@izivia.com", + "description": "LEVAPARC - PARKING SO OUEST - CANTON 31", + "ref:EU:EVSE": "FROTHPLVPR542;FROTHPLVPR541;FROTHPLVPR531;FROTHPLVPR522;FROTHPLVPR521;FROTHPLVPR511;FROTHPLVPR512;FROTHPLVPR532" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29724100000, + 48.89300600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "LA BOTTE CHANTILLY", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-03-21", + "description": "LA BOTTE CHANTILLY", + "charging_station:output": "22 kW", + "ref": "FRCPIE6901005", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 09:00-19:00,Tu 09:00-19:00,We 09:00-19:00,Th 09:00-19:00,Fr 09:00-19:00,Sa 09:00-19:00", + "ref:EU:EVSE": "FRCPIE6901005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13004100000, + 50.71975400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "972026", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLP6SVLLW294CQ", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6017844898945964436" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77070500000, + 45.61261100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-01-26", + "description": "ENGIE Vianeo - B&B HOTEL COLMAR VIGNOBLES OUEST", + "ref:EU:EVSE": "FRVIAP122015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31396600000, + 48.08390900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DVSLEX3W4G", + "ref": "487200", + "ref:EU:EVSE": "FRFR1P7905888101956083062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08304100000, + 48.73065100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-11-09", + "opening_hours": "Mo 08:15-12:00, Mo 14:00-19:00, Tu 08:15-12:00, Tu 14:00-19:00, We 08:15-12:00, We 14:00-19:00, Th 08:15-12:00, Th 14:00-19:00, Fr 08:15-12:00, Fr 14:00-19:00, Sa 08:15-12:00, Sa 14:00-19:00", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - GCA - Avranches", + "ref:EU:EVSE": "FRSSDPGCAHYUNDAI503001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35467400000, + 48.69070300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AJSO8D6KCX", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1868977170241578176", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54181600000, + 48.23554500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - St AMAND-MONTROND - Cours Manuel 1", + "ref:EU:EVSE": "FRS18E112836;FRS18E112835", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-17", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS18E112836;FRS18E112835", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - St AMAND-MONTROND - Cours Manuel 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50502000000, + 46.72097000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/XLR3DJICQY", + "operator:email": "roaming@freshmile.com", + "ref": "462015", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P7932540878279196532", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35592800000, + 49.18037400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P1632344170850416319", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1128150", + "description": "WAAT/FRWATLS3PNSQSM", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46706600000, + 48.23081900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P50260001", + "owner:ref:FR:SIREN": "255002883", + "start_date": "2017-05-19", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BRICQUEBEC EN COTENTIN - Cinema", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63158580000, + 49.47188400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "description": "PAULINET - Rue Guillaume de Paulin", + "ref:EU:EVSE": "FRS81E8120300121;FRS81E8120300112;FRS81E8120300111;FRS81E8120300122", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43025664555, + 43.84910266715 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059951", + "capacity": "8", + "description": "RELAIS COSTEBELLE", + "amenity": "charging_station", + "start_date": "2024-09-13", + "ref:EU:EVSE": "FRHPCENF059951", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89890700000, + 43.60718800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29;2021-04-14;2024-04-12", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Saint-Georges-sur-Loire - Monprofit;SAINT-GEORGES-SUR-LOIRE - Place Monprofit", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS49P49283A;FRS49E0490147;FRS49E49283001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75830430000, + 47.40978860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-04-25", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRS59E59321001", + "description": "INCHY - Route Nationale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46252600000, + 50.12270930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARRAS - Boulevard Schuman", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH06E62041012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78157200000, + 50.29727600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALES - Parking Pole Ambulatoire", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "ref:EU:EVSE": "FRS30E30007007", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09753800000, + 44.14763700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Sainte-anne-d'auray - Rue de Vannes", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWMRUPK", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95039200000, + 47.70390600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B149", + "description": "PAYRE QC50-1", + "charging_station:output": "50 kW", + "start_date": "2021-05-11", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346052721;FRLMSE12346052722", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19801100000, + 46.35793200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP93049C", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "475032", + "description": "Métropolis/FR*MGP*P93049*C", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480700000, + 48.85208500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "description": "Réseau AlterBase - Thouars - Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSEOPAB79329P0055A", + "start_date": "2023-01-25", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21660600000, + 46.97554500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "description": "Atlante/FRATL*SAIN4701", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP5339313496769952416", + "ref": "809718", + "capacity": "11", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243100000, + 48.94513100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "start_date": "2022-12-09", + "capacity": "1", + "description": "ENGIE Vianeo - A6 Les Chères Ouest", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89369702", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72857900000, + 45.90275500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Bessines Sur Gartempe | Place du Champ de Foire", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV", + "ref": "08cf089e-985b-5b84-bd3c-b77637220278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36967100000, + 46.10940300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ROVILLE AUX CHENES - Pl. des érables", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS88E159272;FRS88E159270", + "network": "MODULO - ROVILLE AUX CHENES - Pl. des érables", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E159272;FRS88E159270" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60235400000, + 48.38513400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "CALAIS", + "ref:EU:EVSE": "FRALLPEVCARSCALAI", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "start_date": "2023-06-30", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89023000000, + 50.95175000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "GIVET Beauraing", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3603EVCP02;LFR3603EVCP01;LFR3603EVCP03", + "ref": "LFR3603EVCP02;LFR3603EVCP01;LFR3603EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85097200000, + 50.13287700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PV3SQCFZ3B0", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-12E, Avenue des Caillols" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45034300000, + 43.30327900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bourgoin Jallieu, Place Jean Jacques Rousseau;Réseau eborn/USPQX0MDQ8", + "ref:EU:EVSE": "FREBNPUSPQX0MDQ8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "292685;USPQX0MDQ8", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27608200000, + 45.58996000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1174626", + "charging_station:output": "22 kW", + "capacity": "11", + "ref:EU:EVSE": "FRFR1P2953116648171573308", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLX8X5MVDGZVB0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75460000000, + 48.59617300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-06-19", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIBSVDA", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "description": "Ibis Budget - Villeneuve-d'Ascq" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14276130000, + 50.64338160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP1840654673776587899;FREBNPLLMT67I3MYGRL8", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2023-09-25;2023-09-21", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Hyères, 45 avenue Alphonse Denis;Réseau eborn/LLMT67I3MYGRL8", + "ref": "972008;LLMT67I3MYGRL8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13284200000, + 43.12094000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - Château Hôtel de la Commanderie", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP38158A", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP38158A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-11-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74826572247, + 45.14806597696 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*237*1*_*_;FR*SOD*S*OTHR*237*2*_*_", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SUPER U - NIEUL-SUR-MER", + "ref:EU:EVSE": "FROTHPOTHR23721;FROTHPOTHR23711", + "operator:email": "sav@izivia.com", + "start_date": "2021-09-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17558500000, + 46.20268600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref": "FRCPIE6599965;FRCPIE6599985", + "capacity": "4", + "ref:EU:EVSE": "FRCPIE6599965;FRCPIE6599985", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT TOULOUSE 1", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39856400000, + 43.54533600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GJO5868P4K", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "Tu,Mo,Th,Sa,We,Fr 09:30-18:30", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2750571634811550037", + "ref": "705917", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63860600000, + 43.95013800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1116303", + "description": "WAAT/s437298", + "ref:EU:EVSE": "FRWA2P1147720983699545511", + "capacity": "8", + "network": "WAAT", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35536000000, + 48.74308500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLWYQ174D6L24A", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1111935", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7370659382145443275" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68051500000, + 43.45215900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "DBT 180kW Suzuki Domancy;DBT 2x22 Olymp Auto 3;DBT 2x22 Olymp Auto 2", + "ref:EU:EVSE": "FRSWSE1000138208;FRSWSE1000138207;FRSWSE1000138206", + "ref": "1000138206;1000138207;1000138208", + "capacity": "2", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "SOWATT SOLUTIONS", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "start_date": "2023-04-20", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65153300000, + 45.91296300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GYNIQ5AGRO", + "ref:EU:EVSE": "FRFR1P1802188658177353026", + "ref": "471063", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99194400000, + 43.60989200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Apex Location - Castres", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "start_date": "2024-01-09", + "ref:EU:EVSE": "FRSSDPAPEX811001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18956800000, + 43.58801900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E176491", + "ref": "FRS28E176491", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - NOGENT-LE-ROTROU - Pl. St Pol", + "operator": "Modulo", + "network": "MODULO - NOGENT-LE-ROTROU - Pl. St Pol", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82127600000, + 48.32128200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Sa 10:00-19:00, Su 10:00-13:00", + "operator": "SPIE CITYNETWORKS", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "22.0 kW", + "network": "DOMAINE GUEGUEN", + "owner:ref:FR:SIREN": "434085395", + "start_date": "2022-12-12", + "ref": "8fd21380-370e-45b5-901a-a104b0b2deab", + "description": "DOMAINE GUEGUEN", + "operator:email": "jeremie.ferre@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80073280508, + 47.81330803760 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/VE3I1SNXAY", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P3292882729939684853", + "ref": "75464", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82999100000, + 48.31137700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P5733062420782042578;FRZP1P9185804513329173250", + "capacity": "1", + "opening_hours": "24/7", + "ref": "599040;601134", + "description": "Zephyre/LP009E57;Zephyre/LP009E53", + "charging_station:output": "7.4 kW", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52677000000, + 47.42317100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "description": "Hutt_Arcachon", + "ref:EU:EVSE": "FRROSE550", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265947;839265946", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17385270000, + 44.65076500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/SZTURH;SDE82/FR*S82*PSZTURH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref": "347030;159400", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PSZTURH;FRS82P8052958219597707370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08605000000, + 44.10340000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*1*3*_*_;FR*SOD*S*FAST*1*2*_*_", + "description": "IZIVIA FAST - MCDONALDS - NOISY-LE-GRAND MONTFORT", + "ref:EU:EVSE": "FRIZFPFAST133;FRIZFPFAST132;FRIZFPFAST131;FRIZFPFAST123;FRIZFPFAST122;FRIZFPFAST121", + "start_date": "2023-06-27", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56171000000, + 48.83456200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - FRETEVAL - Rue de pont", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - FRETEVAL - Rue de pont", + "ref:EU:EVSE": "FRS41E4091;FRS41E4092", + "ref": "FRS41E4091;FRS41E4092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21029200000, + 47.88758700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896712", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/LLLDOE4932BLY8", + "ref:EU:EVSE": "FRS60P9075720821416013564" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21888900000, + 49.19257200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "LY702 - JEAN JAURES", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRGLYPLYON3722;FRGLYPLYON3711;FRGLYPLYON3712;FRGLYPLYON3721", + "operator:email": "sav@izivia.com", + "start_date": "2020-09-17", + "ref": "FR*SOD*S*LYON*37*2*_*_;FR*SOD*S*LYON*37*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83783500000, + 45.73719900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ROUSSON - Parking Stade Laurent Blanc", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30223001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14962000000, + 44.18350400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/ASJVEZ", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "25090", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PASJVEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.61417000000, + 47.68240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "a50a57d0-be6b-11ed-afa1-0242ac120002", + "start_date": "2023-03-09", + "description": "Auberge de l'escargot d'or", + "ref:EU:EVSE": "FRLUMEAUBERGEESCARGOTDOR11", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08021390000, + 44.51794130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref": "951461", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/9fe62491-5c04-4805-9d7a-e69c09978943", + "ref:EU:EVSE": "FRMW1P3502972268498513763", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56099000000, + 43.71670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE17211;FRSIGPSIGE17212", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 78 RUE DE MEAUX - VAUJOURS", + "start_date": "2021-07-22", + "ref": "FR*SOD*S*SIGE*172*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56954900000, + 48.93491200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001456;FRCG0E002082", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E001456;FRCG0E002082", + "network": "EPAF VACANCES SAINT-LARY SOULAN - 65170 - 1", + "operator:email": "info@chargeguru.com", + "description": "EPAF VACANCES SAINT-LARY SOULAN - 65170 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32502800000, + 42.82269000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - A83 La Parthenaise", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2023-07-07;2023-06-16", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89880004", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50249500000, + 46.43108700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS40PMB405614;FRS40PMB405613;FRS40PMB405612;Non concerné;FRS40PMB405611", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "operator": "199__SYDEC40;IZIVIA", + "start_date": "2020-05-27", + "ref": "327c12a9-664a-5311-94e7-58c803d95fec;FR*SOD*S*MB40*56*1*_*_", + "capacity": "3;4", + "description": "DAX - PLACE DE LA TORTE- RUE JOSEPH DE LAURENS;MOBIVE | Dax | Place de la Torte- Rue Joseph de laurens", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05216900000, + 43.69569400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE77MXGA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "MEAUX - Canton", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90791900000, + 48.94771000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLEGO9003652;FRALLEGO9003651;FRALLEGO9006591;FRALLEGO9006592;FRALLEGO9006621;FRALLEGO9006622", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "network": "Allego Carrefour Guéret", + "ref": "FRALLEGO9003652;FRALLEGO9003651;FRALLEGO9006591;FRALLEGO9006592;FRALLEGO9006621;FRALLEGO9006622", + "description": "Allego Carrefour Guéret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88537200000, + 46.16792700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "description": "METZ Rois", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3463EVCP01;LFR3463EVCP02;LFR3463EVCP03", + "ref:EU:EVSE": "LFR3463EVCP01;LFR3463EVCP02;LFR3463EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19740900000, + 49.11728600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM34E34134001", + "description": "LAVERUNE - Zac Descartes", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79848300000, + 43.59107000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPQNXYMD", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/QNXYMD;Saint-Etienne-De-Saint-Geoirs, Place 19 Mars", + "ref": "39143;QNXYMD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34407000000, + 45.34070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/KD6VCY4UHY", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRFR1P3301575768336236539", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "705938" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39631100000, + 45.25527900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "description": "VERSAILLES - Marché Notre Dame", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E786460012;FRP07E78646001;FRP07E786460011", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2024-03-14;2021-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13085400000, + 48.80683500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPI0SJOBBFTP;FREBNI0SJOBBFTP", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/I0SJOBBFTP;La Mole, Parking Rue Du Four", + "ref": "79204;I0SJOBBFTP", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46395300000, + 43.20833800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "capacity": "12", + "network": "ELECTRA", + "start_date": "2023-06-27", + "description": "A62 - Aire de Garonne (direction Toulouse)", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPAAGART", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00478700000, + 44.04062900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E76351010", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "description": "Parking le Havre Rousseau - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13150644868, + 49.49680522051 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Su 00:00-24:00,Mo 00:00-08:00,Mo 17:00-24:00,Tu 00:00-08:00,Tu 17:00-24:00,We 00:00-08:00,We 17:00-24:00,Th 00:00-08:00,Th 17:00-24:00,Fr 00:00-08:00,Fr 17:00-24:00,Sa 00:00-24:00", + "network": "BORNE SAFER BORNE 2", + "amenity": "charging_station", + "capacity": "4", + "description": "BORNE SAFER BORNE 2", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6630485;FRCPIE6630495", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6630485;FRCPIE6630495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79617100000, + 43.81816100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "NN4XSWH5DX;756894", + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "description": "Le Chesnay-Rocquencourt , Carr de l'Europe;Easy Charge/NN4XSWH5DX", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP8918351379457791308;FRECHPNN4XSWH5DX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12970000000, + 48.82966000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1623", + "ref": "FR*V75*PPX16*23", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Avenue Victor Hugo 18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29155770000, + 48.87244150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PLOMAGNEHOPI", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/Lomagnehopi", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "120551", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65936000000, + 43.85660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "description": "DESFOSSEY - ACCOR - IBIS RED NUITS SAINT GEORGES", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTCBP01167", + "ref": "FRTCBP01167", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "447541541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94774347369, + 47.13177788638 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PBZGNBR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "120806", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BZGNBR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65833000000, + 48.93410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyundai - Autoleader - Arras", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-18:00", + "start_date": "2022-03-11", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPAUTOLEADERHYUNDAI620001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75048700000, + 50.29747900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2911900", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Lanrivoare-Route d'Argenton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.64612000000, + 48.46922700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CASTELNAUDARY - Parking Regional D'Activite Economique", + "ref:EU:EVSE": "FRS11E11076004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-27", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95359500000, + 43.29309100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Auberge du Relais - 22 kW AC", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "315174177", + "ref:EU:EVSE": "FRZP1PEAC87479;FRZP1PEAC87706", + "opening_hours": "24/7", + "network": "Logis Auberge du Relais", + "charging_station:output": "22 kW", + "ref": "00097419-e9e5-4d29-8900-4cb8e51cd844", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85660077000, + 43.50225712000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBIES - Plateau de Beille", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS09E09004001", + "socket:type2_combo:output": "24 kW", + "network": "Reveo", + "start_date": "2022-11-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69116495153, + 42.72479772887 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "FDE 80/ZCLHFY", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PZCLHFY", + "network": "FDE 80", + "ref": "120545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31097000000, + 49.95190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST26113;FRIZFPFAST26112;FRIZFPFAST26111", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref": "FR*SOD*S*FAST*261*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-03", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - JONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45144465458, + 45.43894813888 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-12;2024-04-18;2024-04-21", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "CHATEAUBRIANT - Place De La Motte;OuestCharge - Diva Sp - Chateaubriant - Motte", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44036B;FRS44E44036002", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37759000000, + 47.71818600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77109001;FRS77P77109A", + "start_date": "2023-05-16;2016-08-10", + "description": "Chenoise;CHENOISE - Rue De La Forêt", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61QTR7Y591GGPT9YSB", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19510800000, + 48.61637900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGSPP1000056031;FRGSPP1000056032", + "operator": "GREENSPOT", + "description": "CHÂTEAU DESMIRAIL", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CHÂTEAU DESMIRAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65373977506, + 45.02860531020 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - MANTHELAN – Rte. de Tours", + "ref:EU:EVSE": "FRS37E219961;FRS37E219962", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MANTHELAN – Rte. de Tours", + "start_date": "2023-10-07", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219961;FRS37E219962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78744500000, + 47.14117200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref": "7426ee28-2890-5b42-b8fc-ab5a60e4c10f", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "PETR - Gerbéviller", + "operator": "37__PETR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50980000000, + 48.49520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref": "FRG10P69387AB", + "capacity": "1", + "ref:EU:EVSE": "FRG10P69387AB", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "network": "LPA Parking Berthelot - N1 - Zone 2", + "start_date": "2024-06-26", + "description": "LPA Parking Berthelot - N1 - Zone 2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83667610000, + 45.74622170000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "5365f6c5-071d-52ff-929e-79ad61f56f8c", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | BIARROTTE - Devant Mairie", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27220700000, + 43.56100900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 4 ALLEE PIERRE CORNEILLE - VILLIERS-LE-BEL", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*SIGE*289*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE28912;FRSIGPSIGE28911", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41366400000, + 49.00047800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6507285", + "description": "ALPTIS 25CAT PARC 37 38", + "capacity": "2", + "network": "ALPTIS 25CAT PARC 37 38", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6507285", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86259100000, + 45.74851000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/AQAS4AR37L", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P8099474956247928836", + "ref": "446657", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358400000, + 50.30178400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "d81aa8e4-de78-5b88-9dbe-30c4dfcc9179", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Villars | Parking Cimetiere", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75615900000, + 45.42019700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2015-12-17", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "description": "Réseau AlterBase - La Peyratte - Centre", + "ref:EU:EVSE": "FRSEOPAB31019A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14804100000, + 46.67451200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "height": "37", + "man_made": "tower", + "operator": "EDF", + "owner": "RTE", + "ref:FR:ANFR": "1512402", + "source": "ANFR 08/2019", + "tower:construction": "treillis", + "tower:type": "communication" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20889320000, + 49.97219080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Airbus Spacelog ADS - Toulouse", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPAIRBUS314002", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-11-23", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41121700000, + 43.55330400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR2011EVCP01;LFR2011EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2011EVCP01;LFR2011EVCP02", + "description": "TOURCOING Pont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14619400000, + 50.74043400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/GI557RXISG", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM45P2272695823328367014", + "operator": "Orléans Métropole | FR*M45", + "ref": "414735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91090000000, + 47.93292000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CANNES PARKING PALM BEACH", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2022-04-21", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*143*1*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ14312;FRA16PWIIZ14311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03772000000, + 43.53673000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7414744059447780239", + "opening_hours": "24/7", + "description": "Freshmile France/LLTPWH9NH25F0C", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1034967" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54378400000, + 43.43699100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Boulangerie Charles Sanchez - Cornebarrieu", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBBFCON", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-08-16;2024-08-28", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33420100577, + 43.65064149344 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "La Londe-Les-Maures, Place Victor Hugo;Réseau eborn/CEJHEYUHTK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNCEJHEYUHTK;FREBNPCEJHEYUHTK", + "ref": "79201;CEJHEYUHTK", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23577000000, + 43.13520700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPCSMHC", + "start_date": "2024-01-31", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "La Chapelle-Saint-Mesmin - Hôtel Campanile Orléans Ouest", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85318100000, + 47.90018000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-11-27", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "VALLAURIS - Espace Loisirs", + "ref:EU:EVSE": "FRP07E06155003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05445300000, + 43.58006900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "SONEPAR ST-VULBAS 9", + "amenity": "charging_station", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6696755;FRCPIE6696745;FRCPIE6696735;FRCPIE6699795", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6696755;FRCPIE6696745;FRCPIE6696735;FRCPIE6699795", + "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28390800000, + 45.85642400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "X1GL3ADTTI;446495", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHPX1GL3ADTTI;FRECHP2800531659423380458", + "charging_station:output": "24 kW;22 kW", + "description": "Vienne, Parking Saint-Maurice;Easy Charge/X1GL3ADTTI", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87160000000, + 45.52442000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2022-12-07", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW;62.5 kW", + "description": "ENGIE Vianeo - A49 Porte de la Drôme", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP103106", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21120100000, + 45.07570300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2723981332089982877", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1023264", + "description": "Freshmile France/LLSLIX44S10877", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00596200000, + 44.73566800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue du Bac 142", + "capacity": "5", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX07*09", + "amenity": "charging_station", + "start_date": "2021-08-17", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0709", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32379680000, + 48.85081940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7032373409582375397", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "742971", + "description": "Freshmile France/stgillestama", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.22370000000, + -21.04010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Toyota Lexus- Avignon (Montfavet)", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-19:00", + "start_date": "2021-03-30;2021-05-12", + "ref:EU:EVSE": "FRSSDPMAURINTOYOTA841401", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "capacity": "9", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87638700000, + 43.91940500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22780001", + "start_date": "2023-05-16", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LOGUIVY-PLOUGRAS - Parking Mairie", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48735000000, + 48.52179100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "description": "MODULO - BOURGES - Rue Maurice Roy(SDE18)", + "ref": "FRS18E186239", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BOURGES - Rue Maurice Roy(SDE18)", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E186239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41450400000, + 47.08165400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*FR1*PLLRKRXOU52EAJK", + "charging_station:output": "7 kW", + "operator:email": "eric.guilbaud@eiffage.com", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "775635543", + "opening_hours": "24/7", + "network": "BORNE IRVE PARKINGS AURILLAC", + "operator": "EIFFAGE ENERGIE SYSTEME INFRA LOIRE AUVERGNE", + "description": "Parking Fraternité" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44000000000, + 44.92000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPY1P2587674308745386111", + "operator:email": "contact@mobilygreen.fr", + "ref": "705722", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "PICOTY", + "operator": "Mobilygreen | FR*PY1", + "description": "PICOTY/8f03a2bc-076d-40d6-b166-5cb586e28835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82775800000, + 46.74633400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E81017001", + "start_date": "2023-06-29", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ARIFAT - Route du Bois d'Arifat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32968100000, + 43.77290500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bolleville Est;IONITY GMBH", + "ref": "FRIOYE402353;FRIOYE402352;FRIOYE402351;FRIONE402300;FRIOYE402301;FRIOYE402302", + "description": "IONITY Bolleville Est;Bolleville Est", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE402353;FRIOYE402351;FRIONE402300;FRIOYE402301;FRIOYE402302;FRIOYE402352", + "start_date": "2021-07-01;2021-06-29", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "operator": "IONITY", + "capacity": "3;5", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54714500000, + 49.61432400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-BREVIN-LES-PINS - Boulevard De L’Océan", + "start_date": "2024-04-24", + "ref:EU:EVSE": "FRS44E44154004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18016791300, + 47.23219299000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "01F5ZAKH61N4G320YY8QC4KCNC", + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77365001;FRS77P77365A", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-17;2016-04-13", + "description": "Le Plessis-Feu-Aussoux;LE PLESSIS-FEU-AUSSOUX - Rue De La Vacherie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03338900000, + 48.71323800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62765010", + "description": "SAINT-OMER - Enclos Saint-Denis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25774600000, + 50.74958800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS37E4315;FRS37E4314;FRS37E4313;FRS37E4312", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "start_date": "2019-03-18", + "capacity": "4", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - SUPER CHARGEUR SORIGNY - A10", + "operator": "Modulo", + "ref": "FRS37E4315;FRS37E4314;FRS37E4313;FRS37E4312", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SUPER CHARGEUR SORIGNY - A10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67212600000, + 47.25431200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PNFGWPG", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Lorient - Rue Raymond du Rallier du Baty", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2017-01-04", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37337700000, + 47.73176300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGLYPLYON16111;FRGLYPLYON16121;FRGLYPLYON16131;FRGLYPLYON16141", + "capacity": "1", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*161*3*_*_;FR*SOD*S*LYON*161*1*_*_;FR*SOD*S*LYON*161*2*_*_;FR*SOD*S*LYON*161*4*_*_", + "description": "VIL12 - INSA - EINSTEIN", + "start_date": "2022-04-06", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87920300000, + 45.78250900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMELP5983001", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "BOUVINES - Chaussée Brunehaut", + "amenity": "charging_station", + "opening_hours": "24/7", + "network": "MEL", + "ref": "FR*MEL*P59830*01", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18944900000, + 50.57909000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "OPEL - Villeneuve d'Ascq", + "start_date": "2020-01-03", + "ref:EU:EVSE": "FRSSDPEURAUTOOPEL596501", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11921000000, + 50.63729800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6588525;FRCPIE6588515", + "network": "ENVSN OUEST", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-05-31", + "description": "ENVSN OUEST", + "ref": "FRCPIE6588525;FRCPIE6588515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12167300000, + 47.50860700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/OMOWLNFECU", + "ref:EU:EVSE": "FRLE2P4970638458376698199", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref": "446777", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751800000, + 48.17635300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Libourne | Allées Robert Boulin", + "capacity": "2", + "amenity": "charging_station", + "ref": "f3c3f116-341a-5cf0-ba90-2a4bd7edc637", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24121800000, + 44.91774000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95052001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BEAUMONT SUR OISE - Rue de Paris", + "start_date": "2024-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28490100000, + 49.14190500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "charging_station:output": "50 kW;300 kW;43 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "ref:EU:EVSE": "FRALLPCAS005", + "network": "CASINO AVIGNON", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "capacity": "10", + "start_date": "2022-06-04", + "description": "CASINO AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83458514000, + 43.92786260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4110EVCP02;LFR4110EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LA COTE SAINT ANDRE", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4110EVCP02;LFR4110EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24040300000, + 45.39268200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PDM2AYCTUS2", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "description": "Marseille, Rue Henri Tommasi", + "operator:email": "support@evzen.com", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41219900000, + 43.24526200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P9021256834992354919", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/VEL4IGFHEO", + "ref": "402638" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28704700000, + 48.21738100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-04-18", + "ref": "FR*SOD*S*WIIZ*273*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "PEYMEINADE - PARKING PLACE DU CENTENAIRE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ27311;FRA16PWIIZ27312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87707860000, + 43.64111720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3490424769081909718", + "operator:email": "roaming@freshmile.com", + "ref": "529154", + "amenity": "charging_station", + "description": "Freshmile France/CT0ATMJPPT", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41847600000, + 48.25629200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-02-01", + "description": "Marché Frais - Orgeval", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PMRFORG", + "charging_station:output": "50 kW;200 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98617517791, + 48.92711498483 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FDY5ILTA9I;30095", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/FDY5ILTA9I;Autrans, Parking Voie du 6 Février 1968", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPFDY5ILTA9I", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54430500000, + 45.17359600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "1173357", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP2998624911063233453", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "description": "EVzen/C0C57E10-4332-408A-BF10-121CC4C16350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24402600000, + 46.57801100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR60012;FROTHPOTHR60011;FROTHPOTHR60021;FROTHPOTHR60022", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-02", + "ref": "FR*SOD*S*OTHR*600*2*_*_;FR*SOD*S*OTHR*600*1*_*_", + "description": "FFF - LIGUE DE FOOTBALL DOCCITANIE", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54870800000, + 43.69245500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Roche-La-Moliere, Parking rue Joseph Sanguedolce", + "ref:EU:EVSE": "FREBNPDBT65NAW0K", + "ref": "DBT65NAW0K", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33709300000, + 45.43521750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "X9ACD664IX;741129", + "ref:EU:EVSE": "FREBNP5139059624401395564;FREBNPX9ACD664IX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/X9ACD664IX;LA SEYNE SUR MER , Rue de Lisbonne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85523200000, + 43.10795800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP121019", + "start_date": "2023-07-13", + "description": "ENGIE Vianeo - Hôtel Campanile Calais", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87747800000, + 50.94796600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/OJGQG93S4C", + "opening_hours": "24/7", + "ref": "466143", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P291727078981199476" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71115500000, + 48.57907800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue du Départ 23", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX14*06", + "ref:EU:EVSE": "FRV75PPX1406", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32330500000, + 48.84217300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4617600024857176576", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/PMVU9IRAML", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "370142", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210400000, + 44.83526400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPSIBLU171901", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2023-02-09", + "description": "Mer et Soleil (Camping Siblu) - Lieusaint", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36643200000, + 45.96011400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900020", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PLOUVIERSOFFTOURISME", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17084000000, + 49.21100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "description": "Carnoet-Place de la mairie", + "ref:EU:EVSE": "FRS22E22031001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51982500000, + 48.36746600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY03E95637001", + "network": "Seymaborne", + "description": "VAURÉAL - Sérénade", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01963000000, + 49.03239000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Kiloutou_Fretin", + "start_date": "2021-10-06", + "ref:EU:EVSE": "FRROSE162", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13713100000, + 50.57847600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "1085853", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP379085244392999261", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATL6U3CXUDE", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25485700000, + 48.77859600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRIOYE101206;FRIOYE101205;FRIOYE101204;FRIOYE101203;FRIOYE101202;FRIOYE101201", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2019-07-30", + "network": "Tours La Longue Vue", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "Tours La Longue Vue", + "charging_station:output": "350 kW", + "ref": "FRIOYE101206;FRIOYE101205;FRIOYE101204;FRIOYE101203;FRIOYE101202;FRIOYE101201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77698730000, + 47.47546806000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - GIFFAUMONT CHAMPAUBERT - Casino", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E48889;FRS51E48890", + "start_date": "2020-12-11", + "ref": "FRS51E48889;FRS51E48890", + "network": "MODULO - GIFFAUMONT CHAMPAUBERT - Casino" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76578800000, + 48.55460100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "JUILLAN - Pyrenees aeropole", + "ref:EU:EVSE": "FRS65E65235001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00772700000, + 43.18735500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "network": "Taden", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE000901;FRIENE000902", + "description": "Taden", + "ref:EU:EVSE": "FRIENE000901;FRIENE000902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05770000000, + 48.49110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34192001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "PALAVAS LES FLOTS - Avenue De L'Abbe Brocardi", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92747100000, + 43.53284800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "21901", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PLNEXBM", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/LNEXBM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87981000000, + 48.06710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8331030057021584569", + "ref": "578900", + "description": "Freshmile France/JA7BNPMKOY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603200000, + 49.53538800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30341001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "VAUVERT - Parking Raymond Erb", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27412800000, + 43.69509200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 09:00-17:30", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRSSDPHESSJEEP680001", + "charging_station:output": "22.08 kW", + "start_date": "2020-07-01", + "description": "Jeep - HESS - Colmar", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37910800000, + 48.10432500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-03", + "ref:EU:EVSE": "FRC2P007901;FRC2P007902", + "description": "FMP", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRC2P007902", + "network": "FONCIERE MAGNER PATRIMOINE", + "owner:ref:FR:SIREN": "437540255", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "operator:email": "contact@car2plug.fr", + "opening_hours": "Mo-Fri 07:00-22:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75929320000, + 45.62993020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LODGING LE LAC", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "start_date": "2022-10-19", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMELODGING11", + "operator": "LUMI'IN", + "ref": "edc67b91-db41-4aa1-bfa4-e3c2a885e0c1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14000000000, + 45.00000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "12be2f86-d9ec-5d77-93de-4e2b0513f160", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | Vergt | Place Charles Mangold", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71839000000, + 45.02641000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE39LACA", + "start_date": "2024-03-14", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "description": "MAGELLAN GARE - LONS LE SAUNIER", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55391600000, + 46.66865200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "ref:EU:EVSE": "FRBHMP7515287601701880010", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "BornEco/65d46ea42976e175080e50c5", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "ref": "1111893" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26939200000, + 46.40753200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Leclerc/HKXDNK2J5W", + "ref:EU:EVSE": "FRLE2P6926814348176751585", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref": "477762" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20907800000, + 50.69865900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Saint-Savournin, Chemin du Cimetière", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PAKTRQMXLWX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52568100000, + 43.40751000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS89P1869461546193993314", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402641", + "network": "SDEY", + "description": "SDEY/VHOOTUNF03", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58040200000, + 47.84792300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363743", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "R3 - Norauto Loos", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00296000000, + 50.61395700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref": "892671", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ZBH7CKKHWZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6630381670644019764", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81729200000, + 47.01462700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-05", + "ref:EU:EVSE": "FRPD1PSYUJVL", + "opening_hours": "24/7", + "description": "Super U - Joinville", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15696558332, + 48.44688671189 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "VCES3C1APO;79231", + "description": "Roquebrune-sur-Argens, Boulevard Ferdinand Clavel;Réseau eborn/VCES3C1APO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNVCES3C1APO;FREBNPVCES3C1APO", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63453200000, + 43.44262700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1057104", + "description": "EVzen/C8D4F74A-CDFA-4584-BC23-A5A062950FEA", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP8938095484205159240", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90595900000, + 47.49680600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "charging_station:output": "43 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR80412;FROTHPOTHR80411", + "ref": "FR*SOD*S*OTHR*804*1*_*_", + "opening_hours": "24/7", + "start_date": "2024-03-19", + "description": "BRUMATH -", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71173066323, + 48.73053148147 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPELRFKZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref": "30179;ELRFKZ", + "description": "Réseau eborn/ELRFKZ;Leyrieu, Place du 8 Mai 1945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25441000000, + 45.75900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1179678;LLYMNZ1XS1EPO0", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-07-15", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LLYMNZ1XS1EPO0;Le Puy-en-Velay, Parking Îlot Titaud", + "ref:EU:EVSE": "FREBNPLLYMNZ1XS1EPO0;FREBNP7774252186478881378", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88048600000, + 45.04138000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "ref": "FR*SOD*S*OTHR*407*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-05-27", + "opening_hours": "24/7", + "network": "OMBRIWATT-ST LAURENT BLANGUY", + "ref:EU:EVSE": "FROTHPOTHR40711", + "description": "MAIRIE DE ST LAURENT BLANGUY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80140500000, + 50.29946100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "971963", + "description": "Freshmile France/LLP0XIZ0323269", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3589775778698168138", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45627400000, + 48.40189700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Artenay, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP33155", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86469250000, + 48.08297920000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7804187114571785447", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1175031", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLZ2HSKY71FVEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48493600000, + 45.21316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Total Charging Services", + "charging_station:output": "7 kW", + "opening_hours": "Mo-Fr 08:00-12:15,Mo-Fr 13:30-19:00,Sa 08:00-12:30,Sa 13:30-17:00", + "ref:EU:EVSE": "FRTCBP02715", + "network": "Carglass Services SAS - Herblay sur seine", + "amenity": "charging_station", + "description": "Carglass Services SAS - Herblay sur seine", + "owner:ref:FR:SIREN": "425050556", + "start_date": "2024-04-12", + "ref": "FRTCBP02715", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12649920953, + 49.02689443555 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P474209591164266181", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "591161", + "description": "Freshmile France/J7HVU7TKDJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44105400000, + 42.59565400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461883", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P8552366257808646108", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/PPAT8F1AHP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21205400000, + 49.20010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "488482985", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-01-10", + "description": "Mazda - Avignon - 22kW AC ", + "network": "MAZDA AVIGNON", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "96887", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-19:00", + "ref:EU:EVSE": "FRZMAE22AC96887", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84281100000, + 43.92654300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "CityCamp_Strasbourg", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-07-18", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71677800000, + 48.57532500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES MUREAUX - Rue Descartes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRY01E78440004", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89276900000, + 48.98273100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE462853;FRIOYE462852;FRIOYE462851;FRIOYE462803;FRIOYE462801;FRIOYE462802;FRIOYE462804;FRIOYE462805;FRIOYE462806", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE462853;FRIOYE462852;FRIOYE462851;FRIOYE462806;FRIOYE462801;FRIOYE462802;FRIOYE462803;FRIOYE462804;FRIOYE462805", + "start_date": "2023-08-31", + "opening_hours": "24/7", + "network": "Rochefort", + "description": "Rochefort", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97777700000, + 45.95544600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2021-04-07", + "description": "OuestCharge - Diva Sp - Meslay-Du-Maine - Poste", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "network": "TEM53", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS53P53152A", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200082477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55192300000, + 47.95096000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66124001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "FONT-ROMEU - Avenue D'Espagne", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03767400000, + 42.50433300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20822980000, + 49.97121300000 + ], + [ + 1.20802700000, + 49.97163440000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE012602;FRIENE012601", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE012602;FRIENE012601", + "operator": "NW IECharge", + "description": "Liny-Devant-Dun B", + "network": "Liny-Devant-Dun B", + "start_date": "2024-03-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19443700000, + 49.35978400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35127001B1", + "description": "GUIGNEN - 1 place de l eglise ", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86051200000, + 47.91996400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SEES", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61464A", + "ref": "SE61-SEES-001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17128000000, + 48.60753600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/XVUPAYBDCJ", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P538929814536975076", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892665" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58925400000, + 44.85612700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "ref:EU:EVSE": "FRS31PUXRGDF", + "ref": "UXRGDF", + "opening_hours": "24/7", + "start_date": "2017-12-15", + "operator": "Freshmile SAS", + "description": "Fonsorbes, Intermarché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22590000000, + 43.53300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE92050019", + "start_date": "2023-01-17", + "network": "SIPPEREC", + "description": "NANTERRE - Rue Waldeck Rochet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19782020000, + 48.89036380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E000553;FRCG0E000555", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-29", + "description": "Logis Hôtel Ô en Couleur - 41290", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E000553;FRCG0E000555", + "network": "Logis Hôtel Ô en Couleur - 41290", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29581000000, + 47.82303300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE18812;FRM06PNICE18811", + "start_date": "2022-07-12", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*188*1*_*_", + "charging_station:output": "22 kW", + "description": "ROURE - PARKING VILLAGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08875680683, + 44.09056268824 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Duras | Place de L'Union", + "ref": "8f559cc8-d9f1-5c79-80a1-fa582edde902", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18111100000, + 44.67555600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*327*1*_*_", + "start_date": "2023-01-31", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE32712;FRSIGPSIGE32711", + "description": "SIGEIF - 11 RUE BLANCHE - PARKING MISTINGUETT - ENGHIEN-LES-BIENS", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30957300000, + 48.97244300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "bp France", + "charging_station:output": "300 kW;22 kW", + "start_date": "2024-09-05", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "542034327", + "network": "bp pulse", + "capacity": "11", + "socket:type2_combo:output": "300 kW", + "operator:email": "bppulsefranceops@bp.com", + "description": "AUBAGNE BAUMONNE GEMENOS", + "ref:EU:EVSE": "FRBPEPE3EA004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59777300000, + 43.29810800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3152EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "VERT ST DENIS RN 6", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3152EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63123400000, + 48.56339600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Sainte-Bazeille | Route de Montplaisir", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "ref": "69386884-2855-5b7a-b79d-05b2f308b671" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10291000000, + 44.53689700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Mennecy - Boulevard de la Verville", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "capacity": "10", + "ref": "35a632d0-d8bb-5004-9b3f-1d00ec311600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41803800000, + 48.55386000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "PARKING FREDERIC MISTRAL - CAVALAIRE", + "ref": "FR*55C*P83240*CAV*M1STRAL", + "operator:email": "contact@e55c.com", + "start_date": "2024-02-15", + "charging_station:output": "22.08 kW;7.36 kW", + "ref:EU:EVSE": "FR55CP83240CAVM1STRAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53426300000, + 43.17757500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ST PIERRE LES ELBEUF Bonport", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3458EVCP02;LFR3458EVCP01;LFR3458EVCP03", + "ref:EU:EVSE": "LFR3458EVCP02;LFR3458EVCP01;LFR3458EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04308800000, + 49.28941900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "120 kW;60 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "ref:EU:EVSE": "FRPD1PITMBNL", + "operator": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW;60 kW", + "description": "Intermarché - Bannalec", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70496280000, + 47.92657070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/TPZYRFBBHS", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPTPZYRFBBHS", + "capacity": "2", + "amenity": "charging_station", + "ref": "96026", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05900000000, + 46.03256200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRETIP59524A", + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - Carrefour Sainghin", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "start_date": "2023-11-22", + "ref:EU:EVSE": "FRETIP59524A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89944054098, + 50.56462515742 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E41018001", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-09-12", + "description": "Parking gare de Blois - EFFIA", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32376200000, + 47.58545860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-10-24", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Carentan", + "ref:EU:EVSE": "FRDRVPCRFMKT505001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25532900000, + 49.30962300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "start_date": "2024-08-22", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPCLFCC", + "description": "Clermont-Ferrand - CC Village des Commerçants", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13781400000, + 45.78943500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-27", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR52211;FROTHPOTHR52212", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*522*1*_*_", + "operator:email": "sav@izivia.com", + "description": "BRICOMARCHE - IS SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11295700000, + 47.52735500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "capacity": "8", + "network": "EPPENDORF BORNE 4", + "amenity": "charging_station", + "description": "EPPENDORF BORNE 4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6727085;FRCPIE6727095;FRCPIE6727105;FRCPIE6727115", + "ref": "FRCPIE6727085;FRCPIE6727095;FRCPIE6727105;FRCPIE6727115" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15692300000, + 48.90811700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "801660", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6785046758584316714", + "description": "Freshmile France/QQFB82S3YL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35253300000, + 48.97321700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRURWPUNIB241;FRURWPUNIB232;FRURWPUNIB231;FRURWPUNIB222;FRURWPUNIB221;FRURWPUNIB212;FRURWPUNIB211;FRURWPUNIB242", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*UNIB*2*4*_*_;FR*SOD*S*UNIB*2*3*_*_;FR*SOD*S*UNIB*2*1*_*_;FR*SOD*S*UNIB*2*2*_*_", + "description": "RENNES ALMA - PKG VERT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096", + "start_date": "2018-11-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67876700000, + 48.08248100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "735210", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7251254976423366553", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VSKJMEF5WR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92319400000, + 45.52570900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "09911164", + "network": "09911164", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTNME09911164;FRTNME08912218", + "ref": "FRTNME09911164;FRTNME08912218", + "capacity": "4", + "charging_station:output": "0 kW", + "start_date": "2021-06-01", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35373600000, + 48.85647700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PUZGJABMS9;Freshmile France/YQMAE8C3MB", + "socket:type2_combo:output": "20 kW;60 kW", + "ref:EU:EVSE": "FRFR1P3632968341672421;FRFR1P754592973341638120", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref": "682211;682295", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "11 kW;20 kW;60 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85245500000, + 45.50218600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/TUU49NLCLV;MobiSDEC/YGKZQ5NRRM;MobiSDEC/JJ44TQLKVR", + "opening_hours": "24/7", + "ref": "457485;457608;461961", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1408752274366366513;FRS14P8445453087920798768;FRS14P7228576894511599083" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22978800000, + 49.13812300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12110001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "GOLINHAC - Le Bourg D519", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58197700000, + 44.60511400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA4P8931354621101627397", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA4LPTTQDXDC", + "ref": "880173", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11860900000, + 49.48385500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49E49244001;FRS49P49244A", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - Diva Sp - La Pommeraye - Chais;LA POMMERAYE - Place des Chais", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "start_date": "2021-04-16;2024-04-03", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85869600000, + 47.35603300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS72E72168001", + "start_date": "2022-10-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LOUE - Rue de la Libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15264990000, + 47.99349740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH16E59310001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "HON HERGIES - Rue Gaston Genarte", + "network": "pass pass électrique", + "start_date": "2022-09-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81406500000, + 50.32981200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2021-04-20", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "SAVENAY - Rue De Verdun;OuestCharge - Diva Sp - Savenay - Verdun", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44E44195002;FRS44P44195B", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93995500000, + 47.35869100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG 63/FR*S63*P63319*A;SIEG63 - ePremium - Saint Antheme - Ambert", + "ref:EU:EVSE": "FRS63P63319A", + "ref": "518411", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW", + "start_date": "2022-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91489800000, + 45.52734800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH02E59392004", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAUBEUGE - Entrée du Zoo", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96667200000, + 50.27914300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34031002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "BESSAN - Zac Capucière", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42849700000, + 43.37367900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CRETEIL - Avenue du General de Gaulle", + "start_date": "2023-01-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94028016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44535133068, + 48.79108559886 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*354*1*_*_", + "network": "NICE RP", + "start_date": "2024-07-02", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT-LAURENT-DU-VAR - VERDUN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE35412;FRM06PNICE35411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19253355857, + 43.65867285673 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Saint Crepin de Richemont | Place du Foirail", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "c7b0dd34-8868-5e55-9f94-0ca30511c1d0", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60014900000, + 45.41760300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2023-11-17", + "network": "SIGEIF", + "description": "SIGEIF - 1905 ALLEE DES RECOUDES - GENNEVILLIERS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE43612;FRSIGPSIGE43611", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*436*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30449000000, + 48.94125500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "start_date": "2022-09-21", + "description": "ANGLET", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies", + "ref:EU:EVSE": "FRALLPEVCARSANGLT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49918400000, + 50.63668800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SAINT ETIENNE - Rousseau", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3933EVCP03;LFR3933EVCP01;LFR3933EVCP02", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3933EVCP03;LFR3933EVCP01;LFR3933EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37829600000, + 45.44380100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6c332749-81f1-569d-9da5-bbe2a3b7c717", + "description": "MOBIVE | Biarritz | Parking Beaurivage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56597500000, + 43.47648200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MORIERES-LES-AVIGNON - Place Émile Zola", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "13843980-1eff-5137-ba57-261d88ea0b4b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90652600000, + 43.94196300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA05E78464001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ORCEMONT - Mairie", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81085950000, + 48.58666580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2849EVCP02;LFR2849EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR2849EVCP02;LFR2849EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "DIVES SUR MER Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11022700000, + 49.28548100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "30 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-04-25", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PITMVLS", + "opening_hours": "24/7", + "description": "Intermarché - Veneux les Sablons", + "socket:type2_combo:output": "30 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81114946438, + 48.37529528501 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/WIBXDEW7O1", + "ref": "31615", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNPWIBXDEW7O1", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06313400000, + 46.03767000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Evadea | FR*EVA", + "charging_station:output": "22 kW;180 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "description": "E-VADEA/FR*EVA*P14079*A", + "opening_hours": "24/7", + "ref": "1111248", + "network": "E-VADEA", + "ref:EU:EVSE": "FREVAP14079A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02934700000, + 49.33918700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCRFBRD", + "start_date": "2023-07-24", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Bordeaux", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63416820000, + 44.86054280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-09", + "network": "DRIVECO", + "description": "Carrefour Market - Saint-Soupplets", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT771651", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80044900000, + 49.03560200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRESEPS42218AL", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "start_date": "2019-08-30", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42218AL", + "description": "SEMOB Parc de l'Europe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41321700000, + 45.42052200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "EDF-EV100", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-11-02", + "description": "HYDRO EST GERSTHEIM - EXTERIEUR", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG41152;FROTHPIZIG41151;FROTHPIZIG41142;FROTHPIZIG41141;FROTHPIZIG41132;FROTHPIZIG41131;FROTHPIZIG41121;FROTHPIZIG41122", + "ref": "FR*SOD*S*IZIG*411*5*_*_;FR*SOD*S*IZIG*411*2*_*_;FR*SOD*S*IZIG*411*3*_*_;FR*SOD*S*IZIG*411*4*_*_", + "operator:email": "sav@izivia.com", + "charging_station:output": "22 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72700000000, + 48.40439000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUSSOIS PLAN CHAMP", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-03-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6855025", + "network": "AUSSOIS PLAN CHAMP", + "ref": "FRCPIE6855025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74237700000, + 45.23096500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/ZFO5IA8AIX", + "ref:EU:EVSE": "FRFR1P135666765372337321", + "ref": "368989", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60371500000, + 44.84990000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL CORBEIL-ESSONNES", + "start_date": "2024-02-02;2024-03-19", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46008500000, + 48.61044300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3454429268101506782", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/N1TAYO5AC4", + "ref": "419124", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54762000000, + 46.67520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "description": "Tesla Supercharger Poitiers Sud, France", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP28778", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29589700000, + 46.54776700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "471042", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7434769147061031957", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DN0FDTWVO7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89166500000, + 42.74010800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/NUVRR1EADB", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "457524", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P250440452309541890" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88490000000, + 48.84539000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P3027134180582713654", + "ref": "467493", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/JLGGHEVQB8", + "opening_hours": "24/7", + "network": "MobiSDEC", + "charging_station:output": "50 kW;44 kW", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70669200000, + 49.27086300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P8591868378366585573", + "network": "WAAT", + "description": "WAAT/FRWA6LQHTXK4BM", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1127967" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84588100000, + 44.94709300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-29", + "ref:EU:EVSE": "FRS50P50160001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "description": "TORIGNY LES VILLES - Orangerie", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97762000000, + 49.03450300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "MAZAMET - Parking De La Gare", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8116300322;FRS81E8116300321;FRS81E8116300312;FRS81E8116300311", + "start_date": "2017-06-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37421798700, + 43.49774932900 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF059600", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680726;531680723;531680724;531680725", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF059600", + "network": "TotalEnergies Charge Rapide", + "start_date": "2021-11-04;2021-10-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "175 kW", + "description": "RELAIS LA PORTE D'ALSACE NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13640000000, + 47.71670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS48E48094001", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo", + "description": "LE MASSEGROS - Rd 32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17403800000, + 44.30914900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/FTJNQSUBFI", + "ref:EU:EVSE": "FRS56P9135504461771764311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "ref": "541910" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34248300000, + 47.81052400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19852700000, + 49.96909400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "OUTREAU - Rue du Biez", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH05E62643002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59310000000, + 50.70552800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Trégourez - Rue de la Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2929100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.86268400000, + 48.10658600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PEETZMB", + "network": "Morbihan Energies", + "start_date": "2016-07-21", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Riantec - Rue Le Gloahec", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31030400000, + 47.71214900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-13", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "SAINT-BENOIT-1-1;SAINT-BENOIT-1-2", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346052202;FRLMSE12346052201;FRLMSE12346052192;FRLMSE12346052191", + "operator:email": "irve@soregies.fr", + "ref": "B120" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34213000000, + 46.54956800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "SPIE CITYNETWORKS", + "charging_station:output": "7 kW", + "description": "Metropolis - Proximité - Epinay-sur-Seine - Avenir", + "start_date": "2021-11-25", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93031C", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608577000, + 48.95828488000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE91114016", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-27", + "description": "BRUNOY - Rue de l'Esperance ", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50762940000, + 48.69268140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "description": "Atlante/FRATLFR00308", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;100 kW;300 kW;150 kW", + "capacity": "42", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRATLP5265755855042362855", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref": "995023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45727100000, + 45.62296100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "start_date": "2023-07-13", + "amenity": "charging_station", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1000101739", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech", + "description": "Howdens Toulouse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39814900000, + 43.54335100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-08-11", + "operator:email": "olivier@eqos.fr", + "amenity": "charging_station", + "description": "LMS Charge", + "network": "LMS Informatique", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMAPP000000006951", + "operator": "LMS Informatique", + "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", + "owner:ref:FR:SIREN": "482399896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39817100000, + 46.69898100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85226001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-05-31", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "SAINT-HILAIRE-DE-RIEZ - Avenue De L'Isle De Riez" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96324000000, + 46.71120800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRALLEGO9007232;FRALLEGO9007231;FRALLEGO9007052;FRALLEGO9000511;FRALLEGO9000512;FRALLEGO9007051", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Saint-Martin-au-Laert", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9007232;FRALLEGO9007231;FRALLEGO9007052;FRALLEGO9000511;FRALLEGO9000512;FRALLEGO9007051", + "description": "Allego Carrefour Saint-Martin-au-Laert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24382400000, + 50.75448100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 08 - DUMONT DURVILLE", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "ref": "FR*SOD*S*MAMP*6*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRIZMPMAMP622;FRIZMPMAMP621", + "network": "IZIVIA", + "operator:email": "sav@izivia.com", + "start_date": "2022-03-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38570800000, + 43.27134300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22 kW;150 kW;100 kW", + "ref:EU:EVSE": "FRPD1PMATRON", + "opening_hours": "24/7", + "description": "Match - Ronchin", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07617398603, + 50.60410705034 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPJWSJQ6RNHM;FREBNP123535727236337575", + "description": "Réseau eborn/JWSJQ6RNHM;Chambery, 658 Avenue de Lyon Hôpital", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "JWSJQ6RNHM;346778" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91190700000, + 45.56205200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "541781", + "network": "Freshmile France", + "description": "Freshmile France/KB1PIN41BH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6438286302527854198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53119200000, + 49.15001500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis - Gap", + "ref:EU:EVSE": "FRPD1PIBSGAP", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "start_date": "2024-01-20", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08449010000, + 44.55943740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chateaudouble, Saint-Eloi;Réseau eborn/SZIFDMFRBK", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SZIFDMFRBK;85871", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNSZIFDMFRBK;FREBNPSZIFDMFRBK", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45022800000, + 43.59787500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "description": "e-Totem - 3M - Castelnau Le Lez - Palais des Sports", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP34057C", + "ref": "FRETIP34057C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91747101314, + 43.64537393204 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*2*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-11-06", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR211;FROTHPOTHR212", + "network": "B2G DIFFUS", + "description": "REMPARTS - OBERNAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48623500000, + 48.46038100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GOMETZ - SAINT NICOLAS", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*CAPS*4*1*_*_", + "ref:EU:EVSE": "FRCPSPCAPS411;FRCPSPCAPS412", + "operator:email": "sav@izivia.com", + "start_date": "2020-02-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13431900000, + 48.67720100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1184399", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/LLXUFAEAHMCNXG", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRFR1P3226254938352454345", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52716200000, + 44.82935000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENRGETICA/2ab52de1-2de7-4d30-931f-cabb44530444", + "operator:email": "contact@mobilygreen.fr", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "capacity": "1", + "ref": "951335", + "ref:EU:EVSE": "FRVISP6675393500397368075", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02146900000, + 43.79378500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4009630838290827620", + "operator:email": "roaming@freshmile.com", + "ref": "694337", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/VU508T5OVZ", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96500700000, + 49.06537100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00;Mo-Fr 08:00-19:00,Sa 09:00-18:00;24/7", + "capacity": "3;1;2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "charging_station:output": "11 kW;120 kW;22 kW", + "start_date": "2023-01-31;2023-08-23;2023-10-16;2024-04-11", + "description": "WB 2x22 SWS Voglans;ALFEN 11kW Sowatt;EVBOX 120kW MG Voglans;ALFEN 11", + "ref": "1234619703;1000124112;1000087960;1234595586", + "operator": "SOWATT SOLUTIONS", + "socket:type2_combo:output": "120 kW", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1234619703;FRSWSE1234595586;FRSWSE1000087960;FRSWSE1000124112", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88820500000, + 45.62107200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3339186868354949759", + "opening_hours": "24/7", + "ref": "1026138", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLRAFA9PQ5L8LO", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62517900000, + 50.52818100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Nissan - HESS - Thionville", + "ref:EU:EVSE": "FRSSDPHESSNISSAN571001", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15415800000, + 49.34642000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - MAINVILLIERS - Rue des acacias", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MAINVILLIERS - Rue des acacias", + "ref:EU:EVSE": "FRS28E137397", + "ref": "FRS28E137397" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46751700000, + 48.45156100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "hager", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "network": "barreiros", + "opening_hours": "Mo 08:00-08:15", + "operator:email": "n.elec71@gmail.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39192000000, + 46.71109000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626387", + "description": "SDEA 10/N4MBOOZ97B", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS10P2264753442034920352", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43528300000, + 48.18069000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP5579718567480009899", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLFJKUQO42", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW", + "ref": "706199" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05753700000, + 47.33821200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Garage_Ormeaux", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE467", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-07-20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03816900000, + 46.99010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "VIELMUR / AGOUT - Place De La Bouriatte", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8131500121;FRS81E8131500111;FRS81E8131500112;FRS81E8131500122", + "start_date": "2017-06-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09246707000, + 43.62276077300 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "INTERPARKING - Paris Salpêtrière Italie", + "owner:ref:FR:SIREN": "442414207", + "ref": "FRIPKPPSI", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "20", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRIPKPPSI", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "INTERPARKING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791000000, + 48.83540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-09-06;2023-08-10", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS49P49099H", + "description": "OuestCharge - ePremium - Cholet - Nantes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90127500000, + 47.05985600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PBSFPMC", + "ref": "86684", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/BSFPMC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03335000000, + 49.22480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GAUCHIN LEGAL - rue de Caucourt (D73)", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "charging_station:output": "36 kW", + "ref:EU:EVSE": "FRH13E62366001", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58012400000, + 50.41529400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NIMES - Rue Vincent Faïta", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-26", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30189010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37232400000, + 43.84637200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PZCZYVW", + "start_date": "2018-06-12", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Cléguer - Kerchopine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33672900000, + 47.88759800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2016-02-09", + "description": "CISSE | B032;CISSE-1-1;CISSE-1-2", + "amenity": "charging_station", + "network": "SOREGIES MOBILITES;SOREGIES", + "ref": "FR*SOD*S*SORE*30*1*_*_;B032", + "opening_hours": "24/7", + "operator:email": "irve@soregies.fr;sav@izivia.com", + "owner:ref:FR:SIREN": "450889225", + "charging_station:output": "18 kW;22 kW", + "operator": "SOREGIES MOBILITES;IZIVIA", + "ref:EU:EVSE": "FRS86PSOREB0321;FRLMSE12346402601;FRLMSE12346402591;FRS86PSOREB0322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22873900000, + 46.64554600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "start_date": "2021-07-28", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "419994", + "ref:EU:EVSE": "FRMGPP94080L", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Citadine - Vincennes - Rue de Fontenay (194);Métropolis/FR*MGP*P94080*L", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43317100000, + 48.84859200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*147*2*_*_", + "description": "SIGEIF - PLACE DE LA GARE - CHATOU", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE14722;FRSIGPSIGE14721", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15514900000, + 48.88558300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBE1E78545006", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-29", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT CYR l'ECOLE - Rue Charles Michel", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06099820000, + 48.80809110000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - Hôtel Première Classe Honfleur", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89646624", + "capacity": "1", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25197900000, + 49.41096700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "bd9de795-38f4-5801-a45a-2c84a17123e0", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "description": "MOBIVE | Verteuil-Sur-Charente | Parking Rue du Château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22732000000, + 45.98283300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE77CVGA", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "description": "Bois l'évêque - Combs la ville", + "amenity": "charging_station", + "start_date": "2023-05-04", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57412200000, + 48.65392600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-10-06", + "operator": "Allego", + "description": "NIORT", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSNIORT", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "charging_station:output": "22 kW;0 kW;150 kW;300 kW", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48345300000, + 46.31773000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref": "LFR3628EVCP02;LFR3628EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3628EVCP02;LFR3628EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "PONT-A-MOUSSON Metz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06220900000, + 48.91684500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31555020", + "description": "TOULOUSE - Av. Yves Brunaud", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46668400000, + 43.61819500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNUOGJK0ALBQ;FREBNPUOGJK0ALBQ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "UOGJK0ALBQ;85898", + "description": "Réseau eborn/UOGJK0ALBQ;Rians, Avenue Franklin Roosevelt", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75708000000, + 43.60863300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3597126777651768657", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/AZTNSXMBHG", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "491916", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20301100000, + 48.84189900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-18", + "capacity": "7", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E75115001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Citroën Cévennes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27630500000, + 48.83877900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/saintyorbv;Saint-Yorre, Bellevue", + "ref": "saintyorbv;231610", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPSAINTYORBV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46515000000, + 46.06710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-19", + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "11 kW;150 kW", + "ref:EU:EVSE": "FRELCPVBAJL", + "opening_hours": "24/7", + "description": "Villebarou - Jardiland", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29896000000, + 47.62074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare Le Creusot - Montceau TGV P1 - EFFIA", + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E71540001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49889000000, + 46.76587000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "HU CHALLANS U LOCATION", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "HU CHALLANS U LOCATION", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6614125", + "ref": "FRCPIE6614125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87450500000, + 46.83455500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Viuz-En-Sallaz, Proximité centre commercial des Brochets", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPBAQ6RWB5LG", + "ref": "BAQ6RWB5LG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40404790000, + 46.14214190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1181925", + "network": "WAAT", + "capacity": "2", + "description": "WAAT/s570543", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P6487736171116007795", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68130100000, + 44.85816400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5931715101234039762", + "ref": "491988", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/VSAKX7WKLW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70407300000, + 49.12977700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 08:00-12:00", + "ref": "FRTCBP00726", + "description": "EGLETONS AUTOMOBILES - EGLETONS", + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "network": "Renault Agents France", + "owner:ref:FR:SIREN": "753105006", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP00726", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-08-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03437970631, + 45.39630900066 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ZLOEP13R8Q", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5471357608249098633", + "charging_station:output": "22 kW", + "ref": "706016", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95577700000, + 45.05030200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPEDENAUTONISSAN240001", + "start_date": "2022-09-01", + "network": "DRIVECO", + "description": "Nissan - Périgueux", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74718200000, + 45.18026700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Hanvec-Place du Marché", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E2907800", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16085300000, + 48.32801100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BELPECH - Place De L'Oratoire", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS11E11033001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75027777778, + 43.19833330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "885bcf11-72e9-4ec4-8f6d-6a907cabfd9f", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "812991560", + "description": "Garage Croix St Ladre - 22 kW AC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNICAP - Garage Croix St Ladre", + "ref:EU:EVSE": "FRZP1PEAC49937", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83331940000, + 47.32919421000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS08E57564;FRS08E57563", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57564;FRS08E57563", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - ASFELD - Pl. Grand Cour", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - ASFELD - Pl. Grand Cour" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11700000000, + 49.46839900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/BEEUFP", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PBEEUFP", + "ref": "79456", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48123000000, + 50.08870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - VITRY EN CHAROLAIS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST22211;FRIZFPFAST22212;FRIZFPFAST22213", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-04", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*222*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08394698511, + 46.46227826175 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - Asserac - Fontaine;ASSERAC - Rue De La Fontaine", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44E44006001;FRS44P44006A", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2024-04-17;2024-04-18;2021-06-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39156900000, + 47.42947700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "Brie-Comte-Robert - rue de Verdun;BRIE-COMTE-ROBERT - Rue de Verdun", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2024-09-16", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77053001;FRS77P77053A", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "charging_station:output": "18 kW;22 kW", + "ref": "f598d6d1-8602-4d63-8400-dc909d17e71c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61143200000, + 48.69491700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IBIS BUDGET FECAMP", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "410072177", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGSPP12345956421;FRGSPP1234595642", + "network": "BOISSEE - IBIS BUDGET FECAMP", + "start_date": "2024-03-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39685646266, + 49.75723768564 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - NOYANT DE TOURAINE - Av. de la gare", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E219837;FRS37E219838", + "start_date": "2023-10-07", + "description": "MODULO - NOYANT DE TOURAINE - Av. de la gare", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219837;FRS37E219838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57756800000, + 47.10976400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Haudonville", + "ref": "d8048a58-fe5b-518e-bddb-a7678e5c74a1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50141000000, + 48.49944900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRG10P62498F", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRG10P62498F", + "charging_station:output": "22 kW", + "start_date": "2023-12-01", + "network": "Ville de Lens - Parking Aqualens", + "operator:email": "contact@e-totem.fr", + "description": "Ville de Lens - Parking Aqualens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81974600000, + 50.43207200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MIOS - ECHANGEUR PELOUNEYRES;MOBIVE | MIOS - Echangeur Pelouneyres", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "operator": "197__SDEEG33;IZIVIA", + "ref:EU:EVSE": "FRS33PMB3315514;FRS33PMB3315512;Non concerné;FRS33PMB3315511;FRS33PMB3315513", + "owner:ref:FR:SIREN": "253303473", + "charging_station:output": "50 kW;43 kW", + "capacity": "3;4", + "start_date": "2020-06-02", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "ref": "839e226b-28e8-5f53-8430-d3d8d9992ea4;FR*SOD*S*MB33*155*1*_*_", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82675600000, + 44.66427900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 29 AVENUE THIERRY - VILLE-DAVRAY", + "start_date": "2022-06-09", + "ref:EU:EVSE": "FRSIGPSIGE25711;FRSIGPSIGE25712", + "ref": "FR*SOD*S*SIGE*257*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18159600000, + 48.82770400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "ref": "FRCPIE6511495;FRCPIE2853885", + "capacity": "2", + "network": "GVA CHATILLON ABB", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6511495;FRCPIE2853885", + "charging_station:output": "24 kW;22 kW", + "operator:email": "info@chargepoint.com", + "description": "GVA CHATILLON ABB", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-06-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56739700000, + 47.87685400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/QFEYWXCVA1", + "ref:EU:EVSE": "FRLE2P8050749939098269460", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446798" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73570300000, + 48.59749600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Brive | Parking Parc des Expositions des 3 Provinces | 1", + "ref": "c449ea9a-0d4e-5a57-86da-bcf660a88663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54305100000, + 45.16481900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "network": "AlterBase", + "description": "Réseau AlterBase - Bressuire - agence Séolis", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr 13:30-17:00", + "start_date": "2019-03-05", + "ref:EU:EVSE": "FRSEOPAB12073A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47353800000, + 46.83946800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "ADP Groupe", + "ref:EU:EVSE": "FRADPE93073020;FRADPE93073015;FRADPE930730151", + "description": "CDG - Parking PAB - Niveau -2 - Allées 2G & 2F;CDG - Parking PRO AB - Allée H (Réservé exclusivement aux Taxis et VTC)", + "socket:type2_combo:output": "24 kW", + "capacity": "16;8", + "charging_station:output": "24 kW;3 kW;22 kW", + "start_date": "2024-05-16;2022-12-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56384700000, + 49.00333300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR1953EVCP02;LFR1953EVCP01", + "capacity": "4", + "ref": "LFR1953EVCP02;LFR1953EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MELESSE Rennes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69916100000, + 48.21294900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-24", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-MARTIN-D'HERES - Etienne Grappe;SAINT-MARTIN-D'HERES - Etienne Grappe (CITIZ)", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38421003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75784600000, + 45.17197200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*115*1*_*_", + "description": "THEOULE-SUR-MER PARKING VERT BISSON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ11511;FRA16PWIIZ11512", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2021-01-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94439700000, + 43.48748600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1070295", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLTOEPEKZ1X8DI", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7230135368620846402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18939700000, + 46.16189900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Action - Limonest", + "ref:EU:EVSE": "FRPD1PACTLMN", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77133543320, + 45.81862813878 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHSN542X2AO", + "description": "Réseau eborn/HSN542X2AO;Morzine, Route Du Palais Des Sports", + "ref": "85784;HSN542X2AO", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70555000000, + 46.18337000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-12-22", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "description": "Forbach - KFC", + "ref:EU:EVSE": "FRELCPFBCKF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87987400000, + 49.17664600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking de l'Hôpital Simone Veil d'Eaubonne - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E952030011;FRP01E95203001", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26924000000, + 49.00095000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-20", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6676145", + "ref:EU:EVSE": "FRCPIE6676145", + "description": "BIOPATH HDF COQUELLES 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "BIOPATH HDF COQUELLES 2", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80509000000, + 50.92742400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "ref": "1129830;LLX0DLSX02DRC2", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "description": "Easy Charge/LLX0DLSX02DRC2;Larnod, Route royale", + "charging_station:output": "22 kW;60 kW", + "start_date": "2024-06-04", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHPLLX0DLSX02DRC2;FRECHP2298131589568442934" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96432100000, + 47.18383000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP151001", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "210 kW;50 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Eurotunnel Calais", + "owner:ref:FR:SIREN": "909073363", + "socket:type2_combo:output": "50 kW;210 kW", + "start_date": "2022-05-31;2022-08-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81308700000, + 50.93488400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3523614483087815112", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref": "529511", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile/P54MDIWUGK", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83789700000, + 48.64237300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX05*07", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX0507", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris | Rue Dante 1", + "start_date": "2021-08-11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34724760000, + 48.85138790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "626150", + "network": "Freshmile France", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "description": "Freshmile France/KVIRJDVIRT", + "ref:EU:EVSE": "FRFR1P4589390508280132144", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19016300000, + 49.06626800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 08:30-12:00, Sa 14:00-18:00", + "ref:EU:EVSE": "FRSSDPMAURINFORD742001", + "description": "Ford - Anthy sur Léman", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2021-02-19", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43360700000, + 46.35214800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22308001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Juvat-Le bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04500000000, + 48.35229900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-12-19", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - NERONDES - Rte. de Bourges", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS18E146793", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E146793", + "description": "MODULO - NERONDES - Rte. de Bourges" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81153005000, + 46.99737769000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "GROUPE LGE SOCIETE AUTOPLUG", + "capacity": "5", + "ref": "265ba845-35e1-475e-a964-2dac31b42cd9", + "operator:email": "cindyt@groupelge.com", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "owner:ref:FR:SIREN": "499954717", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "description": "NANTEUIL", + "start_date": "2022-12-22", + "network": "AUTOPLUG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88474697754, + 48.93616199444 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "505818", + "description": "SDEA 10/MGSFFZIVNT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS10P6727896171421111382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33627800000, + 48.36390800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-19", + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8100400321;FRS81E8100400311;FRS81E8100400312;FRS81E8100400322", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "ALBI - Place de la Résistance B1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14243602800, + 43.93806076000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - MONTIVILLIERS", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-05-13", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST9821;FRIZFPFAST9813;FRIZFPFAST9812;FRIZFPFAST9811;FRIZFPFAST9822;FRIZFPFAST9823", + "ref": "FR*SOD*S*FAST*98*2*_*_;FR*SOD*S*FAST*98*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18802023064, + 49.52913422724 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44130C;FRS44E44130003", + "description": "PONT-SAINT-MARTIN - Rue Des Combes;OuestCharge - Diva Sp - Pont-Saint-Martin - Combes", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "start_date": "2021-04-27;2024-04-16", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58284800000, + 47.12362100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2023-05-03;2016-08-31", + "ref:EU:EVSE": "FRS77E77308001;FRS77P77308A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "MONTGE-EN-GOELE - Route De Juilly;Montge-en-Goele", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61F9D9W7GGTNGS2NBF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74390700000, + 49.02566900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HELFAUT - Rue d'Aire et du Piperstraete", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH01E62423001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24438000000, + 50.69717200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - AMBOISE - Château", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E221446;FRS37E221447", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - AMBOISE - Château", + "ref:EU:EVSE": "FRS37E221446;FRS37E221447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98813100000, + 47.41156500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - DAMVILLERS - Pl. des martyrs", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - DAMVILLERS - Pl. des martyrs", + "ref": "FRS55E66369;FRS55E66370", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS55E66369;FRS55E66370", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40095700000, + 49.34291300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*138*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON13812;FRGLYPLYON13811", + "start_date": "2022-02-04", + "operator:email": "sav@izivia.com", + "description": "MOT01 - RUE DES MAURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86285100000, + 45.88016400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5924902", + "description": "FROMELLES - Rue de Verdun", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59249*02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85417300000, + 50.60615200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-08-31", + "capacity": "6", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHOTELAKENA250001", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Hôtel AKENA - Besançon", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90074700000, + 47.23463200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6575785", + "ref": "FRCPIE6575785", + "network": "SUPER U PLESTIN SUPER U PLESTIN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SUPER U PLESTIN SUPER U PLESTIN", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.63298700000, + 48.65745800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P5302552556651968585", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/WQV2RNZM6H", + "ref": "505800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140600000, + 46.19570600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "start_date": "2020-03-31", + "ref": "FR*SOD*S*MB33*107*1*_*_;36aa8b06-e714-5c3e-8c9d-d0233c571cd9", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS33PMB3310712;FRS33PMB3310711;Non concerné", + "owner:ref:FR:SIREN": "253303473", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "description": "QUINSAC - RUE HENRI CHIVALEY CENTRE BOURG;MOBIVE | Quinsac | Rue Henri Chivaley Centre Bourg", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48829600000, + 44.75591300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Viry-Châtillon - Quai de Châtillon", + "ref": "dd66dd71-bcfa-58a3-a1e6-6d77140279b4", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38493000000, + 48.68160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-17", + "network": "Allego NISSAN Reims", + "description": "Allego NISSAN Reims", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO0001541", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO0001541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07952400000, + 49.23810100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE Gonin", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2776EVCP01", + "ref": "LFR2776EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48618100000, + 43.57201500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Istres, Forum Des Carmes", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM13PNKMEPWGGPW", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98641900000, + 43.51365000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - LE THILLOT - Rue Charles de Gaulle", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "MODULO - LE THILLOT - Rue Charles de Gaulle", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS88E177160;FRS88E177158", + "ref": "FRS88E177160;FRS88E177158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76674000000, + 47.87820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*225*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "SAINT-RAPHAEL - PARKING XV CORPS", + "ref:EU:EVSE": "FRA16PWIIZ22511;FRA16PWIIZ22512", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77527300000, + 43.42965400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7165411573609457498", + "network": "Freshmile France", + "description": "Freshmile France/SYGATUARH8", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "454152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99999700000, + 48.77036400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-03", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PMBRMOR", + "opening_hours": "24/7", + "description": "Mon Brico - Mortagne", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95074270000, + 46.99072830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP276537821944513373;FREBNPMHLFDHWBOA", + "start_date": "2021-02-05", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "369013;MHLFDHWBOA", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "description": "Réseau eborn/MHLFDHWBOA;Costaros, Place de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84982800000, + 44.89414500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref": "1084992", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FREVZP718577192899332357", + "operator:email": "support@evzen.com", + "description": "EVzen/D0C47980-EBFA-4D1F-8D4F-5107E16256CD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11340000000, + 48.32483800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "LILLE - Gare B", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E59350011", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07769490000, + 50.63824540000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "MMDHJY;75224", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/MMDHJY;Faverges, Place Joseph Sérand", + "ref:EU:EVSE": "FREBNPMMDHJY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29294000000, + 45.74830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "AXODXBUCIG;48451", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Arvieux, Parking de l'Eglise;Réseau eborn/AXODXBUCIG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPAXODXBUCIG", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73892800000, + 44.76737100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-10-17", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Epinal - Centre des Congrès Park.P3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP143032", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47043000000, + 48.18622000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3928524165760388613", + "ref": "591164", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/JDUTLZQEJL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87960800000, + 43.12152500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "FR*V75*PPX13*01", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "description": "Paris | Rue Nationale 77", + "ref:EU:EVSE": "FRV75PPX1301", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36657640000, + 48.82685650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;50 kW;120 kW", + "ref": "471141", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5155977154114934975", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ODDTVCL4LZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43293900000, + 46.13558100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-10", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPBAYERNBMW622311", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW Mini - Calais", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80877200000, + 50.93776700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "description": "900123", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PEVREUXBPOUGET", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12397600000, + 49.01709300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SICECO/FR*S21*P21599*A", + "ref:EU:EVSE": "FRS21P21599A", + "network": "SICECO", + "ref": "180422", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18660100000, + 47.58674400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-12-11", + "ref:EU:EVSE": "FRY03E78551015", + "description": "SAINT-GERMAIN-EN-LAYE - VICTOR HUGO 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08920504727, + 48.89175973724 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "Garage_Brunel", + "amenity": "charging_station", + "start_date": "2021-06-28", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE108", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64696700000, + 50.64325400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLQJUWFJZU", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP6115210852778856481", + "ref": "851889", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "charging_station:output": "6.9 kW;22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54419200000, + 44.84956700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "ref": "FRIONE437700", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "start_date": "2022-12-09", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Val De Reuil", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE437700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18677300000, + 49.24754100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E41685;FRS51E41686", + "capacity": "2", + "network": "MODULO - TINQUEUX - Rue Sarah Bernhardt", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E41685;FRS51E41686", + "start_date": "2020-12-11", + "description": "MODULO - TINQUEUX - Rue Sarah Bernhardt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97776600000, + 49.24998500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65031002", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-05", + "description": "ARREAU - Rue De Houssens", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36009000000, + 42.90656000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRHPCPNF080356", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080356", + "start_date": "2023-02-17", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531681251;531681252;531681249;531681247;531681246;531681248;531681245;531681244;531681240;531681241;531681242;531681243;531681250;531681254;531681253;531681255", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "150 kW;300 kW;54 kW", + "description": "RELAIS VIRONVAY NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22010000000, + 49.21120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LUNEL - 162 Quai Voltaire", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34145001", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13242222222, + 43.67328610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-22", + "description": "Lorient - Lorient Découverte Rue de Villeneuve", + "ref:EU:EVSE": "FRS56PKHNUDJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37788000000, + 47.75316000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "471039", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/DFIRKWXAQF", + "ref:EU:EVSE": "FRFR1P602685176295931801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78460500000, + 49.30808400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP92051O", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "599085", + "capacity": "2", + "network": "Métropolis", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92051*O", + "charging_station:output": "25 kW;22 kW", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26164800000, + 48.88806400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "description": "Fiat - Viry-Châtillon", + "start_date": "2020-07-08", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPPRIODFIAT911701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37560000000, + 48.68408700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRC2P004702;FRC2P004701", + "description": "SARL CASTEL CONTROLE", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "ref": "FRC2P004702;FRC2P004701", + "network": "SARL CASTEL CONTROLE", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96054545951, + 43.30223171201 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2022-07-19", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMEDOMAINEDESPEYRE11", + "ref": "51461466-c696-4bed-b274-0fa399784d92", + "operator": "LUMI'IN", + "description": "DOMAINE DES PEYRE", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12000000000, + 43.87000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "description": "MOBIVE | Libourne | Place Guadet Rue Jules Steeg", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "197__SDEEG33", + "socket:type2_combo:output": "24 kW", + "ref": "099cb43d-6c47-5c44-b4f9-de3fbd0ac47f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23751300000, + 44.91973700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "start_date": "2024-04-30", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "DELKO - EXINCOURT", + "ref:EU:EVSE": "FRSE1PSE25EABA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83957300000, + 47.49586400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/6686618eaf6adae311c59fa8", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP5614660853812649", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "ref": "1151568" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03027100000, + 42.57089000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P5467261749083766360", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/VD9HES2EX5", + "ref": "454341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97802700000, + 44.48583400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Pelissanne, Place Roux Brignoles", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PJTREOM1X8E", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15265100000, + 43.63119500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/RVM9WQYHNE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P7762750920853115319", + "charging_station:output": "22 kW", + "ref": "402614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27625200000, + 48.19624600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ812;FRA16PWIIZ811", + "start_date": "2018-04-04", + "network": "WIIIZ", + "description": "CANNES SQUARE MISTRAL", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*8*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00691200000, + 43.54968600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YSGFNL", + "ref": "257146", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PYSGFNL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19705000000, + 43.68530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Super U - Sennecey-lès-Dijon", + "ref:EU:EVSE": "FRPD1PSUUSLD", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-01-07", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10008191136, + 47.29100360180 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-29;2020-06-21", + "ref": "O3D66ZVWF8;30464;MQM28MJSWG;454416", + "description": "Veynes, Place Albert Pons;Réseau eborn/O3D66ZVWF8;Veynes, avenue du CDT Dumont;Réseau eborn/MQM28MJSWG", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW;22 kW", + "capacity": "2;7", + "ref:EU:EVSE": "FREBNP6509150174921393960;FREBNPMQM28MJSWG;FREBNPO3D66ZVWF8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82747100000, + 44.53509900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "593336", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "CARF - Bornes Publiques/91981169-1681-42D0-836C-51CDB0788AEC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP4824868509962816010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46905400000, + 43.78898000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "200 kW", + "socket:type2_combo:output": "200 kW", + "amenity": "charging_station", + "network": "ATB ENERGIE", + "capacity": "3", + "start_date": "2024-05-31", + "description": "ATB ENERGIE - LAIGUILLON-LA-PRESQUILE", + "ref": "FR*SOD*S*OTHR*697*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR69713;FROTHPOTHR69712;FROTHPOTHR69711", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35091340000, + 46.34583590000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Christo-En-Jarez, Place de la liberté;Réseau eborn/QQTZQG", + "ref:EU:EVSE": "FREBNPQQTZQG", + "ref": "QQTZQG;96053", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48614000000, + 45.54510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-02-20", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLSU6GCCYW5N17", + "description": "Attignat Oncin, Parking Eglise", + "opening_hours": "24/7", + "ref": "LLSU6GCCYW5N17", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77509273000, + 45.50811890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*38*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2020-05-19", + "description": "PARKING DE LA MAIRIE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR3811;FROTHPOTHR3812", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73549900000, + 48.82139500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3393391913172670386", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/E95FKFHLMJ", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "opening_hours": "Tu,Mo,Th,We,Fr,Sa 14:00-18:00,We,Th,Fr,Mo,Sa,Tu 08:00-12:00", + "ref": "541748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02751500000, + 48.32669600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "description": "Tesla Supercharger Riom, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP27522", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13771866000, + 45.89611779000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "682190", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6464391767383678299", + "description": "Freshmile France/NL5HBZFIZT", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85070100000, + 45.71495200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BMW - Evreux", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "start_date": "2023-03-02", + "capacity": "12", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBMSBMW270001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "opening_hours": "Mo 08:30-18:30, Tu 08:30-18:30, We 08:30-18:30, Th 08:30-18:30, Fr 08:30-18:30, Sa 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18991200000, + 49.02292500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4212067171609973888", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "559766", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QAFCVFAWVK", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74405800000, + 44.46880600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PLESTAN - Rue des Martyres", + "ref:EU:EVSE": "FRS22E22193001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44585200000, + 48.42276800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC49701", + "network": "Mazda MULHOUSE - LIGNE BLEUE AUTOMOBILES", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Tu-Fr 08:00–12:00,Tu-Fr 14:00–19:00,Sat 09:00-17:00", + "owner:ref:FR:SIREN": "402343842", + "operator:email": "advenir@zeborne.com", + "start_date": "2020-12-04", + "charging_station:output": "22 kW", + "description": "Mazda - Mulhouse (Illzach) - 22kW AC ", + "ref": "49701", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38007620000, + 47.77178470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE322", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "description": "Sodif_Mini_Fouine_Guerande", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41305500000, + 47.32814600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78327002", + "description": "JUZIERS - Avenue de la gare", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84530700000, + 48.99242600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "15", + "start_date": "2023-03-15", + "opening_hours": "24/7", + "network": "Seclin", + "ref:EU:EVSE": "FRIOYE440153;FRIOYE440151;FRIOYE440124;FRIOYE440123;FRIOYE440122;FRIOYE440121;FRIOYE440111;FRIOYE440110;FRIOYE440102;FRIOYE440101;FRIOYE440103;FRIOYE440109;FRIOYE440112;FRIOYE440113;FRIOYE440152", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Seclin", + "ref": "FRIOYE440153;FRIOYE440151;FRIOYE440124;FRIOYE440123;FRIOYE440122;FRIOYE440121;FRIOYE440111;FRIOYE440110;FRIOYE440102;FRIOYE440101;FRIOYE440103;FRIOYE440109;FRIOYE440112;FRIOYE440113;FRIOYE440152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05319700000, + 50.54868100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53P53103A;FRS53E53103001", + "start_date": "2021-04-16;2024-05-27", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Le Genest-Saint-Isle - Eglise;LE GENEST-SAINT-ISLE - Place De L'Église", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88647300000, + 48.09782200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2017-10-18", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS66E66028001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "CABESTANY - Av Du 19 Mars 1962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93495900000, + 42.68009300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-06-12", + "amenity": "charging_station", + "capacity": "4", + "network": "Niort Saint-Florent", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE009201;FRIENE009202", + "description": "Niort Saint-Florent", + "ref:EU:EVSE": "FRIENE009201;FRIENE009202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47819274000, + 46.30183068000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35047001B1", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "description": "BRUZ - 5 rue de gravinis ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75840500000, + 48.02976600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-NOCE-001", + "network": "61mobility", + "ref:EU:EVSE": "FRS61P61309A", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "PERCHE EN NOCE - Rue Jacques Laporte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68175850000, + 48.37855700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "75 kW;22 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/MB9F5TKRPJ", + "socket:type2_combo:output": "75 kW", + "opening_hours": "24/7", + "ref": "477672", + "ref:EU:EVSE": "FRFR1P175784042204766480", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74341500000, + 48.59109900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "ref:EU:EVSE": "FRS31PMASSABRAC", + "operator:email": "web@freshmile.com", + "ref": "Massabrac", + "opening_hours": "24/7", + "start_date": "2017-11-24", + "description": "Massabrac, Mairie", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37474000000, + 43.22470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-04-23", + "operator": "Bouygues E&S", + "description": "LEVALLOIS PERRET - Rue Jacques Mazaud (Verdun)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92044004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28613900000, + 48.89412900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Audi Valodis - 95300 - 2", + "description": "Audi Valodis - 95300 - 2", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-06-07", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000325;FRCG0E000323;FRCG0E000324", + "ref": "FRCG0E000325;FRCG0E000323;FRCG0E000324", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08443900000, + 49.04349600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE1632;FRM06PNICE1631;FRM06PNICE1621;FRM06PNICE1622", + "description": "NICE - TRACHEL RP", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*16*3*_*_;FR*SOD*S*NICE*16*2*_*_", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-06-21;2022-07-07", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26386749312, + 43.70641080747 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "description": "MOBIVE | Villereal | Boulevard Alphonse de Poitiers", + "ref": "aa32a9dd-b108-5184-a68f-f525adaa2369" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74111100000, + 44.63833200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-09-13", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - RUE DU PETIT JOUY - LOGES-EN-JOSAS", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*303*1*_*_", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE30311;FRSIGPSIGE30312", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14133300000, + 48.76608700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "223798;223799", + "ref:EU:EVSE": "FRBMPS223799;FRBMPS223798", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Saint Gilles Croix de Vie", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92724590000, + 46.69669380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ETAMPES", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3404EVCP01", + "ref": "LFR3404EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14623900000, + 48.44080800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "ref": "e44672aa-54ca-52da-baf4-630969b46043", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Brive | Maison du Bénévolat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53997200000, + 45.16785600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "description": "Fleury-Merogis - Rue Rosa-Parks", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "847a50b3-6403-5722-b634-ced8e4f34d39" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36048200000, + 48.63824100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP06150CANACMH14", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P06150*CAN*ACMH14", + "description": "AEROPORT - HANGAR 14 - CANNES", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2024-06-18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95313800000, + 43.55033600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3636EVCP02", + "capacity": "4", + "description": "BOURGES Avenir", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3636EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38398200000, + 47.08460600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "description": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "ref:EU:EVSE": "FRPVDP4485834825504686447", + "network": "Proviridis", + "ref": "917388", + "opening_hours": "24/7", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85775300000, + 46.82473600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ollioules, Parking ORLANDI;Réseau eborn/LLZBAY9971B743", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNP9056507046357914675;FREBNPLLZBAY9971B743", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2024-08-01", + "ref": "LLZBAY9971B743;1162377", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85277400000, + 43.13457600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - Cit'Hotel Cositel Coutance", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP50147A", + "ref": "FRETIP50147A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46002362534, + 49.05177379067 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E34172001", + "network": "EFFIA France", + "description": "Parking Montpellier Arc de Triomphe - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87632000000, + 43.61074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT870001", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Limoges Paguenaud", + "start_date": "2023-11-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26146700000, + 45.84850800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "DBA0BNH7EP;48373", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/DBA0BNH7EP;Erôme, 66 Rue des Maisons Neuves", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPDBA0BNH7EP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82092600000, + 45.11932100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR49421;FROTHPOTHR49412;FROTHPOTHR49411;FROTHPOTHR49422", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "description": "FFF - LIGUE DE FOOTBALL DES PAYS DE LA LOIRE", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*OTHR*494*2*_*_;FR*SOD*S*OTHR*494*1*_*_", + "operator:email": "sav@izivia.com", + "charging_station:output": "24 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17553400000, + 48.00954500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CGTJBSDTLL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "398843", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5404738546381082654" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01660000000, + 47.13610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "description": "UBI-LHSM-134", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10075344;FRUBIE10043620", + "charging_station:output": "22 kW", + "ref": "seno0100000016", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12533300000, + 49.50736100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "50 kW;3 kW", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/HCBDVD", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8609813030686177499", + "ref": "74978" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412000000, + 44.88940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31555033", + "start_date": "2022-06-21", + "description": "TOULOUSE - 13 Rue Laganne", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43512200000, + 43.59395000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/PNTCPDQEGB", + "ref:EU:EVSE": "FRFR1P8742055965826134769", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529514", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05962000000, + 45.85201000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461733", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "description": "MobiSDEC/G7U2LCCD4Y", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P3612342038682540970" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35085900000, + 49.15054700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-01-18", + "description": "CASTELNAU DE MANDAILLES - Le Bourg", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS12E12061001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88350000000, + 44.50940900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA3P2757507880858381732", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/FRWATLQ45BBS3W", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr", + "ref": "805308" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06518500000, + 44.31809300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49P49180B;FRS49E49180002", + "amenity": "charging_station", + "start_date": "2024-04-03;2021-05-28", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "LONGUE-JUMELLES - Place Champ de Foire;OuestCharge - Diva Sp - Longue-Jumelles - Foire", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11119100000, + 47.37575200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref": "64970", + "description": "SIED70/vesoul1", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS70PVESOUL1", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14253000000, + 47.64060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-07-17", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59401002", + "charging_station:output": "22 kW", + "description": "METEREN - La Place", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69099060000, + 50.74039520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - SAINT CYR SUR LOIRE - Rue Maurice Genevoix", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E214030;FRS37E214029", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E214030;FRS37E214029", + "description": "MODULO - SAINT CYR SUR LOIRE - Rue Maurice Genevoix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66912000000, + 47.42307000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63236B", + "description": "SIEG 63/FR*S63*P63236*B", + "ref": "518360", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81642600000, + 45.54206800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BERSILLIES - Rue Saint Pierre d'Hautmont", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH02E59072001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00575500000, + 50.32263200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "44 kW", + "ref": "294488", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS32PKDDWBQ", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "description": "SDEG32/KDDWBQ", + "socket:type2_combo:output": "44 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98163400000, + 43.59830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHAMPIGNY-SUR-MARNE - Rue Pierre Curie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94017008", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2022-06-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54529100000, + 48.81220000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE28111;FRM06PNICE28112", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "description": "CAP-DAIL - PARKING MARQUET", + "start_date": "2024-05-10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*281*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41058910366, + 43.72283091319 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Perigueux | Rue Wilson", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c42d2ab4-eace-5b54-ae73-3a1e9b51f3c3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71553200000, + 45.18434500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - RUE PRUVOT - VANVES", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*41*5*_*_;FR*SOD*S*SIGE*41*3*_*_;FR*SOD*S*SIGE*41*2*_*_;FR*SOD*S*SIGE*41*1*_*_;FR*SOD*S*SIGE*41*4*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE4141;FRSIGPSIGE4131;FRSIGPSIGE4121;FRSIGPSIGE4111;FRSIGPSIGE4151", + "start_date": "2020-10-14", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28405700000, + 48.82225400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-25", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "ROUEN - Parking Mont Riboudet", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76540011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06353400000, + 49.44820700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLENEUVE LE ROI Verdun", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3402EVCP01;LFR3402EVCP02", + "ref:EU:EVSE": "LFR3402EVCP01;LFR3402EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40615800000, + 48.73311900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "25 kW;11 kW;22 kW", + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Royère-De-Vassivière | Place Mendès France", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "ref": "2c7c5ee6-2510-59f8-b10e-1cb22972bf1d", + "socket:type2_combo:output": "11 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91145200000, + 45.83951500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "c19771a8-5499-5a32-8172-9c421f1f313a", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "description": "JOUCAS - D102", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25427200000, + 43.92548800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR594E59122011", + "description": "CAMBRAI - Centre de formation Pôle Gare - IFSI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2024-04-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24589460000, + 50.17415080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "FEYTIAT Ponteix", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3547EVCP04;LFR3547EVCP01;LFR3547EVCP02;LFR3547EVCP03", + "ref:EU:EVSE": "LFR3547EVCP04;LFR3547EVCP01;LFR3547EVCP02;LFR3547EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29962600000, + 45.81793000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-07-21", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Rouen Jardin des plantes", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMRON", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08155570000, + 49.42146300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/PJQBERSPPR;Aoste, Place Blanc Jolicoeur", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPPJQBERSPPR", + "ref": "32791;PJQBERSPPR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60764500000, + 45.58703800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-12", + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP83062A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "description": "e-Totem - Intermaché Contact La Garde", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "ref": "FRETIP83062A", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00612000000, + 43.11890400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORMSY", + "opening_hours": "24/7", + "start_date": "2022-06-07", + "charging_station:output": "50 kW;22 kW", + "description": "Cora - Massy", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27670760000, + 48.72526740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market - Moreuil", + "start_date": "2024-08-08", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT801101", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46917100000, + 49.78987300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRESEPS42095AB", + "start_date": "2020-06-05", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "SEMOB Firminy Chazeau", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRESEPS42095AB", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27647200000, + 45.37907800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IZIG*109*1*_*_", + "ref:EU:EVSE": "FROTHPIZIG10911", + "network": "DALKIA-EV100", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "7.36 kW", + "description": "MONT SAINT AIGNAN - CRC ROUEN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09472900000, + 49.47593700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MANOIR STATION 9", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "ref": "FRCPIE6821945", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "MANOIR STATION 9", + "ref:EU:EVSE": "FRCPIE6821945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72183500000, + 48.55360700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/E2J6I5CRAL", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3478577128642833541", + "ref": "578846", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49932200000, + 43.30801300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Theophraste Renaudot 21", + "network": "Belib'", + "start_date": "2021-10-01", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9015*07", + "ref:EU:EVSE": "FRV75P901507", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29674400000, + 48.84128700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/SKLQVGKLSV", + "ref:EU:EVSE": "FRFR1P4023745542184953617", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "368929", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59810200000, + 44.82586000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "description": "Tesla Supercharger Archamps", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP2622", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12430000000, + 46.13691600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2076068360922067620", + "capacity": "2", + "amenity": "charging_station", + "ref": "892251", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIVPO22H2R063" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87878600000, + 48.68662200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P5101080840370482236", + "operator:email": "roaming@freshmile.com", + "ref": "461796", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/KMIYT7TETI", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80740000000, + 49.34719500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRS13PZKJVIAARAQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Saint-Andiol, RN7", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94495600000, + 43.83472300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA8P2042190494799862016", + "description": "WAAT/FRWATL4MYXNRZ0", + "amenity": "charging_station", + "capacity": "4", + "ref": "923199", + "operator": "WAAT SAS | FR*WA8", + "opening_hours": "24/7", + "charging_station:output": "22 kW;16 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904000000, + 43.38962600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA HAGUE (ACQUEVILLE) - carrefour des Pelles", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50001001", + "start_date": "2017-08-25", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73624820000, + 49.60438210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-11-16", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81136001", + "charging_station:output": "50 kW;43 kW", + "description": "LARROQUE - Rue de l'ancien relais de Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69131400000, + 44.00285900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRHPCPNF058931", + "capacity": "8", + "amenity": "charging_station", + "description": "RELAIS DE LA COULINE", + "owner:ref:FR:SIREN": "531680588;531680587;531680586;531680581;531680582;531680583;531680584;531680585", + "ref:EU:EVSE": "FRHPCPNF058931", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2021-04-27;2021-04-30;2023-07-13", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19950000000, + 47.97410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "start_date": "2021-05-25;2021-11-03", + "ref:EU:EVSE": "FRS46E46309001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SOUILLAC - Pierre Bourthoumieux", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47985500000, + 44.89512000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PTI8PEKPXSF", + "operator": "Morbihan énergies | FR*S56", + "ref": "298654", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/TI8PEKPXSF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.08497200000, + 47.29455500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "RAIMBEAUCOURT - Place Clémenceau", + "ref:EU:EVSE": "FRH04E59489001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10063100000, + 50.43948000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "description": "Rosporden-Rue Louis Pasteur", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2924100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82956100000, + 47.95847300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PDXRKQV", + "network": "Morbihan Energies", + "description": "Lorient - Rue Moïse Le Bihan", + "start_date": "2017-08-28", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38255200000, + 47.73623900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-09-20", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "INGRANDES-1-1;INGRANDES-1-2", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346051681;FRLMSE12346051672;FRLMSE12346051671;FRLMSE12346051682", + "operator:email": "irve@soregies.fr", + "ref": "B043" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56652000000, + 46.87612900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93005C", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2022-03-10", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "description": "Metropolis - Citadine - Aulnay-sous-Bois - Rue de Sevran" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49895672000, + 48.94121732000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-01-11;2021-01-08", + "ref:EU:EVSE": "FRSIGPSIGE8511;FRSIGPSIGE8521;FRSIGPSIGE8531;FRSIGPSIGE8541;FRSIGPSIGE8551", + "ref": "FR*SOD*S*SIGE*85*5*_*_;FR*SOD*S*SIGE*85*4*_*_;FR*SOD*S*SIGE*85*1*_*_;FR*SOD*S*SIGE*85*2*_*_;FR*SOD*S*SIGE*85*3*_*_", + "description": "SIGEIF - 87 RUE MARTRE - CLICHY", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30462300000, + 48.90436900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "945516", + "description": "Atlante/FRATLZ346_FRRELAIS_000001", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "ref:EU:EVSE": "FRATLP5146626374839350332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11040500000, + 48.54941200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "Howdens Villeneuve la Garenne", + "amenity": "charging_station", + "start_date": "2023-10-02", + "ref:EU:EVSE": "FRLMSE1000081823", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32580100000, + 48.92882000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Salies de Bearn | Parking du Casino", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "fba9aabc-46f6-5904-9c64-1fecb2e3fe6d", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93010000000, + 43.47291200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85190001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROCHESERVIERE - Rue Du Grand Moulin", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-06-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50997000000, + 46.94070100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego Carrefour Saint-André-Les-Vergers", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO9006442;FRALLEGO9006441;FRALLEGO9006262;FRALLEGO9004792;FRALLEGO9004791;FRALLEGO9000291;FRALLEGO9000292;FRALLEGO9000321;FRALLEGO9000322;FRALLEGO9004793;FRALLEGO9006261", + "charging_station:output": "0 kW", + "description": "Allego Carrefour Saint-André-Les-Vergers", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2022-12-22", + "capacity": "11", + "ref": "FRALLEGO9006442;FRALLEGO9006441;FRALLEGO9006262;FRALLEGO9004792;FRALLEGO9004791;FRALLEGO9000291;FRALLEGO9000292;FRALLEGO9000321;FRALLEGO9000322;FRALLEGO9004793;FRALLEGO9006261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470199000, + 48.28275471000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA | MARSEILLE 09 - BOULEVARD ROMAIN ROLLAND", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*MAMP*20*1*_*_", + "owner:ref:FR:SIREN": "912043676", + "ref:EU:EVSE": "FRIZMPMAMP2011;FRIZMPMAMP2012", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "IZIVIA", + "start_date": "2022-04-07", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41034100000, + 43.27206400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-18", + "description": "Match - Arras", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "charging_station:output": "50 kW;22 kW;160 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "160 kW", + "ref:EU:EVSE": "FRPD1PMATARR", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78890283966, + 50.27740185830 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLTHE8SEY1I3YK", + "ref": "1155756", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP5314331501426690227" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32371700000, + 45.88262900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref": "709409", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP6302025092437456925" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05790300000, + 46.06747900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Basic Fit - Montargis", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PHLFMTG", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-22;2023-10-12", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "charging_station:output": "160 kW;50 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74260253366, + 48.00399498626 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPGTJYVLLJFU;FREBNGTJYVLLJFU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "GTJYVLLJFU;75275", + "charging_station:output": "22 kW", + "description": "Réseau eborn/GTJYVLLJFU;Bandol, 3 Allée Alfred Vivien", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75303400000, + 43.13469300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP22389A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP22389A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - IBIS YFFINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.66452167336, + 48.48046992528 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "CAMPING DU LAVEDAN", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "381069483", + "capacity": "1", + "start_date": "2021-06-25", + "opening_hours": "24/7", + "description": "ROUTE DES VALLEES", + "ref:EU:EVSE": "FROTHPOTHR18311;FROTHPOTHR18321", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*183*2*_*_;FR*SOD*S*OTHR*183*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08899800000, + 42.98813700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*17*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS1711;FRCPSPCAPS1712", + "start_date": "2020-03-26", + "operator:email": "sav@izivia.com", + "description": "PALAISEAU - BD STALINGRAD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25929900000, + 48.71370300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7016718316343686612", + "ref": "1138497", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "description": "Freshmile France/LLYE7HCGR2JJH4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63226100000, + 44.81328200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "CENTER PARCS LANDES DE GASCOGNE - Parking B", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP123020", + "opening_hours": "24/7", + "start_date": "2024-09-06", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04698200000, + 44.29407400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "626234", + "description": "Freshmile France/QWU01HIDPC", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P7218296335656842061", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55298300000, + 46.66909100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRSUAP67320A", + "amenity": "charging_station", + "capacity": "4", + "description": "SUPER U VILLE", + "network": "MJS DISTRIBUTION", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRSUAP67320A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31590500000, + 48.33873500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7524781949318950678", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/stphilipreuni", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "160293", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.76590000000, + -21.35980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPAUTOBERNARDSIEGE010001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Autobernard - Bourg-en-Bresse - Siège", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2023-02-06", + "opening_hours": "Mo 07:00-19:00, Tu 07:00-19:00, We 07:00-19:00, Th 07:00-19:00, Fr 07:00-19:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24990100000, + 46.22013000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MOLEANS - Rue du moulin", + "amenity": "charging_station", + "capacity": "1", + "ref": "FRS28E134801", + "network": "MODULO - MOLEANS - Rue du moulin", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS28E134801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39272300000, + 48.11367200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "operator": "HAPOGYS", + "amenity": "charging_station", + "description": "Parking HAPOGYS", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "Mo-Fr 9:00-17:00", + "charging_station:output": "22 kW", + "ref": "EVB-P2011356", + "start_date": "2022-03-22", + "owner:ref:FR:SIREN": "781880372", + "network": "HAPOGYS", + "operator:email": "eses.bire@hapogys.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48177650000, + 44.84385340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/LLJOBGIWD17G4U", + "ref:EU:EVSE": "FRS10P4927018234648993297", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892833" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05646100000, + 48.29292100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWATLBGVVSU0H", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP4039030597370621896", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "ref": "706187", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44133600000, + 48.25457800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-16", + "ref:EU:EVSE": "FRS50P50532001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ST PAIR SUR MER - Parking de la Liberte", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57012260000, + 48.81647510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81283001", + "charging_station:output": "22 kW", + "description": "SENOUILLAC - Avenue des Vignes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94809000000, + 43.94271400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Saint-Chamond", + "description": "Saint-Chamond", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "12", + "opening_hours": "24/7", + "start_date": "2023-11-21", + "charging_station:output": "43 kW;50 kW;350 kW;22 kW", + "ref": "FRIOYE480556;FRIOYE480553;FRIOYE480552;FRIOYE480551;FRIOYE480501;FRIOYE480502;FRIOYE480503;FRIOYE480504;FRIOYE480505;FRIOYE480506;FRIOYE480554;FRIOYE480555", + "socket:type2_combo:output": "50 kW;350 kW", + "ref:EU:EVSE": "FRIOYE480553;FRIOYE480552;FRIOYE480551;FRIOYE480501;FRIOYE480502;FRIOYE480503;FRIOYE480504;FRIOYE480505;FRIOYE480506;FRIOYE480554;FRIOYE480555;FRIOYE480556" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49552400000, + 45.46124000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-03-26;2021-04-09", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Cande - Saint-Nicolas;CANDE - Place Saint-Nicolas", + "ref:EU:EVSE": "FRS49E49054001;FRS49P49054A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03854600000, + 47.56134700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "79516", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PCHAUMONTEN", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/chaumonten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87341000000, + 49.26160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH11E62397001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GUINES - Avenue de la libération", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86069000000, + 50.86616100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA SALLE - Rue De La Baraque", + "ref:EU:EVSE": "FRS30E30140001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85990500000, + 44.04293200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/LLI2Z8CZS2PEU6", + "opening_hours": "24/7", + "ref": "1180011", + "charging_station:output": "50 kW;44 kW", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56P7269149637057039040" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76128900000, + 47.52764000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ADRIERS-1-1;ADRIERS-1-2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2016-03-22", + "opening_hours": "24/7", + "ref": "B001", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346396431;FRLMSE12346396441", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79966000000, + 46.25814800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P94069*B", + "ref:EU:EVSE": "FRMGPP94069B", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "484871", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45965300000, + 48.81421500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "description": "SIGEIF - 245 BD JEAN JAURES - BOULOGNE-BILLANCOURT", + "ref:EU:EVSE": "FRSIGPSIGE11611;FRSIGPSIGE11612", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*116*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24624200000, + 48.82880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "start_date": "2023-06-01", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ELANCOURT - Avenue Paul Cézanne", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRBE1E78208002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97005570000, + 48.77036840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSP89397417", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Charmes - ZA Hermitage", + "start_date": "2023-02-07", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30318100000, + 48.36069500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Vouharte | Place de L'Eglise", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "a759512e-86fd-5f86-be50-81c1501823da", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07409800000, + 45.81495600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-04", + "operator": "STATIONS-E", + "description": "CITROEN - NAVARRENX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE64NABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.74448200000, + 43.32678200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-23", + "capacity": "8", + "ref": "FRALLEGO9005671;FRALLEGO9003901;FRALLEGO9001831;FRALLEGO9001832;FRALLEGO9003902;FRALLEGO9005581;FRALLEGO9005582;FRALLEGO9005672", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Crèches Sur Saone", + "network": "Allego Carrefour Crèches Sur Saone", + "ref:EU:EVSE": "FRALLEGO9005671;FRALLEGO9003901;FRALLEGO9001831;FRALLEGO9001832;FRALLEGO9003902;FRALLEGO9005581;FRALLEGO9005582;FRALLEGO9005672" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79068000000, + 46.25269900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "LOMME - Egalité", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3970EVCP04;LFR3970EVCP03;LFR3970EVCP01;LFR3970EVCP02;LFR3970EVCP05", + "ref": "LFR3970EVCP04;LFR3970EVCP03;LFR3970EVCP01;LFR3970EVCP02;LFR3970EVCP05", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "capacity": "10", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00137400000, + 50.63083600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LESPINASSE - Route De L'Hers", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM31E31293001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39343100000, + 43.71175000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "9;10", + "ref:EU:EVSE": "FREBNPFB0EBACBBU;FREBNP2527007760751730131", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2022-10-04;2022-11-03", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/FB0EBACBBU;Chamonix, Parking Saint Michel", + "ref": "594419;FB0EBACBBU", + "charging_station:output": "7.4 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86732400000, + 45.92470900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "998781", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLM7TDH692P3R2", + "ref:EU:EVSE": "FRFR1P3361892809473546965", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10789000000, + 49.21815000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP07E75105002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - Soufflot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34247000000, + 48.84701900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNF37UCDDPC", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "30506", + "description": "Réseau eborn/NF37UCDDPC", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62105700000, + 46.02002000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "ref:EU:EVSE": "FREFLP9209569290753226436", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Tu,We,Mo,Sa,Th,Fr,Su 08:00-18:00", + "description": "Road/65e0542d91127b001c5a4177", + "charging_station:output": "22 kW", + "ref": "1036035", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85250600000, + 48.78983100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "SUPER U - PONT-DAIN", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*308*2*_*_;FR*SOD*S*OTHR*308*1*_*_", + "start_date": "2022-01-21", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR30821;FROTHPOTHR30811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34070300000, + 46.04010500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "PARKING N-1 SAVENAY 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6609135", + "network": "PARKING N-1 SAVENAY 1", + "ref:EU:EVSE": "FRCPIE6609135", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93780100000, + 47.37232600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Saint-Victor-Sur-Loire, Parking rue de la plage", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPBKUKVCUG0Q", + "ref": "BKUKVCUG0Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25641650000, + 45.44673130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "description": "WAAT/s570512", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P5383951328586736053", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1181778", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73543900000, + 48.50968000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8381881480260535559", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/NJQYCSS9YJ", + "network": "Freshmile France", + "ref": "597945", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86440500000, + 46.77243600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "IBIS COMPIEGNE", + "start_date": "2022-10-17", + "network": "ACCOR Hotels", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRTCBP00530", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "ref": "FRTCBP00530", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "339436917", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79000488504, + 49.39665921723 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "94217", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BVTHHN", + "ref:EU:EVSE": "FRFR1PBVTHHN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34338000000, + 48.62370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Nissan -La Ravoire", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN734901", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "start_date": "2023-10-30", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96708900000, + 45.56392200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Dirinon-Place François-marie Coatalem", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS29E29045001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.27062600000, + 48.39780400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/AIKEDRMXBL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "454434", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7910249409896327752" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66500600000, + 48.17728900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "575921", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/CIR_12050043690002", + "ref:EU:EVSE": "FRZP1P4016718688213315930", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57598500000, + 47.20044100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRRSEP01382A", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "description": "Régie Services Energie/FR*RSE*P01382*A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92875000000, + 46.01966700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/Longprestade", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PLONGPRESTADE", + "ref": "64757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99244000000, + 50.01060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST18321;FRIZFPFAST18312;FRIZFPFAST18311;FRIZFPFAST18313;FRIZFPFAST18322;FRIZFPFAST18323", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - ESSEY LES NANCY", + "amenity": "charging_station", + "start_date": "2024-05-31", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*183*2*_*_;FR*SOD*S*FAST*183*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22445160979, + 48.70124073991 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - LANGON - Rte. de Mennetou-Sur-Cher", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LANGON - Rte. de Mennetou-Sur-Cher", + "ref:EU:EVSE": "FRS41E5162;FRS41E5163", + "ref": "FRS41E5162;FRS41E5163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82850200000, + 47.28266300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-10", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS72E72334001", + "network": "SARTHE IRVE", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SILLE LE GUILLAUME - Place de la Gare", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12953460000, + 48.18184730000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9422;FRGLYPLYON9421;FRGLYPLYON9411;FRGLYPLYON9412", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "description": "BRN04 - CURIAL", + "ref": "FR*SOD*S*LYON*94*1*_*_;FR*SOD*S*LYON*94*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91804900000, + 45.73684500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E215817;FRS37E215811", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E215817;FRS37E215811", + "charging_station:output": "0 kW", + "description": "MODULO - CHAUMUSSAY - Rue Principale", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - CHAUMUSSAY - Rue Principale", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-09-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86222800000, + 46.87113800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "ref:EU:EVSE": "FRS56PRTQNMD", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Ruffiac - Place de la Poste", + "start_date": "2017-11-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28270800000, + 47.81975800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P45061A", + "start_date": "2022-06-01", + "capacity": "2", + "network": "AGGLOMERATION MONTARGOISE - CEPOY", + "amenity": "charging_station", + "description": "AGGLOMERATION MONTARGOISE - CEPOY", + "ref:EU:EVSE": "FRG10P45061A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74079800000, + 48.04335900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-05", + "description": "AUCHAN - DIEPPE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*AUCH*145*1*_*_", + "ref:EU:EVSE": "FROTHPAUCH14512;FROTHPAUCH14511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07909400000, + 49.90949500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE23011;FRSIGPSIGE23012", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*230*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 2 BIS HAMEAU DU BEAU JAY - BELLOY-EN-FRANCE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35309200000, + 49.07991600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "operator:email": "roaming@freshmile.com", + "ref": "21807", + "description": "Move In Pure/KZGQXC", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref:EU:EVSE": "FRCN1PKZGQXC", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80039000000, + 43.96330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "477789", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/UXEUSC0NOG", + "ref:EU:EVSE": "FRLE2P9059359294356020686" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732500000, + 44.61428500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Le Bois Plage en Ré | Rue des Bargeottes Parking Lazzate", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "e51e90b7-f3fd-55bf-a9b5-920a98b21f9a", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39203900000, + 46.18359200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "charging_station:output": "24 kW;22 kW;47 kW", + "amenity": "charging_station", + "start_date": "2021-04-14;2024-06-25", + "ref:EU:EVSE": "FRSE1PSE91BSPA;FRSE1PSE91BSPR", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW;47 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "Piscine des Sénart - BOUSSY ST ANTOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52636200000, + 48.69077900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Aureille, Place Du Huit Mai 1945", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRABAPUCXEDJDCYB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94853200000, + 43.70629800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3592EVCP02;LFR3592EVCP01", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3592EVCP02;LFR3592EVCP01", + "description": "TRANS EN PROVENCE Draguignan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47730700000, + 43.51466700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRENOBLE - Place André Malraux - CCI", + "start_date": "2022-02-04;2022-03-03", + "charging_station:output": "22 kW;7 kW", + "ref:EU:EVSE": "FRM38E38185013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72950500000, + 45.18551000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "QUIK8EU3EI;346916", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPQUIK8EU3EI;FREBNP7094270139720841616", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2020-12-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Valette Du Var, Pkg. Centre, place Jean Moulin;Réseau eborn/QUIK8EU3EI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92608500000, + 43.17724400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "971777", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLLQHNFGC1QS3G", + "ref:EU:EVSE": "FRFR1P4329224152289279040", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87230000000, + 46.37179300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PACCCHO", + "charging_station:output": "178 kW;160 kW;50 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-07-12;2024-07-11", + "description": "hotelF1 - Cholet", + "socket:type2_combo:output": "178 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84283688861, + 47.07147629683 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "231604;cussetgilbert", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPCUSSETGILBERT", + "description": "Cusset, Gilbert Roux;Réseau eborn/cussetgilbert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43955000000, + 46.13850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "5", + "owner:ref:FR:SIREN": "891624884", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Joué-lès-Tours - Jardiland", + "start_date": "2024-10-02", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPJLTJL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64748000000, + 47.34917000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking Sceaux Charaire - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP01E92071001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29335970000, + 48.77868380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "ref": "FRCPIE66546754", + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE66546754", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "HMV / SAINT DIE 2", + "operator:email": "support.eu@chargepoint.com", + "network": "HOPITAUX MASSIF DES VOSGES", + "owner:ref:FR:SIREN": "200096824", + "operator": "ChargePoint" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96302137377, + 48.28993400965 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "ref": "1152492;LLYIDP6161663N", + "description": "Pelousey, Parking du Centre;Easy Charge/LLYIDP6161663N", + "ref:EU:EVSE": "FRECHP9215834198451871274;FRECHPLLYIDP6161663N", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91961000000, + 47.27526100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1913", + "description": "Paris | Rue Manin 159", + "opening_hours": "24/7", + "ref": "FR*V75*PPX19*13", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39360000000, + 48.88609800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "541838", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/QROFJYHMEM", + "ref:EU:EVSE": "FRFR1P1031952251051065328", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68778200000, + 48.74537900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75PPX0203", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-11-03", + "amenity": "charging_station", + "capacity": "4", + "ref": "FR*V75*PPX02*03", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "description": "Paris | Rue Vivienne 43", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34089330000, + 48.87056260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5259016562424082610", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "435117", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/KCM19NLBYJ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53389200000, + 47.63742100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPGRIMVOLVO260001", + "capacity": "19", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-17:00", + "amenity": "charging_station", + "description": "Volvo - GRIM - Valence", + "operator:email": "support@driveco.com", + "start_date": "2021-01-13;2023-07-19", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93501100000, + 44.92174100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22249001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Pont Melvez-Parking de la mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30714700000, + 48.46020500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PORT LA NOUVELLE - Place Paul Valery", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11266003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06433300000, + 43.01397200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD ;TOYOTA PERIGUEUX - MAGOT CAVARD", + "ref": "131516;131517;131524;131525", + "ref:EU:EVSE": "FRZTLE22AC131525;FRZTLE22AC131524;FRZTLE22AC131517;FRZTLE22AC131516", + "start_date": "2022-05-11", + "opening_hours": " Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "338385685", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "description": "Toyota - Périgueux - 22kW AC \t;Toyota - Périgueux - 22kW AC ;Toyota - Périgueux - 22kW AC", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74611040000, + 45.17941688000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/NYOAPHU4JI", + "operator:email": "roaming@freshmile.com", + "ref": "101771", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P5037820682308466753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19691000000, + 48.67146700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PKQJTGP", + "capacity": "2", + "amenity": "charging_station", + "ref": "86645", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/KQJTGP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42916000000, + 49.93830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST6523;FRIZFPFAST6522;FRIZFPFAST6521;FRIZFPFAST6513;FRIZFPFAST6511;FRIZFPFAST6512", + "start_date": "2024-01-31", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*65*1*_*_;FR*SOD*S*FAST*65*2*_*_", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - EPAGNY", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08247410000, + 45.93298470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "MISSILLAC - Rue De La Fontaine Saint-Jean;OuestCharge - Diva Sp - Missillac - Saint-Jean", + "amenity": "charging_station", + "start_date": "2021-05-21;2024-04-22", + "network": "SYDELA;Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS44P44098B;FRS44E44098002", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15882800000, + 47.48087600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2023-05-16;2015-05-29", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61GVE1W45TQMVHRR86", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Machault - Pressoir;MACHAULT - Rue Des Trois Maillets", + "ref:EU:EVSE": "FRS77E77266001;FRS77P77266A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82900000000, + 48.45576100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGYMP6909858015017135942", + "description": "GreenYellow Shift Mobility/82", + "operator:email": "emobility.exploit@greenyellow.fr", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator": "GreenYellow | FR*GYM", + "ref": "1030590" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95629800000, + 50.62786900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221248;FRS37E221249", + "network": "MODULO - SAVONNIERES - Pl. du Faisan", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E221248;FRS37E221249", + "charging_station:output": "0 kW", + "description": "MODULO - SAVONNIERES - Pl. du Faisan", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54960400000, + 47.34860600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS55E247225;FRS55E247226", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - HAIRONVILLE - rue Charles COLLET - T2", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2024-05-22", + "ref:EU:EVSE": "FRS55E247225;FRS55E247226", + "description": "MODULO - HAIRONVILLE - rue Charles COLLET - T2", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08450800000, + 48.68389000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*114*3*_*_;FR*SOD*S*LYON*114*1*_*_;FR*SOD*S*LYON*114*2*_*_;FR*SOD*S*LYON*114*4*_*_", + "ref:EU:EVSE": "FRGLYPLYON11441;FRGLYPLYON11431;FRGLYPLYON11421;FRGLYPLYON11411", + "opening_hours": "24/7", + "start_date": "2021-08-25;2021-09-15", + "operator:email": "sav@izivia.com", + "description": "LY303 - SAXE - PLACE GUICHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84582800000, + 45.75899500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-16", + "description": "Lalliard Thonon Public", + "operator": "Mobilize Power Solutions", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRMBZEWPACS", + "network": "Lalliard Thonon", + "ref": "b5a900d7-6c96-417a-9df2-7bbac7e94632" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43904300000, + 46.34868100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPCHICHE340701", + "network": "DRIVECO", + "description": "Chiche plomberie - Montpellier", + "socket:type2_combo:output": "50 kW", + "start_date": "2024-02-21", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "capacity": "10", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86207400000, + 43.57977200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6553755;FRCPIE6553735", + "start_date": "2022-07-21", + "amenity": "charging_station", + "capacity": "4", + "network": "U BLAYE MINES BLAYE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6553755;FRCPIE6553735", + "operator:email": "info@chargepoint.com", + "description": "U BLAYE MINES BLAYE 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15594600000, + 44.02750800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leclerc/LHFKUTTBHP", + "ref": "892683", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P355301224432659286" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63342400000, + 43.40173800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Lege | Cap-Ferret | Avenue de la Gare | Mairie", + "ref": "05264312-6bf7-5f1e-9524-92cb3c8e020b", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14603000000, + 44.79577300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1fbe343b-45d3-545c-a655-76e32ef07298", + "description": "Saint-Michel-sur-Orge - Allée des Prairies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29927000000, + 48.63476600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO0000021", + "description": "Allego NISSAN Bruges", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "start_date": "2021-10-18", + "network": "Allego NISSAN Bruges", + "ref:EU:EVSE": "FRALLEGO0000021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62478571000, + 44.87978562000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3897EVCP02;LFR3897EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3897EVCP02;LFR3897EVCP01", + "description": "OLORON-SAINTE-MARIE - Prolongee", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61433700000, + 43.17989600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-08-08", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE7212;FRM06PNICE7211", + "ref": "FR*SOD*S*NICE*72*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARROS VILLAGE - PARKING DUPUY", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18901500000, + 43.79338300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "FREJUS - PARKING SCHWEITZER", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*201*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2023-01-18", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ20112;FRA16PWIIZ20111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75254600000, + 43.42741100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "529532", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/QALUCBHTJR", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8756369765261310805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459000000, + 44.92637000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-02-10", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PBWNBDS", + "charging_station:output": "22 kW", + "operator": "Power Dot France", + "description": "Best Western - Baldersheim", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37957000000, + 47.80179000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "description": "Réseau eborn/GCKM4BEY1K;La Clusaz, Parking Cimetière", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "GCKM4BEY1K;598251", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPGCKM4BEY1K;FREBNP3864952985224195778" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42499500000, + 45.90605900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/47FC3579-285B-450D-AA10-09CFAB50072D", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3349670947407668833", + "network": "EVzen", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "1175094" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77767700000, + 47.48135300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-18", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E47001004", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "AGEN - Marché" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61740600000, + 44.20416400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "79147", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPTL3NL9QBRT", + "description": "Réseau eborn/TL3NL9QBRT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52752500000, + 45.12748800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-22", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "904074713;904074714;904074715;904074716", + "capacity": "4", + "operator:email": "contact@qowatt.com", + "ref": "FR*EFL*EV5143988*C1;FR*EFL*EV2535798*C1;FR*EFL*EV0208609*C1;FR*EFL*EV9462571*C1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QoWatt", + "operator": "QoWatt", + "description": "QoWatt 22kW - CHATEAU CLOS DE LA RIBAUDIERE CHASSENEUIL", + "ref:EU:EVSE": "FREFLEV0208609;FREFLEV2535798;FREFLEV5143988;FREFLEV9462571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37620000000, + 46.65080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "description": "ENGIE Vianeo - Golbey - ZA Jeanne d'Arc", + "ref:EU:EVSE": "FRVIAP143030", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43427600000, + 48.20464300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLUWFOLET24X2X", + "opening_hours": "24/7", + "ref": "1111920", + "ref:EU:EVSE": "FRFR1P6653313076348865494", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21161300000, + 45.08289900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1109", + "description": "Paris | Avenue de Taillebourg 2", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "ref": "FR*V75*PPX11*09", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39776100000, + 48.84948000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2035719543973564539", + "ref": "915099", + "network": "Freshmile France", + "description": "Freshmile France/VM0SB9N68T", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22220300000, + 49.24518000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLEMPEREURMGDECHY591871", + "network": "DRIVECO", + "description": "MG Motor - Dechy", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-26", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12187100000, + 50.34459900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900098", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PBOURGACHARDMAIRIE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81792400000, + 49.35421000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "ref:EU:EVSE": "FRS21P21087A", + "operator:email": "roaming@freshmile.com", + "description": "SICECO/FR*S21*P21087*A", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "ref": "180353", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66744700000, + 47.10687000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-27", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "NOISY-LE-ROI - Gare", + "ref:EU:EVSE": "FRY03E78455004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06163053697, + 48.84169543568 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-14", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPQPRK8311;FRQPKPQPRK8321", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "ref": "FR*SOD*S*QPRK*83*2*_*_;FR*SOD*S*QPRK*83*1*_*_", + "operator:email": "sav@izivia.com", + "description": "QPARK - 83007 TOULON - PLACE DARMES LE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92842000000, + 43.12360600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "ref": "613606", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWATP8107481125094243041", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "description": "WAAT/FRWATL7CS7QWKP", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82547400000, + 43.93690700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "description": "IONITY Corbières Sud", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "capacity": "12", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "start_date": "2022-12-10", + "charging_station:output": "350 kW", + "ref:EU:EVSE": "FRIONE414700", + "ref": "FRIONE414700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54219400000, + 43.17690900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-14", + "ref:EU:EVSE": "FRS50P50890001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "description": "CONDE SUR VIRE - Le Bourg - Place de la mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03758940000, + 49.05179220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2023-05-26;2016-01-22", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77E77528001;FRS77P77528A", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref": "01F5ZAKH61JQAJB8N08A2XPVV4", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Voisenon;VOISENON - Rue Des Écoles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66464800000, + 48.57108700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "REL. BOSGOUET NORD", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680767;531680765;531680766;531680768;531680769;531680771;531680770;531680772", + "ref": "FRHPCPNF080261", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-07-05", + "ref:EU:EVSE": "FRHPCPNF080261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86450000000, + 49.36120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - CHAILLES - Rue des Cormiers", + "operator:email": "support@modulo-energies.fr", + "start_date": "2019-09-08", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS41E2957;FRS41E2956", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - CHAILLES - Rue des Cormiers", + "ref": "FRS41E2957;FRS41E2956" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30708873000, + 47.52983244000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PTTMTLH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "24756", + "description": "Mobilité électrique 56/TTMTLH", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00035000000, + 47.58670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1091469", + "description": "Freshmile France/LLPS8Q1V02PM74", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6381032083666424123" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22426300000, + 49.10960800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1193902", + "capacity": "5", + "description": "Métropolis/FR*MGP*P92048*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92048A", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23203300000, + 48.82216600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "start_date": "2019-12-26;2021-02-18", + "amenity": "charging_station", + "description": "Peugeot - ByMyCar - Cluses", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPBYMYCAR743001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56686000000, + 46.07317000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "ref": "FRC2P000407;FRC2P000406;FRC2P000405;FRC2P000402;FRC2P000401;FRC2P000403", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-06-13", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "FRC2P000402;FRC2P000401;FRC2P000403;FRC2P000405;FRC2P000406;FRC2P000407", + "description": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr", + "owner:ref:FR:SIREN": "778151290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72028207779, + 43.43741989136 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "ref": "541721", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P447813415524065210", + "description": "Leclerc/IFYOQREIHG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726200000, + 48.20011400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7f9f111c-ee99-574c-bc44-3e98afafa221", + "operator": "191__SDEER17", + "description": "MOBIVE | Chatelaillon | Parking Haut Rillon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07902700000, + 46.08067000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-07-13", + "description": "PINON - Centre", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE02PABA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44552800000, + 49.48832500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "description": "Allego FR, Bazalp, TV3 Kingersheim", + "network": "Allego FR, Bazalp, TV3 Kingersheim", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO8007531;FRALLEGO8001262;FRALLEGO8001251;FRALLEGO8001252;FRALLEGO8001261;FRALLEGO8001281;FRALLEGO8001282;FRALLEGO8007532", + "ref": "FRALLEGO8007532;FRALLEGO8001281;FRALLEGO8001251;FRALLEGO8001252;FRALLEGO8001261;FRALLEGO8001262;FRALLEGO8001282;FRALLEGO8007531", + "operator:email": "info@allego.eu", + "start_date": "2024-06-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31568300000, + 47.79049100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "446702", + "description": "Leclerc/G3CWYWKLKX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P8345974260159885934" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830900000, + 45.54410200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Gardanne, Avenue D'Arménie (Semag)", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PHN9WAB5YWI", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44866000000, + 43.45095400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "402551", + "ref:EU:EVSE": "FRS89P9203579885376813872", + "description": "SDEY/LCFU7VLMR8", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53779300000, + 47.74316800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-06", + "ref": "FR*SOD*S*WIIZ*55*1*_*_", + "network": "WIIIZ", + "description": "VALLAURIS PARKING PLAGE", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ5512;FRA16PWIIZ5511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07223200000, + 43.56484600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9102626298950104503", + "network": "Freshmile France", + "description": "Freshmile France/TI3K2PT3CV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454158", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72120000000, + 46.83290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SCI - La croix Martigues", + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;187.5 kW", + "start_date": "2023-02-24;2022-01-14", + "charging_station:output": "50 kW;100 kW;187.5 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSCISCM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02419890000, + 43.41024650000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPDRK2TIBPMV", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30512", + "description": "Réseau eborn/DRK2TIBPMV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10470600000, + 46.12044200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref": "1175079", + "description": "EVzen/EC6678CB-479A-459B-8379-DA488567452E", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP5809324023932275494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40178900000, + 47.75714600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR66221;FROTHPOTHR66222", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-28", + "description": "RONCQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*662*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13567800000, + 50.73784100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "75179", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPJT2OHSXSCS", + "description": "Réseau eborn/JT2OHSXSCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24180000000, + 46.18727000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref": "PXOA6DYBFU", + "ref:EU:EVSE": "FREBNPPXOA6DYBFU", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "La Pacaudiere, Parking gymnase" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87573188000, + 46.17604575000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "description": "U EXPRESS - RIGNAC", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR35411;FROTHPOTHR35421", + "start_date": "2022-03-23", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*354*1*_*_;FR*SOD*S*OTHR*354*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29929100000, + 44.40262100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLSOJCY492LFTI", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1133463", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8785858889362236117", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10930400000, + 49.15943300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP29982", + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Vendenheim, France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73215500000, + 48.65305400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4166433960422246035", + "ref": "1118283", + "network": "Freshmile France", + "description": "Freshmile France/LLV2FWK4E1M090", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14701300000, + 49.12357700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "start_date": "2023-03-22", + "amenity": "charging_station", + "description": "Audi - ByMyCar - Avignon", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPBYMYCARAUDI840001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84290500000, + 43.92579700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "description": "900025", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PIGOVILLEPARIS", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15633300000, + 49.31953700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22155001", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "La Motte-Rue Joseph Dupré", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73364000000, + 48.23396000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531669737", + "network": "Bricomarché Rive de Gier;Bricomarché Rive de Gier ", + "ref:EU:EVSE": "FRZIME22AC77752;FRZIME22AC77754", + "start_date": "2021-09-09", + "amenity": "charging_station", + "capacity": "1", + "description": "Bricomarché - Rive de Gier - 22kW AC ; Bricomarché - Rive de Gier - 22kW AC ", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "77752;77754", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60735420000, + 45.52574630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE27", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "portdelille-Halluin", + "operator": "RossiniEnergy", + "start_date": "2020-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11905870000, + 50.79120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-03", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78172003", + "network": "CPO Alizé Liberté Public", + "description": "CONFLANS-SAINTE-HONORINE - Place Du Colonnel Coutisson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09813300000, + 48.99641200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Montbartier", + "ref:EU:EVSE": "FRIOYE421553;FRIOYE421552;FRIOYE421551;FRIOYE421502;FRIOYE421501;FRIOYE421503;FRIOYE421504", + "network": "Montbartier", + "ref": "FRIOYE421553;FRIOYE421552;FRIOYE421504;FRIOYE421502;FRIOYE421501;FRIOYE421503;FRIOYE421551", + "start_date": "2024-02-11", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30880978000, + 43.91497463000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "AMBRIERES-LES-VALLEES - Rue Des Moulins", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "FRS53E53003002", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-06-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62849998474, + 48.40266799927 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65460002", + "start_date": "2022-03-02", + "description": "VIC BIGORRE - Place Gambetta", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05502000000, + 43.38535000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "ref": "FRIENE006602;FRIENE006601", + "owner:ref:FR:SIREN": "898270251", + "network": "Trie-la-Ville", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Trie-la-Ville", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE006602;FRIENE006601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83238200000, + 49.28141300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34344003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA GRANDE MOTTE - Parking Maurice Justin", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-01", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08357600000, + 43.55642000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-LAFM-002", + "description": "LA FERTE MACE - Pl. du Château", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61168B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35520800000, + 48.59029800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "694343", + "description": "Freshmile France/WC9D5OUSO6", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4049055504837666537" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59301500000, + 45.52731300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PAJUWUG", + "description": "Roulez Électrique En Haute-Garonne/AJUWUG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "79750", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40515300000, + 43.77990100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "operator": "Bouygues E&S", + "description": "ASNIERES-SUR-SEINE - Rue Georges Guynemer", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE92004022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29088770804, + 48.91576231470 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Villa des Bordes", + "amenity": "charging_station", + "network": "La Villa des Bordes", + "ref:EU:EVSE": "FRCG0E000178;FRCG0E000179;FRCG0E000180", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRCG0E000178;FRCG0E000179;FRCG0E000180", + "start_date": "2022-05-02", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75964700000, + 47.81898200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE12821;FRM06PNICE12811", + "start_date": "2021-04-07", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "description": "LE BROC - PARKING COUVERT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*128*1*_*_;FR*SOD*S*NICE*128*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16821900000, + 43.80903800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Pontenx | Parking Eglise", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6031c4eb-4f4c-51d1-93b9-99b1010c430e", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12123700000, + 44.24158100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRSE1PSE57VABA", + "capacity": "2", + "description": "VAUDRECHING / RUE BERNANOS", + "amenity": "charging_station", + "start_date": "2023-09-27", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52628900000, + 49.30003000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "description": "Bump - IPTransAuto - Nation", + "ref:EU:EVSE": "FRBMPS2789;FRBMPS2787;FRBMPS2791;FRBMPS2790", + "amenity": "charging_station", + "capacity": "3", + "ref": "2789;2787;2791;2790", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39955280000, + 48.84512420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "HERBLAY - Coty", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3959EVCP04;LFR3959EVCP01;LFR3959EVCP02;LFR3959EVCP03;LFR3959EVCP05", + "capacity": "10", + "ref": "LFR3959EVCP04;LFR3959EVCP01;LFR3959EVCP02;LFR3959EVCP03;LFR3959EVCP05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18627000000, + 49.00163500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Larche | Place Docteur Rene Jaubertie", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "3bc31f86-8cc1-5b9f-88ca-2f25e8be6f68", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41451200000, + 45.12196200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Montgeron - Parking Est", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "df7db020-b678-5a7f-a636-8b255f7d8445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46456700000, + 48.70908600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2020-10-06", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000AVGMONTFAVET", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P84000*AVG*MONTFAVET", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "description": "MONTFAVET ETOILE - AVIGNON", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87634900000, + 43.94016100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2938EVCP01;LFR2938EVCP02", + "ref": "LFR2938EVCP01;LFR2938EVCP02", + "description": "REMOULINS - Geoffroy Perret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57314600000, + 43.93934500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "Team Square - Hénin-Beaumont", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PTSQHBA", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "start_date": "2022-08-05", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96518310185, + 50.38676221801 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "1181241", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP2575010428114535836", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/LLYMONULU1TX92" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65965400000, + 45.19391600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5351716552585755113", + "ref": "559778", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/RKIXOAPMW8", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88330900000, + 43.60637700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Silo de la Gare de Caen - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "capacity": "44", + "ref:EU:EVSE": "FRP01E141180014;FRP01E14118001;FRP01E141180011;FRP01E141180012;FRP01E141180013", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34807900000, + 49.17793900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "ref:EU:EVSE": "FRCPSPCAPS5511;FRCPSPCAPS5512", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*CAPS*55*1*_*_", + "operator:email": "sav@izivia.com", + "description": "LONGJUMEAU - LEHONTINE SOHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29440150000, + 48.69488790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bourg-Lès-Valence, Parking Valentin;Réseau eborn/PO6ZR7Q3T0", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPPO6ZR7Q3T0", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "63983;PO6ZR7Q3T0", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89354900000, + 44.94623200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*47*2*_*_;FR*SOD*S*OTHR*47*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR4711;FROTHPOTHR4721", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "NETTO - AISEREY", + "start_date": "2020-08-11", + "operator:email": "sav@izivia.com", + "network": "NETTO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16026500000, + 47.17441200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/DAUUCNFXSE", + "ref:EU:EVSE": "FRFR1P8768330135042489693", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "529160", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54363500000, + 43.49646400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "start_date": "2023-11-24", + "charging_station:output": "22 kW", + "description": "44 Rue du Camp Romain", + "ref:EU:EVSE": "FRUBIE10076738;FRUBIE10021346" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32011100000, + 49.49566700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "1161774", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW", + "description": "Freshmile France/LLV2DVURY2PGYC", + "ref:EU:EVSE": "FRFR1P8293057507051984991" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21944500000, + 49.12228800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "start_date": "2022-12-14;2022-04-08", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOULOUSE - Avenue de Castres", + "charging_station:output": "22 kW;90 kW;180 kW", + "ref:EU:EVSE": "FRTLSE31555007", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48832000000, + 43.59472000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LLX0EBI7J25OKT", + "ref:EU:EVSE": "FRFR1P4166736624068423058", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1111950" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49169500000, + 47.44134700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/JCXRAXISUD", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P5861265153967099567", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461781" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22054800000, + 49.25100300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "VILLEMOUSTAUSSOU - Parking Impasse Des Stades", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11429001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2017-11-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36496333333, + 43.25334940000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "CHÂTEAUFORT - Rue d'Ors", + "ref:EU:EVSE": "FRY03E78143003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09283110000, + 48.73257310000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "5f66a7ea-e7fd-5576-9fe9-a5f7bb639b99", + "description": "CCTLB - Reherrey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76679800000, + 48.50903700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref": "735255", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "SIED70/MK1AHL8ZA7", + "ref:EU:EVSE": "FRS70P1935206022371112249" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89595700000, + 47.70974700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAILLEUL - Avenue De La Liberation", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59043001", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73521800000, + 50.72962400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS35P35288004B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ST MALO - 5 rue du Prieuré St Domin (Place Resistance) ", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98196500000, + 48.65805100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG63 - ePremium - Clermont Ferrand - Eychart;SIEG 63/FR*S63*P63113*K", + "socket:type2_combo:output": "25 kW;22 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS63P63113K", + "opening_hours": "24/7", + "ref": "704486", + "start_date": "2022-12-23", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06588600000, + 45.79348200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PVSWHWM", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VSWHWM", + "operator": "Freshmile | FR*FR1", + "ref": "257206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58943100000, + 49.08870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEG32/JPBEPL", + "ref:EU:EVSE": "FRS32PJPBEPL", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "ref": "213047", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18727000000, + 43.77730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94002010", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "start_date": "2023-05-31", + "description": "ALFORTVILLE - Rue Etienne Dolet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42604107116, + 48.79086823121 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EPAF VACANCES GERARDMER - 88400 - 2", + "network": "EPAF VACANCES GERARDMER - 88400 - 2", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001351;FRCG0E001352", + "ref": "FRCG0E001351;FRCG0E001352", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86207900000, + 48.07655100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE2511;FRM06PNICE2512", + "opening_hours": "24/7", + "ref": "FR*SOD*S*NICE*25*1*_*_", + "description": "VENCE - MARECHAL JUIN RP", + "operator:email": "sav@izivia.com", + "start_date": "2019-01-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10802603162, + 43.72331949976 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Pujols | Parking Mairie", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "100c8df7-5b2e-5b5c-b1a6-27271ec1263c", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69080900000, + 44.38606300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*388*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE38812;FRSIGPSIGE38811", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - PARKING JEAN MOULIN - SANNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24230000000, + 48.97840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "LE MESNIL-ESNARD - Rue D'Anjou", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-28", + "ref:EU:EVSE": "FRC01E76429003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14970600000, + 49.41347700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3359EVCP01;LFR3359EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3359EVCP01;LFR3359EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "BRIVE LA GAILLARDE Chirac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55126000000, + 45.16779800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Germain de Lusignan | Av. de la Libération", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "be88049c-6625-5577-9248-915342f2e708", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45979200000, + 45.45013500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDE82/monteils", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PMONTEILS", + "ref": "46657" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55389000000, + 44.16600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP92350LPRF1DEL", + "ref": "FR*55C*P92350*LPR*F1DEL", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-09-04", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "description": "RUE MOULIN FIDEL - LE PLESSIS-ROBINSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26150100000, + 48.77490600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "ref": "LFR4072EVCP01;LFR4072EVCP02;LFR4072EVCP03;LFR4072EVCP04", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4072EVCP01;LFR4072EVCP02;LFR4072EVCP03;LFR4072EVCP04", + "description": "CROZON - PENANDREFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.47109200000, + 48.24988700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMMSC", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "description": "Intermarché - Massiac", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19968068322, + 45.26236561619 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPV03V6B3GVC", + "description": "Réseau eborn/V03V6B3GVC", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "ref": "30482", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86724400000, + 45.91694700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - Hotel IBIS LE HAVRE SUD - HARFLEUR", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP76341A", + "ref:EU:EVSE": "FRETIP76341A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19576820912, + 49.50322827679 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PCORBLF", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "22 kW;50 kW;100 kW;187.5 kW", + "opening_hours": "24/7", + "capacity": "11", + "description": "Cora - Belfort", + "start_date": "2024-03-26;2023-11-13", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86158518193, + 47.59950435520 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-09-30;2024-05-15", + "description": "Carrefour Market - Laon Christ", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT020001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60834500000, + 49.57051400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Thionville - KFC", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "ref:EU:EVSE": "FRELCPTHIKF", + "start_date": "2023-11-23", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13738500000, + 49.35671300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - DOUAI", + "ref": "FR*SOD*S*AUCH*161*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPAUCH16111;FROTHPAUCH16112", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-10-31", + "network": "AUCHAN", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09798536771, + 50.34198722742 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "ANFRAY 150KW BORNE 1", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "ANFRAY 150KW BORNE 1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6776975", + "operator:email": "info@chargepoint.com", + "start_date": "2023-08-24", + "ref": "FRCPIE6776975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15607500000, + 48.01190100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "597726", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P9089084412560324028", + "charging_station:output": "22 kW", + "description": "Freshmile France/AJAG0W3H7H", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78659400000, + 46.24609400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref:EU:EVSE": "FRV75P901104", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9011*04", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "description": "Paris | Rue Saint-Maur 94", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37793900000, + 48.86535800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/E8G5ELE480", + "capacity": "10", + "ref:EU:EVSE": "FRFR1P7899567677201427796", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "50 kW;36 kW;3 kW", + "ref": "466002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30402800000, + 47.87786800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Valenciennes", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP3018", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45593100000, + 50.33670400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1184546", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLTWRFZR1MMQOA", + "ref:EU:EVSE": "FRFR1P2074344673844662666", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48062700000, + 50.37907800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "description": "R3 - Norauto Metz Semecourt", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363752", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "network": "R3", + "start_date": "2023-05-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14385300000, + 49.19134000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1052223", + "description": "MobiSDEC/LLSU8FDQOIHIQN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P5890447318928915251", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35413900000, + 49.30864300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12244001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-09-07", + "description": "SAINT ROME DE TARN - Place De Terrail", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89721900000, + 44.04896600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA5P7541495181782306447", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "6.9 kW;7.4 kW", + "ref": "880239", + "description": "WAAT/FRWATLM0EL21RA", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30372700000, + 46.79984900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-03-27;2021-04-27;2024-03-30", + "ref:EU:EVSE": "FRS49P49345A;FRS49E49345001", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Thouarce - Ponts;THOUARCE - Avenue des Trois Ponts", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50514800000, + 47.26586200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81105002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-08-23", + "description": "GRAULHET - Cinéma Vertigo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99758000000, + 43.76072400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF026412", + "amenity": "charging_station", + "ref": "FRHPCPNF026412", + "charging_station:output": "75 kW;225 kW", + "capacity": "3", + "owner:ref:FR:SIREN": "531681530;531681527;531681528;531681529", + "start_date": "2024-01-24;2023-06-28", + "opening_hours": "24/7", + "socket:type2_combo:output": "75 kW;225 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS LAGARDE CLERMONT-FERRAND LAFAYETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09610000000, + 45.77290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "LACAPELLE - MARIVAL - Rue des Remparts", + "ref:EU:EVSE": "FRS46E46143001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92687800000, + 44.72744000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PRZFTLA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "25087", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/RZFTLA", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72377000000, + 47.91110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH04E59178007", + "operator": "Bouygues E&S", + "description": "DOUAI - Gare de Douai", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08999800000, + 50.37336300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS29E2922100", + "description": "Porspoder-Rue de l'Europe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.76453400000, + 48.51339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-11-23", + "charging_station:output": "22 kW", + "description": "SAINT-MAUR-DES-FOSSÉS - 4 Avenue Joffre", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49309352076, + 48.80239152441 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-13", + "ref:EU:EVSE": "FRLMSE12346051151;FRLMSE12346051152;FRLMSE12346051161;FRLMSE12346051162", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B006", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "AYRON-1-2;AYRON-1-1", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07623000000, + 46.66011000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "capacity": "7;8", + "start_date": "2021-01-21", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "330293", + "owner:ref:FR:SIREN": "885354860", + "description": "Métropolis/FR*MGP*P92063*F;Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "ref:EU:EVSE": "FRMGPP92063F", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551000000, + 48.86501900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "SIGEIF - PARKING ESPACE SAINT EXEPURY - WISSOUS", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*60*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE6012;FRSIGPSIGE6011", + "start_date": "2021-01-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32470400000, + 48.73466000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRALLEGO9009521;FRALLEGO9008752;FRALLEGO9008751;FRALLEGO9008511;FRALLEGO9008512;FRALLEGO9009522", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9009521;FRALLEGO9008752;FRALLEGO9008751;FRALLEGO9008511;FRALLEGO9008512;FRALLEGO9009522", + "start_date": "2023-09-23", + "operator:email": "info@allego.eu", + "description": "Allego Carrefour Bayeux", + "network": "Allego Carrefour Bayeux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70547200000, + 49.28439800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "description": "Howdens Marseille", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "ref:EU:EVSE": "FRLMSE1000058476", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37469900000, + 43.33347800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "ead53184-34bf-53bf-a857-09ece2c73922", + "description": "MOBIVE | Bassussary | Place Barthelemy", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50945300000, + 43.44656400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LES HERBIERS - Avenue De L'Europe - Parking Origne Hall", + "ref:EU:EVSE": "FRS85E85109004", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "owner:ref:FR:SIREN": "200042489", + "charging_station:output": "50 kW;43 kW", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02214300000, + 46.87745300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Allego Carrefour Lesparre", + "network": "Allego Carrefour Lesparre", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "ref": "FRALLEGO9000111;FRALLEGO9000112;FRALLEGO9006401;FRALLEGO9006402;FRALLEGO9006951;FRALLEGO9006952", + "ref:EU:EVSE": "FRALLEGO9006952;FRALLEGO9000111;FRALLEGO9000112;FRALLEGO9006401;FRALLEGO9006402;FRALLEGO9006951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93964020000, + 45.31038818000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR2848EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "ST VIGOR LE GRAND Esquay Seulles", + "ref": "LFR2848EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68618000000, + 49.27435400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;100 kW;188 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PLCLACR", + "start_date": "2023-06-27", + "charging_station:output": "188 kW;50 kW;100 kW;22 kW", + "opening_hours": "24/7", + "capacity": "11", + "description": "E.Leclerc - Achères", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05661110000, + 48.96113420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/NNKJNY;Chamagnieu, Route de Vienne", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPNNKJNY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref": "NNKJNY;32779" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16758000000, + 45.67930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "927777", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/4950F195-D27D-4BC2-ABD4-D5C377770630", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP9085215477217515437", + "operator:email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25172000000, + 43.41161200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PGFECON", + "description": "Specialized Store - Condom", + "start_date": "2024-03-28", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36952128438, + 43.95118172766 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-08-27", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Leroy Merlin - Reau", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRE11PLMREAU775501", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60762000000, + 48.61360200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP05012A", + "start_date": "2023-12-18", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRETIP05012A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Hotel Les Peupliers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49185000000, + 44.53632700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "ref:EU:EVSE": "FROTHPOTHR15512;FROTHPOTHR15511", + "capacity": "2", + "description": "VAL DE MODER", + "amenity": "charging_station", + "start_date": "2021-04-15", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*155*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61112400000, + 48.84499900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-09", + "ref:EU:EVSE": "FRCPIE6963435", + "capacity": "2", + "amenity": "charging_station", + "network": "QPER CERDAN 1 STATION 1", + "opening_hours": "Mo 07:00-18:30,Tu 07:00-18:30,We 07:00-18:30,Th 07:00-18:30,Fr 07:00-18:30", + "ref": "FRCPIE6963435", + "charging_station:output": "22 kW", + "description": "QPER CERDAN 1 STATION 1", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07321500000, + 48.01053400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "578975", + "charging_station:output": "22 kW", + "description": "Freshmile France/TFJKXAUZJE", + "ref:EU:EVSE": "FRFR1P5323112925107527481", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07482600000, + 49.11449500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRVIAP122064", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - B&B HOTEL PARIS ROISSY CDG AEROPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51464300000, + 48.99775000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/VAC3YJH6PA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8400481158518190898", + "operator": "Freshmile | FR*FR1", + "ref": "782412", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90753400000, + 50.40535500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "description": "Île Rousse (G2)", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPIR202201", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93516600000, + 42.63635000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/TFQU7A1NFU", + "ref:EU:EVSE": "FRFR1P4660175431537111395", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626279", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88106900000, + 45.28534000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-22", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-17:00, Tu 09:00-17:00, We 09:00-17:00, Th 09:00-17:00, Fr 09:00-17:00", + "ref:EU:EVSE": "FRSSDPIBISLESQUIN598101", + "charging_station:output": "22.08 kW", + "description": "Ibis -Lesquin", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09078200000, + 50.58150300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - TREMBLAY LES VILLAGES - Rue Taugourdeau", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E130903", + "ref:EU:EVSE": "FRS28E130903", + "description": "MODULO - TREMBLAY LES VILLAGES - Rue Taugourdeau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38225100000, + 48.60013400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/VIVCM51QGG", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "456852", + "ref:EU:EVSE": "FRS14P4011448614228972134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176000000, + 48.91755300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1127895", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P2684469333863233004", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5L3138TM9C", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43200300000, + 43.33837700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-01-26", + "ref:EU:EVSE": "FRS50P504101", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "PONTORSON - aire de covoiturage", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49998640000, + 48.55421010000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8125100122;FRS81E8125100121;FRS81E8125100111", + "description": "ST GERMAIN DES PRES - Cimetière - Bourg", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06637632000, + 43.56165320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Relais Bosc Mesnil", + "amenity": "charging_station", + "start_date": "2024-02-20", + "charging_station:output": "54 kW", + "capacity": "1", + "ref:EU:EVSE": "FRHPCPNF078180", + "opening_hours": "24/7", + "ref": "FRHPCPNF078180", + "network": "TotalEnergies Charge Rapide", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531681741", + "operator": "TotalEnergies Charging Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33570000000, + 49.67580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-28;2021-04-26;2024-03-30", + "description": "ANGERS - Place Fraternité;OuestCharge - Diva Sp - Angers - Fraternite", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49007027;FRS49P49007AA", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56084200000, + 47.49153000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "46570", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/villersstpaul", + "ref:EU:EVSE": "FRS60PVILLERSSTPAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50007000000, + 49.29110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH08E59295004", + "operator": "Bouygues E&S", + "description": "HAZEBROUCK - Place Jean Jaurès", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54455300000, + 50.71188000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS30E30090001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CONCOULES - Parking De L'Auberge", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93964800000, + 44.38440800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-07-16", + "network": "Morbihan Energies", + "socket:type2_combo:output": "42 kW", + "ref:EU:EVSE": "FRS56PBUGKFT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Rue Léo Lagrange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37854000000, + 47.76290100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B171", + "charging_station:output": "360 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CHALAIS AIRE T365 1", + "start_date": "2025-06-06", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346367112;FRLMSE12346367111", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "socket:type2_combo:output": "360 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10508242128, + 46.95961220653 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP93078A", + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref": "484844", + "description": "Metropolis - Citadine - Villepinte - Hôtel de Ville;Métropolis/FR*MGP*P93078*A", + "start_date": "2022-04-29", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53470400000, + 48.96342700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "ref:EU:EVSE": "FRSHEE405", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "150 kW;125 kW;22 kW", + "start_date": "2024-05-21", + "opening_hours": "24/7", + "description": "Shell Gonfreville L'O - Le Havre", + "network": "Shell Gonfreville L'O - Le Havre", + "ref": "FRSHEE405" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21080800000, + 49.50314500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BOTANIC Montbonnot - Route de la Doux - [Alizé]", + "capacity": "8", + "ref:EU:EVSE": "FRBE1E38249002", + "charging_station:output": "120 kW;22 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-02-02", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "socket:type2_combo:output": "120 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82035310000, + 45.22320530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-16", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A26 Mont de Nizy", + "ref:EU:EVSE": "FRLMSP89370715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515000000, + 49.44985700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "bd082e4b-8542-52e6-b263-1f02c962d2b9", + "operator": "190__SDEG16", + "description": "MOBIVE | Champagne-Mouton | Place du Château" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41141300000, + 45.99266100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;25 kW;22 kW", + "socket:type2_combo:output": "25 kW;50 kW", + "ref:EU:EVSE": "FRSE1PSE62BBRA;FRSE1PSE62BBRB", + "description": "3BRASSEURS - Bruay la Buissiere", + "owner:ref:FR:SIREN": "835124280", + "capacity": "2;3", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58027700000, + 50.49518500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "300 kW;150 kW;0 kW;22 kW", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "start_date": "2023-09-28", + "description": "STAINS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLPEVCARSSTAIN", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38472000000, + 48.94688500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3741EVCP07;LFR3741EVCP06;LFR3741EVCP05;LFR3741EVCP04;LFR3741EVCP03;LFR3741EVCP01;LFR3741EVCP02;LFR3741EVCP08;LFR3741EVCP09;LFR3741EVCP10", + "description": "CROISSY BEAUBOURG Soubriarde", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "360 kW;22 kW;180 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "360 kW;180 kW", + "ref": "LFR3741EVCP08;LFR3741EVCP07;LFR3741EVCP06;LFR3741EVCP05;LFR3741EVCP04;LFR3741EVCP03;LFR3741EVCP01;LFR3741EVCP02;LFR3741EVCP09;LFR3741EVCP10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64249900000, + 48.82822100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "GUILERS - Route De Brest", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM29E29069001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52848300000, + 48.41103100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Réseau eborn/NXC2C8QRH3;Le Muy, Parking de la médiathèque", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP5819573692089401777;FREBNPNXC2C8QRH3", + "ref": "NXC2C8QRH3;598269" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56322100000, + 43.47354600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7027996284765559090", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ROA62NCPNF", + "ref": "515108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12790800000, + 43.51101200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "STRASBOURG - Kleber", + "start_date": "2021-05-01;2022-07-08;2024-09-01", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E67482002;FRP07E674820022;FRP07E674820021", + "capacity": "22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74417000000, + 48.58430100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPHJJFHK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Saint-Romain-En-Jarez, Rue Suel Picat;Réseau eborn/HJJFHK", + "start_date": "2020-06-12", + "ref": "HJJFHK;96086" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53528000000, + 45.55610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "Road", + "ref:EU:EVSE": "FREFLP6763119821355169570", + "ref": "1078104", + "charging_station:output": "44 kW;396 kW;22 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "396 kW", + "opening_hours": "Th,Mo,Tu,We,Sa,Su,Fr 08:00-18:00", + "description": "Road/6628e65110e1ec001cf69f2e", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08767300000, + 46.05884600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "E.LECLERC", + "socket:type2_combo:output": "50 kW;63 kW;100 kW", + "amenity": "charging_station", + "start_date": "2022-12-19;2021-11-05;2023-01-13", + "ref:EU:EVSE": "FROTHPOTHR27393;FROTHPOTHR27383;FROTHPOTHR27382;FROTHPOTHR27373;FROTHPOTHR27372;FROTHPOTHR27371;FROTHPOTHR27363;FROTHPOTHR27362;FROTHPOTHR27361;FROTHPOTHR27352;FROTHPOTHR27351;FROTHPOTHR27343;FROTHPOTHR27342;FROTHPOTHR27321;FROTHPOTHR273111;FROTHPOTHR27311;FROTHPOTHR273103;FROTHPOTHR273102;FROTHPOTHR273101;FROTHPOTHR273112;FROTHPOTHR273113;FROTHPOTHR27341;FROTHPOTHR27353;FROTHPOTHR27381;FROTHPOTHR27391;FROTHPOTHR27392", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "572183994", + "operator:email": "sav@izivia.com", + "capacity": "1;3", + "charging_station:output": "100 kW;50 kW;3.68 kW;63 kW", + "ref": "FR*SOD*S*OTHR*273*8*_*_;FR*SOD*S*OTHR*273*5*_*_;FR*SOD*S*OTHR*273*4*_*_;FR*SOD*S*OTHR*273*10*_*_;FR*SOD*S*OTHR*273*1*_*_;FR*SOD*S*OTHR*273*11*_*_;FR*SOD*S*OTHR*273*2*_*_;FR*SOD*S*OTHR*273*6*_*_;FR*SOD*S*OTHR*273*7*_*_;FR*SOD*S*OTHR*273*9*_*_", + "description": "E.LECLERC - ARES - ZONE 4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11487700000, + 44.76881700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "CGED METZ", + "ref:EU:EVSE": "FRCPIE6605945", + "ref": "FRCPIE6605945", + "charging_station:output": "22 kW", + "network": "CGED METZ", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15774100000, + 49.15406900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6404564630411414980", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "978086", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLK6UGQFAH0UHY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20221500000, + 48.95598700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA2P1819253431313868895", + "capacity": "2", + "amenity": "charging_station", + "ref": "1169742", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "description": "WAAT/s527262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06044200000, + 49.41530800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Touquet, Avenue Quentovic", + "network": "Touquet Normal", + "start_date": "2022-12-29", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "528932627", + "ref:EU:EVSE": "FRFR1PQAHLNICPOS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "advenir@freshmile.com", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58906567785, + 50.52614939775 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "aguerin@seeyousun.fr", + "description": "Patte d'oie", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "ref:EU:EVSE": "FRSYSELMSPAT", + "operator": "See You Sun", + "charging_station:output": "7.4 kW", + "network": "Le mans sun ", + "owner:ref:FR:SIREN": "824641294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17291600000, + 47.97728400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/RXZDFS3J0N", + "capacity": "2", + "amenity": "charging_station", + "ref": "472260", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5969925507477264278", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61308800000, + 48.55933700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Kia - Aero Auto - Gometz", + "opening_hours": "Mo 08:00-12:30, Mo 14:00-19:00, Tu 08:00-12:30, Tu 14:00-19:00, We 08:00-12:30, We 14:00-19:00, Th 08:00-12:30, Th 14:00-19:00, Fr 08:00-12:30, Fr 14:00-19:00, Sa 09:00-12:30, Sa 14:00-19:00", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPAEROAUTOKIA919401", + "start_date": "2020-09-24", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13786500000, + 48.67405200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS29E2902200", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Camaret sur Mer-Rue du Loch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.59549700000, + 48.27536400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P6791446291718391676", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/S5GFRFHWSW", + "opening_hours": "24/7", + "ref": "74999" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51117400000, + 48.49356100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "description": "Zephyre/LP003B30;Zephyre/LE00662A;Zephyre/LE006631;Zephyre/LE00662D", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P8680502421093500226;FRZP1P3998745811558201895;FRZP1P9201925086360357701;FRZP1P5144512661100846343", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@zephyre.fr", + "ref": "576119;575969;575981;575972" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22168900000, + 46.18432000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE79", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "3", + "owner:ref:FR:SIREN": "839265873", + "description": "AssifepFretin", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-05-10", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13263800000, + 50.57641400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/Corbiegare", + "ref:EU:EVSE": "FRS80PCORBIEGARE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64805", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50076000000, + 49.91120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST15613;FRIZFPFAST15612;FRIZFPFAST15611", + "description": "IZIVIA FAST - MCDONALDS - BEAURAINS", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*156*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-09", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79983749815, + 50.26829057082 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - VENDOME - Square Anciens d'Indochine", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS41E4678;FRS41E4679", + "description": "MODULO - VENDOME - Square Anciens d'Indochine", + "charging_station:output": "0 kW", + "ref": "FRS41E4678;FRS41E4679", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07076600000, + 47.80338200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60P6362924462917142179", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/VWHMTR5IOS", + "ref": "598203" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98229600000, + 49.35097200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LY905 - MARIETTON", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "ref": "FR*SOD*S*LYON*70*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-07-27", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON7011;FRGLYPLYON7012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80015200000, + 45.77603700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - MONTBAZON - Rte. Nationale", + "ref": "FRS37E214063;FRS37E214064", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-16", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E214063;FRS37E214064", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - MONTBAZON - Rte. Nationale" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71726200000, + 47.28942300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/ATFEQY", + "opening_hours": "24/7", + "ref": "22006", + "ref:EU:EVSE": "FRS56PATFEQY", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81932000000, + 47.91870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "network": "CBS - Gare de Culoz 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CBS - Gare de Culoz 2", + "ref:EU:EVSE": "FRG10P01138B", + "operator:email": "contact@e-totem.fr", + "start_date": "2019-05-14", + "ref": "FRG10P01138B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77937700000, + 45.84335000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - HOUDEMONT - Pkg. relais de la gare", + "description": "MODULO - HOUDEMONT - Pkg. relais de la gare", + "ref:EU:EVSE": "FRN54E187685;FRN54E187686", + "ref": "FRN54E187685;FRN54E187686" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18008000000, + 48.64580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 68 RUE DE PARIS - LE THILLAY", + "ref:EU:EVSE": "FRSIGPSIGE20312;FRSIGPSIGE20311", + "start_date": "2021-11-17", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*203*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47116300000, + 49.00259300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Groupe Fabre - Audi Rodez - 12850 - 1", + "network": "Groupe Fabre - Audi Rodez - 12850 - 1", + "ref": "FRCG0E001864;FRCG0E001863", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001864;FRCG0E001863", + "start_date": "2023-09-28", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54259416000, + 44.37580762000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;63 kW;22 kW", + "description": "ENGIE Vianeo - A51 Aubignosc Est", + "amenity": "charging_station", + "start_date": "2023-09-05", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89917597" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98023200000, + 44.13350400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Aiguillon | Parking Avenue Jf Poncet", + "ref": "f68f1130-1fb1-5838-ba3c-65f7fc032e9d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33944300000, + 44.29547500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "ABYSSEA - Civaux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE86CXQA;FRSE1PSE86CXQB", + "network": "Stations-e", + "socket:type2_combo:output": "50 kW;25 kW", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-09-01", + "charging_station:output": "25 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66189600000, + 46.44501100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "PEYMEINADE - PARKING CO-VOITURAGE", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ9411;FRA16PWIIZ9412", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "start_date": "2019-12-13", + "ref": "FR*SOD*S*WIIZ*94*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89253100000, + 43.64505000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3761EVCP01;LFR3761EVCP02", + "socket:type2_combo:output": "120 kW", + "description": "EAUZE Pyrenees", + "ref": "LFR3761EVCP01;LFR3761EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09693500000, + 43.85252600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRIE-ET-ANGONNES - Parking Relais Brié et Angonnes - Tavernolles", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-06-27", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38059001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77112870000, + 45.13462080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LQAM9T3B0V;Correns, La Condamine", + "ref": "LQAM9T3B0V;301201", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-10-15", + "ref:EU:EVSE": "FREBNPLQAM9T3B0V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08065000000, + 43.48513000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5783960511662109639", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref": "892572", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLKQWGJ5Y19FOL", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06842200000, + 49.23414700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "RUEIL MALMAISON - Hôtel De Ville", + "start_date": "2024-02-23", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E920630092;FRP07E92063009;FRP07E920630091", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18063590000, + 48.87810080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-08", + "ref:EU:EVSE": "FREBNP8516373769122288735;FREBNPGRL0MUCLX8", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/GRL0MUCLX8;La Crau, Parking Gressler", + "ref": "GRL0MUCLX8;399002", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07070900000, + 43.14795800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "200 kW;400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "capacity": "11", + "description": "A10 - Aire de Saint Palais Est (direction Paris)", + "operator": "ELECTRA", + "socket:type2_combo:output": "200 kW;400 kW", + "ref:EU:EVSE": "FRELCPAASPAE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61080200000, + 45.51259700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "8", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E84007001", + "description": "Parking gare d'Avignon TGV P2 P3 - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78429200000, + 43.92106400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Su 08:00-15:00,Mo 08:00-15:00,Tu 08:00-15:00,We 08:00-15:00,Th 08:00-15:00,Fr 08:00-15:00,Sa 08:00-15:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6643385", + "network": "UNILABS BIO CT CHATEAU THIERRY", + "ref": "FRCPIE6643385", + "charging_station:output": "22 kW", + "description": "UNILABS BIO CT CHATEAU THIERRY", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40030700000, + 49.03689200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "HTBGD246VP;749193", + "ref:EU:EVSE": "FRECHPHTBGD246VP;FRECHP1860008606746546697", + "description": "La Baule , Parking Marché de Guézy;Easy Charge/HTBGD246VP", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34371700000, + 47.27146100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue Charles Hermite 52", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX18*03", + "ref:EU:EVSE": "FRV75PPX1803", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36498270000, + 48.89905090000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "120491", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1PPXTTGR", + "description": "Freshmile France/PXTTGR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56561000000, + 47.80260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9018*02", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Rue Caulaincourt 103", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901802", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33891000000, + 48.88973100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "435114", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/E48M4FWGEO", + "ref:EU:EVSE": "FRFR1P8536346426939908299", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40912000000, + 48.81920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "start_date": "2022-10-19", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPCLGHYUNDAI065001", + "operator:email": "support@driveco.com", + "description": "Hyundai - Menton", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49370800000, + 43.78479500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2917300", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "Ploneis-Chemin de Kerveur", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.20737800000, + 48.01622400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "ref:EU:EVSE": "FRS11E11192001", + "network": "Reveo", + "description": "LASBORDES - Grand Rue Parking Du Chateau D'Eau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04305555556, + 43.29500000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Nijkerk Computer Solutions - Élancourt - 22kW AC ; Nijkerk Computer Solutions - Élancourt - 22kW AC ", + "owner:ref:FR:SIREN": "394623235", + "network": "NIJKERK COMPUTER SOLUTIONS", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRZPEE22AC139322;FRZPEE22AC139320;FRZPEE22AC139319;FRZPEE22AC139321", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "start_date": "2022-06-09", + "ref": "139319;139320;139321;139322", + "operator": "ZEborne", + "opening_hours": "Lu- Ve 09:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97453080000, + 48.79550190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS09E09225003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PAMIERS - Boulevard Alsace Lorraine", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61422500000, + 43.11846600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PBXBPRQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/BXBPRQ", + "ref": "79393", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28636000000, + 49.89420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - MUNSTER", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*FAST*38*1*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST3812;FRIZFPFAST3811;FRIZFPFAST3813", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16049244596, + 48.04425297994 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2024-04-17;2021-04-13", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44P44071A;FRS44E44071001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Haute-Goulaine - Soleil;HAUTE-GOULAINE - Place Beau Soleil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43013500000, + 47.20001600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "start_date": "2023-05-26;2016-01-22", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61DXWS7JDZRA1P5P49", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Fontaine-le-Port;FONTAINE-LE-PORT - Rue De La Vieille Montagne", + "ref:EU:EVSE": "FRS77P77188A;FRS77E77188001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75648200000, + 48.48650700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "capacity": "2", + "amenity": "charging_station", + "ref": "1172883", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGYMP3925719037850975452", + "operator": "GreenYellow | FR*GYM", + "description": "GreenYellow Shift Mobility/58" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27847400000, + 47.79682600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E220302;FRS37E220437", + "capacity": "2", + "description": "MODULO - CHEMILLE SUR DEME - Rue de l'Averne", + "amenity": "charging_station", + "network": "MODULO - CHEMILLE SUR DEME - Rue de l'Averne", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220302;FRS37E220437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64957872000, + 47.65952720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "ref": "ae5ac030-7338-5774-836a-201e4895aa72", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Arcades-Baccarat", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74062800000, + 48.45018000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Super U", + "amenity": "charging_station", + "description": "Super U Chissay-en-Touraine", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-09-20;2023-09-10", + "charging_station:output": "22 kW", + "operator": "C4Energies", + "operator:email": "contact@c4energies.com", + "owner:ref:FR:SIREN": "304381767" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16548200000, + 47.34261700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Confolens | Place Maurice Croislebois", + "ref": "2ca49531-2a11-57bb-a61c-9aaa54e7fd89", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66871900000, + 46.01927200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-12-02", + "description": "VILLEJUIF - Avenue de Paris", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94076005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36596780000, + 48.79907660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "network": "SONEPAR LE PONTET 9", + "ref": "FRCPIE6729345;FRCPIE6531395;FRCPIE6729315;FRCPIE6729355", + "description": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6729345;FRCPIE6531395;FRCPIE6729315;FRCPIE6729355", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86246200000, + 43.98740800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P6748480372955978377", + "description": "Leclerc/SYTNVNRXVA", + "ref": "446819" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79230500000, + 48.57494900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Le Teich | Parking Mairie", + "ref:EU:EVSE": "Non concerné", + "ref": "e78c20ee-8756-5aee-895b-4ca5b484ea7b", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02146600000, + 44.63540600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "capacity": "1;2", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB62089A", + "socket:type2_combo:output": "50 kW", + "start_date": "2019-07-31", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "description": "Réseau AlterBase - Limalonges - Les Maisons Blanches - QC", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17891300000, + 46.13370400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2023-12-18", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRAIRPAIRBUSSTMARTIN313002", + "operator:email": "support@driveco.com", + "description": "Airbus Saint Martin Parking M01", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36873300000, + 43.61108600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2875EVCP02;LFR2875EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2875EVCP02;LFR2875EVCP01", + "charging_station:output": "22 kW", + "description": "CORMEILLES EN PARISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20530800000, + 48.95502500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE4021;FRM06PNICE4012;FRM06PNICE4011;FRM06PNICE4031", + "capacity": "1;2", + "start_date": "2019-01-18;2019-01-05", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "3.68 kW;3 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*40*3*_*_;FR*SOD*S*NICE*40*1*_*_;FR*SOD*S*NICE*40*2*_*_", + "description": "VILLEFRANCHE-SUR-MER - GENERAL DE GAULLE RP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30924232522, + 43.70243372577 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*176*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ17612;FRA16PWIIZ17611", + "charging_station:output": "22 kW", + "start_date": "2022-10-31", + "description": "SIGALE - PARKING VILLAGE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96428520777, + 43.87297973546 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/QENWKTMZCF", + "opening_hours": "24/7", + "ref": "491892", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6055489079977662192" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247000000, + 43.58940000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PBRCERN", + "start_date": "2023-02-28", + "opening_hours": "24/7", + "description": "Bricomarché - Ernée", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91493428340, + 48.29380499664 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLDBAM0UVXS", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "description": "Réseau eborn/LDBAM0UVXS", + "amenity": "charging_station", + "ref": "95993", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31410200000, + 45.50199200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Avold - Novotel", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-02-07", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRELCPSAVNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71151000000, + 49.12766100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E315550081;FRP07E31555008;FRP07E315550082", + "operator": "Bouygues E&S", + "start_date": "2021-11-10;2024-02-28", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "description": "TOULOUSE - Saint-Etienne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44971740000, + 43.60030680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP3591694672843408076", + "description": "Réseau eborn/HMCSUP77H7", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "419352" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76282100000, + 45.07486400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP1065971801094817674;FRECHPM676DRCSZV", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "ref": "756882;M676DRCSZV", + "charging_station:output": "24 kW;22 kW", + "description": "Golbey , Stade la Haie le Doyen;Easy Charge/M676DRCSZV", + "start_date": "2023-03-08", + "socket:type2_combo:output": "24 kW", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42507100000, + 48.20423400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - A2 La Sentinelle Ouest", + "operator": "Greenflux", + "start_date": "2022-12-30;2023-01-03;2023-01-04", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP102108", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46633100000, + 50.34046900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "578927", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/N9E3AHO598", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P313892316570048893" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12507800000, + 50.69269500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*PPX09*08", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "description": "Paris | boulevard Rochechouart 31", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "ref:EU:EVSE": "FRV75PPX0908" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34548710000, + 48.88297330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P1880642803681127266", + "ref": "1083411", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLVQOP19Q2EM8F", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58744300000, + 47.74071900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2021-07-07", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Courtepaille - Ajaccio", + "ref:EU:EVSE": "FRSSDPCOURTEPAILLE200901", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75793100000, + 41.93280600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SYDED", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS25P5594680604733487807", + "charging_station:output": "22 kW", + "ref": "505836", + "description": "SYDED/VRIXQATI3S", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89308600000, + 47.47642000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - CHARENTON DU CHER - Rue Nationale", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - CHARENTON DU CHER - Rue Nationale", + "ref": "FRS18E214305;FRS18E214304", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E214305;FRS18E214304", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2023-08-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63836700000, + 46.73113100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRY03E78380001", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "MAULE - Chaussee St Vincent", + "start_date": "2021-11-03;2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84997220000, + 48.91176670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-14", + "operator": "IZIVIA", + "description": "QPARK - PARIS MARCEAU", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRQPKPQPRK3311;FRQPKPQPRK33101;FRQPKPQPRK33111;FRQPKPQPRK3321;FRQPKPQPRK3331;FRQPKPQPRK3341;FRQPKPQPRK3351;FRQPKPQPRK3361;FRQPKPQPRK3371;FRQPKPQPRK3381;FRQPKPQPRK3391", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*QPRK*33*5*_*_;FR*SOD*S*QPRK*33*4*_*_;FR*SOD*S*QPRK*33*10*_*_;FR*SOD*S*QPRK*33*1*_*_;FR*SOD*S*QPRK*33*11*_*_;FR*SOD*S*QPRK*33*2*_*_;FR*SOD*S*QPRK*33*3*_*_;FR*SOD*S*QPRK*33*6*_*_;FR*SOD*S*QPRK*33*7*_*_;FR*SOD*S*QPRK*33*8*_*_;FR*SOD*S*QPRK*33*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29661300000, + 48.87164400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81060002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CARMAUX - Bld Augustin Malroux", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15355400000, + 44.04802800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2019-10-25", + "ref": "FRIONE409000", + "ref:EU:EVSE": "FRIONE409000", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Fontanelles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949000000, + 45.87581600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-02-17", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50600002", + "network": "e-charge50", + "description": "GRANDPARIGNY - le Pointon", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05482120000, + 48.60268000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "ref": "01F5ZAKH610WZFNN06YE1R2PHP", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77456A;FRS77E77456001", + "start_date": "2023-05-25;2016-08-11", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Soisy-Bouy;SOISY-BOUY - Rue De La Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28995900000, + 48.50986500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref:EU:EVSE": "FRHPCPNF080071", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531680682;531680686;531680687;531680685;531680680;531680681;531680684;531680683", + "opening_hours": "24/7", + "ref": "FRHPCPNF080071", + "description": "RELAIS PONT DE L'ISERE", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2022-11-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87470000000, + 45.01840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Modulo - CHEVERNY - Rte. du Bucher - T2", + "operator:email": "support@modulo-energies.fr", + "description": "Modulo - CHEVERNY - Rte. du Bucher - T2", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS41E234280;FRS41E234279", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2024-01-09", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E234280;FRS41E234279" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46053200000, + 47.49748800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "39056", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PLDQXAG", + "description": "Mobilité électrique 56/LDQXAG", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83013000000, + 47.61490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2023-10-04", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON19022;FRGLYPLYON19021;FRGLYPLYON19011;FRGLYPLYON19012", + "opening_hours": "24/7", + "description": "VAV04 - PARKING BACHELARD", + "ref": "FR*SOD*S*LYON*190*1*_*_;FR*SOD*S*LYON*190*2*_*_", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91569600000, + 45.77757300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "capacity": "7", + "start_date": "2021-09-09", + "description": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29049310000, + 48.76595607000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPSOFIDACITROEN621001", + "start_date": "2019-12-11", + "charging_station:output": "22.08 kW", + "description": "Citroën - Calais", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90832400000, + 50.94762600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-04", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT ETIENNE DU ROUVRAY - Gare", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76575001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10939600000, + 49.37742500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P1994575369741788208", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/LLILVNU081QDLJ", + "ref": "892689" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.91677600000, + 47.88832600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Libourne | Angle Place Joffre", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "4f43c093-d805-51e6-818b-4216ae61d577", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24146900000, + 44.91170100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "description": "SAINT OUEN L'AUMONE - Quai de l'écluse", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95572001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10244200000, + 49.04740800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "ANGOULEME BERTRAND", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-01-23", + "ref:EU:EVSE": "FRSITE00000021;FRALLPBER019", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878000000, + 45.69066000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "ref": "529874", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P7448177517355211181", + "description": "Leclerc/FD8OWVSZIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04457000000, + 49.45808400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PWFTGFOVTRE", + "description": "Aubagne, 1465 Route Nationnale 8, Le Charrel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54504900000, + 43.28433600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "402488", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7194441978632268555", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "description": "SDEY/DX43HOHF9A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60951000000, + 47.92888600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "BOUYON PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ3211;FRA16PWIIZ3212", + "start_date": "2018-06-08", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*32*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12270400000, + 43.82505800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5096239085143220932", + "description": "Freshmile France/OEOGLXCZFN", + "ref": "466137", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07067600000, + 47.84359700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PPMCANY", + "operator": "Power Dot France", + "description": "Hôtel Première Classe - Annecy Cran Gevrier", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10907755288, + 45.89497758051 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPYAJEY50I1R", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "YAJEY50I1R;75185", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/YAJEY50I1R;Boëge, 50 Rue du Bourno" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40560000000, + 46.20850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "description": "EVzen/07F125A5-C513-40A8-9CE6-0EB6DA98C2DC", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "ref": "1029543", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP4646033177874600964", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26277200000, + 46.26860900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "CAMPING AURAN LES PLANS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR63131;FROTHPOTHR63121;FROTHPOTHR63111", + "ref": "FR*SOD*S*OTHR*631*3*_*_;FR*SOD*S*OTHR*631*2*_*_;FR*SOD*S*OTHR*631*1*_*_", + "start_date": "2023-05-10", + "operator:email": "sav@izivia.com", + "description": "AURAN LES PLANS - MIALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94223700000, + 44.11087400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-07", + "ref:EU:EVSE": "FREBNPCOEZJEA3UI;FREBNP2927296309996124996", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/COEZJEA3UI;Le Puy En Velay, Val Vert", + "ref": "741087;COEZJEA3UI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88329300000, + 45.03102500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "ZB114AMUO7;30302", + "description": "Lablachère, La Jaujon;Réseau eborn/ZB114AMUO7", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPZB114AMUO7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21586700000, + 44.46308800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR32611;FROTHPOTHR32621", + "ref": "FR*SOD*S*OTHR*326*2*_*_;FR*SOD*S*OTHR*326*1*_*_", + "capacity": "1", + "charging_station:output": "7.36 kW", + "description": "CAMPING DE KERSENTIC", + "opening_hours": "24/7", + "network": "CAMPING DE KERSENTIC", + "start_date": "2022-03-28", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.99836400000, + 47.88538400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1150554", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLY77EK961VZGK", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRFR1P5091410572552714948", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03861600000, + 46.75712900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX15*24", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Boulevard de Grenelle 139", + "ref:EU:EVSE": "FRV75PPX1524", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30100000000, + 48.84830000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "585500", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/GWBBXYWGGI", + "ref:EU:EVSE": "FRFR1P5291500687161208464", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.17088700000, + 42.29943500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 07:00-18:00, Tu 07:00-18:00, We 07:00-18:00, Th 07:00-18:00, Fr 07:00-18:00;Mo 06:00-20:00, Tu 06:00-20:00, We 06:00-20:00, Th 06:00-20:00, Fr 06:00-20:00", + "amenity": "charging_station", + "capacity": "36;26", + "start_date": "2022-07-07;2022-08-05;2022-12-22", + "charging_station:output": "22.08 kW;11.04 kW", + "ref:EU:EVSE": "FRSSDPBOULANGERLESQUIN598102;FRSSDPBOULANGERLESQUIN598101", + "operator:email": "support@driveco.com", + "description": "Boulanger - Lesquin - Siège zone 2;Boulanger - Lesquin - Le Hub", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09780200000, + 50.58555800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "ref:EU:EVSE": "FRS27PTILLIERESAVREMAIRIE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "description": "900116", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05795700000, + 48.75880300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22105001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Languenan-Parking de l'Atelier", + "charging_station:output": "22 kW", + "start_date": "2023-03-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12668900000, + 48.51286300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BONNIERES-SUR-SEINE - Place De La Libération - Droite", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY32E78089001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58193200000, + 49.03750200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "DJN_lavage_auto", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRROSE218", + "operator": "RossiniEnergy", + "start_date": "2022-01-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73004300000, + 50.29904100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ANDRESY - Avenue du Maréchal Foch", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-11-06", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78015003", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06594687661, + 48.99015937154 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;350 kW;43 kW;200 kW", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Langres Perrogney", + "ref": "FRIOYE409276;FRIOYE409275;FRIOYE409272;FRIOYE409253;FRIOYE409252;FRIOYE409204;FRIOYE409203;FRIOYE409202;FRIOYE409201;FRIOYE409205;FRIOYE409206;FRIOYE409251;FRIOYE409271;FRIOYE409273;FRIOYE409274", + "capacity": "15", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE409275;FRIOYE409274;FRIOYE409252;FRIOYE409206;FRIOYE409204;FRIOYE409203;FRIOYE409202;FRIOYE409201;FRIOYE409205;FRIOYE409251;FRIOYE409253;FRIOYE409271;FRIOYE409272;FRIOYE409273;FRIOYE409276", + "description": "Langres Perrogney", + "start_date": "2019-12-13", + "socket:type2_combo:output": "200 kW;50 kW;350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22246659000, + 47.81552312000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/D2ZQGJMFFF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "474525", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P2584811623713706278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37273400000, + 47.86863800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-05", + "description": "SAINT LARY SOULAN - parking de cristal park", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E65388004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32093300000, + 42.82068100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIENE004001;FRIENE004002", + "owner:ref:FR:SIREN": "898270251", + "description": "Roanne", + "amenity": "charging_station", + "start_date": "2023-02-23", + "network": "Roanne", + "capacity": "4", + "ref:EU:EVSE": "FRIENE004001;FRIENE004002", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09628100000, + 46.05391800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LA SALVETAT SUR AGOUT -Rue Barri du pont - Parking des Hortes", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS34E34293001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70086388889, + 43.60049440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref:EU:EVSE": "FRS61P61071A", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-CAME-001", + "description": "CAMEMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17761200000, + 48.89341500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/P24RIEK1UK", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "505650", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4476152443562862114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89880000000, + 45.72850200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-06-26", + "description": "Noé, Sainte-Marie", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PTDZVPU", + "ref": "TDZVPU", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27554000000, + 43.35810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-01-11;2020-12-03;2023-06-27", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "description": "Suzuki - Gap", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPMAURINVOLKSWAGEN050001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10901100000, + 44.57361400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "description": "BMW NICE PREMIUM Motors – 2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "FRCG0E000079;FRCG0E000078", + "network": "BMW NICE PREMIUM Motors – 2", + "ref:EU:EVSE": "FRCG0E000079;FRCG0E000078", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20162000000, + 43.68960900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING ROUMANILLE ", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLUMROUMANILLE1", + "capacity": "3", + "ref": "a0a9bb0e-4199-11ec-81d3-0242ac130003", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "operator": "LUMI'IN", + "operator:email": "cpo@lumi-in.fr", + "start_date": "2021-09-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83000000000, + 43.79000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Laas | Place de L'Eglise", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "221c4857-cae2-5bbe-8a21-ba992d6a5796", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85057500000, + 43.38112300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE54MSNA", + "start_date": "2023-07-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "L'ANTRENOUS - Messein", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16211100000, + 48.60831700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "ref": "202088;202089;202087", + "operator": "Bump", + "description": "Bump - Frey - ZAC Le Parc du Luc - Dechy", + "ref:EU:EVSE": "FRBMPS202088;FRBMPS202089;FRBMPS202087", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10685140000, + 50.34213500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVRON Maréchal Leclerc", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3040EVCP01", + "ref": "LFR3040EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41268400000, + 48.15707700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PKIIZS7PVVD", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Marseille-5E, Boulevard Baille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39615100000, + 43.28935300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "ref:EU:EVSE": "FRS90PHMRLQZ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref": "242365", + "description": "TE90/HMRLQZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89564000000, + 47.58380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHEMIN DES CANISSONS CAVALAIRE SUR MER", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2013-02-01", + "capacity": "1", + "ref:EU:EVSE": "FR55CP83240CAVCANISSONS", + "ref": "FR*55C*P83240*CAV*CANISSONS", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51904400000, + 43.17202900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLY2RQC807TEJQ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1173831", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3498299623663074702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04430300000, + 49.16621600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Hyper U - Reims", + "start_date": "2022-12-16;2022-12-15", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUREI", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08560641911, + 49.23999522661 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP2825933373558229413", + "description": "Réseau eborn/LLYMOSMBV29M14", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "1184378", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67104200000, + 45.20273600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "start_date": "2023-03-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFASE33111", + "description": "Fastned Aire de Changis sur Marne", + "operator:email": "support@fastned.nl", + "ref": "FRFASE33111", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "Fastned Aire de Changis sur Marne", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05261200000, + 48.96334100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FROTHPSENT42873;FROTHPSENT42871;FROTHPSENT42831;FROTHPSENT42811;FROTHPSENT42821;FROTHPSENT42841;FROTHPSENT42851;FROTHPSENT42861;FROTHPSENT42872", + "ref": "FR*SOD*S*SENT*428*6*_*_;FR*SOD*S*SENT*428*3*_*_;FR*SOD*S*SENT*428*2*_*_;FR*SOD*S*SENT*428*1*_*_;FR*SOD*S*SENT*428*4*_*_;FR*SOD*S*SENT*428*5*_*_;FR*SOD*S*SENT*428*7*_*_", + "network": "OF COURSE TRANSPORT", + "start_date": "2022-10-17;2023-12-13", + "description": "OF COURSE TRANSPORT - SAINTES", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66469830000, + 45.75111380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPDOTZDZMFFW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "DOTZDZMFFW;31948", + "description": "Réseau eborn/DOTZDZMFFW;Saint-Restitut, Parking des Cornettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79097200000, + 44.33132000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "B7F7XR3ZNB;75065", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Bidon, Le Village;Réseau eborn/B7F7XR3ZNB", + "ref:EU:EVSE": "FREBNPB7F7XR3ZNB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53415900000, + 44.36620300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-01", + "operator": "IZIVIA", + "description": "INTERMARCHE - GLEIZE", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR44322;FROTHPOTHR44321;FROTHPOTHR44312;FROTHPOTHR44311", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*443*2*_*_;FR*SOD*S*OTHR*443*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70624500000, + 46.00410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/FA6ABFGHEF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "505563", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6266051385023889440", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98148200000, + 47.42034900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "UBI-LHSM-049", + "operator:email": "contact@ubitricity.com", + "start_date": "2024-02-22", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10002711;FRUBIE10047278", + "ref": "setp0100000146" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25625000000, + 49.56858300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GFGWISRUKV", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "674213", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5786604736150946957", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56197300000, + 44.77498400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS TDA", + "operator": "88__TDA", + "capacity": "2", + "amenity": "charging_station", + "description": "Station-service de Nogent en Bassigny", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "005d0dea-9f8e-5254-b070-3c873836bdf6", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34682500000, + 48.03571900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "510467", + "ref:EU:EVSE": "FRFR1P3543367698646724198", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/EKHSALDPCE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21242700000, + 44.58129000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P4870138102675439913", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/LHXITWLNL8", + "ref": "461811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67787400000, + 49.22001600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zephyre/LP00959F;Zephyre/LP200180", + "network": "Zephyre", + "ref:EU:EVSE": "FRZP1P2382568269421813829;FRZP1P8174543779359595678", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1107324;576290", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07341400000, + 48.72058300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Rieux-Minervois - Aire De Covoiturage", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11315001", + "start_date": "0001-01-01", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57703900000, + 43.28270500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ADAINVILLE - Écoles", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-25", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78006001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65470000000, + 48.72207000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "PETR - Gare - Baccarat", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "37__PETR", + "ref": "fefb89cd-3081-5af0-b657-0cf9fa04661f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74442100000, + 48.45218500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LE SOLER - Avenue Jean Jaures", + "ref:EU:EVSE": "FRS66E66195001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79576600000, + 42.68169400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "ref": "FR*SOD*S*IKEA*175*2*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "IKEA EVRY - PARKING PMR", + "start_date": "2023-09-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA17521", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43916110000, + 48.59652550000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35238006B1", + "opening_hours": "24/7", + "start_date": "2019-01-01", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "description": "RENNES - 1 place du souvenir francais ", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64959000000, + 48.10402300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-28", + "operator": "SPIE CITYNETWORKS", + "description": "SIEG63 - ePremium - Boudes - Parking Entree", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63046B", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18769063000, + 45.45757491000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/VRSEKPOETD", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "559811", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3545550265660812373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59841100000, + 48.64242700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "1009242", + "charging_station:output": "22 kW", + "network": "Roulez Électrique En Haute-Garonne", + "ref:EU:EVSE": "FRS31P8246652704175485006", + "description": "Roulez Électrique En Haute-Garonne/LLNBP85712PBXC", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88923200000, + 43.44914800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE93045002", + "start_date": "2021-11-30", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LES LILAS - Rue Georges Pompidou ", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41569600000, + 48.87902000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-19", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Jallu Berthier - Morigny Champigny Ford", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000979;FRCG0E001569;FRCG0E001638", + "description": "Jallu Berthier - Morigny Champigny Ford", + "ref": "FRCG0E000979;FRCG0E001569;FRCG0E001638" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17152600000, + 48.45789000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-27", + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*222*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRM06PNICE22211;FRM06PNICE22212", + "description": "NICE - PARKING DALPOZZO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26163726839, + 43.69683742610 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Clairac | Parking Tivoli", + "opening_hours": "24/7", + "ref": "58b4498f-9862-5399-b8a1-d7e528aac758", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37629200000, + 44.36061100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-03-03", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*363*1*_*_", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - 5 MAIL JEAN-BAPTISTE POQUELIN PARKING DU SUPER MARCHE - HERBLAY-SUR-SEINE", + "ref:EU:EVSE": "FRSIGPSIGE36311;FRSIGPSIGE36312", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12715600000, + 49.00422700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FRC01E76222001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "DUCLAIR - Parking Chemin du Catel", + "amenity": "charging_station", + "start_date": "2023-04-17", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87699000000, + 49.48461000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OBERNAI", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR2239EVCP01;LFR2239EVCP02", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR2239EVCP01;LFR2239EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49112000000, + 48.45210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "description": "SAINTE-TERRE - LAVAGNAC RUE DU GENERAL DE GAULLE;MOBIVE | Sainte-Terre | lavagnac – Rue du Général de Gaulle", + "ref:EU:EVSE": "FRS33PMB3315912;FRS33PMB3315911;Non concerné", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-08-27", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref": "0fe37089-d639-50d7-9572-b26615506a7c;FR*SOD*S*MB33*159*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13559600000, + 44.81970600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82P8161107995511335942", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/FOWAWH8MMK", + "ref": "347027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36577000000, + 43.91680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84160*VGN*L0U1S", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-12-05", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "SAINT-LOUIS - VAUGINES", + "ref:EU:EVSE": "FR55CP84160VGNL0U1S", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41686000000, + 43.77880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "GUER Leclerc", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "ref": "LFR3745EVCP02;LFR3745EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR3745EVCP02;LFR3745EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12382500000, + 47.91001900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Isneauville", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PITMINV", + "start_date": "2023-02-14;2022-11-22", + "capacity": "9", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15354000000, + 49.50087500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPGUJSPIPZNZ;FREBNGUJSPIPZNZ", + "ref": "GUJSPIPZNZ;94472", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "La Bastide, Rue Des Bailes;Réseau eborn/GUJSPIPZNZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62590800000, + 43.73819100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-Totem - BIARRITZ Rue Ambroise Paré", + "capacity": "5", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref": "FRETIP64122R", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "start_date": "2024-06-25", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP64122R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55366535170, + 43.48083192080 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "description": "Carrefour Market - Hourtin", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FRPD1PCFMHTN", + "start_date": "2024-06-29;2024-04-15", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05428065337, + 45.18699214696 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-06;2024-02-09", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT784401", + "description": "Carrefour Market - Gargenville", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81984500000, + 48.98762800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2022-08-25", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRELCPVDOBH", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "description": "Villenave-d'Ornon - Best Hotel", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58726300000, + 44.78378500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR56012;FROTHPOTHR56011;FROTHPOTHR56021;FROTHPOTHR56022;FROTHPOTHR56031;FROTHPOTHR56032;FROTHPOTHR56041;FROTHPOTHR56042", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*560*3*_*_;FR*SOD*S*OTHR*560*2*_*_;FR*SOD*S*OTHR*560*1*_*_;FR*SOD*S*OTHR*560*4*_*_", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "charging_station:output": "11 kW", + "operator:email": "sav@izivia.com", + "description": "BRICOMARCHE - ECROUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87131100000, + 48.67887600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "TAG_GO_ZI_REP2 BORNE 2", + "description": "TAG_GO_ZI_REP2 BORNE 2", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-08-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6752165", + "ref:EU:EVSE": "FRCPIE6752165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33977700000, + 46.61341500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1926269578717190968", + "charging_station:output": "22 kW", + "ref": "398840", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CGQ8TK2DHU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51390000000, + 47.10400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref:EU:EVSE": "FRV75P900202", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "ref": "FR*V75*P9002*02", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue Étienne Marcel 44" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34343600000, + 48.86531100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/VYYQLRBQLG", + "operator": "Freshmile | FR*FR1", + "ref": "466257", + "ref:EU:EVSE": "FRFR1P3498750995822904381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75045000000, + 48.60860700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "description": "Tesla Supercharger Montélimar, France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP5367", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79564800000, + 44.67634000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4314928668738066482", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/ICP9SCW6WL", + "ref": "346412", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936000000, + 47.08870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FR0NXPOOLTFNT9", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "NEXTENEO", + "network": "Ville d'Annecy", + "description": "Ville d'Annecy - Parking Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12212000000, + 45.90047900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461871", + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/OW2ZNJNSGE", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P8204099500609971381", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22474800000, + 49.18202200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12176003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "ONET LE CHÂTEAU - Bld Des Balquières", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58862000000, + 44.37127600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA5LKMNCWJXZ", + "ref": "907965", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRWA5P8765269853895868122", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28534700000, + 48.90836000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-11", + "ref:EU:EVSE": "FRS49E49301003", + "description": "VARRAINS - Rue de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06644400200, + 47.22294235229 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "CUQ TOULZA - Place Du Caducée", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2017-02-28", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS81E8107600122;FRS81E8107600112;FRS81E8107600111;FRS81E8107600121", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88430126460, + 43.56927651564 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1bb0ed76-8888-5133-8346-0f4fc41b5604", + "network": "CPO CITEOS CCHPB", + "capacity": "8", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "CCHPB - Parking Super U", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "4_AM0003_CCHPB", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49393800000, + 49.17818500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46040001", + "description": "CABRERETS - Route du Célé", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-06", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65583300000, + 44.50525600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2023-08-04", + "description": "SIEG63 - ePremium - Villeneuve - Mairie", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS63P63458B", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18491990000, + 45.47778740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-SAULVE - Rue Montesquieu", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH03E59544001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55139600000, + 50.36874400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Plougonvelin-Place Général de Gaulle", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2919000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.71975800000, + 48.34154500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94042006", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-27", + "description": "JOINVILLE LE PONT - Quai de la Marne", + "charging_station:output": "22 kW", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46665590000, + 48.82350040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2024-02-01", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "ref:EU:EVSE": "FRLMSP90122324", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - B&B Hôtel Saint-Etienne La Terrasse", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36799600000, + 45.46807800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Trelissac | Place Napoleon Magne", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "a1441c26-d75a-52f7-bef4-190c9975066c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77995800000, + 45.19521700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE46811;FRSIGPSIGE46812", + "network": "SIGEIF", + "description": "SIGEIF - 35 RUE SAINT ROCH - JOUY-EN-JOSAS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-03-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*468*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17391550000, + 48.76290740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Allego Carrefour Uzes", + "description": "Allego Carrefour Uzes", + "ref": "FRALLEGO9009232;FRALLEGO9009231;FRALLEGO9005982;FRALLEGO9005811;FRALLEGO9005812;FRALLEGO9005981", + "start_date": "2023-05-01", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9009232;FRALLEGO9009231;FRALLEGO9005982;FRALLEGO9005811;FRALLEGO9005812;FRALLEGO9005981" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42932107000, + 43.99006832000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR4167EVCP02;LFR4167EVCP04;LFR4167EVCP01;LFR4167EVCP03", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4167EVCP02;LFR4167EVCP04;LFR4167EVCP01;LFR4167EVCP03", + "description": "PLABENNEC - kermenguy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.43354900000, + 48.49394600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "b59e6ab1-ac58-5f7b-86ce-81d99878aae8", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Bayonne | Polo Beyris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49857800000, + 43.47919100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85035001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "description": "BRETIGNOLLES-SUR-MER - Parking Des Halles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85560000000, + 46.62675900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-07-26", + "network": "Allego FR, Tikehau, TJ2 Colmar - Horbourg", + "ref": "FRALLEGO8007612;FRALLEGO8007611;FRALLEGO8007592;FRALLEGO8007591;FRALLEGO8001952;FRALLEGO8001951;FRALLEGO8001941;FRALLEGO8001942", + "description": "Allego FR, Tikehau, TJ2 Colmar - Horbourg", + "ref:EU:EVSE": "FRALLEGO8007612;FRALLEGO8007611;FRALLEGO8007592;FRALLEGO8007591;FRALLEGO8001952;FRALLEGO8001951;FRALLEGO8001941;FRALLEGO8001942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40598200000, + 48.07296000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4102EVCP03;LFR4102EVCP04;LFR4102EVCP02;LFR4102EVCP01", + "description": "Lempdes - av de l'europe;LEMPDES", + "ref:EU:EVSE": "LFR4102EVCP03;LFR4102EVCP04;LFR4102EVCP02;LFR4102EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18101400000, + 45.77660200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-13", + "ref:EU:EVSE": "FRPD1PKFCSTE", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "KFC - Saint Etienne Meons" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41371360000, + 45.45504890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "KCS9CBB3AU;454407", + "capacity": "2", + "description": "Six-Fours-Les-Plages, Parking du Stade Baptiste, Avenue de la Mer;Réseau eborn/KCS9CBB3AU", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-09-29", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPKCS9CBB3AU;FREBNP4351356992805939071" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82260000000, + 43.10063100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVMP4354;FREVMP2640;FREVMP8931", + "capacity": "2", + "operator": "EV MAP SAS", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-19:01", + "network": "Chopard Peugeot Carpentras", + "charging_station:output": "22 kW", + "description": "Groupe Chopard Peugeot Carpentras", + "start_date": "2024-05-24", + "operator:email": "contact@evmap.fr", + "owner:ref:FR:SIREN": "388424012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05045650000, + 44.03395440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPD1PETICHA", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Top Office - Chambray-lès-Tours", + "start_date": "2024-02-19;2024-01-18", + "operator": "Power Dot France", + "charging_station:output": "200 kW;160 kW;50 kW;22 kW", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70341820940, + 47.34036258626 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOURNUS", + "ref": "f4eea0c0-0259-11ef-86d8-0242ac120002", + "capacity": "2", + "amenity": "charging_station", + "network": "Cycl’Auto VANDROUX", + "owner:ref:FR:SIREN": "751769431", + "opening_hours": "24/7", + "operator:email": "ismael@electromaps.com", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "ref:EU:EVSE": "FRE000041921876" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91610000000, + 46.55804000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42218BS", + "start_date": "2022-12-09", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "100 kW;22 kW", + "description": "SEMOB Châteaucreux", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218BS", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40073400000, + 45.44293400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "ref": "FR*SOD*S*OTHR*105*3*_*_;FR*SOD*S*OTHR*105*1*_*_;FR*SOD*S*OTHR*105*2*_*_;FR*SOD*S*OTHR*105*4*_*_", + "start_date": "2021-01-15", + "description": "SUPER U - MAUVEZIN", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR10541;FROTHPOTHR10521;FROTHPOTHR10511;FROTHPOTHR10531", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.87329800000, + 43.72274100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6921645", + "capacity": "2", + "amenity": "charging_station", + "network": "CARREFOUR CONTA STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "CARREFOUR CONTA STATION 1", + "start_date": "2024-04-16", + "ref:EU:EVSE": "FRCPIE6921645" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27934700000, + 50.40769600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1026783", + "ref:EU:EVSE": "FRFR1P8027420203901388331", + "network": "Freshmile France", + "description": "Freshmile France/LLRAHJBJK1DTVR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57199900000, + 49.64684200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2024-06-24", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121052;FRVIAP121055", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Bourget-Gonesse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46040000000, + 48.97880000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892359", + "ref:EU:EVSE": "FRFR1P6213599266543900164", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLJ6XHLSS2QBEH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.97374900000, + 14.55460100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPBRMOTORSHYUNDAI772101", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-06-09", + "operator:email": "support@driveco.com", + "description": "Hyundai - Fontainebleau", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77120100000, + 48.42268800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4654299934572793728", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/F4PTLVVEGT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "454014", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43200000000, + 46.84160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS28E128898", + "opening_hours": "24/7", + "description": "MODULO - MAINTENON - Pl. Aristide Briand", + "operator": "Modulo", + "ref": "FRS28E128898", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MAINTENON - Pl. Aristide Briand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57774100000, + 48.58670600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P4588258547784033490", + "operator:email": "roaming@freshmile.com", + "ref": "461631", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/A1BDJHEJBW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38013800000, + 49.19985200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWA9P6438336420673294401", + "ref": "1128069", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA6LJFZIEVZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03289100000, + 50.98177100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P50270002", + "description": "BARNEVILLE CARTERET - Plage", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2017-01-04", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76900240000, + 49.36829980000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW;36 kW", + "capacity": "1;2", + "operator:email": "fr.duhamel@bouygues-es.com;support@alizecharge.fr", + "network": "Le Plein Tarnais", + "description": "PUYCELSI - Le Cazal", + "amenity": "charging_station", + "operator": "Bouygues E&S;BOUYGUES ENERGIES SERVICES", + "start_date": "2017-07-04;2022-03-03", + "ref:EU:EVSE": "FRS81E8121700122;FRS81E81217001;FRS81E8121700111;FRS81E8121700112;FRS81E8121700121", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71181200000, + 43.99269100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "amenity": "charging_station", + "ref": "FRHPCPNF062228", + "opening_hours": "24/7", + "start_date": "2023-04-18", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRHPCPNF062228", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681161;531681158;531681159;531681160;531681162;531681164;531681163;531681165", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52515000000, + 48.85550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ANGERS - Lac de Maine - Rue de Pruniers", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49E49007002", + "start_date": "2024-03-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58784300000, + 47.47059500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/boransuroise", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "46600", + "ref:EU:EVSE": "FRS60PBORANSUROISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36025000000, + 49.16660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH06E62099001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BEAURAINS - Rue Jean Jaures", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78869400000, + 50.26347700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30014001", + "description": "ARPAILLARGUES ET AUREILLAC - Parking Pole Médical - Foyer", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37435600000, + 44.00012800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/ESZPPD", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PESZPPD", + "ref": "32842" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10149000000, + 47.63100000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "300 kW;90 kW;63 kW;22 kW", + "ref:EU:EVSE": "FRLMSP89605880", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "300 kW;90 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-12-20", + "description": "ENGIE Vianeo - A50 Frères Lumières" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66657800000, + 43.19260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2022-12-08", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93063A", + "capacity": "4", + "description": "Métropolis/FR*MGP*P93063*A;Metropolis - Proximité - Romainville - Marcel Ethis", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "514943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44475000000, + 48.87811200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "D2009", + "start_date": "2021-07-19", + "operator": "SGA Industries", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "428099022", + "capacity": "3", + "network": "Réseau de recharge Bulle de Linge", + "charging_station:output": "22 kW;1.7 kW", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator:email": "contact@sga-automation.com", + "ref:EU:EVSE": "FRSGAP1D2009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14572600000, + 49.48673700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "753022086", + "capacity": "2", + "amenity": "charging_station", + "operator": "AUTORECHARGE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAU10007", + "charging_station:output": "22 kW", + "start_date": "2021-08-01", + "description": "ACCIF TOULOUSE", + "operator:email": "contact@autorecharge.fr", + "ref": "01FCMYGRABJTDCMWYM31ZQDEHA", + "network": "ACCIF TOULOUSE " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39460600000, + 43.56689000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2022-12-07", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A49 Porte de la Drôme", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89369708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21120000000, + 45.07570200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "c5b45c62-b639-5574-8e63-54fd559452c4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Rochechouart | Parking du Moulin du Puy", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81875200000, + 45.82435000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - VITTEL - Rue du Marechal Fosh", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VITTEL - Rue du Marechal Fosh", + "start_date": "2023-08-26", + "ref:EU:EVSE": "FRS88E161755;FRS88E161757", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS88E161755;FRS88E161757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94890900000, + 48.20137800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-19", + "ref": "FRALLEGO9008772;FRALLEGO9008771;FRALLEGO9004871;FRALLEGO9000871;FRALLEGO9000872;FRALLEGO9001741;FRALLEGO9001742;FRALLEGO9004872;FRALLEGO9008891;FRALLEGO9008892", + "network": "Allego Carrefour Chalon Sud", + "description": "Allego Carrefour Chalon Sud", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9008772;FRALLEGO9008771;FRALLEGO9004871;FRALLEGO9000871;FRALLEGO9000872;FRALLEGO9001741;FRALLEGO9001742;FRALLEGO9004872;FRALLEGO9008891;FRALLEGO9008892", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85900400000, + 46.77424800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3457EVCP02;LFR3457EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR3457EVCP02;LFR3457EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "LOOS Republique;LOOS République", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01123600000, + 50.61253500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PEZBAZP1QTI", + "operator:email": "support@evzen.com", + "description": "Marseille-13E, 45 Avenue de Saint-Jérôme" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41897100000, + 43.32962900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "La Salle-Les-Alpes, Parking entre les Eaux", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref": "XEESI7SAZY", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-07-22", + "ref:EU:EVSE": "FREBNPXEESI7SAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56418479000, + 44.94441185000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4522318531358192348", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446510", + "description": "Freshmile France/C8ZUDPSMZR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50295700000, + 48.53850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "King Jouet - Brétigny-sur-Orge", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PIMCBSO", + "start_date": "2023-06-08", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "capacity": "9", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30052520018, + 48.58762013303 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Perreux, Parking super U", + "ref:EU:EVSE": "FREBNPAU1YWRKLWE", + "ref": "AU1YWRKLWE", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09647750000, + 46.02962150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/65dc6db0ab4209001cb3384d", + "network": "Road", + "opening_hours": "Tu,Su,Th,Mo,Fr,We,Sa 08:00-18:00", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "1036014", + "ref:EU:EVSE": "FREFLP7541892171173915800", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83425800000, + 48.81549700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*246*1*_*_", + "description": "PAYS RHENAN - GARE DE ROESCHWOOG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-09-22", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR24611;FROTHPOTHR24612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.02779000000, + 48.83243500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-30", + "description": "CCI CAEN STATION 1", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6600375", + "ref": "FRCPIE6600375", + "network": "CCI CAEN STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39287900000, + 49.20345800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLPV9LBZH223AI", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "1153818", + "ref:EU:EVSE": "FRFR1P5424701774321893654", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78204400000, + 43.80929400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "1009275", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s437226", + "ref:EU:EVSE": "FRWA2P2801281213858830543", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35457900000, + 48.74531900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7337544914282811989", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/LLJMHQN8S1SRHJ", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13987700000, + 48.30963100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1234597826;FRSWSE1234609970", + "amenity": "charging_station", + "capacity": "1", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 22 SKODA FONTAINE EX;ALFEN 22 SKODA FONTAINE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234597826;1234609970", + "start_date": "2024-04-24;2024-04-23", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67923500000, + 45.19147400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/MNPCFQ7OXG", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P939950013715699278", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref": "472227", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19840200000, + 47.37171100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-20", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "MG Honda - Fréjus", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-17:00, Tu 09:00-12:00, Tu 14:00-17:00, We 09:00-12:00, We 14:00-17:00, Th 09:00-12:00, Th 14:00-17:00, Fr 09:00-12:00, Fr 14:00-17:00", + "capacity": "3", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRSSDPCAVALLARIMG834801", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69848700000, + 43.44525400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "description": "MODULO - SDE28 - Av Marc Chappey - T2", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SDE28 - Av Marc Chappey - T2", + "ref": "FRS28E239245", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS28E239245", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33995200000, + 48.73017900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "exploitation@freshmile.com", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "552008914", + "description": "VINCI OPTEOR IMMOTIC", + "ref:EU:EVSE": "Non concerné", + "start_date": "2022-09-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "VINCI OPTEOR IMMOTIC", + "ref": "74547d48-2597-4024-a46c-2399260c18f4", + "operator": "FRESHMILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21000000000, + 48.91000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "SDEA 10/HIUZKM0QXB", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "39761", + "ref:EU:EVSE": "FRS10P6292971769686767995", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29004900000, + 48.51976400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "description": "Zephyre/LP006A6F;Zephyre/LP006A72", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1P3380634982482128089;FRZP1P453095975182787843", + "ref": "576128;576131", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07295000000, + 46.46451900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE59", + "amenity": "charging_station", + "start_date": "2021-04-01", + "capacity": "1", + "description": "citroen_beauvin", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90110800000, + 50.50936000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDE82/Liberation", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "46678", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PLIBERATION", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61063000000, + 44.25150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-07-09", + "ref": "FR*SOD*S*FAST*127*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST12712;FRIZFPFAST12711;FRIZFPFAST12713", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "IZIVIA FAST - MCDONALDS - GEISPOLSHEIM ", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69354760000, + 48.52214660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - SELLES SUR CHER - Rue du Moulinet", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SELLES SUR CHER - Rue du Moulinet", + "ref:EU:EVSE": "FRS41E4353;FRS41E4354", + "ref": "FRS41E4353;FRS41E4354" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55363200000, + 47.27379400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS60PFORMERIE", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Formerie", + "ref": "38821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73061000000, + 49.65020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*SOD*S*LYON*46*1*_*_;FR*SOD*S*LYON*46*2*_*_", + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "description": "LIM01 - ZAC DU PUY DOR", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON4611;FRGLYPLYON4612;FRGLYPLYON4621;FRGLYPLYON4622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77131800000, + 45.81633200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT GENIES DE MALGOIRES - PEM Gare ", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-12", + "network": "Reveo", + "ref:EU:EVSE": "FRS30E30255002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21480335853, + 43.95193959097 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "21913", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PANVVBU", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/ANVVBU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59143000000, + 47.79260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-17", + "charging_station:output": "12 kW", + "description": "DOMAINE DE LA BRETTE", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRLUMEBRETTE11", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN", + "ref": "ea4af2d4-4d63-40a8-a7cd-c579b91e1a8c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36000000000, + 44.01000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "951467", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P8326660201736164869", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/cc1d6100-2e78-4b87-ab22-c6c028ca9209", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39728000000, + 45.95510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-07-29;2021-07-28", + "ref": "FR*SOD*S*SIGE*177*1*_*_;FR*SOD*S*SIGE*177*2*_*_;FR*SOD*S*SIGE*177*3*_*_;FR*SOD*S*SIGE*177*4*_*_", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "SIGEIF - 215 AVENUE DES GRESILLONS - GENNEVILLIERS - 2", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE17731;FRSIGPSIGE17721;FRSIGPSIGE17711;FRSIGPSIGE17741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31381300000, + 48.91980400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;100 kW;300 kW", + "ref": "FRCG0E001542;FRCG0E001541;FRCG0E001540;FRCG0E001539", + "network": "Espace 3000 - Groupe Cassard - Audi Pontarlier - 25300", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001542;FRCG0E001541;FRCG0E001540;FRCG0E001539", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-06-09", + "description": "Espace 3000 - Groupe Cassard - Audi Pontarlier - 25300", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34099900000, + 46.91250700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSP89899416", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2024-01-18", + "description": "ENGIE Vianeo - Hôtel Campanile Dijon Est", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07682900000, + 47.33051000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT MARTIN DE SEIGNANX - PARKING SUPER U;MOBIVE | Saint Martin de Seignanx | Parking Super U", + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "opening_hours": "24/7", + "charging_station:output": "50 kW;3.7 kW;36 kW", + "ref:EU:EVSE": "FRS40PMB407914;FRS40PMB407913;FRS40PMB407912;FRS40PMB407911;Non concerné", + "start_date": "2020-06-10", + "operator": "199__SYDEC40;IZIVIA", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "ref": "FR*SOD*S*MB40*79*1*_*_;c8e5ccf0-80e4-58a2-93c5-fb45f25687cc", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38602300000, + 43.54179400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MEAUX - Marché Frais", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE77MXVA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91437300000, + 48.95340700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SALLANCHES", + "owner:ref:FR:SIREN": "895163608", + "ref:EU:EVSE": "FRALLPEVCARSSLLCH", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies", + "start_date": "2022-09-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62709300000, + 45.95190100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3456EVCP02;LFR3456EVCP01", + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3456EVCP02;LFR3456EVCP01", + "description": "CLAYE SOUILLY Sarron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66797900000, + 48.95195300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTPELLIER - Av Du Colonel André Pacelat Dit Villars", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34172004", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86011020000, + 43.58322800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/IVXGZYQXI3;Ampus, 8 Boulevard Georges Clemenceau", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPIVXGZYQXI3;FREBNIVXGZYQXI3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "79168;IVXGZYQXI3", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38254700000, + 43.60599100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2350665354431434221", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/NUQVEPZ8AW", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "412070", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75706900000, + 45.16480900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "description": "AVIGNON - CHU salariés", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-12-22", + "ref:EU:EVSE": "FRP07E84007003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80398880000, + 43.91808780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNHJ0BBAIUH;FREBNP7991548180062695808", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Annecy, Rue de la Paix;Réseau eborn/NHJ0BBAIUH", + "socket:type2_combo:output": "24 kW", + "ref": "NHJ0BBAIUH;492105" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13133000000, + 45.90478000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "description": "Roissy-en-France - Novotel CDG Convention", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "start_date": "2023-08-07", + "opening_hours": "24/7", + "capacity": "11", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPROINO", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51780800000, + 48.99892800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Parking gare de Bois-le-Roi sud P+R - EFFIA", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E77037001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69125000000, + 48.47561100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR CHANAS", + "ref": "FRCPIE6632585", + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR CHANAS", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-11", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6632585" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81044900000, + 45.31766200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Easycharge services", + "ref:EU:EVSE": "FRECHPDRGQ6PKL5V", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "description": "Ancenis Saint Géron , Prairie - La Villa 1", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "network": "Easycharge services", + "start_date": "2023-03-08", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "DRGQ6PKL5V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19752180000, + 47.37472630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1701", + "start_date": "2021-12-01", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Paris | Avenue des Ternes 6", + "ref": "FR*V75*PPX17*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29676330000, + 48.87825870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6397955299752423423", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/G6UP3TUUTZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW;50 kW;150 kW", + "operator": "Freshmile | FR*FR1", + "ref": "419100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95391000000, + 45.92802000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-28", + "opening_hours": "Mo-Sa 07:30-19:30", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779463223", + "operator": "TotalEnergies Marketing France", + "ref:EU:EVSE": "FRTCBP01199", + "capacity": "14", + "ref": "FRTCBP01199", + "description": "Entrepôt du Bricolage - Comboire", + "charging_station:output": "22 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "network": "SAMSE - ERP COMBOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69047327301, + 45.14836768597 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "741039", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1968028485391726701", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/RTZPPN1BPO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83550400000, + 43.64251700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "Hyundai - Montauban", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2022-04-14", + "ref:EU:EVSE": "FRSSDPGUIRADO820051", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38148100000, + 44.03789400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "description": "Locmaria Plouzane-Rue de la Fontaine", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2913000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.64312000000, + 48.37412300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CUXAC-CABARDES - Parking De L'Ecole", + "start_date": "2022-02-27", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11115001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28611111111, + 43.37027780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "network": "Intermarché - Dolus-d'Oléron ;Intermarché - Dolus-d'Oléron", + "ref": "E153279;E153280;E174558;E174559", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "332944032", + "start_date": "2022-09-19;2023-01-18", + "description": "Intermarché - Dolus-d'Oléron - 22kW AC ;Intermarché - Dolus-d'Oléron - 22kW AC", + "operator": "ZEborne", + "ref:EU:EVSE": "FRZPEE174558;FRZPEE153280;FRZPEE153279;FRZPEE174559", + "opening_hours": "Lu- Di 08:30-19:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25858150000, + 45.90524020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS09E09032003", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "AX LES THERMES - Station Bonascre", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81136100000, + 42.69960400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref": "64781", + "description": "FDE 80/PMHGVH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PPMHGVH", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11913000000, + 50.03810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - TOURNEFEUILLE", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "start_date": "2024-08-20", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST27211;FRIZFPFAST27212;FRIZFPFAST27213", + "ref": "FR*SOD*S*FAST*272*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35941400000, + 43.58932890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-02", + "ref:EU:EVSE": "FRS44E44045002", + "description": "CORDEMAIS - Rue Des Sports - Espace Culturel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87999999523, + 47.28813934326 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "description": "Coubert - Jean Jaurès;COUBERT - Jean Jaurès", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77127A;FRS77E77127002", + "ref": "c66b5622-beb9-4694-9087-cca0f192322a", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-03-07", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69598900000, + 48.67025100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PEUGEOT TRESSES", + "ref:EU:EVSE": "FRGSPP1897255;FRGSPP1000085952;FRGSPP1000085915;FRGSPP1000085914", + "capacity": "7", + "amenity": "charging_station", + "operator": "GREENSPOT", + "network": "PEUGEOT TRESSES", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47461298728, + 44.83347229601 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220176;FRS37E220174", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - NAZELLES NEGRON - Pl. des patis", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - NAZELLES NEGRON - Pl. des patis", + "ref:EU:EVSE": "FRS37E220176;FRS37E220174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95397000000, + 47.43103200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "ref": "24fd7765-1f73-5d09-b295-0a739a619b64", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Fontenoy-la-Joûte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66004000000, + 48.45428000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-07-01;2021-07-03;2021-07-05;2021-07-07", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10896200000, + 43.11500040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "3c38a462-c166-57b1-8d00-9a6ac2d39f03", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | SAINT-PIERRE-DU-MONT | Parking Tennis", + "charging_station:output": "50 kW;43 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51331400000, + 43.87791400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE29722;FRSIGPSIGE29721", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*297*2*_*_", + "socket:type2_combo:output": "24 kW", + "start_date": "2022-08-26", + "description": "SIGEIF - 230 AVENUE ARISTIDE BRIAND - BAGNEUX", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32007800000, + 48.79216300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GVA CAVAILLON ABB", + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "description": "GVA CAVAILLON ABB", + "charging_station:output": "24 kW", + "ref": "FRCPIE6514675", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-09-07", + "operator:email": "info@chargepoint.com", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRCPIE6514675" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02822800000, + 43.85257200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "446690", + "description": "Leclerc/EGZ64DHCH9", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P3261807242458038817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331000000, + 44.92429600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Cazoules | Place d'Alsace", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7ae1f824-846b-5f1e-89ea-48409b2aea11", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43310600000, + 44.88248100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2016-01-26", + "operator": "Séolis", + "description": "Réseau AlterBase - Vasles - Place de la Mairie", + "ref:EU:EVSE": "FRSEOPAB34023A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02555280000, + 46.57567772000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRAIRPAIRBUS313005", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Airbus - Marignane - parking W11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23115600000, + 43.43139400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARNOUVILLE LES GONESSE", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR2417EVCP02;LFR2417EVCP01", + "amenity": "charging_station", + "ref": "LFR2417EVCP02;LFR2417EVCP01", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42042900000, + 48.98306900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM45P1894980466857552263", + "operator:email": "roaming@freshmile.com", + "ref": "414744", + "capacity": "2", + "amenity": "charging_station", + "description": "Orléans Métropole/H5QTPJILRB", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "operator": "Orléans Métropole | FR*M45" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91019500000, + 47.90522900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-11-17", + "owner:ref:FR:SIREN": "240600585", + "ref:EU:EVSE": "FRA16PWIIZ15012;FRA16PWIIZ15011", + "capacity": "2", + "amenity": "charging_station", + "description": "VALBERG - GOLF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*150*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95257300000, + 44.10998900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6852931046018029084", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/CA9CCNHNBW", + "ref": "752433", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13137000000, + 43.65237100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Bricomarché - Châlons-en-Champagne", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "socket:type2_combo:output": "60 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-11-14", + "ref:EU:EVSE": "FRPD1PBCMCEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35630500000, + 48.97835900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPZKDZF8SDVA", + "ref": "85910;ZKDZF8SDVA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "description": "Réseau eborn/ZKDZF8SDVA;Six-Fours-Les-Plages, Square Hippolyte Cesmat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81174500000, + 43.11247500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2023-04-28", + "network": "ELECTRA", + "description": "Les Ponts-de-Cé - Hôtel Kyriad", + "capacity": "4", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPPDCHK", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51005600000, + 47.43626800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E132010011;FRP07E13201001;FRP07E132010012", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2024-01-03;2021-01-26", + "description": "MARSEILLE - Estienne d’Orves" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37217700000, + 43.29224800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "network": "LANNILIS SIEGE BORNE 2", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "operator:email": "info@chargepoint.com", + "description": "LANNILIS SIEGE BORNE 2", + "ref": "FRCPIE6699285;FRCPIE6699895", + "ref:EU:EVSE": "FRCPIE6699285;FRCPIE6699895", + "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.51593100000, + 48.56337400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "capacity": "2", + "amenity": "charging_station", + "description": "Easy Charge/AHACHJV7QW;Vienne, Espace Saint-Germain Nord", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "AHACHJV7QW;446489", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge", + "ref:EU:EVSE": "FRECHP5826001905635506606;FRECHPAHACHJV7QW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86470000000, + 45.51407000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A19 Villeroy", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2022-12-15", + "ref:EU:EVSE": "FRVIAP103103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17244500000, + 48.16536000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20720420000, + 49.97117520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1153149", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLSLIVMFBPT6XG", + "ref:EU:EVSE": "FRFR1P851314114039461254", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81243300000, + 44.75587300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Pierre Charron 62", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRV75PPX0801", + "opening_hours": "24/7", + "start_date": "2022-07-29;2021-06-03", + "ref": "FR*V75*PPX08*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30362030000, + 48.86964480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "294461", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PMCKKXL", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MCKKXL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06471000000, + 49.11040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "opening_hours": "Mo 06:00-20:00, Tu 06:00-20:00, We 06:00-20:00, Th 06:00-20:00, Fr 06:00-20:00, Sa 06:00-20:00", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2021-05-12", + "description": "Decathlon - Rouvignies", + "ref:EU:EVSE": "FRSSDPDECATHLON592201", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43523100000, + 50.33033900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SYDED/NNYTYC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "ref": "102407", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS25PNNYTYC", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14793000000, + 47.10710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E188179;FRS18E188180", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRS18E188179;FRS18E188180", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - St MARTIN D'AUXIGNY - Pl. de la mairie", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - St MARTIN D'AUXIGNY - Pl. de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41807400000, + 47.20442200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "511679896", + "amenity": "charging_station", + "capacity": "4", + "ref": "EVB-P21211914", + "ref:EU:EVSE": "Non concerné", + "network": "FLYOPS", + "start_date": "2022-01-21", + "charging_station:output": "22 kW", + "description": "Parking FLYOPS", + "operator:email": "contact@flyops.net", + "operator": "FLYOPS", + "opening_hours": "Mo-Fr 8:30-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68223083121, + 44.83887410486 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-01-17;2022-01-01", + "ref:EU:EVSE": "FRQPKPQPRK10371;FRQPKPQPRK10361;FRQPKPQPRK10311;FRQPKPQPRK103101;FRQPKPQPRK10381;FRQPKPQPRK10391", + "amenity": "charging_station", + "capacity": "1", + "description": "QPARK - LA DEFENSE - MICHELET", + "ref": "FR*SOD*S*QPRK*103*10*_*_;FR*SOD*S*QPRK*103*1*_*_;FR*SOD*S*QPRK*103*6*_*_;FR*SOD*S*QPRK*103*7*_*_;FR*SOD*S*QPRK*103*8*_*_;FR*SOD*S*QPRK*103*9*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24506000000, + 48.88861600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "BLAN - Rue Du Mont", + "start_date": "2017-03-24;2017-03-23;2017-03-22;2017-03-21", + "ref:EU:EVSE": "FRS81E8103200121;FRS81E8103200111;FRS81E8103200112;FRS81E8103200122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00835616035, + 43.52974495215 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "bench" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20636170000, + 49.97202990000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref": "FRIONE402800", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIONE402800", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "description": "IONITY Lacq Audéjos Sud", + "charging_station:output": "350 kW", + "start_date": "2020-09-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58479900000, + 43.41862900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2021-04-26;2024-04-16", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "CORCOUE-SUR-LOGNE - Rue Du 8 Mai;OuestCharge - Diva Sp - Corcoue-Sur-Logne - 8 Mai", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS44P44156A;FRS44E44156001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57650000000, + 46.96702300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS77E77385002;FRS77P77385B", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "Rebais - aire covoiturage;REBAIS - Avenue Jean De La Fontaine", + "start_date": "2023-05-15;2016-08-31", + "ref": "01F5ZAKH61AR5S7HGFBEWKSTVH", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23844700000, + 48.85010200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "street_lamp", + "survey:date": "2022-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20942750000, + 49.97203370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62904001", + "description": "ZOUAFQUES - Place de la mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05427300000, + 50.81455600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - SAINT AVERTIN - Allée du Chesne", + "amenity": "charging_station", + "ref": "FRS37E60637;FRS37E60636", + "network": "MODULO - SAINT AVERTIN - Allée du Chesne", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E60637;FRS37E60636" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74696900000, + 47.34650100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "start_date": "2018-07-20", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Arradon - Plessis d'Arradon", + "ref:EU:EVSE": "FRS56PNEDQCA", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82373725797, + 47.62690661977 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "description": "LY320 - PART-DIEU EST", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON16612;FRGLYPLYON16611", + "start_date": "2022-05-24", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*166*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86312700000, + 45.75851700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "320 kW", + "description": "Mobilize Fast Charge/1f9a42c8-d411-47f6-aeeb-88473c5c49a7;Mobilize Fast Charge/befcea22-af5d-40ea-89a9-42e397d2a3ce", + "amenity": "charging_station", + "charging_station:output": "320 kW;22 kW", + "operator:email": "fastcharge.exploitation@mobilize.com", + "operator": "Mobilize Fast Charge France | FR*MFC", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMFCP7482369737290093018;FRMFCP1356723407618258195", + "ref": "1131240;1131237", + "capacity": "1;6", + "network": "Mobilize Fast Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13184600000, + 45.78057400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPLEMPEREUROPEL627101", + "capacity": "5", + "network": "DRIVECO", + "description": "Opel - Courrières", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2019-12-20", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94578000000, + 50.44211200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6589735;FRCPIE6589745", + "description": "UEXPRESS STE Cé BORNE 1", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRCPIE6589735;FRCPIE6589745", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "UEXPRESS STE Cé BORNE 1", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88254400000, + 44.23265600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "579020", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P2591823182470006366", + "capacity": "20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/MMIX8ETSRI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551800000, + 49.72609800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Blaye |  Place des  Cones - Angle Esplanade de la Citadelle", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "de13c219-ed21-5118-950b-1e2917e8981c" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66394200000, + 45.13184200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-06-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95205002", + "description": "ECOUEN - Parking Schenck - Rue Bullant" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38092917368, + 49.01742933386 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego FR, Burger King, TJ2 Lyon Bron", + "ref": "FRALLEGO6000012;FRALLEGO6000011;FRALLEGO6000021;FRALLEGO6000022", + "start_date": "2024-09-12", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO6000012;FRALLEGO6000011;FRALLEGO6000021;FRALLEGO6000022", + "network": "Allego FR, Burger King, TJ2 Lyon Bron" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91884700000, + 45.72256700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NICE Grenoble", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR0862EVCP01", + "ref": "LFR0862EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20118600000, + 43.67834600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PGFPIIHPEMY", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Aix-En-Provence, Chemin des Plâtrières" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41937900000, + 43.55670600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/RJ6WGXFAAQ", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS89P8525016887682283966", + "ref": "402611", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31941300000, + 48.04650800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-07-30", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOUGINS - PARKING COEUR DE VIE", + "ref": "FR*SOD*S*WIIZ*283*4*_*_;FR*SOD*S*WIIZ*283*3*_*_;FR*SOD*S*WIIZ*283*1*_*_;FR*SOD*S*WIIZ*283*2*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ28311;FRA16PWIIZ28321;FRA16PWIIZ28331;FRA16PWIIZ28341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98800120000, + 43.60287340000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3249343365892502200", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "578879", + "network": "Freshmile France", + "description": "Freshmile France/GJUJZ8EFOO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07452900000, + 47.66228700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Netto - Guéret", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PNETGUE", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87313530000, + 46.16203580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Montelier, Parking co-voiturage;Réseau eborn/YYBZKF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "YYBZKF;31879", + "ref:EU:EVSE": "FREBNPYYBZKF", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02737000000, + 44.93550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP5976072412508597883", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "EVzen", + "description": "EVzen/8E90A64F-0E0E-4F21-B13C-2AF9FE712BA3", + "operator:email": "support@evzen.com", + "ref": "1019604" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31467100000, + 43.80859200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "description": "BRICORAMA - SILLINGY", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR60432;FROTHPOTHR60431;FROTHPOTHR60422;FROTHPOTHR60421;FROTHPOTHR60412;FROTHPOTHR60411", + "network": "LES MOUSQUETAIRES", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*604*1*_*_;FR*SOD*S*OTHR*604*2*_*_;FR*SOD*S*OTHR*604*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06916400000, + 45.94249600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Privas, Cours Saint Louis;Réseau eborn/XOOHDY43SH", + "opening_hours": "24/7", + "ref": "XOOHDY43SH;346976", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPXOOHDY43SH;FREBNP1188955881960166852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59495000000, + 44.73510000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLHNDJZAIFZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref": "25277;LHNDJZAIFZ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Saint-Peray, Place Andre Pic;Réseau eborn/LHNDJZAIFZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83965000000, + 44.94409000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Kyriad Nanteuil Les Meaux", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "ref:EU:EVSE": "FRVIAP121043", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88111700000, + 48.93555800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLMREVO6N12R7V", + "operator:email": "roaming@freshmile.com", + "ref": "971867", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3728565813675876803" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70168600000, + 43.44265100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX14*12", + "charging_station:output": "7 kW;3 kW", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue Raymond Losserand 145", + "opening_hours": "24/7", + "start_date": "2021-10-22;2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75PPX1412", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31308800000, + 48.83126000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7942892017726349103", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLO4FDJZ22KUI0", + "opening_hours": "24/7", + "ref": "1026777", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "22 kW;36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68170800000, + 44.79245800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPSIBLU337801", + "network": "DRIVECO", + "capacity": "2", + "description": "Le Domaine de Soulac (Camping Siblu) - Soulac-sur-Mer", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00, Su 09:00-12:00, Su 14:00-18:00", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-04-06", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11671600000, + 45.48682800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PNEUBOURGTOURISME", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900129", + "start_date": "2016-11-29;2016-11-30", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91013000000, + 49.15059300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22048001", + "description": "Corseul-Parking du Dr Guidon", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-07", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16823600000, + 48.48187300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY10E78311001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "HOUILLES - Rue Michelet", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18746940000, + 48.92473060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Hotel_du_lac", + "amenity": "charging_station", + "capacity": "3", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2021-11-08", + "ref:EU:EVSE": "FRROSE170", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33665800000, + 50.99736500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWATP2936024289372008768", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWATLMXMZ9KGC", + "ref": "1108122", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27317900000, + 48.85173200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Longué-les-Cossonnières", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE402153;FRIOYE402101;FRIOYE402102;FRIOYE402103;FRIOYE402104;FRIOYE402151;FRIOYE402152", + "description": "Longué-les-Cossonnières", + "start_date": "2019-05-04", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE402153;FRIOYE402101;FRIOYE402102;FRIOYE402103;FRIOYE402104;FRIOYE402151;FRIOYE402152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13158430000, + 47.41847390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E66955;FRS51E66954", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E66955;FRS51E66954", + "description": "MODULO - TINQUEUX - Pl. du commerce", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - TINQUEUX - Pl. du commerce" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99142900000, + 49.25101500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65286001", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "description": "LOURDES - Place du champ commun", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04766000000, + 43.09328000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref:EU:EVSE": "FRIENE001402;FRIENE001401", + "start_date": "2023-01-11", + "description": "Carquefou", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE001402;FRIENE001401", + "network": "Carquefou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851000, + 47.28622000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34199002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PEZENAS - Avenue François Hue - Face au parking du 14 Juillet", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42452222222, + 43.46171670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PPWZCTQ", + "ref": "18170", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/PWZCTQ", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47093000000, + 47.48210000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6341748157141638237", + "network": "Freshmile France", + "description": "Freshmile France/LM0L01CWT1DXW2", + "ref": "1179105", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75656300000, + 48.59250300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-15", + "ref": "XPUVZU;33415", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Saiguède, 8 mai 1945;Roulez Électrique En Haute-Garonne/XPUVZU", + "ref:EU:EVSE": "FRS31PXPUVZU", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14543000000, + 43.52840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "description": "Mitsubishi - Groupe Dugardin - Villeneuve d'Ascq", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDUGARDINMITSUBISHI596501", + "charging_station:output": "22.08 kW", + "start_date": "2020-09-04", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12047300000, + 50.63231300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCARP45025A", + "description": "Carrefour Contact Bazoche Les Gallerandes", + "opening_hours": "24/7", + "network": "Carrefour Contact Bazoche Les Gallerandes", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCARP45025A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05154308573, + 48.16127710253 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "start_date": "2022-06-28", + "opening_hours": "24/7", + "ref": "de791cd2-c920-4121-aebe-5a54a3e5695f", + "description": "LUMI'IN MALIJAI", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEMALIJAI1011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05000000000, + 44.05000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Chevanceaux | Av. de Paris", + "network": "CPO CITEOS Mobive", + "ref": "11ae3117-bb9e-5448-8255-5d2346c466a7", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23876300000, + 45.29459600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Fonciere Pierreval Centre - Nantes", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-07-28", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE44NPCA", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50766500000, + 47.24690200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "814569", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BornEco/6475e8a78d6bd3eb6ef39f0e", + "operator": "Borneco | FR*BHM", + "ref:EU:EVSE": "FRBHMP1465412110995118736" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57579100000, + 48.60565600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3442EVCP01", + "description": "GUEBWILLER", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3442EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22845000000, + 47.90279000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Septemes-Les-Vallons, 50 Avenue du 8 Mai 1945", + "ref:EU:EVSE": "FRM13PAKDLHKKHGE", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36641300000, + 43.39862900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "402677", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "description": "SDEY/XLGIGXAO8M", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P2435983867089515695" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30987100000, + 48.15216000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "operator": "R3", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2024-07-23", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW", + "description": "R3 - Dannemarie - Agricenter", + "ref:EU:EVSE": "FR3R3P90223020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11092100000, + 47.63116000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PPFMCUU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "79678", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Freshmile France/PFMCUU", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57173000000, + 45.37446600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PSYULMD", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-10-24", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Super U - Lemud" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38034562882, + 49.02020609215 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Riorges, Parking Scarabée", + "ref:EU:EVSE": "FREBNPKUPUVRMJH2", + "operator:email": "contact@reseau-eborn.fr", + "ref": "KUPUVRMJH2", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04080920000, + 46.02823320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "capacity": "8", + "amenity": "charging_station", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "Fastned Aire d’Ambrussum Nord", + "owner:ref:FR:SIREN": "853300010", + "start_date": "2022-11-22", + "ref": "FRFASE33007", + "charging_station:output": "300 kW", + "description": "Fastned Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE33007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341000000, + 43.71525500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-17", + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*818*5*_*_;FR*SOD*S*OTHR*818*3*_*_;FR*SOD*S*OTHR*818*2*_*_;FR*SOD*S*OTHR*818*4*_*_;FR*SOD*S*OTHR*818*6*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "HYPER U - MATIGNON", + "ref:EU:EVSE": "FROTHPOTHR81861;FROTHPOTHR81851;FROTHPOTHR81821;FROTHPOTHR81831;FROTHPOTHR81841", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28592933752, + 48.59886398475 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "78654;BWUC0Z5W3X", + "ref:EU:EVSE": "FREBNPBWUC0Z5W3X", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/BWUC0Z5W3X;Saint-Michel-L'Observatoire, Pkg De La Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71742200000, + 43.90923300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346658", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP4044075075873708570", + "description": "Réseau eborn/DHK0LKAJ25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54229100000, + 46.08405600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "COMMUNE DE WISSEMBOURG - PARKING RUE DU TRIBUNAL", + "ref": "FR*SOD*S*OTHR*415*1*_*_", + "start_date": "2022-06-13", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR41512;FROTHPOTHR41511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.94519700000, + 49.03453400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/IC5M8LGAEP", + "ref:EU:EVSE": "FRFR1P155107106574659443", + "ref": "585509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08668300000, + 44.11561000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tesla Supercharger Manosque, France", + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP29713", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79689581000, + 43.81886548000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4260777710843457579", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/WKEA7ULFM6", + "operator": "Freshmile | FR*FR1", + "ref": "559829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71708700000, + 45.94588300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRTCBP02918", + "operator": "Total Charging Services", + "charging_station:output": "7 kW", + "opening_hours": "Mo-Fr 08:00-12:15,Mo-Fr 13:30-19:00,Sa 08:00-12:30,Sa 13:30-17:00", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRTCBP02918", + "network": "Carglass Services SAS - F - Nîmes", + "owner:ref:FR:SIREN": "425050556", + "start_date": "2024-08-14", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Carglass Services SAS - F - Nîmes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33883388872, + 43.81039520449 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P530919548472796730", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "471009", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/B6KEKD5OQZ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48433600000, + 48.82499500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P8970436879517485566", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "892764", + "description": "MobiSDEC/LLIU0JLHQ2NV4U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437400000, + 49.29202000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "owner:ref:FR:SIREN": "521302240", + "ref": "682967;35870926-c3e7-4778-a35e-0be8ecbbac6a;682976;575909", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRZP1PEAC43447;FRZP1P00013;FRZP1P3711545026158543190;FRZP1P00012;FRZP1P1019407409153898723;FRZP1P2770885915672023887;FRZP1PEAC43448", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "description": "Kyriad Lattes - 22 kW;Zephyre/LP009E79;Kyriad Lattes - 22 kW AC;Zephyre/LP009E6F;Zephyre/1950592", + "network": "Kyriad Lattes;Zephyre", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88048600000, + 43.57878400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Sorofi_Eybens", + "start_date": "2022-07-19", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73771200000, + 45.15060100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY01E78498007", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-01-19", + "description": "POISSY - Rue des Monts Chauvet (Secteur la Coudraie) ", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01134900000, + 48.91977200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-29", + "ref": "FRIOYE469353;FRIOYE469306;FRIOYE469305;FRIOYE469304;FRIOYE469303;FRIOYE469301;FRIOYE469302;FRIOYE469351;FRIOYE469352", + "network": "Lauragais", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE469353;FRIOYE469306;FRIOYE469305;FRIOYE469304;FRIOYE469303;FRIOYE469301;FRIOYE469302;FRIOYE469351;FRIOYE469352", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Lauragais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70357100000, + 43.40027300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-14;2024-05-28", + "network": "Territoire de Energie TE53;TEM53", + "description": "PONTMAIN - Le Bourg;OuestCharge - Diva Sp - Pontmain - Bourg", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS53E53181001;FRS53P53181A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05870400000, + 48.43789100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-09-20", + "ref:EU:EVSE": "FRS66E66140001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "PEZILLA LA RIVIERE - 31Bis Avenue Du Canigou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76879700000, + 42.69632500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIENE042601;FRIENE042602", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "description": "Amilly", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRIENE042601;FRIENE042602", + "operator": "NW IECharge", + "network": "Amilly", + "start_date": "2024-10-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79633700000, + 47.96874300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "start_date": "2023-03-13", + "description": "LUITRE-DOMPIERE - Rue de Bretagne", + "ref:EU:EVSE": "FRS35P35163001B1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12072600000, + 48.28470500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "256102922", + "description": "VALFRAMBERT - Rue de Gâtel", + "socket:type2_combo:output": "160 kW;36 kW", + "amenity": "charging_station", + "network": "TERRITOIRE D'ENERGIE ORNE;61mobility", + "operator:email": "Exploitation@tevgo.fr;supervision-ev.france@totalenergies.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61497A", + "start_date": "2018-05-25;2021-11-09;2021-10-15", + "charging_station:output": "3 kW;43 kW;36 kW;160 kW;22 kW", + "operator": "TotalEnergies Marketing France;TEVGO", + "ref": "SE61-VALF-001;FRS61P61497A", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09812600000, + 48.44969100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HQNSJ8DLJY", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "541763", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2529161452163129916" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19265500000, + 45.96356800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PPWJRPS", + "ref": "PWJRPS", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "description": "Launac", + "operator": "Freshmile SAS", + "start_date": "2017-10-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18005000000, + 43.74250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-03", + "description": "NANTERRE - Avenue Hoche", + "ref:EU:EVSE": "FRSIPE92050025", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "network": "SIPPEREC", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20092000000, + 48.89975000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000616;FRCG0E000613;FRCG0E000615", + "start_date": "2023-02-22", + "description": "Hôtel Restaurant & Spa - 29180", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "11 kW;2 kW", + "ref:EU:EVSE": "FRCG0E000616;FRCG0E000613;FRCG0E000615", + "network": "Hôtel Restaurant & Spa - 29180", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22335600000, + 48.09111100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-08-02", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*197*1*_*_", + "description": "DRAP - PARKING ARNULF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE19712;FRM06PNICE19711", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32032467806, + 43.75623195076 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Castelmoron Sur Lot | Parking Bransouillé", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "3.7 kW", + "ref": "fe4af894-1e06-5f79-bc38-e32b558c45d7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49302900000, + 44.39748400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - CHEMIN DE LA VOIE BLANCHE PARKING PISCINE - CORMEILLE-EN-PARISIS", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-02-08", + "ref:EU:EVSE": "FRSIGPSIGE33512;FRSIGPSIGE33511", + "ref": "FR*SOD*S*SIGE*335*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19040000000, + 48.96130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRC01E76000028", + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-04-05;2024-04-08", + "description": "ROUEN - Place Saint Hilaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11246600000, + 49.44232400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA MADELEINE DE NONANCOURT André", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4057EVCP04;LFR4057EVCP03;LFR4057EVCP01;LFR4057EVCP02", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4057EVCP04;LFR4057EVCP03;LFR4057EVCP01;LFR4057EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20433200000, + 48.77863700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | La Jarrie | Place de la Mairie", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "191__SDEER17", + "ref": "8ef58e86-e08d-5e6e-9c4f-15901baa9100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00885100000, + 46.12831300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PVYKWNA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/VYKWNA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "38938", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43645000000, + 43.89040000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-01", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "description": "NIKKI BEACH - RAMATUELLE", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP83350RAMN1KK1", + "operator:email": "contact@e55c.com", + "ref": "FR*55C*P83350*RAM*N1KK1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65994300000, + 43.22060700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3612EVCP04;LFR3612EVCP02;LFR3612EVCP01;LFR3612EVCP03", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CONCHES EN OUCHE Prevert;CONCHES EN OUCHE Prévert", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3612EVCP04;LFR3612EVCP02;LFR3612EVCP01;LFR3612EVCP03", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94033000000, + 48.97307800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Intermarché - Callac", + "ref:EU:EVSE": "FRPD1PITMCLC", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-06-14", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43338300000, + 48.40743400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/NPRXBQ;Saint-Jean-En-Royans, Parking Ancien Intermar", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPNPRXBQ", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "NPRXBQ;31936", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29092000000, + 45.01660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "description": "e-Totem - SCI du Littoral berck", + "amenity": "charging_station", + "start_date": "2023-11-28", + "ref:EU:EVSE": "FRETIP62108A", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP62108A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59673560000, + 50.40212810000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "Parking gare de Nantes Château - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E44109001", + "capacity": "11", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54400000000, + 47.21736000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Lillers", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-13;2023-12-15", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT621901", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46432600000, + 50.56872100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2022-03-30", + "network": "ELECTRA", + "description": "Beaune - Greet Hotel", + "ref:EU:EVSE": "FRELCPBEAGH", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85182600000, + 47.00953800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-15", + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*531*4*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR53141;FROTHPOTHR53142", + "description": "INTERMARCHE - BOURBOURG", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19849900000, + 50.94383800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-01", + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR CONNECT MONCEAU L MINES", + "description": "SONEPAR CONNECT MONCEAU L MINES", + "ref": "FRCPIE6731715", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6731715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36110200000, + 46.68827500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/G5SA8D9JDH", + "ref:EU:EVSE": "FRFR1P8694484230817228739", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "597828", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79263200000, + 45.57902300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-12-01", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRURWPUNIB2911;FRURWPUNIB2921;FRURWPUNIB2931;FRURWPUNIB2941", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*UNIB*29*4*_*_;FR*SOD*S*UNIB*29*3*_*_;FR*SOD*S*UNIB*29*2*_*_;FR*SOD*S*UNIB*29*1*_*_", + "description": "LES HALLES - PARKING UNIBAIL", + "network": "UNIBAIL", + "operator:email": "sav@izivia.com", + "owner:ref:FR:SIREN": "682024096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34617600000, + 48.86199600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "735123", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/DBFPKZBIGQ", + "ref:EU:EVSE": "FRFR1P5855413146978970126", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18896000000, + 46.86605500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Sisteron", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP2584", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91355400000, + 44.22619900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7720873265986244371", + "charging_station:output": "22 kW", + "description": "Freshmile France/AV6FY1L0OW", + "operator": "Freshmile | FR*FR1", + "ref": "505536" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06852500000, + 48.75189500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Zunder/143953", + "socket:type2_combo:output": "200 kW", + "operator:email": "roaming@zunder.com", + "network": "Zunder", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "ref:EU:EVSE": "ESZUNP7431855735313560168", + "capacity": "4", + "opening_hours": "24/7", + "ref": "1130574", + "operator": "Zunder | ES*ZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47014500000, + 47.65076900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/LXEN3QKGGW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457506", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref:EU:EVSE": "FRS14P6745810431909262252", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.76513100000, + 49.10847500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-05", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LANUEJOULS - Place du Couvent - Rue des Lilas", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12121001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16177300000, + 44.42560800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "880185", + "ref:EU:EVSE": "FRWA4P7659285884217207967", + "operator": "WAAT SAS | FR*WA4", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA4LTHVO5FGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11836400000, + 49.48386100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-03-26;2021-09-23", + "description": "OuestCharge - Diva Sp - La Poueze - Union;LA POUEZE - Place de l'Union", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS49P49249A;FRS49E49249001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80826600000, + 47.55254000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81065005", + "description": "CASTRES - Place du 8 Mai 1945", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24185600000, + 43.60471400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-12", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "description": "LA LONGUEVILLE - Rue de Mons - Parking de la Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH16E59357001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85659170000, + 50.29009140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44203001;FRS44P44203A", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Le Temple-De-Bretagne - Girard;LE TEMPLE-DE-BRETAGNE - Rue Louis Girard", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-17;2021-06-02", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79202400000, + 47.32810000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "description": "SIEG63 - ePremium - St Floret - Mairie", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "start_date": "2023-01-18", + "operator:email": "info-usager.silene@spie.com", + "ref:EU:EVSE": "FRS63P63342B", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10440680000, + 45.55009910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH02E59495001", + "operator": "Bouygues E&S", + "description": "RECQUIGNIES - Place de Nice", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03840100000, + 50.28379100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS34E34050001", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "CANDILLARGUES - Rue Des Aigrettes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06906600000, + 43.62210100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "CRETEIL - Rue du Cap", + "ref:EU:EVSE": "FRSIPE94028026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46674985439, + 48.80272511805 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP90229747", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B Hôtel Marseille Saint Menet", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-04-18;2024-03-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51012800000, + 43.28770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Brantome | Boulevard Charlemagne (Parking)", + "ref": "3accc1f1-0dc8-554e-b086-2fa0750c2588" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64770900000, + 45.36491000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2020-10-29;2020-11-05", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE4451;FRSIGPSIGE4411;FRSIGPSIGE4421;FRSIGPSIGE4431;FRSIGPSIGE4441;FRSIGPSIGE4461", + "ref": "FR*SOD*S*SIGE*44*6*_*_;FR*SOD*S*SIGE*44*4*_*_;FR*SOD*S*SIGE*44*2*_*_;FR*SOD*S*SIGE*44*1*_*_;FR*SOD*S*SIGE*44*3*_*_;FR*SOD*S*SIGE*44*5*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27093100000, + 48.92161100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9009991;FRALLEGO9008732;FRALLEGO9008731;FRALLEGO9004392;FRALLEGO9004271;FRALLEGO9004272;FRALLEGO9004391;FRALLEGO9008701;FRALLEGO9008702;FRALLEGO9009992", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9009991;FRALLEGO9008732;FRALLEGO9008731;FRALLEGO9004392;FRALLEGO9004271;FRALLEGO9004272;FRALLEGO9004391;FRALLEGO9008701;FRALLEGO9008702;FRALLEGO9009992", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Villiers en Bière", + "capacity": "10", + "start_date": "2024-05-28", + "description": "Allego Carrefour Villiers en Bière" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58197700000, + 48.50120900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "description": "PIGNANS - D97", + "ref:EU:EVSE": "LFR3890EVCP03;LFR3890EVCP02;LFR3890EVCP01;LFR3890EVCP04", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3890EVCP03;LFR3890EVCP02;LFR3890EVCP01;LFR3890EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24926900000, + 43.30677800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Saint etienne de Baigorry | Parking Mairie", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "b2b0b512-4565-5c3a-b03a-1a750f33773e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34035500000, + 43.17841700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "description": "CADEROUSSE - Cours Gabriel Péri", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "7d5e8acb-f46c-5149-92b3-77ac9e1fc1b7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75834000000, + 44.10303700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LE PERRAY EN YVELINES- Parking Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78486003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85439350000, + 48.69480950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "charging_station:output": "22 kW;180 kW", + "ref": "LFR3814EVCP03;LFR3814EVCP01;LFR3814EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "socket:type2_combo:output": "180 kW", + "description": "SARAN - Jonquilles", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3814EVCP03;LFR3814EVCP01;LFR3814EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89021600000, + 47.95441600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "description": "Intermarché - Yvrac", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PITMYVR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46918001241, + 44.87070523854 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Vars, Les Claux;Réseau eborn/EBFZ5AXIPG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPEBFZ5AXIPG", + "ref": "EBFZ5AXIPG;75056", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68004700000, + 44.57177400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;50 kW;150 kW", + "owner:ref:FR:SIREN": "917546251", + "network": "e-Vadea;E-VADEA", + "amenity": "charging_station", + "capacity": "6;18", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "opening_hours": "24/7", + "ref": "680729", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA", + "description": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux;E-VADEA/FR*EVA*P25368*B", + "start_date": "2022-12-21", + "charging_station:output": "43 kW;22 kW;50 kW;150 kW;300 kW", + "ref:EU:EVSE": "FREVAP25368B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12520100000, + 47.32702600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Carrefour Market - Salles", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCRFSAL", + "start_date": "2023-03-24", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87367100000, + 44.54697700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT411001", + "operator": "DRIVECO", + "description": "Carrefour Market - Vendôme Saint-Ouen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07320700000, + 47.80497200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB Golf", + "start_date": "2019-11-04", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRESEPS42218AR", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218AR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36807200000, + 45.45427500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*IZIG*456*1*_*_", + "charging_station:output": "3.68 kW", + "start_date": "2022-02-17", + "network": "EDF-EV100", + "amenity": "charging_station", + "capacity": "1", + "description": "SEI GUYANE - KOUROU", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG45611", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.64723200000, + 5.15462200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6879415", + "start_date": "2024-02-22", + "capacity": "2", + "amenity": "charging_station", + "network": "SAS GRANDE RUE STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6879415", + "description": "SAS GRANDE RUE STATION 1", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22867900000, + 45.22132400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5504981992437990449", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/RIJJUVBPGT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1009209" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71622400000, + 48.61270900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL BESANÇON CHATEAUFARINE", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-05-14", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122048" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95547700000, + 47.22016500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRFR1P5485481734059267912", + "network": "Freshmile France", + "description": "Freshmile France/ZPPVQPNTKD", + "charging_station:output": "22 kW;3 kW", + "opening_hours": "24/7", + "ref": "782505", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52664600000, + 48.83303900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Saintes, France - Saintes Nord", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "ref:EU:EVSE": "FRTSLP28781", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65287100000, + 45.75344600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/OCKE9RJCWK", + "ref": "446558", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2719065834828901344", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97610600000, + 48.93137500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "456828", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/FZE0IT59TV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P7049887846473866322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88586600000, + 48.83730700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/NU7TML0PLL", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "457521", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P8419796117260703771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30306700000, + 49.22635700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LAQDO05MP", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRWA9P3426006425169780708", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1127913", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56968400000, + 46.81304700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-05", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "description": "CHERBOURG EN COTENTIN (EQUEURDREVILLE HAINNEVILLE) - Résistants", + "ref:EU:EVSE": "FRS50P50173004", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65426300000, + 49.64789200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MIRANDOL - Place du Foirail - Bourgnougnac", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81168001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16653700000, + 44.14140200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref": "FRHPCPNF059705", + "capacity": "12", + "description": "RELAIS ROISSY", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681694", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-07-25", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRHPCENF059705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53733500000, + 49.00931000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LE ROZIER - Route De Capluc", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "network": "Reveo", + "charging_station:output": "18 kW;180 kW", + "ref:EU:EVSE": "FRS48E48131001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20717800000, + 44.19138500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/PVGAUH", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PPVGAUH", + "network": "Mobilité électrique 56", + "ref": "812370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77215000000, + 47.65800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SAINT-LÉONARD - Avenue François Miellot", + "ref:EU:EVSE": "FRH05E62755001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62664524998, + 50.68826750809 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29360001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2023-10-30", + "description": "CLOHARS CARNOET - Place De L'Océan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.54979000000, + 47.76668500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/WZXSRJ", + "operator:email": "roaming@freshmile.com", + "ref": "32824", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56PWZXSRJ", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38592000000, + 47.76130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346052382;FRLMSE12346052372;FRLMSE12346052371;FRLMSE12346052381", + "ref": "B094", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "SAINT-SAVIN-1-2;SAINT-SAVIN-1-1", + "operator:email": "irve@soregies.fr", + "start_date": "2018-03-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86389000000, + 46.56596000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Metropolis - Proximité - Montreuil - Godefroy;Métropolis/FR*MGP*P93048*C", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93048C", + "ref": "484793", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2022-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43176500000, + 48.85407000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Réseau AlterBase - Melle - Place de Strasbourg", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79174P0029A", + "start_date": "2017-03-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14574514000, + 46.22041599000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "ref:EU:EVSE": "FRATLP6598578841623820184", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL", + "description": "Atlante/FRATLFR00287", + "ref": "1050957" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36881900000, + 47.57046300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-26", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLMSP89362838", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Charmes - Parc de la Peupleraie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29189300000, + 48.36953800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "network": "I-Bornes", + "opening_hours": "24/7", + "operator": "Electromaps", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "893442731", + "ref:EU:EVSE": "FRMAPP000000007347", + "description": "I-Bornes", + "operator:email": "customer.support@electromaps.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13625170185, + 47.26697001657 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BREM-SUR-MER - Rue Du Champ Prieur", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS85E85243001", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83562000000, + 46.60630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VILLABE", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSVILLA", + "network": "Carrefour Energies", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44971000000, + 48.58530000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-12", + "amenity": "charging_station", + "capacity": "1", + "description": "Garches - Siège", + "operator": "Jerecharge.com", + "opening_hours": "Mo-Su 08:00-18:00", + "owner:ref:FR:SIREN": "905083895", + "ref:EU:EVSE": "FRJRCPSIEGE00001", + "charging_station:output": "22 kW", + "network": "Jerecharge.com", + "ref": "e9b30855-b21a-4e93-8d3d-8e86c2a63864", + "operator:email": "contact@jerecharge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18669900000, + 48.84706100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-11-20;2024-08-12", + "ref:EU:EVSE": "FRPD1PMBCBIA", + "description": "Mr. Bricolage - Bias", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66724716145, + 44.40326708028 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Valence, Place Championnet", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPBR33QVBXDK", + "ref": "BR33QVBXDK", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88973581000, + 44.92944338000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLXLVI5BX22GTH", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2796472369484315555", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1154262", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19079100000, + 49.16962800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Ibis Budget - Libourne", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2024-08-29", + "ref:EU:EVSE": "FRPD1PIBSLBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24371776641, + 44.94702125786 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Bargeme, Parking Du Château;Réseau eborn/GJ9LI4EFUY", + "ref:EU:EVSE": "FREBNPGJ9LI4EFUY;FREBNGJ9LI4EFUY", + "start_date": "2020-08-26", + "ref": "GJ9LI4EFUY;79174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57108500000, + 43.72996800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "capacity": "5", + "operator": "E-TOTEM", + "amenity": "charging_station", + "description": "e-Totem - 3M - Montpellier - Rue du Walhalla", + "socket:type2_combo:output": "180 kW", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP34172B", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP34172B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91491000000, + 43.61835100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "network": "CARREFOUR GRESY-SUR-AIX", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "CARREFOUR MARKET GRESY-SUR-AIX", + "ref:EU:EVSE": "FROTHPOTHR21941;FROTHPOTHR21911;FROTHPOTHR21921;FROTHPOTHR21931", + "operator:email": "sav@izivia.com", + "start_date": "2021-08-31", + "ref": "FR*SOD*S*OTHR*219*1*_*_;FR*SOD*S*OTHR*219*2*_*_;FR*SOD*S*OTHR*219*3*_*_;FR*SOD*S*OTHR*219*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92179400000, + 45.72058900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "description": "LONGJUMEAU - PARKING BRETTEN", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS4512;FRCPSPCAPS4511", + "ref": "FR*SOD*S*CAPS*45*1*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2020-04-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29254000000, + 48.69673600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CPBDRSCXA3", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5437711441895276859", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "419088", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46336100000, + 48.41895200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA1P893377877706010777", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "789186", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLEQGCOCFA", + "operator": "WAAT SAS | FR*WA1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89992200000, + 43.60217200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892266", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1717762087993245740", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIVRMF2316EBN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.89906100000, + 48.73086500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "225 kW", + "charging_station:output": "22 kW;225 kW", + "ref:EU:EVSE": "FRSWSE1000098807", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "start_date": "2023-03-27", + "capacity": "3", + "description": "ALPITRONIC 225kW Hyundai La Motte Servolex", + "opening_hours": "24/7", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1000098807", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88513700000, + 45.60886800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4391070162079560114", + "capacity": "4", + "network": "Freshmile France", + "ref": "346391", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CUCLV63JAV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03786100000, + 49.26591400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "description": "Ibis - Lens", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-16", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPIBISLENS623001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82862700000, + 50.42724900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E139351", + "description": "MODULO - VERNOUILLET - Rue de ROME", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - VERNOUILLET - Rue de ROME", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E139351", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36963100000, + 48.71758100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-01", + "amenity": "charging_station", + "capacity": "1", + "network": "Les jardins de la matz", + "owner:ref:FR:SIREN": "802549295", + "ref:EU:EVSE": "Non concerné", + "operator:email": "jerome.desegogne@fulton.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "TACW2244221S3391", + "operator": "Les jardins maraichers des bords de rance", + "description": "Les jardins de la matz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98515467479, + 48.50192886577 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS10P5727191281709298963", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "521471", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "opening_hours": "24/7", + "description": "SDEA 10/XB2FPTW6L6", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14293200000, + 48.05976500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Manoir du Lys;Zephyre/LP009E7B;Zephyre/LP00957D", + "ref": "675734;9a1d2146-8a25-4236-9612-5c59eccd021a;675719", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "350654232", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "network": "Manoir du Lys;Zephyre", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr", + "ref:EU:EVSE": "FRZP1P50286;FRZP1P381085953005168566;FRZP1P19145;FRZP1P3131974608312084015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44498500000, + 48.56270400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2023-01-12", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE504", + "description": "Aux_Enfants_Terribles", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07503100000, + 50.67974100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PMONTBARTGAR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/montbartgar", + "ref": "86885", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26419000000, + 43.92410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "ref:EU:EVSE": "FRISEEINOUIDCALICEOSTEFOY;FRISEPINOUIDCALICEO", + "capacity": "4", + "owner:ref:FR:SIREN": "512797887", + "opening_hours": "24/7", + "ref": "1e5afb0e-673f-11ee-8c99-0242ac120002", + "charging_station:output": "22 kW", + "operator:email": "contact@inouid.com;Contact@inouid.com", + "network": "Caliceo Sainte Foy Public", + "description": "Caliceo Ste Foy", + "start_date": "2023-07-12;2023-12-07", + "operator": "INOUID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78741300000, + 45.73097000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "OuestCharge - ePremium - Coron - Eole", + "ref:EU:EVSE": "FRS49P49109A", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63686100000, + 47.12877800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRS60PVKBPUT", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "585563", + "description": "Mouv'Oise/VKBPUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47143000000, + 49.19310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-01-20", + "description": "CRA01 - PARKING CURTIL", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*2*1*_*_;FR*SOD*S*LYON*2*2*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON221;FRGLYPLYON211;FRGLYPLYON212;FRGLYPLYON222", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72552200000, + 45.74601800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS30E30189019", + "operator": "Bouygues E&S", + "description": "NIMES - Route D'Alès", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34480300000, + 43.83797200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-08-29", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PAPALYU", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Rue Jean le Coutaller" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36818700000, + 47.74683500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346402701;FRLMSE12346402691", + "ref": "B044", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-07-07", + "operator": "SOREGIES MOBILITES", + "description": "ITEUIL-1-1;ITEUIL-1-2", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31542000000, + 46.48522200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilygreen CPO/e2b3a75a-6223-44b8-b2a8-1ce4d54c5558", + "operator:email": "contact@mobilygreen.fr", + "amenity": "charging_station", + "capacity": "26", + "network": "Mobilygreen CPO", + "ref:EU:EVSE": "FRMW1P8772981921967233861", + "ref": "969338", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31943100000, + 48.92176100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-06-18", + "ref": "FR*SOD*S*SIGE*151*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE15112;FRSIGPSIGE15111", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 92 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44177800000, + 48.80495800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-22", + "ref:EU:EVSE": "FRBE1E78674003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "VILLEPREUX - Rue Pasteur (Mairie Villepreux)", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00555600000, + 48.83068000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSP89489188", + "operator": "Last Mile Solutions", + "socket:type2_combo:output": "50 kW;300 kW;90 kW", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;50 kW;22 kW;90 kW", + "description": "ENGIE Vianeo - A62 Frontonnais Nord", + "start_date": "2024-02-16;2023-03-22", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36144800000, + 43.81224700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Villebois-Lavalette | Place du Champ de Foire", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "0e7eb5e7-3f42-52f5-8919-29c1a7da5541", + "operator": "190__SDEG16", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27677500000, + 45.48212000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-05-17", + "capacity": "2", + "amenity": "charging_station", + "description": "LE MEE SUR SEINE - EHPAD", + "ref:EU:EVSE": "FRSE1PSE77MABA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63849700000, + 48.54715200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FRALLEGO9006361;FRALLEGO9006332;FRALLEGO9006331;FRALLEGO9003022;FRALLEGO9003021;FRALLEGO9006362", + "description": "Allego Carrefour Fourmies", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9006361;FRALLEGO9006332;FRALLEGO9006331;FRALLEGO9003022;FRALLEGO9003021;FRALLEGO9006362", + "start_date": "2024-05-23", + "network": "Allego Carrefour Fourmies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02969000000, + 50.02735900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "SAINT MEMMIE - Simon", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "LFR3919EVCP03;LFR3919EVCP01;LFR3919EVCP02", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3919EVCP03;LFR3919EVCP01;LFR3919EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39033100000, + 48.94523700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Place du Busca", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM31E31555025", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-06-03", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45057600000, + 43.58795500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Pignans, Avenue De La Mairie;Réseau eborn/TZ5AN63MMZ", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "134761;TZ5AN63MMZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref:EU:EVSE": "FREBNPTZ5AN63MMZ;FREBNTZ5AN63MMZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22949900000, + 43.30131400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "465963", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3955013372984889403", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/AXT8TBMQPM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75255700000, + 48.58694400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "56", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E751170514;FRP07E751170513;FRP07E751170512;FRP07E751170511;FRP07E75117051;FRP07E751170515", + "description": "PARIS - Ternes", + "start_date": "2022-12-26", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29319343378, + 48.87916399112 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "30497;HUTGNTAFVM", + "capacity": "2", + "start_date": "2020-06-19", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/HUTGNTAFVM;La Roche-Sur-Foron, Parking Pontet", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPHUTGNTAFVM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30504000000, + 46.07190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-03-25", + "owner:ref:FR:SIREN": "891624884", + "capacity": "18", + "description": "Bois-d'Arcy - E.Leclerc", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "22 kW;400 kW", + "opening_hours": "24/7", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPBDALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03900900000, + 48.79955700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-05-13", + "capacity": "10", + "description": "Parking Gare de Perrignier - EFFIA", + "ref:EU:EVSE": "FRP01E742100011;FRP01E74210001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42495640000, + 46.30318070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR ST-MARTIN-DE-RE", + "ref": "FRCPIE6620005", + "network": "SONEPAR ST-MARTIN-DE-RE", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6620005", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35744600000, + 46.19816900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Cellieu, Parking place Verdun", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRVMNOOPOGM", + "ref": "RVMNOOPOGM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54145070000, + 45.52291890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "805275", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA3", + "description": "WAAT/FRWATLDGCQPXGA", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA3P3956702549516133143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74173500000, + 43.86645400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "878844141", + "operator:email": "exploitation@freshmile.com", + "description": "MAIRIE CRANCOT", + "ref": "d8e15d5a-3a03-11ef-9454-0242ac120002", + "ref:EU:EVSE": "FRFR1EMNSY", + "amenity": "charging_station", + "network": "MAIRIE CRANCOT", + "capacity": "4", + "operator": "Freshmile", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-04-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65000000000, + 46.68000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "523107621", + "ref": "FRTCBP00803", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;7 kW", + "ref:EU:EVSE": "FRTCBP00803", + "network": "IBIS BUDGET AEROPORT DE LYON", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "IBIS Budget Aeroport de Lyon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07186447670, + 45.71366493138 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "operator:email": "roaming@freshmile.com", + "ref": "735132", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4679223371982207353", + "description": "Freshmile France/EVGRRYJMAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65487000000, + 49.57855000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2020-10-22", + "ref:EU:EVSE": "FRSSDPMAURINVOLKSWAGEN041301", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Volkswagen Volx Manosque - AUTOMOBILES DU LUBERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84024800000, + 43.86407400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Kerlouan-Rue de la Côté des Légendes", + "ref:EU:EVSE": "FRS29E2909100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.36706600000, + 48.64472600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E11068001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-12", + "network": "Reveo", + "description": "CAPENDU - Rue Du Cers - Parking Pole Santé" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56000000000, + 43.18555560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "c341d1e0-5ee5-4ef8-a70a-368e2226ab52", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Garage Serva Autos - 22 kW AC", + "owner:ref:FR:SIREN": "482760477", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "UNICAP - GARAGE SERVA AUTOS", + "ref:EU:EVSE": "FRZP1PEAC61531", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17977620000, + 48.49605000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS08E57609;FRS08E57608", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "ref": "FRS08E57609;FRS08E57608", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - MACHAULT - Pl. de la mairie", + "operator": "Modulo", + "description": "MODULO - MACHAULT - Pl. de la mairie", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49944700000, + 49.35492400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "64664", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PBLSJNA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/BLSJNA", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06713000000, + 49.70430000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST23811;FRIZFPFAST23812;FRIZFPFAST23813", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*238*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "IZIVIA FAST - MCDONALDS - PONTCHARRA", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-09-17", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00671850000, + 45.43408630000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BOURGNEUF-EN-RETZ - Complexe Sportif De La Vigne", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS44E44021001", + "charging_station:output": "22 kW", + "start_date": "2024-04-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95605003834, + 47.04152297974 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77069A;FRS77E77069001", + "ref": "01F5ZAKH6113N1FAJ4SXYZ1B94", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "start_date": "2023-05-24;2015-07-01", + "description": "Chailly-en-Bière - Général Leclerc;CHAILLY-EN-BIERE - Place Du Général Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60793800000, + 48.46576700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "network": "CHÂTEAU TOUR SAINT CHRISTOPHE", + "operator:email": "compta@greenspot.fr", + "description": "CHÂTEAU TOUR SAINT CHRISTOPHE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRGSPP1000054863" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12945042871, + 44.89091209216 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - L'ILE BOUCHARD - Pl. Bouchard", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E221523;FRS37E219855", + "description": "MODULO - L'ILE BOUCHARD - Pl. Bouchard", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E221523;FRS37E219855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42481307000, + 47.11995595000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Manonviller", + "charging_station:output": "3.7 kW", + "ref": "38ab90e6-0c2c-53ec-8fc4-4153c5802988" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65054600000, + 48.58364000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SPLM Parking République - N1 - Zone 1;SPLM Parking République - N1 - Zone 2", + "operator": "E-TOTEM", + "description": "SPLM Parking République - N1 - Zone 1;SPLM Parking République - N1 - Zone 2", + "ref:EU:EVSE": "FRG10P69381BB;FRG10P69381BA", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-08-01", + "opening_hours": "24/7", + "ref": "FRG10P69381BB;FRG10P69381BA", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83698070000, + 45.76007130000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "802b18a6-b6d3-5c84-bc2f-47d9ccdf0c1d", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | ESCOURCE | Parking Centre", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03405400000, + 44.16378500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*27*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - RUE VICTOR HUGO - CARRIERES-SUR-SEINE", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2020-07-31", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE2711;FRSIGPSIGE2712", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17596000000, + 48.90592000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6488485;FRCPIE6488535", + "socket:type2_combo:output": "62 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "62 kW", + "start_date": "2021-09-07", + "opening_hours": "Su 00:00-08:00,Su 13:00-24:00,Mo 00:00-08:00,Mo 19:00-24:00,Tu 00:00-08:00,Tu 19:00-24:00,We 00:00-08:00,We 19:00-24:00,Th 00:00-08:00,Th 19:00-24:00,Fr 00:00-08:00,Fr 19:00-24:00,Sa 00:00-08:00,Sa 19:00-24:00", + "description": "LECLERC 06110 STA. SERVICE 1", + "ref": "FRCPIE6488485;FRCPIE6488535", + "operator:email": "info@chargepoint.com", + "network": "LECLERC 06110 STA. SERVICE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00129510000, + 43.57216260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/JAKVHCRJTT", + "ref": "505764", + "ref:EU:EVSE": "FRLE2P993747184730002392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88167500000, + 48.18844300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "540ed48d-412b-54f6-97ef-7acf2c8b74f7", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Nespouls | la Croix Blanche", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49605300000, + 45.05187600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - St André sur Sèvre - Salle Omnisports", + "ref:EU:EVSE": "FRSEOPAB13017A;FRSEOPAB13017B", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-12-22", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67720400000, + 46.78224500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRAGXP01143A", + "operator:email": "info-usager.silene@spie.com", + "start_date": "2019-09-25", + "description": "Pays de Gex - ePremium - Divonne-Les-Bains - Poste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14317000000, + 46.35668300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2937EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2937EVCP01", + "description": "ST PAUL TROIS CHATEAUX St Vincent" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75548500000, + 44.34619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "capacity": "5", + "ref:EU:EVSE": "FRM38E38486001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SEYSSINS - Parking Le Prisme", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69126300000, + 45.16525900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "GRASSE PARKING SQUARE DES DIABLES BLEUS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ12211;FRA16PWIIZ12212", + "start_date": "2021-05-10", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*122*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92296000000, + 43.65121100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1658645104045158966", + "capacity": "2", + "amenity": "charging_station", + "ref": "465969", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BLHRLNQFGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69644400000, + 48.40140500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRPD1PACTPLR", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-08-31", + "charging_station:output": "50 kW;100 kW;120 kW;22 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "description": "Action - Plerin", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75447994011, + 48.53385326184 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPDTJZZQ", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/DTJZZQ;Annecy, Bonlieu", + "ref": "79123;DTJZZQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12962000000, + 45.90260000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-04-29", + "capacity": "8", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPVSSCA", + "amenity": "charging_station", + "network": "ELECTRA", + "description": "Villefranche-sur-Saône - Carrefour", + "opening_hours": "24/7", + "charging_station:output": "50 kW;150 kW", + "socket:type2_combo:output": "50 kW;150 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73269000000, + 45.99728400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E95572002", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Cergy-Pontoise centre gare - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10169810000, + 49.04486740000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SONEPAR CLERMONT-FER 3", + "amenity": "charging_station", + "network": "SONEPAR CLERMONT-FER 3", + "start_date": "2023-01-24", + "capacity": "4", + "ref:EU:EVSE": "FRCPIE6678655;FRCPIE6678625", + "ref": "FRCPIE6678655;FRCPIE6678625", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13364900000, + 45.78463000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref": "1123710;LLUWSD9MH5DDKD", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref:EU:EVSE": "FRECHP270460490378477691;FRECHPLLUWSD9MH5DDKD", + "opening_hours": "24/7", + "description": "Vaison-la-Romaine, Quai Paul Gontard;Easy Charge/LLUWSD9MH5DDKD", + "start_date": "2024-04-12", + "socket:type2_combo:output": "120 kW", + "network": "Easycharge services;Easy Charge", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07365900000, + 44.23983400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ENGIE Vianeo - Epinal - Piscine Roger Goujon 1", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2022-12-13", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46145700000, + 48.19265500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "559688", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6350107067091032252", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/BQZ44DT842" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98558000000, + 45.63093500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-28", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX06*03", + "capacity": "4", + "description": "Paris | Rue Mayet 2", + "ref:EU:EVSE": "FRV75PPX0603", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31820910000, + 48.84736910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5423586070872106598", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "1179960", + "description": "Freshmile France/LLZ9YPJBE18DRD", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70697800000, + 48.51545700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "Mo 09:00-12:00, Mo 13:30-18:00, Tu 09:00-12:00, Tu 13:30-18:00, We 09:00-12:00, We 13:30-18:00, Th 09:00-12:00, Th 13:30-18:00, Fr 09:00-12:00, Fr 13:30-18:00", + "capacity": "4", + "start_date": "2021-02-02", + "charging_station:output": "22.08 kW", + "description": "SARL ECG", + "ref:EU:EVSE": "FRSSDPSARLECG387801", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91976400000, + 45.53004200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22343001", + "description": "Trebeurden-Place du Peillet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.57785500000, + 48.77108400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS18E148664", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - VIERZON - Pl. de la gare", + "operator": "Modulo", + "description": "MODULO - VIERZON - Pl. de la gare", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E148664" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06009837000, + 47.22609066000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "operator:email": "contact@chartonvachet.fr", + "start_date": "2021-05-18", + "amenity": "charging_station", + "capacity": "1", + "description": "Borne, Domaine, Charton-Vachet", + "ref:EU:EVSE": "Non concerné", + "network": "DIDIER CHARTON-VACHET", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "812676997", + "operator": "DIDIER CHARTON-VACHET", + "ref": "01FPCSPWFH7EW2RD2GQRR3ESW4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67000000000, + 46.69000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/HQBEJCHF0S", + "operator:email": "roaming@freshmile.com", + "ref": "32071", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P5449526118263025646" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47790600000, + 48.06953100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ALBI - Parking Du Bondidou 2", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81004008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13960800000, + 43.92756900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*IKEA*52*9*_*_;FR*SOD*S*IKEA*52*8*_*_;FR*SOD*S*IKEA*52*7*_*_;FR*SOD*S*IKEA*52*6*_*_;FR*SOD*S*IKEA*52*5*_*_;FR*SOD*S*IKEA*52*4*_*_;FR*SOD*S*IKEA*52*2*_*_;FR*SOD*S*IKEA*52*12*_*_;FR*SOD*S*IKEA*52*10*_*_;FR*SOD*S*IKEA*52*1*_*_;FR*SOD*S*IKEA*52*11*_*_;FR*SOD*S*IKEA*52*3*_*_", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "network": "IKEA", + "description": "IKEA ORLEANS - PARKING CLIENT", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIKAPIKEA5291;FRIKAPIKEA5281;FRIKAPIKEA5271;FRIKAPIKEA5261;FRIKAPIKEA5251;FRIKAPIKEA5241;FRIKAPIKEA5231;FRIKAPIKEA52121;FRIKAPIKEA52101;FRIKAPIKEA5211;FRIKAPIKEA52111;FRIKAPIKEA5221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91842000000, + 47.82818800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "description": "OuestCharge - Diva Sp - Pornichet - Briand;PORNICHET - Place Aristide Briand", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44132B;FRS44E44132002", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-04-23;2024-04-17;2024-04-18", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34517700000, + 47.27032400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS77E77316002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-05-23", + "description": "MORÊT-LOING-ET-ORVANNE - Montrichard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81331339000, + 48.37300840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NORDAUSQUES - Rue de la mairie", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH01E62618001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08038000000, + 50.81825670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - SAINT PATRICE - Rue Paul Marchand", + "operator": "Modulo", + "description": "MODULO - SAINT PATRICE - Rue Paul Marchand", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221506;FRS37E221502", + "ref:EU:EVSE": "FRS37E221506;FRS37E221502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30915141000, + 47.28568302000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - DUN SUR MEUSE - Rue Faubourg St Martin", + "ref": "FRS55E66576;FRS55E66577", + "ref:EU:EVSE": "FRS55E66576;FRS55E66577", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - DUN SUR MEUSE - Rue Faubourg St Martin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18528400000, + 49.38160900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2021-11-23", + "ref:EU:EVSE": "FRGLYPLYON14212;FRGLYPLYON14211", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*142*1*_*_", + "operator:email": "sav@izivia.com", + "description": "CHA01 - ZI CHASSIEU - ROCADE EST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96997700000, + 45.72577000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59273*02", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRMELP5927302", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "PÉRONNE-EN-MÉLANTOIS - Parking de l'Ecole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16650200000, + 50.56652500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "7.36 kW", + "description": "Jaguar Land Rover - Bastia", + "start_date": "2019-12-21", + "ref:EU:EVSE": "FRSSDPJLRBBCBASTIA206201", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43900100000, + 42.63100400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6580005", + "capacity": "2", + "amenity": "charging_station", + "description": "SU LA CHAUME BORNE 1", + "ref": "FRCPIE6580005", + "network": "SU LA CHAUME BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79873600000, + 46.50382200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/AJQJUM9B3C", + "ref:EU:EVSE": "FRLE2P2201761481266369420", + "ref": "735225" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592300000, + 44.64292400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "ref:EU:EVSE": "FRS33PMB3310912;FRS33PMB3310911;Non concerné", + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "description": "MOBIVE | Sablons | Village d'Enfants | Grande lande;SABLONS - VILLAGE DENFANTS - GRANDE LANDE", + "opening_hours": "24/7", + "ref": "FR*SOD*S*MB33*109*1*_*_;31590e06-d671-5cdc-962a-a6dd4ac3ed04", + "owner:ref:FR:SIREN": "253303473", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17687400000, + 45.02510800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Fleury-Merogis - Rue André Malraux", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "ead885ec-d587-56b1-a150-e12423712a59" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36495600000, + 48.63707000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "ref:EU:EVSE": "FRALLPCAS002", + "charging_station:output": "50 kW;43 kW;160 kW;22 kW", + "amenity": "charging_station", + "network": "CASINO SAINT ETIENNE", + "capacity": "12", + "socket:type2_combo:output": "50 kW;160 kW", + "start_date": "2021-04-14", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "description": "CASINO SAINT ETIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42404170000, + 45.44046020000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3355EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3355EVCP01", + "description": "NONTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66680800000, + 45.53878600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Istres, Jean Moulin", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PVKCVXORVJJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98893200000, + 43.50247400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRS88E180312;FRS88E180314", + "network": "MODULO - MIRECOURT - Pkg. rue du bailliage", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - MIRECOURT - Pkg. rue du bailliage", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref:EU:EVSE": "FRS88E180312;FRS88E180314", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13313212000, + 48.30189460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*234*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "start_date": "2023-09-15", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ23412;FRA16PWIIZ23411", + "description": "BRIANCONNET - PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74003270000, + 43.86266560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9175071763148815565", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/ECQW9RJZ8K", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "485106", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97829600000, + 45.70591300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMBRSVN", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Mr. Bricolage - Savenay", + "start_date": "2023-08-01", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93310153369, + 47.37225923450 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPXBFXBY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "78636;XBFXBY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-11", + "description": "Réseau eborn/XBFXBY;La Palud-Sur-Verdon, Le Vignaou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34313000000, + 43.78050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "683231", + "description": "CARF - Bornes Publiques/1FE96331-2018-4918-AA44-11F7900143C8", + "ref:EU:EVSE": "FREVZP4243639006825459059", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47256500000, + 43.83331500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-01;2021-11-03", + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "COMPIÈGNE - Marché", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E60159001;FRP07E601590011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82489200000, + 49.41842300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "MXJSYM;63995", + "ref:EU:EVSE": "FREBNPMXJSYM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Gruffy, Poste;Réseau eborn/MXJSYM", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05437000000, + 45.78660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-07", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Montagny, Impasse des sports;Réseau eborn/TUTD30X35M", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP6865235269675478885;FREBNPTUTD30X35M", + "ref": "TUTD30X35M;346943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23473900000, + 46.03203500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2023-07-03", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Cergy St-Christophe", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP121015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03652000000, + 49.05587700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/BK6QUX36OK", + "ref:EU:EVSE": "FRFR1P484479724847718747", + "operator:email": "roaming@freshmile.com", + "ref": "559685", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.76069200000, + 42.54650800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW;3 kW", + "ref:EU:EVSE": "FRV75PPX1306", + "capacity": "7", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*V75*PPX13*06", + "start_date": "2021-09-14", + "description": "Paris | Rue Darmesteter 12", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37539880000, + 48.82315210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "start_date": "2023-01-11", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "314481250", + "operator:email": "web@freshmile.com", + "description": "XEV601C", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "WWFF9DHV9P", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRFR1PWWFF9DHV9P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23000000000, + 49.11000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPSAVYBMW212001", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "description": "BMW - Beaune", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-05-24", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81845000000, + 47.01460800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS27PEVREUXROCHETTE", + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900083", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12397500000, + 49.01709300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "socket:type2_combo:output": "47 kW", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E02222;FRS22E22136003", + "description": "LOUDEAC - Place Notre Dame", + "start_date": "2024-05-03", + "charging_station:output": "22 kW;47 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75238200000, + 48.17584000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-GERMAIN-EN-LAYE - PONTEL", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08045000000, + 48.88795000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE121", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-07-28", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Urby", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03286400000, + 50.62986800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRWATP4357766415463839362", + "description": "WAAT/FRWATLXDMP7YOR", + "opening_hours": "24/7", + "ref": "1086036", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80855200000, + 45.73242100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "start_date": "2021-12-23", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "description": "IONITY Perigueux Sud ", + "ref": "FRIONE439100", + "ref:EU:EVSE": "FRIONE439100", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52431300000, + 45.03088100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS51E42568;FRS51E42569", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - St MARTIN D'ABLOIS - Rue Julien Ducos", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS51E42568;FRS51E42569", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - St MARTIN D'ABLOIS - Rue Julien Ducos", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87080000000, + 49.01319100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BAZET - Parking rte de bordeaux", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65072001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06893000000, + 43.28937000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-04;2023-06-30", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681455;531681450;531681448;531681447;531681446;531681445;531681444;531681442;531681443;531681451;531681449;531681452;531681453;531681454", + "capacity": "14", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "description": "RELAIS DE TREMENTINES", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FRHPCPNF080361", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82650000000, + 47.13623400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34150001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MARSEILLAN VILLAGE - Parking Du Théâtre", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53030833333, + 43.35371670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PSSHGWX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/SSHGWX", + "opening_hours": "24/7", + "ref": "25060", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12044000000, + 47.76170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "882765", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P7695721102569042598", + "description": "Freshmile France/Z4Q5I7BYZR", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99245600000, + 49.22538200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "2", + "network": "Métropolis", + "description": "Métropolis/FR*MGP*P92051*W", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92051W", + "ref": "761931", + "charging_station:output": "25 kW;22 kW", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26667100000, + 48.89126200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-26", + "description": "Casino Golden Palace - Boulogne sur Mer", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPCASINOGOLDENPALACE622001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59880400000, + 50.72176300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MAIRIE - 77640", + "ref": "FRC2P005301", + "start_date": "2023-02-21", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "217702380", + "description": "MAIRIE - 77640", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P005301", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13045514602, + 48.92768371648 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLUMEHOTELALIZES11", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "1", + "description": "HOTEL LES ALIZES", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref": "02e88fc3-43b3-4289-b171-135781bfab8c", + "operator": "LUMI'IN", + "start_date": "2022-06-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89000000000, + 43.96000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "5fc42a0a-5a2c-5e82-acd4-e0cc75d41933", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MOBIVE | Lussac les Eglises | Place de la Fontaine", + "socket:type2_combo:output": "24 kW", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17444800000, + 46.34526600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSE1PSE31RACA", + "description": "Rue Clemence Isaure 3 - REVEL", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99309000000, + 43.45190900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/66a8b0b5a0bca9f616c97ccc", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "11 kW", + "ref": "1162446", + "ref:EU:EVSE": "FRBHMP1147750020055985377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49663300000, + 48.53802600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P2918604487725554207", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446840", + "description": "Leclerc/VEPHSK0X97" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497600000, + 47.45070600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PQBEKUAPQYB", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Plan-de-Cuques, Avenue Georges Pompidou", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46366800000, + 43.34345500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P2330584358322214185", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "description": "SDEY/AYXSCDI0WU", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1009257", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52757700000, + 47.80135000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "LE CANNET PARKING LES LENTISQUES", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*85*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-07", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ8511;FRA16PWIIZ8512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99801200000, + 43.57712900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3665370694464854013", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/OJWVDULAW6", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref": "626204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07251100000, + 45.88901500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PSYSSAI", + "description": "Super U - Saint-Germain", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "start_date": "2024-02-08", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03491047318, + 48.26235643770 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Abondance, Parking De La Mairie;Réseau eborn/VHGFCGFP0Q", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPVHGFCGFP0Q", + "ref": "VHGFCGFP0Q;85724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72068400000, + 46.28074000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "ENGIE MAMP - Bornes publiques/63A56DBF-9623-4EC3-B022-14D7B0CB3576", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP8943499245072638999", + "ref": "1068240", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60158400000, + 43.17623000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*746*1*_*_", + "ref:EU:EVSE": "FROTHPOTHR74612;FROTHPOTHR74611", + "opening_hours": "24/7", + "start_date": "2023-10-12", + "charging_station:output": "22 kW", + "network": "ES B2B", + "operator:email": "sav@izivia.com", + "description": "ES/ COMMUNE DE MEISTRATZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53793900000, + 48.44937910000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "QQ4AFDK4RT;346910", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP5384306970502645549;FREBNPQQ4AFDK4RT", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/QQ4AFDK4RT;Sainte-Florine, Parking Rue Anatole France", + "start_date": "2020-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31931000000, + 45.40492000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint-Jean-Saint-Nicolas, Parking de la Poste;Réseau eborn/WGGW16XY2X", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPWGGW16XY2X", + "ref": "32650;WGGW16XY2X" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23187300000, + 44.66823900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-04-21", + "capacity": "2", + "network": "GROUPE PARTOUCHE", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*385*1*_*_", + "description": "CASINO DE DIEPPE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR38511;FROTHPOTHR38512", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07304000000, + 49.92594900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/OMAQGM6IDU", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6337947077592681183", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "492024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99531100000, + 44.38161700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Dinan, France", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP30032", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06830832000, + 48.44475150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "892518", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "description": "Freshmile France/LLKHZHWH72K1U4", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2703172704800910419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.40674000000, + -21.28986900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01741", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "2;4", + "ref": "FR*TCB*P01741", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "AMP | B320 Rue Edmond Rostang (EX.Parking Henri Fabre piscine)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19428000000, + 43.43522100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1PQFAGQX", + "ref": "94238", + "description": "Freshmile France/QFAGQX", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25536000000, + 47.90170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Plevenon-Parking du bourg (route du cap - RD 34)", + "ref:EU:EVSE": "FRS22E22201001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32811000000, + 48.65593100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZMAE22AC50659", + "start_date": "2021-01-05", + "owner:ref:FR:SIREN": "390389344", + "amenity": "charging_station", + "capacity": "1", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "Mazda THIONVILLE - AZUR MOTORS", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "ref": "50659", + "description": " Mazda - Thionville - 22kW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13520170000, + 49.35915250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE342", + "network": "RossiniEnergy", + "description": "Camping_Les_Sablines", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "start_date": "2022-05-18", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25597300000, + 43.23220900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78361010", + "start_date": "2024-09-10", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public", + "description": "MANTES-LA-JOLIE - Brieussel - Rue de Lorraine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71469870000, + 48.98895120000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-11", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref:EU:EVSE": "FRIOYE447353;FRIOYE447306;FRIOYE447305;FRIOYE447304;FRIOYE447302;FRIOYE447301;FRIOYE447303;FRIOYE447351;FRIOYE447352", + "description": "Bedenac Ouest", + "opening_hours": "24/7", + "ref": "FRIOYE447353;FRIOYE447306;FRIOYE447305;FRIOYE447304;FRIOYE447302;FRIOYE447301;FRIOYE447303;FRIOYE447351;FRIOYE447352", + "network": "Bedenac Ouest", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33427700000, + 45.17336100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "start_date": "2021-04-14;2024-05-14", + "amenity": "charging_station", + "description": "OuestCharge - Diva Sp - Juvigne - Mairie;JUVIGNE - Place De La Mairie", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "ref:EU:EVSE": "FRS53E53123001;FRS53P53123A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03395000000, + 48.23082100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66046001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CAUDIES DE FENOUILLEDE - D20", + "network": "Reveo", + "start_date": "2022-02-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37607300000, + 42.81216000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE010402;FRIENE010401", + "start_date": "2024-01-09", + "network": "Dogneville", + "description": "Dogneville", + "ref": "FRIENE010402;FRIENE010401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45166200000, + 48.21532200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "CHATEAUNEUF D ILLE ET VILAINE - 5 rue des marais ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "ref:EU:EVSE": "FRS35P35070001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92895300000, + 48.55989500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-CENERI-001", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61372A", + "description": "ST CENERI LE GEREI - Le Bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05390700000, + 48.37940140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW;3 kW", + "ref": "368956", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VDSBUE", + "opening_hours": "Th,Tu 13:30-15:30,Tu,Th 09:00-12:00", + "ref:EU:EVSE": "FRFR1P8635008713484936611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26333000000, + 50.19556800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "vieilletoul;46540", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-10-05", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "description": "Roulez Électrique En Haute-Garonne/vieilletoul;Vieille-Toulouse, Ecole", + "ref:EU:EVSE": "FRS31PVIEILLETOUL", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44440000000, + 43.52590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE92044009", + "start_date": "2023-08-26", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC", + "description": "LEVALLOIS PERRET - Parking Wilson Planchette " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28832600000, + 48.89454100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2022-09-22", + "capacity": "1", + "ref:EU:EVSE": "FRCG0E000405", + "network": "LE CAFE DU PORT - 44210", + "description": "LE CAFE DU PORT - 44210", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCG0E000405", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09866100000, + 47.11509600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE17112;FRM06PNICE17111", + "ref": "FR*SOD*S*NICE*171*1*_*_", + "start_date": "2022-07-12", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - SQUARE MUSSO", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29406400000, + 43.71672700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Pont-Du-Casse | Parking Centre Commercial", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "ref": "7ab87d14-7190-5b06-9240-b04abec5cad8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67833000000, + 44.23048800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-09-29", + "ref:EU:EVSE": "FRSIGPSIGE3121;FRSIGPSIGE3111;FRSIGPSIGE3131;FRSIGPSIGE3141;FRSIGPSIGE3151;FRSIGPSIGE3161", + "amenity": "charging_station", + "capacity": "1", + "description": "SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON", + "ref": "FR*SOD*S*SIGE*31*6*_*_;FR*SOD*S*SIGE*31*5*_*_;FR*SOD*S*SIGE*31*1*_*_;FR*SOD*S*SIGE*31*2*_*_;FR*SOD*S*SIGE*31*3*_*_;FR*SOD*S*SIGE*31*4*_*_", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22708600000, + 48.78746800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "ref": "226380;226381", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Bump - Super U - Saint Aignan", + "ref:EU:EVSE": "FRBMPS226380;FRBMPS226381", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36177330000, + 47.26010420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3174EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3174EVCP01", + "description": "RAISMES Jaures" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47752100000, + 50.39218400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "8b788a0e-cb24-58f2-a936-c85994160437", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW", + "description": "MOBIVE | Brive | Parking Marcellin Roche" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52960100000, + 45.16476600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Savigny-sur-Orge - Avenue Joyeuse", + "ref": "d6f36926-0818-5072-918d-e6517c07ea3c", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36036100000, + 48.68958300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING LAFONT - LE BOUSCAT", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP33110BCTLAF0NT", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "start_date": "2022-11-21", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59703700000, + 44.86645000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3449EVCP01;LFR3449EVCP02", + "charging_station:output": "50 kW;120 kW", + "ref": "LFR3449EVCP01;LFR3449EVCP02", + "description": "GRAULHET Ravari", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97999800000, + 43.76789500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "amenity": "charging_station", + "charging_station:output": "200 kW;22 kW", + "capacity": "3", + "network": "Proviridis", + "description": "Proviridis/659e50d10d885d36d37c890d", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPVDP914745835202240883", + "operator:email": "data.gouv@proviridis.fr", + "operator": "Proviridis | FR*PVD", + "ref": "1004118" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61480100000, + 43.47000900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/LLSN02KU99RGJG", + "ref": "1017102", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP8642740568749576339" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81721400000, + 45.27651000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP57487A", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP57487A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Domaine de la Résidence" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12472559828, + 49.08031588264 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Saint-Malo Galere P10 - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E35288002", + "network": "EFFIA France", + "start_date": "2023-10-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02096100000, + 48.65178900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "ref:EU:EVSE": "FRDRVPCRFMKT033001", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "description": "Carrefour Market - Cusset", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44734300000, + 46.13874600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LLTHE8SN317G08;1151511", + "description": "Réseau eborn/LLTHE8SN317G08;Apprieu, Place de la Buissière", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNP2779208034686131215;FREBNPLLTHE8SN317G08", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50437300000, + 45.39922900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*503*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "description": "INTERMARCHE - PATAY", + "start_date": "2022-09-30", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR50312;FROTHPOTHR50311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69206400000, + 48.04560800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Chargepoint", + "start_date": "2023-05-03", + "ref": "f566c0dd-5e8a-4911-b620-a1e97770e222", + "amenity": "charging_station", + "capacity": "4", + "owner:ref:FR:SIREN": "877380394", + "description": "BRANFERE, LE GUERNO", + "network": "Chargepoint", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator:email": "support.eu@chargepoint.com", + "ref:EU:EVSE": "FRCPIE67123751" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40000000000, + 47.59000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/F5SXUNWSSF", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2940955914672009874", + "ref": "706088", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93608300000, + 49.16883600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-20", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRUBIE10091088;FRUBIE10052325", + "charging_station:output": "22 kW", + "description": "Rue Victor Petitpas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21609400000, + 49.58201800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ZQ91ECZ6OH", + "ref:EU:EVSE": "FRFR1P6579326913052077846", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "741066", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85401500000, + 49.49181000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "TOULOUSE - Rue de Sébastopol", + "network": "CPO Alizé Liberté Public", + "ref:EU:EVSE": "FRTLSE31555041" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42901900000, + 43.61195900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/WDHVUHHABK", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6518596299161888924", + "ref": "446594" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58357900000, + 45.29923300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/S0QPPXPGJG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P2175438297486202102", + "ref": "461928" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75312100000, + 49.00250200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-01-31", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "COMPOLIBAT - Parking Salle des fêtes", + "ref:EU:EVSE": "FRS12E12071001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19673700000, + 44.37742100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "815388", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA3P3717893013034363463", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA3", + "charging_station:output": "7.4 kW", + "description": "WAAT/FRWA3L0DARYOWZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66271200000, + 44.95230400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2021-04-30;2024-04-03", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS49E49206001;FRS49P49206A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "MONTFAUCON-MONTIGNE - Place Saint-Maurice;OuestCharge - Diva Sp - Montfaucon-Montigne - Saint-Maurice" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12546800000, + 47.09681400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref": "65024", + "capacity": "3", + "ref:EU:EVSE": "FRS70PHERICOURTBRO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIED70/Hericourtbro" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76207000000, + 47.57630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "description": "OXELAERE - Rue de la Mairie", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E5945400", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47602340000, + 50.78888880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - VEIGNE - Les Gués", + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "start_date": "2021-04-02", + "amenity": "charging_station", + "ref": "FRS37E220301;FRS37E214040", + "network": "MODULO - VEIGNE - Les Gués", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E220301;FRS37E214040", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71510800000, + 47.30522300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "description": "SIEG63 - ePremium - Murol - Jassaguet", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS63P63247A", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94171910000, + 45.57272390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2024-05-03", + "description": "ECUELIN - Rue de la Louveterie", + "ref:EU:EVSE": "FRH02E59188001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90826100000, + 50.19299700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "BEYCHAC-ET-CAILLAU - ROUTE DU FILEUR", + "start_date": "2023-07-03", + "ref": "FR*SOD*S*MB33*174*2*_*_", + "network": "MOBIVE - SDEEG 33", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "253303473", + "socket:type2_combo:output": "120 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRS33PMB3317421;FRS33PMB3317422;FRS33PMB3317423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36969900000, + 44.88255500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-23;2021-05-17", + "charging_station:output": "7 kW", + "description": "CHEVILLY-LARUE - Rue de Bretagne", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94021001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36281890000, + 48.77483830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRM06PNICE28812;FRM06PNICE28811", + "network": "NICE RP", + "start_date": "2024-06-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - SAINTE MARGUERITE", + "ref": "FR*SOD*S*NICE*288*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21709000000, + 43.67748800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "75c38cd1-a666-5af9-886f-622d31ba408b", + "description": "MOBIVE | Le Buisson de Cadouin | Place Mianne", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91253500000, + 44.84573700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSIGPSIGE41511;FRSIGPSIGE41512", + "capacity": "2", + "amenity": "charging_station", + "description": "SIGEIF - 22 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT", + "network": "SIGEIF", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*415*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2023-05-30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43360000000, + 48.80911000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-05", + "ref:EU:EVSE": "FRC01E76540019", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ROUEN - Place Martin Luther King" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08760360000, + 49.44153470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;50 kW;180 kW", + "socket:type2_combo:output": "50 kW;180 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "TOURNUS Mouron", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3453EVCP03;LFR3453EVCP01;LFR3453EVCP02", + "ref:EU:EVSE": "LFR3453EVCP03;LFR3453EVCP01;LFR3453EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90524800000, + 46.57033500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Artiguelouve | Place de la Mairie", + "ref": "87338fce-0e6b-52cc-9c8e-2089ecb2c2ae", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47550300000, + 43.31702000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "a49155ab-7bfd-5add-9db7-1e8ddd11cef8", + "capacity": "2", + "description": "MERINDOL - Rue des Écoles", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20253800000, + 43.75439700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2023-12-11", + "ref:EU:EVSE": "FRA05E78003002", + "description": "ABLIS - Aire de Jeux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83849000000, + 48.51478000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "ref": "LFR4011EVCP04;LFR4011EVCP02;LFR4011EVCP01;LFR4011EVCP03", + "charging_station:output": "120 kW;22 kW", + "description": "BESSINES - Rochelle", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR4011EVCP04;LFR4011EVCP02;LFR4011EVCP01;LFR4011EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48768000000, + 46.30541300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-10", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMRXB", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché - Rouxmesnil-Bouteilles", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09359557884, + 49.91423511441 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGMFXMF", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Réseau eborn/GMFXMF;Saint-Andre-Le-Puy, Parking rue Victor Hugo", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "85958;GMFXMF", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25891000000, + 45.64660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "ref": "FRETIP89025A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Le Relais Fleuri Avallon", + "ref:EU:EVSE": "FRETIP89025A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96846341944, + 47.49757407237 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "12", + "start_date": "2023-08-03;2023-01-08", + "opening_hours": "24/7", + "description": "Cora - Sainte-Marie-aux-Chênes", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PCORSMC", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99339800000, + 49.19705700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2024-06-28;2024-07-10", + "charging_station:output": "50 kW;22.08 kW", + "description": "Carrefour Market Saint-Florent-Sur-Cher", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCRFMKT184001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25242700000, + 46.99649500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRESEPS42186AD", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref": "FRESEPS42186AD", + "charging_station:output": "22 kW", + "start_date": "2022-03-22", + "description": "SEMOB Rive de Gier Pasteur", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62337700000, + 45.53135000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPIZIG16561;FROTHPIZIG16551;FROTHPIZIG16541;FROTHPIZIG16531;FROTHPIZIG16521;FROTHPIZIG16511", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "MARCOULE", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-01-12", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IZIG*165*6*_*_;FR*SOD*S*IZIG*165*5*_*_;FR*SOD*S*IZIG*165*4*_*_;FR*SOD*S*IZIG*165*3*_*_;FR*SOD*S*IZIG*165*2*_*_;FR*SOD*S*IZIG*165*1*_*_", + "operator:email": "sav@izivia.com", + "network": "CYCLIFE-EV100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70296000000, + 44.12590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6833405", + "network": "BORNE ROCHEUX STATION 1", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "description": "BORNE ROCHEUX STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6833405", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21558600000, + 47.86248300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2617693374362731793", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/PZOVLMKQWT", + "ref": "782400", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21387800000, + 47.96218500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "ref:EU:EVSE": "FRVIAP123495", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL ORLY CHEVILLY MARCHE INTERNATIONAL", + "start_date": "2024-07-11", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854000000, + 48.76593000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5920022380763582413", + "ref": "1052496", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSX2R5ZO27T9R", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10995000000, + 42.52002000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTSLP16321", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "capacity": "20", + "opening_hours": "24/7", + "description": "Tesla Supercharger Avallon, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98431294000, + 47.50207906000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/PRMTMC6S3N", + "ref": "674246", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5971392902577948964", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85613600000, + 44.94780000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "MobiSDEC/PFMKY61J2Z", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P3696980292132263574", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457530" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47295100000, + 48.98638200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "capacity": "2", + "amenity": "charging_station", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS13PUEZC9A2ZNH", + "operator:email": "support@evzen.com", + "description": "Chateaurenard, Gare Routière - Salle Du Réal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85299800000, + 43.88193500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P4658535842179444881", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA5LRDN1BLON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1127979", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53440900000, + 49.34699600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200083640", + "start_date": "2017-04-27", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "AVRANCHES - Place Valhubert", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS50P50025003", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36323360000, + 48.68678830000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-22", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS81E8113900211;FRS81E8113900212;FRS81E8113900221;FRS81E8113900222", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "description": "LAUTREC - Avenue de Vielmur - Aire de Camping car", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12985915015, + 43.70338646809 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF059053", + "socket:type2_combo:output": "150 kW", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681656;531681657", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "ref": "FRHPCPNF059053", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS MARECHAL LECLERC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32480000000, + 48.82060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS48E48031001", + "network": "Reveo", + "description": "BRION - D12", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04587500000, + 44.77160200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Pluméliau-bieuzy - Place Ernest le Moine", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PWHRADG", + "start_date": "2016-12-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.06502400000, + 47.98127500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "SIN-LE-NOBLE - Place Jean Jaures", + "start_date": "2019-12-03", + "ref:EU:EVSE": "FRH04E59569003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11281300000, + 50.36433000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2024-01-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS29E29251004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT POL DE LÉON - Maison des services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98936600000, + 48.68228400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PXAEEUR", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref": "24749", + "description": "Mobilité électrique 56/XAEEUR", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15967000000, + 47.83420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-06", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "LOUDUN MAIRIE-1-1;LOUDUN MAIRIE-1-2", + "ref:EU:EVSE": "FRLMSE12346051861;FRLMSE12346051852;FRLMSE12346051851;FRLMSE12346051862", + "opening_hours": "24/7", + "ref": "B056", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08266000000, + 47.01023100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2023-05-11", + "amenity": "charging_station", + "ref": "599118", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "description": "Metropolis - Citadine - Le Blanc-Mesnil - Claude Terrasse;Métropolis/FR*MGP*P93007*A", + "ref:EU:EVSE": "FRMGPP93007A", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46251800000, + 48.93778700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*94*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE9412;FRSIGPSIGE9411", + "capacity": "2", + "description": "SIGEIF - 2 ROUTE DU PLESSIS - CHENNEVIERES-SUR-MARNE", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-01-07", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54674268097, + 48.79950526176 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Atlante/FRATLFR00334", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "1011771", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP8785657966907558720", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25839800000, + 45.52217800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "description": "Howdens Livry Gargan", + "amenity": "charging_station", + "start_date": "2023-10-02", + "ref:EU:EVSE": "FRLMSE1000081834", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54805600000, + 48.92912000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Nay | Place du 8 Mai 1945", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "6617823f-ea66-53ee-ab3b-3466c041406d" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26088900000, + 43.17839800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "LA ROCHE-SUR-YON - Rue Newton - Parking Des Oudairies", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "ref:EU:EVSE": "FRS85E85191008", + "start_date": "2024-05-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40609000000, + 46.67044100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "description": "ANTIBES", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSANTIB", + "network": "Carrefour Energies", + "start_date": "2023-07-31", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08915000000, + 43.60448000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-12", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "description": "IZIVIA | CEYRESTE - PLACE DES HEROS", + "owner:ref:FR:SIREN": "912043676", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIZMPMAMP321;FRIZMPMAMP322", + "network": "IZIVIA", + "socket:type2_combo:output": "24 kW", + "ref": "FR*SOD*S*MAMP*3*2*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63122600000, + 43.21363200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-12-06", + "ref:EU:EVSE": "FRPD1PMATCUQ", + "opening_hours": "24/7", + "description": "Match - Cucq", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62437175355, + 50.50666208729 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Le Versoud, Rue des Deymes", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPRDH1HYPVXW", + "ref": "RDH1HYPVXW", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2022-03-28", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86119310000, + 45.21769000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP8500092614334306117", + "ref": "1162236", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "network": "EVzen", + "description": "EVzen/2EB67B1D-D633-4D35-9CF5-8DE91C88DD9C", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19596800000, + 48.29514300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Basic Fit - Villers-Cotterêts", + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PHOLVIL", + "start_date": "2024-03-29", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10310826344, + 49.23873113452 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/QNMZFMYOCR;Siaugues-Sainte-Marie, Place du Général Lafayette", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "QNMZFMYOCR;435234", + "start_date": "2021-03-10", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP8014399629435805078;FREBNPQNMZFMYOCR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63100000000, + 45.09305500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "start_date": "2023-10-23", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP26360A", + "description": "e-Totem - Domaine Eyguebelle", + "ref:EU:EVSE": "FRETIP26360A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78918518259, + 44.41984630223 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-06-14", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*193*2*_*_;FR*SOD*S*OTHR*193*1*_*_;FR*SOD*S*OTHR*193*3*_*_;FR*SOD*S*OTHR*193*4*_*_", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR19341;FROTHPOTHR19331;FROTHPOTHR19321;FROTHPOTHR19311", + "description": "SUPER U - GERTWILLER", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47733400000, + 48.41498700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-07-06", + "owner:ref:FR:SIREN": "200056232", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "description": "BURES - GRANDE MAISON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPSPCAPS2111;FRCPSPCAPS2112", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*CAPS*21*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15942300000, + 48.69694900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/CMYWWV4CUF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4721780974076766864", + "ref": "453993", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68450000000, + 46.65380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "description": "ENRGETICA/e886efc9-66a3-43f9-956b-04e1da5367c2", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "800040", + "network": "ENRGETICA", + "ref:EU:EVSE": "FRVISP3485322722333300344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33772400000, + 43.31092900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "466092", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5787582839516562632", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LUEONUMUAN", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63713900000, + 47.68244300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:45-19:00,Sa 08:30-12:00,Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "description": "ABB T54 Audi Ville-la-Grand", + "capacity": "2", + "amenity": "charging_station", + "ref": "1000081550", + "network": "SOWATT SOLUTIONS", + "charging_station:output": "50 kW;22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1000081550", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27255200000, + 46.20196600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P1271754653362929520", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "752409", + "network": "Freshmile France", + "opening_hours": "We,Fr,Th,Sa,Tu,Mo 08:30-20:30", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GFBWLWVA0T" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41048700000, + 43.26390600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "amenity": "charging_station", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Renault - Besançon", + "start_date": "2022-07-28", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT250001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99484200000, + 47.24278000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ILLIERS-COMBRAY - Pl. Maunoury", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E134925", + "ref:EU:EVSE": "FRS28E134925", + "network": "MODULO - ILLIERS-COMBRAY - Pl. Maunoury" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24451100000, + 48.29894200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-17", + "operator": "La jardinerie d'aveze sarl", + "amenity": "charging_station", + "capacity": "1", + "ref": "2e0e3191-363c-47b3-b3b4-975a51ad1fa9", + "ref:EU:EVSE": "Non concerné", + "description": "Jardinerie d'Aveze", + "opening_hours": "Mo-Sa 09:30-12:00,Mo-Sa 14:00-18:30,Su 10:00-12:30,Su 14:30-18:30", + "charging_station:output": "22 kW", + "network": "Jardinerie d'Aveze", + "owner:ref:FR:SIREN": "479271074", + "operator:email": "contact@jardinerieaveze.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68000000000, + 48.23000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P1024745649644715382", + "ref": "39650", + "opening_hours": "24/7", + "description": "SDEA 10/RSAKTATWHB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73112300000, + 48.22172600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "network": "WAAT", + "description": "WAAT/FRWATLGOTGCXDM", + "ref:EU:EVSE": "FRWATP3419969661753720036", + "amenity": "charging_station", + "capacity": "1", + "ref": "709151", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92912200000, + 43.63812200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS50P505651", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "description": "SARTILLY BAIE BOCAGE - aire de covoiturage", + "start_date": "2018-02-07", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46712690000, + 48.76025900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "SOUAL - Impasse Des Clairs Logis", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8128900111;FRS81E8128900112;FRS81E8128900121;FRS81E8128900122", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-08-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12028789500, + 43.56084442100 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Montélimar Est 2", + "charging_station:output": "200 kW;50 kW;43 kW", + "description": "Montélimar Est 2", + "socket:type2_combo:output": "50 kW;200 kW", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE486172;FRIOYE486151;FRIOYE486152;FRIOYE486153;FRIOYE486171;FRIOYE486173;FRIOYE486174;FRIOYE486175;FRIOYE486176", + "ref": "FRIOYE486172;FRIOYE486151;FRIOYE486152;FRIOYE486153;FRIOYE486171;FRIOYE486173;FRIOYE486174;FRIOYE486175;FRIOYE486176", + "start_date": "2024-06-26", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78300600000, + 44.51460600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "start_date": "2024-03-26;2021-04-08", + "description": "OuestCharge - Diva Sp - Champigne - Muguet;CHAMPIGNE - Rue du Muguet", + "ref:EU:EVSE": "FRS49E49065001;FRS49P49065A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57004600000, + 47.66475900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PJEHPHU", + "description": "Mouv'Oise/JEHPHU", + "ref": "79534", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57219000000, + 49.15190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62119004", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BETHUNE - Place du Maréchal Foch" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63376500000, + 50.52950600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-08-19;2021-11-03", + "description": "MEJANNES LE CLAP - Parking Office Du Tourisme", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30164001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34955900000, + 44.22544500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/TZEHVV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "21899", + "ref:EU:EVSE": "FRS56PEUTTDT", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38440100000, + 47.80989400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B005", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-01-28", + "operator": "SOREGIES MOBILITES", + "description": "AVAILLES EN CHATELLERAULT-1-1;AVAILLES EN CHATELLERAULT-1-2", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346396541;FRLMSE12346396531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57998000000, + 46.75684000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref": "446927", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94079B", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "start_date": "2021-09-02", + "owner:ref:FR:SIREN": "885354860", + "description": "Métropolis/FR*MGP*P94079*B;Metropolis - Citadine - Villiers-sur-Marne - Dunant", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53511000000, + 48.82369100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "start_date": "2021-09-17", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*121*1*_*_", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE12112;FRSIGPSIGE12111", + "description": "SIGEIF - PLACE DE LA LIBERATION - LES PAVILLONS-SOUS-BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51808000000, + 48.90980600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-02", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MAUREPAS - Avenue du Cotentin", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRBE1E78383002", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93455600000, + 48.76498500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "operator": "NVH", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE1000121990;FRLMSE1000121989;FRLMSE1000121987;FRLMSE1000121986;FRLMSE1000121985;FRLMSE1000121983;FRLMSE1000121982;FRLMSE1000121981;FRLMSE1000121977;FRLMSE1000121976;FRLMSE1000121975;FRLMSE1000121974;FRLMSE1000121973;FRLMSE1000121978;FRLMSE1000121979;FRLMSE1000121980;FRLMSE1000121984;FRLMSE1000121988;FRLMSE1000121991;FRLMSE1000121992", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "917756819", + "description": "Gring HUB", + "ref": "0", + "start_date": "2023-01-19", + "operator:email": "supervision@nvh-france.fr", + "network": "BM92" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21000000000, + 48.78000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "251600060", + "description": "BARBEZIEUX-SAINT HILAIRE - PARKING JEAN MONNET;MOBIVE | Barbezieux-Saint Hilaire | Parking Jean Monnet", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "ref": "FR*SOD*S*MB16*5*1*_*_;810fab61-2fd0-5a30-89d9-144945fd0adc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2020-07-14", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref:EU:EVSE": "Non concerné;FRS16PMB16511;FRS16PMB16512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15303100000, + 45.47318600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE71CABA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-06-21", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "MARCHE AUX AFFAIRES - CHAUFFAILLES", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31275300000, + 46.20704000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSSARAN", + "start_date": "2023-02-01", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "895163609;895163608;895163610", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "SARAN", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88803900000, + 47.96079500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "BULLY LES MINES", + "operator:email": "bornes@lidl.fr", + "ref": "LFR3464EVCP02;LFR3464EVCP01;LFR3464EVCP03", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3464EVCP02;LFR3464EVCP01;LFR3464EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72198100000, + 50.44791100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM31E31488001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ST JEAN - Rue Des Roses", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50425800000, + 43.66584100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LMO4CYWQ7Z", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "30101", + "ref:EU:EVSE": "FREBNPLMO4CYWQ7Z" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38914700000, + 45.49077200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "674264", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P3861667541101178011", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/U335H3JLYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85619400000, + 44.94802900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "ref:EU:EVSE": "FRP07E75108004;FRP07E751080041;FRP07E751080042", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "26", + "start_date": "2021-11-03;2020-09-17;2020-09-07;2020-07-31;2021-11-30", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PARIS - George V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30007030000, + 48.87182480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPZQJLTS8LZQ", + "description": "Pierrevert, Place des Ferrages", + "ref": "ZQJLTS8LZQ", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74997320000, + 43.81097230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "1", + "description": "Road/6569cbb1ccf1ab001c2d14ad", + "ref:EU:EVSE": "FREFLP6148831274205976051", + "charging_station:output": "11 kW", + "operator:email": "roaming-dev@road.io", + "opening_hours": "Sa,Th,Mo,Tu,We,Su,Fr 08:00-18:00", + "operator": "Road | FR*EFL", + "ref": "978221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45601500000, + 47.18583600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "description": "Parking gare de Thionville - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E57672001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16647100000, + 49.35308800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-23", + "ref": "FRCPIE6609545;FRCPIE6609935", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6609545;FRCPIE6609935", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MANUTAN 16", + "operator:email": "info@chargepoint.com", + "network": "MANUTAN 16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46119500000, + 48.96753800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "description": "Sollies Pont, Parking Rezzonico;Réseau eborn/LDEIEAYDSL", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNLDEIEAYDSL;FREBNPLDEIEAYDSL", + "start_date": "2020-08-26", + "ref": "LDEIEAYDSL;244033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04028900000, + 43.19143400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P3236911076327902173", + "description": "WAAT/s570518", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1181757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23797400000, + 48.97875800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "387707", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/QPHCBREEPR", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4551774858879720908", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45470000000, + 46.83860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-20", + "opening_hours": "Mo 13:00-18:30,Tu-Fr 09:00-12:00,Tu-Fr 13:30-18:30,Sa 08:00-12:00", + "description": "GARAGE PLISSONNEAU - CAMPBON", + "ref": "FRTCBP00627", + "amenity": "charging_station", + "capacity": "1", + "operator": "TotalEnergies Marketing France", + "network": "PSA Agents France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP00627", + "owner:ref:FR:SIREN": "377638911", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96599482222, + 47.41092605168 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/YTUL8DKYPE", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6842635318013721870", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "466302", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43960000000, + 48.19754700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINNISSAN041001", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Nissan - Manosque", + "operator:email": "support@driveco.com", + "start_date": "2023-06-20", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80144300000, + 43.82406600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2904800", + "description": "Edern-Rue de la Libération" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97557400000, + 48.10456800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEA 10/D2FWMEF7HF", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "charging_station:output": "22 kW", + "opening_hours": "Fr,We,Mo,Tu,Th 17:00-23:45,Th,Tu,Fr,We 00:00-07:00,Su,Sa 00:00-23:45,Mo 00:00-05:00", + "ref:EU:EVSE": "FRS10P5569316718260862134", + "ref": "706055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05667000000, + 48.29276000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "483491890", + "ref:EU:EVSE": "FRZP1PEAC118068", + "opening_hours": "24/7", + "description": "Logis Hôtel l'Occitan - 11 kW", + "charging_station:output": "11 kW", + "ref": "c5f9b836-ecd7-48d4-93eb-24c2b2dde9f7", + "network": "Logis Hôtel l'Occitan", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89508680000, + 43.90557117000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "description": "Régie Services Energie/FR*RSE*P01424*A", + "ref:EU:EVSE": "FRRSEP01424A", + "capacity": "2", + "amenity": "charging_station", + "network": "Régie Services Energie", + "operator": "Régie Services Energie | FR*RSE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "481242" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96511100000, + 45.87513900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/cagnybarbusse", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64715", + "network": "FDE 80", + "ref:EU:EVSE": "FRS80PCAGNYBARBUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34641000000, + 49.85920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST19611;FRIZFPFAST19612;FRIZFPFAST19613", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - CALAIS COUBERTIN", + "ref": "FR*SOD*S*FAST*196*1*_*_", + "capacity": "3", + "start_date": "2024-07-24", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83482790000, + 50.95222520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44E44135001;FRS44E0440080;FRS44P44135A", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "LE POULIGUEN - Boulevard De La Libération;OuestCharge - Diva Sp - Le Pouliguen - Libération", + "start_date": "2021-04-22;2024-04-29;2024-04-18", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.43216800000, + 47.28265800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Balloy;BALLOY - Grande Rue", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77019A;FRS77E77019001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-08-11;2023-05-11", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH602FGPT3MJJY9A3TN0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14673100000, + 48.39879600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-07-09", + "ref:EU:EVSE": "FRGLYPLYON9921;FRGLYPLYON9911;FRGLYPLYON9931;FRGLYPLYON9941", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY309 - PATINOIRE BARABAN", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*99*3*_*_;FR*SOD*S*LYON*99*2*_*_;FR*SOD*S*LYON*99*1*_*_;FR*SOD*S*LYON*99*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86858400000, + 45.76246500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - LA CELLE SAINT AVANT - Cité de l'Hermitage", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LA CELLE SAINT AVANT - Cité de l'Hermitage", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E215837;FRS37E215838", + "ref": "FRS37E215837;FRS37E215838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60313761000, + 47.02086795000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PTGSHMS", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "21879", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/TGSHMS", + "opening_hours": "24/7", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48298000000, + 47.55560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "AGGLOMERATION MONTARGOISE - LOMBREUIL", + "ref": "FRG10P45185A", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-07-20", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P45185A", + "operator:email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - LOMBREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63116000000, + 47.94085600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Saint Jean d'Illac | Place de L’Eglise", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "37336f8d-55ea-54f2-b285-cdf66dd8bd51", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78059500000, + 44.81215300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE24012;FRSIGPSIGE24011", + "ref": "FR*SOD*S*SIGE*240*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-05-18", + "description": "SIGEIF - 23 RUE DE LA DIGUE - MAISONS-LAFFITTE", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15155400000, + 48.94385200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "description": "Move In Pure/HEWNUT", + "operator:email": "roaming@freshmile.com", + "ref": "21802", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "ref:EU:EVSE": "FRCN1PHEWNUT", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81432000000, + 45.20370000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P7724024057849327072", + "operator:email": "roaming@freshmile.com", + "ref": "477777", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/NYMVETIFEG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90327600000, + 49.37008500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "d1e6d446-fbbe-5294-bb4f-89f37bac84e7", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "description": "MOBIVE | Montendre | Place Raymond Paillé", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40638800000, + 45.28485600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 08:00-19:00", + "description": "Aqua Sénart 3 - Enceinte piscine - DRAVEIL", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSE1PSE91DBQA", + "start_date": "2021-08-31", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43134200000, + 48.68150800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "capacity": "2", + "description": "St-Remy-de-Provence, Place Du Général De Gaulle", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "241300375", + "network": "Simone", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRABAPVYUJSOBDFD", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82971100000, + 43.79294100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;120 kW", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "charging_station:output": "120 kW;50 kW;22 kW", + "ref": "LFR3273EVCP03;LFR3273EVCP01;LFR3273EVCP02", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3273EVCP03;LFR3273EVCP01;LFR3273EVCP02", + "description": "GAP Embrun" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10126800000, + 44.56899500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "start_date": "2023-03-02", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM38E38185021", + "description": "GRENOBLE - Alpexpo - Rue Henri Barbusse (CITIZ);GRENOBLE - Alpexpo - Rue Henri Barbusse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73625500000, + 45.15697000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRA05E78601001", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "SONCHAMP - Parking Ecole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87720300000, + 48.57609250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6576143545447137945", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "22 kW;75 kW;63 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "75 kW;63 kW", + "operator": "Freshmile | FR*FR1", + "ref": "472278", + "description": "Freshmile France/UWENEDCQPA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79588100000, + 48.57091700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PACCMAR", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-03-20", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "description": "Ibis Budget - Marseille La Valentine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47474057361, + 43.30037538355 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPBVSE9OOBFL", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "30383;BVSE9OOBFL", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Réseau eborn/BVSE9OOBFL;Embrun, Chemin du Plan d'Eau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48182900000, + 44.55100800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRELCPNIOLE", + "operator:email": "help@electra.com", + "description": "Niort - E.Leclerc Centre", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2023-04-17", + "network": "ELECTRA", + "socket:type2_combo:output": "300 kW;225 kW", + "opening_hours": "24/7", + "charging_station:output": "300 kW;225 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46915400000, + 46.33065500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "7", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E93005002", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Aulnay-Sous-Bois Abrioux - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49769000000, + 48.92828000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6660505", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6660505", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "AJM ENERGIE BUROCLUB", + "description": "AJM ENERGIE BUROCLUB", + "start_date": "2022-12-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55789300000, + 44.31172400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP4991760182636265910;FRECHPIMSALVK01H", + "ref": "694169;IMSALVK01H", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "start_date": "2022-12-13", + "description": "Montvalezan, Parking des Pistes;Easy Charge/IMSALVK01H", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84809100000, + 45.62835900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX2001", + "ref": "FR*V75*PPX20*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445", + "description": "Paris | Rue de la Plaine 25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40196450000, + 48.85006050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "529973", + "description": "Freshmile France/FD7OZRUY0H", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P3899872554807466099" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96464500000, + 42.57583800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX0304", + "charging_station:output": "7 kW;3 kW", + "description": "Paris | Rue Perrée 18", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*PPX03*04", + "start_date": "2021-08-26", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36050300000, + 48.86502000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLHUAVK27417KU", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3352981005473166017", + "operator": "Freshmile | FR*FR1", + "ref": "892047" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12781100000, + 49.27334100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 08:00-12:00, Mo 13:00-18:00, Tu 08:00-12:00, Tu 13:00-18:00, We 08:00-12:00, We 13:00-18:00, Th 08:00-12:00, Th 13:00-18:00, Fr 08:00-12:00, Fr 13:00-17:00", + "network": "DRIVECO", + "start_date": "2020-12-18", + "capacity": "2", + "amenity": "charging_station", + "description": "Toufflin Witry-lès-Reims", + "ref:EU:EVSE": "FRSSDPTOUFFLINMTP514201", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13250400000, + 49.30066700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22263001", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Le Quiou-Place de l'église", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00580000000, + 48.35060100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PEZENS - Avenue De L'Occitanie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS11E11288001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26894450000, + 43.25386040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZTLE22AC55371;FRZTLE22AC55370;FRZTLE22AC55366;FRZTLE22AC55367", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES;TOYOTA LEXUS NIMES - GARAGE VEYRUNES ", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-02-24", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:30; Mo-Fr 09:00-19:00,Sat 09:00-18:30", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref": "55366;55367;55370;55371", + "owner:ref:FR:SIREN": "380655548", + "description": " Toyota - Nimes - 22kW AC ;Toyota - Nimes - 22kW AC ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39148400000, + 43.84197100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521453", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P7655710843376806615", + "description": "SDEA 10/LY7DK5AD7N", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14927900000, + 48.53490200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS80PHANGESTMAIRIE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "64652", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "FDE 80/hangestmairie", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60418000000, + 49.75470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - ARGELES-SUR-MER", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref": "FR*SOD*S*FAST*71*1*_*_;FR*SOD*S*FAST*71*2*_*_", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref:EU:EVSE": "FRIZFPFAST7112;FRIZFPFAST7111;FRIZFPFAST7113;FRIZFPFAST7121;FRIZFPFAST7122;FRIZFPFAST7123", + "owner:ref:FR:SIREN": "951478437", + "charging_station:output": "180 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00719331277, + 42.55868718308 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-19;2024-04-12", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "OuestCharge - Diva Sp - Les Moutiers-En-Retz - Source;LES MOUTIERS-EN-RETZ - Bis Rue De La Source", + "ref:EU:EVSE": "FRS44P44106A;FRS44E44106001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99919500000, + 47.06458900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marchemoret;MARCHEMORET - Rue Du Sac", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77273A;FRS77E77273001", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61NTEXBAEVC7N8XSSE", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-03;2016-02-23", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77195900000, + 49.04963700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "GreenYellow Shift Mobility", + "charging_station:output": "22 kW;180 kW", + "description": "GreenYellow Shift Mobility/95", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGYMP1564304213731144417", + "operator": "GreenYellow | FR*GYM", + "socket:type2_combo:output": "180 kW;22 kW", + "ref": "1138425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00466100000, + 43.14014500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BLERE - Chardonnerets", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BLERE - Chardonnerets", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E221298;FRS37E221286", + "ref:EU:EVSE": "FRS37E221298;FRS37E221286" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99556400000, + 47.31976700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MODULO - BAR LE DUC - Rue de Couchot", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - BAR LE DUC - Rue de Couchot", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-09-07", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66237;FRS55E66236", + "ref": "FRS55E66237;FRS55E66236" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15970700000, + 48.77639400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON11921;FRGLYPLYON11911;FRGLYPLYON11912;FRGLYPLYON11922", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "start_date": "2021-10-15", + "ref": "FR*SOD*S*LYON*119*2*_*_;FR*SOD*S*LYON*119*1*_*_", + "description": "LY503 - POINT DU JOUR", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80146700000, + 45.75609300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "network": "bodemer auto cherbourg", + "ref:EU:EVSE": "FRMBZEYBDLN", + "description": "bodemer auto cherbourg", + "ref": "4e10203f-fd3c-4b9a-be19-e3f3e620c9c7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59155800000, + 49.63421200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPCORINASSETMANAGEMENT", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "description": "Géant Casino - Mezzavia", + "opening_hours": "Mo 07:30-20:00, Tu 07:00-20:00, We 07:30-20:00, Th 07:30-20:00, Fr 07:30-20:00, Sa 07:30-20:00, Su 07:30-12:30", + "start_date": "2018-03-30", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.77721000000, + 41.94940200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6562395", + "start_date": "2023-10-04", + "amenity": "charging_station", + "capacity": "1", + "network": "SUPER U GUEMENE STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRCPIE6562395", + "operator:email": "info@chargepoint.com", + "description": "SUPER U GUEMENE STATION 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83798100000, + 47.63122200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRLE2P5527416868936588449", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "description": "Leclerc/Q6MEVWHEHS", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446792" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143700000, + 43.18566800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS33PMB3313812;FRS33PMB3313811;Non concerné", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "description": "SAINT-PHILIPPE-DAIGUILHE - CENTRE BOURG;MOBIVE | Saint-Philippe-D'Aiguilhe | Centre Bourg", + "owner:ref:FR:SIREN": "253303473", + "ref": "FR*SOD*S*MB33*138*1*_*_;611a3120-b5da-55ed-b623-6c933eee8306", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03137900000, + 44.91411200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "description": "Bondoufle - Rue Charles de Gaulle", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1fa3100d-3941-5055-b68a-66dbab26cee9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38363400000, + 48.61732500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO0000121", + "description": "Allego NISSAN Bourg en Bresse", + "amenity": "charging_station", + "capacity": "1", + "network": "Allego NISSAN Bourg en Bresse", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "start_date": "2022-08-26", + "ref:EU:EVSE": "FRALLEGO0000121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23213916000, + 46.22465654000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR2657EVCP03", + "description": "BREST PLOUZANE", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2657EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79560260000, + 47.66879280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "COLOMARS - PARKING FORT CAZAL", + "start_date": "2019-12-30", + "ref:EU:EVSE": "FRM06PNICE7812;FRM06PNICE7811", + "ref": "FR*SOD*S*NICE*78*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22334800000, + 43.76525600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "ref": "FR*SOD*S*WIIZ*2*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ212;FRA16PWIIZ211", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "ANTIBES PLACE GENERAL DE GAULLE", + "start_date": "2018-01-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12067700000, + 43.58011600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "559667", + "opening_hours": "24/7", + "description": "Freshmile France/XVWJDFBNAT", + "ref:EU:EVSE": "FRFR1P803657701184846061", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78061800000, + 48.60050700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Mr. Bricolage - L'Arbresle", + "amenity": "charging_station", + "capacity": "3", + "ref:EU:EVSE": "FRPD1PMBRARB", + "opening_hours": "24/7", + "start_date": "2023-07-01", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60582070000, + 45.82578930000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPGUF6TXRR70;FREBNP8972962796108848714", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref": "GUF6TXRR70;741090", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/GUF6TXRR70;Bandol, parking de la Cale", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75188200000, + 43.13348100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP2243655917505221418", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "CARF - Bornes Publiques/816CEDC2-FF5E-4942-B617-CD0569448D2F", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref": "593330" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49787200000, + 43.80660500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "NANCY - Place Carnot", + "ref:EU:EVSE": "FRP07E543950051;FRP07E54395005;FRP07E543950052", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "20", + "start_date": "2023-09-27;2022-11-29;2023-07-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17822980000, + 48.69352790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/JYATAX;Chêne-En-Semine, ZA de la Croisée", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPJYATAX", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref": "JYATAX;75191" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86430000000, + 46.06090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "network": "Road", + "amenity": "charging_station", + "opening_hours": "Fr,Su,Sa,Tu,Th,We,Mo 08:00-18:00", + "ref:EU:EVSE": "FREFLP6874118201415042801", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "description": "Road/661e33c5734faa001c73a3b4", + "charging_station:output": "7.4 kW", + "ref": "1063629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77703400000, + 48.85635400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "start_date": "2023-04-07", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Première Classe Dunkerque St-Pol", + "ref:EU:EVSE": "FRVIAP121004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33632300000, + 51.02225400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/RBZ1ZLYPLQ", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4957466826487001408", + "ref": "786975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02754800000, + 42.77631000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "start_date": "2021-10-12", + "amenity": "charging_station", + "description": "Paris | Avenue de la République 5", + "ref": "FR*V75*PPX11*14", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1114", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36784000000, + 48.86661000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "120 kW;60 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "Freshmile/XHKFRPJTZC;BONSON - Mairie", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "capacity": "2;4", + "network": "LIDL;Freshmile", + "ref": "574553;LFR3938EVCP01;LFR3938EVCP02", + "charging_station:output": "120 kW;22 kW;60 kW", + "ref:EU:EVSE": "FRFR1P8469239327675497696;LFR3938EVCP01;LFR3938EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21757200000, + 45.52337700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hôtel AKENA - Nantes", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPHOTELAKENA440001", + "amenity": "charging_station", + "start_date": "2021-11-12", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54106300000, + 47.16035100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "ref:EU:EVSE": "FRS27PBRETEUILLAFITTE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "start_date": "2016-02-15", + "network": "SIEGE27", + "description": "900038", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91343200000, + 48.83591200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SICECO/FR*S21*P21292*B", + "amenity": "charging_station", + "ref": "180377", + "network": "SICECO", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS21P21292B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21940500000, + 47.24199600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "RENNEMOULIN - Centre", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78518001", + "start_date": "2023-08-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04295000000, + 48.83321000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*97*6*_*_;FR*SOD*S*QPRK*97*55*_*_;FR*SOD*S*QPRK*97*54*_*_;FR*SOD*S*QPRK*97*50*_*_;FR*SOD*S*QPRK*97*48*_*_;FR*SOD*S*QPRK*97*45*_*_;FR*SOD*S*QPRK*97*43*_*_;FR*SOD*S*QPRK*97*42*_*_;FR*SOD*S*QPRK*97*41*_*_;FR*SOD*S*QPRK*97*40*_*_;FR*SOD*S*QPRK*97*38*_*_;FR*SOD*S*QPRK*97*35*_*_;FR*SOD*S*QPRK*97*30*_*_;FR*SOD*S*QPRK*97*29*_*_;FR*SOD*S*QPRK*97*28*_*_;FR*SOD*S*QPRK*97*26*_*_;FR*SOD*S*QPRK*97*25*_*_;FR*SOD*S*QPRK*97*24*_*_;FR*SOD*S*QPRK*97*23*_*_;FR*SOD*S*QPRK*97*17*_*_;FR*SOD*S*QPRK*97*16*_*_;FR*SOD*S*QPRK*97*14*_*_;FR*SOD*S*QPRK*97*11*_*_;FR*SOD*S*QPRK*97*10*_*_;FR*SOD*S*QPRK*97*1*_*_;FR*SOD*S*QPRK*97*12*_*_;FR*SOD*S*QPRK*97*13*_*_;FR*SOD*S*QPRK*97*15*_*_;FR*SOD*S*QPRK*97*18*_*_;FR*SOD*S*QPRK*97*19*_*_;FR*SOD*S*QPRK*97*20*_*_;FR*SOD*S*QPRK*97*2*_*_;FR*SOD*S*QPRK*97*21*_*_;FR*SOD*S*QPRK*97*22*_*_;FR*SOD*S*QPRK*97*27*_*_;FR*SOD*S*QPRK*97*3*_*_;FR*SOD*S*QPRK*97*31*_*_;FR*SOD*S*QPRK*97*32*_*_;FR*SOD*S*QPRK*97*33*_*_;FR*SOD*S*QPRK*97*34*_*_;FR*SOD*S*QPRK*97*36*_*_;FR*SOD*S*QPRK*97*37*_*_;FR*SOD*S*QPRK*97*39*_*_;FR*SOD*S*QPRK*97*4*_*_;FR*SOD*S*QPRK*97*44*_*_;FR*SOD*S*QPRK*97*46*_*_;FR*SOD*S*QPRK*97*47*_*_;FR*SOD*S*QPRK*97*49*_*_;FR*SOD*S*QPRK*97*5*_*_;FR*SOD*S*QPRK*97*51*_*_;FR*SOD*S*QPRK*97*52*_*_;FR*SOD*S*QPRK*97*53*_*_;FR*SOD*S*QPRK*97*7*_*_;FR*SOD*S*QPRK*97*8*_*_;FR*SOD*S*QPRK*97*9*_*_", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-05;2023-01-18;2023-01-19", + "ref:EU:EVSE": "FRQPKPQPRK9791;FRQPKPQPRK9781;FRQPKPQPRK9751;FRQPKPQPRK97501;FRQPKPQPRK97481;FRQPKPQPRK97461;FRQPKPQPRK97441;FRQPKPQPRK97411;FRQPKPQPRK97391;FRQPKPQPRK97381;FRQPKPQPRK97371;FRQPKPQPRK97351;FRQPKPQPRK97341;FRQPKPQPRK97291;FRQPKPQPRK97281;FRQPKPQPRK97261;FRQPKPQPRK97251;FRQPKPQPRK97231;FRQPKPQPRK97191;FRQPKPQPRK97161;FRQPKPQPRK97121;FRQPKPQPRK9711;FRQPKPQPRK97101;FRQPKPQPRK97111;FRQPKPQPRK97131;FRQPKPQPRK97141;FRQPKPQPRK97151;FRQPKPQPRK97171;FRQPKPQPRK97181;FRQPKPQPRK97201;FRQPKPQPRK9721;FRQPKPQPRK97211;FRQPKPQPRK97221;FRQPKPQPRK97241;FRQPKPQPRK97271;FRQPKPQPRK97301;FRQPKPQPRK9731;FRQPKPQPRK97311;FRQPKPQPRK97321;FRQPKPQPRK97331;FRQPKPQPRK97361;FRQPKPQPRK97401;FRQPKPQPRK9741;FRQPKPQPRK97421;FRQPKPQPRK97431;FRQPKPQPRK97451;FRQPKPQPRK97471;FRQPKPQPRK97491;FRQPKPQPRK97511;FRQPKPQPRK97521;FRQPKPQPRK97531;FRQPKPQPRK97541;FRQPKPQPRK97551;FRQPKPQPRK9761;FRQPKPQPRK9771", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "network": "QPARK", + "operator:email": "sav@izivia.com", + "description": "QPARK - CHARTRES - GARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48119500000, + 48.44978800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "ref": "706205", + "description": "WAAT/FRWATLFQCOVHR8", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRWATP1093930377292939964", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88235500000, + 43.58037500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-05-21", + "network": "IONITY GMBH", + "capacity": "5", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "description": "IONITY Montbartier", + "ref:EU:EVSE": "FRIONE421500", + "charging_station:output": "350 kW", + "ref": "FRIONE421500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89451500000, + 45.88437000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS51E70244;FRS51E216560", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2021-11-08", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS51E70244;FRS51E216560", + "description": "MODULO - DORMANS - Gare", + "network": "MODULO - DORMANS - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64144000000, + 49.07860600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "83c58531-edad-4ed0-a3d0-b1e0494e51c7", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "ref:EU:EVSE": "FRS77P77288B", + "description": "Melun - Rosa Bonheur", + "start_date": "2023-09-20", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65352100000, + 48.52628700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "amenity": "charging_station", + "start_date": "2024-08-26;2024-08-07;2024-08-09", + "opening_hours": "24/7", + "ref": "FRHPCPNF080306", + "owner:ref:FR:SIREN": "531681694", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS ONNAING", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "ref:EU:EVSE": "FRHPCENF080306" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60601400000, + 50.38035800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34108002", + "network": "Reveo", + "description": "FRONTIGNAN - Parking Joseph Perrier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75490700000, + 43.44302900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "start_date": "2023-06-27", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "description": "Mohon - Parking du bourg", + "ref:EU:EVSE": "FRS56PLXYAI8QKSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52498182746, + 48.05268548344 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P72022780343616309", + "capacity": "3", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/CNYDSJRDXJ", + "ref": "368800", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63301100000, + 44.80436400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "446936", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP92049E", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P92049*E", + "socket:type2_combo:output": "100 kW;50 kW;150 kW", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32785300000, + 48.81722500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPCAMPANILE863601", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "start_date": "2020-01-23", + "operator:email": "support@driveco.com", + "description": "Campanile Futuroscope", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35844800000, + 46.66551200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EASYPLUG SEMIR LE PORT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P001601;FRC2P001602", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "901985804", + "start_date": "2021-09-01", + "operator:email": "contact@car2plug.fr", + "network": "EASYPLUG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.31592941284, + -20.94953536987 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "1150674", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/LLWZ0BX3GY9DUC", + "ref:EU:EVSE": "FRLE2P8612490230272866634", + "opening_hours": "24/7", + "charging_station:output": "11 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06680400000, + 49.73234000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "cfad395a-082f-5758-806c-8ed4755ad4d3", + "description": "MOBIVE | Coulounieix Chamiers | Place Yves Peron", + "charging_station:output": "50 kW;3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68841200000, + 45.15729100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Rte des grands Prés_ Mairie Orcières", + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "start_date": "2023-12-22", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE05OABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32327800000, + 44.69684300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Be Cablé", + "socket:type2_combo:output": "50 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "operator": "BeTrom | FR*BEC", + "amenity": "charging_station", + "ref": "522254", + "ref:EU:EVSE": "FRBECP40217A", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Be Cablé/FR*BEC*P40217*A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09255200000, + 44.34578700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "ref:EU:EVSE": "FRLE2P4868998307258179544", + "operator:email": "roaming@freshmile.com", + "capacity": "7", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "Fr,Sa 08:45-20:00,We,Tu,Th,Mo 08:45-19:30", + "charging_station:output": "22 kW", + "description": "Leclerc/XQEM9PNU02", + "ref": "471258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40589200000, + 46.67115900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint-Chamas, Parking de la Gare", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PES35XG41P7", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04056200000, + 43.55083700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEY/UAFKYILXEA", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS89P3320466420782861365", + "charging_station:output": "22 kW", + "ref": "402635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79307600000, + 48.04266100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*60*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-19", + "description": "GRASSE PARKING GARE SNCF", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6011;FRA16PWIIZ6012", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92636900000, + 43.65406400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/SLCGOXFVYX", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3866170815921025321", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "482046" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307700000, + 43.26494000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Soccer - Rennes", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PSOCREN", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73200720000, + 48.10037330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPPUXYSIZM6Z", + "description": "Réseau eborn/PUXYSIZM6Z;Saint-Chef, Chemin du Ruisseau", + "opening_hours": "24/7", + "ref": "PUXYSIZM6Z;30206", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36257900000, + 45.63933500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "674618", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREVZP3767394219888697831", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "description": "CARF - Bornes Publiques/8A492B9B-057C-4B3A-8020-E5835B62CF39" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49197000000, + 43.79061000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*672*9*_*_;FR*SOD*S*OTHR*672*7*_*_;FR*SOD*S*OTHR*672*6*_*_;FR*SOD*S*OTHR*672*2*_*_;FR*SOD*S*OTHR*672*15*_*_;FR*SOD*S*OTHR*672*10*_*_;FR*SOD*S*OTHR*672*1*_*_;FR*SOD*S*OTHR*672*11*_*_;FR*SOD*S*OTHR*672*12*_*_;FR*SOD*S*OTHR*672*13*_*_;FR*SOD*S*OTHR*672*14*_*_;FR*SOD*S*OTHR*672*3*_*_;FR*SOD*S*OTHR*672*4*_*_;FR*SOD*S*OTHR*672*5*_*_;FR*SOD*S*OTHR*672*8*_*_", + "start_date": "2023-07-25", + "network": "CENTRIMEX", + "charging_station:output": "3.68 kW;7.36 kW", + "description": "CENTRIMEX - VITROLLES", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR67221;FROTHPOTHR67211;FROTHPOTHR672101;FROTHPOTHR672111;FROTHPOTHR672121;FROTHPOTHR672131;FROTHPOTHR672141;FROTHPOTHR672151;FROTHPOTHR67231;FROTHPOTHR67241;FROTHPOTHR67251;FROTHPOTHR67261;FROTHPOTHR67271;FROTHPOTHR67281;FROTHPOTHR67291", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24791500000, + 43.43210900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/X215JLJ2YH;Valence, Parking Comette Jouvet", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "31972;X215JLJ2YH", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPX215JLJ2YH", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88341100000, + 44.92895000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/CVWVXPR8FU", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP7268357767605904310", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "479286" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62275400000, + 44.88128400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR35911;FROTHPOTHR35912", + "ref": "FR*SOD*S*OTHR*359*1*_*_", + "description": "CAMPING LE MOULIN DE LECLIS - ASSERAC", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-03-22", + "operator:email": "sav@izivia.com", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45175300000, + 47.44548300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLSLNJ9XW1ID9F", + "ref:EU:EVSE": "FRFR1P4460200677653498505", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1052490", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26595100000, + 47.68722500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "description": "Tesla Supercharger Beynost, France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRTSLP29579", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99773319000, + 45.82379524000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RYJXOYUE86", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3464318737689926601", + "operator": "Freshmile | FR*FR1", + "ref": "705980" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45781500000, + 48.41050400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "200 kW", + "description": "Volkswagen - ByMyCar - Orange", + "socket:type2_combo:output": "200 kW", + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2023-11-02", + "ref:EU:EVSE": "FRSSDPBYMYCARVOLKS841001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84149300000, + 44.11852900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VOVES - Piscine", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - VOVES - Piscine", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E126258;FRS28E126260", + "start_date": "2022-08-27", + "ref:EU:EVSE": "FRS28E126258;FRS28E126260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63229800000, + 48.27650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "description": "Paimpol-Parking place du Goëlo", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22162002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04348500000, + 48.77899900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-08-17", + "description": "KIA - Hérouville-Saint-Clair - 22kW AC ;KIA - Hérouville-Saint-Clair - 24kW DC ", + "ref": "37830;37831", + "network": "KIA - Hérouville-Saint-Clair", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "538798570", + "capacity": "1", + "ref:EU:EVSE": "FRZKAE22AC37831;FRZKAE24DC37830", + "opening_hours": "Mo-Fr 08:30-12:30,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34774200000, + 49.21443600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE289", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Decalonne_EXT", + "start_date": "2022-03-28", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21442700000, + 50.69944800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRY01E78230001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LA FALAISE - Rue Des Grands Pres", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83160560000, + 48.94566390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-23", + "network": "Ile Rose", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "description": "Ile Rose", + "opening_hours": "24/7", + "ref": "FRIOYE431553;FRIOYE431551;FRIOYE431506;FRIOYE431504;FRIOYE431503;FRIOYE431501;FRIOYE431502;FRIOYE431505;FRIOYE431552", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref:EU:EVSE": "FRIOYE431552;FRIOYE431551;FRIOYE431506;FRIOYE431504;FRIOYE431503;FRIOYE431501;FRIOYE431502;FRIOYE431505;FRIOYE431553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62300000000, + 45.27700000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "ref:EU:EVSE": "FRS53P53015A;FRS53E53015001", + "amenity": "charging_station", + "start_date": "2024-05-16;2021-04-14", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "description": "LA BACONNIERE - Salle Multi-Sports - La Garelière;OuestCharge - Diva Sp - La Baconniere - Gareliere", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89974600000, + 48.18280600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS65E65481001", + "start_date": "2022-01-25", + "network": "Reveo", + "description": "BAREGES - Parking Tournaboup" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10111000000, + 42.90314000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-05-22", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "description": "Saint Victor de Morestel", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Saint Victor de Morestel", + "ref": "FRIENE007501;FRIENE007502", + "ref:EU:EVSE": "FRIENE007501;FRIENE007502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48414090000, + 45.69182970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MAUGUIO - Avenue des Comtes de Melguiel - CARNON PLAGE", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34926001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97951200000, + 43.54777100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "ref:EU:EVSE": "FRS61P61121D", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "description": "L'AIGLE - Maison des Services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "CU-SE61-LAIG-005", + "start_date": "2019-09-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61818850000, + 48.76090080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P1145228014691022866", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "694292", + "description": "Freshmile France/P82ADPOVAF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70852700000, + 45.15764100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2018-09-13", + "owner:ref:FR:SIREN": "200075240", + "ref": "120632;CLHEGY", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS31PCLHEGY", + "operator:email": "roaming@freshmile.com;web@freshmile.com", + "description": "Roulez Électrique En Haute-Garonne/CLHEGY;Montjoire, Toulouse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53011000000, + 43.76710000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-04-04", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE92004031", + "network": "SIPPEREC", + "description": "ASNIERES-SUR-SEINE - Rue de Nanterre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27989320000, + 48.90991300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000237;FRCG0E000234;FRCG0E000233;FRCG0E000232;FRCG0E000238", + "start_date": "2024-05-08", + "capacity": "5", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E000237;FRCG0E000234;FRCG0E000233;FRCG0E000232;FRCG0E000238", + "description": "BMW - Altitude 38 Vienne - 38200 - 2", + "network": "BMW - Altitude 38 Vienne - 38200 - 2", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;50 kW;11 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83220000000, + 45.55091000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - PARKING COL VILLEFRANCHE", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*138*2*_*_", + "ref:EU:EVSE": "FRM06PNICE13821;FRM06PNICE13822", + "operator:email": "sav@izivia.com", + "start_date": "2023-08-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30008500000, + 43.70503000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1a14572a-8e68-527e-bb46-7e739f5c73da", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Soorts Hossegor | Boulevard de la dune", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44272600000, + 43.66153700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2023-09-26", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "NOMAIN - Centre", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE59NABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24746700000, + 50.49955500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "223771;223772", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Saint Sylvain D'Anjou", + "ref:EU:EVSE": "FRBMPS223772;FRBMPS223771", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47462790000, + 47.51385950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3554EVCP01", + "description": "LE PORTEL Martin", + "ref": "LFR3554EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58253900000, + 50.71047800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "4951a024-68e6-5dae-9bd2-1260aed4b77c", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Marcillac la Croisille | Place Docteur Raoul Peuch", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03226900000, + 45.27292200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "Breuillet - Rue des Prairies", + "opening_hours": "24/7", + "ref": "e742336a-ec6c-51d4-9d06-3ec9ea248dac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17257500000, + 48.56483400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "ref:EU:EVSE": "FR55CP84000AVGITALIENS", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref": "FR*55C*P84000*AVG*ITALIENS", + "operator:email": "contact@e55c.com", + "description": "PARKING DES ITALIENS - AVIGNON", + "start_date": "2020-05-14", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82325300000, + 43.95388500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3288EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CUGNAUX", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3288EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36014600000, + 43.53445700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-04", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "description": "Weldom - Sierentz", + "ref:EU:EVSE": "FRPD1PWELSRT", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44606325569, + 47.66462227446 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Vinsobres, Route de Nyons;Réseau eborn/WL5XZNI7WZ", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPWL5XZNI7WZ", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "socket:type2_combo:output": "50 kW;44 kW", + "opening_hours": "24/7", + "ref": "WL5XZNI7WZ;75146", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2020-07-22", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08223000000, + 44.32980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "description": "Freshmile France/TDWPWURGFJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "578972", + "ref:EU:EVSE": "FRFR1P4277638363513410650", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58123400000, + 48.88385300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking gare de Dijon - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E21231001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02782000000, + 47.32408000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Dropnplug/40", + "network": "Dropnplug", + "capacity": "2", + "amenity": "charging_station", + "ref": "903672", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@dropnplug.fr", + "ref:EU:EVSE": "FRDNPP4357047787594605923", + "operator": "Dropnplug | FR*DNP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56928500000, + 44.36002700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPFRGFEE", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "FRGFEE;85730", + "description": "Réseau eborn/FRGFEE;Annecy, Rue Dupanloup" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13340000000, + 45.90360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR47911;FROTHPOTHR47912", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*479*1*_*_", + "charging_station:output": "22 kW", + "description": "INTERMARCHE - TOULON", + "start_date": "2022-09-08", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97206500000, + 43.11551200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "682268", + "network": "Freshmile France", + "opening_hours": "Mo,Fr,Tu,We,Sa,Th 09:00-12:00,Mo,Sa,Tu,Th,Fr,We 15:00-18:00", + "ref:EU:EVSE": "FRFR1P5781813032559031635", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/UJGU41XRPM", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55900600000, + 48.95865300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "58 Rue Jules Tellier", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "ref:EU:EVSE": "FRUBIE10026214;FRUBIE10082644", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-11-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12697200000, + 49.49836100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "510575", + "description": "Freshmile France/R3DAUXRW4P", + "amenity": "charging_station", + "opening_hours": "Th,Fr,Tu,Sa,We,Mo 08:00-12:00,Fr,Sa,Tu,We,Mo,Th 14:00-17:30", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3065222601667970842", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98951700000, + 43.13459100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOULOUSE - Rue du Port Garaud ", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRTLSE31555016", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44186970000, + 43.59008960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2665607851704621888", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLY5HWIU62R252", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "1130325" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72758300000, + 47.21061800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "461661", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P7543127485341807211", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/BKLEA4YHK3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27698100000, + 49.12457300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "VINASSAN - Rue De La Font- Parking Aire Service", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11441001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07444444444, + 43.20472220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-01", + "ref:EU:EVSE": "FRY03E78160003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CHEVREUSE - Rhodon", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06255440000, + 48.71462750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-05;2021-04-22", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "description": "FONTEVRAUD-L'ABBAYE - Place du 8 Mai 1945;OuestCharge - Diva Sp - Fontevraud-l'Abbaye - 8 Mai 45", + "ref:EU:EVSE": "FRS49E49140001;FRS49P49140A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04715400000, + 47.18119000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "description": "SIED70/VNXAGJ", + "operator:email": "roaming@freshmile.com", + "ref": "120659", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS70PVNXAGJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25794000000, + 47.46650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BERGUES - Place du marché aux volailles", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH14E59067003", + "start_date": "2024-08-14", + "network": "pass pass électrique", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43209450000, + 50.96786970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "ref:EU:EVSE": "FRS35P35297001B1", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ST MEEN LE GRAND - 10 rue maurice ", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.19192000000, + 48.19088000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2022-08-10", + "description": "SIEG63 - ePremium - Cournon D Auvergne - Domes (15)", + "opening_hours": "24/7", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124B", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19287380000, + 45.73136780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1031487", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/LLO2QD0SD28W34", + "ref:EU:EVSE": "FRFR1P4996330819941288858", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17503600000, + 49.12224300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS32P4379265792692887340", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDEG32/OLNVAYQDOR", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "347039", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49866000000, + 43.98120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ARCUEIL - Rue Ridder", + "start_date": "2022-10-27", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE94003007", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32666064048, + 48.80152323653 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref": "FR*SOD*S*NICE*257*5*_*_;FR*SOD*S*NICE*257*6*_*_;FR*SOD*S*NICE*257*7*_*_;FR*SOD*S*NICE*257*8*_*_", + "capacity": "1", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE25771;FRM06PNICE25751;FRM06PNICE25761;FRM06PNICE25781", + "description": "FALICON - PARKING ECOLE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-10-23;2023-07-10", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27835368487, + 43.75001206279 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "ad05d6e8-ec82-5f08-99f8-d277d5545d3a", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Cubjac | Place du 19 Mars 1962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93752800000, + 45.22262200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39211;FRSIGPSIGE39212", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - MEDIATHEQUE - SAINT-LEU-LA-FORET", + "ref": "FR*SOD*S*SIGE*392*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23800000000, + 49.01070000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-11-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76484001", + "description": "OISSEL - Gare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10133100000, + 49.34231900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR2963EVCP02;LFR2963EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR2963EVCP02;LFR2963EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "BRACON Champtave" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88526700000, + 46.92612400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "194__SDEC23", + "ref": "4d18af2c-41f8-5a71-b436-7270ee6b54b6", + "description": "MOBIVE | Bénévent-L'Abbaye | Place de la Muraille" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63081500000, + 46.11918300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BEAUMONT-DE-PERTUIS - Rue du 19 Mars", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "37bbcef3-0ce2-59b5-8160-28dc72a63682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68758200000, + 43.73711700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FR55CP92350LPRP1QUET", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "PLACE DU PLESSIS PIQUET - LE PLESSIS-ROBINSON", + "amenity": "charging_station", + "ref": "FR*55C*P92350*LPR*P1QUET", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "start_date": "2024-09-06", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25499800000, + 48.78387800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR4007EVCP02;LFR4007EVCP01;LFR4007EVCP03;LFR4007EVCP04", + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "VERNEUIL D'AVRE ET D'ITON - Briand", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR4007EVCP02;LFR4007EVCP01;LFR4007EVCP03;LFR4007EVCP04", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93481800000, + 48.73767500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMMTV", + "capacity": "3", + "start_date": "2021-10-05", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Intermarché Super - Montivilliers", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17739617567, + 49.53928427569 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/NB5VTHIUEN", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "743004", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNP280068479436588857" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85831900000, + 43.45391400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP77390C", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP77390C", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - Roissy-en-Brie - Gymnase Georges Chanu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66442259066, + 48.79631884693 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW;100 kW;187.5 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "22 kW;50 kW;100 kW;187.5 kW", + "opening_hours": "24/7", + "start_date": "2023-05-25;2023-02-09", + "ref:EU:EVSE": "FRPD1PCORDRC", + "capacity": "11", + "description": "Cora - Dornach", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29215790000, + 47.74025240000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market Le Touquet", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT625201", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62297300000, + 50.51103200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bornes SIE-ELY", + "ref:EU:EVSE": "FRELYE28118001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "CROISILLES - Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-09-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50432000000, + 48.68935000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "AUCHAN - CALUIRE", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*171*1*_*_", + "start_date": "2023-11-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPAUCH17112;FROTHPAUCH17111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85743401534, + 45.80357195919 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR SÉMÉAC", + "description": "SONEPAR SÉMÉAC", + "ref:EU:EVSE": "FRCPIE6783975", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-09-14", + "ref": "FRCPIE6783975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09331700000, + 43.22355300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6663699452658541131", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/Y9Y1GSKFUK", + "ref": "598101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88781500000, + 46.77541000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV75P901301", + "network": "Belib'", + "ref": "FR*V75*P9013*01", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Avenue Claude Régaud 3", + "start_date": "2021-10-26", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37297100000, + 48.82243200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P6701281016983286022", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/NSOAC8FZQK", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "741156" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74828700000, + 43.43612000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "125 kW", + "socket:type2_combo:output": "125 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Tesla Supercharger Chalons en Champagne, France - Matougues", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1731", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24528300000, + 48.99200100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "access": "private", + "amenity": "parking", + "name": "Parking P1", + "operator": "EDF", + "parking": "surface" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20636210000, + 49.97146460000 + ], + [ + 1.20645010000, + 49.97156070000 + ], + [ + 1.20658180000, + 49.97168390000 + ], + [ + 1.20659060000, + 49.97172760000 + ], + [ + 1.20657450000, + 49.97196720000 + ], + [ + 1.20657990000, + 49.97200110000 + ], + [ + 1.20659760000, + 49.97202620000 + ], + [ + 1.20665240000, + 49.97204180000 + ], + [ + 1.20692060000, + 49.97208720000 + ], + [ + 1.20701220000, + 49.97189170000 + ], + [ + 1.20710250000, + 49.97169910000 + ], + [ + 1.20727210000, + 49.97173140000 + ], + [ + 1.20727680000, + 49.97172310000 + ], + [ + 1.20728220000, + 49.97171160000 + ], + [ + 1.20754800000, + 49.97176190000 + ], + [ + 1.20761510000, + 49.97162940000 + ], + [ + 1.20796010000, + 49.97169520000 + ], + [ + 1.20798300000, + 49.97165300000 + ], + [ + 1.20843020000, + 49.97173910000 + ], + [ + 1.20857800000, + 49.97185460000 + ], + [ + 1.20885210000, + 49.97190900000 + ], + [ + 1.20894640000, + 49.97188870000 + ], + [ + 1.20914190000, + 49.97193090000 + ], + [ + 1.20918860000, + 49.97183780000 + ], + [ + 1.20926530000, + 49.97185060000 + ], + [ + 1.20935790000, + 49.97167210000 + ], + [ + 1.20949010000, + 49.97169460000 + ], + [ + 1.20951110000, + 49.97165220000 + ], + [ + 1.20955180000, + 49.97166080000 + ], + [ + 1.20957320000, + 49.97160680000 + ], + [ + 1.20953350000, + 49.97159700000 + ], + [ + 1.20955330000, + 49.97154690000 + ], + [ + 1.20935490000, + 49.97150960000 + ], + [ + 1.20937170000, + 49.97147190000 + ], + [ + 1.20937320000, + 49.97143740000 + ], + [ + 1.20937470000, + 49.97140160000 + ], + [ + 1.20938080000, + 49.97138340000 + ], + [ + 1.20945720000, + 49.97139370000 + ], + [ + 1.20946560000, + 49.97132450000 + ], + [ + 1.20948770000, + 49.97130580000 + ], + [ + 1.20951290000, + 49.97130780000 + ], + [ + 1.20951820000, + 49.97124450000 + ], + [ + 1.20948010000, + 49.97122880000 + ], + [ + 1.20941290000, + 49.97121210000 + ], + [ + 1.20831820000, + 49.97099500000 + ], + [ + 1.20769060000, + 49.97087030000 + ], + [ + 1.20742120000, + 49.97091500000 + ], + [ + 1.20739370000, + 49.97089490000 + ], + [ + 1.20723790000, + 49.97078150000 + ], + [ + 1.20696510000, + 49.97069030000 + ], + [ + 1.20675470000, + 49.97068180000 + ], + [ + 1.20665010000, + 49.97068230000 + ], + [ + 1.20652950000, + 49.97069850000 + ], + [ + 1.20644860000, + 49.97072010000 + ], + [ + 1.20643790000, + 49.97075300000 + ], + [ + 1.20641510000, + 49.97079820000 + ], + [ + 1.20636770000, + 49.97089240000 + ], + [ + 1.20630050000, + 49.97088010000 + ], + [ + 1.20614550000, + 49.97119090000 + ], + [ + 1.20621420000, + 49.97120670000 + ], + [ + 1.20618750000, + 49.97126210000 + ], + [ + 1.20636210000, + 49.97146460000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "598074", + "network": "Freshmile France", + "description": "Freshmile France/WIUMZLWTQX", + "ref:EU:EVSE": "FRFR1P7176995499754560968", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15865800000, + 42.31615500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "ref:EU:EVSE": "FR3R3P89363747", + "capacity": "5", + "start_date": "2023-04-21", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "description": "R3 - Norauto Illzach", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38812700000, + 47.77129400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P5402394691224815813", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/EIKF1QJBPH", + "ref": "457452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29728700000, + 49.05354300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SEGUR - Station Service Le Bourg", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-10", + "network": "Reveo", + "ref:EU:EVSE": "FRS12E12266001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83475100000, + 44.29560300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "description": "WAAT/FRWA5LX7TEG58C", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1081083", + "ref:EU:EVSE": "FRWA5P4824501782273654307", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48244500000, + 48.82026200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49353003;FRS49P49353C", + "description": "TRELAZE - Parking des Sports Goducière;OuestCharge - Diva Sp - Trelaze - Goduciere", + "amenity": "charging_station", + "start_date": "2024-04-03;2021-04-19", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49990000000, + 47.44740000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LABASTIDE DE LEVIS - Rue Des Ecoles", + "start_date": "2024-06-25", + "ref:EU:EVSE": "FRS81E81112001", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01285500000, + 43.92873900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "531681512;531681510;531681509;531681507;531681508;531681511", + "start_date": "2023-09-26", + "ref": "FRHPCPNF042411", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF042411", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW", + "description": "RELAIS ANCIENNES PROVINCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55370000000, + 47.45380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46184001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MARMINIAC - Place du Foirail", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19485300000, + 44.66543200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Locmalo - Rue Jean Le Bris", + "ref:EU:EVSE": "FRS56PPYLBEV", + "start_date": "2016-12-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18881100000, + 48.07092700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59178012", + "description": "DOUAI - Place Robert Schumann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08373500000, + 50.36812200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Quimper-Alez An Eostiged", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09582200000, + 48.00667200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE94068012", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2023-12-11", + "description": "SAINT-MAUR-DES-FOSSÉS - Rue de Beaujeu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47619600000, + 48.79663060000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CHARROUX-1-2;CHARROUX-1-1", + "ref": "B017", + "start_date": "2017-02-07", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346051342;FRLMSE12346051341;FRLMSE12346051331;FRLMSE12346051332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40692000000, + 46.14289900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP92063P", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref": "330308", + "description": "Metropolis - Proximité - Rueil-Malmaison - Empereur;Métropolis/FR*MGP*P92063*P", + "owner:ref:FR:SIREN": "885354860", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18175600000, + 48.86333000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2021-03-29", + "description": "SIGEIF - 35 BOULEVARD FERDINAND HOSTACHY - CROISSY-SUR-SEINE", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRSIGPSIGE6811;FRSIGPSIGE6812", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*68*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14323600000, + 48.87828900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-08-07", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "SAINT CLEMENT DE RIVIERE", + "ref:EU:EVSE": "FRALLPEVCARSSTCDR", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64960900000, + 3.84190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1000058482", + "amenity": "charging_station", + "start_date": "2023-10-02", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "operator:email": "franck.legardeur@zeenco.tech", + "description": "Howdens Lesquin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11581800000, + 50.57906100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "2a5ea54a-e1e2-522a-be6d-d178aaeb5755", + "capacity": "2", + "description": "MOBIVE | Uzein | Place de la Musique", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43292800000, + 43.39959000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LONGEVILLE-SUR-MER - Place Clémenceau", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS85E85127001", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49111000000, + 46.42552900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "start_date": "2022-04-19", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "charging_station:output": "75 kW;300 kW;22 kW", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "ref:EU:EVSE": "FRALLPEVCARSORNGE", + "network": "Carrefour Energies", + "description": "ORANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83910700000, + 44.12012800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "LFR4047EVCP02;LFR4047EVCP03;LFR4047EVCP04;LFR4047EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "SCHILTIGHEIM - Bischwiller", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4047EVCP02;LFR4047EVCP03;LFR4047EVCP04;LFR4047EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74292200000, + 48.59962500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Le Dépôt - Ussac", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-07-13", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PLDPBLG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48158060000, + 45.16326370000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/JLVMUSR7MM;Bourgoin Jallieu, Allée de l'Eden (Flunch)", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPJLVMUSR7MM;FREBNP3819473539010607017", + "start_date": "2022-03-21", + "ref": "492111;JLVMUSR7MM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24054000000, + 45.59485000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "ref": "1041582", + "capacity": "7", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "description": "EVzen/36888272-3C42-4C62-9796-AD47E19616CF", + "opening_hours": "24/7", + "network": "EVzen", + "ref:EU:EVSE": "FREVZP6868298782018109502", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29103000000, + 48.17306500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PGRACHA", + "charging_station:output": "100 kW;22 kW", + "description": "Restaurant Profuzion - Chasseneuil-du-Poitou", + "opening_hours": "24/7", + "start_date": "2024-04-11", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35835400000, + 46.64898500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "24", + "description": "Leroy Merlin - Lesquin", + "amenity": "charging_station", + "start_date": "2023-06-28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRE11PLM598101", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08951500000, + 50.58660200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "description": "e-Totem - Originals City Narbonne", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP11262B", + "ref:EU:EVSE": "FRETIP11262B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98907600000, + 43.16774300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FROTHPOTHR16481;FROTHPOTHR16471;FROTHPOTHR16461;FROTHPOTHR16451;FROTHPOTHR16441;FROTHPOTHR16431;FROTHPOTHR16411;FROTHPOTHR16421;FROTHPOTHR16491", + "amenity": "charging_station", + "capacity": "1", + "network": "VM DECOR", + "ref": "FR*SOD*S*OTHR*164*9*_*_;FR*SOD*S*OTHR*164*7*_*_;FR*SOD*S*OTHR*164*6*_*_;FR*SOD*S*OTHR*164*5*_*_;FR*SOD*S*OTHR*164*3*_*_;FR*SOD*S*OTHR*164*2*_*_;FR*SOD*S*OTHR*164*1*_*_;FR*SOD*S*OTHR*164*4*_*_;FR*SOD*S*OTHR*164*8*_*_", + "opening_hours": "24/7", + "start_date": "2022-03-18;2021-05-27", + "operator:email": "sav@izivia.com", + "description": "VM DECOR - LA ROCHE SUR YON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43052500000, + 46.69297100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "GOLF LAMALOU STATION 1", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6967805", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2024-07-25", + "description": "GOLF LAMALOU STATION 1", + "ref:EU:EVSE": "FRCPIE6967805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07939200000, + 43.58696900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1PHFFQCD", + "charging_station:output": "22 kW", + "ref": "294350", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/HFFQCD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11060000000, + 49.08470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "ref:EU:EVSE": "FRVIAP122071", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL BRIVE LA GAILLARDE", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2024-07-17", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48189400000, + 45.16368000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "521321", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3846663759510632630", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/L1DBJXVP6P", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48185800000, + 45.14770400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-18:00, Tu 08:00-12:00, Tu 14:00-18:00, We 08:00-12:00, We 14:00-18:00, Th 08:00-12:00, Th 14:00-18:00, Fr 08:00-12:00, Fr 14:00-18:00", + "amenity": "charging_station", + "start_date": "2020-12-09", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "description": "Volkswagen - Montpellier Utilitaires - Baillargues", + "ref:EU:EVSE": "FRSSDPMTPUTILITAIRESVW346701", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99799000000, + 43.65377400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "971837", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5831799095068942395", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLMOPU5QGVPXQD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35751900000, + 48.08364300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPKYRIAD213001", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Kyriad - Dijon", + "start_date": "2022-10-20", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01820000000, + 47.28182200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS28E134263", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "description": "MODULO - SENONCHES - Rue du four banal", + "ref": "FRS28E134263", + "operator": "Modulo", + "network": "MODULO - SENONCHES - Rue du four banal", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03891500000, + 48.56002800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "SDEA 10/TUOBRCUPX7", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P4910582568757510619", + "ref": "32116" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97559700000, + 48.27432200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "description": "WAAT/FRWA5L9MALHOP6", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "ref:EU:EVSE": "FRWA9P888330988138178879", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1127910" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42803200000, + 45.44771100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-01-25", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P504731", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ST GEORGES D'ELLE - aire de covoiturage la Taille", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97572990000, + 49.13542160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS81E81267001", + "description": "SAINT PIERRE DE TRIVISY - Place Du 19 Mars 1962", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43551500000, + 43.76128800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2021-06-01;2023-04-06", + "owner:ref:FR:SIREN": "531680605;531680602;531680604;531680607;531680606;531680608;531680609;531680603", + "ref:EU:EVSE": "FRHPCPNF078218", + "opening_hours": "24/7", + "ref": "FRHPCPNF078218", + "network": "TotalEnergies Charge Rapide", + "description": "Relais HARDIVILLIERS", + "operator": "TotalEnergies Charging Services", + "charging_station:output": "150 kW;54 kW", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20540000000, + 49.60900000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49015A;FRS49E49015001", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-04-04;2021-07-16", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Quick Charger Evtronic - Avrille - D768;AVRILLE - Aire Co D768" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61754000000, + 47.51396000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "Mouv'Oise/hermes11nov", + "amenity": "charging_station", + "ref": "46594", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PHERMES11NOV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24295000000, + 49.35410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LA GORGUE - Rue de Verdun", + "network": "pass pass électrique", + "start_date": "2019-12-02", + "ref:EU:EVSE": "FRH09E59268001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70874100000, + 50.63679100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GALLARGUES LE MONTUEUX - Parking Cimetière", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS30E30123001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17396600000, + 43.72284400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PFCQHSR", + "amenity": "charging_station", + "ref": "25043", + "operator": "Morbihan énergies | FR*S56", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/FCQHSR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16351000000, + 47.63800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-07-04", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRLMSE12346390281;FRLMSE12346390271", + "ref": "B018", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "description": "CHATEAU GARNIER-1-2;CHATEAU GARNIER-1-1", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42732400000, + 46.25889800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Métropolis/FR*MGP*P94001*A", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "ref": "599130", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP94001A", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43297200000, + 48.72566700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "ref": "FRSHEE84;FRSHEE81;FRSHEE82;FRSHEE83", + "description": "Shell Aire de Bordeaux-Cestas Est A63", + "amenity": "charging_station", + "charging_station:output": "300 kW;125 kW;22 kW", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-04-08", + "capacity": "10", + "ref:EU:EVSE": "FRSHEE84;FRSHEE81;FRSHEE82;FRSHEE83" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70648000000, + 44.74244400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "PAU - Parking Aragon ", + "ref:EU:EVSE": "FRBE1E64445005", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "start_date": "2024-01-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36823145947, + 43.29378625170 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2022-12-30;2023-01-03", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - A2 La Sentinelle Est", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRLMSP89369824", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47000700000, + 50.33958200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Montmoreau | Parking de Aignes", + "capacity": "2", + "amenity": "charging_station", + "ref": "7fa40327-42e1-5283-94f0-381de2252c4d", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14212700000, + 45.45044300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE62HBXA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "description": "Le stade - HESDIN", + "start_date": "2022-05-25", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04084200000, + 50.37581500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-11-09", + "amenity": "charging_station", + "description": "Allego Carrefour Bassens", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9006211;FRALLEGO9002493;FRALLEGO9002491;FRALLEGO9001372;FRALLEGO9001371;FRALLEGO9001291;FRALLEGO9001292;FRALLEGO9002492;FRALLEGO9006212;FRALLEGO9006291;FRALLEGO9006292", + "capacity": "11", + "network": "Allego Carrefour Bassens", + "ref:EU:EVSE": "FRALLEGO9006292;FRALLEGO9006212;FRALLEGO9006211;FRALLEGO9002493;FRALLEGO9002491;FRALLEGO9001372;FRALLEGO9001371;FRALLEGO9001291;FRALLEGO9001292;FRALLEGO9002492;FRALLEGO9006291" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94437641000, + 45.57362782000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref": "LFR3799EVCP02;LFR3799EVCP01", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3799EVCP02;LFR3799EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "AUDRUICQ - ALLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07051000000, + 50.86990500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM29E29212001", + "description": "PLOUZANE - Avenue Alexis De Rochon", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.56420700000, + 48.35915700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Tulette, Avenue de Provence;Réseau eborn/VTPM86E6SG", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPVTPM86E6SG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "VTPM86E6SG;31969" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93058300000, + 44.28547200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLOPY5BTD1ZA85", + "ref": "1026717", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8671184291276448340", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Tu,Fr,Su,Th,Mo,Sa 00:00-23:45,We 00:00-07:00,We 12:00-23:45", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16227700000, + 48.98756700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E693890011;FRP07E69389001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "LYON - Sauvegarde", + "start_date": "2024-02-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78816200000, + 45.78869660000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLTHE8SNV1RRYR;Monistrol-Sur-Loire, Bd du Mazel", + "ref": "1110483;LLTHE8SNV1RRYR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPLLTHE8SNV1RRYR;FREBNP8221452229647981926", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17690700000, + 45.28408500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1078521", + "network": "Road", + "description": "Road/645b9e4a522dd300120a98a8", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "11 kW", + "opening_hours": "Fr,Tu,Mo,Sa,Th,Su,We 08:00-18:00", + "operator:email": "roaming-dev@road.io", + "ref:EU:EVSE": "FREFLP5899801515007404837", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16230000000, + 43.65052900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "network": "MASSILLY GROUPE", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "description": "MASSILLY - MACON", + "ref": "FR*SOD*S*OTHR*278*3*_*_;FR*SOD*S*OTHR*278*2*_*_;FR*SOD*S*OTHR*278*1*_*_;FR*SOD*S*OTHR*278*4*_*_;FR*SOD*S*OTHR*278*5*_*_", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR27851;FROTHPOTHR27841;FROTHPOTHR27811;FROTHPOTHR27821;FROTHPOTHR27831" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81999800000, + 46.28699800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6607265", + "charging_station:output": "22 kW", + "description": "SONEPAR CONNECT SOISSONS", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6607265", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "network": "SONEPAR CONNECT SOISSONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36656700000, + 49.37247600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "505674", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P9098352779506316923", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SOEDIIY83S" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81263700000, + 46.28645300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P6634712869808811533", + "description": "WAAT/s540969", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "ref": "1168260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08871500000, + 50.37062400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Freshmile | FR*FR1;E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref": "487263;971891;1017075", + "amenity": "charging_station", + "network": "Freshmile France;Leclerc", + "capacity": "2;14", + "description": "Freshmile France/LLN1UAFHX1T2FJ;Leclerc/NVFD81PSSR;Leclerc/LLN1UAFHX1T2FJ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6766443680675167525;FRLE2P6983393982237348381;FRLE2P6766443680675167525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48882700000, + 48.76564200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis Brignoles Provence", + "ref:EU:EVSE": "FRTCBP00125", + "network": "ACCOR Hotels", + "capacity": "2", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "24/7", + "ref": "FRTCBP00125", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "349925362", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2020-09-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06727700000, + 43.42053100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "505695", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P3017636587587711206", + "description": "Freshmile France/UB39VOTDAV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02514200000, + 47.30362000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Hyundai - APS - Sens", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPAPSHYUNDAI891001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28644000000, + 48.20527600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E29026001;FRS29E2902600", + "description": "Chateaulin-D88", + "charging_station:output": "50 kW;43 kW;22 kW", + "start_date": "2023-03-23;2023-03-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061000000, + 48.21619000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P759723007539080013", + "ref": "75002", + "opening_hours": "24/7", + "description": "SDEA 10/FYOCOK9B3F" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10436900000, + 48.31798000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "819282872", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/1909485;GHO Lille aeroport", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref:EU:EVSE": "FRZP1PEAC43827;FRZP1P1082953291128259665;FRZP1PEAC43824;FRZP1PEAC43825;FRZP1PEAC43826", + "ref": "575885;eaea554b-c6c7-4b30-85ba-05d179e0aca3", + "capacity": "1;4", + "network": "GHO Lille aeroport;Zephyre", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09270700000, + 50.58345100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2021-05-07", + "description": "moreaux_epinoy", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE84", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16100000000, + 50.23046200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS80PQXFFCP", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref": "64790", + "charging_station:output": "22 kW", + "network": "FDE 80", + "description": "FDE 80/QXFFCP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31397000000, + 49.83670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "IZIVIA FAST - MCDONALDS - CHOLET LA LOUISIERE", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIZFPFAST16513;FRIZFPFAST16511;FRIZFPFAST16512", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-07-03", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*165*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84247436358, + 47.07341437424 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - SALBRIS - Pl. du 11 Novembre", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - SALBRIS - Pl. du 11 Novembre", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4717;FRS41E4718", + "ref": "FRS41E4717;FRS41E4718" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05053000000, + 47.42555000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/FEUT1KXBBR", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P4434782017932673729", + "ref": "598152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51357600000, + 49.22211300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7531;FRGLYPLYON7521;FRGLYPLYON7511;FRGLYPLYON7541", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*75*3*_*_;FR*SOD*S*LYON*75*1*_*_;FR*SOD*S*LYON*75*2*_*_;FR*SOD*S*LYON*75*4*_*_", + "start_date": "2021-05-31", + "description": "CAL02 - CUIRE - RUE COSTE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83411600000, + 45.78694000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E214074;FRS37E214073", + "capacity": "2", + "description": "MODULO - ST PIERRE DES CORPS - Pkg. Despouy", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E214074;FRS37E214073", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST PIERRE DES CORPS - Pkg. Despouy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71815700000, + 47.39166000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Bignan - Rue comte de Lanjuinais", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PJFWBRE", + "start_date": "2017-07-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77100800000, + 47.88084700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-07", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator:email": "contact@e-totem.fr", + "network": "Hôtel Ibis Style Fougères", + "ref": "FRG10P35021A", + "description": "Hôtel Ibis Style Fougères", + "ref:EU:EVSE": "FRG10P35021A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17296272197, + 48.34361336413 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - NANCY - Pkg. st Leon", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRN54E188683;FRN54E188682", + "ref:EU:EVSE": "FRN54E188683;FRN54E188682", + "description": "MODULO - NANCY - Pkg. st Leon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17302200000, + 48.68976200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*21*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIGPSIGE2111;FRSIGPSIGE2112", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2020-07-31", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - AVENUE DES ETANGS - LA CELLE-SAINT-CLOUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13186500000, + 48.84512000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001929;FRCG0E001928;FRCG0E001927;FRCG0E001926;FRCG0E001925;FRCG0E001923;FRCG0E001921;FRCG0E001922;FRCG0E001924", + "charging_station:output": "22 kW;100 kW;300 kW", + "amenity": "charging_station", + "ref": "FRCG0E001929;FRCG0E001928;FRCG0E001927;FRCG0E001926;FRCG0E001925;FRCG0E001923;FRCG0E001921;FRCG0E001922;FRCG0E001924", + "opening_hours": "24/7", + "network": "BAUER SAINT WITZ - 95470 - 3", + "description": "BAUER SAINT WITZ - 95470 - 3", + "socket:type2_combo:output": "300 kW", + "start_date": "2023-07-22", + "capacity": "9", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54740100000, + 49.09035200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRLMSE1234571374", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "779987486", + "operator": "ZEENCO", + "charging_station:output": "25 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Yutz MJC", + "start_date": "2023-11-24", + "network": "ZEENCO", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19017600000, + 49.34669400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Loix En Re | Parking de la Bernardiére", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "9dfab42b-9f04-5880-bbdf-6b696d53fa11", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43249800000, + 46.22402200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-25", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE86SADA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "CARREFOUR CONTACT - SAINT JULIEN L'ARS", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49861000000, + 46.55904900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2020-11-19", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TOULOUSE - B612 - 3 Rue Tarfaya", + "ref:EU:EVSE": "FRA31E31555003", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48855200000, + 43.56291700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2486EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "AIGUES-VIVES Lalemande", + "ref": "LFR2486EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19908000000, + 43.71448400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-10", + "description": "EYBENS - Parking Relais Eybens Le Verderet (CITIZ);EYBENS - Parking Relais Eybens Le Verderet", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38158001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75334000000, + 45.14746800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FREBNP4070352895411497131;FREBNPWD8KTGUBE3", + "ref": "WD8KTGUBE3;492144", + "description": "Réseau eborn/WD8KTGUBE3;Vichy, Boulevard Maréchal de Lattre de Tassigny", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41637000000, + 46.12908000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6656636685727732296", + "network": "Freshmile France", + "description": "Freshmile France/TXR4EPVUDZ", + "ref": "694322", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588300000, + 48.92970700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "capacity": "5", + "description": "BAGNOLET - Porte de Bagnolet", + "start_date": "2022-12-27;2023-09-21", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E93006001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41763232949, + 48.86583470555 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPOJSEF8KNCZ", + "ref": "OJSEF8KNCZ", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "La Chapelle-d'Abondance, Route de Savoie", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78845616000, + 46.29530683000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "start_date": "2022-11-28", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPRENNO", + "socket:type2_combo:output": "300 kW", + "description": "Rennes - Novotel Rennes Alma", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68291900000, + 48.08224400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking Limoges Jourdan - EFFIA", + "start_date": "2023-07-04", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E87085008", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26608100000, + 45.83203500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6645695;FRCPIE6645705", + "amenity": "charging_station", + "capacity": "4", + "description": "BORNES WELDOM BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-04-07", + "operator:email": "info@chargepoint.com", + "network": "BORNES WELDOM BORNE 2", + "ref:EU:EVSE": "FRCPIE6645695;FRCPIE6645705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70778800000, + 47.61552100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "amenity": "charging_station", + "description": "Easy Charge/LLW7R0WMDKLPGE;Dannemarie-sur-Crète, Parking de la bibliothèque", + "owner:ref:FR:SIREN": "901772400", + "ref": "LLW7R0WMDKLPGE;1107723", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRECHP4430731766844105563;FRECHPLLW7R0WMDKLPGE", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "start_date": "2024-05-15", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87425600000, + 47.20236200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX18*08", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Championnet 28", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1808", + "start_date": "2021-09-14", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35000000000, + 48.89540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile/RMKFDTC3M4", + "ref:EU:EVSE": "FRFR1P2234424705278013738", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "541715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76410500000, + 48.19236100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*P9019*06", + "network": "Belib'", + "description": "Paris | Rue Riquet 39", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "start_date": "2021-04-14", + "capacity": "3", + "ref:EU:EVSE": "FRV75P901906", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37176800000, + 48.88901100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/HCGJJZ", + "ref": "346619", + "network": "Freshmile France", + "capacity": "3", + "ref:EU:EVSE": "FRFR1P8056713616704517058", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22644000000, + 43.33540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-03", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPLANCIEN560001", + "operator:email": "support@driveco.com", + "description": "Hyundai - Vannes", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79202800000, + 47.66394000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS22E22218001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Plougrescant-Rue saint Gonery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22886200000, + 48.84212500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEUCATE - Collège- Annexe Port Leucate-Rue De L'Estagnol", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2022-01-11;2022-03-03", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11202002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03638890000, + 42.85527780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-sat 08:30-19:00", + "network": "Ford - Saumur", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZPEE22AC31929", + "owner:ref:FR:SIREN": "057202046", + "ref": "31929", + "start_date": "2020-03-04", + "description": "Ford - Saumur - 22KW ", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13570630000, + 47.22777880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS09E09268001", + "description": "SAINT LIZIER - Place Vigne De L'Eveche", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13720000000, + 43.00060000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "FDE 80/ENT7R39M9K", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS80P1616052713941150195", + "charging_station:output": "50 kW;22 kW", + "ref": "597717", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65116400000, + 50.00111500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*44*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST4413;FRIZFPFAST4412;FRIZFPFAST4411", + "start_date": "2024-01-31", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - MIRAMAS", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00001100000, + 43.58765400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2024-04-19", + "description": "HERIC - Rue Saint-Jean", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS44E44073003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65176725400, + 47.41187286000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-10", + "ref": "01F5ZAKH61FZ04WKXSKB4BZKFD", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77196001;FRS77P77196A", + "description": "Fresnes-sur-Marne;FRESNES-SUR-MARNE - Rue De L'Ourcq", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74426500000, + 48.93985700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "FRGYMP9120856926062210930", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "emobility.exploit@greenyellow.fr", + "capacity": "3", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "GreenYellow Shift Mobility/67", + "ref": "1018926", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72246700000, + 48.41559300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "network": "MODULO - VOUVRAY - Av. André Maginot", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E220439;FRS37E220438", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - VOUVRAY - Av. André Maginot", + "ref": "FRS37E220439;FRS37E220438" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79912260000, + 47.41115111000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "description": "CCTLB - Chenevières", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "5142108e-2083-585a-9383-5577cc29a6fb", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63263400000, + 48.51902400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "start_date": "2024-07-10", + "opening_hours": "24/7", + "network": "Vallée Carburants", + "socket:type2_combo:output": "120 kW", + "operator": "C4Energies", + "owner:ref:FR:SIREN": "337844559", + "operator:email": "contact@c4energies.com", + "description": "Vallée Carburants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09772000000, + 49.71463000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Mobilize Power Solutions", + "ref:EU:EVSE": "FRMBZEUDGVY;FRMBZEGQIVK;FRMBZEAPWQI;FRMBZEZGAIU", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "capacity": "1", + "description": "Edenauto Tarbes", + "opening_hours": "24/7", + "operator:email": "support@mobilize-ps.fr", + "ref": "d65d3090-6756-4b98-8b3d-0dc0a9d77808;eae4e07f-c084-4050-8bae-7b4cd17e212e;dc77279b-b0fb-41f2-b5b9-3729dee5e3d2;32682d9f-2a47-4a81-b69e-e612f5812feb", + "start_date": "2024-06-28", + "network": "PYRENEES AUTOMOBILES ", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04409900000, + 43.23410500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94076010", + "start_date": "2022-12-29", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VILLEJUIF - Boulevard Maxime Gorki", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36823667116, + 48.78922904124 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "STATION U BORNE 1", + "network": "STATION U BORNE 1", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6538095", + "ref:EU:EVSE": "FRCPIE6538095", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32369700000, + 43.72454000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLE2P1256064019543478741", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "472326", + "description": "Leclerc/QKLF8YQGSF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84835600000, + 46.74984400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Cestas | Bourg", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "a31f0472-7b07-55cd-859c-7e688b37bb86", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68462800000, + 44.74170700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-22", + "ref:EU:EVSE": "FRSEOPAB79049P0020A", + "operator:email": "bo_dgic@seolis.net", + "description": "Réseau AlterBase - Bressuire - Pôle Multimodal", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49713000000, + 46.83810300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-07-09", + "network": "DRIVECO", + "ref:EU:EVSE": "FRAIRPDJKY", + "capacity": "2", + "amenity": "charging_station", + "description": "Airbus Saint Martin Parking CSE", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37287900000, + 43.61171500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "LFR3240EVCP02;LFR3240EVCP01;LFR3240EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3240EVCP02;LFR3240EVCP01;LFR3240EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "PRINGY Fontainebleau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56045900000, + 48.52292800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "NICE - MADELEINE RP", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "start_date": "2019-01-23", + "ref:EU:EVSE": "FRM06PNICE4712;FRM06PNICE4711", + "ref": "FR*SOD*S*NICE*47*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23346454966, + 43.70453111619 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-12-19", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ18512;FRA16PWIIZ18511", + "ref": "FR*SOD*S*WIIZ*185*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "description": "REVEST LES ROCHES - PARKING VILLAGE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15624700000, + 43.88151300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P286124416755797748", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "description": "Freshmile France/NPEBXB9YXF", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "ref": "801636" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63698700000, + 43.19204600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Bricomarché - Segré", + "opening_hours": "24/7", + "start_date": "2024-03-08;2024-03-12", + "ref:EU:EVSE": "FRPD1PBRISGA", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89278317131, + 47.68877234091 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPAZPDRF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/AZPDRF;Moidieu-Detourbe, Mouterle", + "start_date": "2020-06-12", + "ref": "AZPDRF;75155" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01369000000, + 45.50540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "start_date": "2024-09-13", + "network": "ELECTRA", + "description": "Saint-Priest - KFC", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRELCPSPRKF", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94644000000, + 45.68575600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "13", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E31555051;FRP07E315550511", + "start_date": "2023-06-20", + "description": "TOULOUSE - Parking Arnaud Bernard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43922196459, + 43.61048115800 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPXXGOJ7R8NU;FREBNXXGOJ7R8NU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Roquebrune-sur-Argens, Allée du 15 Août 1944;Réseau eborn/XXGOJ7R8NU", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "79225;XXGOJ7R8NU", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64459500000, + 43.50125500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRECHP2471025176504890425", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "socket:type2_combo:output": "90 kW", + "ref": "749196", + "opening_hours": "24/7", + "description": "Easy Charge/HW9LNU9VCS", + "charging_station:output": "22 kW;90 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38538900000, + 47.70502600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRVIAP101109", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2022-12-22", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A71 L'Allier Saulzet", + "owner:ref:FR:SIREN": "909073363", + "charging_station:output": "300 kW;50 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80251500000, + 46.35728500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "50 kW;3 kW", + "ref:EU:EVSE": "FRFR1P6731743708032022819", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "346238", + "description": "Freshmile France/JDWNMZ", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971000000, + 44.85680000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "FR*V75*PPX10*01", + "description": "Paris | Rue Pierre Chausson 1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1001", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36004620000, + 48.87025670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "description": "Freshmile/XRB9PAWM7D", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "ref:EU:EVSE": "FRFR1P2209610906329309520", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1", + "ref": "529805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69528700000, + 45.25617100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2023-03-20", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPACTENAVOLVO920001", + "amenity": "charging_station", + "description": "Volvo - Actena Automobiles - Nanterre", + "opening_hours": "24/7", + "capacity": "11", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19509900000, + 48.88491500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "47680", + "description": "SYDED/Besacstjacq", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS25PBESACSTJACQ", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02107000000, + 47.23490000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - MARMAGNE - Gare T2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2024-07-12", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - MARMAGNE - Gare T2", + "ref:EU:EVSE": "FRS18E252267;FRS18E252268", + "ref": "FRS18E252267;FRS18E252268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28352900000, + 47.09994000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-08-30", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY03E78396005", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LE MESNIL-LE-ROI - Aire de Jeux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13162396677, + 48.93833946070 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*46*8*_*_;FR*SOD*S*QPRK*46*7*_*_;FR*SOD*S*QPRK*46*6*_*_;FR*SOD*S*QPRK*46*5*_*_;FR*SOD*S*QPRK*46*4*_*_;FR*SOD*S*QPRK*46*3*_*_;FR*SOD*S*QPRK*46*20*_*_;FR*SOD*S*QPRK*46*16*_*_;FR*SOD*S*QPRK*46*15*_*_;FR*SOD*S*QPRK*46*1*_*_;FR*SOD*S*QPRK*46*10*_*_;FR*SOD*S*QPRK*46*11*_*_;FR*SOD*S*QPRK*46*12*_*_;FR*SOD*S*QPRK*46*13*_*_;FR*SOD*S*QPRK*46*14*_*_;FR*SOD*S*QPRK*46*17*_*_;FR*SOD*S*QPRK*46*18*_*_;FR*SOD*S*QPRK*46*19*_*_;FR*SOD*S*QPRK*46*2*_*_;FR*SOD*S*QPRK*46*9*_*_", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRQPKPQPRK4691;FRQPKPQPRK4681;FRQPKPQPRK4661;FRQPKPQPRK4631;FRQPKPQPRK4621;FRQPKPQPRK46201;FRQPKPQPRK46191;FRQPKPQPRK46161;FRQPKPQPRK4611;FRQPKPQPRK46101;FRQPKPQPRK46111;FRQPKPQPRK46121;FRQPKPQPRK46131;FRQPKPQPRK46141;FRQPKPQPRK46151;FRQPKPQPRK46171;FRQPKPQPRK46181;FRQPKPQPRK4641;FRQPKPQPRK4651;FRQPKPQPRK4671", + "start_date": "2024-07-30;2022-11-22;2022-11-21", + "description": "QPARK - SARTROUVILLE - LAMARTINE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15747900000, + 48.93829100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2017-03-17", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "CASTELNAU DE LEVIS - Rue Sicard Alaman", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8106300111;FRS81E8106300112;FRS81E8106300121;FRS81E8106300122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08568783533, + 43.93822409203 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-11-29", + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE409900", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "description": "IONITY Arclusaz", + "ref": "FRIONE409900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15826500000, + 45.54878800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "ref:EU:EVSE": "FRS50P50640001", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "LE TEILLEUL - Place de l'Eglise", + "start_date": "2017-05-24", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87462680000, + 48.53802510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2016-09-07;2023-05-16", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH61SRQ9A5PY53130HYM", + "description": "VALENCE-EN-BRIE - Place De L'Église;Valence-en-Brie", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS77E77480001;FRS77P77480A", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89133900000, + 48.44434000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531681703;531681700;531681701;531681702", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "description": "RELAIS DE CUSE ET ADRISANS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080139", + "start_date": "2024-01-25;2023-12-06", + "ref": "FRHPCPNF080139", + "capacity": "4", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38040000000, + 47.48130000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E243164;FRS41E243163", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS41E243164;FRS41E243163", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - COUETRON AU PERCHE - Rue de la mairie", + "network": "MODULO - COUETRON AU PERCHE - Rue de la mairie", + "start_date": "2024-04-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86354800000, + 48.03584700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Vannes - Rue du Commerce", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2017-10-13", + "ref:EU:EVSE": "FRS56PTLSDKV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75489100000, + 47.64214300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "start_date": "2023-12-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON19811;FRGLYPLYON19812", + "description": "LY312 - SAXE - PREFECTURE", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*198*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84609441901, + 45.76093114209 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "start_date": "2022-09-30", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92040B", + "network": "METROPOLIS", + "description": "Metropolis - Express - Issy-les-Moulineaux - Guynemer (50)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27441884000, + 48.82816072000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "opening_hours": "Mo 08:30-19:00, Tu 08:30-19:00, We 08:30-19:00, Th 08:30-19:00, Fr 08:30-19:00, Sa 09:00-19:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSPEUGEOT511001", + "start_date": "2020-01-06", + "description": "Peugeot - HESS - Reims", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08232000000, + 49.23965800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "start_date": "2022-12-07", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SAINTE MARGUERITE SUR DUCLAIR - Route de saint paër", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76608001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84178100000, + 49.51009000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/U4PSSV51LQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P8763063618018858695", + "ref": "454335", + "network": "Leclerc", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86452700000, + 50.44629900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Marcheprime | Rue de la Gare", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "f7e7d116-0daa-544a-b5c6-3b6fbcb0063b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85433000000, + 44.69049500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS95E95572006", + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "SAINT OUEN L'AUMONE - Rue de Flandre", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-08-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11109200000, + 49.03737800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Green To Wheel", + "description": "ABBEVILLE", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-07-17", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "network": "ABBEVILLE", + "ref:EU:EVSE": "FRALLPBER025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86847500000, + 50.09583100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "ref:EU:EVSE": "FRLE2P99985835539317794", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446675", + "description": "Leclerc/BTSTFI6AAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923600000, + 43.41121400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "description": "Cabries, rue Roumavage", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PEEFI9CMTW1", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35280600000, + 43.45994400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P6770809340181303595", + "ref": "488904", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/WGS1UBRXZZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37534300000, + 47.68360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRA16PWIIZ3611;FRA16PWIIZ3612", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-06-13", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GOURDON VILLAGE - PARKING DE LA FERRAGE", + "ref": "FR*SOD*S*WIIZ*36*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97758800000, + 43.72079500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/JWVTOWOSAH", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "472215", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7945509003379293086" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74427300000, + 48.55353400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRPD1PRLCALB", + "description": "Résidence Le Catalogne - Amélie-les-Bains-Palalda", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-08-01", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67147730000, + 42.48052840000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Riorges, Parking Place Jean Cocteau", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPYU5FX9XNFJ", + "ref": "YU5FX9XNFJ", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03503910000, + 46.04340680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FREVZP7286336341163451659", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "EVzen/A9F3D468-D9B1-475A-8778-8987F2697F5B", + "capacity": "4", + "opening_hours": "24/7", + "ref": "1129791", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50978400000, + 43.54187000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR64011;FROTHPOTHR64012", + "start_date": "2023-05-25", + "capacity": "2", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "INTERMARCHE - VILLARD-DE-LANS", + "ref": "FR*SOD*S*OTHR*640*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55839500000, + 45.08795900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/AGUITTXLTF;Les Deux Alpes, Rue De La Muzelle", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "AGUITTXLTF;106937", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPAGUITTXLTF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483000000, + 45.01322700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Musièges, Za Des Bonnets;Réseau eborn/WOVHVSVADV", + "ref": "94466;WOVHVSVADV", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPWOVHVSVADV", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94401000000, + 46.01630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "CREPS DE POITIERS", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*333*2*_*_;FR*SOD*S*OTHR*333*1*_*_", + "start_date": "2022-03-10", + "ref:EU:EVSE": "FROTHPOTHR33321;FROTHPOTHR33311", + "operator:email": "sav@izivia.com", + "description": "CREPS DE POITIERS - PARKING 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26448500000, + 46.58109600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1427426408903224354", + "ref": "1017030", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLPWNPQ1G1NYL3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35079200000, + 48.92559100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*V75*PPX15*33", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Paris | Rue de Vouillé 47", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRV75PPX1533", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2021-11-09", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30813440000, + 48.83388720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892233", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P3853071145218077557", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLIVPB6339QPTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95194000000, + 48.76343300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAIRIEMERIA202872", + "description": "Méria - Parking Marine", + "start_date": "2023-04-04", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.46302400000, + 42.93351600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "description": "900084", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PALIZAYSABLONS", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17900500000, + 49.32046800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "ref:EU:EVSE": "FRS22E22114001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Lanrelas-Place Saint Fiacre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29439900000, + 48.25291800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "CHAMBOURCY - Rue André Derain", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY36E78133002", + "network": "Seymaborne", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03848340000, + 48.90710900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "description": "Yesss_Armentiere", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE238", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "start_date": "2022-02-16", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89397200000, + 50.65749100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-09-08", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BREUIL BOIS ROBERT - Mairie", + "ref:EU:EVSE": "FRY01E78104001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71466700000, + 48.94492450000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Arclusaz", + "ref:EU:EVSE": "FRIOYE409953;FRIOYE409905;FRIOYE409904;FRIOYE409901;FRIOYE409906;FRIOYE409951;FRIOYE409952", + "network": "Arclusaz", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "ref": "FRIOYE409953;FRIOYE409905;FRIOYE409904;FRIOYE409901;FRIOYE409906;FRIOYE409951;FRIOYE409952", + "start_date": "2020-09-12", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15817370000, + 45.54878350000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDED52/KAEYN5LYTA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "248266", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref:EU:EVSE": "FRS52P3354562597912567263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77070100000, + 48.47764000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2022-03-02;2022-11-23", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "11", + "network": "Reveo", + "ref:EU:EVSE": "FRS65E654170011;FRS65E65417001", + "description": "SEMEAC - Aire De Covoiturage Autoroute", + "charging_station:output": "7 kW;18 kW;50 kW;22 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11091000000, + 43.21363000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE004902;FRIENE004901", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE004902;FRIENE004901", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-03-06", + "network": "Domfront", + "description": "Domfront" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62306702000, + 48.59576382000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "SETE - Parking piscine Fonquerne", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-11-23", + "ref:EU:EVSE": "FRS34E34301004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66130700000, + 43.39815600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-BELLE-002", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS61P611038B", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "description": "BELLEME - Place du Général Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55558470000, + 48.37678080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1146669737951001982", + "ref": "1026843", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLHUAQ2MC2JQEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01193800000, + 49.22564600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Sengouagnet", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "start_date": "2017-12-15", + "ref:EU:EVSE": "FRS31PSJTZZY", + "ref": "SJTZZY", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78860000000, + 42.98470000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "start_date": "2020-11-25;2023-05-17", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRSSDPCOCHETVOLVO741001", + "description": "Volvo - Annemasse", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26669900000, + 46.20096900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000111;FRCG0E000110;FRCG0E000109;FRCG0E000112;FRCG0E000113", + "capacity": "5", + "description": "BMW - ENVERGURE SABLES D'OLONNE - 85180 - 2", + "amenity": "charging_station", + "start_date": "2023-03-04", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000111;FRCG0E000110;FRCG0E000109;FRCG0E000112;FRCG0E000113", + "network": "BMW - ENVERGURE SABLES D'OLONNE - 85180 - 2", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74888300000, + 46.49057700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2019-01-17", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE1111;FRM06PNICE1112", + "description": "NICE - CALIFORNIE RP", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*11*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24428300000, + 43.69031100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Mont de Marsan | Parking Stade Guy Boniface", + "network": "CPO CITEOS Mobive", + "ref": "973a56a9-aca2-5984-a550-7783e3b8ae20", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45935400000, + 43.89563000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "CITROEN - PEILLAC", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE56PABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18616900000, + 47.71450800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS223745;FRBMPS223744", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Mordelles", + "ref": "223744;223745", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83637820000, + 48.07932570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR4112EVCP01;LFR4112EVCP02;LFR4112EVCP03", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR4112EVCP01;LFR4112EVCP02;LFR4112EVCP03", + "description": "BRIEY -Gambetta", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94410000000, + 49.24033100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PLBZJ2E4Z2Z", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-6E, Cours Lieutaud", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38441700000, + 43.28836100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "description": "TE90/ZEDVRB", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "ref": "135595", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "TE90", + "ref:EU:EVSE": "FRS90PZEDVRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86041300000, + 47.63694900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-15", + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P83580*GAS*TOURISME", + "description": "OFFICE DU TOURISME - GASSIN", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP83580GASTOURISME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58571300000, + 43.23023900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3139EVCP02;LFR3139EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "SALEILLES Mas alart", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3139EVCP02;LFR3139EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95296400000, + 42.66013800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUSMH", + "start_date": "2023-03-16", + "description": "Super U - Sainte-Menehould", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90324600000, + 49.09066100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Voiron, Hotel Best Western", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPPJVJCPOJL2", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref": "PJVJCPOJL2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56983680000, + 45.35003880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFASE33203", + "operator": "Fastned France", + "capacity": "8", + "amenity": "charging_station", + "start_date": "2023-11-28", + "description": "Fastned La Croix Blanche", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRFASE33203", + "owner:ref:FR:SIREN": "853300010", + "network": "Fastned La Croix Blanche", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35130425000, + 48.62308114000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP000000007069", + "capacity": "2", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "amenity": "charging_station", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "owner:ref:FR:SIREN": "434543864", + "charging_station:output": "22 kW", + "network": "Armstrong France", + "operator:email": "maximilien.kauffmann@wallbox.com", + "start_date": "2022-09-19", + "description": "Armstrong France", + "operator": "electromaps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95923635244, + 45.04829130404 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "75221;XTOLYUEL6R", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPXTOLYUEL6R", + "start_date": "2020-06-21", + "description": "Evian-Les-Bains, Place des Allinges;Réseau eborn/XTOLYUEL6R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58711000000, + 46.40099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPS17UEJU18E", + "description": "Le Pont-De-Beauvoisin, Avenue Docteur Pravaz", + "ref": "S17UEJU18E", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67147250000, + 45.53460560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "COMMUNE DOYONNAX - OYONNAX", + "socket:type2_combo:output": "50 kW", + "network": "COMMUNE DOYONNAX", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*454*1*_*_", + "start_date": "2022-11-10", + "ref:EU:EVSE": "FROTHPOTHR45412;FROTHPOTHR45411", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65432700000, + 46.25492700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1026708", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2074814290795655022", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLRKQETMZNPGO3", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01538700000, + 43.22602500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "description": "UBI-LHSM-199", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-03-08", + "ref": "setp0100000181", + "ref:EU:EVSE": "FRUBIE10010679;FRUBIE10005486" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18783300000, + 49.51805600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "412055", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P8795616222875703943", + "description": "Freshmile France/FNL0YUZD9U", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39804400000, + 48.75665700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "180 kW;90 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-07-29;2022-07-27", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRTLSE31149049", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW;90 kW;180 kW", + "network": "CPO Alizé Liberté Public", + "description": "COLOMIERS - 2 Allée d'Occitanie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33349000000, + 43.61001000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1832499165392118186", + "ref": "756969", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JT5A7AZZL4", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79347700000, + 45.35693100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1084821", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS14P1919693783909093008", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLW67E3W72M97T", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.08071400000, + 49.36803500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576206;576209;a18499ea-9275-4f70-86af-e7b3c158dfa8;942948", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "498071059", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP0095A6;Best Hotel Rouen-Est / Val De Reuil;Zephyre/LP009577;Zephyre/LP009576", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "ref:EU:EVSE": "FRZP1P151002;FRZP1P129727;FRZP1P8741682888623835663;FRZP1P129723;FRZP1P7689535459425102416;FRZP1P7609119773595220428", + "network": "Best Hotel Rouen-Est / Val De Reuil;Zephyre", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18430900000, + 49.24865200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "100 kW;18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS11E113530013;FRS11E11353001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02;0001-01-01", + "description": "SAINT-MARCEL-SUR-AUDE - Parking Avenue De Saint Pons", + "network": "Reveo", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91802611111, + 43.24768190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-10-12", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "BAILLY - Gri de Maintenon", + "ref:EU:EVSE": "FRY03E78043003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08720000000, + 48.83851000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "39__CCBP", + "capacity": "2", + "description": "CCBP - Pompey - Parking 1", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "18432208-2da1-5209-abc3-49072522dbde", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13206300000, + 48.77127800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS66E66222001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VERNET LES BAINS - 8 Boulevard De Cady", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2017-07-22", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38850800000, + 42.54648600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIKAPIKEA19271;FRIKAPIKEA19261;FRIKAPIKEA19251;FRIKAPIKEA192471;FRIKAPIKEA192461;FRIKAPIKEA192381;FRIKAPIKEA192371;FRIKAPIKEA192321;FRIKAPIKEA19231;FRIKAPIKEA192291;FRIKAPIKEA192281;FRIKAPIKEA192251;FRIKAPIKEA192211;FRIKAPIKEA19221;FRIKAPIKEA192191;FRIKAPIKEA192181;FRIKAPIKEA192161;FRIKAPIKEA192151;FRIKAPIKEA192141;FRIKAPIKEA192121;FRIKAPIKEA19211;FRIKAPIKEA192101;FRIKAPIKEA192111;FRIKAPIKEA192131;FRIKAPIKEA192171;FRIKAPIKEA192201;FRIKAPIKEA192221;FRIKAPIKEA192231;FRIKAPIKEA192241;FRIKAPIKEA192261;FRIKAPIKEA192271;FRIKAPIKEA192301;FRIKAPIKEA192311;FRIKAPIKEA192331;FRIKAPIKEA192341;FRIKAPIKEA192351;FRIKAPIKEA192361;FRIKAPIKEA192391;FRIKAPIKEA192401;FRIKAPIKEA19241;FRIKAPIKEA192411;FRIKAPIKEA192421;FRIKAPIKEA192431;FRIKAPIKEA192441;FRIKAPIKEA192451;FRIKAPIKEA19281;FRIKAPIKEA19291", + "capacity": "1", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2023-12-15;2024-05-13", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IKEA*192*8*_*_;FR*SOD*S*IKEA*192*46*_*_;FR*SOD*S*IKEA*192*42*_*_;FR*SOD*S*IKEA*192*4*_*_;FR*SOD*S*IKEA*192*39*_*_;FR*SOD*S*IKEA*192*38*_*_;FR*SOD*S*IKEA*192*37*_*_;FR*SOD*S*IKEA*192*33*_*_;FR*SOD*S*IKEA*192*28*_*_;FR*SOD*S*IKEA*192*26*_*_;FR*SOD*S*IKEA*192*25*_*_;FR*SOD*S*IKEA*192*24*_*_;FR*SOD*S*IKEA*192*23*_*_;FR*SOD*S*IKEA*192*22*_*_;FR*SOD*S*IKEA*192*20*_*_;FR*SOD*S*IKEA*192*17*_*_;FR*SOD*S*IKEA*192*14*_*_;FR*SOD*S*IKEA*192*13*_*_;FR*SOD*S*IKEA*192*12*_*_;FR*SOD*S*IKEA*192*10*_*_;FR*SOD*S*IKEA*192*1*_*_;FR*SOD*S*IKEA*192*11*_*_;FR*SOD*S*IKEA*192*15*_*_;FR*SOD*S*IKEA*192*16*_*_;FR*SOD*S*IKEA*192*18*_*_;FR*SOD*S*IKEA*192*19*_*_;FR*SOD*S*IKEA*192*2*_*_;FR*SOD*S*IKEA*192*21*_*_;FR*SOD*S*IKEA*192*27*_*_;FR*SOD*S*IKEA*192*29*_*_;FR*SOD*S*IKEA*192*30*_*_;FR*SOD*S*IKEA*192*3*_*_;FR*SOD*S*IKEA*192*31*_*_;FR*SOD*S*IKEA*192*32*_*_;FR*SOD*S*IKEA*192*34*_*_;FR*SOD*S*IKEA*192*35*_*_;FR*SOD*S*IKEA*192*36*_*_;FR*SOD*S*IKEA*192*40*_*_;FR*SOD*S*IKEA*192*41*_*_;FR*SOD*S*IKEA*192*43*_*_;FR*SOD*S*IKEA*192*44*_*_;FR*SOD*S*IKEA*192*45*_*_;FR*SOD*S*IKEA*192*47*_*_;FR*SOD*S*IKEA*192*5*_*_;FR*SOD*S*IKEA*192*6*_*_;FR*SOD*S*IKEA*192*7*_*_;FR*SOD*S*IKEA*192*9*_*_", + "description": "IKEA METZ - PARKING CLIENTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18811390000, + 49.14993760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RENNES - 1 rue croix de mine", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "start_date": "2023-01-01", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35238011B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69702500000, + 48.12911400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63055A", + "description": "SIEG63 - ePremium - Bromon Lamothe - Combrailles", + "start_date": "2022-09-21", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81957800000, + 45.83807750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "485145", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/SMHAP34DRI", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW", + "ref:EU:EVSE": "FRFR1P19136986218638863" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17955000000, + 43.92849000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-23", + "ref:EU:EVSE": "FRS31PLLNBPDA2RW1LWL", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "ref": "ZHPN", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Arbas", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90712848512, + 42.99601612717 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PANTIN - Avenue Anatole France", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSIPE93055002", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42532300000, + 48.89486200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001042;FRCG0E001041", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCG0E001042;FRCG0E001041", + "start_date": "2024-05-25", + "network": "Groupe Fabre - Volkswagen Aurillac - 15000 - 1", + "description": "Groupe Fabre - Volkswagen Aurillac - 15000 - 1", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42569500000, + 44.91045200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-03", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE22712;FRM06PNICE22711", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*227*1*_*_", + "description": "NICE - PARKING 125 PASTEUR", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27903623401, + 43.71233392543 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Fourques Sur Garonne | Bourg", + "ref": "db65460f-dddc-5b2d-a49c-ecd61568de05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15944400000, + 44.44861200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*368*1*_*_", + "start_date": "2023-03-01", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIGEIF - CHEMIN RURAL DES CHENNEVIERES PARKING DU DOJO - HERBLAY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE36811;FRSIGPSIGE36812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14504540000, + 48.99812720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRC01E76322002", + "start_date": "2022-11-14", + "description": "GRAND QUEVILLY - Place Eugène Delacroix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04392110000, + 49.40193960000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR3798EVCP03", + "charging_station:output": "120 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "VALENTIGNEY", + "ref": "LFR3798EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84170100000, + 47.46227800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "7e1c9939-2aef-5760-adcf-b2b7ffec1020", + "operator": "193__Syndicat de la Diège", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Meymac Porrots | Place des Porrots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14556000000, + 45.53509000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PBOURGDEVISA", + "ref": "38941", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "SDE82/bourgdevisa", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95683100000, + 44.26190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-02-14", + "owner:ref:FR:SIREN": "832489801", + "ref": "FR*55C*P84300*CVL*VERDUN", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84300CVLVERDUN", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "description": "PARKING VERDUN - CAVAILLON", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03995800000, + 43.83379500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "QUESTEMBERT Azalées", + "ref": "LFR3768EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR3768EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44724000000, + 47.66816000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Lombez", + "start_date": "2024-06-21", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "ref:EU:EVSE": "FRPD1PITMLBZ", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92297056945, + 43.47021861855 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Châbons, Rue de la Poste;Réseau eborn/UWVSZLJ2WU", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPUWVSZLJ2WU", + "ref": "UWVSZLJ2WU;30104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42419000000, + 45.44331300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP69072A", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "description": "e-Totem - DASSIN Première Classe Dardilly", + "opening_hours": "24/7", + "ref": "FRETIP69072A", + "operator:email": "contact@e-totem.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75964384954, + 45.82149060735 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "description": "Chaussea - Trignac", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PCHATRG", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21131674824, + 47.29973142221 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "description": "Carrefour Market L'Arbresle", + "ref:EU:EVSE": "FRDRVPDNWY", + "operator:email": "support@driveco.com", + "start_date": "2024-05-15", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60594700000, + 45.82401000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPNGOPC", + "start_date": "2023-11-16", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "charging_station:output": "300 kW", + "description": "Noyelles-Godault - Hôtel Première Classe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98598100000, + 50.41234300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-07-25;2023-01-26", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "ref:EU:EVSE": "FROTHPOTHR56833;FROTHPOTHR56832;FROTHPOTHR56831;FROTHPOTHR56822;FROTHPOTHR56821;FROTHPOTHR56811;FROTHPOTHR56812", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*568*1*_*_;FR*SOD*S*OTHR*568*2*_*_;FR*SOD*S*OTHR*568*3*_*_", + "capacity": "2;3", + "description": "INTERMARCHE - BASSE HAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21915000000, + 49.37360600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SONEPAR AUBENAS 2", + "network": "SONEPAR AUBENAS 2", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6755645", + "start_date": "2023-08-01", + "ref": "FRCPIE6755645" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39516100000, + 44.60976600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRFR1P2232596186157631441", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLJ2SO4A72F2W9", + "opening_hours": "24/7", + "ref": "892329", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58943700000, + 49.01898500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "amenity": "charging_station", + "description": "Paris | Rue de Rennes 66", + "start_date": "2021-12-13", + "ref": "FR*V75*P9006*03", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900603", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33134600000, + 48.85212600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7356941351136346447", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "597951", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/O3RJPKY0UW", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87844800000, + 48.94033100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "description": "Tesla Supercharger Macon", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "20", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1732", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84865500000, + 46.34654200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/AHSA5KVF5H", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "510440", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P4063401988664923484", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63353400000, + 47.23003800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "contact@nexteneo.com", + "amenity": "charging_station", + "description": "Ville d'Annecy - Hôtel de ville", + "ref:EU:EVSE": "FR0NXPOOLHFX48", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "NEXTENEO", + "network": "Ville d'Annecy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12871600000, + 45.90000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "457557", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P6423560728339364528", + "description": "MobiSDEC/RKAVXVKURO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25078100000, + 49.27881200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12206001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ROUSSENNAC - Le Bourg - Route de Bournazel - D525", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-06-29", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25484900000, + 44.45488900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA5P7588397036717408997", + "amenity": "charging_station", + "capacity": "1", + "ref": "932037", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LGDINQAYP", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68419400000, + 48.10188400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS49P49308B;FRS49E49308002", + "amenity": "charging_station", + "capacity": "1", + "description": "OuestCharge - Quick Charger Evtronic - Saint-Melaine-sur-Aubance - Treillebois;SAINT-MELAINE-SUR-AUBANCE - Aire Co Treillebois", + "start_date": "2024-04-10;2021-09-15", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "50 kW;43 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51432700000, + 47.40051500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-09-05", + "ref:EU:EVSE": "FRS81E81087001", + "charging_station:output": "22 kW", + "description": "FAYSSAC - Place Des Marronniers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97238920000, + 43.95317390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS PARIS PORTE ST CLOUD", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "4", + "ref": "FRHPCPNF006784", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF006784", + "start_date": "2024-02-09", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681736;531681738;531681737;531681739", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25351300000, + 48.83866800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46064001", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CATUS - Quai du vert", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33507000000, + 44.55567700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65031001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "ARREAU - Place de l’Arbizon", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36060000000, + 42.90469000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH03E59606002", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-03-01", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "VALENCIENNES - Place du Hainaut" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52307000000, + 50.36041300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E2919600", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Plouguin-Rue Paotr Treoure" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.60202500000, + 48.52508200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "NOGENT SUR MARNE - Route De Stalingrad", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-12-28", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94052005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47996189000, + 48.84185083000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "description": "ENGIE Vianeo - B&B HOTEL TROYES BARBEREY", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2024-06-11", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90294331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03200600000, + 48.32628800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "description": "MOBIVE | Neuvic | Place du Chapdal", + "opening_hours": "24/7", + "ref": "5b41863c-dd8b-519e-a999-d295943389d3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46895300000, + 45.10133400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE47812;FRSIGPSIGE47811", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - PLACE DE LA COMEDIE - NOISY-LE-GRAND", + "start_date": "2024-04-05", + "ref": "FR*SOD*S*SIGE*478*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55187840000, + 48.84711080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-06-29", + "description": "SAINT JEAN DE VEDAS", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "ref:EU:EVSE": "FRALLPEVCARSSTJVD", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84721000000, + 43.57237000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "network": "ITM ST GEORGES DE MONS;ITM CREPY EN VALOIS 2;ITM CREPY EN VALOIS 1", + "ref:EU:EVSE": "FRLIBP003740000001861;FRLIBP003740000001823;FRLIBP003740000001825", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "FRLIBP003740000001861;FRLIBP003740000001823;FRLIBP003740000001825", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "description": "ITM CREPY EN VALOIS 2;ITM CREPY EN VALOIS 1;ITM ST GEORGES DE MONS", + "capacity": "1;3", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40026590000, + 49.38197470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "59ff39c4-52ef-5b27-9f03-dc7fd2a59ebe", + "network": "CPO CITEOS Mobive", + "capacity": "2", + "description": "MOBIVE | Laruns | Parking Mediatheque", + "amenity": "charging_station", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42809900000, + 42.98743400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85047003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-22", + "charging_station:output": "22 kW", + "description": "CHALLANS - Place De L'Europe", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88028000000, + 46.84565000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Allego FR, Drome Energie, TV6 Valence Sud", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO8009061;FRALLEGO8009052;FRALLEGO8009051;FRALLEGO8007031;FRALLEGO8007032;FRALLEGO8009041;FRALLEGO8009042;FRALLEGO8009062;FRALLEGO8009071;FRALLEGO8009072;FRALLEGO8009081;FRALLEGO8009082;FRALLEGO8009091;FRALLEGO8009092", + "ref": "FRALLEGO8009061;FRALLEGO8009052;FRALLEGO8009051;FRALLEGO8007031;FRALLEGO8007032;FRALLEGO8009041;FRALLEGO8009042;FRALLEGO8009062;FRALLEGO8009071;FRALLEGO8009072;FRALLEGO8009081;FRALLEGO8009082;FRALLEGO8009091;FRALLEGO8009092", + "capacity": "14", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego FR, Drome Energie, TV6 Valence Sud", + "start_date": "2024-07-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86839900000, + 44.90233400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3865EVCP07;LFR3865EVCP02;LFR3865EVCP01;LFR3865EVCP03;LFR3865EVCP04;LFR3865EVCP05;LFR3865EVCP06", + "operator:email": "bornes@lidl.fr", + "capacity": "7", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3865EVCP07;LFR3865EVCP02;LFR3865EVCP01;LFR3865EVCP03;LFR3865EVCP04;LFR3865EVCP05;LFR3865EVCP06", + "description": "GEX - Transporteurs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07381200000, + 46.33791700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "description": "La Foir'Fouille - Bergerac", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PLABERA;FRPD1PLABERK", + "capacity": "1;8", + "start_date": "2024-09-27;2024-06-04", + "operator": "Power Dot France", + "socket:type2_combo:output": "187.5 kW", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "187.5 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45486026442, + 44.83666679686 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "492168;ORQZ0JAUKA", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/ORQZ0JAUKA;Yzeure, Route de Lyon - Parking des Halles", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNPORQZ0JAUKA;FREBNP7219509071240971694" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34381000000, + 46.54197000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "HYUNDAI CENTRAL AUTOS ST FONS", + "ref:EU:EVSE": "FREVMP7951", + "network": "CENTRAL MOTOR ST FONS", + "owner:ref:FR:SIREN": "780096376", + "operator": "EV MAP SAS", + "amenity": "charging_station", + "charging_station:output": "60 kW", + "capacity": "3", + "opening_hours": "Mo-Fr 08:00-19:00", + "socket:type2_combo:output": "60 kW", + "operator:email": "contact@evmap.fr", + "start_date": "2024-01-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84791300000, + 45.71584880000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2024-01-12;2024-01-15", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PETXFYT", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Kiabi - Saint-Quentin", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25513003988, + 49.85913668061 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "HERVE THERMIQUE", + "ref": "VRT_003418;VRT_003417;VRT_003416;VRT_003415", + "capacity": "2", + "amenity": "charging_station", + "description": "HERVE THERMIQUE JOUE LES TOURS", + "opening_hours": "Mo-Fr 08:00-17:00", + "owner:ref:FR:SIREN": "627220049", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "start_date": "2021-08-25", + "charging_station:output": "22 kW", + "operator:email": "bornederecharge@herve-thermique.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65482600000, + 47.35395800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEMOB Hôpital Nord", + "start_date": "2019-07-23", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "ref": "FRESEPS42275AA", + "charging_station:output": "22 kW", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42275AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36423900000, + 45.47926300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "ES B2G", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ES/ PARKING DU CAIRE", + "ref:EU:EVSE": "FROTHPOTHR13712;FROTHPOTHR13711", + "ref": "FR*SOD*S*OTHR*137*1*_*_", + "start_date": "2021-09-24", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76934400000, + 48.80356900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "SOLERO STATION 5", + "ref:EU:EVSE": "FRCPIE6932315;FRCPIE6932305", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "SOLERO STATION 5", + "operator:email": "info@chargepoint.com", + "start_date": "2024-05-02", + "ref": "FRCPIE6932315;FRCPIE6932305" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14372100000, + 48.01483500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLP6SEG1G226UM", + "ref:EU:EVSE": "FRFR1P7321846670627269196", + "operator:email": "roaming@freshmile.com", + "ref": "972023", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76237200000, + 45.61920100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-05-30", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "description": "ENGIE Vianeo - Hôtel Campanile Perpignan Sud", + "ref:EU:EVSE": "FRVIAP121054", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88540000000, + 42.66390000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892353", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLJ5RGFW83IU2L", + "ref:EU:EVSE": "FRFR1P1364156089625975162", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31526200000, + 44.93999100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPCMQZ", + "capacity": "4", + "charging_station:output": "22.08 kW", + "start_date": "2024-04-02", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Autosphere Center La Teste-de-Buch", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 08:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13027700000, + 44.61060400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "510473", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8191128784119452895", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ETLUKKUNU7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47535400000, + 46.37295300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E129291", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - ALLUYES - Av. Chevallier Debeausse", + "charging_station:output": "0 kW", + "ref": "FRS28E129291", + "opening_hours": "24/7", + "operator": "Modulo", + "description": "MODULO - ALLUYES - Av. Chevallier Debeausse", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36428700000, + 48.22926300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1151760", + "description": "MobiSDEC/LLV6P7XX611TZW", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P3632742473926756619", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40010000000, + 49.18941900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1128039", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA9P7137734041210752304", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWA6LARSAF1X8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35710000000, + 47.33950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-22", + "ref:EU:EVSE": "FRS50P50340002", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "LES PIEUX - Mairie", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80938070000, + 49.51280510000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "description": "RAYSSAC - Place du Village", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-15", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8122100122;FRS81E8122100121;FRS81E8122100111;FRS81E8122100112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41473889116, + 43.81795170637 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF069303", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "531681027;531681028;531681026;531681025", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF069303", + "network": "TotalEnergies Charge Rapide", + "description": "REL.ERBREE", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2023-03-23;2023-01-05" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09840000000, + 48.09020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "ref:EU:EVSE": "FRS49E49007028;FRS49P49007AB", + "amenity": "charging_station", + "start_date": "2024-04-04;2024-04-05;2021-04-08", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Angers - Marianne;ANGERS - Boulevard de la Marianne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52507400000, + 47.45235000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "description": "Mouv'Oise/CREVECOEUR", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS60PCREVECOEUR", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref": "46627" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07703000000, + 49.60730000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH07E59227001", + "description": "FENAIN - Place des Fusilles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30038900000, + 50.36618000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BELLEGARDE - Rue Fanfonne Guillerme", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30034001", + "start_date": "2022-02-12", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51538000000, + 43.75558500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PQQYWJL", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "description": "Plouray - Rue d'Elle", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-11-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38935900000, + 48.14525600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "description": " Station Garage des Ducs de Lorraine", + "operator": "Bornevo Connect", + "amenity": "charging_station", + "start_date": "2023-12-28", + "network": "Bornevo Connect", + "charging_station:output": "50 kW", + "capacity": "3", + "ref:EU:EVSE": "FRLMSE1234610123", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "482197811", + "ref": "BOR-DBTCOMP50-0001", + "operator:email": "contact@bornevo.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48000000000, + 48.60000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93066C", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Saint-Denis - Jesse Owens;Métropolis/FR*MGP*P93066*C", + "opening_hours": "24/7", + "ref": "484820", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2022-06-03", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36445400000, + 48.92511400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "Shell Recharge", + "operator:email": "customerservice@shellrecharge.com", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "charging_station:output": "50 kW;300 kW;125 kW;44 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "opening_hours": "24/7", + "start_date": "2024-04-10", + "description": "Shell Aire de la plaine du Forez Ouest HW", + "ref": "FRSHEE158;FRSHEE157;FRSHEE221", + "ref:EU:EVSE": "FRSHEE158;FRSHEE157;FRSHEE221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15461800000, + 45.68256200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "35bb1501-eefa-4449-83d4-b795f4bd4880", + "amenity": "charging_station", + "capacity": "1", + "operator": "AUTORECHARGE", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "ref:EU:EVSE": "FRAU1E0034011", + "charging_station:output": "22 kW", + "description": "Garage Malard", + "operator:email": "contact@autorecharge.fr", + "start_date": "2022-11-01", + "network": "Infrastructures de recharge pour véhicules électriques (organisation AUTORECHARGE)", + "owner:ref:FR:SIREN": "672009628" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38411325065, + 48.90602152741 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "start_date": "2023-02-24", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "socket:type2_combo:output": "300 kW", + "description": "ENGIE Vianeo - A10 Châtellerault-Antran", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89369716" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52243700000, + 46.90685800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Châteauponsac | Place Xavier Mazurier", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "dc2297a7-b02c-5edc-8e23-efd03e987d5d", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27651000000, + 46.13405900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "description": "LE COUDRAY SAINT GERMER - Centre", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE60CABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84027900000, + 49.41304500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "ref": "FRALLEGO9006242;FRALLEGO9006241;FRALLEGO9006092;FRALLEGO9000962;FRALLEGO9000942;FRALLEGO9000941;FRALLEGO9000961;FRALLEGO9006091", + "capacity": "8", + "amenity": "charging_station", + "description": "Allego Carrefour Chalon Nord", + "network": "Allego Carrefour Chalon Nord", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9006242;FRALLEGO9006241;FRALLEGO9006092;FRALLEGO9000942;FRALLEGO9000941;FRALLEGO9000961;FRALLEGO9000962;FRALLEGO9006091", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84800820000, + 46.79864500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3649EVCP02;LFR3649EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3649EVCP02;LFR3649EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "Noeux-les-Mines Blum" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68097600000, + 50.47688800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "ref:EU:EVSE": "FRM13PA4UPFN0L2I", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-13E, Avenue Escadrille Normandie Niemen", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41021000000, + 43.33595000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/TFDWRB", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPTFDWRB", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref": "230941", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35087600000, + 44.41307000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "971921", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLNOE20ZL2A83A", + "ref:EU:EVSE": "FRFR1P6991867503794848921", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45326300000, + 49.10407300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PIMCVER", + "start_date": "2023-02-23", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "capacity": "9", + "description": "B&M - Vernouillet", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37046136071, + 48.71860088248 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "N4XGHTVSZH;75233", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPN4XGHTVSZH", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Groisy, Stade;Réseau eborn/N4XGHTVSZH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16856000000, + 46.00947000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Road/6618ed7924776a001cb1202a", + "ref": "1090671", + "network": "Road", + "ref:EU:EVSE": "FREFLP1053029331434865343", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57032700000, + 47.20923600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2018-10-01", + "network": "SYSTEME U", + "ref:EU:EVSE": "FROTHPOTHR2512;FROTHPOTHR2511;FROTHPOTHR2521;FROTHPOTHR2522", + "description": "SUPER U - CARQUEFOU", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*25*2*_*_;FR*SOD*S*OTHR*25*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49842800000, + 47.29969000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "BORNE ICEP STATION 01", + "description": "BORNE ICEP STATION 01", + "ref:EU:EVSE": "FRCPIE6601985", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6601985", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35969000000, + 49.20979900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "377465", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6187211446269093915", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/NKM6A0PYWP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04512000000, + 47.23090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1019841", + "network": "WAAT", + "capacity": "13", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P3344773972016162845", + "charging_station:output": "7.4 kW;22 kW", + "description": "WAAT/s439930", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37274300000, + 48.90137200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/LLWTA1KXC1MNKL", + "ref": "1122408", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6429066816441652108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49328400000, + 50.18276600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-24", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSWSE1234606357", + "operator": "SOWATT SOLUTIONS", + "description": "EVBOX 210 PAPYRUS MERY", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234606357", + "socket:type2_combo:output": "210 kW", + "charging_station:output": "210 kW;22 kW", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91423500000, + 45.64464500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5832437044520835707", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "1009203", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/PXWENV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26380000000, + 43.60080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPGREETHOTEL012501", + "start_date": "2023-11-07", + "network": "DRIVECO", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Greet Hôtel - Montagnat", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27296000000, + 46.15560800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-11-26", + "operator:email": "lionel.chauvet@energie28.fr", + "owner:ref:FR:SIREN": "200080869", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Place du 18 octobre", + "ref:EU:EVSE": "FRS28ESDE28CHATDUN1B1P1", + "network": "FR*S28", + "operator": "ENERGIE EURE-ET-LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32905100000, + 48.07064300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "description": "SDEA 10/O8L0SVN1YZ", + "ref:EU:EVSE": "FRS10P2821767625481051540", + "ref": "39701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12595600000, + 48.33255300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "ref:EU:EVSE": "FRZP1P5508796513063964526;FRZP1P1652097638730648982", + "capacity": "1", + "description": "Zephyre/LP009574;Zephyre/LP00897F", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "709094;576188", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09296800000, + 47.99398500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Garage_David_Onlydrive", + "start_date": "2023-04-20", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE609" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18903400000, + 46.86466220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "SDE82/dunes", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PDUNES", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref": "38953" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76934300000, + 44.09180000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2024-05-30", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "description": "IZIVIA FAST - MCDONALDS - SAINT DIZIER", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST13513;FRIZFPFAST13511;FRIZFPFAST13512", + "ref": "FR*SOD*S*FAST*135*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96423260075, + 48.62618463360 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS41E4490;FRS41E4489", + "network": "MODULO - SALBRIS - Av. de la Resistance", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E4490;FRS41E4489", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - SALBRIS - Av. de la Resistance" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05821000000, + 47.42841000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS60PFROISSY", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/froissy", + "ref": "34622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22247000000, + 49.56750000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-17", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "CHA02 - CHEMIN DE LAFRIQUE", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON521;FRGLYPLYON511;FRGLYPLYON512;FRGLYPLYON522", + "ref": "FR*SOD*S*LYON*5*1*_*_;FR*SOD*S*LYON*5*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96998800000, + 45.73782800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20;2023-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT JEAN DE MARUEJOLS ET AVEJAN - Parking Stade-Route Nationale", + "ref:EU:EVSE": "FRS30E30266001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29333800000, + 44.25805600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Meslan - Rue de Beg er Lann", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2016-11-30", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PGVDKQE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43320100000, + 47.99441600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/SAOUCGH4D2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "699005", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P471951067698116147" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354000000, + 43.71563700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "40 kW", + "socket:type2_combo:output": "40 kW", + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/eac9d4d8-8af6-4b7e-80cc-a8e7afbd50ac", + "capacity": "2", + "amenity": "charging_station", + "ref": "1070400", + "network": "Mobilygreen CPO", + "ref:EU:EVSE": "FRMW1P2785356921695562490", + "opening_hours": "24/7", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49810800000, + 43.56975600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE18751;FRSIGPSIGE18711;FRSIGPSIGE18721;FRSIGPSIGE18731;FRSIGPSIGE18741", + "description": "SIGEIF - 65 RUE RENE CROS - BAGNEUX", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "start_date": "2021-10-05", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref": "FR*SOD*S*SIGE*187*5*_*_;FR*SOD*S*SIGE*187*1*_*_;FR*SOD*S*SIGE*187*2*_*_;FR*SOD*S*SIGE*187*3*_*_;FR*SOD*S*SIGE*187*4*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30459100000, + 48.79929700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E001570;FRCG0E001571", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E001570;FRCG0E001571", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-07-11", + "description": "PRC Patrizio - 76130", + "operator:email": "info@chargeguru.com", + "network": "PRC Patrizio - 76130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08275900000, + 49.47349000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "ref": "B152;B151", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "socket:type2_combo:output": "120 kW", + "description": "POITIERS SUD HPC 1;POITIERS SUD 2 - 2;POITIERS SUD 2 - 1", + "operator": "SOREGIES MOBILITES", + "charging_station:output": "120 kW;18 kW", + "start_date": "2023-02-10;2023-02-09", + "operator:email": "irve@soregies.fr", + "ref:EU:EVSE": "FRLMSE12346052812;FRLMSE12346052811;FRLMSE10001479961;FRLMSE10001479882;FRLMSE10001479881;FRLMSE10001479962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30007000000, + 46.54829000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Leon | Place de L'Abbé dulong", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref": "07f21b89-5145-56e8-921b-a34cc39b66d7", + "charging_station:output": "3.7 kW;36 kW", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30344300000, + 43.87606400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "La Bayette - NANTEUIL LES MEAUX", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE77NABA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-04-26", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90625500000, + 48.92201600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "Allego Carrefour Mably", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRALLEGO9005382;FRALLEGO9005381;FRALLEGO9003991;FRALLEGO9003841;FRALLEGO9003842;FRALLEGO9003992;FRALLEGO9005311;FRALLEGO9005312", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "start_date": "2024-05-23", + "ref": "FRALLEGO9005382;FRALLEGO9005381;FRALLEGO9003991;FRALLEGO9003841;FRALLEGO9003842;FRALLEGO9003992;FRALLEGO9005311;FRALLEGO9005312", + "description": "Allego Carrefour Mably" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05880500000, + 46.06640600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR2998EVCP01;LFR2998EVCP02", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2998EVCP01;LFR2998EVCP02", + "description": "MASSY Lavoisier" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24005200000, + 48.72987700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRM34E34172017", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "MONTPELLIER - Rue Durand", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87858333300, + 43.60483333000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "412232", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNP2760740843805916681", + "description": "Réseau eborn/BV4HG5JPFC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87850600000, + 45.02953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6836994457138866097", + "ref": "1116975", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLSOMQZOO147DA", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08688900000, + 48.98977200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E91477001;FRP07E914770011", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "11", + "start_date": "2024-07-05", + "description": "ORSAY - Hôpital Paris-Saclay (public)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18969780000, + 48.71777600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Regny, Parking place Jacques Fougerat", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPHTIYLP7TN0", + "ref": "HTIYLP7TN0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21607220000, + 45.98958700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPROIHY", + "operator": "ELECTRA", + "start_date": "2024-01-25", + "description": "Roissy-en-France - The Atrium Hotel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51549200000, + 48.98999000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E77327001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Nangis P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01170000000, + 48.56160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6634525", + "description": "SONEPAR VAULX-EN-VELIN", + "capacity": "2", + "network": "SONEPAR VAULX-EN-VELIN", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6634525", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-11", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93111200000, + 45.75124700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHP96571089131740698", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "charging_station:output": "22 kW;50 kW;60 kW", + "description": "Easy Charge/SPNW8OHGXT", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "ref": "625973" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06127500000, + 44.54181400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "description": "Paris | Rue Navier 1", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1706", + "start_date": "2021-09-07", + "ref": "FR*V75*PPX17*06", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32830000000, + 48.89550000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P1439528702851164066", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/CCMOAYZWCU", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref": "521231", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44575300000, + 48.63836700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "300 kW;150 kW", + "description": "TotalEnergies - Super U Fessenheim", + "amenity": "charging_station", + "start_date": "2023-06-29", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTCBP01592", + "ref": "FR*TCB*P01592", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52892325362, + 47.91885361544 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/T6DFD4JXKG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P504988126660932370", + "charging_station:output": "22 kW", + "ref": "578963", + "opening_hours": "We,Fr,Tu,Mo,Th 12:00-14:00", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47526600000, + 48.75911400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "capacity": "6", + "network": "DRIVECO", + "opening_hours": "Mo 07:30-19:00, Tu 07:30-19:00, We 07:30-19:00, Th 07:30-19:00, Fr 07:30-19:00, Sa 07:30-19:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW - Lormont", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPEDENAUTOBMW333101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50955600000, + 44.86797400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Moelan sur Mer-Rue des Plages", + "start_date": "2023-04-03", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E29150001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.63133200000, + 47.81216800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-07-31;2024-08-02", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "50 kW;22 kW", + "network": "Reveo", + "description": "DURBAN - Site Parking Tennis", + "ref:EU:EVSE": "FRS11E11124001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81563584035, + 42.99689894675 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRZPEE175562;FRZPEE175275;FRZPEE175272;FRZPEE175274", + "amenity": "charging_station", + "ref": "E175272;E175274;E175275;E175562", + "capacity": "1", + "owner:ref:FR:SIREN": "784175531", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "50 kW;22 kW", + "description": "INGE-DC50kW-MERCEDES-Merignac ;Mercedes - Merignac - 22kW EXT ", + "start_date": "2023-03-31;2023-06-01", + "opening_hours": "Lu- Ve 07:30-19:00, Sa 10:00-18:00", + "network": "MERCEDES BENZ BORDEAUX - MERIGNAC", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66920160000, + 44.84568150000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS09E09122003", + "operator": "Bouygues E&S", + "description": "FOIX - Parking Gare Multimodale", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-06-23;2021-06-26", + "charging_station:output": "50 kW;36 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60735000000, + 42.97155300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FDE 80/lecrotoyvadic", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PLECROTOYVADIC", + "ref": "64769", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61484000000, + 50.22310000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - OYONNAX", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "start_date": "2024-08-27", + "ref:EU:EVSE": "FRIZFPFAST28011;FRIZFPFAST28012;FRIZFPFAST28013", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*280*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64297000000, + 46.25384420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44P44049A", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA", + "description": "OuestCharge - E-Twin - Le Croisic - Place du 8 Mai", + "start_date": "2022-11-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51249600000, + 47.29614300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "ref": "01F5ZAKH6180ZSWJ0ABGJ7FH89", + "start_date": "2016-11-07;2023-05-23", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77135001;FRS77P77135A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "COURPALAY - Place De L'Église;Courpalay", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96066500000, + 48.64774700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MERCURE LA ROCHELLE", + "amenity": "charging_station", + "capacity": "4", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MERCURE LA ROCHELLE", + "ref:EU:EVSE": "FRGSPP1000085930;FRGSPP1000085926" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14944900000, + 46.15345700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST NICOLAS DE BOURGUEIL - Ctr. Bourg - T2", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS37E220478;FRS37E220249", + "start_date": "2019-03-18", + "network": "MODULO - ST NICOLAS DE BOURGUEIL - Ctr. Bourg - T2", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E220478;FRS37E220249" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12586534000, + 47.28450308000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "e9594b2f-8e15-52d5-8a98-fdf4974cf111", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "42__CD54", + "description": "CD54 - Parking Siege - Nancy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16231400000, + 48.67802700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Cimetière intercommunal de Valenton", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-11-01", + "ref": "FRG10P94074A", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRG10P94074A", + "operator:email": "contact@e-totem.fr", + "description": "Cimetière intercommunal de Valenton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47297326743, + 48.73450821899 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Agen | 32 Av. de Gaulle", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "818cdb1b-1b08-5a1e-a5ea-30ba391235aa", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61184600000, + 44.20493500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-MAUR-DES-FOSSÉS - Avenue Pierre Semard", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-08-05", + "network": "SIPPEREC", + "ref:EU:EVSE": "FRSIPE94068028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51292481215, + 48.79736349564 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "LECLERC 06110 PARK AERIEN 8", + "socket:type2_combo:output": "62 kW", + "charging_station:output": "62 kW;22 kW", + "ref:EU:EVSE": "FRCPIE6533415;FRCPIE6533405;FRCPIE6526855;FRCPIE6533425;FRCPIE6533435", + "amenity": "charging_station", + "description": "LECLERC 06110 PARK AERIEN 8", + "opening_hours": "24/7", + "start_date": "2021-09-15", + "ref": "FRCPIE6533415;FRCPIE6533405;FRCPIE6526855;FRCPIE6533425;FRCPIE6533435", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00115300000, + 43.57223800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "896679", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "description": "Leclerc/LLLF4B77449P4L", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2310216234945081012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12464600000, + 50.51642800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Boulazac | Avenue de L'Agora (Mairie)", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "2e4ad3fb-dfa0-507a-bc77-655f641ae2c1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76309400000, + 45.18249900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - Beauvoir sur Niort - Centre", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-16", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB45042A", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47409470000, + 46.30054850000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Airbus - Marignane - parking P09", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FRAIRPAIRBUS3130011", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23161500000, + 43.43053800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NOGENT/SEINE", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2688EVCP01;LFR2688EVCP02", + "ref": "LFR2688EVCP01;LFR2688EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48689200000, + 48.48623300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "414774", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM45P1382540945309488658", + "operator": "Orléans Métropole | FR*M45", + "description": "Orléans Métropole/PBVWXODJGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89610000000, + 47.89256000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-10-06", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "description": "SAUZE - PARKING VILLAGE", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*159*1*_*_", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ15911;FRA16PWIIZ15912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83564500000, + 44.08747100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/HEDC2RWJ6Z", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "9", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P5388374289253649273", + "ref": "466026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966000000, + 49.17139500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PBDMMTL", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "La Boutique du Menuisier - Montélimar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74527770000, + 44.53539070000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSBBFTCPVCD", + "capacity": "2", + "description": "Lyaud, Eglise;Réseau eborn/SBBFTCPVCD", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SBBFTCPVCD;79141", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52257000000, + 46.33715000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-04-28", + "network": "ELECTRA", + "capacity": "4", + "description": "Saint-Magne-de-Castillon - E.Leclerc", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPSMCLE", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.06340700000, + 44.85401900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E13202008;FRP07E132020081;FRP07E132020082", + "start_date": "2023-11-13;2023-07-19", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MARSEILLE - Mélizan", + "opening_hours": "Mo-Su 00:00-23:57", + "capacity": "22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38072979798, + 43.28408507520 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SUPER U CARNAC BORNE 1", + "description": "SUPER U CARNAC BORNE 1", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6708745", + "start_date": "2023-04-14", + "ref:EU:EVSE": "FRCPIE6708745", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.05859400000, + 47.57482400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "1017000", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "ref:EU:EVSE": "FRECHP228526887542933822", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Easy Charge/MLWOEU75YT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41186400000, + 47.28393800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - A6 Achères Est", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "start_date": "2022-12-21", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP101101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57453300000, + 48.36183600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20697870000, + 49.97113000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P850815499995584243", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "description": "Freshmile France/TQU9YK1V5N", + "ref": "370169", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58493000000, + 44.84235000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-06-17", + "ref": "FR*V75*PPX08*07", + "description": "Paris | Rue de Rome 73", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0807", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056000000, + 48.88183400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "120608", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PVPCHZV", + "description": "Freshmile France/VPCHZV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52939000000, + 48.56520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Ajaccio - Les Salines", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPINGEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75197100000, + 41.93517600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "120812", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SYDED", + "description": "SYDED/arcetsenans", + "opening_hours": "24/7", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25", + "ref:EU:EVSE": "FRS25PARCETSENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78390400000, + 47.03485700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-13", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "network": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS18E202094", + "description": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "ref:EU:EVSE": "FRS18E202094" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31948600000, + 46.85744300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "JOUARS-PONTCHARTRAIN - Rue Louis Phelypeaux", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78321002", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89695800000, + 48.80300600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRQPKPQPRK1111", + "operator": "IZIVIA", + "ref": "FR*SOD*S*QPRK*11*1*_*_", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "description": "QPARK - 92011 COLOMBES - ARAGON", + "start_date": "2022-06-14", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22893900000, + 48.91560800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8103800122;FRS81E8103800121;FRS81E8103800112;FRS81E8103800111", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "BRENS - D13-D4 Boucherie", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-12-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91032236986, + 43.88916192253 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH;Villaines la Gonais", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "capacity": "5;8", + "owner:ref:FR:SIREN": "838436145", + "ref:EU:EVSE": "FRIOYE404153;FRIOYE404152;FRIOYE404151;FRIOYE404102;FRIONE404100;FRIOYE404101;FRIOYE404103;FRIOYE404104;FRIOYE404105", + "opening_hours": "24/7", + "ref": "FRIOYE404153;FRIOYE404152;FRIOYE404151;FRIOYE404102;FRIONE404100;FRIOYE404101;FRIOYE404103;FRIOYE404104;FRIOYE404105", + "operator": "IONITY", + "start_date": "2020-08-19;2020-08-21", + "description": "IONITY Villaines la Gonais;Villaines la Gonais", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62230200000, + 48.12547500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "ref:EU:EVSE": "FRS44P44165A;FRS44E44165001", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "start_date": "2021-05-03;2024-04-12", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "OuestCharge - Diva Sp - Saint-Hilaire-De-Clisson - Klettgau;SAINT-HILAIRE-DE-CLISSON - Espace Klettgau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30893900000, + 47.06115700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "01F5ZAKH61WGPSNTS8EQJ6902S", + "description": "SAINT-GERMAIN-LAXIS - Rue Grande;St-Germain-Laxis", + "owner:ref:FR:SIREN": "200041309", + "ref:EU:EVSE": "FRS77E77410001;FRS77P77410A", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2023-05-30;2016-11-15", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70895900000, + 48.58168000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "capacity": "18", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "operator": "TotalEnergies Charging Services", + "description": "RELAIS BREGUIERES SUD", + "owner:ref:FR:SIREN": "531681294;531681293;531681291;531681292;531681285;531681283;531681284;531681280;531681282;531681286;531681289;531681290;531681287;531681288;531681295;531681297;531681281;531681296", + "ref:EU:EVSE": "FRHPCPNF078564", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRHPCPNF078564" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03553000000, + 43.58953000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRS40PMB407612;FRS40PMB407611;FRS40PMB407613;FRS40PMB407614", + "amenity": "charging_station", + "start_date": "2020-06-09", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "capacity": "4", + "network": "MOBIVE - SYDEC 40", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "SAINT GEOURS DE MARENNE - PARKING DERRIERE EGLISE", + "owner:ref:FR:SIREN": "254001399", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22876700000, + 43.68826700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PATFAFZ", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "capacity": "3", + "ref": "18174", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/ATFAFZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12167000000, + 47.48198800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "description": "GIV04 - PARC DES SPORTS", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*174*2*_*_;FR*SOD*S*LYON*174*1*_*_", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRGLYPLYON17422;FRGLYPLYON17421;FRGLYPLYON17412;FRGLYPLYON17411", + "operator:email": "sav@izivia.com", + "start_date": "2022-11-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76991000000, + 45.60042000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Métropolis/FR*MGP*P91027*C", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP91027C", + "operator": "Métropolis | FR*MGP", + "ref": "1121511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39031000000, + 48.69400700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPBYMYCAR742001", + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Peugeot - ByMyCar - Thonon", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 08:00-12:00, Sa 14:00-19:00", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "start_date": "2020-02-07;2021-02-18", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44178200000, + 46.35044500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "CGED CGED SIX-FOURS", + "amenity": "charging_station", + "description": "CGED CGED SIX-FOURS", + "ref:EU:EVSE": "FRCPIE6590015", + "charging_station:output": "22 kW", + "ref": "FRCPIE6590015", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84561200000, + 43.11699700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "12", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/WT3OVRA4UG", + "ref:EU:EVSE": "FRLE2P8345004389385921842", + "ref": "579035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620300000, + 45.89561900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "1bbb8668-c5b1-57b2-8fbc-7c8fa6d1861a", + "operator": "197__SDEEG33", + "description": "MOBIVE | Sauveterre de Guyenne | Parking Gendarmerie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08381200000, + 44.69229100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "ERAGNY SUR OISE - Parking de l'Ormetteau", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-23", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95218002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09887500000, + 49.02134700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Allego FR, Klépierre Thiais Belle Epine", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLEGO7002111;FRALLEGO7002101;FRALLEGO7002091;FRALLEGO7002081;FRALLEGO7002072;FRALLEGO7002062;FRALLEGO7001152;FRALLEGO7001151;FRALLEGO7001142;FRALLEGO7001141;FRALLEGO7001132;FRALLEGO7001131;FRALLEGO7001121;FRALLEGO7001111;FRALLEGO7001092;FRALLEGO7001082;FRALLEGO7001071;FRALLEGO7001052;FRALLEGO7001051;FRALLEGO7001042;FRALLEGO7001041;FRALLEGO7001061;FRALLEGO7001062;FRALLEGO7001072;FRALLEGO7001081;FRALLEGO7001091;FRALLEGO7001101;FRALLEGO7001102;FRALLEGO7001112;FRALLEGO7001122;FRALLEGO7002061;FRALLEGO7002071;FRALLEGO7002082;FRALLEGO7002092;FRALLEGO7002102;FRALLEGO7002112", + "description": "Allego FR, Klépierre Thiais Belle Epine", + "start_date": "2024-07-21", + "capacity": "36", + "charging_station:output": "0 kW", + "ref": "FRALLEGO7002112;FRALLEGO7002111;FRALLEGO7002101;FRALLEGO7002082;FRALLEGO7002071;FRALLEGO7002062;FRALLEGO7002061;FRALLEGO7001152;FRALLEGO7001151;FRALLEGO7001142;FRALLEGO7001141;FRALLEGO7001132;FRALLEGO7001131;FRALLEGO7001122;FRALLEGO7001121;FRALLEGO7001112;FRALLEGO7001111;FRALLEGO7001092;FRALLEGO7001091;FRALLEGO7001081;FRALLEGO7001071;FRALLEGO7001052;FRALLEGO7001051;FRALLEGO7001042;FRALLEGO7001041;FRALLEGO7001061;FRALLEGO7001062;FRALLEGO7001072;FRALLEGO7001082;FRALLEGO7001101;FRALLEGO7001102;FRALLEGO7002072;FRALLEGO7002081;FRALLEGO7002091;FRALLEGO7002092;FRALLEGO7002102", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37263300000, + 48.75437400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4001EVCP02;LFR4001EVCP01;LFR4001EVCP03;LFR4001EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "GUERANDE", + "ref": "LFR4001EVCP04;LFR4001EVCP02;LFR4001EVCP01;LFR4001EVCP03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41336500000, + 47.32642800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM13PBJRSHPQN6R", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Aix-En-Provence, Place du Souvenir Français" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46070400000, + 43.52645600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "402521", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/HYBOIEYUXH", + "ref:EU:EVSE": "FRS89P2871411823051228205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45964600000, + 47.83078100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ28921;FRA16PWIIZ28922", + "description": "SAINT-RAPHAEL - PARKING ROUTE DE LA CORNICHE", + "ref": "FR*SOD*S*WIIZ*289*2*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-07-25", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80733830000, + 43.41484760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P6094835047181784919", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "capacity": "10", + "ref": "1009161", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLPI9F4SD2H61J" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56239200000, + 47.21464900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-03-21;2023-03-20", + "description": "Netto - Saint-Quentin", + "ref:EU:EVSE": "FRPD1PNETSTQ", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30611970000, + 49.82991100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-19", + "capacity": "1;2", + "ref:EU:EVSE": "FREBNPLLNX8Q8RE2MKCV;FREBNP2787211524128544411", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "1053516;LLNX8Q8RE2MKCV", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "socket:type2_combo:output": "24 kW", + "description": "Toulon, 156 rue Président Robert Schuman;Réseau eborn/LLNX8Q8RE2MKCV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93648800000, + 43.11288700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "capacity": "5", + "charging_station:output": "12 kW;180 kW", + "amenity": "charging_station", + "ref": "851190", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREVZP3330629813068508666", + "description": "Norauto - Bornes publiques/1E4102AC-8CC0-4C55-A1D3-7828F8FD5D27", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87989800000, + 43.12474000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR61261;FROTHPOTHR61241;FROTHPOTHR61232;FROTHPOTHR61222;FROTHPOTHR61212;FROTHPOTHR61211;FROTHPOTHR61221;FROTHPOTHR61231;FROTHPOTHR61242;FROTHPOTHR61251;FROTHPOTHR61252;FROTHPOTHR61262;FROTHPOTHR61271;FROTHPOTHR61272;FROTHPOTHR61281;FROTHPOTHR61282", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*612*8*_*_;FR*SOD*S*OTHR*612*7*_*_;FR*SOD*S*OTHR*612*5*_*_;FR*SOD*S*OTHR*612*4*_*_;FR*SOD*S*OTHR*612*3*_*_;FR*SOD*S*OTHR*612*2*_*_;FR*SOD*S*OTHR*612*1*_*_;FR*SOD*S*OTHR*612*6*_*_", + "opening_hours": "24/7", + "network": "FEDERATION FRANCAISE DE FOOTBALL", + "start_date": "2023-03-30;2023-03-29", + "description": "FFF - CLAIREFONTAINE P3&P5", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92651300000, + 48.61580300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Roche-La-Moliere, Parking rue de la Briqueterie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPZVYQDEGDC3", + "ref": "ZVYQDEGDC3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32255190000, + 45.42439320000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPRJ5MVDIEP8;FREBNP2419333984486616653", + "capacity": "2", + "description": "Réseau eborn/RJ5MVDIEP8;Toulon, Pkg Bon Rencontre, Avenue Aristide Briand", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-02-02", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "369022;RJ5MVDIEP8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90217200000, + 43.12679000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - B&B HOTEL BOURGES 1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-27", + "ref:EU:EVSE": "FRVIAP122038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34241200000, + 47.04722900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLVUT1O8F2MG0J", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref": "1111914", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P6718361053622834060", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26126100000, + 43.37918200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRV75PPX1507", + "ref": "FR*V75*PPX15*07", + "capacity": "4", + "description": "Paris | Avenue Emile Zola 65", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28441670000, + 48.84670330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P4730492497496810082", + "ref": "472302", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/Y6VC4OKUHC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72367300000, + 48.56510600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 10:00-19:30, Tu 10:00-19:30, We 10:00-19:30, Th 10:00-19:30, Fr 10:00-19:30, Sa 10:00-19:30", + "description": "BTWIN - Lillle - Village parking usine", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-02-24", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPBTWIN590003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08374700000, + 50.61786000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-05-02", + "capacity": "2", + "description": "900002", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PPTAUDEMERTHEATRE", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51856100000, + 49.35578000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20696510000, + 49.97069030000 + ], + [ + 1.20565540000, + 49.96950500000 + ], + [ + 1.20559750000, + 49.96949800000 + ], + [ + 1.20545690000, + 49.96948090000 + ], + [ + 1.20326560000, + 49.97013650000 + ], + [ + 1.20301490000, + 49.97014530000 + ], + [ + 1.20174970000, + 49.97038990000 + ], + [ + 1.20110910000, + 49.97027100000 + ], + [ + 1.20043570000, + 49.97002160000 + ], + [ + 1.19943190000, + 49.96980000000 + ], + [ + 1.19872720000, + 49.96945410000 + ], + [ + 1.19867520000, + 49.96936890000 + ], + [ + 1.19868050000, + 49.96932490000 + ], + [ + 1.19857460000, + 49.96927740000 + ], + [ + 1.19842310000, + 49.96927310000 + ], + [ + 1.19833860000, + 49.96923950000 + ], + [ + 1.19852700000, + 49.96909400000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ereac-Rue Bertrand du Guesglin", + "ref:EU:EVSE": "FRS22E22053001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34587000000, + 48.27434900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "JOUY-LE-MOUTIER - Place du bien être", + "ref:EU:EVSE": "FRY12E95323001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04179329777, + 49.01012493034 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2021-11-22", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "description": "Norsys", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "ref:EU:EVSE": "FRROSE185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11936620000, + 50.54083790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "1162698", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWATL5Q5LEVON", + "ref:EU:EVSE": "FRWATP5111952127030144241", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27097800000, + 47.79279000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE402705;FRIOYE402704;FRIOYE402703;FRIOYE402702;FRIOYE402751;FRIOYE402752;FRIOYE402753", + "capacity": "7", + "network": "Lacq Audéjos Nord", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Lacq Audéjos Nord", + "ref": "FRIOYE402705;FRIOYE402704;FRIOYE402703;FRIOYE402702;FRIOYE402751;FRIOYE402752;FRIOYE402753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58479364000, + 43.41863680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS52P52060B", + "ref": "332225", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "description": "SDED52/FR*S52*P52060B", + "opening_hours": "24/7", + "network": "SDED52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74932000000, + 47.95214500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65286006", + "description": "LOURDES - Parking piscine municipale", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04156000000, + 43.10169000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "start_date": "2023-01-11", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE002301;FRIENE002302", + "ref": "FRIENE002301;FRIENE002302", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Bléré", + "description": "Bléré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96524917000, + 47.31067245000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34219001", + "network": "Reveo", + "start_date": "2022-03-03", + "description": "PREMIAN - Grand Rue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83127300000, + 43.52445200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS61P61001F", + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "ref": "SE61-ALEN-006", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "description": "ALENCON - Rue des Tisons", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.09035560000, + 48.42570500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3891621249952800801", + "charging_station:output": "24 kW;22 kW", + "ref": "1176906", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLMSXFPCVBPWZB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69369500000, + 48.61412200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Rieumes", + "start_date": "2017-02-06", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "ref:EU:EVSE": "FRS31PYURPYW", + "ref": "YURPYW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11693000000, + 43.41190000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2021-01-15", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Ford - Vitrolles", + "charging_station:output": "22.08 kW", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-19:00", + "ref:EU:EVSE": "FRSSDPMAURINFORD131271", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26611300000, + 43.42678400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRCARP93027A", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2023-10-11", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "description": "Carrefour Supply Chain - La Courneuve", + "network": "Carrefour Supply Chain - La Courneuve", + "ref:EU:EVSE": "FRCARP93027A", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41275385673, + 48.93054592876 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "916dad76-9019-48d1-a94b-cf77f98e7d1e", + "start_date": "2022-11-07", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "description": "Hôtel Le Renaissance", + "operator": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERENAISSANCE11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47990480000, + 43.89146970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "589754cd-b74e-5c67-9231-e7aa028f445c", + "description": "MOBIVE | Cozes | Route de Talmont", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83495300000, + 45.58212500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "Garage LESAUVAGE", + "start_date": "2023-12-27", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRSE1PSE50CADA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21011900000, + 48.85179000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP6737160200202054061", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "description": "BornEco/63dcef1cde530c3ec2928c1e", + "ref": "756453" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37610400000, + 47.76594200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3447EVCP01;LFR3447EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "ref:EU:EVSE": "LFR3447EVCP01;LFR3447EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "NEUFCHATEAU Leclerc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70339600000, + 48.36808400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Velaux, Rue Diderot (Pl du Bon Puit)", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13POMGFAWEZZ8", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25521400000, + 43.52319800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P7567683252307178373", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "402539", + "description": "SDEY/K5T7XB37GG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23561400000, + 47.68882600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "ref": "FR*55C*P30133*LAS*GAULLE", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP30133LASGAULLE", + "operator:email": "contact@e55c.com", + "start_date": "2020-03-02", + "description": "RUE CHARLES DE GAULLE LES ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75251600000, + 43.96228900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6164068473687141509", + "ref": "521318", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile/KDEIJGQQJG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88309800000, + 48.96740600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "8", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "description": "Super U - Martres-Tolosane", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PSYUMRT", + "opening_hours": "24/7", + "start_date": "2023-07-23", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00101619755, + 43.19677089417 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "chevagnes;94271", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "ref:EU:EVSE": "FREBNPCHEVAGNES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Chevagnes, Marché;Réseau eborn/chevagnes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55099000000, + 46.60980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Fastned France", + "amenity": "charging_station", + "description": "Fastned Aire d’Achères - La Forêt", + "ref:EU:EVSE": "FRFASE33023", + "capacity": "4", + "operator:email": "support@fastned.nl", + "ref": "FRFASE33023", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "network": "Fastned Aire d’Achères - La Forêt", + "start_date": "2022-04-06", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57398007000, + 48.36085396000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-02-23", + "ref:EU:EVSE": "FROTHPOTHR8912;FROTHPOTHR8911", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*89*1*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "CAMPING SANDAYA - SAINT-CREPIN-ET-CARLUCET", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27255500000, + 44.95764600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Chamonix-Mont-Blanc, Parking Mairie", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPZVTXA1HEAM", + "ref": "ZVTXA1HEAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86901920000, + 45.92392690000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPTL1WGTVEO9", + "ref": "TL1WGTVEO9", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Valence, Lautagne Labo", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90463860800, + 44.90588062000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "description": "BRIT HOTEL - GRANVILLE", + "ref:EU:EVSE": "FROTHPOTHR42511;FROTHPOTHR42521", + "start_date": "2022-07-04", + "operator:email": "sav@izivia.com", + "network": "BRIT HOTEL", + "ref": "FR*SOD*S*OTHR*425*1*_*_;FR*SOD*S*OTHR*425*2*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58176700000, + 48.83840900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/YJRJT8ZFIK", + "ref": "757011", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5684246618589916225", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99312500000, + 50.47026200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Villedieu-les-Poêles-Rouffigny, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP33194", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21178321000, + 48.84830835000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "ref": "477678", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/MYYLOA44OQ", + "ref:EU:EVSE": "FRFR1P1196633240002341398" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05901200000, + 49.09982400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "amenity": "charging_station", + "socket:type2_combo:output": "180 kW", + "ref": "40c958fe-4890-532b-917d-a5b99667fe2a", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "LUS-LA-CROIX-HAUTE-655 Route de Sisteron", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69761100000, + 44.66737100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P7906836027170973776", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "Th,Mo,Tu,Fr,We 00:00-07:00,We,Mo,Fr,Tu,Th 19:00-23:45,Su,Sa 00:00-23:45", + "charging_station:output": "22 kW", + "description": "Freshmile France/EXGSD0N3H2", + "operator": "Freshmile | FR*FR1", + "ref": "477630" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07039200000, + 49.10701700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "1150044", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/LLW545C4U2KOFN", + "ref:EU:EVSE": "FRS14P5399452831159105500", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27523000000, + 49.36977700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRZP1P8464242027196911267", + "charging_station:output": "22 kW", + "description": "Zephyre/LP008986", + "ref": "682958", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21982600000, + 48.84800900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis_Bauduin_Valenciennes", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-09-05;2022-07-13", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE409", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52592600000, + 50.35045500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "TESSANCOURT-SUR-AUBETTE - Grande Rue", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY01E78609001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91902220000, + 49.02398890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS53P53257A;FRS53E53257001", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "description": "SAULGES - Rue Des Grottes;OuestCharge - Diva Sp - Saulges - Grottes", + "start_date": "2021-04-07;2024-05-24", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40551000000, + 47.98249800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS66E66165001", + "charging_station:output": "22 kW", + "description": "Rodès - Parking Rue Du Moulin", + "network": "Reveo", + "start_date": "2024-08-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56066100000, + 42.65673800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "building": "yes" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.20872960000, + 49.97236740000 + ], + [ + 1.20864700000, + 49.97231470000 + ], + [ + 1.20873630000, + 49.97225680000 + ], + [ + 1.20879060000, + 49.97229140000 + ], + [ + 1.20881890000, + 49.97230950000 + ], + [ + 1.20872960000, + 49.97236740000 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-02-20", + "operator": "IZIVIA", + "description": "IKEA TOULON - PARKING CLIENT", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIKAPIKEA10391;FRIKAPIKEA10371;FRIKAPIKEA10361;FRIKAPIKEA10351;FRIKAPIKEA10341;FRIKAPIKEA10331;FRIKAPIKEA103201;FRIKAPIKEA103141;FRIKAPIKEA103111;FRIKAPIKEA103101;FRIKAPIKEA10311;FRIKAPIKEA103121;FRIKAPIKEA103131;FRIKAPIKEA103151;FRIKAPIKEA103161;FRIKAPIKEA103171;FRIKAPIKEA103181;FRIKAPIKEA103191;FRIKAPIKEA10321;FRIKAPIKEA10381", + "network": "IKEA", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*IKEA*103*4*_*_;FR*SOD*S*IKEA*103*3*_*_;FR*SOD*S*IKEA*103*20*_*_;FR*SOD*S*IKEA*103*17*_*_;FR*SOD*S*IKEA*103*16*_*_;FR*SOD*S*IKEA*103*14*_*_;FR*SOD*S*IKEA*103*12*_*_;FR*SOD*S*IKEA*103*11*_*_;FR*SOD*S*IKEA*103*1*_*_;FR*SOD*S*IKEA*103*10*_*_;FR*SOD*S*IKEA*103*13*_*_;FR*SOD*S*IKEA*103*15*_*_;FR*SOD*S*IKEA*103*18*_*_;FR*SOD*S*IKEA*103*19*_*_;FR*SOD*S*IKEA*103*2*_*_;FR*SOD*S*IKEA*103*5*_*_;FR*SOD*S*IKEA*103*6*_*_;FR*SOD*S*IKEA*103*7*_*_;FR*SOD*S*IKEA*103*8*_*_;FR*SOD*S*IKEA*103*9*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01118400000, + 43.14089900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "LA MEZIERE - 4 rue de montsifrot ", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "ref:EU:EVSE": "FRS35P35177001B1", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75481600000, + 48.22008100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS62E10019890", + "start_date": "2020-10-28", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Ubitricity France Network", + "charging_station:output": "5.5 kW", + "owner:ref:FR:SIREN": "389643859", + "opening_hours": "24/7", + "operator": "ubitricity", + "description": "SPASAD Rely" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35333330000, + 50.57000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P8959758081043794718", + "capacity": "2", + "amenity": "charging_station", + "ref": "521384", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/WD96MMJNF3", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14387700000, + 46.96801700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "33385;SNAMKZ", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "description": "Aurignac;Roulez Électrique En Haute-Garonne/SNAMKZ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PSNAMKZ", + "start_date": "2017-02-28", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88236500000, + 43.21660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "start_date": "2024-06-24", + "ref:EU:EVSE": "FRSIPE93001004", + "description": "AUBERVILLIERS - Rue Elisée Reclus" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40098380000, + 48.91670000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000763;FRCG0E000762;FRCG0E000761;FRCG0E000760;FRCG0E000764", + "capacity": "5", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000763;FRCG0E000762;FRCG0E000761;FRCG0E000760;FRCG0E000764", + "opening_hours": "24/7", + "network": "Vivadour Siège - 32400 - 1", + "description": "Vivadour Siège - 32400 - 1", + "start_date": "2023-07-12", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08361800000, + 43.65127700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE20212;FRM06PNICE20211", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref": "FR*SOD*S*NICE*202*1*_*_", + "start_date": "2023-05-05", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "VENCE - PARKING MAUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10703263199, + 43.72052018897 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Marmande | la Gravette", + "ref": "1d4a247a-b52a-58a5-9ad5-2e0756ac6b87", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17719800000, + 44.50093800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34012;FRSIGPSIGE34011", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "description": "SIGEIF - 9 RUE ANTOINE VOLLON PARKING DE LA GARE - BESSANCOURT", + "ref": "FR*SOD*S*SIGE*340*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20896000000, + 49.03690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "start_date": "2022-10-07", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "BONSECOURS - Rue de la Basilique", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76103001", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12300400000, + 49.42173700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR4177EVCP02;LFR4177EVCP01;LFR4177EVCP03", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4177EVCP02;LFR4177EVCP01;LFR4177EVCP03", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "MAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45135200000, + 48.45022500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "1e362840-0b53-5556-bcde-8c4e715a62d6", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | La Souterraine | Place Dr Emile Parrain", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48352700000, + 46.23867400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS82PEKYSEG", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "46663", + "description": "SDE82/EKYSEG", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53609000000, + 44.08920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RUE DU 8 MAI 1945 - LA CROIX VALMER", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P83420*CRV*P0STE", + "start_date": "2023-08-19", + "ref:EU:EVSE": "FR55CP83420CRVP0STE", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56812400000, + 43.20897300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA FERTE MACE Les tesnieres;LA FERTE MACE Les tesnières", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3614EVCP02;LFR3614EVCP01", + "ref": "LFR3614EVCP02;LFR3614EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37269200000, + 48.57576400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Intermarché - Cornebarrieu", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "50 kW;100 kW;60 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW;60 kW", + "ref:EU:EVSE": "FRPD1PITMCRB", + "start_date": "2022-03-10", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33789500000, + 43.64936700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/LEI5CBWBVF", + "capacity": "2", + "amenity": "charging_station", + "ref": "346805", + "network": "Réseau eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNP1437224815610203826", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72972900000, + 44.93409400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "ref": "FRETIP64024A", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRETIP64024A", + "operator:email": "contact@e-totem.fr", + "socket:type2_combo:output": "100 kW", + "description": "e-Totem - Kyriad Anglet-Biarritz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50446417792, + 43.48186293761 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRP01E44109011;FRP01E441090111", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "charging_station:output": "22 kW", + "start_date": "2023-11-22", + "capacity": "10", + "description": "Parking Nantes Descartes - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56432660000, + 47.21736570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "description": "Carrefour Market - Bourbourg", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2023-12-13;2023-12-15", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT596301", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19941800000, + 50.93983000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2022-10-27", + "capacity": "8", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "225 kW", + "opening_hours": "24/7", + "description": "Sérézin-du-Rhône - Peugeot", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82215900000, + 45.63507900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "200 kW", + "network": "SYSTEME U", + "ref": "FR*SOD*S*OTHR*537*5*_*_;FR*SOD*S*OTHR*537*4*_*_;FR*SOD*S*OTHR*537*3*_*_;FR*SOD*S*OTHR*537*1*_*_;FR*SOD*S*OTHR*537*2*_*_", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR53752;FROTHPOTHR53751;FROTHPOTHR53741;FROTHPOTHR53731;FROTHPOTHR53721;FROTHPOTHR53711;FROTHPOTHR53753", + "start_date": "2022-11-29;2023-07-24", + "charging_station:output": "200 kW;3.68 kW;7.36 kW", + "opening_hours": "24/7", + "description": "SUPER U - LA TURBALLE", + "operator:email": "sav@izivia.com", + "capacity": "1;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51258000000, + 47.35269100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-13", + "capacity": "2", + "network": "SONEPAR CONNECT CHATELLERAULT", + "charging_station:output": "12 kW", + "amenity": "charging_station", + "description": "SONEPAR CONNECT CHATELLERAULT", + "ref:EU:EVSE": "FRCPIE6737895", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref": "FRCPIE6737895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53925500000, + 46.82912100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/A3MGRRDRGB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8493642051587245946", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446501", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70227000000, + 48.62590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRV05E67411002", + "start_date": "2022-02-21", + "network": "CPO Alizé Liberté Public", + "description": "ROSHEIM - Rue de la Liberté - Parking du Neuland" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48032200000, + 48.50126400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "472197", + "description": "Freshmile France/HC303G1OWT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P5133366889140033099", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60441600000, + 48.57708200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "description": "Tesla Supercharger Pau", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP3305", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35876200000, + 43.33225700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/XKGFSM", + "network": "Freshmile France", + "ref": "510608", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2905086012426010534" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27382200000, + 48.84356100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ELECTROMAPS", + "capacity": "2", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "operator:email": "oscar@electromaps.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FR000012616553", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "network": "1PACTE", + "charging_station:output": "22 kW", + "description": "1PACTE", + "start_date": "2022-04-04", + "owner:ref:FR:SIREN": "803719277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47671140989, + 43.47658398494 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "457548", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/QTJUNHZSQB", + "ref:EU:EVSE": "FRS14P559182690704936402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37351600000, + 49.25495500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MILLAU - Place Bion Marlavagne", + "start_date": "2022-02-16", + "ref:EU:EVSE": "FRS12E12145002", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07743900000, + 44.10208200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "ref": "880128", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA4P3345951190621556734", + "operator": "WAAT SAS | FR*WA4", + "description": "WAAT/FRWA4L154XJXF5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11798100000, + 49.48387100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "description": "OuestCharge - ePremium - La Romagne - Touraine", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRS49P49260B", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01063900000, + 47.05988900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-06", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8106500721;FRS81E8106500711;FRS81E8106500712;FRS81E8106500722", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "description": "CASTRES - Boulevard Vittoz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24350648965, + 43.60319717691 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FOURMIES - Rue Paul Lafargue", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH17E59249004", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04330500000, + 50.01169440000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44211B", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - eSmart - La Turballe - Trevaly", + "network": "SYDELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48302800000, + 47.34452700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS63P63370A", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-01-25", + "charging_station:output": "43 kW;50 kW;25 kW;22 kW", + "description": "SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille", + "opening_hours": "24/7", + "network": "SIEG63", + "socket:type2_combo:output": "25 kW;50 kW", + "operator:email": "info-usager.silene@spie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70534980000, + 45.64647570000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH02E59618001", + "operator": "Bouygues E&S", + "description": "VIEUX-RENG - Place de la Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "start_date": "2024-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04654090000, + 50.32919100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34071001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "CEILHES ET ROCOZELS - Avenue Du Lac", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10575277778, + 43.80299720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94028032", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2024-07-22", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "CRETEIL - Avenue du Général De Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44547228362, + 48.78883536808 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP90281407", + "amenity": "charging_station", + "capacity": "1", + "description": "Hôtel B&B Bayonne Tarnos", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-05-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46291800000, + 43.52858200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "d58de015-ab70-5181-a2f8-ab6150509baf", + "description": "MOBIVE | Port Sainte Foy et Ponchapt | Place du 8 Mai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21074300000, + 44.84433000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2024-03-01", + "description": "SIGEIF - 45 RUE DU GENERAL LECLERC - MORANGIS", + "ref": "FR*SOD*S*SIGE*449*1*_*_", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE44912;FRSIGPSIGE44911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32770920000, + 48.70669950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-07-18", + "description": "EPERNAY", + "ref:EU:EVSE": "FRALLPEVCARSEPNAY", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96126600000, + 49.04918200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR4293EVCP03;LFR4293EVCP01;LFR4293EVCP02;LFR4293EVCP04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "SAINT USAGE - ZA de l'Echelottes", + "ref:EU:EVSE": "LFR4293EVCP03;LFR4293EVCP01;LFR4293EVCP02;LFR4293EVCP04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25284500000, + 47.11213300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Bidache | Allee Corisande", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "ref": "945772e3-27c8-53a2-afd0-13142556ef4c", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13864700000, + 43.48356200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "52__COVE", + "ref": "e379e3d8-66d6-53c4-a49a-8e864b68e199", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "description": "MAZAN - Chemin du Piol", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11558400000, + 44.06166800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRA05E78522001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "description": "ROCHEFORT-EN-YVELINES - Rue Guy Le Rouge", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98698330000, + 48.58363200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "CHADRAC - Roderie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3932EVCP04;LFR3932EVCP03;LFR3932EVCP01;LFR3932EVCP02", + "ref:EU:EVSE": "LFR3932EVCP04;LFR3932EVCP03;LFR3932EVCP01;LFR3932EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89540600000, + 45.05086800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "description": "Jardiland St Lô (50)", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PJARSLO", + "socket:type2_combo:output": "120 kW", + "start_date": "2024-10-02", + "operator": "Power Dot France", + "charging_station:output": "50 kW;120 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07983181125, + 49.09905410687 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "492162", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "description": "Réseau eborn/LIEIZRQF8F", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FREBNP1576953702973749331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13266600000, + 44.36218400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "43 kW;50 kW;150 kW;22 kW", + "owner:ref:FR:SIREN": "917546251", + "network": "e-Vadea;E-VADEA", + "capacity": "33;20", + "description": "E-VADEA/FR*EVA*P37099*A;e-Vadea - Druye - A85 Jardins de Villandry", + "amenity": "charging_station", + "operator:email": "assistance-commerciale@e-vadea.fr;gestionfournisseurs@oriosbyspie.com", + "ref": "853635", + "ref:EU:EVSE": "FREVAP37099A", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "start_date": "2023-09-11;2023-08-10;2023-09-21;2023-10-04;2023-10-11", + "operator": "SPIE CITYNETWORKS;Evadea | FR*EVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50887100000, + 47.30959200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2024-03-25;2024-03-24", + "description": "Jardiland - Soyaux", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PCRISOY", + "charging_station:output": "50 kW;187.5 kW;22 kW", + "socket:type2_combo:output": "50 kW;187.5 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20720264722, + 45.63665070332 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRDRVPCKMQ", + "operator:email": "support@driveco.com", + "start_date": "2024-07-29", + "operator": "DRIVECO", + "description": "Carrefour Market - Le Trait" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80698200000, + 49.48250300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "SEMOB Cret de Roc", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "start_date": "2021-07-06", + "ref:EU:EVSE": "FRESEPS42218BB", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRESEPS42218BB", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39079154884, + 45.44346056306 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-14", + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "ref": "FR*SOD*S*IZIG*606*7*_*_;FR*SOD*S*IZIG*606*5*_*_;FR*SOD*S*IZIG*606*4*_*_;FR*SOD*S*IZIG*606*3*_*_;FR*SOD*S*IZIG*606*1*_*_;FR*SOD*S*IZIG*606*2*_*_;FR*SOD*S*IZIG*606*6*_*_;FR*SOD*S*IZIG*606*8*_*_", + "amenity": "charging_station", + "capacity": "1", + "description": "EDF REN OUISTREHAM", + "opening_hours": "24/7", + "network": "EDF-EN-EV100", + "ref:EU:EVSE": "FROTHPIZIG60651;FROTHPIZIG60641;FROTHPIZIG60631;FROTHPIZIG60611;FROTHPIZIG60621;FROTHPIZIG60661;FROTHPIZIG60671;FROTHPIZIG60681", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24685000000, + 49.28099000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6883565", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6883565", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "OXYMAX1 STATION 1", + "description": "OXYMAX1 STATION 1", + "start_date": "2024-05-16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09206500000, + 48.41062600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529697;LFR3820EVCP03;LFR3820EVCP02;LFR3820EVCP01", + "amenity": "charging_station", + "capacity": "4;6", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3047493913888187687;LFR3820EVCP03;LFR3820EVCP02;LFR3820EVCP01", + "operator": "Freshmile | FR*FR1;LIDL France", + "operator:email": "roaming@freshmile.com;bornes@lidl.fr", + "network": "LIDL;Freshmile", + "description": "Freshmile/VAQY64MMFC;PLOMEUR - Pendreff" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28727900000, + 47.81949900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-06-12;2024-06-11", + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "ref:EU:EVSE": "FRVIAP122056", + "description": "ENGIE Vianeo - B&B HOTEL RENNES EST CESSON SÉVIGNÉ", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60070000000, + 48.11410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "892176", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P129699056014141171", + "charging_station:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLISTZ4SN1K16K" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29430100000, + 48.07277400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jaguar Land Rover - Angers", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPDMD490001", + "charging_station:output": "50 kW;22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2022-10-13", + "operator": "DRIVECO", + "opening_hours": "Mo 07:45-19:00, Tu 07:45-19:00, We 07:45-19:00, Th 07:45-19:00, Fr 07:45-19:00, Sa 08:45-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53723600000, + 47.44479100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/GID9KTPSHB", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3401319708820582724", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "505569" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13166500000, + 44.70895700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E108359", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - LA CHAPELLE ST URSIN - Mairie", + "ref": "FRS18E108359", + "network": "MODULO - LA CHAPELLE ST URSIN - Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32158000000, + 47.06273000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "515162", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P4107849217458120010", + "capacity": "3", + "description": "MobiSDEC/JXVJI1COJF", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958400000, + 49.20576200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA9P1924921835681978957", + "network": "WAAT", + "description": "WAAT/FRWA5LETI7NZOE", + "amenity": "charging_station", + "capacity": "1", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1127934", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58211300000, + 45.13735300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2018-02-26", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "description": "CHERBOURG EN COTENTIN (LA GLACERIE) - Martin Luther King", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS50P50203002", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60142200000, + 49.61422800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTREDON LABESSONNIE - Place St Jean", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81182001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32644300000, + 43.72130900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2023-06-08;2023-01-30;2022-12-22", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "ref": "FRHPCPNF059748", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF059748", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681006;531681007;531681004;531681005;531681002;531681003;531681008;531681001", + "network": "TotalEnergies Charge Rapide", + "description": "REL.LIMAGNE SUD", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40510000000, + 45.85090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS48E48146001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "GORGES DU TARN CAUSSES - Route De Mende, Sainte-Enimie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2024-07-26", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41052230000, + 44.36618270000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "charging_station:output": "7 kW", + "capacity": "2", + "description": "Baden - Parking Port Blanc", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2022-06-29", + "ref:EU:EVSE": "FRS56PWFJUNQY8TV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86303026030, + 47.60141709791 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "ANZIN-SAINT-AUBIN - Chaussée Brunehaut", + "network": "pass pass électrique", + "start_date": "2019-12-12", + "ref:EU:EVSE": "FRH06E62037001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74974300000, + 50.31095500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS29E29540001", + "start_date": "2023-10-17", + "description": "SPEZET - Rue Du Stade", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.71585500000, + 48.19170200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS56PRNFCWQ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "257185", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/RNFCWQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44880000000, + 47.64150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SEVRES-ANXAUMONT-1-2;SEVRES-ANXAUMONT-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346052482;FRLMSE12346052471;FRLMSE12346052472;FRLMSE12346052481", + "start_date": "2016-12-06", + "operator:email": "irve@soregies.fr", + "ref": "B098" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46523000000, + 46.57075100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Métropolis/FR*MGP*P93048*H", + "capacity": "5", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP93048H", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "485307", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41590800000, + 48.85222200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "description": "Réseau AlterBase - Niort - La Poste", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200091049", + "start_date": "2022-09-19", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79191P0079A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46092100000, + 46.32145000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "1112382", + "description": "Atlante/FRATLFR00412", + "ref:EU:EVSE": "FRATLP6230867394601851511", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35668000000, + 44.00441000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "ref:EU:EVSE": "FRLMSE10001142022;FRLMSE10001142021", + "owner:ref:FR:SIREN": "668502966", + "amenity": "charging_station", + "start_date": "2022-11-09", + "capacity": "1", + "operator": "ZEENCO", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "description": "Würth Montélimar Logistic", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74183800000, + 44.52715900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-08-28", + "network": "ELECTROMAPS", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "792082489", + "opening_hours": "Mo-Fr 08:00-19:00, Sa 09:00-12:00, Sa 14:30-18:00", + "operator:email": "ismael@electromaps.com", + "charging_station:output": "22 kW", + "operator": "Electromaps", + "description": "SUBARU BOURG DE PEAGE", + "ref:EU:EVSE": "FRMAPP000000007624" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03585165093, + 45.02104051597 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - RUPT SUR MOSELLE - Rue Louis Courroy", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS88E145481;FRS88E145479", + "network": "MODULO - RUPT SUR MOSELLE - Rue Louis Courroy", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS88E145481;FRS88E145479", + "start_date": "2022-08-20", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66055900000, + 47.92633300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9008061;FRALLEGO9002933;FRALLEGO9000692;FRALLEGO9000691;FRALLEGO9000612;FRALLEGO9000611;FRALLEGO9002931;FRALLEGO9002932;FRALLEGO9008062;FRALLEGO9008111;FRALLEGO9008112", + "start_date": "2024-02-28;2024-02-23", + "operator": "Allego", + "socket:type2_combo:output": "75 kW;300 kW;0 kW", + "description": "MARSEILLE LE MERLAN;Allego Carrefour Marseille Le Merlan", + "amenity": "charging_station", + "operator:email": "info@allego.eu;fabien.lepeytre@allego.eu", + "capacity": "11;10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9008112;FRALLEGO9002933;FRALLEGO9002931;FRALLEGO9000691;FRALLPEVCARSMRSLM;FRALLEGO9000611;FRALLEGO9000612;FRALLEGO9000692;FRALLEGO9002932;FRALLEGO9008061;FRALLEGO9008062;FRALLEGO9008111", + "network": "Carrefour Energies;Allego Carrefour Marseille Le Merlan", + "owner:ref:FR:SIREN": "895163614;895163609;895163613;895163608;895163617;895163615;895163610;895163611;895163616;895163612", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40043000000, + 43.32963000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Jerecharge.com", + "description": "Corbeil - Parking ambulance", + "start_date": "2023-07-01;2024-07-01", + "owner:ref:FR:SIREN": "905083895", + "charging_station:output": "22 kW", + "network": "Jerecharge.com", + "opening_hours": "Mo-Su 08:00-18:00;Mo-Fri 08:00-18:00", + "ref:EU:EVSE": "FRJRCPAMB9100001", + "ref": "bcb18835-5b8f-43fc-b95b-502cf441789e", + "operator:email": "contact@jerecharge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46670200000, + 48.62016400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PMBCHGT", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "description": "Mr. Bricolage - Hagetmau", + "opening_hours": "24/7", + "start_date": "2024-02-01;2024-01-11", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61197820000, + 43.63737580000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPK8UHYWJQHE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Montboucher-Sur-Jabron, Pkg Golf de la Valdaine;Réseau eborn/K8UHYWJQHE", + "ref": "K8UHYWJQHE;63968" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79958600000, + 44.54131600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2114182170657709285", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "Th,Mo,Tu,Fr,We 09:00-18:00", + "charging_station:output": "22 kW", + "ref": "578831", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/AMULMNANEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85350600000, + 47.95248300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Ibis Styles - Montargis Arboria", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PIBSMON", + "start_date": "2023-01-04;2023-01-03", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67264916190, + 47.99590016237 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP8410347181167665121;FREBNPLLTN3BYZ1GZEWC", + "capacity": "2", + "start_date": "2024-03-11", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LLTN3BYZ1GZEWC;1068021", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/LLTN3BYZ1GZEWC;Pignans, Parking Recluse" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22765300000, + 43.30009700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRETIP34259A", + "start_date": "2024-09-12", + "amenity": "charging_station", + "capacity": "4", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRETIP34259A", + "operator:email": "contact@e-totem.fr", + "description": "e-Totem - 3M - Parking Georges d'Orques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78426700000, + 43.61055200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR22541;FROTHPOTHR22511;FROTHPOTHR22521;FROTHPOTHR22531", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GROUPE INCA", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "description": "GROUPE INCA - ARTIGUES-PRES-BORDEAUX", + "ref": "FR*SOD*S*OTHR*225*4*_*_;FR*SOD*S*OTHR*225*3*_*_;FR*SOD*S*OTHR*225*2*_*_;FR*SOD*S*OTHR*225*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50121900000, + 44.86818600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6595775", + "capacity": "2", + "amenity": "charging_station", + "network": "BORNE MARCQ MARCQ", + "ref:EU:EVSE": "FRCPIE6595775", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "BORNE MARCQ MARCQ", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09124100000, + 50.67784200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/KA6HPW7M1J", + "network": "Freshmile France", + "ref": "574535", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P49059503692070333", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95629900000, + 43.30156700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA1P5502446996781679336", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "6.9 kW", + "ref": "789201", + "opening_hours": "24/7", + "description": "WAAT/FRWATLU6EPPEKV", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82895200000, + 43.64118400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892398", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "opening_hours": "We,Tu,Mo,Th,Fr 07:30-12:00,We,Fr,Th,Tu,Mo 13:30-18:30,Sa 08:00-12:00,Sa 14:00-18:00", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4051372882642704615", + "description": "Freshmile France/LLJMYQVF767BOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26534300000, + 45.55293500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSWSE1000114229;FRSWSE1000123485", + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "ref": "1000123485;1000114229", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "description": "KEBA 2x22 Cellier 2;KEBA 2x22 Cellier 1", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91920600000, + 45.72392900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/TCIIETN158", + "amenity": "charging_station", + "capacity": "1", + "ref": "412115", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5823018205871226538", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26163300000, + 48.92738700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-22", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "Mo 07:00-12:00, Mo 13:30-18:00, Tu 07:00-12:00, Tu 13:30-18:00, We 07:00-12:00, We 13:30-18:00, Th 07:00-12:00, Th 13:30-18:00, Fr 07:00-12:00, Fr 13:30-18:00", + "description": "Loc + - Brignoles", + "ref:EU:EVSE": "FRSSDPLOC831701", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04066200000, + 43.40909800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E139425", + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - VERT-EN-DROUAIS - Rue de l'église", + "amenity": "charging_station", + "capacity": "1", + "network": "MODULO - VERT-EN-DROUAIS - Rue de l'église", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E139425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29079200000, + 48.76059000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "DALTONER CHERBOURG", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "22 kW", + "network": "DALTONER CHERBOURG", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:00", + "operator:email": "denis.lot@daltoner.fr", + "owner:ref:FR:SIREN": "479246837", + "start_date": "2021-09-01", + "ref": "01FGQVYRS0FX7TJ3JE1DEKMBBW", + "operator": "DALTONER CHERBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60000000000, + 49.61000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "101750", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P4738929572875749642", + "opening_hours": "24/7", + "description": "SDEA 10/QJ1CPN7JU7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00623900000, + 48.36081900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "701351;c66b7f1b-2175-4a46-a97f-88dd92e34b63;701345", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "480291319", + "ref:EU:EVSE": "FRZP1P45632;FRZP1P5069686777015640448;FRZP1P45631;FRZP1P1431713214607067873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "description": "Zephyre/LP003B14;Garage Chambault SARL - 22Kwh;Zephyre/LP003B1A", + "network": "Zephyre;Garage Chambault SARL ", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81507000000, + 47.54111100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE513", + "start_date": "2023-01-04", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "description": "Kiloutou_St_Malo", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97691840000, + 48.63451480000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "38962", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "ref:EU:EVSE": "FRS82PSADYAZ", + "description": "SDE82/SADYAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22428000000, + 43.91380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-29", + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*108*1*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BEAUVAIS TILLE", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST10813;FRIZFPFAST10812;FRIZFPFAST10811" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09799382437, + 49.45226861567 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-08;2021-04-07;2024-04-17", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49P49127A;FRS49E49127001", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Durtal - Camping;DURTAL - Rue du Camping", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24083300000, + 47.67183800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS60PNOAILLES", + "ref": "38776", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/Noailles", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20051000000, + 49.32800000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2020-06-16", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "GRAND LYON", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON2522;FRGLYPLYON2521;FRGLYPLYON2511;FRGLYPLYON2512", + "description": "LY805 - AVENUE PAUL SANTY", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*25*2*_*_;FR*SOD*S*LYON*25*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87683200000, + 45.72893000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NIMES - Rue Hoche", + "ref:EU:EVSE": "FRS30E30189024", + "start_date": "2022-09-13", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37013000000, + 43.84580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "ref:EU:EVSE": "FRS56P3649052606410875877", + "opening_hours": "24/7", + "description": "Mobilité électrique 56/GSBW6HJK6Q", + "ref": "892743", + "network": "Mobilité électrique 56", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75482100000, + 47.65731300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "B083", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "ref:EU:EVSE": "FRLMSE12346449961;FRLMSE12346449971", + "operator": "SOREGIES MOBILITES", + "start_date": "2016-01-15", + "operator:email": "irve@soregies.fr", + "description": "ROUILLE-1-2;ROUILLE-1-1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04111000000, + 46.42062000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "description": "Mobilygreen CPO/40f4a3db-a51c-49e7-9e69-bd825a6a340d", + "ref": "951440", + "capacity": "2", + "amenity": "charging_station", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMW1P501264411135829279", + "operator": "Mobilygreen | FR*MW1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40044000000, + 43.60640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1612;FRSIGPSIGE1611", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*16*1*_*_", + "charging_station:output": "22 kW", + "start_date": "2020-08-03", + "description": "SIGEIF - 123 GRANDE RUE - SEVRES", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20638000000, + 48.82209400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "L AIGUILLON SUR VIE - Parking Golf", + "ref:EU:EVSE": "FRBE1E85002001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-11-24", + "charging_station:output": "11 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79527900000, + 46.69085000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "668502966", + "start_date": "2023-05-22", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE10001410941;FRLMSE10001410942", + "capacity": "1", + "description": "Wurth Musee", + "operator": "ZEENCO", + "charging_station:output": "22 kW", + "network": "Wurth Musee", + "opening_hours": "Mo-Sun 07:00-21:00", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62915100000, + 48.41811700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "charging_station:output": "3.7 kW;36 kW", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Hagetmau | Place Gramont", + "ref": "fad2937d-4646-5151-869f-54052fbfd05a", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59212200000, + 43.65741300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "ref:EU:EVSE": "FRSE1PSE77MCHA", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2020-12-28", + "description": "Château du Mée - LE MEE SUR SEINE", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62751700000, + 48.53187500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRALLPEVCARSBERCK", + "description": "BERCK", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "start_date": "2022-12-20", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59952600000, + 50.40517300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRUYERES - Charlemagne", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR4053EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4053EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72047900000, + 48.20334400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRM34E34057003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-30", + "description": "CASTELNAU LE LEZ - Rue Didier Daurat", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91433000000, + 43.62339000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "182678;BVGPUCVDDT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPBVGPUCVDDT", + "description": "Parigny, Parking de la mairie;Réseau eborn/BVGPUCVDDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09707800000, + 45.99018800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P7165869149844829437", + "network": "Freshmile France", + "description": "Freshmile France/LLSOIKM0M128LK", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1194058", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23312500000, + 49.12850600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "69", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E771110013;FRP07E77111001;FRP07E771110011;FRP07E771110012;FRP07E771110014;FRP07E771110015;FRP07E771110016", + "start_date": "2022-10-01;2023-10-10", + "description": "CHESSY - Disney Village" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78250850000, + 48.86674140000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2021-06-08", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPW7NM5NBTSY", + "operator:email": "contact@reseau-eborn.fr", + "ref": "W7NM5NBTSY", + "description": "Toulon, Rue Antoine Bonnet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92388710000, + 43.13027018000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "socket:type2_combo:output": "225 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "start_date": "2023-05-04", + "capacity": "4", + "charging_station:output": "225 kW", + "description": "Bron - Hôtel Ibis Lyon Est", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPBROHI", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90576000000, + 45.74678800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "capacity": "5", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Parking Paris gare de Lyon Diderot - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E75112004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37259039823, + 48.84497761458 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "description": "SONEPAR BEAUNE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2023-07-22", + "ref:EU:EVSE": "FRCPIE6622335", + "network": "SONEPAR BEAUNE", + "ref": "FRCPIE6622335" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86694300000, + 47.02441300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP8271480788358241454", + "operator": "Easy Charge | FR*ECH", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "description": "Easy Charge/AI6HVCTTMU", + "ref": "891981" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46310100000, + 48.41155500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRV75PPX1611", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "ref": "FR*V75*PPX16*11", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Place des États-Unis 16", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29270000000, + 48.86850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "487206", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/FIXHIOIBDN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8320244511163713531", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36278700000, + 48.09919700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Best Western Nantes Beaujoire - Sure Hotel", + "network": "BEST WESTERN NANTES", + "owner:ref:FR:SIREN": "808790224", + "start_date": "2022-10-17", + "amenity": "charging_station", + "capacity": "12", + "operator": "TotalEnergies Marketing France", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRTCBP00989", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRTCBP00989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50844792533, + 47.25090051279 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P535233747656358572", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "706004", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WZFERVLS6W" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26803200000, + 44.39123400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-08", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "description": "BMW Mini - Auxerre", + "ref:EU:EVSE": "FRSSDPPANELBMW890001", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-18:00, Tu 09:00-12:00, Tu 14:00-18:00, We 09:00-12:00, We 14:00-18:00, Th 09:00-12:00, Th 14:00-18:00, Fr 09:00-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56282600000, + 47.81174700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-03-13", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2910300", + "description": "Landerneau-Rue Saint-ernel", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26138100000, + 48.44459900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS11E11069004", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-18", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "CARCASSONNE - Place Gaston Jourdanne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36040680000, + 43.21056950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Logis Hôtel Edgar", + "owner:ref:FR:SIREN": "501599278", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "description": "Hôtel Edgar - 22 kW AC", + "opening_hours": "24/7", + "ref": "b8893b20-ced1-4f9c-a8ea-4b4b444753c8", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZP1PEAC65920;FRZP1PEAC80416", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76051935000, + 48.51350312000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS08E57638;FRS08E57637", + "start_date": "2021-09-07", + "ref:EU:EVSE": "FRS08E57638;FRS08E57637", + "network": "MODULO - BOGNY SUR MEUSE - Pl. Danton", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "description": "MODULO - BOGNY SUR MEUSE - Pl. Danton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76589100000, + 49.85137800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/UVJGEM", + "opening_hours": "24/7", + "ref": "64691", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PUVJGEM", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36253000000, + 49.75650000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*244*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST24411;FRIZFPFAST24412;FRIZFPFAST24413", + "start_date": "2024-07-25", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "description": "IZIVIA FAST - MC DONALDS - CHERBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61667679570, + 49.63383805303 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-04-21;2024-04-22", + "capacity": "1;2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS44E44025001;FRS44P44025A", + "description": "OuestCharge - Diva Sp - Campbon - Bretagne;CAMPBON - Rue De Bretagne", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97064700000, + 47.41373000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-09-07;2023-05-23", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "01F5ZAKH618NJP57369S0XJBFJ", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "La Chapelle-la-Reine;LA CHAPELLE-LA-REINE - Rue Carnot", + "ref:EU:EVSE": "FRS77P77088A;FRS77E77088001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56864900000, + 48.31697800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator": "GREENSPOT", + "capacity": "14", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CHÂTEAU LYNCH BAGES", + "description": "CHÂTEAU LYNCH BAGES", + "ref:EU:EVSE": "FRGSPP1000085911;FRGSPP1000055704;FRGSPP1000055701;FRGSPP1000055700;FRGSPP1000055702;FRGSPP1000055703;FRGSPP1000085912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75477215958, + 45.19126611465 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "description": "MODULO - CHINON - Pl. Jeanne d'Arc", + "network": "MODULO - CHINON - Pl. Jeanne d'Arc", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS37E219907;FRS37E219903", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS37E219907;FRS37E219903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24490200000, + 47.16480000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "5_AM0004_SDE54", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "description": "SDE54 CCPS HAROUE", + "opening_hours": "24/7", + "ref": "2fa4a79f-0671-5c9c-845e-d4d2b96f3229" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17978000000, + 48.46684400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref": "FRG10P69382FA", + "start_date": "2024-08-05;2024-08-02", + "network": "SPLM Marché Gare zone 1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRG10P69382FA", + "operator:email": "contact@e-totem.fr", + "description": "SPLM Marché Gare zone 1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82315745000, + 45.74210286000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "ref": "7477ddbe-de2f-5a16-8137-32953f60e4ec", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | HOSSEGOR - Parking avenue des écoles", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42183500000, + 43.66288800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 1 PLACE STALINGRAD - SURESNES", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2022-06-08", + "ref:EU:EVSE": "FRSIGPSIGE27512;FRSIGPSIGE27511", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*275*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20193100000, + 48.86316500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GVA VILLEFRANCHE 2", + "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", + "network": "GVA VILLEFRANCHE 2", + "ref:EU:EVSE": "FRCPIE6497345;FRCPIE6497355", + "amenity": "charging_station", + "start_date": "2021-09-07", + "capacity": "3", + "charging_station:output": "22 kW", + "ref": "FRCPIE6497345;FRCPIE6497355", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74245200000, + 45.99189700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446753", + "description": "Leclerc/LCYZMPMIOE", + "ref:EU:EVSE": "FRLE2P6737767782658673676" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184800000, + 44.89863000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "MOBIVE | Sainte Fereole | Av. de la Republique", + "ref": "62941d15-0f29-5091-b919-f9f81b5599ad" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58168300000, + 45.22820600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau AlterBase - Thouars / Mauzé-Thouarsais - Mairie", + "start_date": "2015-07-20", + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB18117A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27826900000, + 46.97675500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-03-11", + "ref:EU:EVSE": "FRAGXP01173C", + "operator": "SPIE CITYNETWORKS", + "network": "Pays de GEX", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "240100750", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info-usager.silene@spie.com", + "description": "Pays de Gex - ePremium - Gex - Charpak" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06652000000, + 46.33641400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3857EVCP02;LFR3857EVCP01", + "capacity": "4", + "ref:EU:EVSE": "LFR3857EVCP02;LFR3857EVCP01", + "description": "VALLAURIS Tapis Vert", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05772800000, + 43.57771300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA TRONCHE - Chemin De l'Eglise", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM38E38516015", + "start_date": "2024-08-28", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74403725197, + 45.20581675910 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "ANTIBES - PARKING DULYS", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-11-17", + "ref:EU:EVSE": "FRA16PWIIZ13212;FRA16PWIIZ13211", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*132*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10173700000, + 43.57165900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "978017", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLMYJ1S4M28QZ2", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P4769013268031515020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83172000000, + 46.30467800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-12-12;2023-11-29", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Aldi - Boé", + "socket:type2_combo:output": "160 kW", + "opening_hours": "24/7", + "charging_station:output": "22 kW;160 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PALDBOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63192470185, + 44.18487229272 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-04", + "ref:EU:EVSE": "FREBNPJKHUKN", + "description": "Annecy-le-Vieux, RIE;Réseau eborn/JKHUKN", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "JKHUKN;32944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16349000000, + 45.92630000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "description": "La Verrière - Hôtel The Originals City", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "operator": "ELECTRA", + "ref:EU:EVSE": "FRELCPVERHC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94541400000, + 48.75730900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "ref:EU:EVSE": "FRP07E06069002", + "start_date": "2024-02-12", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GRASSE - Hôtel de Ville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92503300000, + 43.65900900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "SOMOUEST BORNE 1", + "amenity": "charging_station", + "ref": "FRCPIE6685205", + "start_date": "2023-03-07", + "charging_station:output": "22 kW", + "opening_hours": "Mo 07:30-18:30,Tu 07:30-18:30,We 07:30-18:30,Th 07:30-18:30,Fr 07:30-18:30", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6685205", + "description": "SOMOUEST BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54652200000, + 48.12130900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "charging_station:output": "120 kW;24 kW;22 kW", + "ref:EU:EVSE": "FRECHPTHKQUCFYN1;FRECHPIVMKSI9TBL;FRECHP531725072470568344;FRECHP7590780145054201874", + "description": "Le Chesnay-Rocquencourt , Boulevard Saint Antoine;Easy Charge/IVMKSI9TBL;Easy Charge/THKQUCFYN1", + "amenity": "charging_station", + "ref": "756936;IVMKSI9TBL;756867;THKQUCFYN1", + "owner:ref:FR:SIREN": "901772400", + "opening_hours": "24/7", + "socket:type2_combo:output": "24 kW;120 kW", + "start_date": "2023-03-08", + "network": "Easycharge services;Easy Charge", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12136000000, + 48.81823000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "description": "ENGIE Vianeo - Epinal - Hôtel de l'Innovation Bois", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP143017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46014600000, + 48.19866700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/EGZJSX", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PEGZJSX", + "network": "Freshmile France", + "ref": "159346", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61464000000, + 49.05300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX06*08", + "amenity": "charging_station", + "description": "Paris | Rue Péguy 2", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "ref:EU:EVSE": "FRV75PPX0608", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32803630000, + 48.84300760000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PAUFXYU", + "operator:email": "roaming@freshmile.com", + "ref": "120758", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/AUFXYU", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59463000000, + 48.53150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "16", + "description": "Volvo Honda - Aix", + "network": "DRIVECO", + "start_date": "2023-05-25;2021-03-29", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-19:00, Tu 08:00-19:00, We 08:00-19:00, Th 08:00-19:00, Fr 08:00-19:00, Sa 09:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMAURINVOLVO131001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42118200000, + 43.51195600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22360003", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-27", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TREGUEUX - Le Perray" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.70304400000, + 48.48202100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - SANCERRE - Rempart des Abreuvoirs", + "ref:EU:EVSE": "FRS18E151321;FRS18E151322", + "ref": "FRS18E151321;FRS18E151322", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SANCERRE - Rempart des Abreuvoirs" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83647572000, + 47.33148416000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-13", + "amenity": "charging_station", + "description": "CEGELEC GERZAT", + "network": "CEGELEC Clermont-Montluçon", + "owner:ref:FR:SIREN": "652028218", + "capacity": "4", + "ref:EU:EVSE": "Non concerné", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "francois.chatel@cegelec.com", + "ref": "c1b7f5de-c281-493b-ae91-3ce621147e7e", + "operator": "CEGELEC RADA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15000000000, + 45.81000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "75440", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P4537293437925557489", + "description": "SDEA 10/XKFIUVLHYL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01652400000, + 48.46515800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "description": "ALBI - Pratgraussals - Chemin Pratgraussals", + "amenity": "charging_station", + "capacity": "1", + "socket:type2_combo:output": "56 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "charging_station:output": "56 kW", + "ref:EU:EVSE": "FRS81E8100401012;FRS81E8100401011;FRS81E8100401021;FRS81E8100401022", + "owner:ref:FR:SIREN": "258100072", + "start_date": "2022-03-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13537502300, + 43.93153762800 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "IONITY GMBH", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIONE101200", + "start_date": "2018-07-25", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE101200", + "description": "IONITY Tours La Longue Vue" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70019100000, + 43.99963300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-26;2024-04-16;2021-04-20", + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "description": "OuestCharge - Diva Sp - La Regrippiere - Chapelle;LA REGRIPPIERE - Rue De La Chapelle", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRS44P44140A;FRS44E44140001", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18218600000, + 47.18336300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "description": "CHAUCONIN-NEUFMONTIERS - Rue Pierre Charton;Chauconin-Neufmontiers", + "ref": "01F5ZAKH618H9RPFGP1PPSK2KW", + "capacity": "2", + "start_date": "2016-11-07;2023-05-04", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref:EU:EVSE": "FRS77P77335A;FRS77E77335001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83754800000, + 48.97342300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "SAINT-MARTIN-AU-LAËRT - Chemin du Tourniquet (Parking Maison du Marais)", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH01E62757002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24773800000, + 50.75604600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - FONDETTES - Rue Alfred de Musset", + "description": "MODULO - FONDETTES - Rue Alfred de Musset", + "ref:EU:EVSE": "FRS37E221841;FRS37E221840", + "ref": "FRS37E221841;FRS37E221840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60873600000, + 47.41048200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - VERDUN - Rue du 8 mai 1945", + "network": "MODULO - VERDUN - Rue du 8 mai 1945", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS55E66603;FRS55E66604", + "ref": "FRS55E66603;FRS55E66604" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39074000000, + 49.16031800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "description": "JOG01 - BOULEVARD LOUIS PRADEL", + "start_date": "2020-06-17", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*LYON*15*2*_*_;FR*SOD*S*LYON*15*1*_*_", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRGLYPLYON1521;FRGLYPLYON1512;FRGLYPLYON1511;FRGLYPLYON1522" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04853200000, + 45.79554400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMELP5932007", + "network": "MEL", + "description": "RADINGHEM-EN-WEPPES - Parking de la Mairie", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FR*MEL*P59320*07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90493900000, + 50.62200400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPMCDONALDSONET128501", + "start_date": "2019-03-29", + "description": "McDonald\\'s - Onet-le-Château", + "opening_hours": "Mo 07:00-23:59, Tu 07:00-23:59, We 07:00-23:59, Th 07:00-23:59, Fr 07:00-23:59, Sa 07:00-23:59, Su 07:00-23:59", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59336000000, + 44.37279900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6582005", + "ref": "FRCPIE6582005", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT AMIENS", + "network": "SONEPAR CONNECT AMIENS", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28650300000, + 49.92846900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "477756", + "ref:EU:EVSE": "FRLE2P7965242117830197601", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/CKUSIH2KYG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46957500000, + 46.83499700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33", + "ref": "f8274693-da15-5854-9f8f-d9db07b10195", + "description": "MOBIVE | Sainte Eulalie | Rue de L'Estey Fleuri" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48524100000, + 44.90787500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "8", + "description": "Vigneux-sur-Seine - Place des Quatre Saison", + "amenity": "charging_station", + "ref": "45e7427e-5200-59e4-b985-c0ec7e5ac595", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43926800000, + 48.69006700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Green To Wheel", + "amenity": "charging_station", + "socket:type2_combo:output": "50 kW;300 kW", + "capacity": "14;10", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "start_date": "2023-12-11;2022-06-03", + "operator:email": "info.allego.france@allego.eu", + "charging_station:output": "50 kW;300 kW;22 kW;43 kW", + "ref:EU:EVSE": "FRSITE00000015;FRALLPCAS005", + "network": "ALLEGO;GreenToWheel", + "description": "CASINO AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83446100000, + 43.92792700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint Herblain", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR3876EVCP02;LFR3876EVCP01", + "ref:EU:EVSE": "LFR3876EVCP02;LFR3876EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61743400000, + 47.21123400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Istres, Centre Commercial Prédina", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PLDYQJ5N3BA", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98794500000, + 43.49368100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-06-02", + "ref": "FRS88E184033;FRS88E184031", + "capacity": "2", + "amenity": "charging_station", + "description": "MODULO - ST AME - Rue du stade", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST AME - Rue du stade", + "ref:EU:EVSE": "FRS88E184033;FRS88E184031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67127000000, + 48.02590000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRA16PWIIZ23911;FRA16PWIIZ23912", + "ref": "FR*SOD*S*WIIZ*239*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-08-30", + "charging_station:output": "22 kW", + "description": "ANTIBES - PARKING CHATAIGNIERS", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11720400000, + 43.57993800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "102254", + "description": "Freshmile France/AUCZWJ", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1PAUCZWJ", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74836000000, + 48.58140000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "200 kW", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "start_date": "2024-01-11", + "description": "Mon Brico - Chantonnay", + "network": "Power Dot France", + "charging_station:output": "50 kW;200 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMONCHA", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04951902744, + 46.68156927699 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPLOGXNLQR1V", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Aix-En-Diois, Parking face Mairie;Réseau eborn/LOGXNLQR1V", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "31960;LOGXNLQR1V" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40190800000, + 44.71239200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARF - Bornes Publiques/8CF2C967-C80C-4463-B4BE-A2D9C79A1A2A", + "ref": "377796", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP890404415885570965", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47947900000, + 43.76008300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-02-15", + "description": "BRICOMARCHE - MAINTENON", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR58711;FROTHPOTHR58712", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*587*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56794400000, + 48.57908800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "85934;UBG4WBEFLR", + "description": "Digne-Les-Bains, Gare Routière;Réseau eborn/UBG4WBEFLR", + "ref:EU:EVSE": "FREBNPUBG4WBEFLR", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23054700000, + 44.09287000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "231529", + "description": "Réseau eborn/lurcylevis", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPLURCYLEVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93773000000, + 46.72770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "50 kW;300 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "start_date": "2023-07-07;2023-06-16", + "network": "ENGIE Vianeo", + "description": "ENGIE Vianeo - A83 Deux-Sèvres", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP104110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50736400000, + 46.42841300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P5712831928427195545", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "socket:type2_combo:output": "50 kW;43 kW", + "opening_hours": "24/7", + "description": "Freshmile France/NRG9ZX5F3C", + "charging_station:output": "50 kW;43 kW", + "operator": "Freshmile | FR*FR1", + "ref": "559670" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70678300000, + 48.56592600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Paris | Rue de Tolbiac 245", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1315", + "amenity": "charging_station", + "ref": "FR*V75*PPX13*15", + "start_date": "2022-06-17", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34244980000, + 48.82623190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/I7ALUF5SHC", + "operator:email": "roaming@freshmile.com", + "ref": "559730", + "socket:type2_combo:output": "22 kW;60 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4906178104130723852", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56976800000, + 48.77449900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "start_date": "2022-06-01", + "amenity": "charging_station", + "capacity": "4", + "description": "Domaine de Litteau (Camping Siblu) - Litteau", + "opening_hours": "Mo 09:30-12:00, Mo 14:00-17:30, Tu 09:30-12:00, Tu 14:00-17:30, We 09:30-12:00, We 14:00-17:30, Th 09:30-12:00, Th 14:00-17:30, Fr 09:30-12:00, Fr 14:00-17:30, Sa 09:30-12:00, Sa 14:00-17:30, Su 09:30-12:00, Su 14:00-17:30", + "ref:EU:EVSE": "FRSSDPSIBLU144901", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92286500000, + 49.15807700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "description": "900121;900021", + "ref:EU:EVSE": "FRS27PGAILLONPDOUMER;FRS27PLOUVIERSCHAMPSVILLE", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "start_date": "2016-07-01;2017-01-01", + "opening_hours": "24/7", + "network": "SIEGE27", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539000000, + 49.21079000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "BEGARD - Place du Centre", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-08", + "ref:EU:EVSE": "FRS22E22004001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30045700000, + 48.63008900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78576001", + "description": "SAINT-RÉMY-L'HONORÉ - Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-09-01", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88113000000, + 48.75600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Mairie_Wattrelos_Parking", + "ref:EU:EVSE": "FRROSE139", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2021-09-01", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21553600000, + 50.70173900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "972656", + "ref:EU:EVSE": "FRWATP3761924053657690948", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLA4VXBVC1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44138100000, + 43.51531400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440200", + "capacity": "7", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "start_date": "2022-07-08", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "ref": "FRIONE440200", + "description": "IONITY Saint Laurent" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63404000000, + 48.99286200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - ESTERNAY - Pl. des Tilleuls", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS51E42869;FRS51E42868", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-12-11", + "network": "MODULO - ESTERNAY - Pl. des Tilleuls", + "ref": "FRS51E42869;FRS51E42868" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55707300000, + 48.73262000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS65E65129001", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CASTELNAU MAGNOAC - Devant la poste", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50553000000, + 43.29509000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-05-17;2024-05-03", + "socket:type2_combo:output": "300 kW;150 kW", + "ref": "FRHPCPNF080374;FRHPCPNF080373", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF080374;FRHPCPNF080373", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531681805;531681803;531681802;531681799;531681798;531681797;531681796;531681793;531681791;531681792;531681794;531681795;531681800;531681801;531681804;531681806", + "capacity": "16;18", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "RELAIS REIMS CHAMPAGNE SUD;RELAIS REIMS CHAMPAGNE NORD", + "charging_station:output": "300 kW;150 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24600400000, + 49.11921500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS34E34163002", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MONTARNAUD - Parking Covoiturage D619", + "start_date": "2022-01-11", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69226455688, + 43.62854276864 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-01-11", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Colpo - Rue Nationale", + "ref:EU:EVSE": "FRS56PGEPWPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81222400000, + 47.81756700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "892893", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2282465472699662764", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/NFZ3TXLMC0", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99923400000, + 49.21762800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2021-01-15", + "description": "Métropolis/FR*MGP*P92063*D;Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "330287", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18231100000, + 48.87334000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRSSDPLECLERCOCEANE444001", + "network": "DRIVECO", + "opening_hours": "Mo 09:00-20:30, Tu 09:00-20:30, We 09:00-20:30, Th 09:00-20:30, Fr 09:00-20:30, Sa 09:00-20:30", + "amenity": "charging_station", + "description": "Leclerc Océane - Reze", + "charging_station:output": "22.08 kW", + "start_date": "2020-07-23", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54606100000, + 47.16055400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "MC HOTELLERIE", + "start_date": "2023-05-23", + "ref": "FRC2P006401", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRC2P006401", + "operator": "CAR2PLUG", + "charging_station:output": "22.08 kW", + "owner:ref:FR:SIREN": "803965110", + "operator:email": "contact@car2plug.fr", + "description": "MC HOTELLERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47833440000, + 43.31906040000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "2f68eef6-cc99-11ed-afa1-0242ac120002", + "ref:EU:EVSE": "FRLUMEHOTELNIDCIGOGNES11", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "4", + "description": "HOTEL AU NID DE CIGOGNES", + "start_date": "2023-04-15", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37109660000, + 48.15908050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "operator": "195__SDE24", + "amenity": "charging_station", + "description": "MOBIVE | Lalinde | Impasse du Bassin", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "c03540f1-98c7-50b2-b932-1f0c1e27f2b9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74053000000, + 44.83758000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Restaurant Les Frangins - Saint Medard en Jalles", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2023-10-31", + "ref:EU:EVSE": "FRSE1PSE33MJDA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69657700000, + 44.88701400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BornEco/6326b6ba5b86b978c9c6540b", + "ref": "588491", + "capacity": "5", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBHMP4824854211717838901", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "7.4 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37517300000, + 48.90509500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "24", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P7365054371094477188", + "network": "Leclerc", + "description": "Leclerc/HINBFLC45F", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "471237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36859000000, + 48.57543500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PONBZA2FLZQ", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "description": "Rognac, Boulevard des Jeunes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23283000000, + 43.48956000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "598308", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS89P8284925555758699028", + "description": "SDEY/OBTODAY7YQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25752700000, + 48.21188600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-02-24", + "operator": "R3", + "amenity": "charging_station", + "ref:EU:EVSE": "FR3R3P89363721", + "capacity": "3", + "description": "R3 - Norauto Coudekerque", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38240500000, + 51.01761900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/XNENEJQFNF", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P2583351186237053990", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "412295", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61799100000, + 44.66134500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "100 kW;188 kW", + "ref:EU:EVSE": "FRPD1PSYUBRC", + "start_date": "2023-10-18", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "188 kW;50 kW;100 kW;22 kW", + "opening_hours": "24/7", + "capacity": "11", + "description": "Hyper U - Brie-Comte-Robert", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60090894431, + 48.70317876180 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/WGEEMN;Minzier, Bar A Thym", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPWGEEMN", + "ref": "79150;WGEEMN", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98003000000, + 46.04610000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREVZP9079170336334595932", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "4", + "ref": "935433", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com", + "description": "EVzen/bf49bf18-6136-4ba5-92f6-d547a66e9d7e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01870700000, + 43.24198300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*78*3*_*_;FR*SOD*S*OTHR*78*2*_*_", + "start_date": "2020-01-23;2022-03-18", + "network": "TITI FLORIS", + "amenity": "charging_station", + "capacity": "1", + "description": "TITI FLORIS - COUERON", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR7831;FROTHPOTHR7821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67740300000, + 47.24010300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "368740;G9WTPPZMMX", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/G9WTPPZMMX;Meyras, Place du Champ de Mars", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPG9WTPPZMMX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26756300000, + 44.68107400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "LVC3YKSO2H;50713", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Brignoles, 29 Rue de la République;Réseau eborn/LVC3YKSO2H", + "ref:EU:EVSE": "FREBNLVC3YKSO2H;FREBNPLVC3YKSO2H", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05890600000, + 43.40666100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING DU CRIN BLANC - ARLES", + "ref": "FR*SOD*S*OTHR*394*1*_*_", + "network": "CAMPING CRIN BLANC", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-05-05", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR39411;FROTHPOTHR39412", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47379100000, + 43.66155200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P8960690576363091790", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/ZXIBYMRXBH", + "ref": "346355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25597400000, + 43.34561100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP34981", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Saint-Louis, France", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54333800000, + 47.60523900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLV2FUGXJ2MPM6", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6436242737988886483", + "charging_station:output": "25 kW;22 kW", + "ref": "1121886" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20221100000, + 49.13358800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "La Recharge - Aix Marseille Provence", + "description": "AMP | Parking Impasse de La Calade", + "ref": "FR*TCB*P01867", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRTCBP01867", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47992300000, + 43.33814600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P1453616227827637405", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "971960", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLOZMHP5C214TH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74029600000, + 48.58804500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-05-22", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS22E22208001", + "charging_station:output": "22 kW", + "description": "Plouasne-Boulevard de la Gare (parking de l'église)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00709400000, + 48.30069700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "50784", + "owner:ref:FR:SIREN": "349214825", + "amenity": "charging_station", + "capacity": "1", + "description": "Mazda - Perigueux (Trelissac) - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "network": "MAZDA PERIGUEUX", + "ref:EU:EVSE": "FRZMAE22AC50784", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "start_date": "2021-01-06", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61518180000, + 48.81619720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "description": "Najeti_Hotel_Poste", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "ref:EU:EVSE": "FRROSE349", + "start_date": "2022-06-24", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83294900000, + 47.02276300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "MANTES-LA-VILLE - Rue des Brouets ", + "ref:EU:EVSE": "FRY01E78362004", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69661500000, + 48.98183900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "network": "Dijon Sud", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRIOYE453851;FRIOYE453805;FRIOYE453804;FRIOYE453801;FRIOYE453802;FRIOYE453803;FRIOYE453806;FRIOYE453852;FRIOYE453853", + "description": "Dijon Sud", + "capacity": "9", + "socket:type2_combo:output": "50 kW;350 kW", + "ref": "FRIOYE453851;FRIOYE453805;FRIOYE453804;FRIOYE453801;FRIOYE453802;FRIOYE453803;FRIOYE453806;FRIOYE453852;FRIOYE453853", + "charging_station:output": "50 kW;350 kW;43 kW", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04562090000, + 47.27201460000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Territoire de Energie TE53", + "operator": "Bouygues E&S", + "description": "LAVAL - Rue Madeleine Bres", + "start_date": "2024-05-31", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS53E53130011", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78459440000, + 48.08051250000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ELNE - Rue De La Pompe Grosse", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS66E66065002", + "operator": "Bouygues E&S", + "start_date": "2018-05-11", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97532200000, + 42.59834500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20738690000, + 49.97150620000 + ], + [ + 1.20756050000, + 49.97113620000 + ], + [ + 1.20760470000, + 49.97109050000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-09", + "owner:ref:FR:SIREN": "898270251", + "description": "Le Mans II", + "ref:EU:EVSE": "FRIENE010902;FRIENE010901", + "amenity": "charging_station", + "capacity": "4", + "network": "Le Mans II", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref": "FRIENE010902;FRIENE010901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23663963000, + 48.00449155000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "DINARD - Rue du bois Met (Parking du port breton) ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35093003B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05487400000, + 48.62211200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-02-23", + "description": "SAINT GERMAIN DU CORBEIS - Route de Fresnay", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "SE61-SAGE-002", + "ref:EU:EVSE": "FRS61P61397B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07733610000, + 48.41933080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "694346", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WMZPDCEPIA", + "ref:EU:EVSE": "FRFR1P1400954793144000294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34937400000, + 45.34162400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS31PGTTUTH", + "ref": "GTTUTH", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "start_date": "2018-02-21", + "opening_hours": "24/7", + "description": "Pins-Justaret, Croisette", + "operator": "Freshmile SAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38719000000, + 43.47980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "NANTERRE - Rue du 8 Mai 1945", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-07-22;2022-05-19", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE92050006", + "network": "SIPPEREC", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20618560000, + 48.89285000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCG0E000433;FRCG0E000434;FRCG0E000435;FRCG0E000436", + "description": "BMW MINI - H.Cormier La Rochelle - 17138 - 1", + "opening_hours": "Sa 09:00-18:00,Fr 09:00-19:00,Th 09:00-19:00,We 09:00-19:00,Tu 09:00-19:00,Mo 09:00-19:00", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "4", + "network": "BMW MINI - H.Cormier La Rochelle - 17138 - 1", + "charging_station:output": "22 kW;150 kW", + "ref:EU:EVSE": "FRCG0E000433;FRCG0E000434;FRCG0E000435;FRCG0E000436", + "operator:email": "info@chargeguru.com", + "start_date": "2022-11-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10478986000, + 46.17954067000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*177*1*_*_", + "description": "SAINT-ETIENNE-DE-TINEE - PARKING PLACE SAN MENT", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-10-19", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE17712;FRM06PNICE17711", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92523330905, + 44.25773811741 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Damazan | Parking Covoiturage", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "charging_station:output": "22 kW", + "ref": "f1ac38ca-0ec1-54ac-9eed-7aab97adc50e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27050700000, + 44.28681200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSIGPSIGE31511;FRSIGPSIGE31512", + "start_date": "2022-11-30", + "ref": "FR*SOD*S*SIGE*315*1*_*_", + "socket:type2_combo:output": "24 kW", + "description": "SIGEIF - 32 AVENUE HENRI VARAGNAT - BONDY", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48408100000, + 48.91498500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "170171;170170", + "ref:EU:EVSE": "FRBMPS170171;FRBMPS170170", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Super U - Le Molay-Littry", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87413000000, + 49.24607400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR3159EVCP01", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "GARGES LES GONESSE Cerdan", + "ref:EU:EVSE": "LFR3159EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40290200000, + 48.96203000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Gailleres | Parking Mairie", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "52936a6e-70a9-5943-a881-f603270e77e7", + "operator": "199__SYDEC40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37128900000, + 43.94082300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.3 kW", + "operator": "2_AM0001_SMOYS", + "description": "Villeneuve-le-Roi - Avenue du Maréchal de Turenne", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c4e3d7d6-cd7b-5949-bc79-dcb0e789f959" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43450600000, + 48.74368700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-14", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "description": "CARNOT RESERVOIRS - VERSAILLES", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP78000VERCARN0T", + "ref": "FR*55C*P78000*VER*CARN0T", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12451500000, + 48.80698000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "BAGNERES DE LUCHON Ader", + "socket:type2_combo:output": "50 kW", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW", + "ref:EU:EVSE": "LFR3544EVCP02;LFR3544EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3544EVCP02;LFR3544EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59711600000, + 42.79802600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "description": "Intermarché - Angers", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "FRPD1PITMANG", + "amenity": "charging_station", + "start_date": "2024-08-29;2024-08-20;2024-09-23", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53537420236, + 47.45551410099 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPUYBDVS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/UYBDVS;Selonnet, Place de La Mairie", + "start_date": "2020-06-11", + "ref": "UYBDVS;78660" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31201000000, + 44.37110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "description": "e-Totem - Thionville Route de Longwy", + "socket:type2_combo:output": "25 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-10-16", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref": "FRETIP57672I", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "25 kW;22 kW", + "ref:EU:EVSE": "FRETIP57672I" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15758880000, + 49.35424210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "description": "Parking gare de Saint-Pierre-des-Corps nord - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP01E37233001", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72363900000, + 47.38638900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-06", + "network": "DRIVECO", + "description": "Carrefour Market - Argentan", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT612001", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02808100000, + 48.74955500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2023-04-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Réseau eborn/RDX2AWT3HH;La Seyne Sur Mer, Parking Gare SNCF", + "ref:EU:EVSE": "FREBNP1299257781901109498;FREBNPRDX2AWT3HH", + "ref": "787008;RDX2AWT3HH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87761400000, + 43.11720800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR50811;FROTHPOTHR50812", + "capacity": "2", + "amenity": "charging_station", + "description": "BRICOCASH - AGDE", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*508*1*_*_", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "start_date": "2022-10-10", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49335800000, + 43.30573400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "PARKING CAMPING BORNE 3", + "description": "PARKING CAMPING BORNE 3", + "start_date": "2023-05-11", + "amenity": "charging_station", + "ref": "FRCPIE6719695;FRCPIE6719675;FRCPIE6717765", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6719695;FRCPIE6719675;FRCPIE6717765", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145000000, + 49.34683300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P3533605968870719323", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/YUIX1NLTFN", + "charging_station:output": "7.4 kW", + "ref": "368986" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59315000000, + 44.80634500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "5 Rue Henri Matisse - Montivilliers", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "start_date": "2023-04-11;2023-04-17", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRUBIE10076241;FRUBIE10074232;FRUBIE10074163;FRUBIE10073129;FRUBIE10074197;FRUBIE10075551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17341700000, + 49.55138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "735213", + "description": "Freshmile France/VWCR0TPAP3", + "ref:EU:EVSE": "FRFR1P3918517836915523582" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40107500000, + 43.52019300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "TOULOUSE - 71 rue Louis Vitet", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRTLSE31555047", + "start_date": "2022-08-19", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45861000000, + 43.59747000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "11 kW;60 kW;43 kW", + "ref:EU:EVSE": "FRFR1P4481622608311010953", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "626162", + "network": "Freshmile France", + "capacity": "3", + "socket:type2_combo:output": "60 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LILWCYZOHV", + "opening_hours": "Sa 14:00-17:00,We,Th,Fr,Tu,Mo 08:00-11:00,We,Mo,Tu,Fr,Th 14:00-18:00,Sa 09:00-11:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51979100000, + 43.54469100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/H9D6ILYVTS", + "ref:EU:EVSE": "FRS14P2142851675464528403", + "operator:email": "roaming@freshmile.com", + "ref": "461751", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41935400000, + 49.02418900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS12E12089002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "start_date": "2024-09-02", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DECAZEVILLE - Place Decazes", + "socket:type2_combo:output": "24 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25684400000, + 44.55648900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1042596", + "network": "WAAT", + "capacity": "2", + "description": "WAAT/FRWATLFFLLPJ47", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRWA3P7811678913673644827", + "operator": "WAAT SAS | FR*WA3", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56667900000, + 50.41854600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS49E49220002", + "description": "NOYANT - Bd des Écoles", + "socket:type2_combo:output": "50 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "50 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-04-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11738889664, + 47.51026153564 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref:EU:EVSE": "FRS70PVESOULMEILLIER", + "operator:email": "roaming@freshmile.com", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIED70/Vesoulmeillier", + "ref": "64976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16127000000, + 47.62240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "STEENVOORDE - Rue Alfred de Musset - Aire de Covoiturage", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-10-04", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRH14E59580002", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60065848066, + 50.81050974828 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "description": "SAINT-NAZAIRE - Parking Gare Nord;OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "ref:EU:EVSE": "FRS44P44184A;FRS44E44184002;FRS44E44184001", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-05-06;2024-04-26;2024-04-16;2024-05-08;2021-04-16", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "charging_station:output": "22 kW;7 kW", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "capacity": "1;4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21033600000, + 47.28737800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "start_date": "2022-12-08", + "socket:type2_combo:output": "25 kW", + "owner:ref:FR:SIREN": "256300146", + "ref:EU:EVSE": "FRS63P63270B", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SIEG63", + "description": "SIEG63 - ePremium - Parentignat - Chateau", + "operator:email": "info-usager.silene@spie.com", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29023480000, + 45.53237490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "FERRIÈRE-LA-PETITE - Place Charles Tondeur", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRH02E59231001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02020600000, + 50.23865100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "AGDE GOLF - Avenue Des Isles D'Amérique", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS34E34003002", + "network": "Reveo", + "start_date": "2022-02-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49473888889, + 43.28122780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94021006", + "start_date": "2024-01-12", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "SIPPEREC", + "description": "CHEVILLY-LARUE - Rue Albert Thuret" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33606140000, + 48.77046950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRM06PNICE29712;FRM06PNICE29711", + "start_date": "2024-02-01", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*297*1*_*_", + "operator:email": "sav@izivia.com", + "description": "NICE - TRAVERSE DES BARAQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19403468740, + 43.69707165921 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref": "01a608ca-950b-5829-8b5a-cad48934d6e7", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Mauzens Miremont | Parking du Stade" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90966500000, + 44.99253500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-05-25", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "description": "SIGEIF - 3 RUE DE LA CROIX FRILEUSE - PLACE DE LA POMPE - BETHEMONT-LA-FORET", + "ref:EU:EVSE": "FRSIGPSIGE42411;FRSIGPSIGE42412", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*424*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25220600000, + 49.05400500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-06", + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "VENETTE", + "ref:EU:EVSE": "FRALLPECARSVNTTE", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78097200000, + 49.40815700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "Cogolin - Narcisses", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4024EVCP01", + "ref:EU:EVSE": "LFR4024EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55745000000, + 43.25444600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "496fdb8d-0483-5825-8c8f-9cf34fc0ac9c", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Sault de Navailles | Place de L'Église", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67319000000, + 43.55106700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "ref": "fc4bf282-3da2-56b8-8613-2e616a71527f", + "description": "MONDRAGON - Rue des Anciens Combattants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71170400000, + 44.23833000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-04-28", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "ref:EU:EVSE": "FRA05E78125001", + "description": "LA CELLE-LES-BORDES - Rue du Bois des Gaules" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95483490000, + 48.63977710000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR3360EVCP02;LFR3360EVCP01", + "capacity": "4", + "description": "SAINT PIERRE D'OLERON", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3360EVCP02;LFR3360EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30808100000, + 45.93847900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-21", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché Super - Saint-Quentin", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRPD1PITMSTQ", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26322860000, + 49.85105380000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/RH93NMVN5Q;Guillestre, Rue de la Fontloube", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref:EU:EVSE": "FREBNPRH93NMVN5Q", + "ref": "RH93NMVN5Q;75035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65137000000, + 44.65730300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP91340A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - Hôtel IBIS STYLES LISSES", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP91340A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43122020997, + 48.60515623773 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PCORSTR", + "start_date": "2023-02-28", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "capacity": "11", + "description": "Cora - Strasbourg", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72581558895, + 48.65166459816 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Carrefour Market - Epouville", + "amenity": "charging_station", + "start_date": "2024-06-10", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRDRVPCRFMKT761331", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22040300000, + 49.56255200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "socket:type2_combo:output": "25 kW", + "ref": "FRESEPS42207AJ", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRESEPS42207AJ", + "charging_station:output": "25 kW;22 kW", + "description": "SEMOB - Seguin", + "start_date": "2024-02-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51698501344, + 45.47312679594 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-24;2021-06-30;2021-07-01", + "operator": "IZIVIA", + "ref": "FR*SOD*S*IZIG*283*7*_*_;FR*SOD*S*IZIG*283*5*_*_;FR*SOD*S*IZIG*283*2*_*_;FR*SOD*S*IZIG*283*1*_*_;FR*SOD*S*IZIG*283*3*_*_;FR*SOD*S*IZIG*283*4*_*_", + "network": "EDF-EV100", + "charging_station:output": "24 kW;3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPIZIG28371;FROTHPIZIG28311;FROTHPIZIG28321;FROTHPIZIG28331;FROTHPIZIG28341;FROTHPIZIG28351", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com", + "description": "LAB SACLAY - EXTERIEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19814300000, + 48.71580100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "13 kW", + "start_date": "2023-12-14", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CALVI", + "ref:EU:EVSE": "FRCPIE6841385", + "ref": "FRCPIE6841385", + "description": "SONEPAR CALVI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79638900000, + 42.54860600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/58cab98e76bd3", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P58CAB98E76BD3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "ref": "38746", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10757000000, + 46.25600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "start_date": "2024-04-09", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP122028", + "description": "ENGIE Vianeo - B&B HOTEL PARIS NORD VILLEPINTE " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55350200000, + 48.96288900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477666", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LUBXMBZUNZ", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P8588540075189457595" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57193400000, + 44.80363100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "28", + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP20263", + "description": "Tesla Supercharger Laxou, France", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12779200000, + 48.69110800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P5943051832055150308", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SEBLOVH1UF", + "ref": "454143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58031500000, + 45.29836500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS14P8043282809238306420", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "100 kW;43 kW", + "amenity": "charging_station", + "capacity": "3", + "description": "MobiSDEC/B5J7TXK8V7", + "opening_hours": "24/7", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "579038", + "socket:type2_combo:output": "100 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630600000, + 49.25483800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MobiSDEC/QQ9ULMFY9S", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "456843", + "ref:EU:EVSE": "FRS14P7321282187403759098", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15146800000, + 49.10059000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "amenity": "charging_station", + "ref": "1128156", + "capacity": "4", + "ref:EU:EVSE": "FRWA9P1109154989326172863", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWATLUZYTD7R3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80375500000, + 43.71042100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200056844", + "start_date": "2018-04-27", + "description": "CHERBOURG EN COTENTIN - René Cassin", + "ref:EU:EVSE": "FRS50P501291", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64139900000, + 49.62657400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-15", + "description": "LAVAUR - Place Pasteur", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8114000621;FRS81E8114000611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81437500000, + 43.70024900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "RELAIS DE MONTAIGUT", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531681750;531681748;531681749;531681751", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "ref:EU:EVSE": "FRHPCPNF059376", + "operator:email": "supervision-ev.france@totalenergies.com", + "start_date": "2024-03-06", + "charging_station:output": "300 kW", + "ref": "FRHPCPNF059376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44520000000, + 48.79030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS48E48043001", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CHÂTEAUNEUF DE RANDON - Place Du Guesclin", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67545100000, + 44.64106500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/XJVQBA", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "network": "Mobilité électrique 56", + "ref:EU:EVSE": "FRS56PXJVQBA", + "ref": "25049" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28543000000, + 47.63080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "BOULOGNE-SUR-MER - Place Léon Blum", + "ref:EU:EVSE": "FRH05E62160004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60382100000, + 50.71517200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2926600", + "charging_station:output": "22 kW", + "description": "Saint Thegonnec-Avenue de Park An Iliz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.94615100000, + 48.52146900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Gestel - Rue de Quéven", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PMYZLMIBAEA", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "charging_station:output": "22 kW", + "start_date": "2022-03-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44270400000, + 47.80310800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLMSE12346051962;FRLMSE12346051961;FRLMSE12346051951;FRLMSE12346051952", + "capacity": "1", + "description": "MIGNE-AUXANCES-1-1;MIGNE-AUXANCES-1-2", + "opening_hours": "24/7", + "ref": "B067", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr", + "start_date": "2017-01-31" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31113300000, + 46.61954100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "start_date": "2022-02-08", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "ref:EU:EVSE": "FRMGPP93014B", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref": "484775", + "network": "Métropolis;METROPOLIS", + "description": "Métropolis/FR*MGP*P93014*B;Metropolis - Citadine - Clichy-sous-Bois - Romain Rolland", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55002300000, + 48.90466600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BRUNOY - Av Du General Leclerc", + "ref:EU:EVSE": "FRSIPE91114002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-04-05", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49053220000, + 48.68399770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1030695", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "network": "Atlante", + "description": "Atlante/FRATLFR00370", + "ref:EU:EVSE": "FRATLP4329018345467804216", + "capacity": "9", + "operator": "Atlante | FR*ATL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46705600000, + 49.24048600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "owner:ref:FR:SIREN": "668502966", + "amenity": "charging_station", + "capacity": "1", + "operator": "ZEENCO", + "description": "Würth Toulouse", + "network": "ZEENCO", + "charging_station:output": "22 kW", + "start_date": "2022-07-26", + "ref:EU:EVSE": "FRLMSE10000882641;FRLMSE10000882631", + "operator:email": "franck.legardeur@zeenco.tech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40034900000, + 43.54964200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MARCQ EN BAROEUL - Avenue de la Marne", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM59E59378001", + "network": "pass pass électrique", + "start_date": "2024-05-17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11194700000, + 50.67839900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LES SABLES-D'OLONNE - Quai Des Boucaniers - Place Maraud", + "ref:EU:EVSE": "FRS85E85194003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-05-21", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79573000000, + 46.49404900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Allego Carrefour La Roche Sur Yon", + "amenity": "charging_station", + "description": "Allego Carrefour La Roche Sur Yon", + "ref:EU:EVSE": "FRALLEGO9006792;FRALLEGO9000412;FRALLEGO9000411;FRALLEGO9006791;FRALLEGO9006821;FRALLEGO9006822", + "charging_station:output": "0 kW", + "start_date": "2024-05-21", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "ref": "FRALLEGO9006792;FRALLEGO9000412;FRALLEGO9000411;FRALLEGO9006791;FRALLEGO9006821;FRALLEGO9006822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45346400000, + 46.66560200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "IZIVIA | MARSEILLE 05 - CHEMIN DE LARMEE DAFRIQUE SATELITE;IZIVIA | MARSEILLE 05 - CHEMIN DE LARMEE DAFRIQUE MASTER", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "912043676", + "start_date": "2023-08-08;2022-09-02", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRIZMPMAMP4611;FRIZMPMAMP3912;FRIZMPMAMP3911;FRIZMPMAMP4612", + "network": "IZIVIA", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*MAMP*46*1*_*_;FR*SOD*S*MAMP*39*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40430900000, + 43.29100900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PMATHUN", + "opening_hours": "24/7", + "socket:type2_combo:output": "50 kW;150 kW", + "capacity": "11", + "charging_station:output": "22 kW;50 kW;150 kW", + "description": "Match - Huningue", + "start_date": "2024-05-14", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57564179006, + 47.59060198614 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHWS0KPAQIE;FREBNP7882729160721047574", + "description": "Réseau eborn/HWS0KPAQIE;Evian-les-Bains, Route de Bissingues", + "ref": "441129;HWS0KPAQIE", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2021-10-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57371000000, + 46.39752000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FREVZP6484978687862062300", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "description": "Norauto - Bornes publiques/281C04F0-E96C-4835-AE1F-F11D8FDEF4F5", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "626654" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92037000000, + 44.94327100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "ref:EU:EVSE": "FRPD1PIBIPOU", + "network": "Power Dot France", + "description": "Ibis Budget - Pouilly-en-Auxois", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2024-03-19", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56752367385, + 47.24797124137 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Aubenas, Place Olivier de Serres;Réseau eborn/MRKKQCRF0B", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPMRKKQCRF0B", + "ref": "MRKKQCRF0B;244018", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38688800000, + 44.62079400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref:EU:EVSE": "FRETIP30189A", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "ref": "FRETIP30189A", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-04-12", + "description": "e-Totem - SUPERDRY NIMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36480100000, + 43.80893400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;7.36 kW;22 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*198*3*_*_;FR*SOD*S*OTHR*198*2*_*_;FR*SOD*S*OTHR*198*1*_*_;FR*SOD*S*OTHR*198*4*_*_;FR*SOD*S*OTHR*198*5*_*_;FR*SOD*S*OTHR*198*6*_*_", + "capacity": "1", + "ref:EU:EVSE": "FROTHPOTHR19861;FROTHPOTHR19851;FROTHPOTHR19841;FROTHPOTHR19831;FROTHPOTHR19821;FROTHPOTHR19811", + "description": "SUPER U - ONET-LE-CHATEAU", + "opening_hours": "24/7", + "start_date": "2021-06-22", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58949900000, + 44.36959100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRCPSPCAPS3011;FRCPSPCAPS3012", + "owner:ref:FR:SIREN": "200056232", + "start_date": "2019-11-26", + "network": "CPS", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*CAPS*30*1*_*_", + "description": "VILLEJUST - COUDRAYES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21667300000, + 48.67386200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "529130", + "capacity": "8", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/BQORNYNAFT", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P726338449024221057", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88970600000, + 43.98558800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "charging_station:output": "11 kW;19 kW", + "capacity": "2", + "operator": "Mobilygreen | FR*VIS", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVISP4152608913308093151", + "description": "ENRGETICA/aed0c11d-4610-46c3-8c6c-3829407bab83", + "socket:type2_combo:output": "19 kW", + "ref": "705719", + "network": "ENRGETICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05112700000, + 44.03253700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P7370061788576612150", + "ref": "477654", + "description": "Freshmile France/L5AB9NSGAH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.31936000000, + 4.90319200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-22", + "ref": "1000081557;1000081556", + "charging_station:output": "50 kW;24 kW;22 kW", + "description": "ABB T54 JeanLain Meythet;ABB T24 JeanLain Meythet", + "socket:type2_combo:output": "50 kW;24 kW", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref:EU:EVSE": "FRSWSE1000081556;FRSWSE1000081557", + "capacity": "1;3", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09013000000, + 45.91859200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1744367668128242855", + "ref": "466239", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/VM4NTLS3KB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100000000, + 44.94711100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-16;2022-03-22", + "capacity": "8", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "description": "Renault - Valence", + "amenity": "charging_station", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "charging_station:output": "50 kW;22.08 kW;7.36 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRSSDPAUTOBERNARDRENAULT260001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93268100000, + 44.92183400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "description": "ILLIERS-COMBRAY - Rue des trois mariés - 137321", + "ref:EU:EVSE": "FRS28E137321", + "network": "ILLIERS-COMBRAY - Rue des trois mariés - 137321", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E137321" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24316800000, + 48.29942100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Restaurant Jérôme Nutile", + "operator": "M.A.J.U.", + "opening_hours": "Th-Mo 12:00-23:30", + "start_date": "2022-03-31", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bureau@jerome-nutile.com", + "ref:EU:EVSE": "Non concerné", + "ref": "8aec152b-584e-4139-87e6-f1994652ab40", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "802608372", + "description": "Borne Restaurant Gastronomique Jérôme Nutile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37000000000, + 43.82000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS10P2407830755335279089", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "opening_hours": "24/7", + "ref": "101765", + "description": "SDEA 10/WOWEZM3YVL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07880900000, + 48.29434200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWATLVPPO27AU", + "network": "WAAT", + "ref": "706295", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "ref:EU:EVSE": "FRWATP391288557360888633", + "operator:email": "exploitation@waat.fr", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72453800000, + 48.10671000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "ref:EU:EVSE": "FRROSE431", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "start_date": "2022-10-02", + "description": "Sorofi_Irigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82720380000, + 45.69258280000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-03-24", + "description": "TREBAS - Impasse De La Gare", + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8130300111;FRS81E8130300112;FRS81E8130300121;FRS81E8130300122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47871089000, + 43.94439315800 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "description": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "901573139", + "start_date": "2023-01-09", + "capacity": "9", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref": "FRIPKPHDV", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525000000, + 48.99051000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49092A;FRS49E49092001", + "start_date": "2024-03-28;2021-04-21", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "CHEMILLE - Place Saint-Pierre;OuestCharge - Diva Sp - Chemille - Saint-Pierre", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72744000000, + 47.21851600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "Mouv'Oise/WUSGHU", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "ref:EU:EVSE": "FRS60PWUSGHU", + "ref": "86708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00241000000, + 49.58240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH13E62119009", + "charging_station:output": "22 kW", + "description": "BETHUNE - Avenue De Londres", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62667926611, + 50.51641652525 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTFAUCON - Place Du 11 Novembre 1918", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS30E30178001", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75360400000, + 44.07484400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-05-16", + "description": "Pluvigner - Place Saint Michel", + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PURGRZH", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00924800000, + 47.77756600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CHAMPIGNY EN ROCHEREAU-1-2;CHAMPIGNY EN ROCHEREAU-1-1", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "B049", + "start_date": "2016-07-11", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSE12346396721;FRLMSE12346396711", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "operator": "SOREGIES MOBILITES", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16033500000, + 46.70138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRMGPP94080E", + "operator": "SPIE CITYNETWORKS", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-12", + "description": "Metropolis - ePremium - Vincennes - Brossolette", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "assistance-commerciale@metropolis-recharge.fr", + "owner:ref:FR:SIREN": "885354860", + "network": "METROPOLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44135361000, + 48.84684538000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - RUE SAINT-EXUPERY - MEUDON", + "charging_station:output": "7 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-06-17", + "network": "SIGEIF", + "opening_hours": "24/7", + "ref": "FR*SOD*S*SIGE*133*1*_*_", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE13311;FRSIGPSIGE13312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22580180000, + 48.78921860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PLAISIR - Avenue du 19 Mars 1962", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E78490001", + "network": "CPO Alizé Liberté Public", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94452000000, + 48.83071800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLMSP89646062", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Laon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65555900000, + 49.56802000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "description": "MOBIVE | Montmoreau | Avenue Henri dunant", + "capacity": "2", + "amenity": "charging_station", + "ref": "232c09b0-ee4e-50d0-8dd7-7f727693d88c", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "190__SDEG16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13066900000, + 45.39743800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE72SABA", + "start_date": "2023-07-18", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "SAINT-COSME-EN-VAIRAIS - Place Saint-Damien", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45994700000, + 48.27437700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSLAON", + "description": "LAON", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2022-12-30", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61359500000, + 49.54881100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "WIWERSHEIM - Economie", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3911EVCP03;LFR3911EVCP01;LFR3911EVCP02", + "ref": "LFR3911EVCP03;LFR3911EVCP01;LFR3911EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60019300000, + 48.64256800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-12", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM31E31555008", + "description": "TOULOUSE - Cité de l'espace", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49232800000, + 43.58691300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPUUKLIN1F3L", + "ref": "UUKLIN1F3L", + "network": "eborn", + "description": "Cordon, Parking Centre Village", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61107270000, + 45.92134670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P4849754231834640304", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1154124", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/LLSOF56HT1R9SS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09275500000, + 49.12065200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2022-09-15", + "capacity": "5", + "charging_station:output": "7 kW", + "description": "PARIS - Magenta - Niveau -1", + "ref:EU:EVSE": "FRP07E75110001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35480000000, + 48.87566000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPDQYFSLZJSI", + "ref": "DQYFSLZJSI", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Passy, Parking Pfullingen" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68599750000, + 45.92300950000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP5148061572064325091", + "opening_hours": "Tu,Sa,Su,Mo,We,Th,Fr 08:00-18:00", + "charging_station:output": "22 kW", + "description": "Road/66756e19e5603e001cba29f2", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "ref": "1116951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26879600000, + 50.16922900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "description": "Parking Lille Champs de Mars Petit Paradis - EFFIA", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP01E59350006;FRP01E593500061", + "capacity": "15", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "start_date": "2024-07-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04933360000, + 50.64440520000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRCPIE6610385;FRCPIE6610375;FRCPIE6610355", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "STATION SUPER U BELLEVIGNY 4", + "network": "STATION SUPER U BELLEVIGNY 4", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6610385;FRCPIE6610375;FRCPIE6610355", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42922700000, + 46.77624900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "510650;CZTN3RDEN3", + "description": "Réseau eborn/CZTN3RDEN3;Six-Fours-Les-Plages, Parking du Cros", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNP683629902078810642;FREBNPCZTN3RDEN3", + "start_date": "2022-05-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80669400000, + 43.08099100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/s570526;WAAT/FRWATLALG5SSDF", + "network": "WAAT", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA2;WAAT SAS | FR*WAT", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "capacity": "1;3", + "charging_station:output": "6.9 kW;7.4 kW;22 kW", + "ref:EU:EVSE": "FRWA2P5751918918124006220;FRWATP2396039084376742275", + "ref": "756804;1182093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05836700000, + 43.40815700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8880027177371121671", + "operator:email": "roaming@freshmile.com", + "ref": "505749", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW", + "opening_hours": "Tu,Fr,Su,Mo,Th,Sa,We 08:30-18:00", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/XVXRIKKVWZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15086000000, + 47.00840400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-10-17", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "capacity": "4", + "network": "RIESTER BEAUVAIS", + "ref": "FRTCBP00699", + "charging_station:output": "50 kW;43 kW;22 kW", + "description": "RIESTER HYUNDAI - BEAUVAIS", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "805089158", + "ref:EU:EVSE": "FRTCBP00699" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08695388651, + 49.45162182529 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7474190200533289429", + "capacity": "2", + "amenity": "charging_station", + "ref": "466062", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/JM8ETU9UBG", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14281700000, + 45.75570300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW;22.08 kW", + "ref:EU:EVSE": "FRSSDPGCHHYUNDAI354001", + "start_date": "2022-10-06;2022-06-29", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Hyundai - GCH - Saint-Malo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98824400000, + 48.62230500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Fouesnant-Rue des Sports", + "ref:EU:EVSE": "FRS29E2905800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.01198400000, + 47.89136900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "454437", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P3350796087148247345", + "description": "SDEA 10/EGU6AL9UI6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01989400000, + 48.32645400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRZP1PEAC123603;FRZP1PEAC128680;FRZP1PEAC128688", + "operator": "Zephyre SAS", + "amenity": "charging_station", + "capacity": "1", + "network": "Best Hotel Mayenne", + "ref": "ad9a6d08-b885-465c-a546-f2b7b520921b", + "description": "Best Hotel Mayenne - 22 kW AC", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "800959751", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62612462000, + 48.28237329000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "operator": "Modulo", + "description": "MODULO - MOUZON - Rue du collège", + "opening_hours": "24/7", + "ref": "FRS08E35484;FRS08E35483", + "network": "MODULO - MOUZON - Rue du collège", + "owner:ref:FR:SIREN": "841376734", + "start_date": "2020-07-22", + "ref:EU:EVSE": "FRS08E35484;FRS08E35483" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07750000000, + 49.60600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/gamachesmairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PGAMACHESMAIRIE", + "ref": "64679", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56131000000, + 49.98570000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST2013;FRIZFPFAST2011;FRIZFPFAST2012", + "start_date": "2024-02-21", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - TOUL", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "ref": "FR*SOD*S*FAST*20*1*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88974300000, + 48.67006200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "description": "SAINT-MICHEL-CHEF-CHEF - Rue Du Chevecier;OuestCharge - Diva Sp - Saint-Michel-Chef-Chef - Chevecier", + "network": "SYDELA;Ouest Charge | FR*WCH", + "start_date": "2024-04-29;2021-04-16", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44E44182001;FRS44E0440153;FRS44P44182A", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14744300000, + 47.18197500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2016-08-31;2023-05-18", + "ref": "01F5ZAKH61Z4V01APHPD4HN65N", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "description": "Beton-Bazoches;BETON-BAZOCHES - Place De L'Église", + "ref:EU:EVSE": "FRS77E77032001;FRS77P77032A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24461700000, + 48.70213300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "798265732", + "description": "LE FOURNIL DE CREON", + "amenity": "charging_station", + "network": "LE FOURNIL DE CREON", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGSPP1898376;FRGSPP1897224;FRGSPP1000085967;FRGSPP1000085929;FRGSPP1898382;FRGSPP1898383", + "charging_station:output": "4 kW;22 kW;30 kW", + "start_date": "2023-10-10", + "capacity": "9", + "socket:type2_combo:output": "30 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34346700000, + 44.77183400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS37E219770;FRS37E219769", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS37E219770;FRS37E219769", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - SAINT EPAIN - Allée Alfred Bureau", + "description": "MODULO - SAINT EPAIN - Allée Alfred Bureau" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53858200000, + 47.14435000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-01", + "description": "La vraie-croix - Rue du Tostal", + "ref:EU:EVSE": "FRS56PSWHNTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54198000000, + 47.68867900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-21", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRG10P45312A", + "network": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "operator:email": "contact@e-totem.fr", + "description": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "ref:EU:EVSE": "FRG10P45312A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73652100000, + 47.91820700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "description": "MOBIVE | Dausse | Place du 8 Mai 1945", + "ref": "54a7d834-7fbe-5cc0-bf75-2262f11167d1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89083300000, + 44.38361000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 23 AVENUE DE LA 1ERE ARMEE FRANCAISE - MONTMORENCY", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*244*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2022-04-29", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRSIGPSIGE24412;FRSIGPSIGE24411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32196800000, + 48.99931600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Move In Pure", + "ref": "21805", + "operator:email": "roaming@freshmile.com", + "description": "Move In Pure/EUBESN", + "amenity": "charging_station", + "charging_station:output": "44 kW", + "ref:EU:EVSE": "FRCN1PEUBESN", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "44 kW", + "operator": "Freshmile | FR*CN1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82856000000, + 45.07050000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "446786", + "description": "Leclerc/PPUUMBSESC", + "ref:EU:EVSE": "FRLE2P4726980361916063064" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.81952600000, + 48.19529500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "description": "MOBIVE | Archiac | Rue de la Part des Anges", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17", + "ref": "b3f3aef5-7d95-5666-adcb-330fa3b1c7b5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30364900000, + 45.52790200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "AlterBase", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "description": "Réseau AlterBase - Villiers en Plaine - Ecole", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200091049", + "ref:EU:EVSE": "FRSEOPAB01041A", + "start_date": "2015-12-21", + "operator": "Séolis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53808750000, + 46.40777790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-06", + "capacity": "16", + "operator:email": "support@alizecharge.fr", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRADPE77291003;FRADPE772910031", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CDG - Parking PCD - Niveau -2", + "network": "ADP Groupe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56856700000, + 49.00358300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "MONTECH Montauban", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3740EVCP03;LFR3740EVCP01;LFR3740EVCP02", + "ref:EU:EVSE": "LFR3740EVCP03;LFR3740EVCP01;LFR3740EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24790800000, + 43.96241800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FRM38E38185031", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Grenoble-Alpes Métropole", + "description": "GRENOBLE - CEA Cambridge Avenue des Martyrs", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "25 kW;22 kW", + "start_date": "2024-05-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70442345720, + 45.20219374553 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "PARKING MARTYRS DE LA RESISTANCE", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ10212;FRA16PWIIZ10211", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*WIIZ*102*1*_*_", + "start_date": "2020-10-01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09181700000, + 43.59583400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4685962514383495252", + "opening_hours": "24/7", + "description": "Freshmile France/LLSOMI7ME18O9D", + "operator": "Freshmile | FR*FR1", + "ref": "1153083", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15176100000, + 49.12392200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-05-01", + "network": "Power Dot France", + "description": "ACE Hôtel Paris - Sud Villabé", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PACEVIL", + "charging_station:output": "50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44896026375, + 48.58759092208 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Vogüe, Place du Heyd;Réseau eborn/SY0KHPYENM", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SY0KHPYENM;32689", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPSY0KHPYENM", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41839300000, + 44.53913100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "ref:EU:EVSE": "FRELCPPLAGM", + "amenity": "charging_station", + "network": "ELECTRA", + "charging_station:output": "300 kW;22 kW", + "description": "Plaisir - Grand Marché Marnière", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "operator": "ELECTRA", + "start_date": "2024-01-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95369300000, + 48.83025900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Parking gare de Villiers-Sur-Marne RER - EFFIA", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-08-09", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E94079001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54302000000, + 48.82285000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6665275", + "network": "SONEPAR VESOUL", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6665275", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-12-13", + "description": "SONEPAR VESOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13171100000, + 47.61886800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRECHP3900522552400936117;FRECHPENOYQDXIZO", + "operator:email": "exploitation@easycharge-vinci.COM;roaming@freshmile.com", + "operator": "Easycharge services;Easy Charge | FR*ECH", + "description": "Easy Charge/ENOYQDXIZO;Vienne, Rue Emile Romanet", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "901772400", + "ref": "ENOYQDXIZO;419052", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2021-07-20", + "network": "Easycharge services;Easy Charge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87270000000, + 45.52090000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "charging_station:output": "7 kW;3 kW", + "network": "Belib'", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "description": "Paris | Rue des Couronnes 2", + "ref:EU:EVSE": "FRV75PPX2010", + "ref": "FR*V75*PPX20*10", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38090000000, + 48.86920000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/RYTRGT", + "ref:EU:EVSE": "FRFR1PRYTRGT", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "159406", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95433000000, + 49.54330000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "FR*V75*PPX04*04", + "ref:EU:EVSE": "FRV75PPX0404", + "start_date": "2021-05-28", + "network": "Belib'", + "charging_station:output": "7 kW", + "description": "Paris | Boulevard Bourdon 9", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36600400000, + 48.84842260000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/LLJH8ANW0TM25Q", + "amenity": "charging_station", + "ref": "892383", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5677679218725728161", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50658400000, + 48.22512300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "start_date": "2021-05-04", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Guillaud TP - St Jean de Bournay", + "ref:EU:EVSE": "FRSSDPREGUILLONGUILLAUD384401", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15075200000, + 45.50145300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "ref:EU:EVSE": "FRS22E22277001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Saint Brandan-Place de l'église" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86964900000, + 48.38968700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "start_date": "2023-05-12", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS18E115664;FRS18E115406", + "description": "MODULO - DUN SUR AURON - Piscine", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - DUN SUR AURON - Piscine", + "ref": "FRS18E115664;FRS18E115406" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56521000000, + 46.88286000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-05-19", + "amenity": "charging_station", + "capacity": "1", + "network": "ESPACE TOY MONTAUBAN", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "303217368", + "ref": "61057;61047;61046;61056", + "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–18:30,Sat 09:00-18:00", + "description": "Toyota - Montauban - 22KW AC G ;Toyota - Montauban - 22KW AC D ", + "ref:EU:EVSE": "FRZTLE22AC61057;FRZTLE22AC61056;FRZTLE22AC61046;FRZTLE22AC61047", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33197190000, + 43.99051330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref:EU:EVSE": "FRS10P7689620169035544002", + "opening_hours": "24/7", + "description": "SDEA 10/WCGDKEJF4J", + "ref": "466344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89093300000, + 48.50982400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "64727", + "description": "FDE 80/hamham", + "ref:EU:EVSE": "FRS80PHAMHAM", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07243000000, + 49.74790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "start_date": "2023-11-17", + "description": "IZIVIA FAST - MCDONALDS - SAINT-POL-SUR-TERNOISE", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*8*1*_*_", + "owner:ref:FR:SIREN": "951478437", + "ref:EU:EVSE": "FRIZFPFAST812;FRIZFPFAST811;FRIZFPFAST813", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34994800000, + 50.38948300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "start_date": "2021-04-19;2024-04-12", + "amenity": "charging_station", + "description": "PAIMBOEUF - Quai Sadi-Carnot;OuestCharge - Diva Sp - Paimboeuf - Sadi-Carnot", + "ref:EU:EVSE": "FRS44E44116001;FRS44P44116A", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02798400000, + 47.28945600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "ref": "d3cc923b-32dc-4bcd-aae3-66019fc1e971", + "start_date": "2023-09-13", + "ref:EU:EVSE": "FRS77P77284E;FRS77E77284005", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "description": "MEAUX - Colbert;Meaux - Colbert", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90507700000, + 48.95019600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRH01E62040002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "ARQUES - Avenue Newton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33223300000, + 50.72977100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E221325;FRS37E221329", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS37E221325;FRS37E221329", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - CERE LA RONDE - Rue Alfred de Vigny", + "description": "MODULO - CERE LA RONDE - Rue Alfred de Vigny" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19000300000, + 47.26120200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - LIGNY EN BAROIS - Rue du Général de Gaulle", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRS55E66282;FRS55E66283", + "charging_station:output": "0 kW", + "ref:EU:EVSE": "FRS55E66282;FRS55E66283", + "operator": "Modulo", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - LIGNY EN BAROIS - Rue du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32494900000, + 48.68465000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-12-15", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "description": "LY202 - PLACE CARNOT", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON12741;FRGLYPLYON12721;FRGLYPLYON12711;FRGLYPLYON12731", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*127*2*_*_;FR*SOD*S*LYON*127*1*_*_;FR*SOD*S*LYON*127*3*_*_;FR*SOD*S*LYON*127*4*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82723800000, + 45.75160000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FR*MEL*P59152*01", + "network": "MEL", + "operator": "TotalEnergies Charging Services", + "description": "ANSTAING - Rue Marie Curie", + "owner:ref:FR:SIREN": "844192443", + "ref:EU:EVSE": "FRMELP5915201", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19034200000, + 50.60625100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Jaguar Land Rover - JFC - Evreux", + "capacity": "5", + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2018-09-25", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPJLRJFC279301", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17257000000, + 49.05899800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6567205;FRCPIE6642475", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRCPIE6567205;FRCPIE6642475", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SU BEAULIEU SUPER U", + "start_date": "2022-10-12", + "network": "SU BEAULIEU SUPER U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33215900000, + 43.70836000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;11 kW;7.4 kW", + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRLE2P6630019409909625709", + "network": "Leclerc", + "description": "Leclerc/GIAIHIV8XR", + "opening_hours": "24/7", + "ref": "735237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803200000, + 48.38331100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Audenge | Parking Mairie", + "operator:email": "cpo@citeos.com", + "ref": "41ebd89f-a0c8-5296-9470-9b67ba5aa395", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01597600000, + 44.68396400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Chilly-Mazarin - Avenue Charles de Gaulle", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "3bbadc36-1d64-55ee-88c3-605b163754d1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32048500000, + 48.70318200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "start_date": "2024-05-20", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "0 kW", + "operator:email": "info@allego.eu", + "description": "Allego NISSAN Boulogne-sur-mer", + "ref": "FRALLEGO0001141", + "ref:EU:EVSE": "FRALLEGO0001141", + "network": "Allego NISSAN Boulogne-sur-mer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60867389000, + 50.69708525000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "NYONS - Montélimar", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR4180EVCP02;LFR4180EVCP01", + "ref": "LFR4180EVCP02;LFR4180EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12572100000, + 44.36488900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SAINT-ANDRE-DE-LA-ROCHE - PARKING LOMBARDIE", + "amenity": "charging_station", + "capacity": "1", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM06PNICE8731;FRM06PNICE8741", + "ref": "FR*SOD*S*NICE*87*4*_*_;FR*SOD*S*NICE*87*3*_*_", + "start_date": "2020-03-03", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28584700000, + 43.74013100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA16PWIIZ21411;FRA16PWIIZ21412", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*WIIZ*214*1*_*_", + "start_date": "2022-12-02", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "ROQUEBRUNE-SUR-ARGENS - PARKING TOTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68970600000, + 43.34215300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/XQ35PJ1LNO", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6069934860407295274", + "charging_station:output": "22 kW", + "ref": "466275", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68330000000, + 46.72170000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mr. Bricolage - Borgo", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRPD1PMBRBRG", + "start_date": "2022-10-12", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44096066680, + 42.55231981531 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNP2908600881500953964;FREBNPK6RA94IPIY", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2022-03-22", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "K6RA94IPIY;492087", + "description": "Bons-en-Chablais, Avenue Louis Armand;Réseau eborn/K6RA94IPIY", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36979800000, + 46.26654600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref:EU:EVSE": "FREVZP7164110112386454185", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "ref": "927750", + "description": "ENGIE MAMP - Bornes publiques/06630A3B-B56F-41C2-A178-A5FAD1C06DBA", + "opening_hours": "24/7", + "operator:email": "support@evzen.com", + "charging_station:output": "25 kW;22 kW", + "network": "ENGIE MAMP - Bornes publiques" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36443400000, + 43.29814900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "23", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E581940011;FRP07E58194001;FRP07E581940012", + "start_date": "2023-01-18", + "description": "NEVERS - Saint Pierre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16170354589, + 46.99216539580 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "La Seyne Sur Mer, Parking Du Parc Braudel;Réseau eborn/LTG8ORIAX4", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPLTG8ORIAX4;FREBNLTG8ORIAX4", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26", + "ref": "LTG8ORIAX4;244030" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89433000000, + 43.08057700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Road/65e0dfd800b364001c5dfb1a", + "network": "Road", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FREFLP1407458184299116443", + "ref": "1024332", + "operator:email": "roaming-dev@road.io", + "operator": "Road | FR*EFL", + "opening_hours": "Th,Su,Sa,We,Tu,Mo,Fr 08:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99494200000, + 48.58614500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-05-26", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRVIAP121013", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "description": "ENGIE Vianeo - Hôtel Kyriad Direct Evreux", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16950400000, + 49.01627200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/GCMJCV", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1PGCMJCV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "86780", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64194000000, + 49.29950000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1206", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Avenue de Saint-Mandé 94", + "start_date": "2021-07-27", + "opening_hours": "24/7", + "ref": "FR*V75*PPX12*06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40704400000, + 48.84440000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "597903", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P2759048272293047337", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KJ5HXBD2S2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16874500000, + 49.23790800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-21;2022-06-01", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;24 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPVALDELOIREVOLVO494001", + "capacity": "14", + "description": "Volvo - Val de Loire automobiles - Saumur", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-18:00, Sa 09:00-12:00, Sa 14:00-18:00", + "charging_station:output": "24 kW;50 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12880100000, + 47.23098500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS27PCONCHESLECYGNE", + "network": "SIEGE27", + "description": "900107", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94132700000, + 48.96456200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité de Côte d'Or (SICECO21) | FR*S21", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SICECO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SICECO/FR*S21*P21425*B", + "ref:EU:EVSE": "FRS21P21425B", + "ref": "180392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33899000000, + 47.62225600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-01-11", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT-GERMAIN-EN-LAYE - Parking Michel Pericard", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Seymaborne", + "ref:EU:EVSE": "FRY03E78551003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07212390000, + 48.90272050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "e-City 22kW - Parc commercial aéroport Poitiers-Biard", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "904074713", + "capacity": "4", + "ref:EU:EVSE": "FRQWTP86027B", + "operator:email": "contact@qowatt.com", + "start_date": "2022-08-09", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QoWatt", + "operator": "QoWatt", + "ref": "FR*QWT*S86027*B*1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31320000000, + 46.58540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "WAAT", + "ref:EU:EVSE": "FRWATP5636139143726275106", + "amenity": "charging_station", + "ref": "544751", + "opening_hours": "24/7", + "charging_station:output": "7.4 kW;22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLW3GROR0Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09971200000, + 43.63514400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "ref:EU:EVSE": "FRIONE431700", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "description": "IONITY Saint Léger Est", + "ref": "FRIONE431700", + "start_date": "2020-11-25", + "operator": "IONITY", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58532300000, + 50.82646100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "description": "MODULO - ST MARTIN/PRE - Rte Louvois", + "amenity": "charging_station", + "ref": "FRS51E40810;FRS51E40811", + "network": "MODULO - ST MARTIN/PRE - Rte Louvois", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS51E40810;FRS51E40811", + "start_date": "2020-12-11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34514679000, + 48.97530229000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "amenity": "charging_station", + "ref": "1f73f258-3109-470f-97cf-f3860dd40afd", + "ref:EU:EVSE": "FRS77P77131D", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "charging_station:output": "22 kW", + "description": "Coulommiers - Montbillard", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09400900000, + 48.82067800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "ref": "FRHPCPNF080344", + "amenity": "charging_station", + "start_date": "2022-12-08;2023-02-02;2023-01-19", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF080344", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "charging_station:output": "300 kW;150 kW;54 kW", + "description": "RELAIS DE TOUL DOMMARTIN", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680947;531680946;531680945;531680943;531680944;531680933;531680936;531680935;531680934;531680932;531680931;531680937;531680938;531680939;531680940;531680942;531680941" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90824900000, + 48.66069200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2024-07-17", + "network": "Reveo", + "description": "Gignac - Pôle d'échange Multimodal", + "ref:EU:EVSE": "FRS34E34114005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54592000000, + 43.65080200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2016-10-14", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZTUAMX", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "description": "Lorient - Boulevard du Maréchal Joffre" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36487100000, + 47.75186100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3315354970967767106", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/W3NYJVVV4C", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "477720" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04246500000, + 48.72060800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "socket:type2_combo:output": "25 kW", + "description": "Métropolis/FR*MGP*P92051*B;Metropolis - ePremium - Neuilly-sur-Seine - Victor Hugo", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "599049", + "owner:ref:FR:SIREN": "885354860", + "start_date": "2022-12-01", + "ref:EU:EVSE": "FRMGPP92051B", + "charging_station:output": "25 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27895700000, + 48.88709500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo 05:00-20:15, Tu 05:00-20:15, We 05:00-20:15, Th 05:00-20:15, Fr 05:00-20:15, Sa 05:00-20:15, Su 05:00-12:30", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "7.36 kW", + "ref:EU:EVSE": "FRSSDPCORINASSETMANAGEMENT3", + "start_date": "2020-03-04", + "operator:email": "support@driveco.com", + "description": "Géant Casino - Porto Vecchio", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27809500000, + 41.60516400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA RIVE CIELA VILLAGE", + "start_date": "2022-05-31", + "network": "LA RIVE CIELA VILLAGE", + "ref:EU:EVSE": "FRC2P003202;FRC2P003201", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "896750254", + "opening_hours": "24/7", + "charging_station:output": "11.04 kW", + "ref": "FRC2P003202;FRC2P003201", + "operator": "CAR2PLUG", + "operator:email": "contact@car2plug.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13004831535, + 44.46056813188 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Leclerc", + "ref:EU:EVSE": "FRLE2P9011176248667415661", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Leclerc/ESUZWRLXFC", + "ref": "446693" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26550400000, + 49.14339300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "capacity": "2", + "description": "MOBIVE | NIEULLE SUR SEUDRE | Rue des Boguets", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "8d25c987-e1df-590a-8b15-1a971878a000", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00029600000, + 45.75164300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "description": "Affaire Mr BRICOLAGE - BARBEZIEUX Nouvelle fiche", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "ref:EU:EVSE": "FRSE1PSE16BACA", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "start_date": "2024-02-27", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16708100000, + 45.47004500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRBHMP659538287080923879", + "description": "BornEco/6690fbca073750b648c18be7", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "1149186", + "capacity": "2", + "charging_station:output": "11 kW;22 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87088300000, + 45.92593700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/ADPZNMBHJV", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "capacity": "10", + "ref": "446651", + "ref:EU:EVSE": "FRLE2P3710563600959844802" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44537200000, + 48.94048900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "description": "Marignane, Place Alderic Chave", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "ref:EU:EVSE": "FRM13PY6J1LXVNOZ", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21353900000, + 43.41703300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS89P175833706050902322", + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "ref": "402554", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/LX6ZXEAANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99303700000, + 47.69658400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*70*1*_*_", + "ref:EU:EVSE": "FRA16PWIIZ7012;FRA16PWIIZ7011", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "description": "BIOT PARKING VILLAGE", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2018-06-27", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09444300000, + 43.62762800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "471093", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FRFR1P5889902448618646335", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KZSHZFIZDN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87381200000, + 47.02188400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Super U - Lanmeur", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "start_date": "2023-07-21;2023-07-20", + "charging_station:output": "50 kW;100 kW;22 kW;120 kW", + "socket:type2_combo:output": "100 kW;120 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PSPULMR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.72001860255, + 48.64198125063 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPS5JXS0NDKH", + "charging_station:output": "22 kW", + "ref": "S5JXS0NDKH;75116", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "description": "Tain-L'Hermitage, Piscine;Réseau eborn/S5JXS0NDKH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84540100000, + 45.06735700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "description": "Norauto - Bornes publiques/84C490A8-F786-4E35-BA27-38626410EC92", + "ref": "674573", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP837062040075133956", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84273400000, + 44.12023700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "amenity": "charging_station", + "capacity": "1", + "description": "SUPER U - SAINT-CIERS-SUR-GIRONDE", + "ref:EU:EVSE": "FROTHPOTHR67741;FROTHPOTHR67731;FROTHPOTHR67711;FROTHPOTHR67721", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*OTHR*677*4*_*_;FR*SOD*S*OTHR*677*1*_*_;FR*SOD*S*OTHR*677*2*_*_;FR*SOD*S*OTHR*677*3*_*_", + "start_date": "2023-08-01", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60543500000, + 45.29068900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "unclassified", + "oneway": "yes", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011;Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20610090000, + 49.97101470000 + ], + [ + 1.20588370000, + 49.97115950000 + ], + [ + 1.20575840000, + 49.97119460000 + ], + [ + 1.20574950000, + 49.97139580000 + ], + [ + 1.20574930000, + 49.97148260000 + ], + [ + 1.20583020000, + 49.97151700000 + ], + [ + 1.20593290000, + 49.97151880000 + ], + [ + 1.20600650000, + 49.97146630000 + ], + [ + 1.20603060000, + 49.97121350000 + ], + [ + 1.20610090000, + 49.97101470000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP5225781260649746501;FREBNPI94BQIRYL6", + "description": "Réseau eborn/I94BQIRYL6;Feurs, Faubourg St antoine", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2022-03-21", + "ref": "492078;I94BQIRYL6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22777000000, + 45.74238000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPW5R7IXTOXN;FREBNW5R7IXTOXN", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "W5R7IXTOXN;79177", + "description": "Brignoles, 01 Rue du portail Neuf;Réseau eborn/W5R7IXTOXN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06253100000, + 43.40398300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "CAMPING SEQUOIA PARC - SAINT-JUST-LUZAC", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2022-03-24", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR36812;FROTHPOTHR36811", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*368*1*_*_", + "network": "CAMPING SANDAYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05987800000, + 45.81031800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P1800966512179326941", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref": "1052487", + "capacity": "4", + "network": "Freshmile France", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "description": "Freshmile France/LLSLNE0Y3CWH16", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26722800000, + 47.68951400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "ref:EU:EVSE": "FRTSLP30148", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "network": "Tesla Supercharger", + "operator": "Tesla", + "description": "Tesla Supercharger Le Touquet-Paris-Plage, France", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59962800000, + 50.52151400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/JDCSTE", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "242299", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1PJDCSTE", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78531000000, + 43.24980000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "socket:type2_combo:output": "200 kW", + "ref:EU:EVSE": "FRSSDPVOLVONANCY543201", + "network": "DRIVECO", + "charging_station:output": "200 kW;22.08 kW", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "description": "Volvo - Nancy", + "start_date": "2023-09-07;2023-08-01", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13657800000, + 48.70737100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/G3DXGKYHRM", + "ref:EU:EVSE": "FRFR1P2955947911229276776", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "43 kW;60 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "ref": "735138", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37487000000, + 48.71881400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Pledeliac-rue d'armor", + "ref:EU:EVSE": "FRS22E22175001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38882900000, + 48.44981400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "capacity": "1", + "description": "Mazda - La Roche sur Yon - 22kW AC ", + "operator:email": "advenir@zeborne.com", + "network": "LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON;LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON ", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRZMAE22AC131652;FRZMAE22AC131655", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "ref": "131655;131652", + "start_date": "2022-05-13", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "539245803" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43046400000, + 46.70898200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "TOSSO1", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-06-25", + "capacity": "4", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE30", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15651840000, + 50.60731820000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY01E78246001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "FONTENAY-SAINT-PERE - Rue Pasteur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75190000000, + 49.02701000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Longvilliers", + "description": "Longvilliers", + "start_date": "2022-08-24", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "ref": "FRIOYE437853;FRIOYE437852;FRIOYE437851;FRIOYE437801;FRIOYE437802;FRIOYE437803;FRIOYE437804;FRIOYE437805;FRIOYE437806;FRIOYE437807;FRIOYE437808", + "opening_hours": "24/7", + "capacity": "11", + "ref:EU:EVSE": "FRIOYE437853;FRIOYE437852;FRIOYE437851;FRIOYE437801;FRIOYE437802;FRIOYE437803;FRIOYE437804;FRIOYE437805;FRIOYE437806;FRIOYE437807;FRIOYE437808", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98606200000, + 48.56592500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Chateau-Gontier - Mahier;CHATEAU-GONTIER - Promenade De Mahier", + "capacity": "1;2", + "network": "Territoire de Energie TE53;TEM53", + "amenity": "charging_station", + "start_date": "2021-04-06;2024-05-16", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "ref:EU:EVSE": "FRS53E53062001;FRS53P53062A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70770600000, + 47.82622300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "BAHO - Place du 8 mai 1945", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-01-10", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS66E66012001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82195946000, + 42.70115603000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Cierzac", + "start_date": "2023-05-25", + "network": "Cierzac", + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "ref:EU:EVSE": "FRIENE008001;FRIENE008002", + "ref": "FRIENE008001;FRIENE008002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30746410000, + 45.55154970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS35P35006001B1", + "opening_hours": "24/7", + "description": "ARGENTRE DU PLESSIS - 2 rue des etangs ", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15176500000, + 48.05763200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref": "SE61-MAGNY-001", + "description": "MAGNY LE DESERT - La Cour Chalmel", + "ref:EU:EVSE": "FRS61P61243A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33769010000, + 48.58765100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LLK8BFJWF2NK2P", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6272608059852167385", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "892488" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02182600000, + 48.98248300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PHBDQVG", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "start_date": "2017-05-18", + "description": "Roulez Électrique En Haute-Garonne/HBDQVG;Pouy-de-Touges, Mairie", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "opening_hours": "24/7", + "ref": "HBDQVG;38854", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03756000000, + 43.34290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRSIPE92026005", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "COURBEVOIE - Rue Jean Baptiste Charcot", + "start_date": "2021-12-28", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27697600000, + 48.90215200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-12-17", + "ref": "FRCG0E000255", + "network": "LE BASTIDOU DE BEAUMARCHES", + "charging_station:output": "3 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "info@chargeguru.com", + "description": "LE BASTIDOU DE BEAUMARCHES", + "ref:EU:EVSE": "FRCG0E000255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.04133300000, + 43.60109300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "description": "CARROS - PARKING ASLLIC", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRM06PNICE14352;FRM06PNICE14351;FRM06PNICE14342;FRM06PNICE14341;FRM06PNICE14331;FRM06PNICE14312;FRM06PNICE14311;FRM06PNICE14321;FRM06PNICE14322;FRM06PNICE14332", + "start_date": "2022-01-04;2021-11-29", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*143*3*_*_;FR*SOD*S*NICE*143*1*_*_;FR*SOD*S*NICE*143*2*_*_;FR*SOD*S*NICE*143*4*_*_;FR*SOD*S*NICE*143*5*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20052300000, + 43.79817300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "4fbc3d47-ec6f-5bca-b15d-a378f105f337", + "operator": "199__SYDEC40", + "description": "MOBIVE | Geaune | Parking de la Piscine" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38038600000, + 43.63655100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-29", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "description": "BEAUVAIS - Square Félix Dévé", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE60BVBA", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08518600000, + 49.42971700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "capacity": "2", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRBMPS242141;FRBMPS242142", + "description": "Bump - Super U - Lyon Gerland", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "ref": "242141;242142", + "operator": "Bump", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82886500000, + 45.73590400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2897EVCP01", + "description": "RUE", + "ref:EU:EVSE": "LFR2897EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66697300000, + 50.26448500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Gimel-Les-Cascades | le Bourg", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "c9bac06d-6714-5205-aff1-04c831a9e207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85161200000, + 45.30204200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "2_AM0001_SMOYS", + "capacity": "2", + "amenity": "charging_station", + "ref": "7b6d2945-94ba-5193-98f8-c12c836587ae", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Saint-Pierre-du-Perray - Rue du Commerce" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50681400000, + 48.61465400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "description": "FELIBRIGE - JONQUERETTE", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com", + "start_date": "2020-05-14", + "ref:EU:EVSE": "FR55CP84450JQTFELIBRIGE", + "ref": "FR*55C*P84450*JQT*FELIBRIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93612400000, + 43.94898500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "GUJAN MESTRAS Grand Large", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2939EVCP01", + "ref": "LFR2939EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07591500000, + 44.61526800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "operator": "ProperPhi", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPHIPTHECORNER", + "ref": "63f5c84e96fb7db5ae3b40d7", + "start_date": "2023-03-17", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 9:00-19:00", + "network": "PROPERPHI", + "description": "Parking Corner", + "owner:ref:FR:SIREN": "837717909", + "operator:email": "contact@properphi.com;contacta@properphi.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24722200000, + 47.00178400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "598242;FU2UCSPHOH", + "description": "Réseau eborn/FU2UCSPHOH;Villerest, Plage de Villerest", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPFU2UCSPHOH;FREBNP7686188238326231502", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03554200000, + 45.98562500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8634447511404330631", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "ref": "578945", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/PHEETVQ3IH", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96248000000, + 48.05696200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-05", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "Parking gare de Besançon TGV - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "ref:EU:EVSE": "FRP01E25035001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95334831864, + 47.30626434276 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "start_date": "2023-08-31;2023-09-21", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "description": "Carrefour Market - Quimperlé", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRDRVPCRFMKT293001", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55530300000, + 47.87987200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNP924341212906466877;FREBNPEMWSK7UUY4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-11-20", + "description": "Réseau eborn/EMWSK7UUY4;Brives-Charensac, Place blanche", + "ref": "346682;EMWSK7UUY4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92956000000, + 45.04690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "GROUPE EDENIS - TOULOUSE", + "start_date": "2022-09-02", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*483*4*_*_;FR*SOD*S*OTHR*483*3*_*_;FR*SOD*S*OTHR*483*2*_*_;FR*SOD*S*OTHR*483*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FROTHPOTHR48341;FROTHPOTHR48321;FROTHPOTHR48311;FROTHPOTHR48331", + "network": "GROUPE EDENIS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38119200000, + 43.57355600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P9139412378750155553", + "description": "Freshmile France/AYM7H1XRJQ", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "891999", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51330300000, + 47.88747600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-25", + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRUBIE10098565;FRUBIE10036289;FRUBIE10031788;FRUBIE10041681;FRUBIE10087320;FRUBIE10092837", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Place Raymond Poincare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10260900000, + 49.50541400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "559835", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5844559860514713007", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WSTO3YTK15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30002900000, + 49.09866200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-06-21", + "description": "TOULOUSE - 10 Boulevard du Professeur Léopold Escande", + "ref:EU:EVSE": "FRTLSE31555021", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45650000000, + 43.60300000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/BFRXEAP6WP", + "network": "Freshmile France", + "ref": "782481", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P2293949299621724744", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91613700000, + 43.60686300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P880576068834290809", + "description": "MobiSDEC/C7MVLEKOXT", + "ref": "461670" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04125200000, + 49.38761100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-25", + "ref:EU:EVSE": "FRS12E12026001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "BERTHOLENE - Parking Mairie", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77672200000, + 44.39487700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "GALLUIS - Rue de l’Eglise", + "ref:EU:EVSE": "FRY03E78262001", + "start_date": "2023-07-20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79476260000, + 48.79607600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "description": "OuestCharge - ePremium - Grez Neuville - Lionnais", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS49P49155A", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "SIEML" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70647200000, + 47.61438900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIED70", + "ref:EU:EVSE": "FRS70PLUREINTER", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "operator": "Syndicat intercommunal d'énergie du département de la Haute-Saône | FR*S70", + "amenity": "charging_station", + "ref": "79843", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SIED70/FR*S70*PLUREINTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49362000000, + 47.68520000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.20663200000, + 49.97136340000 + ], + [ + 1.20676290000, + 49.97108680000 + ], + [ + 1.20682690000, + 49.97095520000 + ], + [ + 1.20682690000, + 49.97092210000 + ], + [ + 1.20682150000, + 49.97086380000 + ], + [ + 1.20683500000, + 49.97083680000 + ], + [ + 1.20687830000, + 49.97073590000 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-10-06", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "CAPPELLE BROUCK - Route De Bourbourg", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH14E59130001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21833200000, + 50.90695600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "capacity": "2", + "charging_station:output": "18 kW", + "description": "TINTENIAC - 2 avenue des Trente (Place Tanouarn) ", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Bouygues (1-OUEST)", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "ref:EU:EVSE": "FRS35P35337001B1", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83893600000, + 48.32840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63", + "ref": "518342", + "socket:type2_combo:output": "25 kW;22 kW", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "amenity": "charging_station", + "network": "SIEG 63", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "description": "SIEG 63/FR*S63*P63178*D", + "ref:EU:EVSE": "FRS63P63178D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24299600000, + 45.54368900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1", + "ref": "1031502", + "charging_station:output": "25 kW;22 kW", + "description": "Freshmile France/LLO2QG1JS2QP87", + "ref:EU:EVSE": "FRFR1P6852640352952117671" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17726100000, + 49.12031100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS32PBABXXR", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "21844", + "description": "SDEG32/BABXXR", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97845000000, + 43.72290000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRSIPE94016003", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-03-12", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "CACHAN - Avenue Du Pont Royal", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32786720000, + 48.79319410000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*267*1*_*_", + "start_date": "2023-11-16", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "description": "NICE - CORNICHE STE ROSALIE", + "ref:EU:EVSE": "FRM06PNICE26711;FRM06PNICE26712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27522834419, + 43.71439195909 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "29ffbfd6-1f92-578a-b35e-55f76c3127a7", + "description": "MOBIVE | Eymet | Parking Park Relais | departemental 18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40010100000, + 44.66652700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRSIGPSIGE4051;FRSIGPSIGE4011;FRSIGPSIGE4021;FRSIGPSIGE4031;FRSIGPSIGE4041", + "network": "SIGEIF", + "charging_station:output": "7.36 kW", + "description": "SIGEIF - 14 RUE LARMEROUX - VANVES", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "start_date": "2020-10-12", + "ref": "FR*SOD*S*SIGE*40*4*_*_;FR*SOD*S*SIGE*40*1*_*_;FR*SOD*S*SIGE*40*2*_*_;FR*SOD*S*SIGE*40*3*_*_;FR*SOD*S*SIGE*40*5*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28000900000, + 48.81655700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "description": "LE PETIT QUEVILLY - Mairie", + "start_date": "2022-10-07;2021-11-03", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "ref:EU:EVSE": "FRC01E76498001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05238600000, + 49.43046500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator:email": "bornes@lidl.fr", + "ref:EU:EVSE": "LFR4217EVCP03;LFR4217EVCP02;LFR4217EVCP04;LFR4217EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "ANDILLY", + "ref": "LFR4217EVCP03;LFR4217EVCP02;LFR4217EVCP04;LFR4217EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01127700000, + 46.26107000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "description": "MOBIVE | Egletons | Av. Charles de Gaulle", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator": "192__FDEE19", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "ref": "fa2f076a-4549-54fe-849d-0a6ff40894d7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04627700000, + 45.40493200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "network": "CPO CITEOS Vaucluse", + "operator:email": "cpo@citeos.com", + "operator": "3_AM0002_Vauclus'elec", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "d04ffc71-905d-558d-a83a-3d6facf4f48c", + "description": "VELLERON - Avenue du Général de Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02945600000, + 43.95768200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FR*55C*P92380*GAR*DEBAT", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "description": "RUE DU DOCTEUR DEBAT - GARCHES", + "start_date": "2023-03-03", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com", + "ref:EU:EVSE": "FR55CP92380GARDEBAT", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19730000000, + 48.85195000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "LFR2940EVCP01", + "description": "PARTHENAY", + "ref": "LFR2940EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21793700000, + 46.64703000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;100 kW;188 kW", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PITMPLT", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Plaisance-du-Touch", + "opening_hours": "24/7", + "capacity": "11", + "start_date": "2023-08-22", + "operator": "Power Dot France", + "charging_station:output": "50 kW;100 kW;188 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30871800000, + 43.56910100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/PTHUPUSXPM;Chamonix-Mont-Blanc, Tunnel du Mont-Blanc", + "opening_hours": "24/7", + "ref": "39149;PTHUPUSXPM", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "ref:EU:EVSE": "FREBNPPTHUPUSXPM", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86026000000, + 45.90150000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRETIP77407A", + "description": "e-totem INFRA - Le Safari (77)", + "socket:type2_combo:output": "100 kW;150 kW", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref": "FRETIP77407A", + "start_date": "2024-06-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53011329038, + 48.53495475998 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "ref:EU:EVSE": "FRPD1PCORFLE", + "amenity": "charging_station", + "capacity": "4", + "description": "Cora - Flers", + "opening_hours": "24/7", + "start_date": "2022-10-21", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12024882366, + 50.63597056646 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Carrefour Market - Changé les Laval", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-04-22", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "ref:EU:EVSE": "FRDRVPCRFMKT538101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.78152200000, + 48.09998300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "ECOPI", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Technord DC", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREPIE1896361", + "start_date": "2022-05-04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15820900000, + 50.60987500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-12-19", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*AUCH*188*1*_*_", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPAUCH18812;FROTHPAUCH18811", + "charging_station:output": "22 kW", + "network": "AUCHAN", + "description": "AUCHAN - GRANDE SYNTHE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27771840000, + 51.00556970000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6803845", + "start_date": "2023-10-04", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LANGON", + "ref:EU:EVSE": "FRCPIE6803845", + "description": "SONEPAR CONNECT LANGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24104500000, + 44.54327400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1PFLPKSQ", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "232414", + "description": "Freshmile/FLPKSQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01379000000, + 43.57380000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Rue de Tolbiac 234", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref": "FR*V75*P9013*06", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P901306", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34336600000, + 48.82650400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P5731774369592969929", + "network": "Freshmile France", + "description": "Freshmile France/C7JGYCFWRS", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "626015", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30531200000, + 47.83651000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "capacity": "12", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRTSLP5147", + "owner:ref:FR:SIREN": "524335262", + "description": "Tesla Supercharger Thiais", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37303400000, + 48.75486500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "435144", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/OTIU7I3VVW", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P5403583324181313191", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45245200000, + 43.61737400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "R3 - Haute Borne", + "owner:ref:FR:SIREN": "902726488", + "start_date": "2023-08-16", + "capacity": "5", + "ref:EU:EVSE": "FR3R3P89882097", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15515200000, + 50.60818300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "461685", + "capacity": "2", + "description": "MobiSDEC/CTQR1SV2HQ", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P4858965560153712888", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30331500000, + 49.00064800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "description": "VABRE-TIZAC - Parking Stade/Salle des fêtes", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12285001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15053300000, + 44.27351200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1130799", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "description": "WAAT/FRWA5L5HX2MINB", + "ref:EU:EVSE": "FRWA5P6878324789426626796", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WA5", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23936600000, + 48.70685000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-10;2021-04-26;2024-04-11", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "description": "VAUCHRETIEN - Parking de l'Eglise;OuestCharge - Diva Sp - Vauchretien - Eglise", + "ref:EU:EVSE": "FRS49E49363001;FRS49P49363A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47685800000, + 47.33136900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LACAUNE - Avenue Georges Clémenceau Place De La Poste", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-02-22", + "ref:EU:EVSE": "FRS81E81124002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69301362393, + 43.70705487724 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRHPCPNF050462", + "description": "RELAIS PLOUMAGOAR", + "amenity": "charging_station", + "start_date": "2021-01-12;2021-04-01;2024-02-16", + "capacity": "4", + "owner:ref:FR:SIREN": "531680547;531680545;531680546;531680548", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "ref": "FRHPCPNF050462", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11250000000, + 48.55020000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MONTCUQ - Place du faubourg st Privat", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS46E46201001", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21187400000, + 44.33831000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/SPXABC", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS56PSPXABC", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref": "21876", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.78750000000, + 47.75640000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-04-19", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "DOUAI - GAYANT EXPO 2", + "network": "pass pass électrique", + "ref:EU:EVSE": "FRH04E59178021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09216578000, + 50.38130290000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2923201", + "description": "Quimper-Place de la Tourbie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10205200000, + 47.99945100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT-MAUR-DES-FOSSÉS - 106 Boulevard de la Marne", + "start_date": "2024-02-23", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRSIPE94068021", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51224335598, + 48.78921544965 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "CHATELLERAULT BLOSSAC-1-2;CHATELLERAULT BLOSSAC-1-1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "start_date": "2016-11-24", + "operator": "SOREGIES MOBILITES", + "ref:EU:EVSE": "FRLMSE12346051442;FRLMSE12346051441;FRLMSE12346051431;FRLMSE12346051432", + "operator:email": "irve@soregies.fr", + "ref": "B020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54520000000, + 46.81861100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "socket:type2_combo:output": "100 kW;150 kW", + "network": "Métropolis", + "amenity": "charging_station", + "charging_station:output": "100 kW;50 kW;150 kW", + "capacity": "4", + "description": "Métropolis/FR*MGP*P92063*T", + "ref": "484748", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92063T", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16071900000, + 48.87150300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FRSIGPSIGE7261;FRSIGPSIGE7251;FRSIGPSIGE7221;FRSIGPSIGE7211;FRSIGPSIGE7231;FRSIGPSIGE7241", + "ref": "FR*SOD*S*SIGE*72*6*_*_;FR*SOD*S*SIGE*72*5*_*_;FR*SOD*S*SIGE*72*4*_*_;FR*SOD*S*SIGE*72*3*_*_;FR*SOD*S*SIGE*72*2*_*_;FR*SOD*S*SIGE*72*1*_*_", + "description": "SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "start_date": "2020-11-25", + "charging_station:output": "7 kW;7.36 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25803800000, + 48.81908100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "300 kW;150 kW", + "amenity": "charging_station", + "operator:email": "operations.france@atlante.energy", + "capacity": "15", + "ref": "970214", + "opening_hours": "24/7", + "network": "Atlante", + "ref:EU:EVSE": "FRATLP4401358921800428350", + "operator": "Atlante | FR*ATL", + "charging_station:output": "300 kW;150 kW;22 kW", + "description": "Atlante/FRATLZ326_FRGRANDP_000001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73326300000, + 45.15613300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "operator": "ZEENCO", + "opening_hours": "Mo-Fr 10:00-17:00", + "charging_station:output": "25 kW", + "capacity": "3", + "network": "ZEENCO", + "owner:ref:FR:SIREN": "477588966", + "start_date": "2024-03-28", + "description": "Howdens Charrtes", + "operator:email": "franck.legardeur@zeenco.tech", + "ref:EU:EVSE": "FRLMSE1000081808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45391200000, + 48.41735700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "operator": "202__TE64", + "description": "MOBIVE | Coarraze | Rue de la Gare", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "12498ad2-c0bd-56d3-b61c-715667cb97f7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24225500000, + 43.18190400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS85E85155001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-14", + "description": "MOUILLERON-LE-CAPTIF - Place des Oiseaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45963000000, + 46.72031000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRALLEGO9006422;FRALLEGO9006271;FRALLEGO9000302;FRALLEGO9000221;FRALLEGO9000222;FRALLEGO9000301;FRALLEGO9002941;FRALLEGO9002942;FRALLEGO9002943;FRALLEGO9006272;FRALLEGO9006421", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "network": "Allego Carrefour Chalons-en-Champagne", + "operator:email": "info@allego.eu", + "ref:EU:EVSE": "FRALLEGO9006422;FRALLEGO9006271;FRALLEGO9000302;FRALLEGO9000221;FRALLEGO9000222;FRALLEGO9000301;FRALLEGO9002941;FRALLEGO9002942;FRALLEGO9002943;FRALLEGO9006272;FRALLEGO9006421", + "capacity": "11", + "start_date": "2022-12-12", + "description": "Allego Carrefour Chalons-en-Champagne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38625692000, + 48.94287459000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR2916EVCP01", + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "description": "CARENTAN St Côme", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2916EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25513500000, + 49.30978700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "start_date": "2023-12-20;2023-11-08", + "amenity": "charging_station", + "capacity": "4", + "ref:EU:EVSE": "FRPD1PLMCSOR", + "charging_station:output": "100 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "description": "Restaurant la mie CÂLINE - Sorgues" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87879733470, + 44.00093003710 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Saint-Pierre-De-Chartreuse, Place de la Mairie;Réseau eborn/WJJPG4Z7MN", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPWJJPG4Z7MN", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "WJJPG4Z7MN;32773" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81553800000, + 45.34160100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "EVzen/EE686437-D77B-48F4-B328-28F440CD45BE", + "ref:EU:EVSE": "FREVZP1814190704607775838", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "network": "EVzen", + "operator:email": "support@evzen.com", + "ref": "1177071" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36713500000, + 46.69044200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PGSTSOR", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "start_date": "2022-08-18", + "operator": "Power Dot France", + "description": "Besson Chaussures - Sorgues", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88403526313, + 43.98453329919 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "ref": "ICY3X7IVQQ", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICY3X7IVQQ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21", + "description": "Charlieu, Parking place de la bouverie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17425480000, + 46.15816860000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-09", + "capacity": "5", + "operator": "E-TOTEM", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "FRETIP13063B", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "charging_station:output": "100 kW;150 kW;22 kW", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP13063B", + "description": "e-Totem - BUFFALO GRILL MIRAMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99316500000, + 43.58958800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR16921;FROTHPOTHR16911;FROTHPOTHR16931;FROTHPOTHR169311;FROTHPOTHR16941;FROTHPOTHR16951", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SEMVR", + "opening_hours": "24/7", + "description": "SEMVR - ROUBAIX - BLANCHEMAILLE", + "ref": "FR*SOD*S*OTHR*169*5*_*_;FR*SOD*S*OTHR*169*31*_*_;FR*SOD*S*OTHR*169*3*_*_;FR*SOD*S*OTHR*169*2*_*_;FR*SOD*S*OTHR*169*1*_*_;FR*SOD*S*OTHR*169*4*_*_", + "start_date": "2020-09-15", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16932000000, + 50.69786000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6984085", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2024-08-21", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "PARKING STADE BORNE 1", + "ref:EU:EVSE": "FRCPIE6984085", + "network": "PARKING STADE BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41072400000, + 43.52916600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4132632158546843392", + "opening_hours": "24/7", + "ref": "515114", + "charging_station:output": "11 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/THJYJFR6JY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58194500000, + 45.29850500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "start_date": "2024-08-01", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "description": "CENTER PARCS LES TROIS FORETS - Parking T", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRVIAP123006", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99850900000, + 48.62659300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2592189719359305928", + "capacity": "4", + "network": "Freshmile France", + "ref": "698852", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/B6QDXR7OOU", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15705600000, + 49.10259900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "ref:EU:EVSE": "FRSUAP09306A", + "amenity": "charging_station", + "start_date": "2021-10-14", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FRSUAP09306A", + "operator:email": "contact@e-totem.fr", + "network": "SUPER U TARASCON SUR ARIEGE", + "capacity": "1;5", + "description": "SUPER U TARASCON SUR ARIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59980393711, + 42.84540556623 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "482040", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P6530530119122678134", + "charging_station:output": "22 kW", + "socket:type2_combo:output": "22 kW", + "description": "Freshmile France/OY9U2KDFHP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70724000000, + 47.62246000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "DRIVECO", + "start_date": "2022-10-06", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLM206001", + "charging_station:output": "22.08 kW", + "description": "Leroy Merlin - Bastia", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43706500000, + 42.65757700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "ref:EU:EVSE": "FRS28E134341", + "operator:email": "support@modulo-energies.fr", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "network": "MODULO - YMONVILLE - Rue du Haut Chemin", + "operator": "Modulo", + "description": "MODULO - YMONVILLE - Rue du Haut Chemin", + "owner:ref:FR:SIREN": "841376734", + "ref": "FRS28E134341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75244600000, + 48.26424900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "ref": "787011", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P629068760389270024", + "charging_station:output": "22 kW", + "description": "SDEA 10/VHED6QZPZJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05820100000, + 48.14717200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "WAAT/FRWA5LT0NSRCSI", + "operator:email": "exploitation@waat.fr", + "ref:EU:EVSE": "FRWA9P3686359443123541812", + "ref": "1127997" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46317100000, + 47.08070200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref:EU:EVSE": "FRS50P50485001", + "socket:type2_combo:output": "300 kW;150 kW", + "operator:email": "e-charge50@sdem50.fr", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "start_date": "2024-07-26", + "network": "e-charge50", + "description": "CARENTAN LES MARAIS (ST HILAIRE PETITVILLE) - Station multi énergies", + "operator": "Total marketing france", + "charging_station:output": "300 kW;150 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21127700000, + 49.30274300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT SULPICE LA POINTE - Avenue Pasteur", + "operator:email": "fr.duhamel@bouygues-es.com", + "ref:EU:EVSE": "FRS81E8127100112;FRS81E8127100111;FRS81E8127100121;FRS81E8127100122", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "start_date": "2017-07-20", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68575595322, + 43.77345726949 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "ref": "FRHPCPNF078386", + "start_date": "2022-04-08", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "RELAIS TROYES LE PLESSIS", + "network": "TotalEnergies Charge Rapide", + "owner:ref:FR:SIREN": "531680747;531680745;531680744;531680746", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF078386" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24100000000, + 48.21410000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "socket:type2_combo:output": "25 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BEAUPREAU - Rue du Bocage", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "charging_station:output": "25 kW", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS49E49022001", + "start_date": "2024-04-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89977800800, + 47.25177764893 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "ref:EU:EVSE": "FRS60P2630380277490590659", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "description": "Mouv'Oise/LLRG7YF902N4GK", + "ref": "1052658" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94481800000, + 49.66201100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRH09E59400001", + "charging_station:output": "22 kW", + "network": "pass pass électrique", + "description": "MERVILLE - Avenue Clémenceau " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64094700000, + 50.64370300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-08-12", + "ref:EU:EVSE": "FRS30E30128002", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "GENERAC - Parking PEM", + "network": "Reveo", + "charging_station:output": "22 kW;7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34334000000, + 43.73203000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1155534", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "socket:type2_combo:output": "108 kW", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56P3140591712872306259", + "charging_station:output": "108 kW;22 kW", + "network": "Mobilité électrique 56", + "description": "Mobilité électrique 56/LLYSIRWE018T4Q" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40121700000, + 47.53457000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRLMSE12346390461;FRLMSE12346390451", + "ref": "B060", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "SOREGIES MOBILITES", + "owner:ref:FR:SIREN": "450889225", + "description": "LUSSAC LES CHATEAUX-1-1;LUSSAC LES CHATEAUX-1-2", + "operator": "SOREGIES MOBILITES", + "start_date": "2016-04-08", + "operator:email": "irve@soregies.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72538000000, + 46.40226000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "amenity": "charging_station", + "charging_station:output": "2.3 kW;22 kW", + "description": "Metropolis - Citadine - Choisy-le-Roi - Av. d´Alfortville;Métropolis/FR*MGP*P94022*B", + "ref:EU:EVSE": "FRMGPP94022B", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "885354860", + "ref": "599142", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41379300000, + 48.77179600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF - 46 BOULEVARD GUTENBERG - LIVRY-GARGAN", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*SIGE*105*1*_*_", + "start_date": "2021-03-11", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10511;FRSIGPSIGE10512", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51709900000, + 48.91367000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "CANET EN ROUSSILLON - Avenue des Alizés", + "ref:EU:EVSE": "FRBE1E66037001", + "start_date": "2021-10-21", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02291930000, + 42.70033210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP89369696", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "start_date": "2022-12-30", + "network": "ENGIE Vianeo", + "charging_station:output": "300 kW;22 kW;63 kW", + "description": "ENGIE Vianeo - A31 Val de Meuse", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49766900000, + 47.97426900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2020-06-26", + "ref:EU:EVSE": "FRS16PMB163711;Non concerné;FRS16PMB163712", + "owner:ref:FR:SIREN": "251600060", + "capacity": "2", + "network": "CPO CITEOS Mobive;MOBIVE - SDEG 16", + "amenity": "charging_station", + "operator": "190__SDEG16;IZIVIA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SAINT FRAIGNE - ALLEE DES JARDINS;MOBIVE | Saint Fraigne | Allée des Jardins", + "operator:email": "sav@izivia.com;cpo@citeos.com", + "ref": "FR*SOD*S*MB16*37*1*_*_;bbbc7e51-fbce-5186-95a2-31d4218b1369" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00729400000, + 45.95351400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Mairie - MERLIMONT", + "ref:EU:EVSE": "FRSE1PSE62MBBA", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "start_date": "2022-02-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61398200000, + 50.45590900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "start_date": "2023-01-16", + "description": "MERIGNAC", + "ref:EU:EVSE": "FRALLPEVCARSMERIG", + "capacity": "10", + "socket:type2_combo:output": "75 kW;300 kW", + "network": "Carrefour Energies", + "charging_station:output": "22 kW;75 kW;300 kW;0 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65569100000, + 44.83044000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR3730EVCP01;LFR3730EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LIVRY GARGAN Moulin", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3730EVCP01;LFR3730EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51362100000, + 48.91178700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-01-15", + "network": "Reveo", + "description": "BRUGUIERES - Place De La Republique", + "ref:EU:EVSE": "FRM31E31091001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41133100000, + 43.72741800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPGAMO0PZWOK;FREBNP8547437787208372426", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "GAMO0PZWOK;598248", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Rocbaron, Parking Jean Moulin;Réseau eborn/GAMO0PZWOK", + "start_date": "2022-09-27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09038200000, + 43.30328300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P760625164272403658", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "377471", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/RFSKEP", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71039000000, + 49.12820000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "start_date": "2023-02-01", + "operator": "Bouygues E&S", + "description": "PARIS - Bastille", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E750560394;FRP07E750560393;FRP07E750560392;FRP07E750560391;FRP07E75056039;FRP07E750560395", + "capacity": "52" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36836000000, + 48.84963000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/LLIKF7WABBA7MA", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref": "892803", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "ref:EU:EVSE": "FREBNP4627676044371151723", + "socket:type2_combo:output": "24 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59409200000, + 45.36016100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREFLP6156176165138446700", + "network": "Road", + "amenity": "charging_station", + "opening_hours": "Mo,Su,Th,We,Fr,Tu,Sa 08:00-18:00", + "capacity": "1", + "charging_station:output": "11 kW", + "ref": "1083267", + "operator:email": "roaming-dev@road.io", + "description": "Road/664c44ce7367cc001c806f07", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85737600000, + 44.82126300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR29541;FROTHPOTHR29531;FROTHPOTHR29511;FROTHPOTHR29521", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "description": "HOTEL IBIS - DIJON SUD", + "start_date": "2021-12-08", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*295*4*_*_;FR*SOD*S*OTHR*295*2*_*_;FR*SOD*S*OTHR*295*1*_*_;FR*SOD*S*OTHR*295*3*_*_", + "network": "HOTELS IBIS", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00303100000, + 47.27223200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6608185", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "FRCPIE6608185", + "charging_station:output": "22 kW", + "network": "SONEPAR CONNECT VILLENEUVE-LOT", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR CONNECT VILLENEUVE-LOT", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72974600000, + 44.39502700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Réseau eborn/UKTMEQNRXJ", + "ref:EU:EVSE": "FREBNP2741542108388410064", + "ref": "492198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75091700000, + 44.56067500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1181946", + "description": "WAAT/s570496", + "network": "WAAT", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRWA2P4189899590161073667", + "charging_station:output": "7.4 kW;22 kW", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65595200000, + 47.42449400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "801717", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/XPV9T9CG13", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P9082843102849192176", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22667000000, + 49.09211800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "WARNING", + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "opening_hours": "Mo-Fr 07:00-17:30", + "description": "WARNING Orleans", + "start_date": "2021-08-12", + "ref:EU:EVSE": "FRTCBP00390", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "22 kW;7 kW", + "ref": "FRTCBP00390", + "owner:ref:FR:SIREN": "562013771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93738600000, + 47.93960500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/HIAAJ792SH", + "ref:EU:EVSE": "FRFR1P3397529906519351353", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "ref": "505572", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03729900000, + 49.28873600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-12-22", + "description": "Hyundai - Neufchâteau", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRSSDPGARAGEDELETOILE883001", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68740800000, + 48.35483800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "start_date": "2023-03-14", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E2903900", + "description": "Concarneau-Rue Claude Debussy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.92463600000, + 47.87773500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/DVULJFPHTV", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P1919560807123423196", + "ref": "101753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44349800000, + 48.10804600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576008;576011;81225078-de93-44c3-b0c3-6931b1e3a978", + "ref:EU:EVSE": "FRZP1PEAC49277;FRZP1P2537365174982286479;FRZP1P2737593088769364142;FRZP1PEAC51386", + "amenity": "charging_station", + "capacity": "1", + "network": "Zephyre;Ibis Nimes Ouest", + "description": "Zephyre/LE0067F9;Zephyre/LE006BBF;Ibis Nimes Ouest", + "owner:ref:FR:SIREN": "318381696", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34451300000, + 43.81396300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-07", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "capacity": "1", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE95", + "description": "LF_Group", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13745000000, + 50.64229500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "description": "FDE 80/hamespla", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS80PHAMESPLA", + "network": "FDE 80", + "ref": "64724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07323000000, + 49.74360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "operator": "IZIVIA", + "ref:EU:EVSE": "FRIZFPFAST1711;FRIZFPFAST1712;FRIZFPFAST1713", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "description": "IZIVIA FAST - MCDONALDS - BOURG-EN-BRESSE", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*FAST*17*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23644590000, + 46.20732790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "network": "MODULO - FOSSE - Rue de Vendôme", + "operator": "Modulo", + "opening_hours": "24/7", + "description": "MODULO - FOSSE - Rue de Vendôme", + "ref": "FRS41E4816;FRS41E4817", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E4816;FRS41E4817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28402400000, + 47.63479700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Mouv'Oise/T1NJDW0GCG", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P1292390795735192493", + "ref": "598179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01167900000, + 49.19981700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref:EU:EVSE": "FRGLYPLYON8321;FRGLYPLYON8311;FRGLYPLYON8331;FRGLYPLYON8341", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*83*3*_*_;FR*SOD*S*LYON*83*1*_*_;FR*SOD*S*LYON*83*2*_*_;FR*SOD*S*LYON*83*4*_*_", + "start_date": "2021-06-14", + "opening_hours": "24/7", + "description": "LY201 - ANTOINE VOLLON", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82765700000, + 45.75574600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "ref:EU:EVSE": "FRS37E215617;FRS37E215618", + "ref": "FRS37E215617;FRS37E215618", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - VERNEUIL SUR INDRE - Pl. de la Mairie", + "description": "MODULO - VERNEUIL SUR INDRE - Pl. de la Mairie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04215052000, + 47.05603596000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "start_date": "2016-12-01", + "description": "Saint-dolay - Rue de Coueslan", + "ref:EU:EVSE": "FRS56PDWXWZJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15332300000, + 47.54491500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-10-26", + "operator": "E-TOTEM", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CASINO DE MONTROND", + "operator:email": "contact@e-totem.fr", + "ref": "FRG10P42149A", + "network": "CASINO DE MONTROND", + "ref:EU:EVSE": "FRG10P42149A" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23765600000, + 45.63817300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Obornes/8", + "operator:email": "ops@obornes.fr", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "capacity": "10", + "network": "Obornes", + "ref": "1131489", + "ref:EU:EVSE": "FRORVP9006555887104351477", + "operator": "Obornes | FR*ORV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25545000000, + 47.67069400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*215*1*_*_", + "capacity": "2", + "description": "SIGEIF - 7 PLACE DU CAPITAINE CHAUVELOT - ARGENTEUIL", + "amenity": "charging_station", + "start_date": "2021-11-23", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200050433", + "ref:EU:EVSE": "FRSIGPSIGE21511;FRSIGPSIGE21512", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28724200000, + 48.95732300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-10-08", + "capacity": "6", + "amenity": "charging_station", + "ref": "FRCG0E002154;FRCG0E002153;FRCG0E002149;FRCG0E002150;FRCG0E002151;FRCG0E002152", + "charging_station:output": "300 kW;22 kW", + "opening_hours": "24/7", + "socket:type2_combo:output": "300 kW", + "network": "Energie de Reure Gray - 70100 - 1", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E002154;FRCG0E002153;FRCG0E002149;FRCG0E002150;FRCG0E002151;FRCG0E002152", + "description": "Energie de Reure Gray - 70100 - 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58921000000, + 47.44869800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P5336005937328061858", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "521417", + "description": "Leclerc/CYQSQKGBPL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67904000000, + 50.47633200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Saint Martin de Ré | Rue du Père Ignace", + "network": "CPO CITEOS Mobive", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "ref": "823bae4f-e203-5d66-b75b-f466ba96b175", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "191__SDEER17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36735900000, + 46.20098400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE88SADA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-06-27", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "description": "Cyno Pro - SAINT DIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93573800000, + 48.29648600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "265401422", + "charging_station:output": "7 kW", + "description": "Longwy, 11 rue Saint Louis", + "start_date": "2022-09-21", + "operator": "EPGML", + "amenity": "charging_station", + "capacity": "1", + "network": "EPGML", + "operator:email": "epgml@epgmllongwy.fr", + "ref": "4accd728-a6da-11ed-afa1-0242ac120002", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRA54P00394222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74695600000, + 49.49510600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "SAINT ANDRE DE SANGONIS - Montpellier", + "socket:type2_combo:output": "120 kW", + "ref": "LFR3815EVCP03;LFR3815EVCP01;LFR3815EVCP02", + "ref:EU:EVSE": "LFR3815EVCP03;LFR3815EVCP01;LFR3815EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51364400000, + 43.65153800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "description": "GRENOBLE - Place Jean Achard (CITIZ)", + "network": "Grenoble-Alpes Métropole", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2021-11-09", + "ref:EU:EVSE": "FRM38E38185001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72949000000, + 45.18938000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPC8ZGQHEU5W;FREBNC8ZGQHEU5W", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "75296;C8ZGQHEU5W", + "description": "Bormes-Les-Mimosas, Place Saint-Francois;Réseau eborn/C8ZGQHEU5W", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34475400000, + 43.15055800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P169919264402106624", + "capacity": "5", + "operator:email": "roaming@freshmile.com", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "ref": "742962", + "description": "Freshmile France/QGXXGHMZW9", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25432300000, + 43.43862400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-02-21", + "amenity": "charging_station", + "ref:EU:EVSE": "FRP07E94058002", + "operator": "Bouygues E&S", + "description": "LE PERREUX SUR MARNE - 2 Avenues", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50583120000, + 48.84120000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FREBNPZC6L4PI3AM;FREBNZC6L4PI3AM", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "ZC6L4PI3AM;75344", + "description": "Puget-Sur-Argens, Rue Gabriel Peri;Réseau eborn/ZC6L4PI3AM", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68348100000, + 43.45369200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLILIM", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-09-03", + "socket:type2_combo:output": "300 kW", + "description": "Lille - Intermarché", + "operator": "ELECTRA", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01265900000, + 50.64255800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E91228001", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking Evry Hotel d'Agglomération - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42408550000, + 48.62284000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCPIE6650625", + "description": "ITM SEVRO BORNE 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2024-08-02", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6650625", + "network": "ITM SEVRO BORNE 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24013800000, + 46.89381900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHP4781562721588281000", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref": "891984", + "description": "Easy Charge/FJZP5RGIWR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10233300000, + 44.56943200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "description": "Paris | Rue Botzaris 76", + "capacity": "4", + "ref:EU:EVSE": "FRV75PPX1901", + "start_date": "2021-06-04", + "opening_hours": "24/7", + "ref": "FR*V75*PPX19*01", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38864700000, + 48.87948160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3020941175940996617", + "ref": "1009206", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/QPFAVF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33360000000, + 47.74420000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "ref": "FR*V75*P9020*05", + "network": "Belib'", + "amenity": "charging_station", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "description": "Paris | Rue Louis Lumière 104", + "socket:type2_combo:output": "22 kW", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRV75P902005", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41177000000, + 48.86376600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "charging_station:output": "150 kW;50 kW;22 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P2836010663622660823", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "505524", + "socket:type2_combo:output": "50 kW;150 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/SY2XSTFI1W" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13210300000, + 50.73660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-09-30", + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "description": "Suzuki - Annemasse", + "ref:EU:EVSE": "FRSSDPMAURINSUZUKI741001", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26523900000, + 46.20162000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "Plouha-Place Foch (parking près de l'église)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS22E22222001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92898500000, + 48.67599900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS11E11262001", + "network": "Reveo", + "description": "NARBONNE - Avenue Du Theatre-Narbonne Plage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16333333333, + 43.16000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "813846359", + "amenity": "charging_station", + "start_date": "2020-11-18", + "capacity": "1", + "opening_hours": "24/7", + "operator:email": "advenir@zeborne.com", + "ref:EU:EVSE": "FRZPEE74AC127538", + "description": "IPARRA - Arcangues - 7kW AC ", + "network": "IPARRA", + "charging_station:output": "7.4 kW", + "ref": "127538", + "operator": "ZEBORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52639580000, + 43.42526190000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "TARASCON SUR ARIEGE - Place Du 19 Mars 1962", + "ref:EU:EVSE": "FRS09E09306001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60394500000, + 42.84521500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "64667", + "description": "FDE 80/58d245bb6a2bf", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80P58D245BB6A2BF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91150000000, + 49.75711700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*FAST*52*1*_*_;FR*SOD*S*FAST*52*2*_*_", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRIZFPFAST5223;FRIZFPFAST5213;FRIZFPFAST5212;FRIZFPFAST5211;FRIZFPFAST5221;FRIZFPFAST5222", + "start_date": "2024-02-05", + "description": "IZIVIA FAST - MCDONALDS - RENNES CESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62020000000, + 48.11357870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "description": "OuestCharge - Diva Sp - Le Loroux-Bottereau - Rosmadec;LE LOROUX-BOTTEREAU - Place Rosmadec", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44084A;FRS44E44084001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "start_date": "2021-04-14;2024-04-19" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34916900000, + 47.23677200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-16;2015-07-01", + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77E77229001;FRS77P77229A", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "description": "La Houssaye-en-Brie;LA HOUSSAYE-EN-BRIE - Place Du Maréchal Augereau", + "ref": "01F5ZAKH61XMYRQ89RBARGP0C2", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87450300000, + 48.75351000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GreenYellow Shift Mobility", + "ref": "1059537", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRGYMP4549157633283682285", + "capacity": "4", + "operator:email": "emobility.exploit@greenyellow.fr", + "description": "GreenYellow Shift Mobility/72", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "We,Th,Tu,Su,Fr,Sa,Mo 07:30-21:00", + "operator": "GreenYellow | FR*GYM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77646800000, + 49.40994700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "network": "MODULO - LIGNIERES DE TOURAINE - Pl. Adolphe Langlois", + "description": "MODULO - LIGNIERES DE TOURAINE - Pl. Adolphe Langlois", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS37E220477;FRS37E220486", + "ref": "FRS37E220477;FRS37E220486" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41700000000, + 47.29786400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "3.7 kW;22 kW", + "operator": "44__CCCPH", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCCPH - Crusnes", + "ref": "262b938b-d6bf-5301-a8ac-160fb9a68627" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93079200000, + 49.42915700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2021-07-28", + "network": "GRAND LYON", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "description": "LY306 - DAUPHINE - LACASSAGNE", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*LYON*104*4*_*_;FR*SOD*S*LYON*104*1*_*_;FR*SOD*S*LYON*104*2*_*_;FR*SOD*S*LYON*104*3*_*_", + "ref:EU:EVSE": "FRGLYPLYON10441;FRGLYPLYON10431;FRGLYPLYON10411;FRGLYPLYON10421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86809300000, + 45.75251200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Lalliard Albertville", + "operator": "Mobilize Power Solutions", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "881248165", + "ref": "5c477fc3-3f95-40bb-8a15-d4355f9fae61", + "capacity": "1", + "description": "Lalliard Albertville Public", + "start_date": "2023-08-29", + "ref:EU:EVSE": "FRMBZEJOCRI", + "operator:email": "support@mobilize-ps.fr", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 13:30-17:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39350200000, + 45.66557100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WattzHub", + "ref:EU:EVSE": "FRSMIP5589730250230622245", + "amenity": "charging_station", + "operator:email": "contact@wattzhub.com", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "1000866", + "operator": "WattzHub | FR*SMI", + "description": "WattzHub/657abae8d66357a549217da9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37258200000, + 48.95679800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "62 kW", + "amenity": "charging_station", + "charging_station:output": "62 kW", + "capacity": "1", + "description": "BORNE U RAPIDE", + "opening_hours": "24/7", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6541535", + "ref:EU:EVSE": "FRCPIE6541535", + "network": "BORNE U RAPIDE", + "start_date": "2024-05-15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68109500000, + 47.82003700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E.Leclerc | FR*LE2", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "capacity": "20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLE2P2430611083678184703", + "charging_station:output": "25 kW;22 kW", + "ref": "471243", + "description": "Leclerc/RE6ZKCKSUU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798100000, + 43.37472100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | La Teste-De-Buch | Allée du Garde-Feu du Juge", + "ref": "1e03d38a-ca2b-5a22-91ed-e3b4b3f6829e", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20203200000, + 44.63265200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Bretigny-sur-Orge - Rue Lucien Bouget", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "21a12765-cd11-52ac-90cf-e2f37e3f92a7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30520100000, + 48.61092400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRAIRPBGPV", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "start_date": "2024-04-25", + "description": "Airbus - Montoir de Bretagne - GC22 Intérieur", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16272400000, + 47.31697000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR4090EVCP02;LFR4090EVCP03;LFR4090EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "LANGLADE", + "ref": "LFR4090EVCP02;LFR4090EVCP03;LFR4090EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24182500000, + 43.80872300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "ref:EU:EVSE": "FRM06PNICE5832;FRM06PNICE5821;FRM06PNICE5822;FRM06PNICE5831", + "start_date": "2021-03-25", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "NICE - ALBERTI RP", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*NICE*58*2*_*_;FR*SOD*S*NICE*58*3*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27266200000, + 43.69836600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*WIIZ*19*2*_*_;FR*SOD*S*WIIZ*19*1*_*_", + "start_date": "2018-04-12", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "BIOT PARKING ST PHILIPPE", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ1911;FRA16PWIIZ1912;FRA16PWIIZ1921;FRA16PWIIZ1922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07464600000, + 43.61813000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "description": "Freshmile France/XXB6Z6J9Q5", + "ref:EU:EVSE": "FRFR1P4815491850414554953", + "operator": "Freshmile | FR*FR1", + "ref": "491895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17580500000, + 48.78194900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2023-07-07;2023-07-01", + "socket:type2_combo:output": "100 kW;188 kW", + "ref:EU:EVSE": "FRPD1PBSFRQV", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "description": "Basic Fit - Roquevaire", + "capacity": "9", + "operator": "Power Dot France", + "charging_station:output": "50 kW;100 kW;188 kW;22 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59920380000, + 43.33741610000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/LLRUPMQPH1F45P;Aix les Bains, Parking des Suisses", + "ref": "1017099;LLRUPMQPH1F45P", + "opening_hours": "24/7", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "start_date": "2024-01-26", + "ref:EU:EVSE": "FREBNP2920672293724530180;FREBNPLLRUPMQPH1F45P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88754400000, + 45.70488700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "capacity": "5", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "description": "Norauto - Bornes publiques/C38C4315-24EF-42DE-AED0-3443603968CF", + "socket:type2_combo:output": "120 kW", + "operator:email": "support@evzen.com", + "ref": "746985", + "charging_station:output": "12 kW;120 kW", + "ref:EU:EVSE": "FREVZP5025916426114250559" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30917800000, + 45.78031900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "INDIGO FRANCE", + "start_date": "2021-12-01", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRP07E33063004", + "description": "BORDEAUX - Brienne", + "opening_hours": "Mo-Su 00:00-23:57" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54806720000, + 44.82571790000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "EK3YFXDJPI;30392", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPEK3YFXDJPI", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "La Batie-Neuve, Place de la Mairie;Réseau eborn/EK3YFXDJPI", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19763900000, + 44.56532300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "charging_station:output": "120 kW;22 kW", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref": "1182843", + "description": "Easy Charge/LLTFTV0OTHO8K6", + "ref:EU:EVSE": "FRECHP7716762382238089338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16336900000, + 49.35472000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "operator:email": "support@greenflux.com", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2023-10-30", + "description": "ENGIE Vianeo - Epinal - Patinoire", + "ref:EU:EVSE": "FRVIAP143026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46123200000, + 48.17916800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/D0GNFYOMAH", + "ref:EU:EVSE": "FRFR1P4874749527894552312", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref": "487197", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59471000000, + 43.18814000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Paris | Rue Rocroy 15", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX10*11", + "start_date": "2021-11-23", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX1011", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35096170000, + 48.88012360000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRFR1P3306048663068143039", + "operator:email": "roaming@freshmile.com", + "network": "Freshmile", + "amenity": "charging_station", + "ref": "529379", + "opening_hours": "24/7", + "description": "Freshmile/KU14SZGVCB", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05024900000, + 45.79735500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-07-05", + "ref:EU:EVSE": "FRSSDPHOTMARCQ597001", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "description": "Hôtel du Croisé - Marcq en Baroeul", + "operator": "DRIVECO", + "opening_hours": "Mo 10:00-16:00, Tu 10:00-16:00, We 10:00-16:00, Th 10:00-16:00, Fr 10:00-16:00, Sa 10:00-16:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10086800000, + 50.66754900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2017-01-01", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "ref:EU:EVSE": "FRS27PAUBEVOYEGARE", + "opening_hours": "24/7", + "network": "SIEGE27", + "description": "900082", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35278800000, + 49.17416500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref:EU:EVSE": "FRS18E96970", + "start_date": "2023-05-12", + "network": "MODULO - BOURGES - Pkg. Pyrotechnie", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - BOURGES - Pkg. Pyrotechnie", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "operator": "Modulo", + "ref": "FRS18E96970", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41885300000, + 47.07697800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MOISSON - Centre", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "start_date": "2024-01-05", + "ref:EU:EVSE": "FRY03E78410001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66919000000, + 49.07367000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "3.68 kW;22 kW", + "ref:EU:EVSE": "FRQPKPQPRK6291;FRQPKPQPRK6271;FRQPKPQPRK6261;FRQPKPQPRK6251;FRQPKPQPRK62181;FRQPKPQPRK62171;FRQPKPQPRK62121;FRQPKPQPRK62101;FRQPKPQPRK6211;FRQPKPQPRK62111;FRQPKPQPRK62131;FRQPKPQPRK62141;FRQPKPQPRK62151;FRQPKPQPRK62161;FRQPKPQPRK6221;FRQPKPQPRK6231;FRQPKPQPRK6241;FRQPKPQPRK6281", + "description": "QPARK - BOULOGNE - PARCHAMP", + "amenity": "charging_station", + "ref": "FR*SOD*S*QPRK*62*9*_*_;FR*SOD*S*QPRK*62*8*_*_;FR*SOD*S*QPRK*62*7*_*_;FR*SOD*S*QPRK*62*6*_*_;FR*SOD*S*QPRK*62*5*_*_;FR*SOD*S*QPRK*62*4*_*_;FR*SOD*S*QPRK*62*16*_*_;FR*SOD*S*QPRK*62*15*_*_;FR*SOD*S*QPRK*62*14*_*_;FR*SOD*S*QPRK*62*12*_*_;FR*SOD*S*QPRK*62*10*_*_;FR*SOD*S*QPRK*62*1*_*_;FR*SOD*S*QPRK*62*11*_*_;FR*SOD*S*QPRK*62*13*_*_;FR*SOD*S*QPRK*62*17*_*_;FR*SOD*S*QPRK*62*18*_*_;FR*SOD*S*QPRK*62*2*_*_;FR*SOD*S*QPRK*62*3*_*_", + "capacity": "1", + "opening_hours": "24/7", + "network": "QPARK", + "start_date": "2022-11-18;2024-07-12;2024-06-03", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23665000000, + 48.84672100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS81E81065004", + "start_date": "2022-03-03", + "description": "CASTRES - Parking Sicard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24133900000, + 43.60773100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRIONE410400", + "network": "IONITY GMBH", + "capacity": "5", + "start_date": "2021-10-20", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "ref:EU:EVSE": "FRIONE410400", + "operator": "IONITY", + "description": "IONITY Vallée De La Vire Gouvets", + "charging_station:output": "350 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15646300000, + 45.54764100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-07-07", + "ref:EU:EVSE": "FRS50P50710001", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "description": "CREANCES - Rue des Ecoles", + "owner:ref:FR:SIREN": "255002883", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56401550000, + 49.20088600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-09-27", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS77E77490001", + "description": "VENDREST - Rue Des Écoles", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09275110000, + 49.04636800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "start_date": "2021-01-20;2021-05-31", + "socket:type2_combo:output": "175 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "RELAIS PASSAGE D AGEN", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "531680565;531680564", + "ref": "FRHPCPNF080183", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "ref:EU:EVSE": "FRHPCPNF080183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60840000000, + 44.17110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS41E254876;FRS41E254875", + "capacity": "2", + "amenity": "charging_station", + "network": "MODULO - ROMORANTIN - 4 AVENUE DES FAVIGNOLES - T2", + "description": "MODULO - ROMORANTIN - 4 AVENUE DES FAVIGNOLES - T2", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E254876;FRS41E254875", + "start_date": "2024-08-09" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74950300000, + 47.34666400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56PDREUCR", + "description": "Theix-noyalo - Rue de Treffléan", + "start_date": "2016-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64904700000, + 47.62918700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref": "674216", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P3469267585188303764", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/GII6F3OBUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44958700000, + 43.53247400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "capacity": "7", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "383184", + "description": "Métropolis/FR*MGP*P92040*E", + "charging_station:output": "2.3 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP92040E", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644700000, + 48.83126600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "description": "Opel - HESS - Beaune", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSOPEL212001", + "start_date": "2019-12-31", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85911400000, + 47.01876600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VAL DE LA HAYE - Quai Cavelier de la Salle", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-12-22", + "ref:EU:EVSE": "FRC01E76717001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00290300000, + 49.37811500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "477801", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "description": "Leclerc/YXZCNHKIHR", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P2179418181587727093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60896700000, + 49.31818400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "2655741a-a255-5624-813b-ba6ddabf7429", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Mios | Avenue de la République (Mairie)", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93973900000, + 44.60631900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "VEMARS - Rue Francois Mauriac", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS95E95641001", + "start_date": "2024-06-28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56799700000, + 49.06907500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-12-18", + "amenity": "charging_station", + "description": "Allego Groupe Bertrand, Laon", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu", + "network": "Allego Groupe Bertrand, Laon", + "ref:EU:EVSE": "FRALLEGO8008582;FRALLEGO8008581;FRALLEGO8001082;FRALLEGO8001081;FRALLEGO8001071;FRALLEGO8001072", + "ref": "FRALLEGO8008582;FRALLEGO8008581;FRALLEGO8001082;FRALLEGO8001081;FRALLEGO8001071;FRALLEGO8001072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65512000000, + 49.56864400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "ref": "446876", + "charging_station:output": "22 kW", + "description": "Leclerc/YQJMOPCAAH", + "ref:EU:EVSE": "FRLE2P7856234802460690313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08864800000, + 49.06580900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PPFSZOPWPE3", + "operator:email": "support@evzen.com", + "description": "Senas, Avenue de Chevigné" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07627700000, + 43.74683200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "operator:email": "roaming@freshmile.com", + "ref": "521477", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS89P2282970255528090167", + "network": "SDEY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SDEY/AIYZMSQLBC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17533600000, + 47.61038400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*WIIZ*44*1*_*_", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ4412;FRA16PWIIZ4411", + "start_date": "2018-05-28", + "description": "MOUGINS PARKING DU MOULIN DE LA CROIX", + "network": "WIIIZ", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99737700000, + 43.60107000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P5070361219142149336", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "50 kW;22 kW", + "description": "Freshmile France/MU4VEED0OF", + "ref": "441012", + "operator": "Freshmile | FR*FR1", + "opening_hours": "We,Fr,Sa,Mo,Tu,Th 09:00-12:00,Tu,Mo,We,Th,Sa,Fr 14:00-17:30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235000000, + 44.87030400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "start_date": "2023-09-15", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PRTPMRC", + "opening_hours": "24/7", + "description": "Centre Commercial - Marconne", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03168343618, + 50.36615835283 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "Tourves, Avenue de la Libération", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPNVJ5E3O6YT", + "network": "eborn", + "ref": "NVJ5E3O6YT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91776240000, + 43.41243050000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "22 kW;180 kW", + "description": "EVzen/687404F1-D7AC-416A-9B48-CEBFC08C4A4A", + "ref": "1191448", + "capacity": "5", + "ref:EU:EVSE": "FREVZP4800678954280402268", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "socket:type2_combo:output": "180 kW", + "opening_hours": "24/7", + "network": "EVzen", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97008500000, + 45.79933600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "BRICOMARCHE - PONT-A-MOUSSON", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-06", + "network": "LES MOUSQUETAIRES", + "ref": "FR*SOD*S*OTHR*646*3*_*_;FR*SOD*S*OTHR*646*2*_*_;FR*SOD*S*OTHR*646*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR64622;FROTHPOTHR64621;FROTHPOTHR64611;FROTHPOTHR64612;FROTHPOTHR64631;FROTHPOTHR64632" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06305700000, + 48.91794100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Crets-En-Belledonne, Base de loisirs - parking nord", + "ref:EU:EVSE": "FREBNPLLTHE8SM92PPSN", + "amenity": "charging_station", + "capacity": "4", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "ref": "LLTHE8SM92PPSN", + "start_date": "2024-03-07" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05653061000, + 45.37492832000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "Saint-Genest-Lerpt, Parking rue Louis Richard", + "ref": "YIDXSFUUSI", + "ref:EU:EVSE": "FREBNPYIDXSFUUSI", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33424530000, + 45.44730080000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "CAMPING DEVILLAIRS", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*OTHR*341*1*_*_", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "ref:EU:EVSE": "FROTHPOTHR34111;FROTHPOTHR34112", + "description": "CAMPING DE LOCEAN - LE CROISIC", + "socket:type2_combo:output": "24 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.53581000000, + 47.29745500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "521312", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P848823477714930063", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/K1RXOZWOA5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66859400000, + 46.89661700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRV75PPX1601", + "ref": "FR*V75*PPX16*01", + "amenity": "charging_station", + "start_date": "2021-04-01", + "opening_hours": "24/7", + "description": "Paris | Rue Molitor 16", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26403340000, + 48.84528210000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLKM7KADT1K67Y", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "892545", + "ref:EU:EVSE": "FRFR1P6585777096066067069", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38247200000, + 49.42207200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPAMPLITUDEBMW410001", + "capacity": "5", + "start_date": "2023-01-23;2022-05-23", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW;200 kW", + "amenity": "charging_station", + "charging_station:output": "200 kW;22.08 kW;50 kW", + "description": "BMW - Blois", + "opening_hours": "Mo 08:30-12:00, Mo 14:00-19:00, Tu 08:30-12:00, Tu 14:00-19:00, We 08:30-12:00, We 14:00-19:00, Th 08:30-12:00, Th 14:00-19:00, Fr 08:30-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33076700000, + 47.61316500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "252701974", + "start_date": "2016-07-27", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "description": "900037", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PVERNONBARETTE", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48504900000, + 49.09287400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS22E22134001", + "operator": "Bouygues E&S", + "start_date": "2023-03-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "Louannec-Route de perros (parking mairie)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41329500000, + 48.79451800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "19518", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "Inter marché VALLAURIS", + "operator:email": "contacte@zeborne.com", + "owner:ref:FR:SIREN": "424472298", + "ref:EU:EVSE": "FRZIME22AC19518", + "start_date": "2019-10-01", + "operator": "ZEborne", + "description": "Intermarché - Vallauris - 22kW AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04977650000, + 43.57313900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Yesss_Wardrecques", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "839265873", + "ref:EU:EVSE": "FRROSE248", + "opening_hours": "24/7", + "operator": "RossiniEnergy", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33775700000, + 50.72760600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "CARRIERES-SOUS-POISSY - Avenue Ernest Jolly", + "start_date": "2021-12-31", + "ref:EU:EVSE": "FRY01E78123001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03297479066, + 48.94220020070 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRIOYE413152;FRIOYE413151;FRIOYE413102;FRIOYE413103;FRIOYE413104;FRIOYE413105;FRIOYE413153", + "capacity": "7", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2021-01-21", + "opening_hours": "24/7", + "description": "Village Catalan Est", + "socket:type2_combo:output": "50 kW;350 kW", + "network": "Village Catalan Est", + "charging_station:output": "50 kW;350 kW;43 kW", + "ref": "FRIOYE413152;FRIOYE413151;FRIOYE413102;FRIOYE413103;FRIOYE413104;FRIOYE413105;FRIOYE413153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84699280000, + 42.57846390000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "378642", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS52P3506412505521850133", + "network": "SDED52", + "description": "SDED52/QDNIU62V9N", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91308200000, + 48.03135000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "TARBES - Place Henri Dunant - Préfecture", + "ref:EU:EVSE": "FRS65E65440008", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.06761000000, + 43.23403000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "ref": "FRIENE005402;FRIENE005401", + "amenity": "charging_station", + "ref:EU:EVSE": "FRIENE005402;FRIENE005401", + "description": "Verneuil d'Avre et d'Iton", + "start_date": "2023-07-29", + "capacity": "4", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "network": "Verneuil d'Avre et d'Iton" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.92309364000, + 48.75291230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS34E34320001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "VAILHAUQUES - Chemin Neuf - Place du centre commercial Le Salet", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72138261795, + 43.66912495835 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "ref": "SE61-COUL-001", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61126A", + "description": "COULONGES SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36133200000, + 48.51418300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "4", + "network": "Freshmile France", + "description": "Freshmile France/QYXETA", + "ref:EU:EVSE": "FRFR1PQYXETA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "159382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28424000000, + 48.19540000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-04-13", + "capacity": "2", + "network": "Roulez Électrique En Haute-Garonne;Freshmile", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31;Freshmile SAS", + "description": "Roulez Électrique En Haute-Garonne/HCREGP;Roquettes, Montségur", + "opening_hours": "24/7", + "ref": "33433;HCREGP", + "ref:EU:EVSE": "FRS31PHCREGP", + "operator:email": "roaming@freshmile.com;web@freshmile.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36462000000, + 43.50010000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-30;2021-06-24;2021-08-05", + "ref:EU:EVSE": "FRSIPE92004007", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "ASNIERES-SUR-SEINE - Rue Émile Zola", + "capacity": "0", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28556900000, + 48.92331100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Logis Hôtel L'Auberge du Colombier - 62340 - Borne 1", + "amenity": "charging_station", + "capacity": "1", + "description": "Logis Hôtel L'Auberge du Colombier - 62340 - Borne 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCG0E000137", + "operator:email": "info@chargeguru.com", + "start_date": "2024-05-28", + "ref": "FRCG0E000137" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85935700000, + 50.86554800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*NICE*116*1*_*_", + "start_date": "2021-02-17", + "ref:EU:EVSE": "FRM06PNICE11612;FRM06PNICE11611", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CAGNES-SUR-MER - PARKING SQUARE BOURDET", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15020400000, + 43.66442600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Labastide d'Armagnac | Place des Martyres", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "199__SYDEC40", + "ref": "c40f02c8-9faf-5b00-ad90-33a9afe58528" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18740400000, + 43.96896400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-05-22", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Centre Aquatique - Basse-Ham", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280", + "ref:EU:EVSE": "FRSE1PSE57BHQA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22855500000, + 49.38261300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Bump", + "socket:type2_combo:output": "25 kW", + "amenity": "charging_station", + "capacity": "4", + "ref": "170157", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "897849923", + "operator": "Bump", + "description": "Bump - Hotel Kyriad Palais des Congrès - Marseille", + "ref:EU:EVSE": "FRBMPS170157", + "charging_station:output": "25 kW;22 kW", + "operator:email": "exploitation@bump-charge.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39972780000, + 43.28061530000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR4055EVCP02;LFR4055EVCP01", + "operator:email": "bornes@lidl.fr", + "description": "BAR SUR AUBE - Chaumont", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR4055EVCP02;LFR4055EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71991700000, + 48.22823000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "description": "Marseille-9E, Rue Antoine Fortuné Marion", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PAIVVF8TXNT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40402100000, + 43.23835600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "4eed2010-b355-5a93-b78f-5ad19d2d2253", + "operator": "2_AM0001_SMOYS", + "amenity": "charging_station", + "capacity": "4", + "network": "CPO CITEOS SMOYS", + "ref:EU:EVSE": "Non concerné", + "charging_station:output": "3.3 kW;22 kW", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "Longpont-sur-Orge - Allée Erik Satie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27987800000, + 48.65540700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING PORT ST TROPEZ", + "ref": "FR*55C*P83990*STR*PORT", + "owner:ref:FR:SIREN": "832489801", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "start_date": "2013-02-01", + "capacity": "1", + "ref:EU:EVSE": "FR55CP83990STRPORT", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63537500000, + 43.27044000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR3765EVCP02;LFR3765EVCP01", + "socket:type2_combo:output": "120 kW", + "description": "LE CASTELLET Sources", + "ref": "LFR3765EVCP02;LFR3765EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77349300000, + 43.18013300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW;120 kW", + "capacity": "7", + "network": "Power Dot France", + "charging_station:output": "120 kW;50 kW;22 kW", + "amenity": "charging_station", + "start_date": "2023-11-17", + "description": "Super U - Saint-Seurin-sur-l'Isle", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUSSI", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.01306409437, + 45.01468375997 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Réseau eborn/BTR9WYDZA8;Annonay, Avenue de la Gare", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-21", + "ref": "37147;BTR9WYDZA8", + "ref:EU:EVSE": "FREBNPBTR9WYDZA8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67470200000, + 45.24473800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2208260100965574927", + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/V09EUUSWYY", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "541874", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31180700000, + 49.16550400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-07-04", + "ref:EU:EVSE": "FRP01E10387002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "Parking gare de Troyes - EFFIA", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06534920000, + 48.29716500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "ref:EU:EVSE": "FREBNPJJAKCW9HAW", + "ref": "JJAKCW9HAW", + "start_date": "2020-07-29", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "operator:email": "contact@reseau-eborn.fr", + "description": "Laragne-Monteglin, Parking Veragne 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82656289000, + 44.31360432000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "description": "La Crau, Parking Place Maréchal Leclerc", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-10-15", + "ref:EU:EVSE": "FREBNPG9AWPT4DAO", + "ref": "G9AWPT4DAO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06957006000, + 43.12051391000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR45991;FROTHPOTHR45961;FROTHPOTHR45951;FROTHPOTHR45941;FROTHPOTHR45931;FROTHPOTHR459221;FROTHPOTHR459211;FROTHPOTHR459201;FROTHPOTHR459181;FROTHPOTHR459171;FROTHPOTHR459161;FROTHPOTHR459141;FROTHPOTHR459131;FROTHPOTHR459101;FROTHPOTHR45911;FROTHPOTHR459111;FROTHPOTHR459121;FROTHPOTHR459151;FROTHPOTHR459191;FROTHPOTHR45921;FROTHPOTHR45971;FROTHPOTHR45981", + "description": "SEMVR - TOURCOING - LA TOSSEE", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "capacity": "1", + "network": "SEMVR", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*459*7*_*_;FR*SOD*S*OTHR*459*6*_*_;FR*SOD*S*OTHR*459*5*_*_;FR*SOD*S*OTHR*459*4*_*_;FR*SOD*S*OTHR*459*18*_*_;FR*SOD*S*OTHR*459*17*_*_;FR*SOD*S*OTHR*459*16*_*_;FR*SOD*S*OTHR*459*1*_*_;FR*SOD*S*OTHR*459*10*_*_;FR*SOD*S*OTHR*459*11*_*_;FR*SOD*S*OTHR*459*12*_*_;FR*SOD*S*OTHR*459*13*_*_;FR*SOD*S*OTHR*459*14*_*_;FR*SOD*S*OTHR*459*15*_*_;FR*SOD*S*OTHR*459*19*_*_;FR*SOD*S*OTHR*459*20*_*_;FR*SOD*S*OTHR*459*2*_*_;FR*SOD*S*OTHR*459*21*_*_;FR*SOD*S*OTHR*459*22*_*_;FR*SOD*S*OTHR*459*3*_*_;FR*SOD*S*OTHR*459*8*_*_;FR*SOD*S*OTHR*459*9*_*_", + "operator:email": "sav@izivia.com", + "start_date": "2022-08-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17033000000, + 50.70869200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "description": "Freshmile France/QIGUDGQUCV", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "ref": "782565", + "ref:EU:EVSE": "FRFR1P5564769421832240892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.47474700000, + -21.32255400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@ubitricity.com", + "amenity": "charging_station", + "capacity": "1", + "operator": "UBITRICITY GMBH", + "ref:EU:EVSE": "FRUBIE10069831;FRUBIE10009313", + "ref": "setp0100000144", + "network": "Ubitricity France Network", + "owner:ref:FR:SIREN": "310505771", + "start_date": "2023-12-15", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "UBI-LHSM-065" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28682000000, + 49.55727300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/ZXHQKBCDP8", + "ref:EU:EVSE": "FRFR1P2363941432073276538", + "opening_hours": "24/7", + "ref": "515147", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965900000, + 48.64891700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRTLSE31149057", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "description": "COLOMIERS - Allée du rouergue", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-07-25", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33141000000, + 43.60952000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "485112", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "description": "Freshmile France/GZ4Z5QIFE5", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P7449349202816776508", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51725000000, + 48.57942100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "MobiSDEC/JRO5XUKNVX", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "ref": "457488", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref:EU:EVSE": "FRS14P1404204671687444293" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50484400000, + 49.10122300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "GHO Annecy ;Zephyre", + "ref:EU:EVSE": "FRZP1P5591584093155010094;FRZP1P3514191642719900807;FRZP1P130810;FRZP1P130814", + "amenity": "charging_station", + "capacity": "1", + "ref": "9b1ec926-8a86-4bf0-a0ec-67298e20396d;576296;576281", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "GHO Annecy 2 - 22kW AC;Zephyre/LP0095A2;Zephyre/LP00959B;GHO Annecy 1 - 22kW AC", + "owner:ref:FR:SIREN": "819279696", + "operator": "Zephyre SAS;Zephyre | FR*ZP1", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08723100000, + 45.89358000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SIGEAN - Place Du Vieux Sigean", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11379001", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97944444444, + 43.02916670000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78072001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "BOINVILLIERS - Salle des Fêtes", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2023-10-11", + "charging_station:output": "22 kW", + "network": "Seymaborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65819000000, + 48.91561000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "ref": "caacdd27-0a62-5cfe-8b1a-309f58e43642", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Médiathèque-Lunéville" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50000300000, + 48.59182500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2017-09-26", + "charging_station:output": "22 kW", + "network": "Reveo", + "description": "VINCA - Rue Des Jardins De La Mairie", + "ref:EU:EVSE": "FRS66E66230001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52947000000, + 42.64515900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRH13E62489001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2021-07-12", + "description": "LAPUGNOY - Rue Cyr Bouchart D181E5", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53991000000, + 50.51535600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-12-31", + "description": "ST BRICE EN COGLES - 2 place du Champ de foire ", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator": "Bouygues (2-Nord)", + "operator:email": "serviceclient@ouestcharge.fr", + "ref:EU:EVSE": "FRS35P35257002B1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36435700000, + 48.41059700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "ref": "518288", + "opening_hours": "24/7", + "description": "SIEG63 - ePremium - Chateaugay - Gaulle;SIEG 63/FR*S63*P63099*A", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "ref:EU:EVSE": "FRS63P63099A", + "start_date": "2022-09-16", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08451500000, + 45.84975500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "541784", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6250449161721594011", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/KBQ9A4IX7P" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78003200000, + 43.93196000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SDEG32/ATYZJR", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS32PATYZJR", + "ref": "21829", + "capacity": "2", + "amenity": "charging_station", + "operator": "Syndicat Départemental d'Énergies du Gers (SDEG) | FR*S32", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDEG32" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62557200000, + 43.71200000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-10-13", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "PANTIN - Rue Benjamin Delessert", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIPE93055007", + "network": "SIPPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41804299762, + 48.89385187461 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCG0E001232;FRCG0E001230;FRCG0E001231", + "charging_station:output": "22 kW;225 kW", + "socket:type2_combo:output": "225 kW", + "description": "LS Group - Auto 21 - 28630 - 1", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "ref": "FRCG0E001232;FRCG0E001230;FRCG0E001231", + "network": "LS Group - Auto 21 - 28630 - 1", + "start_date": "2024-05-15", + "operator:email": "info@chargeguru.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54665000000, + 48.45203500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*236*1*_*_", + "description": "NICE - PARKING BROWN SEQUART", + "ref:EU:EVSE": "FRM06PNICE23611;FRM06PNICE23612", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27234150629, + 43.70974023191 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "description": "MOBIVE | Boe | Parking de la Mairie", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "8bcd8098-9d36-57c9-985a-80a367315905" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62705000000, + 44.16013300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-04-07", + "description": "SIGEIF - PARKING GARE DE VAUCELLES - TAVERNY", + "ref": "FR*SOD*S*SIGE*376*1*_*_", + "ref:EU:EVSE": "FRSIGPSIGE37612;FRSIGPSIGE37611", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23112000000, + 49.02110000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Métropole Rouen Normandie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "HOUPPEVILLE - Place De La Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRC01E76367001", + "charging_station:output": "22 kW", + "start_date": "2022-10-13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08114480000, + 49.50974180000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "socket:type2_combo:output": "50 kW;120 kW", + "ref:EU:EVSE": "LFR3278EVCP03;LFR3278EVCP01;LFR3278EVCP02", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "charging_station:output": "50 kW;120 kW", + "description": "CHERBOURG Lemonnier", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref": "LFR3278EVCP03;LFR3278EVCP01;LFR3278EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60500600000, + 49.63388900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "Non concerné", + "description": "MOBIVE | Agen | Rue Diderot | 003", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "ae5df665-9de4-5ec5-a261-1ce0a2cf3b9c", + "operator": "200__TE47", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61971900000, + 44.20073600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "46681", + "description": "SDE82/Roquecor", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "SDE82", + "ref:EU:EVSE": "FRS82PROQUECOR", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94508000000, + 44.32320000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2021-05-06", + "network": "ELECTRIC 55 CHARGING", + "description": "VICTOR HUGO - CLAMART", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR55CP92140CLMHUG0", + "ref": "FR*55C*P92140*CLM*HUG0", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26729600000, + 48.80422900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "LFR3738EVCP01;LFR3738EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "description": "LE MANS Breguet", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3738EVCP01;LFR3738EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16600100000, + 47.97599500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2022-06-21", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "description": "Intermarché - Lorient", + "ref:EU:EVSE": "FRPD1PITMLOR", + "socket:type2_combo:output": "50 kW;60 kW", + "opening_hours": "24/7", + "charging_station:output": "60 kW;50 kW;22 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38887666243, + 47.74639710939 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "start_date": "2022-09-26", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "opening_hours": "24/7", + "ref:EU:EVSE": "FREBNPYJUCBYQK33", + "charging_station:output": "24 kW;22 kW", + "ref": "YJUCBYQK33", + "operator:email": "contact@reseau-eborn.fr", + "socket:type2_combo:output": "24 kW", + "description": "Saint-Haon-Le-Châtel, Haut du bourg" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91472140000, + 46.06752154000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E-TOTEM", + "ref": "FRETIP69268A", + "amenity": "charging_station", + "ref:EU:EVSE": "FRETIP69268A", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "e-Totem - Hotel Saint Vincent Vourles", + "operator:email": "contact@e-totem.fr", + "start_date": "2024-01-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75213643016, + 45.65184423824 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "charging_station:output": "120 kW;22 kW", + "ref:EU:EVSE": "FRPD1PCLBSTL", + "amenity": "charging_station", + "capacity": "3", + "description": "Restaurant Chez Le Brasseur - Sainte-Eulalie", + "opening_hours": "24/7", + "start_date": "2024-08-16", + "socket:type2_combo:output": "120 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49174027539, + 44.90171787606 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "start_date": "2024-06-11", + "ref:EU:EVSE": "FRDRVPCRFMKT517001", + "description": "Carrefour Market - Dormans Chavenay", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63972500000, + 49.07329700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "description": "Compiègne - Intermarché", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRELCPCPGIM", + "operator": "ELECTRA", + "start_date": "2024-01-25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79275200000, + 49.39381400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*577*1*_*_", + "charging_station:output": "3.68 kW", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR57711;FROTHPOTHR57712", + "opening_hours": "24/7", + "start_date": "2023-02-08", + "description": "SYGNATURES - AUCH", + "operator:email": "sav@izivia.com", + "network": "SYGNATURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61954000000, + 43.66272600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "SONEPAR 3CCLIM CROISSY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6759675", + "description": "SONEPAR 3CCLIM CROISSY", + "ref:EU:EVSE": "FRCPIE6759675", + "start_date": "2023-07-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63595600000, + 48.82539300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "368950", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "description": "Freshmile France/UQAMTV1XPW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8787469430223458205", + "operator": "Freshmile | FR*FR1", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.59970000000, + 44.86601400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9007*04", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "description": "Paris | Rue du Bac 35", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P900704", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32775300000, + 48.85712400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P8357485537651691632", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/PX8CCIXVTW", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "694295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.57652400000, + -17.74021800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "12", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Rouen", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP1764", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05981800000, + 49.38896400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/O0NVYCD3RW", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P386045963291532719", + "ref": "698957", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00097400000, + 48.57995200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "R3 - Norauto Reims Cormontreuil", + "owner:ref:FR:SIREN": "902726488", + "capacity": "5", + "ref:EU:EVSE": "FR3R3P89258297", + "operator": "R3", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator:email": "exploitation@r3-charge.fr", + "charging_station:output": "22 kW;50 kW;150 kW", + "start_date": "2022-11-22", + "network": "R3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05597900000, + 49.21392900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS14P7837173015316690776", + "capacity": "2", + "description": "MobiSDEC/GHMUTKEBFR", + "amenity": "charging_station", + "ref": "456834", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25915400000, + 49.23476000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT CHELY D'AUBRAC - Route D'Aubrac - Place Centrale", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS12E12214001", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92244300000, + 44.59116500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref": "805296", + "description": "WAAT/FRWATLMX1KFY7D", + "ref:EU:EVSE": "FRWA5P8776045279655244199", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WA5", + "charging_station:output": "6.9 kW;22 kW", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50959200000, + 46.20901100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "socket:type2_combo:output": "50 kW", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "start_date": "2021-07-16", + "description": "OuestCharge - Quick Charger Evtronic - Saumur - Carrousel", + "opening_hours": "24/7", + "network": "SIEML", + "charging_station:output": "50 kW;43 kW", + "ref:EU:EVSE": "FRS49P49328C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440862000, + 47.26641082000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "start_date": "2022-06-23", + "network": "Le Plein Tarnais", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FRS81E8109300121;FRS81E8109300111;FRS81E8109300112;FRS81E8109300122", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "FLORENTIN - Place de la Mairie", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03353938165, + 43.88734845955 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "175 kW;54 kW", + "owner:ref:FR:SIREN": "531680490;531680492;531680493;531680494;531680495;531680497;531680496;531680491", + "ref": "FRHPCPNF007451", + "capacity": "8", + "socket:type2_combo:output": "175 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRHPCPNF007451", + "start_date": "2023-08-28;2023-03-20;2023-03-17;2023-03-28", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "REL.LES TERRES DE GRAVES SUD", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43710000000, + 44.64660000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS46E46088001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "36 kW", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2021-05-25", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "DOUELLE - Place de l'Ecole", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36048800000, + 44.47118900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "description": "Sauzon - Pen Prad", + "capacity": "2", + "charging_station:output": "24 kW", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "operator": "Freshmile", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106", + "ref:EU:EVSE": "FRS56POTFVUHHRFE", + "start_date": "2019-05-02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22297230000, + 47.36830560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "AUBY - Place de la République", + "ref:EU:EVSE": "FRH04E59028002", + "operator:email": "support@alizecharge.fr", + "start_date": "2024-03-22", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05427100000, + 50.41481800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "Plouvien-Rue Laennec", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "ref:EU:EVSE": "FRS29E2920900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.45110600000, + 48.53119300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSIPE94067002", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "4", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-MANDÉ - Avenue Gallieni ", + "network": "SIPPEREC", + "start_date": "2021-08-10;2022-04-29" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41667200000, + 48.84685300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "300 kW;22 kW", + "description": "ENGIE Vianeo - B&B HOTEL FREYMING-MERLEBACH", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "start_date": "2024-06-18", + "ref:EU:EVSE": "FRLMSP90300676" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81411300000, + 49.14043800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Perigueux | Parking Rue 26Ème Regiment d'Infanterie", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "operator": "195__SDE24", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "836202e2-8308-511c-b716-bcd042674682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71197900000, + 45.18008400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "SIGEIF 2 RUE SKLODOWSKA CURIE TAVERNY", + "ref": "FR*SOD*S*SIGE*484*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE48412;FRSIGPSIGE48411", + "start_date": "2024-06-26", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19861800000, + 49.02701420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRALLEGO9009572;FRALLEGO9009552;FRALLEGO9009551;FRALLEGO9006532;FRALLEGO9006531;FRALLEGO9006731;FRALLEGO9006732;FRALLEGO9009571", + "capacity": "8", + "network": "Allego Carrefour Cholet", + "description": "Allego Carrefour Cholet", + "amenity": "charging_station", + "ref": "FRALLEGO9009552;FRALLEGO9009551;FRALLEGO9006532;FRALLEGO9006531;FRALLEGO9006731;FRALLEGO9006732;FRALLEGO9009571;FRALLEGO9009572", + "charging_station:output": "0 kW", + "start_date": "2024-05-21", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator:email": "info@allego.eu" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84286641000, + 47.07515281000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRLIBP003740000001915;FRLIBP003740000001947", + "socket:type2_combo:output": "50 kW", + "network": "U EXPRESS MESANGER 2;ITM PIERRE DE BRESSE ", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "operator": "Eoliberty", + "owner:ref:FR:SIREN": "918444660", + "ref:EU:EVSE": "FRLIBP003740000001915;FRLIBP003740000001947", + "description": "U EXPRESS MESANGER 2;ITM PIERRE DE BRESSE ", + "operator:email": "mguermouma@eoliberty.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84525700000, + 49.16177200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | Pau | Rue lavoisier Centre Kennedy", + "operator": "202__TE64", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "00e7bbdb-6006-5ba7-95e2-8802a9b9866e" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36512900000, + 43.31079500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "ESSARTS-EN-BOCAGE(LES ESSARTS) - Place De La Mairie", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "network": "SYDEV (FR*S85)", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "200042489", + "start_date": "2024-05-15", + "ref:EU:EVSE": "FRS85E85084001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23013000000, + 46.77415100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "Allego", + "description": "FOURNIER Limoges", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ALLEGO", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "842718512", + "operator:email": "info.allego.france@allego.eu", + "ref:EU:EVSE": "FRSITE00000202", + "start_date": "2024-05-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26325980000, + 45.87082780000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "ref": "LFR2068EVCP02;LFR2068EVCP01", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "EVIAN", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "ref:EU:EVSE": "LFR2068EVCP02;LFR2068EVCP01", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57531300000, + 46.39510500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2023-06-14", + "charging_station:output": "100 kW;50 kW;22 kW", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "description": "La Boucherie - Epagny Metz-Tessy", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PLBCEMT", + "socket:type2_combo:output": "50 kW;100 kW", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08155880000, + 45.93346230000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPSNOMOK8MEQ", + "socket:type2_combo:output": "50 kW", + "description": "Réseau eborn/SNOMOK8MEQ;Publier, Cité De L'Eau", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref": "SNOMOK8MEQ;94469", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "charging_station:output": "50 kW;44 kW", + "capacity": "2;3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52835000000, + 46.39580000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Norauto - Bornes publiques", + "description": "Norauto - Bornes publiques/1B8D3F80-A6E2-497D-B8B5-73CFD4CCC20C", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "capacity": "3", + "ref": "709406", + "opening_hours": "24/7", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "FREVZP7552916690679884803", + "operator:email": "support@evzen.com", + "charging_station:output": "12 kW;120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07356200000, + 45.93890900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "start_date": "2024-09-06", + "charging_station:output": "22 kW", + "description": "Fonciariane Fleury-sur-Orne (14)", + "ref:EU:EVSE": "FRPD1PFONFLR", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37332386078, + 49.13974021997 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Leroy Merlin - Guipavas - Brest", + "network": "DRIVECO", + "start_date": "2017-04-04", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo 09:00-20:00, Tu 09:00-20:00, We 09:00-20:00, Th 09:00-20:00, Fr 09:00-20:00, Sa 09:00-20:00, Su 09:00-18:00", + "ref:EU:EVSE": "FRE11PLMBREST294901", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.44354000000, + 48.41809800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-07-24", + "operator": "E-TOTEM", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRESEPS42330AA", + "ref": "FRESEPS42330AA", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "848778429", + "capacity": "3", + "network": "Réseau Saint Étienne Métropole", + "opening_hours": "24/7", + "operator:email": "contact@e-totem.fr", + "charging_station:output": "50 kW;43 kW", + "description": "SEMOB Villars" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36806900000, + 45.46868600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-16", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPOTHR14311;FROTHPOTHR14312", + "capacity": "2", + "amenity": "charging_station", + "description": "CCVL - SAINTE-CONSORCE - ZA DU CLAPELOUP", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*143*1*_*_", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "network": "B2G DIFFUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70255200000, + 45.76949900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "network": "VAL'N FRITES STATION 1", + "amenity": "charging_station", + "description": "VAL'N FRITES STATION 1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6950955", + "start_date": "2024-06-17", + "ref:EU:EVSE": "FRCPIE6950955" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45031400000, + 50.33147300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "25 kW", + "ref": "1188421", + "ref:EU:EVSE": "FRFR1P8614370082164968466", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "description": "Freshmile France/LLUTW4LD5F7UV3", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36548900000, + 49.17250000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "400 kW", + "socket:type2_combo:output": "400 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "start_date": "2024-06-03", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo Camions - Trucks only - A5b Galande la Mare Laroche", + "ref:EU:EVSE": "FRVIAP111101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63352400000, + 48.61038400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "435156", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/SMMADKASZB", + "ref:EU:EVSE": "FRFR1P3577179048610332768", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75359000000, + 44.28850000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "capacity": "7", + "amenity": "charging_station", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSSDPLEMPEREURHYUNDAI627001", + "start_date": "2021-11-08", + "description": "Hyundai - Bruay", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57462700000, + 50.49239300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/ED5TDOOHPJ", + "network": "Freshmile France", + "opening_hours": "Su,Fr,We,Sa,Tu,Mo 00:00-23:45,Th 14:00-23:45", + "ref:EU:EVSE": "FRFR1P639195564195157438", + "ref": "491934", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65184300000, + 45.55649900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "amenity": "charging_station", + "start_date": "2024-09-05;2022-07-12", + "capacity": "4", + "opening_hours": "24/7", + "description": "Mazda - Saint-Omer", + "socket:type2_combo:output": "24 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPMAZDASAINTOMER622191", + "charging_station:output": "24 kW;22.08 kW", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26821500000, + 50.74512400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2019-10-05", + "operator:email": "support@modulo-energies.fr", + "ref": "FRS28E130145", + "network": "MODULO - BEVILLE LE COMTE - Rue Pinceloup", + "amenity": "charging_station", + "capacity": "1", + "description": "MODULO - BEVILLE LE COMTE - Rue Pinceloup", + "charging_station:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS28E130145", + "operator": "Modulo", + "owner:ref:FR:SIREN": "841376734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70996400000, + 48.43554700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "461688", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "description": "MobiSDEC/DELR9H5LME", + "ref:EU:EVSE": "FRS14P531448855638497642" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38030200000, + 49.20408200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "WAAT", + "ref:EU:EVSE": "FRWA9P9130811626059573962", + "amenity": "charging_station", + "capacity": "4", + "operator": "WAAT SAS | FR*WA9", + "description": "WAAT/FRWA6LKWXGSRJD", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "exploitation@waat.fr", + "ref": "1128072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91236100000, + 49.16997700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-02-03", + "operator:email": "e-charge50@sdem50.fr", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS50P50350001", + "owner:ref:FR:SIREN": "255002883", + "description": "DONVILLE LES BAINS - Mairie", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "e-charge50", + "operator": "Total marketing france" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58024900000, + 48.84674000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS81E81225001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "start_date": "2023-11-17", + "operator": "Bouygues E&S", + "description": "RIVIERES - Rue du Grand Galion", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98305560000, + 43.90988200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "531680635;531680634;531680636", + "ref": "FRHPCPNF077241", + "amenity": "charging_station", + "description": "RELAIS LA BAYANNE", + "capacity": "3", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRHPCPNF077241", + "start_date": "2024-03-27;2021-05-27;2021-06-18", + "socket:type2_combo:output": "300 kW", + "network": "TotalEnergies Charge Rapide", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "charging_station:output": "300 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00060000000, + 44.99970000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS49P49007J;FRS49E49007010", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "description": "ANGERS - Boulevard Mirault;OuestCharge - Diva Sp - Angers - Mirault", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "start_date": "2024-03-28;2024-04-09;2021-04-29", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55714000000, + 47.47922400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "description": "Mouv'Oise/Creilhopmouv", + "ref:EU:EVSE": "FRS60PCREILHOPMOUV", + "ref": "86690" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46238000000, + 49.24860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONTIGNY-EN-OSTREVENT - Rue du Maréchal Leclerc", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRH07E59414001", + "network": "pass pass électrique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18894800000, + 50.36174000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS30E30042001", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "description": "BOISSET ET GAUJAC - Parking Mairie", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02013200000, + 44.04927700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXPBPBH", + "socket:type2_combo:output": "42 kW", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "support@freshmile.com", + "start_date": "2016-06-21", + "operator": "Freshmile", + "charging_station:output": "42 kW", + "description": "Guer - Zone d'activité du Val Coric", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "255601106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12794300000, + 47.93023900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "amenity": "charging_station", + "capacity": "1", + "description": "ENGIE Vianeo - Hôtel Campanile Clermont Nord Riom", + "start_date": "2024-05-31", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP90212051" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13858400000, + 45.89527700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "Métropolis/FR*MGP*P93070*C", + "operator:email": "gestionfournisseurs@oriosbyspie.com", + "charging_station:output": "7 kW", + "network": "Métropolis", + "amenity": "charging_station", + "ref": "446966", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRMGPP93070C", + "operator": "Métropolis | FR*MGP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154900000, + 48.90712200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Shell Recharge", + "socket:type2_combo:output": "50 kW", + "operator:email": "customerservice@shellrecharge.com", + "start_date": "2024-03-12", + "ref:EU:EVSE": "FRSHEE218", + "capacity": "2", + "amenity": "charging_station", + "description": "Shell AIRE DE VAL-NEUVY", + "opening_hours": "24/7", + "network": "Shell AIRE DE VAL-NEUVY", + "charging_station:output": "50 kW;44 kW", + "ref": "FRSHEE218" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85599974000, + 48.27083563000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "PONCIN - Avenue Du Parc", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "0001-01-01", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRBE1E01303001", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40570600000, + 46.08571900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Last Mile Solutions", + "charging_station:output": "22 kW;300 kW;63 kW", + "amenity": "charging_station", + "start_date": "2023-02-01", + "capacity": "1", + "description": "ENGIE Vianeo - A5 Chateauvillain Orges", + "opening_hours": "24/7", + "operator:email": "support@lastmilesolutions.com", + "network": "ENGIE Vianeo", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "ref:EU:EVSE": "FRLMSP89365085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96053900000, + 48.05761000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MOBIVE | Châteauponsac | Parking Av. de Lorraine", + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "amenity": "charging_station", + "ref": "ba0746f5-ef73-5c93-a7d6-c2a84ff0da2b", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "203__SEHV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27417400000, + 46.13447300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MONNEVILLE - Centre", + "start_date": "2024-04-18", + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE60MACA", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97684000000, + 49.20441700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "start_date": "2024-02-23", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "ref": "FRALLEGO9007552;FRALLEGO9007551;FRALLEGO9001002;FRALLEGO9001001;FRALLEGO9007391;FRALLEGO9007392", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRALLEGO9007552;FRALLEGO9007551;FRALLEGO9001002;FRALLEGO9001001;FRALLEGO9007391;FRALLEGO9007392", + "operator:email": "info@allego.eu", + "network": "Allego Carrefour Maubeuge", + "description": "Allego Carrefour Maubeuge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96594496000, + 50.29060684000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3762EVCP01;LFR3762EVCP02", + "ref": "LFR3762EVCP01;LFR3762EVCP02", + "description": "SOCX Cassel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43285100000, + 50.96290300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Marseille-15E, 456 Rue de Lyon", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FRM13PTC1WGPK4JD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36021600000, + 43.34162900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2021-11-12", + "description": "Le pradet, Place Lluch;Réseau eborn/FOP0RMBHQO", + "opening_hours": "24/7", + "ref": "492132;FOP0RMBHQO", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPFOP0RMBHQO;FREBNP8406245215168743187" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02502600000, + 43.09297800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "description": "Freshmile France/LYK0VLSICY", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P2371636532299313233", + "ref": "529406" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69031800000, + 47.28060600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "charging_station:output": "50 kW;100 kW;22 kW", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "4", + "description": "Intermarché - Marnay", + "start_date": "2024-06-20", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PINTMAR", + "socket:type2_combo:output": "100 kW", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76304003174, + 47.28744502082 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPNLZTSF", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Doussard, Parking Maison des Associations;Réseau eborn/NLZTSF", + "ref": "75209;NLZTSF", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22051000000, + 45.77620000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Road", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Sa,Su,Mo,Th,Tu,Fr,We 08:00-18:00", + "charging_station:output": "11 kW", + "description": "Road/639760231233b90012f94af2", + "operator:email": "roaming-dev@road.io", + "ref:EU:EVSE": "FREFLP7178663347294744266", + "ref": "919074", + "operator": "Road | FR*EFL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49687900000, + 44.82701900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*OTHR*260*1*_*_", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-10-15", + "network": "COMMUNE DE SAINT-FLOUR", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR26012;FROTHPOTHR26011", + "description": "COMMUNE DE SAINT-FLOUR - VILLE BASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10124500000, + 45.03363100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6603595", + "capacity": "2", + "network": "SONEPAR CONNECT CHARTRES", + "amenity": "charging_station", + "description": "SONEPAR CONNECT CHARTRES", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "start_date": "2022-10-12", + "ref:EU:EVSE": "FRCPIE6603595" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43859600000, + 48.42293100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "16", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1070235", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLOIFHFL82B3EX", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P783416889139291203" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22038200000, + 46.16030900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWA2P3009236478175547648", + "network": "WAAT", + "capacity": "24", + "amenity": "charging_station", + "description": "WAAT/s501311", + "ref": "1132284", + "opening_hours": "24/7", + "operator:email": "exploitation@waat.fr", + "operator": "WAAT SAS | FR*WA2", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86348700000, + 50.96289200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/XLILIHAPFT", + "ref:EU:EVSE": "FRFR1P9020173842269786780", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "socket:type2_combo:output": "50 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "541889" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37955200000, + 43.51780800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "network": "SOWATT SOLUTIONS", + "description": "ALFEN 2x22 CITROEN CESSY", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "SOWATT SOLUTIONS", + "owner:ref:FR:SIREN": "903356970", + "ref": "1234630307", + "start_date": "2024-03-28", + "ref:EU:EVSE": "FRSWSE1234630307", + "operator:email": "contact@sowattsolutions.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06735000000, + 46.30996800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P3939707607097177864", + "description": "Freshmile France/ISHILDOGFQ", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "We,Mo,Th,Fr,Tu 14:00-18:00,Th,Fr,Tu,We,Mo 08:00-12:00", + "charging_station:output": "22 kW", + "ref": "529316", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97436600000, + 47.27715000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "network": "DRIVECO", + "ref:EU:EVSE": "FRSSDPEMILFREYTOYOTA920001", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "description": "Toyota Nanterre", + "operator:email": "support@driveco.com", + "start_date": "2024-02-05", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21200000000, + 48.88669100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "description": "Audierne-Rue Lamartine", + "start_date": "2023-03-23", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS29E2900300", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.53740100000, + 48.02670700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "network": "SDEA 10", + "operator": "Syndicat Départemental Énergie Aube (SDEA) | FR*S10", + "description": "SDEA 10/FHNPHFUR1P", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS10P3115197556575074099", + "ref": "75008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06975800000, + 48.27657900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Zephyre", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "ref": "1115373", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Zephyre/LP200227", + "ref:EU:EVSE": "FRZP1P4539684911289023914", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79015500000, + 43.77647100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "amenity": "charging_station", + "start_date": "2021-04-12", + "capacity": "4", + "description": "i-paper", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRROSE65", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54843800000, + 48.50944300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS77P77060A", + "capacity": "4", + "charging_station:output": "22 kW;24 kW;18 kW", + "description": "Buthiers - Roches", + "opening_hours": "24/7", + "operator:email": "a.buffler@bouygues-es.com", + "start_date": "2024-05-14", + "socket:type2_combo:output": "24 kW", + "ref": "226eb4e3-f00e-4a06-bdaa-8390c5ad36da", + "operator": "Bouygues Energies et Services" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43013700000, + 48.28690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "ref": "FR*SOD*S*FAST*14*1*_*_", + "ref:EU:EVSE": "FRIZFPFAST1411;FRIZFPFAST1412;FRIZFPFAST1413", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-01-26", + "description": "IZIVIA FAST - MCDONALDS - LYON DECINES-CHARPIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97717800000, + 45.77222700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "description": "MODULO - ST GERVAIS LA FORET- Rue du Clouseaux", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS41E4543;FRS41E4544", + "ref": "FRS41E4543;FRS41E4544", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - ST GERVAIS LA FORET- Rue du Clouseaux" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36980900000, + 47.56704400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mouv'Oise/LOWKJEHELJ", + "network": "Mouv'Oise", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "598161", + "opening_hours": "24/7", + "operator": "Syndicat d'Energie de l'Oise (SE60) | FR*S60", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS60P2637028741495359815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94870600000, + 49.39824200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "start_date": "2021-02-26", + "socket:type2_combo:output": "50 kW", + "ref:EU:EVSE": "FRGLYPLYON5912;FRGLYPLYON5911", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*LYON*59*1*_*_", + "operator:email": "sav@izivia.com", + "description": "MEY04 - ROCADE EST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98658500000, + 45.77135600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "SAINT MICHEL D'EUZET - Parking De L'Ecole", + "ref:EU:EVSE": "FRS30E30287001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo", + "start_date": "2022-03-03" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54639200000, + 44.20078300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS56PFFTJZD", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "description": "Mobilité électrique 56/FFTJZD", + "opening_hours": "24/7", + "ref": "25062", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26152000000, + 47.88930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P9015915749064904984", + "socket:type2_combo:output": "25 kW", + "operator:email": "roaming@freshmile.com", + "ref": "706091", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "charging_station:output": "25 kW", + "opening_hours": "24/7", + "description": "Freshmile France/JWCQS9RKYQ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92792800000, + 49.20176700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "contact@mobilygreen.fr", + "ref": "672869", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMW1P6705304826414167836", + "network": "Mobilygreen CPO", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Mobilygreen CPO/34272112-bd18-441b-827e-39358ae0306a", + "operator": "Mobilygreen | FR*MW1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07878000000, + 45.15600000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "ref": "FR*SOD*S*SIGE*192*1*_*_", + "capacity": "2", + "description": "SIGEIF - 4 RUE BELTRAME - BOIS DARCY", + "amenity": "charging_station", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRSIGPSIGE19211;FRSIGPSIGE19212", + "start_date": "2021-09-22", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02667870715, + 48.79815716186 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-03-22", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "description": "Fidal - 33700 - 2", + "ref": "FRCG0E001728;FRCG0E001727;FRCG0E001725;FRCG0E001726", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E001728;FRCG0E001727;FRCG0E001725;FRCG0E001726", + "network": "Fidal - 33700 - 2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66185200000, + 44.83323900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRVIAP121058;FRLMSP89903876", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "charging_station:output": "22 kW", + "start_date": "2024-05-24", + "owner:ref:FR:SIREN": "909073363", + "operator:email": "support@lastmilesolutions.com;support@greenflux.com", + "description": "ENGIE Vianeo - Hôtel Première Classe Roissy Nord 2;ENGIE Vianeo - Hôtel Première Classe Roissy 2", + "operator": "Greenflux;Last Mile Solutions" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51191500000, + 48.98884400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW;36 kW", + "amenity": "charging_station", + "ref": "FR*SOD*S*MB40*73*1*_*_;311ae630-dd3c-583b-9f53-ad47dfc78a83", + "network": "MOBIVE - SYDEC 40;CPO CITEOS Mobive", + "description": "MOBIVE | Parentis En Born | Parking Mairie- Avenue Germinal;PARENTIS EN BORN - PARKING MAIRIE- AVENUE GERMINAL", + "opening_hours": "24/7", + "operator": "199__SYDEC40;IZIVIA", + "ref:EU:EVSE": "Non concerné;FRS40PMB407311;FRS40PMB407312;FRS40PMB407313;FRS40PMB407314", + "charging_station:output": "50 kW;36 kW", + "capacity": "3;4", + "owner:ref:FR:SIREN": "254001399", + "start_date": "2020-05-26", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07290100000, + 44.35328700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "capacity": "2", + "amenity": "charging_station", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRSE1PSE83SABA", + "charging_station:output": "24 kW;22 kW", + "description": "Citroen - Salernes - Garage Boutal", + "start_date": "2023-11-22", + "socket:type2_combo:output": "24 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25361800000, + 43.55937900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "owner:ref:FR:SIREN": "895163608", + "operator": "Allego", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "ref:EU:EVSE": "FRALLPEVCARSFEURS", + "start_date": "2022-12-20", + "charging_station:output": "22 kW;150 kW", + "opening_hours": "24/7", + "operator:email": "fabien.lepeytre@allego.eu", + "description": "FEURS", + "network": "Carrefour Energies" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22727200000, + 45.72128900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "description": "DRUSENHEIM - Herrlisheim", + "socket:type2_combo:output": "120 kW", + "ref:EU:EVSE": "LFR3836EVCP01;LFR3836EVCP02", + "ref": "LFR3836EVCP01;LFR3836EVCP02" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.94157100000, + 48.75343300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "start_date": "2022-02-28", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "MONTPELLIER - Rue du Moulin des 7 Cans", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRM34E34172024", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89479790000, + 43.60002770000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "MBKYAM;75131", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/MBKYAM;Portes-Lès-Valence, Parking Train Théâtre", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-06-12", + "ref:EU:EVSE": "FREBNPMBKYAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88401000000, + 44.87560000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "ref": "892110", + "description": "Freshmile France/LLID3GFDC93UL5", + "amenity": "charging_station", + "network": "Freshmile France", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "ref:EU:EVSE": "FRFR1P855631496491820758", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28102200000, + 48.90789400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "start_date": "2020-06-17", + "ref:EU:EVSE": "FRP07E92046001", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "capacity": "1", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "MALAKOFF - Plateau de Vanves" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29938500000, + 48.82297100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "description": "La Valla-En-Gier, Parking place de la cure", + "amenity": "charging_station", + "ref:EU:EVSE": "FREBNPO54IWFIUPP", + "ref": "O54IWFIUPP", + "network": "eborn", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "start_date": "2020-06-21" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51626050000, + 45.41653420000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-26", + "operator:email": "help@electra.com", + "ref:EU:EVSE": "FRELCPBVSHC", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "opening_hours": "24/7", + "charging_station:output": "50 kW;150 kW", + "socket:type2_combo:output": "50 kW;150 kW", + "operator": "ELECTRA", + "description": "Beauvais - Hôtel Campanile" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11580000000, + 49.40784200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRP01E78265001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-12-05", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "EFFIA France", + "description": "Parking gare de Garancières La Queue P1 P+R - EFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76501000000, + 48.81086000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRCPIE6638005", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "SONEPAR BOULAZAC", + "operator:email": "info@chargepoint.com", + "ref": "FRCPIE6638005", + "start_date": "2022-10-12", + "network": "SONEPAR BOULAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77885800000, + 45.18303500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "description": "La Baule , Parking Avenue de la Plage", + "operator": "Easycharge services", + "ref": "Y3VAL8QRMQ", + "operator:email": "exploitation@easycharge-vinci.COM", + "amenity": "charging_station", + "ref:EU:EVSE": "FRECHPY3VAL8QRMQ", + "owner:ref:FR:SIREN": "901772400", + "network": "Easycharge services", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2023-03-08" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069000, + 47.27943453000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "ref": "FR*V75*PPX17*15", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "start_date": "2021-11-23", + "ref:EU:EVSE": "FRV75PPX1715", + "opening_hours": "24/7", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "description": "Paris | Avenue des Ternes 73", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28999470000, + 48.87946220000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P4805014352657548676", + "network": "Freshmile France", + "ref": "598071", + "socket:type2_combo:output": "24 kW;22 kW", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/WBGP5SFP0C" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64515700000, + 44.85174500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-03-15", + "description": "Paris | Avenue Marcel Doret 4", + "network": "Belib'", + "amenity": "charging_station", + "ref": "FR*V75*P9016*04", + "charging_station:output": "4 kW;22 kW", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "22 kW", + "ref:EU:EVSE": "FRV75P901604", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25993200000, + 48.83705500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/OZK2ET0HLL", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P5285238780364093684", + "ref": "741033", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72449700000, + 48.83006500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "DRIVECO", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-06-27", + "charging_station:output": "50 kW;22.08 kW", + "description": "Hyundai - Melun", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRSSDPBRMOTORSHYUNDAI772401", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63383800000, + 48.56708900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "OUESSANT - Ile d'Ouessant", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "start_date": "2023-05-16", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS29E29155001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.09722600000, + 48.45544000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "GRUISSAN - Boulevard Du Pech Maynaud", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2022-02-04", + "network": "Reveo", + "ref:EU:EVSE": "FRS11E11170001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09583300000, + 43.11138900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Borne 2 - AMSOM FEUQUIERES 22kW AC ;Borne 1 - AMSOM FEUQUIERES 22kW AC ;Borne 4 - AMSOM FEUQUIERES 7.4kW AC ;Borne 3 - AMSOM FEUQUIERES 7.4kW AC ", + "owner:ref:FR:SIREN": "315667410", + "start_date": "2023-06-19", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Lu- Ve 08:30-17:00", + "network": "\tAMSOM HABITAT - FEUQUIERES;AMSOM HABITAT - FEUQUIERES", + "operator:email": "advenir@zeborne.com", + "charging_station:output": "7.4 kW;22 kW", + "ref": "E175668;E175670;E175671;E175672", + "ref:EU:EVSE": "FRZPEE175671;FRZPEE175670;FRZPEE175668;FRZPEE175672", + "operator": "ZEborne" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60134449601, + 50.06328434598 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LEZAT SUR LEZE - Boulodrome Boulevard Pasteur", + "ref:EU:EVSE": "FRS09E09167001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34789400000, + 43.27753800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "FDE 80/HUDFPP", + "amenity": "charging_station", + "capacity": "4", + "operator": "Fédération Départementale d'Énergie de la Somme (FDE80) | FR*S80", + "ref:EU:EVSE": "FRS80PHUDFPP", + "ref": "86642", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "FDE 80" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31302000000, + 49.87690000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "socket:type2_combo:output": "150 kW", + "ref": "FR*SOD*S*FAST*31*1*_*_", + "charging_station:output": "150 kW", + "amenity": "charging_station", + "description": "IZIVIA FAST - MCDONALDS - SAINT-GRATIEN", + "capacity": "3", + "opening_hours": "24/7", + "network": "IZIVIA FAST", + "owner:ref:FR:SIREN": "951478437", + "operator:email": "sav@izivia.com", + "start_date": "2024-04-15", + "ref:EU:EVSE": "FRIZFPFAST3111;FRIZFPFAST3112;FRIZFPFAST3113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29003860000, + 48.96337750000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "1;2", + "amenity": "charging_station", + "network": "SYDELA;Ouest Charge | FR*WCH", + "owner:ref:FR:SIREN": "840290183", + "start_date": "2024-04-15;2021-04-19", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "ref:EU:EVSE": "FRS44P44057A;FRS44E44057001", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr", + "description": "FEGREAC - Rue Grégoire Orain;OuestCharge - Diva Sp - Fegreac - Orain" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04551100000, + 47.58525400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ecocharge77", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "DARVAULT - Mairie", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "24 kW;22 kW", + "start_date": "2024-05-23", + "socket:type2_combo:output": "24 kW", + "ref:EU:EVSE": "FRS77E77156001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73537311000, + 48.27088160000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRGSPP1000099428", + "capacity": "2", + "amenity": "charging_station", + "operator": "GREENSPOT", + "operator:email": "compta@greenspot.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "ANRAS 01", + "network": "ANRAS 01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94604641339, + 43.28137977408 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "ref": "FRS37E220269;FRS37E220267", + "capacity": "2", + "description": "MODULO - AMBILLOU - Rue du 11 Novembre 1918", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "841376734", + "network": "MODULO - AMBILLOU - Rue du 11 Novembre 1918", + "ref:EU:EVSE": "FRS37E220269;FRS37E220267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44523600000, + 47.45129400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "ef6b013b-57af-5b85-a64a-f45b690c2d5c", + "socket:type2_combo:output": "50 kW", + "description": "CD54 - Custines", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "50 kW;43 kW", + "operator": "42__CD54" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14551100000, + 48.77985600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "opening_hours": "Mo-Fr 08:30-00:00,Sa 08:30-20:00,Su 10:00-18:00", + "operator:email": "contact@ezdrive.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "Ezdrive", + "ref:EU:EVSE": "Non concerné", + "description": "Le Five Saint-Louis", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.40000000000, + -21.29000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | SAINT MARTIN DE SEIGNANX | Parking Bibliothéque", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "199__SYDEC40", + "ref": "71da1aa2-122e-51ce-9494-d142f35c4bdc" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39024600000, + 43.54076300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-11-04", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRSIPE94073001", + "network": "SIPPEREC", + "description": "THIAIS - Rue De La Saussaie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38265417116, + 48.76930756872 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRCPIE6528455;FRCPIE6544925", + "amenity": "charging_station", + "capacity": "4", + "network": "BORNES U TECHNO BORNE 2", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRCPIE6528455;FRCPIE6544925", + "operator:email": "info@chargepoint.com", + "description": "BORNES U TECHNO BORNE 2", + "start_date": "2022-10-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16240600000, + 43.42130700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "operator": "E.Leclerc | FR*LE2", + "description": "Leclerc/INAACCIR9R", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRLE2P9135572282525135820", + "ref": "505518", + "amenity": "charging_station", + "network": "Leclerc", + "opening_hours": "24/7", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594900000, + 48.95876800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "ref": "c6573582-9c3b-51f6-8206-d7e7ddb68897", + "capacity": "2", + "amenity": "charging_station", + "description": "MOBIVE | La Teste-De-Buch | Avenue Verdun (Cazaux)", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "197__SDEEG33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15265500000, + 44.53766300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "492041066", + "network": "AlterBase", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "bo_dgic@seolis.net", + "start_date": "2023-03-06", + "charging_station:output": "11 kW", + "description": "Réseau AlterBase - Niort - agence Séolis", + "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", + "operator": "Séolis", + "ref:EU:EVSE": "FRSEOPAB49067B" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42269200000, + 46.33605900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-12", + "capacity": "6", + "network": "DRIVECO", + "description": "Airbus - Marignane - Parking P10", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "ref:EU:EVSE": "FRAIRPAIRBUS3130012", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23149900000, + 43.42981000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref": "LFR3977EVCP03;LFR3977EVCP01;LFR3977EVCP02", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref:EU:EVSE": "LFR3977EVCP03;LFR3977EVCP01;LFR3977EVCP02", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "description": "MONDEVILLE - Coulomb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31743700000, + 49.16768800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "414771", + "opening_hours": "24/7", + "network": "Orléans Métropole", + "charging_station:output": "22 kW", + "description": "Orléans Métropole/OJGJFQZ0RB", + "operator": "Orléans Métropole | FR*M45", + "ref:EU:EVSE": "FRM45P3192589299632055373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87386000000, + 47.95080000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRA16PWIIZ16411;FRA16PWIIZ16412", + "network": "WIIIZ", + "operator:email": "sav@izivia.com", + "description": "PUGET THENIERS - PARKING MAIRIE", + "ref": "FR*SOD*S*WIIZ*164*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89266600000, + 43.95557400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P7073030122141685708", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "description": "Freshmile France/WQP2PREYY5", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "454185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16159500000, + 45.80441400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "socket:type2_combo:output": "50 kW", + "start_date": "2022-07-01", + "network": "Power Dot France", + "amenity": "charging_station", + "capacity": "3", + "opening_hours": "24/7", + "charging_station:output": "50 kW;22 kW", + "description": "Botanic - Belz", + "operator": "Power Dot France", + "operator:email": "hello@powerdot.fr", + "ref:EU:EVSE": "FRPD1PBOTBLZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18156900000, + 47.67171700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "operator": "SPBR1 | FR*EBN", + "description": "Réseau eborn/DBGJDBSHVN", + "capacity": "2", + "amenity": "charging_station", + "network": "Réseau eborn", + "ref:EU:EVSE": "FREBNP119994622650480310", + "opening_hours": "24/7", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "ref": "598224" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22004200000, + 43.62668300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "start_date": "2024-03-13", + "socket:type2_combo:output": "50 kW;200 kW", + "owner:ref:FR:SIREN": "891624884", + "amenity": "charging_station", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLSHI", + "capacity": "4", + "opening_hours": "24/7", + "description": "Blois - Hôtel Ibis", + "charging_station:output": "50 kW;200 kW", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33370500000, + 47.60984400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "INDIGO FRANCE", + "description": "NÎMES - CHU Caremeau", + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "capacity": "3", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRP07E30189002", + "start_date": "2020-06-23" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32120200000, + 43.82301700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-04-13", + "ref": "FRCPIE6711185", + "description": "CGED AUXERRE", + "capacity": "2", + "network": "CGED AUXERRE", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "ref:EU:EVSE": "FRCPIE6711185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58530400000, + 47.81284700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "roaming@freshmile.com", + "network": "Easy Charge", + "amenity": "charging_station", + "operator": "Easy Charge | FR*ECH", + "description": "Easy Charge/HGBPTTZQAT", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "ref:EU:EVSE": "FRECHP8317892661304761796", + "ref": "749190" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07665600000, + 44.56080800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Greenflux", + "charging_station:output": "300 kW;62.5 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "network": "ENGIE Vianeo", + "operator:email": "support@greenflux.com", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "909073363", + "description": "ENGIE Vianeo - A13 Morainvilliers Nord", + "ref:EU:EVSE": "FRVIAP102114", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421100000, + 48.94159100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20744270000, + 49.97105870000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "510497", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/IOCMBEAY1L", + "ref:EU:EVSE": "FRFR1P6618102732841745741", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42990000000, + 48.50642700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "Belib'", + "charging_station:output": "7 kW", + "amenity": "charging_station", + "ref": "FR*V75*PPX08*17", + "description": "Paris | Avenue Matignon 2", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRV75PPX0817", + "start_date": "2021-10-19", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31259700000, + 48.87006000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRFR1P1907351829409808112", + "ref": "1083300", + "description": "Freshmile France/LLVQOY1SZGY38M", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51328500000, + 47.74132900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRSSDPINGEOPARKINGDIAMANT200001", + "network": "DRIVECO", + "capacity": "2", + "amenity": "charging_station", + "description": "Ajaccio - Parking Public Diamant", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "start_date": "2021-09-21", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73686000000, + 41.91790000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "347180", + "capacity": "2", + "amenity": "charging_station", + "network": "SYDED", + "description": "SYDED/SRUYZT", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS25P3226972149671324516", + "operator": "Syndicat mixte d'Électricité du Doubs (SYDED) | FR*S25" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46326000000, + 46.99240000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "MODULO - LES Aix d'Angillon - Rte. de Bourges", + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - LES Aix d'Angillon - Rte. de Bourges", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-11-08", + "charging_station:output": "0 kW", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS18E205345;FRS18E205346", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS18E205345;FRS18E205346" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56562948000, + 47.19505287000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRY03E78350003", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-08-09", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Seymaborne", + "description": "LOUVECIENNES - Étang" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11410000000, + 48.85991000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "amenity": "charging_station", + "ref": "FR*SOD*S*QPRK*14*1*_*_;FR*SOD*S*QPRK*14*2*_*_", + "capacity": "1", + "description": "QPARK - 83008 TOULON - PORTE DITALIE", + "start_date": "2022-06-30", + "ref:EU:EVSE": "FRQPKPQPRK1421;FRQPKPQPRK1411", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "QPARK", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93857300000, + 43.12162900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2017-08-08;2022-03-03", + "capacity": "1;2", + "operator:email": "fr.duhamel@bouygues-es.com;support@alizecharge.fr", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "description": "CADALEN - Place Pierre Barthe", + "operator": "Bouygues E&S;BOUYGUES ENERGIES SERVICES", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "owner:ref:FR:SIREN": "258100072", + "ref:EU:EVSE": "FRS81E8104600121;FRS81E81046001;FRS81E8104600111;FRS81E8104600112;FRS81E8104600122", + "charging_station:output": "18 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98133100000, + 43.85051500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "IONITY GMBH", + "capacity": "5", + "description": "IONITY Labenne Ouest", + "operator:email": "info@ionity.eu", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "838436145", + "opening_hours": "24/7", + "socket:type2_combo:output": "350 kW", + "operator": "IONITY", + "charging_station:output": "350 kW", + "start_date": "2020-06-11", + "ref": "FRIONE405200", + "ref:EU:EVSE": "FRIONE405200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41895100000, + 43.58590400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPIE CITYNETWORKS", + "amenity": "charging_station", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "capacity": "1", + "ref:EU:EVSE": "FRS44P44169B", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "840290183", + "charging_station:output": "22 kW", + "network": "SYDELA", + "description": "OuestCharge - ePremium - Saint Julien de Concelles - Rte du Lac" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37194500000, + 47.25130500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "200041309", + "network": "Ecocharge77", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator:email": "a.buffler@bouygues-es.com;support@alizecharge.fr", + "start_date": "2015-07-01;2023-05-12", + "ref:EU:EVSE": "FRS77P77432A;FRS77E77432001", + "description": "SAINT-REMY-LA-VANNE - Rue Principale;St-Rémy-la-Vanne", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;Bouygues Energies et Services", + "ref": "01F5ZAKH61A4FD8RXE2D5HVXZP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23230400000, + 48.79218300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-06-08", + "amenity": "charging_station", + "charging_station:output": "54 kW", + "capacity": "1", + "opening_hours": "24/7", + "network": "TotalEnergies Charge Rapide", + "description": "RELAIS BEAUNE MERCEUIL", + "ref": "FRHPCPNF080041", + "ref:EU:EVSE": "FRHPCPNF080041", + "operator:email": "supervision-ev.france@totalenergies.com", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "531680643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83700000000, + 46.96030000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@modulo-energies.fr", + "network": "MODULO - BLOIS - Place Saint Honoré", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2019-03-18", + "charging_station:output": "0 kW", + "description": "MODULO - BLOIS - Place Saint Honoré", + "operator": "Modulo", + "opening_hours": "24/7", + "ref": "FRS41E139113;FRS41E139114", + "owner:ref:FR:SIREN": "841376734", + "ref:EU:EVSE": "FRS41E139113;FRS41E139114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33260100000, + 47.58779300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Mobilité électrique 56/ZJSCSE", + "operator:email": "roaming@freshmile.com", + "ref": "21890", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Morbihan énergies | FR*S56", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS56PZJSCSE", + "network": "Mobilité électrique 56" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98203000000, + 47.66860000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "419070180", + "ref": "FR*SOD*S*LYON*179*1*_*_", + "start_date": "2022-09-12", + "socket:type2_combo:output": "50 kW", + "capacity": "2", + "amenity": "charging_station", + "network": "GRAND LYON", + "charging_station:output": "50 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRGLYPLYON17911;FRGLYPLYON17912", + "description": "LY708 - JEAN MACE - SAINT-LAZARE", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84445100000, + 45.74609200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "operator": "Métropolis | FR*MGP;SPIE CITYNETWORKS", + "start_date": "2023-02-22", + "socket:type2_combo:output": "100 kW;150 kW", + "ref": "518054", + "amenity": "charging_station", + "ref:EU:EVSE": "FRMGPP91432A", + "opening_hours": "24/7", + "description": "Métropolis/FR*MGP*P91432*A;Metropolis - Express - Morangis - Eglise", + "owner:ref:FR:SIREN": "885354860", + "charging_station:output": "100 kW;50 kW;150 kW;22 kW", + "network": "Métropolis;METROPOLIS", + "operator:email": "assistance-commerciale@metropolis-recharge.fr;gestionfournisseurs@oriosbyspie.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33555600000, + 48.70555100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "start_date": "2020-01-09", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPEUROPAUTOOPEL621001", + "description": "Opel - Europ Auto - Calais", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "opening_hours": "Mo 09:00-12:00, Mo 14:00-19:00, Tu 09:00-12:00, Tu 14:00-19:00, We 09:00-12:00, We 14:00-19:00, Th 09:00-12:00, Th 14:00-19:00, Fr 09:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:00", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86018000000, + 50.93759900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SONEPAR GAP", + "ref:EU:EVSE": "FRCPIE6593725", + "start_date": "2023-01-10", + "capacity": "2", + "amenity": "charging_station", + "ref": "FRCPIE6593725", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "info@chargepoint.com", + "description": "SONEPAR GAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10785100000, + 44.56665600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator": "E.Leclerc | FR*LE2", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "ref": "1148313", + "network": "Leclerc", + "description": "Leclerc/LLXKE2BNM1AV6Q", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRLE2P1649526685369185422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73915500000, + 50.72436800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator": "197__SDEEG33;IZIVIA", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MOBIVE | Guitres | Av de L Isle - Parking L Angle Rue de la Gravette;GUITRES - AV DE L ISLE / PARKING L ANGLE RUE DE LA GRAVETTE", + "ref:EU:EVSE": "FRS33PMB334212;FRS33PMB334211;Non concerné", + "owner:ref:FR:SIREN": "253303473", + "ref": "FR*SOD*S*MB33*42*1*_*_;d2d9bda6-d451-5ec6-8ca9-7993764c411d", + "start_date": "2020-04-03", + "network": "CPO CITEOS Mobive;MOBIVE - SDEEG 33", + "operator:email": "sav@izivia.com;cpo@citeos.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18535200000, + 45.04044700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "VOLTI", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRS95E95351002", + "start_date": "2024-06-20", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "description": "LOUVRES - Parking Mairie - Rue de Paris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51066370686, + 49.04472264345 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "ref:EU:EVSE": "FRALLEGO8000042;FRALLEGO8000041;FRALLEGO8000031;FRALLEGO8000022;FRALLEGO8000021;FRALLEGO8000011;FRALLEGO8000012;FRALLEGO8000032", + "amenity": "charging_station", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "ref": "FRALLEGO8000041;FRALLEGO8000031;FRALLEGO8000022;FRALLEGO8000021;FRALLEGO8000011;FRALLEGO8000012;FRALLEGO8000032;FRALLEGO8000042", + "network": "Allego Arcos", + "description": "Allego Arcos", + "operator:email": "info@allego.eu", + "start_date": "2022-02-10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58022000000, + 48.53902200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "LFR0569EVCP02;LFR0569EVCP01", + "operator:email": "bornes@lidl.fr", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "ref": "LFR0569EVCP02;LFR0569EVCP01", + "capacity": "4", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "description": "DIJON Sembat" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02176100000, + 47.30010600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "ref:EU:EVSE": "FRM13PUSBPJLWZ15", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2021-01-01", + "description": "Aix-En-Provence, Avenue Jean Et Marcel Fontenaille", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46113200000, + 43.53403600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Syndicat Départemental d'Énergies de l'Yonne (SDEY89) | FR*S89", + "socket:type2_combo:output": "50 kW", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "SDEY", + "description": "SDEY/OLVXFNK8GY", + "opening_hours": "24/7", + "charging_station:output": "50 kW;44 kW", + "ref": "488880", + "ref:EU:EVSE": "FRS89P359808296509150301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13605000000, + 48.13878300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "owner:ref:FR:SIREN": "240600585", + "capacity": "2", + "amenity": "charging_station", + "start_date": "2018-06-12", + "opening_hours": "24/7", + "ref": "FR*SOD*S*WIIZ*30*1*_*_", + "charging_station:output": "22 kW", + "network": "WIIIZ", + "description": "SAINT-AUBAN PARKING RELAIS DE SERVICES PUBLICS", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FRA16PWIIZ3011;FRA16PWIIZ3012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72856600000, + 43.84693900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "description": "Freshmile France/LLL3LG2Z5O2YBR", + "capacity": "4", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P8015436962291954662", + "operator": "Freshmile | FR*FR1", + "ref": "892620", + "charging_station:output": "7.4 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09920000000, + 48.33099800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-01-15;2024-01-30", + "capacity": "5", + "owner:ref:FR:SIREN": "891118473", + "ref:EU:EVSE": "FRPD1PNVLPPN", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "50 kW;200 kW;22 kW;160 kW", + "description": "Novotel - Perpignan Nord Perpignan", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90096540189, + 42.78219798400 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "SPBR1", + "capacity": "2", + "amenity": "charging_station", + "network": "eborn", + "description": "Pierrefeu-Du-Var, 2 Rue Dr Edmond Mercier", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPAZ12ROASTI", + "ref": "AZ12ROASTI", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14515800000, + 43.22625600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "593321", + "capacity": "2", + "amenity": "charging_station", + "operator": "GreenFlux Assets B.V. | FR*EVZ", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "CARF - Bornes Publiques/31B87691-9930-4034-AF37-E159F2AB1A15", + "network": "CARF - Bornes Publiques", + "operator:email": "support@evzen.com", + "ref:EU:EVSE": "FREVZP4089807793134473770" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44293200000, + 43.78694000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "description": "BRICOMARCHE - MOHRANGE", + "ref:EU:EVSE": "FROTHPOTHR61711;FROTHPOTHR61721;FROTHPOTHR61731;FROTHPOTHR61741", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-04-14", + "network": "LES MOUSQUETAIRES", + "charging_station:output": "7.36 kW", + "opening_hours": "24/7", + "ref": "FR*SOD*S*OTHR*617*1*_*_;FR*SOD*S*OTHR*617*2*_*_;FR*SOD*S*OTHR*617*3*_*_;FR*SOD*S*OTHR*617*4*_*_", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65425000000, + 48.93341300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "SGRPBU;31837", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "ref:EU:EVSE": "FREBNPSGRPBU", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "La Chapelle-En-Vercors, Rue Champ Morand;Réseau eborn/SGRPBU", + "start_date": "2020-06-12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41656000000, + 44.96870000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "start_date": "2017-04-28", + "description": "Réseau eborn/lemayet;Le Mayet-de-Montagne, Vichy Place aux foires", + "ref": "231625;lemayet", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref:EU:EVSE": "FREBNPLEMAYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66512000000, + 46.07000000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "network": "SYSTEME U", + "charging_station:output": "3.68 kW;22 kW", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*SOD*S*OTHR*312*3*_*_;FR*SOD*S*OTHR*312*2*_*_;FR*SOD*S*OTHR*312*1*_*_;FR*SOD*S*OTHR*312*4*_*_", + "description": "SUPER U - BOUAYE", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "operator:email": "sav@izivia.com", + "ref:EU:EVSE": "FROTHPOTHR31241;FROTHPOTHR31231;FROTHPOTHR31211;FROTHPOTHR31221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67969600000, + 47.14323400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/LLT2T55YP2I6JE", + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P1567011105035975136", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref": "1031493", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80865300000, + 46.12992300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "FRV75PPX1512", + "network": "Belib'", + "charging_station:output": "7 kW", + "ref": "FR*V75*PPX15*12", + "amenity": "charging_station", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "description": "Paris | Rue Paul Barruel 44", + "operator": "TotalEnergies Charging Services", + "operator:email": "supervision-ev.france@totalenergies.com", + "owner:ref:FR:SIREN": "531680445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30599050000, + 48.83736560000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "capacity": "1", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P6243036124388979059", + "opening_hours": "24/7", + "ref": "575432", + "charging_station:output": "22 kW", + "description": "Freshmile France/AQ1IWU1HSJ", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14865600000, + 48.89122700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "network": "DRIVECO", + "opening_hours": "Mo 08:30-12:00, Mo 13:00-19:00, Tu 08:30-12:00, Tu 13:00-19:00, We 08:30-12:00, We 13:00-19:00, Th 08:30-12:00, Th 13:00-19:00, Fr 08:30-12:00, Fr 13:00-19:00, Sa 08:30-12:00, Sa 14:00-18:00", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSSDPHESSRENAULT683001", + "start_date": "2022-05-19", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Renault - HESS - Saint-Louis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55051300000, + 47.58008100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "900065", + "owner:ref:FR:SIREN": "252701974", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "pascal.lhermitte@siege27.fr", + "charging_station:output": "22.0 kW", + "opening_hours": "24/7", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PSERQUIGNYCENTRE", + "start_date": "2016-10-06", + "operator": "SIEGE 27" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70927500000, + 49.10821200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "Ouest Charge | FR*WCH", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "start_date": "2023-03-09", + "description": "Guingamp-Parking place de Verdun", + "ref:EU:EVSE": "FRS22E22070001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.14800500000, + 48.56057000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "description": "LOUVECIENNES - Rue St Michel", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRY18E78350001", + "network": "Seymaborne", + "start_date": "2022-02-24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12341940000, + 48.86094720000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRROSE199", + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "capacity": "2", + "amenity": "charging_station", + "description": "Restau_America", + "start_date": "2021-12-13", + "owner:ref:FR:SIREN": "839265873", + "opening_hours": "24/7", + "operator": "RossiniEnergy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11189900000, + 50.68782300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRWATP5551535687015706440", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "WAAT SAS | FR*WAT", + "operator:email": "exploitation@waat.fr", + "description": "WAAT/FRWATLBK0HKEUU", + "ref": "413738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61389000000, + 47.47659400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "7", + "ref": "FRIOYE404053;FRIOYE404052;FRIOYE404051;FRIOYE404005;FRIOYE404004;FRIOYE404003;FRIOYE404002", + "amenity": "charging_station", + "operator:email": "info@ionity.eu", + "start_date": "2023-11-14", + "opening_hours": "24/7", + "network": "Mionnay Saint-Galmier", + "socket:type2_combo:output": "50 kW;350 kW", + "charging_station:output": "50 kW;350 kW;43 kW", + "description": "Mionnay Saint-Galmier", + "ref:EU:EVSE": "FRIOYE404053;FRIOYE404052;FRIOYE404051;FRIOYE404005;FRIOYE404004;FRIOYE404003;FRIOYE404002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89454062000, + 45.88434680000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS52P364941298258993679", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Syndicat d'Energie et des Déchets de la Marne (SDED52) | FR*S52", + "opening_hours": "24/7", + "network": "SDED52", + "ref": "474519", + "description": "SDED52/VIYOCDWK2D" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33623400000, + 47.86183100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS65E65304001", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "start_date": "2022-03-02", + "description": "MAUBOURGUET - Place de la libération", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03433000000, + 43.46849000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "898270251", + "amenity": "charging_station", + "description": "Sainte Catherine", + "capacity": "4", + "network": "Sainte Catherine", + "operator:email": "support@iecharge.io", + "charging_station:output": "0 kW", + "socket:type2_combo:output": "0 kW", + "opening_hours": "24/7", + "operator": "NW IECharge", + "start_date": "2023-08-30", + "ref": "FRIENE002802;FRIENE002801", + "ref:EU:EVSE": "FRIENE002802;FRIENE002801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75602300000, + 50.32336900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "SAINT CHINIAN - Allées Gaubert", + "ref:EU:EVSE": "FRS34E34245001", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94627190000, + 43.41969890000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "TEVGO", + "owner:ref:FR:SIREN": "256102922", + "operator:email": "Exploitation@tevgo.fr", + "network": "61mobility", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "description": "ARGENTAN - Place Robert Aubin", + "start_date": "2017-12-06", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS61P61006C", + "ref": "SE61-ARGE-003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02386600000, + 48.74502400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "1184929", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFR1P595611667948554620", + "charging_station:output": "24 kW;22 kW", + "socket:type2_combo:output": "24 kW", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LM0Z02PM92J4VJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76831500000, + 48.59034700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRS31PUBBRPV", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "32158", + "network": "Roulez Électrique En Haute-Garonne", + "operator": "Syndicat Départemental d'Énergie De la Haute-Garonne (SDEHG) | FR*S31", + "description": "Roulez Électrique En Haute-Garonne/UBBRPV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53181000000, + 43.31400000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "5", + "opening_hours": "Mo 08:00-12:00, Mo 14:00-19:00, Tu 08:00-12:00, Tu 14:00-19:00, We 08:00-12:00, We 14:00-19:00, Th 08:00-12:00, Th 14:00-19:00, Fr 08:00-12:00, Fr 14:00-19:00, Sa 09:00-12:00, Sa 14:00-18:30", + "network": "DRIVECO", + "amenity": "charging_station", + "description": "Ford - Groupe Dugardin - Lys Lez Lannoy", + "start_date": "2020-12-09", + "ref:EU:EVSE": "FRSSDPDUGARDINFORD593901", + "charging_station:output": "22.08 kW", + "operator:email": "support@driveco.com", + "operator": "DRIVECO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22892600000, + 50.67582500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "13", + "network": "BAIKOWSKI", + "amenity": "charging_station", + "ref:EU:EVSE": "FRCG0E000037;FRCG0E000036;FRCG0E000031;FRCG0E000027;FRCG0E000024;FRCG0E000023;FRCG0E000022;FRCG0E000021;FRCG0E000025;FRCG0E000026;FRCG0E000028;FRCG0E000029;FRCG0E000030", + "ref": "FRCG0E000037;FRCG0E000036;FRCG0E000031;FRCG0E000027;FRCG0E000024;FRCG0E000023;FRCG0E000022;FRCG0E000021;FRCG0E000025;FRCG0E000026;FRCG0E000028;FRCG0E000029;FRCG0E000030", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "description": "BAIKOWSKI", + "operator:email": "info@chargeguru.com", + "charging_station:output": "22 kW;2 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06739600000, + 45.93645300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "PARKING ROUMANILLE SAINT REMY ", + "charging_station:output": "12 kW", + "network": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "amenity": "charging_station", + "capacity": "3", + "operator:email": "secretariat@lumi-in.fr", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRLUMEROUMANILLE11", + "start_date": "2021-11-05", + "ref": "e5981b93-4ae8-4595-9b8c-f7582b59c5fe", + "operator": "LUMI'IN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82830000000, + 43.78720000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "socket:type2_combo:output": "50 kW", + "description": "MOBIVE | Marmande | Rond Point de Thivras", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "capacity": "3", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "7b321ca3-0019-5a62-8ea1-de12c24ab808", + "operator": "200__TE47", + "charging_station:output": "50 kW;43 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14084000000, + 44.50922000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "STATIONS-E", + "socket:type2_combo:output": "25 kW", + "start_date": "2022-09-13", + "description": "BYMYCAR - SAINT-DIZIER", + "amenity": "charging_station", + "ref:EU:EVSE": "FRSE1PSE52DYZA", + "capacity": "3", + "network": "Stations-e", + "operator:email": "support@stations-e.com", + "opening_hours": "24/7", + "charging_station:output": "25 kW;22 kW", + "owner:ref:FR:SIREN": "835124280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96852800000, + 48.63586200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "1122471", + "operator:email": "technique.borneco@gmail.com", + "network": "BornEco", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Borneco | FR*BHM", + "charging_station:output": "22 kW", + "description": "BornEco/64214c03ceade60b49f9ac17", + "ref:EU:EVSE": "FRBHMP5582678277146081749" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41282900000, + 47.85176500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "bornes@lidl.fr", + "capacity": "2", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "BARBEREY ST SU", + "ref:EU:EVSE": "LFR2730EVCP01", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "charging_station:output": "22 kW", + "ref": "LFR2730EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02468500000, + 48.33552000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "capacity": "2", + "amenity": "charging_station", + "description": "Marseille-1E, 11 Boulevard Montricher", + "start_date": "2021-01-01", + "opening_hours": "24/7", + "network": "larecharge", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRM13PALJ6PPQPWI", + "operator:email": "support@evzen.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39319000000, + 43.30465100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "Territoire d'Energie 90 (TE90) | FR*S90", + "operator:email": "roaming@freshmile.com", + "description": "TE90/BLJKQY", + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRS90PBLJKQY", + "charging_station:output": "22 kW", + "network": "TE90", + "ref": "135577" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93591000000, + 47.54930000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "description": "AVENUE DE PARIS VERSAILLES", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "operator": "ELECTRIC 55 CHARGING", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR55CP78000VERAVPARIS", + "ref": "FR*55C*P78000*VER*AVPARIS", + "start_date": "2020-09-15;2020-09-03;2022-05-05", + "operator:email": "contact@e55c.com", + "charging_station:output": "22.08 kW;7.36 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13035800000, + 48.80199600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Freshmile France/G2DDRJSDVR", + "ref:EU:EVSE": "FRFR1P589025042543709765", + "operator:email": "roaming@freshmile.com", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "capacity": "11", + "charging_station:output": "7.4 kW;22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "482013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052100000, + 43.94793300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2023-06-15", + "capacity": "5", + "description": "Super U - Nogent", + "owner:ref:FR:SIREN": "891118473", + "network": "Power Dot France", + "amenity": "charging_station", + "charging_station:output": "200 kW;50 kW;160 kW;22 kW", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PSYUNGT", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34956994974, + 48.03316401881 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FREBNPHTQZMT", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "ref": "85991;HTQZMT", + "start_date": "2020-06-12", + "description": "Chazelles-Sur-Lyon, Parking musée du chapeau;Réseau eborn/HTQZMT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39409000000, + 45.63840000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "FRFASE33095", + "operator": "Fastned France", + "description": "Fastned Aire des Crêts Blancs", + "network": "Fastned Aire des Crêts Blancs", + "amenity": "charging_station", + "capacity": "4", + "operator:email": "support@fastned.nl", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRFASE33095", + "socket:type2_combo:output": "300 kW", + "owner:ref:FR:SIREN": "853300010", + "charging_station:output": "300 kW", + "start_date": "2022-12-14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16689900000, + 45.99890300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "PLESSIS-TREVISE", + "operator": "IZIVIA", + "ref:EU:EVSE": "FROTHPPLTR111;FROTHPPLTR112", + "owner:ref:FR:SIREN": "219400595", + "capacity": "2", + "amenity": "charging_station", + "ref": "FR*SOD*S*PLTR*1*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "start_date": "2017-07-20", + "operator:email": "sav@izivia.com", + "description": "PLESSIS-TREVISE - AVENUE ARDOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57095400000, + 48.81141700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "Saint Genix les Villages, Route de la Glière;Réseau eborn/LLP9IVJZ5MXBL6", + "ref": "1052523;LLP9IVJZ5MXBL6", + "ref:EU:EVSE": "FREBNPLLP9IVJZ5MXBL6;FREBNP3125143097756862460", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2023-11-22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63353000000, + 45.59673000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "346793;KT2CJWMHHT", + "ref:EU:EVSE": "FREBNPKT2CJWMHHT;FREBNP2834372101843301813", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "description": "Réseau eborn/KT2CJWMHHT;Bagnols-En-Forêt, 133 Boulevard du Rayol", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "start_date": "2020-08-26" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69992200000, + 43.53628300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-07-21", + "network": "SYSTEME U", + "capacity": "2", + "description": "SUPER U - EGAT", + "amenity": "charging_station", + "ref:EU:EVSE": "FROTHPOTHR43212;FROTHPOTHR43211", + "ref": "FR*SOD*S*OTHR*432*1*_*_", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01304600000, + 42.49787300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref:EU:EVSE": "FRFR1P4601044383239325663", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "978035", + "operator": "Freshmile | FR*FR1", + "description": "Freshmile France/LLP0XP9NX1W0JY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45074800000, + 48.41088400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "250 kW", + "amenity": "charging_station", + "capacity": "36", + "charging_station:output": "250 kW", + "opening_hours": "24/7", + "description": "Tesla Supercharger Auxerre, France", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP31397", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54348600000, + 47.85342700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P6286170904212064679", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLWADYHZ8B01J5", + "ref": "1137534", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26858000000, + 44.47680100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "network": "CPO CITEOS TDA", + "charging_station:output": "22 kW;180 kW", + "amenity": "charging_station", + "description": "TIGNES-ZA Les Montayes", + "socket:type2_combo:output": "180 kW", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "ref": "eee505a7-4abc-586a-95a7-9c26e19cdd12", + "operator": "271__TDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92781100000, + 45.49548000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRFR1P2897172984131118314", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref": "510485", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/FJMTSHA9FY", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46744800000, + 49.17747900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "MobiSDEC/IGM47RQUIV", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "457476", + "ref:EU:EVSE": "FRS14P2701135807978195003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10152700000, + 49.12169300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "576272", + "network": "Zephyre", + "description": "Zephyre/LP009595", + "operator": "Zephyre | FR*ZP1", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "11 kW", + "ref:EU:EVSE": "FRZP1P6838042042436058225", + "operator:email": "sav@zephyre.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89484900000, + 43.90559400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "RossiniEnergy", + "operator:email": "info@rossinienergy.com", + "start_date": "2022-12-29", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRROSE423", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "839265922", + "operator": "RossiniEnergy", + "description": "Kiloutou_Portet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40962400000, + 43.53618200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRY01E78642002", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW", + "network": "CPO Alizé Liberté Public", + "description": "VERNEUIL-SUR-SEINE - Place Du General De Gaulle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98139800000, + 48.98063300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "source": "Arrêté préfectoral N° 20 / 2010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20400000000, + 49.97233330000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "43__CCTLB", + "charging_station:output": "3.7 kW;22 kW", + "ref": "4761c1f4-9414-59f6-952b-061ce7977565", + "capacity": "2", + "amenity": "charging_station", + "network": "CPO CITEOS SDE54", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "description": "CCTLB - Lamath" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44907000000, + 48.52959000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "socket:type2_combo:output": "50 kW", + "start_date": "2023-04-11", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "description": "SAINT-CYPRIEN - Office du Tourisme - Quai Arthur Rimbaud", + "ref:EU:EVSE": "FRS66E66171004", + "charging_station:output": "50 kW;43 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03709990000, + 42.62282490000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "charging_station:output": "7 kW", + "ref:EU:EVSE": "FRIKAPIKEA12151;FRIKAPIKEA12161;FRIKAPIKEA12171;FRIKAPIKEA12181", + "amenity": "charging_station", + "capacity": "1", + "start_date": "2023-08-23;2023-08-24", + "description": "IKEA ROUEN - ZONE PMR", + "opening_hours": "24/7", + "ref": "FR*SOD*S*IKEA*121*7*_*_;FR*SOD*S*IKEA*121*6*_*_;FR*SOD*S*IKEA*121*5*_*_;FR*SOD*S*IKEA*121*8*_*_", + "network": "IKEA", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09616200000, + 49.33170700000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2024-03-15", + "description": "NOYAL SUR VILAINE - 152 Les Courts du Bois", + "ref:EU:EVSE": "FRS35P35207001B2", + "capacity": "2", + "operator": "Spie", + "charging_station:output": "36 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "200022705", + "network": "OUEST CHARGE", + "operator:email": "serviceclient@ouestcharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51075600000, + 48.06207200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "SIEG 63;SIEG63", + "description": "SIEG 63/FR*S63*P63019*A;SIEG63 - ePremium - Aulnat - Coubertin", + "socket:type2_combo:output": "25 kW", + "operator": "Syndicat Intercommunal d'Electricité et de Gaz du Puy-de-Dôme (SIEG) | FR*S63;SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref": "518228", + "ref:EU:EVSE": "FRS63P63019A", + "start_date": "2022-09-19", + "operator:email": "info-usager.silene@spie.com;gestionfournisseurs@oriosbyspie.com", + "capacity": "1;3", + "charging_station:output": "25 kW;22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16874300000, + 45.79558500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "description": "Freshmile France/DS4JPFUSGX", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRFR1P8218383449718583691", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "541745" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98957700000, + 50.46947600000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRS31PJGVGCS", + "ref": "JGVGCS", + "start_date": "2017-03-01", + "network": "Freshmile", + "capacity": "2", + "charging_station:output": "18 kW", + "amenity": "charging_station", + "owner:ref:FR:SIREN": "200075240", + "operator:email": "web@freshmile.com", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "description": "Beauchalot" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86942000000, + 43.10770000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "charging_station:output": "7 kW", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "SIPPEREC", + "description": "BOBIGNY - Rue de l'Union", + "start_date": "2022-06-16", + "ref:EU:EVSE": "FRSIPE93008006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44078310000, + 48.90704470000 + ] + } + }, + { + "type": "Feature", + "properties": { + "amenity": "charging_station", + "start_date": "2023-07-07", + "capacity": "3", + "description": "Groupe Hecquet Occasions", + "opening_hours": "24/7", + "ref": "FRCG0E000817;FRCG0E000818;FRCG0E000819", + "network": "Groupe Hecquet Occasions", + "socket:type2_combo:output": "300 kW", + "charging_station:output": "100 kW;300 kW", + "operator:email": "info@chargeguru.com", + "ref:EU:EVSE": "FRCG0E000817;FRCG0E000818;FRCG0E000819" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10063300000, + 49.33099300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2023-04-24", + "ref:EU:EVSE": "FRM06PNICE21121;FRM06PNICE21112;FRM06PNICE21111;FRM06PNICE21122", + "capacity": "2", + "amenity": "charging_station", + "network": "NICE RP", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "FR*SOD*S*NICE*211*1*_*_;FR*SOD*S*NICE*211*2*_*_", + "description": "NICE - PARKING RIVOLI", + "operator:email": "sav@izivia.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25893554728, + 43.69796153015 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "charging_station:output": "3.7 kW;22 kW", + "capacity": "2", + "description": "MOBIVE | Agen | Général de Gaulle | Grand Café Foy", + "amenity": "charging_station", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "200__TE47", + "ref": "a1ef0f17-6f5c-51bb-9345-4b314cfee903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61192300000, + 44.20374300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2020-10-06", + "amenity": "charging_station", + "capacity": "1", + "network": "SIGEIF", + "opening_hours": "24/7", + "charging_station:output": "7 kW;7.36 kW", + "ref:EU:EVSE": "FRSIGPSIGE3521;FRSIGPSIGE3511;FRSIGPSIGE3531;FRSIGPSIGE3541;FRSIGPSIGE3551;FRSIGPSIGE3561", + "owner:ref:FR:SIREN": "200050433", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*SIGE*35*3*_*_;FR*SOD*S*SIGE*35*1*_*_;FR*SOD*S*SIGE*35*2*_*_;FR*SOD*S*SIGE*35*4*_*_;FR*SOD*S*SIGE*35*5*_*_;FR*SOD*S*SIGE*35*6*_*_", + "description": "SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28472500000, + 48.79915800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "LA BOUILLE - Allee des Saules", + "network": "Métropole Rouen Normandie", + "start_date": "2022-10-05", + "operator:email": "support@alizecharge.fr", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "ref:EU:EVSE": "FRC01E76131001", + "opening_hours": "Mo-Su 00:00-23:57", + "charging_station:output": "22 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93308600000, + 49.35039200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "description": "DUN SUR AURON - Bourges", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW", + "ref": "LFR4172EVCP03;LFR4172EVCP02;LFR4172EVCP01", + "ref:EU:EVSE": "LFR4172EVCP03;LFR4172EVCP02;LFR4172EVCP01" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56885600000, + 46.89392200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "network": "CPO CITEOS Mobive", + "capacity": "2", + "amenity": "charging_station", + "ref": "6ce804bd-4a26-5383-b522-6fb73cc5314c", + "ref:EU:EVSE": "Non concerné", + "operator:email": "cpo@citeos.com", + "opening_hours": "24/7", + "operator": "194__SDEC23", + "description": "MOBIVE | Sainte-Feyre | Parc Animalier des Monts de Guéret", + "charging_station:output": "3.7 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88958500000, + 46.12718200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref": "86882", + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref:EU:EVSE": "FRS82PLAVILDIEUT", + "network": "SDE82", + "operator": "Syndicat Départemental d'Énergie de Tarn-et-Garonne (SDE82) | FR*S82", + "description": "SDE82/lavildieut" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21659900000, + 44.03360000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "832489801", + "start_date": "2024-03-01", + "network": "ELECTRIC 55 CHARGING", + "amenity": "charging_station", + "capacity": "1", + "ref": "FR*55C*P83990*STR*L1CES", + "description": "PARC DES LICES - SAINT-TROPEZ", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "charging_station:output": "22.08 kW", + "ref:EU:EVSE": "FR55CP83990STRL1CES", + "operator:email": "contact@e55c.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64057900000, + 43.26793300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "6", + "ref:EU:EVSE": "LFR3605EVCP02;LFR3605EVCP01;LFR3605EVCP03", + "ref": "LFR3605EVCP03;LFR3605EVCP02;LFR3605EVCP01", + "operator:email": "bornes@lidl.fr", + "charging_station:output": "120 kW;22 kW", + "description": "ST ALBAN Gaieté", + "amenity": "charging_station", + "network": "LIDL", + "operator": "LIDL France", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "343262622", + "socket:type2_combo:output": "120 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54411100000, + 48.55594100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "start_date": "2022-06-22", + "network": "Power Dot France", + "amenity": "charging_station", + "ref:EU:EVSE": "FRPD1PITMELV", + "capacity": "3", + "opening_hours": "24/7", + "socket:type2_combo:output": "60 kW", + "charging_station:output": "22 kW;60 kW", + "operator": "Power Dot France", + "description": "Intermarché - Elven", + "operator:email": "hello@powerdot.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59395300000, + 47.72402800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2021-02-03", + "ref:EU:EVSE": "FREBNPBGYAN4GZ5U;FREBNP7786099784006810292", + "capacity": "2", + "amenity": "charging_station", + "operator:email": "roaming@freshmile.com;contact@reseau-eborn.fr", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "network": "eborn;Réseau eborn", + "operator": "SPBR1;SPBR1 | FR*EBN", + "description": "Le Revest-les-Eaux, Hameau des Dardennes, Chemin du Beal;Réseau eborn/BGYAN4GZ5U", + "ref": "369004;BGYAN4GZ5U" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92812000000, + 43.16388000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "E-TOTEM", + "capacity": "7", + "start_date": "2023-11-27", + "amenity": "charging_station", + "network": "Réseau e-Totem Infrastructures", + "opening_hours": "24/7", + "ref": "FRETIP64122E", + "charging_station:output": "7.4 kW;22 kW", + "description": "e-Totem - BIARRITZ Parking Larribau", + "operator:email": "contact@e-totem.fr", + "ref:EU:EVSE": "FRETIP64122E" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53680700000, + 43.48507500000 + ] + } + }, + { + "type": "Feature", + "properties": { + "owner:ref:FR:SIREN": "891118473", + "capacity": "7", + "network": "Power Dot France", + "amenity": "charging_station", + "opening_hours": "24/7", + "ref:EU:EVSE": "FRPD1PCAPSJB", + "description": "Novotel - Saint-Jean-de-Braye", + "start_date": "2023-11-30", + "operator": "Power Dot France", + "socket:type2_combo:output": "200 kW;160 kW", + "operator:email": "hello@powerdot.fr", + "charging_station:output": "200 kW;160 kW;50 kW;22.17025 kW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98867980129, + 47.92282554857 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRDRVPCRFMKT131301", + "network": "DRIVECO", + "socket:type2_combo:output": "50 kW", + "start_date": "2023-10-18", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "50 kW;22.08 kW", + "opening_hours": "24/7", + "operator:email": "support@driveco.com", + "operator": "DRIVECO", + "description": "Carrefour Market Berre-L'étang" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17320000000, + 43.49032400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "help@electra.com", + "owner:ref:FR:SIREN": "891624884", + "charging_station:output": "150 kW", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "network": "ELECTRA", + "capacity": "4", + "description": "Maurepas - CC Village des Loisirs", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "ref:EU:EVSE": "FRELCPMAUCC", + "operator": "ELECTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91472400000, + 48.76140200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator": "IZIVIA", + "start_date": "2022-12-07", + "capacity": "2", + "charging_station:output": "3.68 kW;7.36 kW", + "amenity": "charging_station", + "network": "LES MOUSQUETAIRES", + "opening_hours": "24/7", + "ref:EU:EVSE": "FROTHPOTHR54522;FROTHPOTHR54511;FROTHPOTHR54512;FROTHPOTHR54521", + "description": "INTERMARCHE - SAINT VIGOR LE GRAND", + "operator:email": "sav@izivia.com", + "ref": "FR*SOD*S*OTHR*545*2*_*_;FR*SOD*S*OTHR*545*1*_*_" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68635400000, + 49.27365300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "2", + "amenity": "charging_station", + "start_date": "2023-07-19", + "opening_hours": "24/7", + "network": "SONEPAR ANGERS", + "charging_station:output": "22 kW", + "description": "SONEPAR ANGERS", + "operator:email": "info@chargepoint.com", + "ref:EU:EVSE": "FRCPIE6741345", + "ref": "FRCPIE6741345" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54398600000, + 47.48626100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "network": "Freshmile France", + "ref": "1078833", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "Freshmile France/LLPJGV97G256J8", + "operator": "Freshmile | FR*FR1", + "ref:EU:EVSE": "FRFR1P6848897864570317422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43311000000, + 47.09786100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "ref:EU:EVSE": "FRV07E72264004", + "operator:email": "support@alizecharge.fr", + "start_date": "2021-11-03", + "capacity": "2", + "charging_station:output": "36 kW", + "description": "SABLE SUR SARTHE - Rue Michel Vielle", + "socket:type2_combo:output": "36 kW", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "opening_hours": "Mo-Su 00:00-23:57", + "network": "CPO Alizé Liberté Public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33286200000, + 47.84088300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref": "971846", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/LLMOS4UDXO5MRZ", + "ref:EU:EVSE": "FRFR1P6524055935126073779", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36511100000, + 48.07572300000 + ] + } + }, + { + "type": "Feature", + "properties": { + "capacity": "8", + "charging_station:output": "150 kW", + "description": "Tesla Supercharger Buchelay, France", + "socket:type2_combo:output": "150 kW", + "amenity": "charging_station", + "opening_hours": "24/7", + "owner:ref:FR:SIREN": "524335262", + "ref:EU:EVSE": "FRTSLP6308", + "network": "Tesla Supercharger", + "operator": "Tesla", + "operator:email": "charging-france@tesla.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67155900000, + 48.99014400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "ref:EU:EVSE": "FRFR1P2210213153986422174", + "capacity": "2", + "amenity": "charging_station", + "description": "Freshmile France/BEECZ8DC9I", + "network": "Freshmile France", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "operator": "Freshmile | FR*FR1", + "ref": "346256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88027200000, + 49.09737000000 + ] + } + }, + { + "type": "Feature", + "properties": { + "start_date": "2022-07-12", + "description": "CAMAÏEU FRANCE", + "amenity": "charging_station", + "capacity": "1", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "operator:email": "acelec@acelec-france.com", + "opening_hours": "Mo-Su 08:00-08:00", + "charging_station:output": "22 kW", + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "network": "Camaïeu France" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20718700000, + 50.68496400000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "roaming@freshmile.com", + "capacity": "2", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS14P6509095974987328004", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "description": "MobiSDEC/DKNJSCFR5M", + "network": "MobiSDEC", + "operator": "Syndicat Mixte Départemental d'Énergies du Calvados (SDEC Énergie) | FR*S14", + "ref": "461691" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07374100000, + 48.92475900000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "support@alizecharge.fr", + "start_date": "2023-06-19", + "capacity": "2", + "amenity": "charging_station", + "operator": "Bouygues E&S", + "description": "MONTLAUR - Rue des Escano Barbeous - Parking Salle des Fêtes", + "opening_hours": "Mo-Su 00:00-23:57", + "ref:EU:EVSE": "FRS12E12154001", + "charging_station:output": "22 kW", + "network": "Reveo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83398300000, + 43.88075800000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "WAAT/FRWA4L2WB1WRL8", + "network": "WAAT", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "charging_station:output": "22 kW", + "ref": "880140", + "operator": "WAAT SAS | FR*WA4", + "ref:EU:EVSE": "FRWA4P7638733255142920225", + "operator:email": "exploitation@waat.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11768300000, + 49.48408100000 + ] + } + }, + { + "type": "Feature", + "properties": { + "description": "OuestCharge - Diva Sp - Saint-Hilaire-Saint-Florent - Mairie;SAINT-HILAIRE-SAINT-FLORENT - Parking Mairie", + "capacity": "1;2", + "network": "Ouest Charge | FR*WCH;SIEML", + "owner:ref:FR:SIREN": "254901309", + "start_date": "2024-04-05;2021-04-23", + "amenity": "charging_station", + "ref:EU:EVSE": "FRS49E49287001;FRS49P49287A", + "charging_station:output": "22 kW", + "opening_hours": "Mo-Su 00:00-23:57;24/7", + "operator": "Bouygues E&S;SPIE CITYNETWORKS", + "operator:email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;support@alizecharge.fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10016300000, + 47.26423200000 + ] + } + }, + { + "type": "Feature", + "properties": { + "operator:email": "fr.duhamel@bouygues-es.com", + "network": "Le Plein Tarnais", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "50 kW", + "operator": "BOUYGUES ENERGIES SERVICES", + "opening_hours": "24/7", + "description": "CASTRES - Place Soult - Parking Extèrieur", + "ref:EU:EVSE": "FRS81E8106501131;FRS81E8106501132;FRS81E8106501141;FRS81E8106501142", + "start_date": "2020-03-16", + "owner:ref:FR:SIREN": "258100072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24714758131, + 43.60404893819 + ] + } + } + ] +} \ No newline at end of file diff --git a/update_scripts/get_datasets.sh b/update_scripts/get_datasets.sh index afe6bd0..85b8b45 100644 --- a/update_scripts/get_datasets.sh +++ b/update_scripts/get_datasets.sh @@ -13,6 +13,7 @@ echo "- récupérer les infos de bornes de recharge électrique" wget https://www.data.gouv.fr/fr/datasets/r/7eee8f09-5d1b-4f48-a304-5e99e8da1e26 -O "latest.json" wget https://www.data.gouv.fr/fr/datasets/r/8d9398ae-3037-48b2-be19-412c24561fbb -O "latest.csv" wget https://www.data.gouv.fr/fr/datasets/r/b9731c6f-c0d7-422e-9e1c-19edd51687ce -O "finess_idf.json" + echo "- OK IRVE" echo "- récupérer les données présentes dans OpenStreetMap" curl --header "Content-Type: plain/text" --data @content_irve_geojson.txt --trace-ascii website-data.log "https://overpass-api.de/api/interpreter" > "irve_osm_latest.geojson" @@ -37,10 +38,13 @@ mv osmose-item-irve-8411-intégrables.json ../etalab_data/irve_bornes_recharge/ ################## echo "- récupérer les données de cyclabilité d'Issy" wget "https://data.issy.com/api/explore/v2.1/catalog/datasets/parkings-2-roues/exports/geojson?lang=fr&timezone=Europe%2FBerlin" -O "issy_les_mx_cyclabilité.json" +echo "- récupérer les données des arbres d'Issy" +wget "https://data.issy.com/api/explore/v2.1/catalog/datasets/arbres-remarquables-issy-les-moulineaux/exports/geojson?lang=fr&timezone=Europe%2FBerlin" -O "issy_les_mx_arbres.json" echo "- récupérer les données de cyclabilité de Rouen" wget "https://data.metropole-rouen-normandie.fr/api/explore/v2.1/catalog/datasets/liste-des-stationnements-cyclables-metropole-rouen-normandie/exports/geojson?lang=fr&timezone=Europe%2FBerlin" -O "rouen_parking_velos.json" +mv "issy_les_mx_arbres.json" ../data_other/arbres/issy_les_mx_arbres.json mv "geojson?lang=fr" ../data_other/cyclabilité/issy_les_mx_cyclabilité.json mv "rouen_parking_velos.json" ../data_other/cyclabilité/rouen_parking_velos.json